﻿DIV.menuBar {/*一级栏目总体样式，是个整体的，按钮是位于其中的，要和单独按钮样式区别开*/
	padding: 0px 0px 0px 0px;text-align: left;}
DIV.menuBar A.menuButton {/*以下是一级栏目按钮样式*/
	display:inline-block;/*加上本句，超链接得以显示宽度，高度，使超链接成为块元素*/
	margin: 0px 0px 0px 0px;
	padding: 0px 20px 0px 20px;
	z-index: 100;
	position: relative;
	text-decoration: none;
	font-size:18px;
	color: #f5d97d;
	font-family:Microsoft YaHei;
	line-height:43px;/*使文字上下居中显示*/
	height:47px;
	font-weight: normal;background-color: transparent;border-top:3px solid transparent; text-align:center;transition: all 0.1s;}
DIV.menuBar A.menuButton:hover {/*一级栏目鼠标经过时的样式*/
    
	background-color: #f5d97d;border-top:3px solid #fefdd1;-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=22, Direction=90, Color=#d7b958)";/*ie 8*/
    -moz-box-shadow: inset 3px 0px 30px #d7b958;/*ff 3.5+*/
    -webkit-box-shadow: inset 3px 0px 30px #d7b958;/*saf3-4, chrome, ios 4.0.2-4.2, android 2.3+*/
    box-shadow: inset 3px 0px 30px #d7b958;/* ff3.5+, opera 9+, saf1+, chrome, ie10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=30, Direction=90, Color=#d7b958); /*ie 5.5-7*/
	color: #333;}
DIV.menuBar A.menuButtonActive {/*鼠标在二级栏目上时的一级栏目的样式*/
	background-color: #f5d97d;border-top:3px solid #fefdd1;-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=22, Direction=90, Color=#d7b958)";/*ie 8*/
    -moz-box-shadow: inset 3px 0px 30px #d7b958;/*ff 3.5+*/
    -webkit-box-shadow: inset 3px 0px 30px #d7b958;/*saf3-4, chrome, ios 4.0.2-4.2, android 2.3+*/
    box-shadow: inset 3px 0px 30px #d7b958;/* ff3.5+, opera 9+, saf1+, chrome, ie10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=30, Direction=90, Color=#d7b958); /*ie 5.5-7*/
	color: #333;}
DIV.menuBar A.menuButtonActive:hover {/*有二级栏目的一级栏目鼠标经过时样式*/
	background-color: #f5d97d;border-top:3px solid #fefdd1;-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=22, Direction=90, Color=#d7b958)";/*ie 8*/
    -moz-box-shadow: inset 3px 0px 30px #d7b958;/*ff 3.5+*/
    -webkit-box-shadow: inset 3px 0px 30px #d7b958;/*saf3-4, chrome, ios 4.0.2-4.2, android 2.3+*/
    box-shadow: inset 3px 0px 30px #d7b958;/* ff3.5+, opera 9+, saf1+, chrome, ie10 */
    filter: progid:DXImageTransform.Microsoft.Shadow(Strength=30, Direction=90, Color=#d7b958); /*ie 5.5-7*/
	color: #333;}
DIV.menu {/*二级栏目总体样式
    border: #e0e0e0 1px outset;*/
	margin: 0px 0px 0px 0px;
	min-width:90px;
	_width:90px;
	z-index: 121;
	visibility: hidden;
	position: absolute;
	background-color:#1a7000;
	font-family: Microsoft YaHei;}
DIV.menu A.menuItem {/*二级栏目按钮样式*/
	padding: 0px 30px 0px 30px;
	display: block;
	font-size:14px;
	color:#fff;
	text-decoration: none;
	text-align: left;
	height:40px;
	line-height:40px;}
DIV.menu A.menuItem:hover {/*二级栏目按钮鼠标经过样式*/
	color:#333;
	background-color: #f5d97d;}
DIV.menu A.menuItemHighlight {/*放到下级栏目上时，上级栏目的背景颜色*/
	color: #fff;
	background-color:#333;}
DIV.menu A.menuItem SPAN.menuItemArrow {/*暂时不用，需要右边箭头的时候，调整js才可使用*/
	margin-right: -0.75em;}
