/* 
   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
   File: accordion.css
   Author: Sandy Lokas based on Dev's Accordion
   For: Margin Media V4
   Copyright (2008)
   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ 
*/

/* CSS Document */

	.arrowlistmenu {
		margin-left: 30px;
        padding-left: 0px; 
		width: 220px; 
		height: 1px; 
		padding-top: 0px;
    }
	
    
	/*CSS class for menu headers in general (expanding or not!)*/
    .arrowlistmenu h3.menuheader {
		border-bottom: 1px solid #ffcc33;
        font-family: Arial, Helvetica, sans-serif;
        margin-top: 0px;/*top spacing between header and rest of content*/
        margin-bottom: 0px; /*bottom spacing between header and rest of content*/
        padding: 8px; /*header text is indented 9px*/
  	  	cursor: pointer;
		width: 170px;
		text-transform: uppercase;
		font-weight: bold;
    }
	
	 .arrowlistmenu h3.menuheader a{
	 	color: #ffffff;
		font-size: 13px;
		font-weight: bold;
		letter-spacing: 0.5px;
	}
	
	 .arrowlistmenu h3.menuheader a:hover, .arrowlistmenu ul li a:hover{
		color: #FF0000;
	}
    
	/*CSS for UL of each sub menu*/
    .arrowlistmenu ul {
        list-style-type: none;
        margin-top: 0px;
        margin-bottom: 0px;/*bottom spacing between each UL and rest of content*/
        padding: 0px;
        margin-left:0px;  
    }
    
    .arrowlistmenu ul li {
        margin-top:0px;
        padding-bottom: 0px; /*bottom spacing between menu items*/
		list-style: none;
    }
	
	 .arrowlistmenu ul li a {
        color: #ffffff;
        display: block;
        margin: 0px;
        padding: 8px 0 2px 19px;
        text-decoration: none;
        font-size: 11px;
		font-family: Arial, Helvetica, sans-serif;
    }
