/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.vertsubmenu {
width:100%; 
margin:0; 
margin-top:-3px; 
position:relative;
z-index:100;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.vertsubmenu ul {
padding:0; 
margin:0;
list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.vertsubmenu ul li {
position:relative;
clear: both;

}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.vertsubmenu ul li a, .vertsubmenu ul li a:visited {
display:block; 
text-align:left; 
text-decoration:none; 
color:#42a3c0; 
font-size: 12px;
line-height: 22px;
padding-left: 5px;
}


.vertsubmenu ul li.last a {
border-right: none;
}

.vertsubmenu ul li.active {
font-weight: bold;
}


/* make the dropdown ul invisible */
.vertsubmenu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.vertsubmenu ul li:hover a {
color: #000000; 
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.vertsubmenu ul li:hover ul {
display:block; 
position:absolute; 
}
/* style the background and foreground color of the submenu links */
.vertsubmenu ul li:hover ul li a {
color:#d4e7ea;
}
/* style the background and forground colors of the links on hover */
.vertsubmenu ul li:hover ul li a:hover {
color:#d4e7ea;
}


/* common styling */
/* set up the overall width of the menu div, the font and the margins */

.horzsubmenu {
width:100%; 
margin:0; 
margin-top:1px; 
position:relative;
z-index:100;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.horzsubmenu ul {
padding:0; 
margin:0;
list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.horzsubmenu ul li {
float:left; 
position:relative;

}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.horzsubmenu ul li a, .horzsubmenu ul li a:visited {
display:block; 
text-align:center; 
text-decoration:none; 
color:#000; 
border-right:2px solid #cccccc;
padding-left: 5px;
padding-right: 5px;
padding-top: 2px;
margin-bottom: 2px;
}


.horzsubmenu ul li.last a {
border-right: none;
}

.horzsubmenu ul li.active {
font-weight: bold;
}


/* make the dropdown ul invisible */
.horzsubmenu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.horzsubmenu ul li:hover a {
	color: #d4e7ea; background-color: #42a3c0;
}
/* make the sub menu ul visible and position it beneath the main menu list item */
.horzsubmenu ul li:hover ul {
display:block; 
position:absolute; 
}
/* style the background and foreground color of the submenu links */
.horzsubmenu ul li:hover ul li a {
display:block; 
background:#faeec7; 
color:#000;
}
/* style the background and forground colors of the links on hover */
.horzsubmenu ul li:hover ul li a:hover {
background:#dfc184; 
color:#000;
}
