/*<![CDATA[*/

a:focus  {outline:0}
h3:focus {outline:0}

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}
 
.menu li {
	display: block;
	font-family: Helvetica,Verdana, sans-serif;
	font-size: 100%;
	/*font-weight: bold; bn removed */
	float: left;		/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
	/* bn added white outline on left of li*/
	border-left-style:solid; 
	border-left-color:#FFFFFF;  
	border-left-width:1px;
}
 
.menu li:hover {
	z-index: 10000;		/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;	/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present) */
					/* see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}

.menu li li {
	float: none;		/* items of the nested menus are kept on separate lines */
}
 
.menu ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;		/* while hidden, always keep them at the top left corner, */
	top: 0;				/* to avoid scrollbars as much as possible */
}

 .menu li:hover>ul {
	visibility: visible;	 /*display submenu on hover */
	top: 100%;		/* 1st level go below their parent item */
	display: block;
}

/*BN RE-ADDED FOR LEVEL 2 changed left: 100% to -140PX*/
/* 2nd+ levels go on the right side of the parent item */

.menu li li:hover>ul {	
	top: 0;
	left: -170px;
}
 
/* -- float.clear -- force containment of floated LIs inside of UL */

.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}

.menu, .menu ul {	/* IE7 float clear: */
	min-height: 0;
}
 
.menu, .menu ul li {
        /* bn changed to transparent after using image with transparent bar
	background: #000000;
	*/
	background:transparent;
	/* bn added t1 level opacity */
	/* removed opacity after using image with transparent bar
	filter: alpha(opacity=30);
	-moz-opacity: .3;
	KhtmlOpacity: .3;
	opacity: .3;
	*/
}
 
.menu ul {
	width: 160px;
}
 
.menu a {
	text-decoration: none;
	color: #FFFFFF;
	padding-top: 4px;
	padding-bottom: 6px;
	padding-left: 6px;
	padding-right: 6px;
	display: block;
	width: 92px;
	height: 13px; /* bn changed from 14px Aug 17th 2011*/
	position: relative;
	font-size: 12px
}
 
.menu li:hover>a {
	/*color: #f7e46c;*/   /* cwfs gold */
	color: #af1a1e;   /* cli red


	background: #000000;
	font-weight: bold;
}

.menu ul a {
	text-decoration: none;
	color: #FFFFFF;
	/*padding: .1em .4em;*/
	display: block;
	width: 148px;
	position: relative;
	text-align: left;
}
 

.menu li {	/* create borders around each item */
	/*border: 1px solid #FFFFFF;*/  /* bn commented this line to remove white border */
	height: 24px;
	text-align: center;
}

 
.menu li li {	/* create borders around each item */
	border: 0px;
	background: #000000;
	/*
	filter: alpha(opacity=90);
	-moz-opacity: .9;
	KhtmlOpacity: .9;
	opacity: .9;*/
}

/* 
	background: rgb(0, 0, 0);

	background: rgba(0, 0, 0, 0.6);

	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);

	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
*/

.menu li li:hover>a {
	/*
	black:000000
	light blue:CEDDFE
	grey:DFDFDF
	gold:f7e46c
	dark blue: 78899D
	
	*/
	/*color: #f7e46c; cwfs gold*/
	color: #af1a1e; /*cli red*/
	font-weight: normal;
	background: #78899D;
}

/* BN RE-ADDED WEB PORTAL left:90% changed to left: -140px
.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
/*	top: 5px;
	left: -140px;
}*/
 

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/
 End Fix */
 
/*]]>*/
/* </style> */ /* BN WEB PORTALS COMMENTED */
 
 
 
 
 
<!--[if lte IE 6]>
/* <style type="text/css" media="screen, tv, projection"> */ /* BN WEB PORTALS COMMENTED */
/*<![CDATA[*/
 
/* - - - ADxMenu: IE6 BASIC styles [MANDATORY] - - - */
 
/*
	this rules improves accessibility - if Javascript is disabled, the entire menu will be visible
	of course, that means that it might require different styling then.
	in which case you can use adxie class - see: aplus.co.rs/adxmenu/examples/ie6-double-style/
 */
.menu ul {
	visibility: visible;
	position: static;
}
 
.menu, .menu ul {	/* float.clear */
	zoom: 1;
}
 
.menu li.adxmhover {
	z-index: 10000;
}
 
.menu .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}
 
.menu .adxmhoverUL {	/* 1st-level submenu go below their parent item */
	top: 100%;
	left: 0;
}

/* BN RE-ADDED FOR WEB PORTALS left: 100% changed to left -140px

menu .adxmhoverUL .adxmhoverUL {	/* 2nd+ levels go on the right side of the parent item */
/*	top: 0;
	left: 100%
}*/

 
.menu ul a {	/* fix clickability-area problem */
	zoom: 1;
}
 
.menu li li {	/* fix white gap problem */
	float: left;
	width: 100%;
}
 
/* prevent double-line between items */
/*
.menu li li {	
	margin-top: -1px;
}
*/
/*  BN RE-ADDED changed left: 90% to left: -140px
.menu .adxmhoverUL .adxmhoverUL {	/* inset 2nd+ submenus, to show off overlapping */
/*	top: 5px;
	left: -140px;
}*/
 
/*]]>*/

/* brian contact info width */
ul.menuci {
	width: 210px;
}
/* brian announcements width */
li.menuancmt {
	width: 130px;
}

/* required because anchor removed at t1 level and replaced with p */
.menu h1 {
	text-decoration: none;
	color: #FFFFFF;
	padding-top: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	padding-right: 6px;

	display: in-line;
	width: 115px;
	height: 12px;
	position: relative;
	font-size: 12px;
	margin: 0px 0px 0px 0px;
}
 
.menu li>h1>a  {
	padding-top: 0px;
}

.menu li:hover>h1 {
	/*color: #f7e46c;*/ /* cwfs gold*/
	color: #af1a1e;     /* cli  red */
	background: #000000;
	font-weight: bold;
}

.menu li>h1:hover>a {
	/*color: #f7e46c;*/ /* cwfs gold*/ 
	color: #af1a1e;     /* cli  red */
	background: #000000;
	font-weight: bold;
}

.menu ul h1 {
	text-decoration: none;
	color: #FFFFFF;
	/*padding: .1em .4em;*/
	display: block;
	width: 138px;
	position: relative;
	text-align: left;
}

/* move font up
.menu li span{
	position:relative; 
	bottom: 2px;
}*/

/* BN Added this in order to shift submenu for web portals to the left
   If submenus to the right are ever required this will have to be changed
   and a seperate class for shifting to the right will be required. */
/*
.menu ul li ul {
       left:-140px;
       }
*/