/*                                                    */
/*  Accordion menu CSS                    */
/*                                                    */

/* Menu left */

.arrowlistmenuleft
{
width: 120px; /*width of accordion menu*/
}

.arrowlistmenuleft .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 11px Tahoma;
color: #A24C6A;
text-align: center;
background-image: url(images/bgheadermenuright02.gif);
background-position: left bottom;
background-repeat: no-repeat;
/*background-color: #FCE4BA;*/
border-bottom: 1px dotted #A24C6A;
border-top: 1px dotted #A24C6A;
margin-top: 0px;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
padding: 2px 0px 2px 0px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
font-variant: small-caps;
}

.arrowlistmenuleft .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(images/bgheadermenuright02.gif);
background-position: lef bottom;
background-repeat: no-repeat;
}

.arrowlistmenuleft ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenuleft ul li{
padding-bottom: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenuleft ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: none !important;
width: 110px;
}

.arrowlistmenuleft ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: #FFFFFF !important;
width: 110px;
}

.arrowlistmenuleft ul li a{
color: #A24C6A;
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 0px; /*link text is indented 19px*/
text-decoration: none;
border-bottom: 0px solid #A24C6A;
font-size: 100%;
}

.arrowlistmenuleft ul li a:visited{
color: #E48A86;
}


.arrowlistmenuleft ul li a:hover{ /*hover state CSS*/
background-color: #EFBAAD;
}

.arrowlistmenuleft ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}

/* Menu right */

.arrowlistmenuright
{
width: 120px; /*width of accordion menu*/
}

.arrowlistmenuright .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
font: bold 11px Tahoma;
color: #A24C6A;
text-align: center;
background-image: url(images/bgheadermenuleft02.gif);
background-position: left bottom;
background-repeat: no-repeat;
/*background-color: #FCE4BA;*/
border-bottom: 1px dotted #A24C6A;
border-top: 1px dotted #A24C6A;
margin-top: 0px;
margin-bottom: 5px; /*bottom spacing between header and rest of content*/
padding: 2px 0px 2px 0px; /*header text is indented 10px*/
cursor: hand;
cursor: pointer;
font-variant: small-caps;
}

.arrowlistmenuright .openheader{ /*CSS class to apply to expandable header when it's expanded*/
background-image: url(images/bgheadermenuleft02.gif);
background-position: left bottom;
background-repeat: no-repeat;
}

.arrowlistmenuright ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 0px; /*bottom spacing between each UL and rest of content*/
}

.arrowlistmenuright ul li{
padding-bottom: 0px; /*bottom spacing between menu items*/
}

.arrowlistmenright ul li .opensubheader{ /*Open state CSS for sub menu header*/
background: none !important;
width: 110px;
}

.arrowlistmenuright ul li .closedsubheader{ /*Closed state CSS for sub menu header*/
background: #FFFFFF !important;
width: 110px;
}

.arrowlistmenuright ul li a{
color: #A24C6A;
background: url(arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 0px; /*link text is indented 19px*/
text-decoration: none;
border-bottom: 0px solid #A24C6A;
font-size: 100%;
}

.arrowlistmenuright ul li a:visited{
color: #E48A86;
}


.arrowlistmenuright ul li a:hover{ /*hover state CSS*/
background-color: #EFBAAD;
}

.arrowlistmenuright ul li a.subexpandable:hover{ /*hover state CSS for sub menu header*/
background: lightblue;
}
