/* top level */
/*************/

.menuDiv {
	margin: 0 auto; width: auto;float:left;
	position:relative;
	z-index:4;
	height: 36px;
	background: none;
	border: none;
	font-family: Arial, Helvetica, sans-serif;
	list-style: none;
	padding: 0;
}

.menuDiv div {
  box-sizing:content-box;
}

.menuDiv 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;
	
	border-left:1px solid;
	border-right:1px solid;
	border-top:2px solid;
	border-color:transparent;
	_border-color:#FFF;/*IE6 Hack*/
}

.menuDiv li:hover, .menuDiv li.onhover {
	border-color:#DDD;
	border-top:2px solid #0160C3;
	border-bottom:1px solid #DDD;
}
.menuDiv a {
	padding: 0 30px;
	line-height: 34px; /*Note: keep this value the same as the height of .menuDiv li */
	font-size: 14px;
	font-weight: normal;
	display: inline-block;
	outline: 0;
	text-decoration: none;
	color: #FFF;
	position: relative;
}

.menuDiv li:hover a, .menuDiv li.onhover a {
	background-color: #EEE;
	color: #000;
	z-index: 9; 
}

.menuDiv a.arrow {
  background: url(../images/arrow.gif) no-repeat right center;
}
 
        
/*Used to align a top-level item to the right*/        
.menuDiv li.menuRight {
	float: right;
	margin-right: 0px;
}
        
/*for the top-level separators*/
.menuDiv li.separator {
  display:none;
}
               
        
/* sub level
--------------------------------------------*/
        
.menuDiv .drop {
	position: absolute;
	z-index:2000;
	left: -9999px;
	border: 1px solid #DDD;
	border-bottom:2px solid #0160C3;
	background: #FFF url(../images/bg_grad.gif) repeat-x 0 0;
	text-align: left;
	padding: 15px;  
	top:31px;
}

.menuDiv .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;
}

.menuDiv li:hover .drop, .menuDiv li.onhover .drop {
  left: -1px;/*Use this property to change offset of the dropdown*/
}

.menuDiv li:hover .dropToLeft, .menuDiv li.onhover .dropToLeft {
	left: auto;
	right: -1px;
}

.menuDiv li:hover .dropToLeft2, .menuDiv li.onhover .dropToLeft2 {
	left: auto;
	right: -60px;
}

/* Elements within the drop down sub-menu
--------------------------------------------*/

.menuDiv div.drop div div {
  padding: 5px 20px;
}

.menuTemplate1 li:hover .drop a, .menuTemplate1 li.onhover .drop a {
	background: none;
	background-image:none;
	padding:0 0;
}

.menuDiv div.drop div a {
	line-height: 21px;  
	color: #048;
	background:none;
}

.menuDiv div.drop div a:hover {
	text-decoration:underline;
	cursor:pointer;
	color:Red;
}

.menuDiv div.left { float:left; }

 
     
/* CSS3 effects
--------------------------------------------*/

/*for top-level*/
.decor2_1  {

}

/*for submenu.*/
.decor2_2  {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;

	-moz-box-shadow: 0 0 14px #AAA;
	-webkit-box-shadow: 0 0 14px #AAA;
	box-shadow: 0 0 14px #AAA;  
}

hr.style-two { 
	border: 0; 
	height: 1px; 
	line-height: 1px; 
	margin:4px;
	padding:0px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
	background-image: -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
	background-image: -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0)); 
}