/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.AoEVMenu {
    width: 160px; /*width of menu*/
    float: right; 
    margin-left: 20px; 
    margin-bottom: 20px;
}

.AoEVMenu .headerbar {
    font-size: 13px;
	font-family: Georgia;
    font-weight: bold;
    color: white;
    
    /* last 2 values are the x and y coordinates of bullet image*/
    /* background-color: #606060; */
    background-color: black;
    background-image: url('http://www.northernmountains.com/hd6/Images/gear_10.png');
    background-repeat: no-repeat;
    background-position: 8px 6px;
    
    /*bottom spacing between header and rest of content*/
    margin-bottom: 0; 
    text-transform: uppercase;
    
    /*31px is left indentation of header text*/
    padding: 7px 0 7px 31px; 
}

.AoEVMenu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 0; /*bottom spacing between each UL and rest of content*/
}

.AoEVMenu ul li {
    padding-top: 2px; /*bottom spacing between menu items*/
}

.AoEVMenu ul li a {
    font: normal 11px Georgia;
    color: black;
    
    /* background: #E9E9E9; */
    /*background-color:#995E24 */;
    
    
    /*  
    filter:alpha(opacity=70);
    opacity: 0.7;
    */
    display: block;
    padding: 2px 0;
    line-height: 14px;
    padding-left: 8px; /*link text is indented 8px*/
    text-decoration: none;
}

.AoEVMenu ul li a:visited {
    color: black;
}

/*hover state CSS*/
.AoEVMenu ul li a:hover { 
    color: white;
    background: black;
}

