﻿DIV.menuBar {/*一级栏目总体样式，是个整体的，按钮是位于其中的，要和单独按钮样式区别开*/
	PADDING: 0px 0px 0px 0px;TEXT-ALIGN:center;
}
DIV.menuBar A.menuButton {/*以下是一级栏目按钮样式*/
	display:inline-block;/*加上本句，超链接得以显示宽度，高度，使超链接成为块元素*/
	MARGIN: 0px 0px 0px 0px;
	PADDING: 0px 15px 0px 15px;
	Z-INDEX:fbb03b;
	POSITION: relative;
	TEXT-DECORATION: none;
	FONT-SIZE:16px;
	color: #666;
	font-family:"Microsoft YaHei";
	line-height:100px;/*使文字上下居中显示*/
	height:100px;
	font-weight: bold;
	text-transform: capitalize;
/*background:url(images/nav_mainbar_bg.gif) top right no-repeat;*/
}
DIV.menuBar A.menuButton:hover {/*一级栏目鼠标经过时的样式transition:0.5s all;
	-webkit-transition:0.5s all;
	-moz-transition:0.5s all;
	-o-transition:0.5s all;
	-ms-transition:0.5s all;*/
	COLOR:#e6261f;
}
DIV.menuBar A.menuButtonActive {/*鼠标在二级栏目上时的一级栏目的样式*/
	COLOR:#e6261f;
}
DIV.menuBar A.menuButtonActive:hover {/*有二级栏目的一级栏目鼠标经过时样式*/
	COLOR:#e6261f;
}
DIV.menu {/*二级栏目总体样式
    BORDER: #e0e0e0 1px outset;*/
	MARGIN: 0px 0px 0px 0px;
	width:230px;
	Z-INDEX: 121;
	VISIBILITY: hidden;
	POSITION: absolute;
	background-color:rgba(0,0,0,0.8);
	font-family: Microsoft YaHei;

}
DIV.menu A.menuItem {/*二级栏目按钮样式*/
	PADDING:10px 20px 10px 20px;
	DISPLAY: block;
	font-size:14px;
	COLOR: #FFF;
	TEXT-DECORATION: none;
	TEXT-ALIGN: left;

	line-height:1.3;
}
DIV.menu A.menuItem:hover {/*二级栏目按钮鼠标经过样式*/
	COLOR: #fff;
	BACKGROUND-COLOR:#e6261f;
}
DIV.menu A.menuItemHighlight {/*放到下级栏目上时，上级栏目的背景颜色*/
	COLOR: #fff;
	BACKGROUND-COLOR:#e6261f;
}
DIV.menu A.menuItem SPAN.menuItemArrow {/*暂时不用，需要右边箭头的时候，调整js才可使用*/
	MARGIN-RIGHT: -0.75em;
}
