/* ####################################
   Sub Menu
   ################################## */

#SubMenu {
	width: 100%;
}


/* ##########  
   List Layout
   ########## */

#SubMenu ul {
    /* The sub menu list */
	margin: 0;
	padding: 0;
	
	list-style: none;
	
	font-size: 91.7%;
}

#SubMenu ul li {
	/* All list items */
	margin: 0 0 8px;
	padding: 0;
	
	min-height: 24px;
}

#SubMenu ul li.section, #SubMenu ul li.currentsection {	
	/* The list item containing the site section link (usually first in the menu) */
    min-height: 24px;
}
* html #SubMenu ul li.section, * html #SubMenu ul li.currentsection {
    /* IE6 Only */
    height: 24px;
}

    #SubMenu ul li.section a, #SubMenu ul li.currentsection a {	
        /* The site section link */
	    color: #55B949;
	    font-weight: bold;
        text-transform: uppercase;
    }
    
    #SubMenu ul li.currentsection {
        background: url('./images/swish_blue_small.gif') 4px 3px no-repeat;
    }

#SubMenu ul ul li {
	/* Second level list items */
	margin: 0;
	padding: 0;
}

/* ##########  
   Anchors (Links)
   ########## */

#SubMenu ul li a {
    /* All anchor tags */
	display: block; /* Note: display:block makes the links larger and easier to access for mobility challenged users. */
    min-height: 21px;
    padding: 3px 10px 0 24px;
    
    color: #ADADAD;
}
* html #SubMenu ul li a {
    /* IE6 Only */
    height: 21px;
}

    #SubMenu ul li a:link {
        /* All anchor tags - Link */
	    text-decoration: none;
    }

    #SubMenu ul li a:visited {
        /* All anchor tags - Visited */
	    text-decoration: none;
    }

    #SubMenu ul li a:hover {
        /* All anchor tags - Hover */
        color: #075FAA;
	    text-decoration: none;
        background: url('./images/swish_blue_small.gif') 4px 3px no-repeat;
    }

    #SubMenu ul li a:active {
        /* All anchor tags - Active */
    }

#SubMenu ul li.currentpage a {
    /* Anchor tag for the currently selected page */
    color: #075FAA;
	font-weight: bold;
	
    background: url('./images/swish_blue_small.gif') 4px 3px no-repeat;
}

    #SubMenu ul li.currentpage ul li a {
        /* Anchor tags one level under the current page */
        color: #ADADAD;
        font-weight: normal;
        background: none;
    }

/* ##########  
   Anchors (Links) - Second Level
   ########## */

#SubMenu li ul li a {
    padding-left: 40px;
}

#SubMenu li ul li.currentpage a, #SubMenu li ul li a#currentpage {
    background: url('./images/swish_blue_small.gif') 20px 3px no-repeat;
}

    #SubMenu li ul li a:hover, #SubMenu li.currentpage ul li a:hover {
        color: #075FAA;
        background: url('./images/swish_blue_small.gif') 20px 3px no-repeat;
    }
