body {
	font-family: "Arial", Verdana, Tahoma;
	font-size:12px;
	background-color: #10324d;
	background-image: url(../images/background.gif);
	background-position: top;
	background-repeat: repeat-x;
}

#container {
	width: 920px;
	margin-left: auto;
	margin-right: auto;
}

#container #header {
	height: 130px;
	padding-left: 1px;
	padding-right: 1px;
	margin-top: 9px;
}

#container #menu {
	color: #ffffff;
	height: 30px;
	vertical-align: bottom;
	margin-top: 17px;
}

#container #content {
	background-color: #ffffff;
	padding: 1px 1px 1px 1px;
	clear: both;
}

	#container #content #contentHeader {
		width: 918px;
		height: 170px;
		padding: 0px;
		margin: 0px;
		text-align: left;
		background-image: url(../images/background_header.jpg);
		background-position: top left;
		background-repeat: no-repeat;
		overflow: hidden;
	}

	#container #content #contentBody {
		padding: 20px;
		line-height: 1.8;
	}
	
#container #footer {
	padding: 5px 0px 20px;
	color: #ffffff;
	font-weight: bold;
	text-align: right;
}

	#container .links {
		margin-left: 10px;
	}
	
		#container .links a {
			margin-left: 5px;
			margin-right: 5px;
			color: #ffffff;
			text-decoration: none;
		}
	
		#container .links a:hover {
			text-decoration: underline;
		}

h1 {
	color: #14344B;
}


/*-----------------------*/
.clear {clear:both}	
/* remove the list style */
#nav {
	margin:0; 
	padding:0; 
	list-style:none;
}	
	
	/* make the LI display inline */
	/* it's position relative so that position absolute */
	/* can be used in submenu */
	#nav li {
		float:left; 
		display:block; 
		width:100px; 
		background:none; 
		position:relative;
		z-index:500; 
		margin:0 1px;
	}
		
	/* this is the parent menu */
	#nav li a {
		display:block; 
		padding:4px 0px 0 0px; 
		font-weight:700;  
		margin: 3px;
		height:20px; 
		text-decoration:none; 
		color:#fff; 
		text-align:center;
	}

	#nav li a:hover {
		color:#102B3E;
		background-color: #fff;
	}
	
	/* you can make a different style for default selected value */
	#nav a.selected {
		/*color:#f00;*/
	}
	
		/* submenu, it's hidden by default */
		#nav ul {
			background: #10324d;
			position:absolute; 
			left:0; 
			display:none; 
			margin: 0px 0 0 -1px; 
			padding:0; 
			list-style:none;
			border: 1px solid #fff;
			border-top: none;
		}
		
		#nav ul li {
			width:auto; 
			float:left; 
			border-top:1px none #fff;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 5px 3px; 
			color:#fff;
		}
		
		#nav ul a:hover {
			background-color: #20607B;
			color: #fff;
		}

/* fix ie6 small issue */
/* we should always avoid using hack like this */
/* should put it into separate file : ) */
*html #nav ul {
	margin:0 0 0 -2px;
}