@charset "utf-8";
/* CSS Document */
@font-face {
	font-family: 'Open Sans';
	src: url('fonts/OpenSans_Regular.ttf');
}
#menu {
	font-family: 'Open Sans', Arial, Tahoma, Helvetica, sans-serif;
	width: 1000px;
	height: 37px;
	list-style: none;
	margin: 23px auto 0px auto;
	padding: 0px;
	background: url(../images/bg-menu.jpg) repeat-x center center;
}
#menu li {
	float: left;
	position: relative;
	height: 38px;
}
#menu a {
	height: 37px;
	line-height: 37px;
	padding: 0px 15px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	display: block;
	text-decoration: none;
	background: url(../images/bg-menu-a.jpg) no-repeat right center;
}
#menu li:hover > a {
	background: url(../images/bg-menu-a-h.jpg) no-repeat right center;
}
#menu li a.selected {
	background: url(../images/bg-menu-a-h.jpg) no-repeat right center;
}
*html #menu li a /* IE6 */ {
	background: url(../images/bg-menu-a.jpg) no-repeat right center;
}
#menu li:hover > ul {
	display: block;
}
/* Sub-menu */
#menu ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: none;
	position: absolute;
	top: 38px;
	left: 0px;
	z-index: 9999;
}
#menu ul ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	top: 0px;
	left: auto;
}
#menu ul li {
	height: 37px;
	float: none;
	margin: 0px;
	display: block;/*-moz-box-shadow: 0 1px 0 #eff1ec, 0 2px 0 #eff1ec;
	-webkit-box-shadow: 0 1px 0 #eff1ec, 0 2px 0 #eff1ec;
	box-shadow: 0 1px 0 #eff1ec, 0 2px 0 #eff1ec;  */
}
#menu ul li:last-child {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
#menu ul a {
	width: auto;
	height: 37px;
	line-height: 37px;
	padding: 0px 20px 0px 35px;
	display: block;
	white-space: nowrap;
	font-weight: normal;
	text-decoration: none;
	background: url(../images/bg-menu-a-a.jpg) no-repeat left center;
}
*html #menu ul a /* IE6 */ {
	height: 37px;
}
*:first-child+html #menu ul a /* IE7 */ {
	height: 37px;
}
/*Style Border-Radius Head & End Parent*/
#menu ul li:first-child > a {
}
#menu ul li:hover:first-child > a {
}
#menu ul li:last-child > a {
}
#menu ul li:hover:last-child > a {
}
/*Style Arrow Head Parent*/
#menu ul li:first-child > a:after {
	content: '';
	position: absolute;
	left: 10%;
	top: -8px;/*Style Arrow Parent
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 8px solid #7b0000;*/
}
#menu ul li:first-child a:hover:after {
	border-right-color: transparent;
	border-bottom-color: transparent;
}
/*Style Arrow Left Sub*/
#menu ul ul li:first-child a:after {
	left: -8px;
	top: 12px;
	border-left: 0px;/*Style Arrow Sub
	border-bottom: 5px solid transparent;
	border-top: 5px solid transparent;
	border-right: 8px solid #7b0000;*/
}
#menu ul ul li:first-child a:hover:after {
	border-right-color: transparent;
	border-bottom-color: transparent;
}
/*Style a Sub*/
#menu li li:hover > a {
	font-weight: bold;
	background: url(../images/bg-menu-a-a.jpg) no-repeat left center;
}
#menu li li a.selected {
	font-weight: bold;
	background: url(../images/bg-menu-a-a.jpg) no-repeat left center;
}
/* Clear floated elements */
#menu:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: ' ';
	clear: both;
	height: 0;
}
