/* Arrow List CSS */

* {
  margin:0; 
  padding:0;
}

#wrapper{
 margin:10px auto;
 width:100%;
}

#header {
        width:100%;
        padding:10px;
        height:18%;
        background-color:#FFFFFF;
        font:30px Arial;
}

#header-left {
        width:90%;
        float:left;
}

#header-right {
        padding-top:2px;
        width:10%;
        float:right;
        text-decoration:none;
}

#header-right a {
    outline:none;
}
#header-right a img {
    border:none;
}

#content {
 width:56%;
 padding:10px;
 float:left;
 font: 14px Georgia, "Times New Roman", Times, serif;
 background-color:#FFFFFF;
 color: black;
}

#content2col {
 width:74%;
 padding:10px;
 float:left;
 font: 14px Georgia, "Times New Roman", Times, serif;
 background-color:#FFFFFF;
 color: black;
}

#sidebar-right {
  width:18%;
  padding:10px;
  margin-top:10px;
  float:left;
  font: 14px Georgia, "Times New Roman", Times, serif;
  color:white;
/*  background-color:#15730A; */
  background-color:#5A5A5A;
}

#sidebar-right a {
  color:white;
}

#sidebar-right2 {
  width:18%;
  padding:10px;
  margin-top:10px;
  float:left;
  font: 14px Georgia, "Times New Roman", Times, serif;
  color:white;
  background-color:#84C225;
}

.tablecolumn1
{
/* background-color:#15730A; */
background-color:#5A5A5A;
color:#FFFFFF;
border-bottom:thin solid;
}

.tablecolumn2
{
/* background-color:#5ABA49; */
background-color:#84C225;
color:white;
border-bottom:thin solid;
}


.arrowlistmenu{
 width: 20%;
 padding:5px;
 float:left;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
 font: bold 12px Arial;
 color: white;
 /* background:#15730A repeat-x center left; */
 background:#5A5A5A repeat-x center left;
 margin-bottom: 10px; /*bottom spacing between header and rest of content*/
 text-transform: uppercase;
 padding: 4px 0 4px 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:#5ABA49; */
background-color:#84C225;
}

.arrowlistmenu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*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: #A70303; */
color: black;
background: url(../images/arrowbullet.png) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 90%;
}

.arrowlistmenu ul li a:visited{
color: black;
}

.arrowlistmenu ul li a:hover{ /*hover state CSS*/
/* color: #5ABA49; */
color:#84C225;
background-color: #F3F3F3;
}

.arrowlistmenu .menuheader a{
 text-decoration:none;
 color: white;
}

#footer {
 width:100%;
 padding:9px;
 height:9px;
 background-color:#AAAAAA;
 font:11px Arial;
 clear: both;
 text-align:center;
}

#footer a:link, #footer a:hover, #footer a:visited {
 text-decoration: none;
 color:white;
}

