/* ####################################
   Sub Menu
   ################################## */

#SubMenu {
	width: 100%;
}


/* ##########  
   List Layout
   ########## */

#SubMenu ul {
    /* The sub menu list */
	margin: 0;
	padding: 0;
	
	list-style: none;
}

#SubMenu ul li {
	/* All list items */
	margin: 0;
	padding: 4px 0;
	
	border-bottom: 1px solid #f0f0f0;
}

#SubMenu ul li.section {	
	/* The list item containing the site section link (usually first in the menu) */
	font-size: 116.7%;
	font-weight: bold;
}

    #SubMenu ul li.section a {	
        /* The site section link */
        color: #303030;
    }
    
#SubMenu ul ul li {
	/* Second level list items */
	margin: 0 0 0 20px;
	padding: 5px 0 0 0;
	
	font-size: 91.7%;
	
	border: 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. */
    width: 100%; /* Careful with this if padding/margins/borders are added. Otherwise required for IE6 to fill the block with the link. */
}

#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 */
	text-decoration: underline;
}

#SubMenu ul li a:active {
    /* All anchor tags - Active */
}

#SubMenu ul li a.currentpage {
    /* Anchor tag for the currently selected page */
	font-weight: bold;
	text-decoration: underline;
}