﻿/* top level
--------------------------------------------*/
.menuCat1
{
    /* You will get totally diffrent menu alignment and layout by setting following margin, width, and float with different values.
    For detailed instruction please visit www.menucool.com/horizontal/change-menu-alignment  */
    margin: 0 auto; width: 1060px;float:left;
    /*following "behavior" works for IE6, IE7, and IE8. Other browsers will ignore it.*/
    /*Note: htc file path(if using relative path) inside the CSS file should be relative to the page, not to the CSS file (this is unlike image path inside the CSS that is relative to the CSS file location only). 
    So we recommend using the absolute path for the behavior file.*/
    /*behavior: url("/webfiles/css/cssmenu.htc");*/
    position:relative;
	z-index:4;
    height: 35px;
    background: #DDDDDD url(mnubackground.png);*/
    /*border: 0px solid #BBB;*/
    font-family: Arial, Helvetica, sans-serif;
	/*font-family: Tahoma, Verdana;*/
    list-style: none;
    padding: 0;
	margin-left:5px;
	margin-top:0px;
}
.menuCat1 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: black;
    z-index:5;
}

.menuCat1 a
{
    padding: 0 20px;
    line-height: 36px; /*Note: keep this value the same as the height of .menuCat1 li */
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    outline: 0;
    text-decoration: none;
    color: #6D2F09;
    position: relative;
}
.menuCat1 li:hover a, .menuCat1 li.onhover a
{
    /*background: url(bg1.gif) repeat-x 0 -48px;*/
    color: #F5721A;
    z-index: 9;
}
.menuCat1 a.arrow
{
    background: url(arrow_d.gif) no-repeat right center;
	margin-right:2px;
}
              
        
/* sub level
--------------------------------------------*/
        
.menuCat1 .drop
{
    position: absolute;
    z-index:5;
    left: -9999px;
    border: 1px solid #0F3A69;
    border-bottom:3px solid #0F3A69;
    background: #EDF1F2;            
    text-align: left;
    padding: 20px;  
    color:#0F4F89;
    top:34px;              
}

.menuCat1 .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;
    background-image:none;
}

.menuCat1 li:hover .drop, .menuCat1 li.onhover .drop
{
    left: -1px;/*Use this property to change offset of the dropdown*/
	background:white;
    /*background:white url(bg-right.png) no-repeat right bottom;*/
}


/* Elements within the drop down sub-menu
--------------------------------------------*/

.menuCat1 div.drop div div
{
    padding: 6px 5px;
}
.menuCat1 li:hover .drop a, .menuCat1 li.onhover .drop a
{
    background: none;
    background-image:none;
    padding:0 0;
}
.menuCat1 div.drop div a
{
    line-height: 24px;  
    color: #0F4F89;
    background:none;
}
.menuCat1 div.drop div a:hover
{
    text-decoration:underline;
    cursor:pointer;
    color:#F5721A;
}

.menuCat1 div.left {float:left;}

        
/* CSS3 effects
--------------------------------------------*/

/*for top-level*/     
.decor1_1 
{
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;

    -moz-box-shadow: 0px 1px 4px #ccc;
    -webkit-box-shadow: 0px 1px 4px #ccc;
    box-shadow: 0px 1px 4px #ccc;
            
}

/*for submenu.*/    
.decor1_2 
{
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;

    -moz-box-shadow: 0px 12px 20px #CCCCCC;
    -webkit-box-shadow: 0px 12px 20px #CCCCCC;
    box-shadow: 0px 12px 20px #CCCCCC;  
}