/* CLASSES PARA MENU ESPECIAL DROPDOWN */

#menudrop,
#menudrop * { 
margin:0;
padding:0;
z-index: 200;
}

/* "Master" UL (the whole Menu) */
#menudrop {
position:relative;
background:#FFF no-repeat 100% 50%;
width:100%;
/*width:50em;
max-width:100%;*/
float:left;
/*margin-bottom:3.5em;*/

 z-index: 200;
}

/* sub-menu ULs */
#menudrop li ul {
	width:11em !important;/* leaves room for padding */
	background-color:#FFF;
	cursor:default;
	position:absolute;
	height:auto;
	display:none;
	left:-10px;
	padding:1px 5px 10px 10px;
	background:url(/img/clear.gif);/* trick to keep'em open */
	 z-index: 200;
}
/* All LIs */
#menudrop li {
	position:relative;
	/*width:15.30em;*/
	max-width:29%;
	cursor:pointer;
	float:left;
	list-style-type:none;
	font-weight:bold;
	padding-right: 5px;
	padding-left: 5px;
	 z-index: 200;
	
}
/* sub-menu LIs - SUBMENUS */
#menudrop li ul li {
font-size:11px;
	color:#FFFFFF;
	font-weight:bold;
	width:17em/*FF*/;
	background-color:#D7625B;
	padding:0;
	max-width:16em;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #D7625B;
	 z-index: 200;
}


/* All anchors */
#menudrop li a {
	font-family: Arial, Helvetica, sans-serif;	
	cursor:default;
	color:#666666;
	/*border-left:1px solid #333;*/
	text-decoration:none;
	display:block;
	float:left;
	padding-right: 5px;
	padding-left: 5px;
/*  uncomment the declaration below if you want to go "full width" */
/*	width:7.47em; */
	height:2em;
	line-height:2em;
	cursor:pointer !important;
	z-index: 200;

}
/* LINKS dos sub-menu Anchors */
#menudrop li ul li a {
	width:15em/*FF*/;
	max-width:15em;
	position:relative !important; /* ie Mac */
	cursor:pointer !important;
	white-space:nowrap;
	line-height:2em;
	height:1.7em;
	font-weight:bold;
	color:#FFFFFF;
	background-position:0 50% !important;
	 z-index: 200;
}
/* :hover and stuff */
#menudrop li a:hover,
#menudrop li a:focus,
#menudrop li a:active {
color:#FFFFFF;
background-color:#A53029;

}

/* move the declarations from the rule below the one above if you want a background swap on *all* anchors, including the top level ones */


#menudrop ul a:hover,
#menudrop ul a:focus,
#menudrop ul a:active {
color:#FFFFFF !important;
background-color:#A53029;
}


/* display and z-index for the sub-menus */
#menudrop li:hover ul,
#menudrop li.msieFix ul {

display:block;
z-index:10;
top:2em !important;
}
#menudrop ul li ul li,
#menudrop ul li ul li a {
	display:none;
}
/* safari: users can keep sub-menus up by from sub-menus to next top level  */
/* didn't find a solution for users going back from the last one. I prefer  */
/* to leave it like that vs. taking the last sub-menu *out of* the wrapper  */
#menudrop li#m1 {
cursor:auto;
}
#menudrop li#m2 {z-index:500;}
#menudrop li#m3 {z-index:400;}
#menudrop li#m4 {z-index:300;}
#menudrop li#m5 {z-index:200;}
#menudrop li#m6 {z-index:100;}

