/* top level
--------------------------------------------*/
.menuTemplate3
{
    margin: 0 auto; width: auto;float:left;
    behavior: url("css/cssmenu.htc"); 
    position:relative;
    z-index:4;
    height: 36px;

    list-style: none;
    padding: 0;
}

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

.menuTemplate3 li
{
    padding: 0;
    float: left;
    height: 36px;
    position: relative;/*delete it if you want submenu to be positioned relative to the whole menu instead of this li element*/
    color: #EEE;
    z-index:5;
      margin-left: 6px;
  margin-right: 8px;
}

.menuTemplate3 li:hover, .menuTemplate3 li.onhover
{
      border-top: 1px solid #E95A44;
}
.menuTemplate3 a
{
   color: #ef6423;
  display: block;
  font-size: 15px;
  padding: 15px 0px 15px 0px;
  overflow: hidden;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.menuTemplate3 li:hover a, .menuTemplate3 li.onhover a
{
    background-color: #BFBFBF;
  color: #444;
    z-index: 9;
}
.menuTemplate3 a.arrow
{
    background: url(arrow.gif) no-repeat right center;
}
 
        
/*Used to align a top-level item to the right*/        
.menuTemplate3 li.menuRight
{
    float: right;
    margin-right: 0px;
}
        
/*for the top-level separators*/
.menuTemplate3 li.separator
{
    font-size:0;
    overflow:hidden;
    border-left:1px solid #aaa;
    height:20px;
    margin-top:8px;
    z-index:4;
}
               
        
/* sub level
--------------------------------------------*/
        
.menuTemplate3 .drop
{
      position: absolute;
  z-index: 8;
  left: -9999px;
  /*border: 1px solid #000;*/
  /*box-shadow:1px 1px 13px 1px  #000;*/
  background: #BFBFBF;
  text-align: left;
  padding: 20px;
  top: 51px;
  color: #000023;
}

.menuTemplate3 .drop a
{
    padding-left: 0px;
    padding-right: 0px;
    line-height: 26px;
    font-size: 12px;
    font-weight: normal;
    display: inline;
    text-align: left;
    
    position: static;
    z-index: 0;
}

.menuTemplate3 li:hover .drop, .menuTemplate3 li.onhover .drop
{
    left: -1px;/*Use this property to change offset of the dropdown*/
}
.menuTemplate3 li:hover .dropToLeft, .menuTemplate3 li.onhover .dropToLeft
{
    left: auto;
    right: -1px;
}
.menuTemplate3 li:hover .dropToLeft2, .menuTemplate3 li.onhover .dropToLeft2
{
    left: auto;
    right: -60px;
}

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

.menuTemplate3 div.drop div div
{
    padding: 6px 20px;
}
.menuTemplate1 li:hover .drop a, .menuTemplate1 li.onhover .drop a
{
    background: none;
    background-image:none;
    padding:0 0;
}
.menuTemplate3 div.drop div a
{
    line-height: 24px;  
	color:white;
    background:none;
}
.menuTemplate3 div.drop div a:hover
{
    text-decoration:underline;
    cursor:pointer;
    color:Red;
	background:#ccc;
	padding:5px 0  !important;
}

.menuTemplate3 div.left {
	padding-left:30px;
	padding-right:40px;
	float:left;
}
.menuTemplate3 div.left a:hover{
	
}
 
/* CSS3 effects
--------------------------------------------*/
 
/*for top-level*/       
.decor3_1 
{
	
}

/*for submenu.*/   
.decor3_2 
{
	background:#ff6501 !important;
}