<style type="text/css">

/*MENU */


.globedrabo{
width: 100%;
/*height: 22px;*/
overflow: hidden;
/*border-bottom: 1px solid black; /*bottom horizontal line that runs beneath tabs*/
}

.globedrabo ul{
margin: 0;
padding: 0;
/*height: 22px;
/*padding-left: 11px; offset of tabs relative to browser left edge*/
font: bold 11px Verdana;
list-style-type: none;
}

.globedrabo li{
display: inline;
margin: 0;
}

.globedrabo li a{
float: left;
display: block;
text-decoration: none;
/*height: 22px;*/
margin: 0;
padding-left: 12px; /*padding inside each tab*/
padding-right: 12px;
padding-top: 4px;
padding-bottom: 4px;
border-right: 1px solid white; /*right divider between tabs*/
color: white;
background: #F37321; /*background of tabs (default state)*/
}

.globedrabo li a:hover{ /*hover and selected link*/

color: white;
background-color: #B24D05; /*background of tabs for hover state, plus tab with "selected" class assigned to its LI */
}

.globedrabo li a:active{
color: white;
background: #B24D05;
}

.globedrabo li.selected a{ /*selected tab effect*/
color: white;
background: #B24D05;
}


/*submeniu*/


.submenu ul{
margin: 0;
padding: 0;
list-style-type: none;
font: 12px Verdana;
}

/*Top level list items*/
.submenu ul li{
position: relative;
display: inline;
float: left;
background-color: #F3F3F3; /*overall menu background color*/
}

/*Top level menu link items style*/
.submenu ul li a{
display: block;
width: 90px; /*Width of top level menu link items*/
padding: 1px 8px;
border: 1px solid black;
border-left-width: 0;
text-decoration: none;
color: navy;
}
	
/*1st sub level menu*/
.submenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.submenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.submenu ul li ul li ul{ 
left: 159px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.submenu ul li ul li a{
display: block;
width: 190px; /*width of sub menu levels*/
color: navy;
text-decoration: none;
padding: 1px 5px;
border: 1px solid #ccc;
}

.submenu ul li a:hover{
background-color: black;
color: white;
}

/*Background image for top level menu list links */
.submenu .mainfoldericon{
background: #F3F3F3 url(imagsite/arrow-down.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.submenu .subfoldericon{
background: #F3F3F3 url(imagsite/arrow-right.gif) no-repeat center right;
}

* html p#iepara{ /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
padding-top: 1em;
}
	
/* Holly Hack for IE \*/
* html .submenu ul li { float: left; height: 1%; }
* html .submenu ul li a { height: 1%; }
/* End */


</style>