/* All <ul> tags in the menu including the first level */
.topMenu, .topMenu  ul {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: normal;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.topMenu ul {
	display: none;
	position: absolute;
	top: 23px;
	margin: 0px 0px -2px;
	left: 5px;
	width: 153px;
	border-top: 1px solid #BFCCDD;
	border-right: 1px solid #BFCCDD;
	border-bottom: 1px none #BFCCDD;
	border-left: 1px solid #BFCCDD;
}

/* Second and third etc. level submenus - position across from parent instead */
.topMenu ul ul {
 top: 1px; 
 margin-top: 0;
 left: 180px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.topMenu li {
	float: right;
	display: block;
	position: relative;
	padding-right: 10px;
	padding-left: 10px;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #003366;
}
.topMenu li:first-child {
	margin-bottom: 1px;
	border: 0px none #FFFFFF;
	padding-right: 0px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.topMenu ul li {
	float: none;
	margin: 0 0 -1px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
	padding-top: 0px;
	padding-bottom: 0px;
}
.topMenu ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}
/* first level Links inside the menu */
.topMenu a {
	display: block;
	color: #006699;
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	border-bottom-width: 0px;
	border-bottom-style: solid;
	text-align: left;
	line-height: 12px;
}

/* drop down Links inside the menu */
.topMenu li ul li a {
	display: block;
	color: #333333;
	text-decoration: none;
	font-weight: normal;
	text-shadow: black 2px 2px 2px;
	font-size: 10px;
	text-transform: none;
	background-color: #FFFFFF;
	width: 133px;
	line-height: 16px;
	padding-right: 10px;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #BCC9D9;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.topMenu a:hover, .topMenu a.highlighted:hover, .topMenu a:focus {
	color: #315682;
	text-shadow: black 2px 2px 3px;
	border-bottom-color: #315682;
}

.topMenu a.highlighted {
	color: #335783;
	text-shadow: black 2px 2px 3px;
}

/* Lit  items: Second level 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.topMenu li ul li a:hover, .topMenu li ul li a.highlighted:hover, .topMenu li ul li a:focus {
	color: #FFF;
	text-shadow: black 2px 2px 3px;
	background-color: #335783;
}
.topMenu li ul li a.highlighted {
	color: #FFF;
	text-shadow: black 2px 2px 3px;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .topMenu a#xyz {
      background-image: url(out.gif);
    }
    .topMenu a#xyz:hover, .topMenu a.highlighted#xyz, .topMenu a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.topMenu a .subind {
 display: none;
}
.topMenu ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.topMenu a {
 float: left;
}
.topMenu ul a {
 float: none;
}
/* \*/
.topMenu a {
 float: none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .topMenu ul li {
 float: left;
 width: 100%;
}

* html .topMenu ul li {
 float: left;
 height: 1%;
}
* html .topMenu ul a {
 height: 1%;
}
/* End Hacks */
