@charset "UTF-8";

/* CSS Document */

.menu {
	width:900px; 
	height:28px; 
	position:relative; 
	z-index:1001;
	margin: 2px 0px 0px 15px;
	border-right:none; 
	font-family:arial, sans-serif;
	color: #FFF;}
		
.nav_border{
	border-right:1px solid #fff;}
	
	
/* remove all the bullets, borders and padding from the default list styling */

.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;}
	

	
	
.menu ul ul {
	width:150px;}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */

.menu li {
	float:left;
	width:auto;
	position:relative;
	margin: 0px;
	padding: 0px;}

/* style the links for the top level */

.menu a, .menu a:visited {
	display:block;
	font-size:12px;
	text-decoration:none;
	color:#FFF;
	text-align:center;
	width: 100%;
	height:30px;
	border:0px solid #000;
	border-width:0px;
	margin: 0px 15px;
	background: transparent;
	line-height:29px;}


/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background:#666666;
}
/* style the second level hover */

.menu ul ul a.drop:hover{
	background: transparent;}
	
.menu ul ul :hover > a.drop {
	background:transparent;}
	
/* style the third level background */

.menu ul ul ul a, .menu ul ul ul a:visited {
	background:transparent;}
	
/* style the third level hover */

.menu ul ul ul a:hover {
	background:transparent;}


/* hide the sub levels and give them a positon absolute so that they take up no room */

.menu ul ul {
	visibility:hidden;
	position:absolute;
	height:auto;
	top:30px;
	left:0px;
	width:150px;}
	

/* style the second level links */

.menu ul ul a, .menu ul ul a:visited {
	text-align: left;
	background: #999999;
	color:#FFF;
	height:auto;
	line-height:1em;
	padding:5px 10px;
	width:150px;
	border-width: 0px 1px 1px 1px;
	border-color: #FFF;}

/* style the top level hover */

.menu a:hover{
	color:#000;
	 background:transparent;}

 .menu ul ul a:hover{
        color: #000;
        background: #666666;}
		
.top {
	border-top: 1px solid #FFFFFF;}
 


/* make the second level visible when hover on first level list OR link */

.menu ul li:hover ul,
.menu ul a:hover ul{
	visibility:visible;}

/* keep the third level hidden when you hover on first level list OR link */

.menu ul :hover ul ul{
	visibility:hidden;}
	
/* make the third level visible when you hover over second level list OR link */

.menu ul :hover ul :hover ul{ 
	visibility:visible;}