/* HORIZONTAL FREESTYLE MENU LAYOUT */
/* All <ul> tags in the menu including the first level */
ul.menulist, .menulist  ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
	display: none;
	position: absolute;
	top: 1.0em;
	margin-top: 8px;
	/* I'm using ems and px to allow people to zoom their font */
	left: -1px;
	width: 135px;
	border-bottom: 1px solid #81bdd2;
	background-color: #dfe5e0;
}

ul.menulist {
	filter: alpha(opacity=85);
 	filter: progid:DXImageTransform.Microsoft.Alpha(opacity=85);
 	-moz-opacity: 0.85; opacity:0.85;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: -1px;
	margin-top: 0;
	left: 115px;
}

/*
 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.
*/

.menulist li {
	float: left;
	display: block;
	position: relative;
	margin-right: -1px;
	text-align: center;
}

.menulist li:last-child {
	border-right: 0px solid #81bdd2;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
	float: none;
	margin-right: 0;
	margin-bottom: -1px;
}

.menulist ul>li:last-child {
	margin-bottom: 1px;
	/* Mozilla fix */
}

/* Links inside the menu */
.menulist a {
	display: block;
	color: #cc6600;
	text-decoration: none;
	text-transform: small-caps;
	font-size: 9px;
	padding-right: 8px;
	padding-left: 8px;
	border-right: 1px solid #81bdd2;
}

.menulist a.last {
	border-right: 0px solid #fff;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
	color: #cc6600;
}

.menulist a.highlighted {
	color: #cc6600;
}

/*
 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:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist a .subind {
	display: none;
}

.menulist ul a .subind {
	display: block;
	float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
	float: left;
}

.menulist ul a {
	float: none;
}

/* \*/
.menulist a {
	float: none;
}

/* */

/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/

*+html .menulist ul li {
	float: left;
	height: 1%;
}

*+html .menulist ul a {
	height: 1%;
}

* html .menulist ul li {
	float: left;
	height: 1%;
}

* html .menulist ul a {
	height: 1%;
}

/* End Hacks */
ul.col3 {
	margin-top: 13px;
	padding-top: 14px;
	background-image: url(../images/menubg.gif);
	background-repeat: no-repeat;
}

ul.col3 li {
	width: 100%;
	list-style-type: none;
	text-align: left;
	margin: 0;
	padding: 0 0 5px 0;
	border-right: 1px solid #81bdd2;
	border-left: 1px solid #81bdd2;
	white-space: normal;
}
.menulist ul.col3 li:last-child {
	border-right: 1px solid #81bdd2;
	white-space: normal;
}

ul.col3 a:link, ul.col3 a:visited {
	color: #004f70;
	text-decoration: none;
	text-transform: none;
	width: 120px;
	padding-left: 15px;
	font-size: 10px;
	white-space: normal;
	border-right: 0px solid #81bdd2;
}

ul.col3 a:hover {
	color: #004f70;
	background-image: url(../images/menuarrow.gif);
	background-repeat: no-repeat;
	background-position: left center;
}

#leftnav {
	position: absolute;
	left: 6px;
	width: 163px;
	text-align: right;
}

#leftnav ul {
	margin: 0;
	padding: 0 0 11px 0;
	list-style-type: none;
}

#leftnav ul {
	margin: 0;
	padding: 0 0 15px 0;
	list-style-type: none;
}

#leftnav li {
	margin: 0;
	padding: 0 0 0 0;
}

#leftnav a:link, #leftnav a:visited {
	display: block;
	padding: 2px 25px 2px 0px;
}

#leftnav a:hover {
	background-image: url(../images/leftmenubg.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

#leftnav li.csc ul li a:hover {
	background-image: url(../images/leftmenubg-csc.gif);
	background-repeat: no-repeat;
	background-position: right center;
}

#leftnav .lefthead {
	display: block;
	padding: 2px 25px 2px 0px;
}

#leftnav li.csc {
	padding: 0 0 20px 0;
	border: 0px solid black;
	background-image: url(../images/leftcsc-bg.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
#leftnav li.sr {
	padding: 0 0 20px 0;
	border: 0px solid black;
	background-image: url(../images/leftcsc-topbg.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}