@charset "utf-8";
/* CSS Document */

#menu {
	list-style-type: none;
	line-height: 40px;
	height: 40px;
	margin-left: auto;
	margin-top: 0px;
	margin-right: auto;
	width: 900px;
}
#menu > li{
	line-height: 40px;
	float: left;
	margin: 0px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #C00;
	border-left-color: #C00;
	height: 40px;
	position: relative;
	z-index: 10000;
}
#menu > li >a{
	display:block;
	height:40px;
	font-family:arial;
	font-weight:bold;
	text-decoration:none;
	color:#FFF;
	line-height:40px;
	padding-right: 20px;
	padding-left: 20px;
	font-size: 18px;
	transition-property: color, background-color, border;
	transition-duration: 1s;
	-webkit-transition-property: color, background-color, border;
	-webkit-transition-duration: 1s;
	-o-transition-property: color, background-color, border;
	-o-transition-duration: 1s;
	-moz-transition-property: color, background-color, border;
	-moz-transition-duration: 1s;
	-ms-transition-property: color, background-color, border;
	-ms-transition-duration: 1s;
}
#menu > li >a:hover{
	background-color:#FFF;
	color:#D71920;
	display: block;
	height: 40px;
	line-height: 40px;
}
#menu > li >a.sel{
	background-color: #FFF;
	color:#D71920;
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #040B35;
	height: 40px;
	line-height: 40px;
}
#menu ul  {
	top: 40px;
	color: #D71920;
	background-color: #CCC;
	width: 160px;
	left: 0px;
	text-decoration: none;
	position: absolute;
	z-index: 10000;
	display: none;
	box-shadow:2px 2px 5px #999;
	-webkit-box-shadow:2px 2px 5px #999;
	-o-box-shadow:2px 2px 5px #999;
	-moz-box-shadow:2px 2px 5px #999;
	-ms-box-shadow:2px 2px 5px #999;
}
#menu li:hover > ul {
	display: block;
	width: 160px;
}

#menu li ul li {
	float: none;
	font-size: 12px;
	line-height: 30px;
	height: 30px;
	text-align: justify;
	width: 150px;
}

#menu li ul li a {
	color: #FFF;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	display: block;
	height: 30px;
	width: 150px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FFF;
	line-height: 30px;
	padding-right: 5px;
	padding-left: 5px;
	list-style-type: none;
}
#menu li ul li>a:hover {
	font-weight: bold;
	color: #FFF;
	background-color: #D71920;
	text-decoration: none;
	border-left-width: 10px;
	border-left-style: solid;
	border-left-color: #040B35;
	width: 140px;
}
