/*一级菜单DIV整体样式*/
.ddsmoothmenu{

width: 100%;
font-family:microsoft yahei;
font-weight:normal;
}

.ddsmoothmenu ul{
z-index:100;
margin: 0;
padding: 0;
list-style-type: none;
text-align:center;

}



/*Top level list items*/
.ddsmoothmenu ul li{
position: relative;
float: left;
height:121px;
display:block;

}


/*	一级菜单样式	*/  
.ddsmoothmenu ul li a{font-size:16px;
text-align:center;
display: block;
color: #333333;
text-decoration: none;
width:99px;
height:90px; 
padding-top:31px;


}
.ddsmoothmenu ul li a img{ 
padding-bottom:5px;
display: block;
margin: 0 auto;
width:40px; height:40px;
border:none;}

/*	一级菜单鼠标经过样式	*/
.ddsmoothmenu ul li:hover{ 
background:#59a538;
}
.ddsmoothmenu ul li a:hover{color:#fff;}

.ddsmoothmenu ul li a.selected{ /*CSS class that's dynamically added to the currently active menu items' LI A element*/
color:#fff;
background:#59a538; 


}

	
/*1st sub level menu*/
.ddsmoothmenu ul li ul{
position: absolute;
left: 0;
display: none; /*collapse all sub menus to begin with*/
display:none;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
display: list-item;
float: none;
height:30px;
line-height:30px;
padding:0;
margin:0;
display:block;
border-bottom:1px solid #9d0505;

}

.ddsmoothmenu ul li ul li:hover{
background:none;
}


/* 子(二级)菜单样式 */
.ddsmoothmenu ul li ul li a{
	font-size:12px;

	color:#ffffff;
	width: 180px; 
	text-align:center;
	height:30px;
	line-height:30px;
	padding:0;
	
	margin: 0;
	
	background:#aa0000;
          
}

/* 子(二级)菜单样式鼠标滑过样式 */
.ddsmoothmenu ul li ul li a:hover{
	background:#94100e;
	color:#ffffff;
	height:30px;
	line-height:30px;
}







