@charset "utf-8";
/* CSS Document */


#Ashoka_menu{
width:800px;/*...with a fixed width...*/
height:32px;
z-index:10000;
}

#Menu_Brand{
	display:none;
}


#Menu_VisLarg{
	display:none;
}	


#Menu_Collections{
	display:none;
}

ul#horiznav, #horiznav ul{
margin:0;
padding:0;/*set both to zero to remove browser inconsistencies*/
list-style-type:none;/*get rid of bullet points*/
height:32px;/*just to avoid some possible float issues*/
}

#horiznav li{
float:left;/*float the li element so the menu's horizontal...*/
width:134px;/*...and set the width*/
position:relative;/*set position:relative as the start point for absolutely positioning the dropdown*/
}

#horiznav li a{

font-family:和平中黑,SimHei, Microsoft YaHei, Arial, Helvetica, verdana, sans-serif;
font-size:12px;
font-weight:bold;
display:block;/*make the link a block element...*/
width:170px;/*...with a fixed width...*/
line-height:30px;/*...and set the line-height to vertically centre the text*/
text-align:center;/*horizontally centre the text...*/
color:white;/*...colour it white...*/
text-decoration:none;/*...and remove the default underline*/
background-color:#40332a;/*give the link an brown background...*/
margin:1px;	


text-align:left;
padding-left:11px;

}

#horiznav li a:hover{
color:#ffffff/*change the text colour on :hover*/

}

#horiznav li ul{
display:none;/*hide the dropdown*/
position:absolute;/*position it absolutely..*/
left:0;/*...align the left edge with the left edge of the parent li...*/
top:32px/*...and 32px down from the top - 30px height + 2px for the border*/
}

#horiznav li:hover ul {
display:block/*display the ul when the parent li is hovered*/
}

#horiznav li ul a{
background-color:#40332a/*give the dropdown a different background colour*/
}

.Menu li a{
	text-align:left;
	padding-left:10px;
}