﻿.navmenu *
{
	margin: 0;
	padding: 0;
}
.navmenu
{
	border: #00CED1 1px solid;
	height: 25px;
}
.navmenu li
{
	/*水平菜单*/
    font-size: 15px;
	float: left;
	list-style: none;
	position: relative;
}
.navmenu a
{
	display: block;
	font-size: 15px;
	height: 24px;
	width: 220px;
	line-height: 24px;
	background-color: #00CED1;
	color: #111111;
	text-decoration: none;
	text-align: center;
	border-left: #00CED1 1px inset;
	border-right: #00CED1 1px inset;
	border-bottom: #00CED1 1px inset;
}
/*单独设置一级菜单样式*/
.navmenu > ul > li > a
{
	font-size: 15px;
	font-weight: bold;
}
.navmenu a:hover
{
	background: #369;
	color: #fff;
}
/*新增的二级菜单部分*/
.navmenu ul ul
{
	visibility: hidden; /*开始时是隐藏的*/
	position: absolute;
	left: 0px;
	top: 24px;
}
.navmenu ul li:hover ul, .navmenu ul a:hover ul
{
	visibility: visible;
}
.navmenu ul ul li
{
	clear: both; /*垂直显示*/
	text-align: left;
}
/*选中菜单项*/
.navmenu .selected
{
	padding-left:15px;
	background-position-x:0px;
	background-image: url(./res/selected.gif);
	background-repeat: no-repeat;
	text-decoration:underline;
}
