/* ############################################################################
   ## 
   ##  SUB MENU
   ##
   ######################################################################### */

#SubMenu {
	width: 100%;
	
}

/* ####################################
   List Layout
   ################################## */

#SubMenu ul {
    /* The sub menu list */
	margin: 0;
	padding: 10px 0 0 0;
	
	list-style: none;
}

#SubMenu ul li {
	/* All list items */
	margin: 0;
	padding: 6px 10px;
}
    
#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. */
    color: #015697;
    font-size: 120%;
    font-weight: bold;
}

#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 */
}

/* ####################################
   Section & Current Pages
   ################################## */

#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: #015697;
    }

#SubMenu ul li.currentSection {	
	/* The list item containing the site section link (usually first in the menu) */
	font-size: 120%;
	font-weight: bold;
	background: #f8f8f8;
}

    #SubMenu ul li.currentSection a {	
        /* The site section link */
        color: #015697;
    }

#SubMenu ul li.currentBranch {
    /* Any parent list item on the currently open branch */
	background: #f8f8f8;
}

#SubMenu ul li.currentPage {
	/* The list item containing the current page link */
}

    #SubMenu ul li ul li.currentPage {
	    /* The list item containing the current page link at the second level and below */
    }

    #SubMenu ul li.currentPage a {
        /* The current page link */
	    font-weight: bold;
	    text-decoration: underline;
    }

        #SubMenu ul li.currentPage li {
            /* Children of the current page list item */
        }
        
            #SubMenu ul li.currentPage li a:link {
                font-weight: normal;
                text-decoration: none;
            }
            
            #SubMenu ul li.currentPage li a:visited {
                font-weight: normal;
                text-decoration: none;
            }
            
            #SubMenu ul li.currentPage li a:active {
	            text-decoration: underline;
            }
            
            #SubMenu ul li.currentPage li a:hover {
	            text-decoration: underline;
            }
    