@charset "utf-8";
/* CSS Document */
div#container
{
   width: 800px;
   position: relative;
   margin-top: 0px;
   margin-left: auto;
   margin-right: auto;
   text-align: left;
}
body
{
   text-align: center;
   margin: 0;
   background-color: #FFFFFF;
   color: #000000;
}
a:hover
{
   color: #42010B;
}
#nav {
	position:absolute;
	top:100px;
	margin:0; 
	padding:0; 
	list-style:none;
	background:#000;
	height:30px;
	font-size:12px;
	font-family:Verdana, Geneva, sans-serif;
	width:802px;
	border:1px solid #484a4c;
}

/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#nav li {
	float:left; 
	display:block;
	position:relative;
	z-index:500; 
	margin:0 1px;
	color:#fff;
}

/* this is the parent menu */
#nav li a {
	display:block; 
	padding:8px 10px 0 10px; 
	height:23px; 
	text-decoration:none; 
	color:#fff; 
}

#nav li a:hover {
	color:#fff;
	background:#4781b5;
}

/* you can make a different style for default selected value */
#nav a.selected {
	color:#fff;
	background:#4781b5;
	
}

/* submenu, it's hidden by default */
#nav ul {
	position:absolute; 
	left:0; 
	display:none; 
	margin:0 0 0 -1px; 
	padding:0; 
	list-style:none;
	background:#FFF;
	border:1px solid #000;
	width:200px;
}

#nav ul li {
	float:left; 
	border-left:25px solid #ebebeb;
	width:175px;
}

/* display block will make the link fill the whole area of LI */
#nav ul a {
	display:block;  
	height:15px;
	padding: 8px 5px; 
	color:#666;
}

#nav ul a:hover {
	text-decoration:none;	
}

/* 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;
}