/* CSS Document */


.arrowlistmenu{
width: 220px; /*width of accordion menu*/
}

h3.menuheader expandable
{
margin:0px;

}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 16px Arial;
margin-left:12px;
color: #494949;
background-image:url(../images/plus.gif);
background-repeat:no-repeat;
vertical-align:top;
background-position:right top;
margin-bottom: 0px; /*bottom spacing between header and rest of content*/
padding: 0px 0px 4px 0px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
margin-top:10px;
margin-bottom:6px;
display:block;
border-bottom:1px solid #cecece;
border-bottom-style:dotted;
}

.menuheadersmp
{
font: bold 16px Arial;
color: #3d3d3d;
padding: 5px 0px 4px 0px; /*header text is indented 10px*/
margin:0px;
margin-bottom:4px;
margin-left:12px;
border-bottom:1px solid #cecece;
border-bottom-style:dotted;
}

.arrowlistmenu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image:url(../images/minus.gif);
margin:0px;
margin-left:12px;
margin-top:10px;
margin-bottom:6px;
}

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

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

.arrowlistmenu ul li a{
color: #3d3d3d;
background: url(../images/arrowbullet.png) no-repeat center left;  /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 20px; /*link text is indented 19px*/
margin-left:10px;
text-decoration: none;
font-weight: bold;
font-size: 90%;
}

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

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
color: #67a63d;
font-weight:bold;
background-color: transparent;
}


.menuexp:link{font: bold 16px Arial; color: #494949;}
.menuexp:visited{font: bold 16px Arial; color: #494949;}
.menuexp:active {font: bold 16px Arial; color: #494949;}
.menuexp:hover  {font: bold 16px Arial; color: #807bc0;}




