@charset "utf-8";
/* CSS Document for Accordian Menu */

.arrowlistmenu{
	width: 210px; /*width of accordion menu*/
	font-family: "Trebuchet MS", Arial, sans-serif;
	text-decoration: underline;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font: bold 14px Arial;
	color: #000066;
	margin-bottom: 5px; /*bottom spacing between header and rest of content*/
	text-transform: none;
	padding: 2px 0 2px 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
}

.arrowlistmenu .getaquote{ /*CSS class for Get A Quote button*/
	font: bold 14px Arial;
	color: #000066;
	margin-bottom: 5px; /*bottom spacing between header and rest of content*/
	text-transform: none;
	padding: 2px 0 2px 10px; /*header text is indented 10px*/
	cursor: hand;
	cursor: pointer;
}
.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background-color: #CCCCCC;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
	list-style-type: none;
	margin: 0;
	padding: 2px;
	margin-bottom: 4px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenu ul li{
	padding-bottom: 1px; /*bottom spacing between menu items*/
}

.arrowlistmenu ul li .opensubheader{ /*Open state CSS for sub menu header*/
	background-color: #E1E1FF;
	background: #EAEAEA url(../images/plusbullet.png) no-repeat center left;
}

.arrowlistmenu ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
	background: #EAEAEA !important;
	font-weight: bold;
}

.arrowlistmenu ul li a{
	color: #000099;
	background: url(../images/arrowbullet.png) no-repeat top left; /*custom bullet list image*/
	display: block;
	padding: 1px 0;
	padding-left: 16px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	border-bottom: 1px solid #dadada;
	font-size: 11px;
}

.arrowlistmenu ul li a:visited{
	color: #000099;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
	background-color: #EAEAEA;
}

.arrowlistmenu ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
	background: #EAEAEA url(../images/plusbullet.png) no-repeat center left;
}

.menuheader a {
	color: #000066; /*custom bullet list image*/
	display: block; /*link text is indented 19px*/
	text-decoration: underline;
	font-weight: bold;
	font-size: 13px;
}
.getaquote a {
	color: #000066; /*custom bullet list image*/
	display: block; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: bold;
	font-size: 13px;
}
