/*popuppe menu*/
#menu_top_site{
	float: left; /* to keep the other floating objects contained*/
	position:relative; /* This can also be fixed or absolute*/
	width:100%;
		
	/*Format */
	color:#000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size:16px;
	background-color:#FFCC33;
}

#menu_top_site ul{
	float: left;
	white-space: nowrap;
	margin: 0;  
	padding: 0;
	text-align:center;
	
}


/* add more for each extra submenu level*/
#menu_top_site ul li { 
	margin: 0;
	margin-left:1px;
	background-color:#FFCC33;
	padding: 0;
	float: left;
	list-style-type: none;
	position: relative;
	width:100px;
	height:25px;
	text-align:center;
}


/* add more for each extra submenu level*/
#menu_top_site ul li ul,
#menu_top_site ul:hover li ul li ul {
    display:none;
	z-index: 1000;
}



/* First submenu level*/
#menu_top_site  > ul > li:hover > ul{
display:block; /*unhide it*/
left:-1px;
	
	float: right;	
	position: absolute; /* It needs to be absolute
	for the effect to work.*/
	top: 25px; /* This places the the bottom of the 
	ul 1.1em from the bottom of the enclosing li. This 
	is the important part of the effect.*/
	
}



/* For the remaining submenu levels*/
/* add more for each extra submenu level*/

#menu_top_site  ul  li  ul  li:hover  ul,
#menu_top_site  ul  li  ul li ul li:hover  ul,
#menu_top_site  ul  li  ul li ul li ul li:hover  ul{
	float: right;
	display: block;
	position: absolute;
    top:0;	
	width: 100px;
	left: 100px;
	/*bottom: 3px;  Required with some value or
	the effect will not work*/
}
#menu_top_site ul li:hover ul li{ 
	display: block;
 	float: left;   
 	width: 100%;
}

#menu_top_site ul li a{
	float: left;
	display: block;
	text-align:center;
	width:100%;
	height:25px;
	text-decoration: none;
	color:#000000;
	font-weight:bold;
	padding-top:0;
	border-bottom:#FFFFFF thin solid;
	border-top:#FFFFFF thin solid;
	border-right:#FFFFFF thin solid;

	/*padding: 0 4.5em 0 4.5em;*/
}

/* The on state for the link when you are on the submenu.
This should be before the hover state for the link itself*/
#menu_top_site ul li:hover > a{
background-color:#FF3333;
	color: White;
}
#menu_top_site ul li a:hover
{ 
	background-color:#FF6633; 
	color: White;
}

#menu_top_site ul li ul li a{ 
	float: none;
 	background-color:#FF9933;
 	color: #345D84;
 	font-size:12px;
	padding-top:3px;
 	white-space: normal;
 }

#menu_top_site ul li ul li:first-child a{
	border-width: 1px 1px 1px 1px;
} 

