/* Stylesheet for menu system */

.arrowsidemenu{
	position: absolute;
	width: 180px; /*width of menu*/
	border-style: solid solid none solid;
	border-color: #000C64;
	border-size: 1px;
	border-width: 1px;
	top: 88px;	/* sets position of menu from top of containing layer */
}
	
.arrowsidemenu div a{ /*header bar links*/
	font: bold 14px Arial, Helvetica, sans-serif;
	display: block;
	background: transparent url(images/arrowgreen.gif) 100% 0px;
	height: 24px; /*Set to height of bg image-padding within link (ie: 32px - 4px - 4px)*/
	padding: 4px 0px 4px 10px;
	line-height: 24px; /*Set line-height of bg image-padding within link (ie: 32px - 4px - 4px)*/
	text-decoration: none;
}
	
.arrowsidemenu div a:link, .arrowsidemenu div a:visited{
	color: #FFFFFF;
}

.arrowsidemenu div a:hover{
	background-position: 100% -32px;
	line-height: 24px;		/* added 9/2/09 */
	padding: 4px 0px 4px 10px;	/* added for IE 6 */
}

.arrowsidemenu div.unselected a{ /*header that's currently not selected*/
	color: #FFFFFF;
}

	
.arrowsidemenu div.selected a{ /*header that's currently selected*/
	color: #FFFFFF;
	background-position: 100% -64px !important;
}

.arrowsidemenu ul{
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.arrowsidemenu ul li{
	border-bottom: 1px solid #000C64;
}


.arrowsidemenu ul li a{ /*sub menu links*/
	display: block;
	font: bold 12px/22px Arial, Helvetica, sans-serif;	/* line height added 9/2/09 */
	text-decoration: none;
	color: #000000;
	padding: 4px 0px 4px 10px;	/* modified 9/2/09 */
	border-left: 10px double #000099;
	background: #FFFFFF;
}

.arrowsidemenu ul li a:hover{
	background: #FFFF33;
	color: #000000;	/* added for IE 6 */
	padding: 4px 0px 4px 10px;	/* added for IE 6 */
}

