@charset "UTF-8";
/* CSS Document */

body  {
	font: 100% Verdana;
	background: #666666;
	margin: 0px; 
	padding: 0px;
	text-align: center; 
	color: #000000;
}

.twoColElsRtHdr #container {
	width: 950px;
	margin: 0px auto; 
	border: 1px solid #000000;
	text-align: left; 
	background-color: #EBEBEB;
	vertical-align: top;
} 
.twoColElsRtHdr #header {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-color: #000F75;
	margin: 0px;
} 
.twoColElsRtHdr #menu {
	width: 930px;
	position:relative;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 10px;
	background-color: #000F75;
	font: Verdana;
	font-size: 10px;
	text-align: left;
	color: #FFFFFF;
	white-space: nowrap;
	vertical-align: top;
	
} 
.twoColElsRtHdr #header h1 {
	margin: 0px; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


.twoColElsRtHdr #sidebar1 {
	float: right;
	width: 180px; /* top and bottom padding create visual space within this div */
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
	background-color: #E1E1E1;
}
.twoColElsRtHdr #sidebar1 h3, .twoColElsRtHdr #sidebar1 p {
	margin-left: 10px; 
	margin-right: 10px;
}

.twoColElsRtHdr #mainContent {
	color: #000F75;
	font-family: Verdana;
	font-size: 9pt;
	margin-top: 0px;
	margin-right: 210px;
	margin-bottom: 0px;
	margin-left: 18px;
} 
.twoColElsRtHdr #footer {
	height: 10px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	background-color: #000F75;
	font-size: 10px;
	text-align: centre;
	color: #FFFFFF;
	font-family: Verdana;
	font-style: italic;	
} 
.twoColElsRtHdr #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 */
}

/* Miscellaneous classes for reuse */
.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;
}
a {
	font-family: Verdana;
	color: #FFFFFF;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FFFFFF;
}
a:hover {
	text-decoration: underline;
	color: #FFFFFF;
}
a:active {
	text-decoration: none;
	color: #FFFFFF;
}
