@charset "utf-8";
/*http://www.cssplay.co.uk/menus/flyout_flash.html#nogo */
/* CSS Document */
/* 	#00CCFF; bright blue
	#00FF33; neon green 
	#FF3399; bright pink
	#330099; navy blue 
	#DA7072: adobe red/peach color*/


/* important Colors for this project
	Yellow: #fcd140
	faded pink: #d9789e
	light blue: #71cbd2 33ADD6
	bright dark Pink: #c51c71
	green : #72b642 (left nav background)
	slighter darker green: #669933 (content links)
*/

.menu {
	position:relative;
	background-image: url(/images/left-nav/menu-background.gif);
	background-repeat: repeat-y;
	z-index:1000;
	float:left;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding:0;
	margin:0;
	list-style-type:none;
	position:relative;
}
.menu li {	/* height:35px;*/
}
.menu li:hover {
	position:relative; /* important so that it load right next to that main menu element */
}
/* style the links */
.menu ul li a, .menu ul li a:visited {
	font-family:verdana, arial, sans-serif; /* important */
	line-height: 43px; /* somehow makes the text vertically center in the middle, important!! */
	height:33px; /* effects hover state? */
	font-size:11px;
	font-weight: bold;
	display:block;
	text-decoration:none;
	background-image: url(/images/left-nav/normal.gif);
	background-repeat: no-repeat;
	width: 127px;
	color:#ffffff;
	padding-top: 0px;
	padding-right: 30px; /* effects the underlining image */
	/* margin-right: 35px; doesn't effect the main nav but negatively effects the fly out menus */
	padding-bottom: 0px;
	padding-left: 0px;
	text-align: right;
}
.menu ul li.first, .menu ul li.first a, .menu ul li.first a:visited {
	background-image: url(/images/left-nav/first-normal.gif);
	background-repeat: no-repeat;
	
}
.menu ul li.first a:hover {
	color: #c51c71;
	background-image: url(/images/left-nav/first-over.gif);
	background-repeat: no-repeat;
}
.menu ul li a:hover {
	color: #c51c71;
	background-image: url(/images/left-nav/normal-over.gif);
	background-repeat: no-repeat;
}
.menu ul li.last, .menu ul li.last a, .menu ul li.last a:visited {
	background-image: url(/images/left-nav/last-normal.gif);
	background-repeat: no-repeat; 
	background-position: left bottom;
	height: 40px;
	line-height: 40px;
	 /*height: 40px;background-position: left bottom; */
}
.menu ul li.last a:hover {
	color: #c51c71;
	background-image: url(/images/left-nav/last-over.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
}
.menu ul li a:hover {
	color: #c51c71;
}
.menu ul li ul li a, .menu ul li ul li a:visited {
	font-family:verdana, arial, sans-serif;
	/* padding: 0; important padding: 0px 0 0 8px;*/
	line-height: 30px; /* somehow make the text vertically center in the middle, important!! */
	height:30px; /*  same height as the above, effect hover state? */
	font-size:11px;
	font-weight: bold;
	display:block;
	text-decoration:none;
	width:178px;
	text-align:center;
	background-color: #c51c71;
	background-image: none;
	border-top: 2px solid #7ACBBD;
	border-right: 1px solid #7ACBBD;
	border-left: 1px solid #7ACBBD;
	border-bottom: 0px;
	padding: 0; margin: 0;
	background-image: none;
}
.menu ul li ul li.sub_first, .menu ul li ul li.sub_first a, .menu ul li ul li.sub_first a:visited, .menu ul li ul li.sub_first a:hover {
	background-image:url(/images/left-nav/sub-nav-first.gif);
	border: 0; 
	width:180px;
	background-position: left top no-repeat;
	background-repeat:no-repeat;
	padding: 0; 
	margin: 0;
	/* background-color: #FFFFFF; */
}
.menu ul li ul li.sub_solo, .menu ul li ul li.sub_solo a, .menu ul li ul li.sub_solo a:visited, .menu ul li ul li.sub_solo a:hover {
	background-image:url(/images/left-nav/solo-tab.gif);
	border: 0; width:180px;
	height: 31px;
	background-position: left top no-repeat;
	background-repeat:no-repeat;
	padding: 0; margin: 0;
	background-color: #FFFFFF;
}
.menu ul li ul li.sub_last, .menu ul li ul li.sub_last a, .menu ul li ul li.sub_last a:visited, .menu ul li ul li.sub_last a:hover {
	background-image:url(/images/left-nav/sub-nav-last.gif);
	background-repeat: no-repeat; 
	background-position: left bottom;
	width:180px;
	border: 0;
	background-color: #FFFFFF;
	border-top: 1px solid #7ACBBD;
	padding: 0; margin: 0;
}
.menu ul li ul li a:hover {
	color: #fcd140;
	background-image: none;
}
/* style the link hover */
* html .menu a:hover {
	position:relative;
	background-image: none;
	white-space:nowrap;
}
.menu :hover > a {
/* color:#fff;  */
	/* Unforuntaley controls all menu and submenu items :(
	background: url(/images/over-state.gif); */
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	top: 8px;
	left:145px; /* left margin offset*//*lavendar-color has no effect background-color: #9966FF;  */
}
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul {
	visibility:visible;
}
.menu ul a:hover ul {
	visibility:visible;  /* sub menu items */
}
/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul {
	visibility:hidden;
}
/* keep the fourth level hidden when you hover on second level list OR link */
.menu ul :hover ul :hover ul ul {
	visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul {
	visibility:visible;
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {
	visibility:visible;
}
/* get rid of the table */
.menu table {
	position:absolute;
	border-collapse:collapse;
	top:0;
	left:0;
	z-index:100;
	font-size:1em;
	width:0;
	height:0;
}
