@charset "utf-8";
/* CSS Document */
.jquerycssmenu{ margin:0;
font: bold 12px Arial, Helvetica, sans-serif;
padding: 0px;
padding-left: 22px; /*offset of tabs relative to browser left edge*/
padding-top:8px;
}

.jquerycssmenu ul{
margin: 0;
padding: 0;
list-style-type: none;

}

/*Top level list items*/
.jquerycssmenu ul li{
position: relative;
display: inline;
float: left;
margin:0;
padding:0; 

}
.jquerycssmenu img{margin:0px 8px 0px 8px;  border:none;vertical-align:middle;}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
display: block;
margin-right: 2px; /*spacing between tabs*/
border-bottom-width: 0;
color: #8e9093;
text-decoration: none;
}

.jquerycssmenu ul li a:hover{
color: #2981c1; /*tab link background during hover state*/

}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
width:158px; 
position: absolute;
display: block;
visibility: hidden;
border: 1px solid #e1e1e1;
margin-bottom:0;
padding:0;
background: #f8f9f7; 
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
display: list-item;
float: none;
margin:0;
padding:0;

}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul{
top: 0;
margin:0;
padding:0;

}

/* Sub level menu links style */
.jquerycssmenu ul li ul li a{
font: normal 12px arial;
width: 155px; /*width of sub menus*/
background: #f8f9f7;
color: #8e9093;
padding: 4px 0px 4px 3px;
margin: 0;
border-top-width: 0;
text-align:left;


}

.jquerycssmenu ul li ul li a:hover{ /*sub menus hover style*/
background: #f0f0f0;
color: #2981c1;

}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
position: absolute;
top: 7px;
right: 0px;
}

.rightarrowclass{
position: absolute;
top: 5px;
right: 0px;
}



/* Hides from IE-mac \*/
* html .jquerycssmenu {height: 1%;}

