.jquerycssmenu{
font: bold 12px Verdana;
border-bottom: 1px solid black;
padding-left:0px; /*offset of tabs relative to browser left edge*/
width:100%;
}

.jquerycssmenu ul{
margin: 0;
padding: 0;
}

/*Top level list items*/
.jquerycssmenu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.jquerycssmenu ul li a{
display: block;
background: white; /*background of tabs (default state)*/
padding: 11px 17px;

margin-right: 0px; /*spacing between tab blocks*/
color: #2d2b2b;
text-decoration: none;
/*border-right: 1px solid #FCEDEC;*/
background-image: url('/static/images/template/m_back.png');
background-repeat: repeat-x;
}

.jquerycssmenu ul li a:hover{
 /*tab link background during hover state*/
color:red;
}
	
/*1st sub level menu*/
.jquerycssmenu ul li ul{
position: absolute;
left: 0;
display: block;
visibility: hidden;
border-top: 1px solid black;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.jquerycssmenu ul li ul li{
display: list-item;
float: none;

background-image: url('/static/images/template/p_back.png');
opacity: 0.85;
filter:alpha(opacity=85); /* IE's opacity*/
}

/*Sub level menu list items on HOVER*/
.jquerycssmenu ul li ul li:hover{
background: red;
opacity: 1;
filter:alpha(opacity=100); /* IE's opacity*/
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.jquerycssmenu ul li ul li ul{
top: 0;
}

/* Sub level menu LINKS style */
.jquerycssmenu ul li ul li a{
font: normal 13px Verdana;
color: black;
/*width of sub menus*/
width: auto;
-width: 200px; /*width for ie6*/

padding: 4px 5px;
margin: 0;
white-space: nowrap;
border-top-width: 0;
/* separation horisontal border between submenus*/
border-bottom: 1px solid #BDBDBD;
background: none;
}

.jquerycssmenu ul li ul li a:hover{ /*sub menus LINKS hover style*/
background: #F08784;
opacity: 1;
color:white;
}

/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
display:none;
}

.rightarrowclass{
display:none;
}

/* left and right menu borders*/
a.menuback_left {
padding: 11px 10px !important;
background-image: url('/static/images/template/l_back.png') !important;
background-repeat: no-repeat !important;
}

a.menuback_right{
padding: 11px 10px !important;
background-image: url('/static/images/template/r_back.png') !important;
background-repeat: no-repeat !important;
}

a.spacer{
padding:11px 13px !important;

}
	
