﻿/* top level
--------------------------------------------*/
.menuTemplate2 {
	margin: 0 auto;
	width: auto;
	float: left;
	behavior: url("/horizontal/menuh/cssmenu.htc");
	position: relative;
	z-index: 999999;
	height: 36px;
	background: none;
	border: none;
	font-family: 'open_sansregular';
	list-style: none;
	padding: 0;
	float: right;
}
.menuTemplate2 div {
	box-sizing: content-box;
}
.menuTemplate2 li {
	padding: 0;
	float: left;
	height: 34px;
	_height: 36px;/*IE6 Hack*/
	position: relative;/*delete it if you want submenu to be positioned relative to the whole menu instead of this li element*/
	z-index: 5;
}
.menuTemplate2 li:hover, .menuTemplate2 li.onhover {
	border-color: #DDD;
	border-top: 2px solid #FFC32C;
	border-bottom: 1px solid #DDD;
}
.menuTemplate2 a {
	padding: 0 20px;
	line-height: 34px; /*Note: keep this value the same as the height of .menuTemplate2 li */
	font-size: 12px;
	font-weight: normal;
	display: inline-block;
	outline: 0;
	text-decoration: none;
	color: #000;
	position: relative;
}
.menuTemplate2 li:hover a, .menuTemplate2 li.onhover a {
	color: #000;
	z-index: 9;
}
.menuTemplate2 a.arrow {
	background: url(arrow.gif) no-repeat right center;
}
/*Used to align a top-level item to the right*/        
.menuTemplate2 li.menuRight {
	float: right;
	margin-right: 0px;
}
/*for the top-level separators*/
.menuTemplate2 li.separator {
	display: none;
}
/* sub level
--------------------------------------------*/
        
.menuTemplate2 .drop {
	position: absolute;
	z-index: 5;
	left: -9999px;
	border: 0px solid #DDD;
	border-bottom: 0px solid #B00;
	background: #FFF url(bg_grad.gif) repeat-x 0 0;
	text-align: left;
	padding: 20px;
	top: 35px;
}
.menuTemplate2 .drop a {
	padding-left: 0px;
	padding-right: 0px;
	line-height: 24px;
	font-size: 12px;
	font-weight: normal;
	display: inline;
	text-align: left;
	position: static;
	z-index: 0;
}
.menuTemplate2 li:hover .drop, .menuTemplate2 li.onhover .drop {
	left: -1px;/*Use this property to change offset of the dropdown*/
}
.menuTemplate2 li:hover .dropToLeft, .menuTemplate2 li.onhover .dropToLeft {
	left: auto;
	right: -1px;
}
.menuTemplate2 li:hover .dropToLeft2, .menuTemplate2 li.onhover .dropToLeft2 {
	left: auto;
	right: -60px;
}
/* Elements within the drop down sub-menu
--------------------------------------------*/

.menuTemplate2 div.drop div div {
	padding: 6px 10px;
}
.menuTemplate1 li:hover .drop a, .menuTemplate1 li.onhover .drop a {
	background: none;
	background-image: none;
	padding: 0 0;
}
.menuTemplate2 div.drop div a {
	line-height: 24px;
	color: #048;
	background: none;
}
.menuTemplate2 div.drop div a:hover {
	text-decoration: underline;
	cursor: pointer;
	color: Red;
}
.menuTemplate2 div.left {
	float: left;
	width: 200px;
}
/* CSS3 effects
--------------------------------------------*/

/*for top-level*/
.decor2_1 {
}
/*for submenu.*/
.decor2_2 {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0 0 4px #AAA;
	-webkit-box-shadow: 0 0 4px #AAA;
	box-shadow: 0 0 4px #AAA;
}
.subsubmenu {
	color: #000;
	font-weight: normal;
	text-decoration: none;
}
.subsubmenu a {
	color: #000;
	font-weight: normal;
	text-decoration: none;
}
