@charset "utf-8";
/* CSS Document */

body {
	font-size: 11px;
	margin: 0;
	padding: 0;
	background-color: #CDC9C0;
	
}
	



#container {
	width: 1000px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFFFFF;	
	box-shadow: -5px 10px 50px #8B7D7B;

}


#header {
	margin: 0px;
	height: 240px;
	background-repeat: no-repeat;
	right: 0px;
	padding-right: 0px;
	padding-left: 0px;
	background-color: #ffffff;
	clear:both;
}

#main {
	background-color: #ffffff;
	margin-top:10px;
	width: 550px;
	float:left;
	padding-top: 20px;
	padding-right: 10px;
	padding-bottom: 10px;

}

#sidebar {
	float:right;
	width:350px;
	margin-top:10px;
	background-color: #FFF;
}



	
	
/* -----------------horizontal navigation bar--------------------- */
ul#topnav {
	float: left;
	width: 1000px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 15px;
	background-color: #772334;
	margin-top: -20px;
	margin-right: 0;
	margin-bottom: 60px;
	margin-left: 0;
	padding: 0;
}
ul#topnav li {
	float: left;
	margin: 0;
	padding: 0; 
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #772334;
	text-transform: lowercase;
}
ul#topnav li a {
	padding: 10px 15px;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
}
ul#topnav li:hover {
	background-color: #bb5873;
}


ul#topnav li span {
	float: left;
	padding: 15px 0;
	position: absolute;
	left: 0; top:35px;
	display: none; 
	width: 1000px;
	background: #bb5873;
	color: #fff;
	/*--Bottom right rounded corner--*/
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner--*/
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
ul#topnav li:hover span { display: block; } /*--Show subnav on hover--*/
ul#topnav li span a { display: inline; } 
ul#topnav li span a:hover {text-decoration: underline;}

<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script> 

<script type="text/javascript">
$(document).ready(function() {

	$("ul#topnav li").hover(function() { //Hover over event on list item
		$(this).css({ 'background' : '#1376c9 url(topnav_active.gif) repeat-x'}); //Add background color and image on hovered list item
		$(this).find("span").show(); //Show the subnav
	} , function() { //on hover out...
		$(this).css({ 'background' : 'none'}); //Ditch the background
		$(this).find("span").hide(); //Hide the subnav
	});

});
</script>

/* -----------------content--------------------- */


p, pre{
padding: 5px 10px;
margin:0px;
}




/* -----------tables--------------------------- */
#box-table-a {
	border-collapse: collapse;
	font-family: "Lucida Sans Unicode","Lucida Grande",Sans-Serif;
	font-size: 12px;
	text-align: left;
	width: 480px;

}


thead {
	font-size: 18px;
	font-style: normal;
	font-weight: bold;
	height: 40px;
	color:#772334;
	text-decoration: underline;
}

.tableafc {
	background-color: #fff;
	
}

table {
	padding-bottom: 20px;
	margin-right: 20px;
	margin-left: 20px;	
}
/* -----------footer--------------------------- */
#footer {
	clear: both;
	text-align: left;
	background-color: #772334;
	height: 40px;
	margin-top: 60px;
	width: 1000px;
	color: #FFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;	
}



