/* GENERAL SPECS */

/* set standard font and color */
body {
   font-family: Arial, Verdana, Geneva, sans-serif;
   background-color: white;
   font-size: 75%;
   line-height: 18px;
}
form {
   margin: 0px;
}
/* make input boxes and button look a bit better */
input {
   font-family: Arial, Verdana, Geneva, sans-serif;
   font-size: 1em;
   border: 1px solid #000;
}
select {
	font-size: 0.9em;
}
h1 {
	font-size: 1.4em;
   	font-weight: normal;
   	line-height: 20px;
}
h2 {
	font-size: 1.2em;
   	font-weight: normal;
   	line-height: 20px;
}
img {
	border: 0px;
}
/* ---------------------------------------------------- */
/* outer casing for whole page - the margins keep the content centred as the user resizes the window */
#contentElement {
   position: relative;
   top: 0px;
   width: 640px;
   text-align: left;
}
/* ---------------------------------------------------- */
#header {
	margin: 0px;
	padding: 0px;
	height: 100px;
}
#cam_logo {
	float: right;
}
#primary_nav {
	margin-top: 20px;
}
/* ---------------------------------------------------- */
#container {
	width: 100%;
	float: left;
}
#main {
	margin-left: 200px;
}
#left {
	float: left;
	width: 170px;
}
#copyright {
	font-size: 0.9em;
}
.clearing {
	height: 0;
	clear: both;
}
/* ---------------------------------------------------- */
/* CLASSES */

/* smaller text for sporadic use where necessary*/
.small {
   font-size: 0.9em;
   line-height: 16px;
}
.top {
	text-align: right;
}
.centre {
	text-align: center;
}
/* ---------------------------------------------------- */
/* LINKS */
/* normal links */
a {
   text-decoration: underline;
}

a:link {
   color: #295A78;	
}

a:visited {
   color: #295A78;
}

a:hover {
   color: #990000;
}

a:active {
   color: #295A78;
}
