@charset "utf-8";
/* CSS Document */
/* Color pallette

	HTML Background color		#f0f0f0			(0,0,0,50)		- Used for background around website area in centered website design
	Accent color				#f1b32a			PMS 124M		- Used for horizontal rulings to separate sections of website
	Accent color				#c0ddea			PMS 290			- Used for tagline																
	Accent color				#2d83d5			PMS 285			- Not used in this file
	Accent color				#aa195d			PMS 220			- Not used in this file
	Accent color				#226499			PMS 285 (60%)	- Not used in this file
*/
	
/* main menu ul or ol elment */
#leftPanel {
	display:block;
	position: relative;
	list-style:none;
	margin:0;
	padding:0;
	width:100%;	/* Set the width of the verticle panel must match in #leftPanel a */
	z-index:5;
	top:0px;
	left:0px;
	border: none;
}


/* ----[ LINKS ]----*/

/* Just main menu links */
#leftPanel a{
	display:block;
	background-color:#f0f0f0 ;
	width:100%;
	height: auto;	/* Sets the height of each list item */
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-bottom: #f1b32a solid 1px;
	border-right: #f1b32a solid 0px;
	margin:0;
	text-decoration:none;
	padding: 0.5em 20px 0.5em 0;
	color:#202020;
	text-align: right;
}
#leftPanel a.leftOneLine {
	vertical-align:middle;
	}
#leftPanel a em {
	font-weight:bold;
	width:100%;
}
#leftPanel a.lastLi {
	border-bottom: #f0f0f0 solid 1px;
}
#leftPanel a.noLi {
	border-bottom: #f0f0f0 solid 1px;
}

/* All menu links on hover or focus */
#leftPanel a:hover, #leftPanel a:focus {
	background:#f0f0f0;
	color:#aa195d;
	font-weight:bold;
	outline:none;
}

#leftPanel a:hover.disableLi, #leftPanel a:focus.disableLi, #leftPanel a.disableLi {
	background:#f0f0f0;
	color:#202020;
	font-weight:normal;
	cursor:pointer;
}


/* All ULs and OLs */
#leftPanel, #leftPanel ul, #leftPanel ol { 
	padding: 0;
	margin: 0;
	width: 100%;
	list-style: none;
}

/* List items in main menu --[for non-javascript users this applies to submenus as well]  */
#leftPanel li { 
	/*great place to use a background image as a divider*/
	display:block;
	list-style:none;
	position:relative;
	padding: 0 10px 0 0;
}
