/**
 * Logo nav
 */
#logo{
	display: block;
	height: 85px;
	position: absolute;
	width: 350px;
}




/**
 * Top (main) Nav
 */
#top_nav{
	list-style-type: none;
	margin: 0 0 0 9px;
	padding: 0;
}

#top_nav a{
	color: white;
	font-family: verdana;
	padding: 10px 20px;
	text-decoration: none;
}

#top_nav li a.false_link:hover{
	color: white;
	cursor: default;
}

#top_nav a:hover{
	color: #8AFA00;
}

#top_nav li{
	float: left;
	border-right: 1px solid white;
	padding: 2px 0;
}

#top_nav li.last{
	border-right: none;
}




/**
 * Sub Nav
 */
#top_nav li ul{
	border: 1px solid gray;
	display: none;
	list-style-type: none;
	margin: 4px 0 0 0;
	padding: 0;
	position: absolute;
}

#top_nav li:hover ul{
	background-color: black;
	display: block;
	padding-bottom: 5px;
}

#top_nav li ul li{
	border: none;
	display: block;
	float: none;
	padding: 5px 0;
}

#top_nav li ul li a{
	padding: 0 9px;
}


/**
 * Examples
 */ 
#examples h3{
	font-size: small;
	text-align: center;
} 

#examples ul{
	border-top: 1px solid white;
	list-style-type: none;
	margin: 0 auto;
	padding: 0;
	width: 335px;
}

#examples ul li{
	float: left;
}

#examples ul li.middle{
	border-left: 1px solid white;
	border-right: 1px solid white;
}

#examples ul li a{
	color: white;
	padding: 10px 20px;
	text-decoration: none;
}

#examples ul li a:hover{
	color: #8AFA00;
}

