@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #999966;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
} 
#header {
	background-color: #999966;
	height: 135px;
	position: relative;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0px;
} 
#menuBar {
	background-color: #a4c2c2;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	height: 30px;
	padding-left: 20px;
	position: relative;
}
#menu{
	height: 20px;
	position: absolute;
	top: 50%;
	display: table-cell;
	vertical-align: middle;

}
#menuItems a {
	font-size: 12px;
	text-decoration: none;
	color: #000000;
	display: inline;
	margin-right: 20px;
}

#header h1 {
	font-size: 1.5em;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	padding-top: 20px;
	color: #FFFFFF;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 50px;
	background-color: #a4c2c2;
	padding-top: 1px;
	height: 100%;
}
#sidebar1 #content {
	padding-right: 10px;
	padding-left: 20px;
}
#sidebar1 #content h3 {
	font-size: 1em;
	color: #666600;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666600;
}
#sidebar1 #content p {
	font-size: 0.8em;
	line-height: 1.5em;
}


#mainContent {
	padding-right: 10px;
	padding-top: 5px;
	font-size: 0.8em;
	border-left-width: 30px;
	border-left-style: solid;
	border-left-color: #A4C2C2;
	padding-left: 10px;
	padding-bottom: 10px;
	margin-bottom: 0px;
} 
#mainContent li {
	font-size: 0.8em;
	font-weight: normal;
	line-height: 1.8em;
}
#mainContent p {
	line-height: 1.5em;
}
#mainContent input {
	font-size: 1.0em;

}
#mainContent textarea {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
}

#mainContent td {
	font-size: 0.8em;
}

#mainContent h1 {
	font-size: 1.3em;
	color: #CC3300;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CC3300;
}


#mainContent h2{
	color: #CC0000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #cc0000;
	font-weight: bold;
	font-size: 1.5em;
}

#footer {
	background-color: #a4c2c2;
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 20px;
	margin-bottom: 20px;
} 
#footer a {
	text-decoration: none;
	font-size: 0.5em;
	display: inline;
	padding-right: 30px;
	color: #333333;
}

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.7em;
	text-align: center;
}
.heading {
	color: #CC0000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #cc0000;
	font-weight: bold;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.imgRight {
	float: right;
	border: 1px solid #CC0000;
	margin-left: 5px;
}
.imgLeft {
	float: left;
	border: 1px solid #CC0000;
	margin-right: 5px;
}
#mainContent a {
	color: #CC0000;
}


/* Content management */
.rteImage {
	background: #D3D3D3;
	border: 1px solid #D3D3D3;
	cursor: pointer;
	cursor: hand;
}

.rteImageRaised, .rteImage:hover {
	background: #D3D3D3;
	border: 1px outset;
	cursor: pointer;
	cursor: hand;
}

.rteImageLowered, .rteImage:active {
	background: #D3D3D3;
	border: 1px inset;
	cursor: pointer;
	cursor: hand;
}

.rteVertSep {
	margin: 0 4px 0 4px;
}

.rteBack {
	background: #D3D3D3;
	border: 1px outset;
	letter-spacing: 0;
	padding: 2px;
}

.rteBack tbody tr td, .rteBack tr td {
	background: #D3D3D3;
	padding: 0;
}

.rteDiv {
	display: block;
	position: relative;
}
