/* ####################################
   Main Menu
   ################################## */

/* ##########  
   GLOBAL - List Layout
   ########## */

#nav {
    /* The nav object. (A <ul> in the standard platform.) */
	position: relative; /* DON'T CHANGE - Assures nav container has proper cascading position. */
	float: right; /* DON'T CHANGE - Makes IE and FF behave the same regarding ul dimensions. */
	margin: 0; /* DON'T CHANGE - Removes margin around the ul for neat layout. */
	padding: 0; /* DON'T CHANGE - Removes padding within the ul for neat layout. */
	
	list-style: none; /* DON'T CHANGE - Removes bullet points from list items. */
	
	width: 259px;
	background: #DFE0E1;
	font-size: 120%;
}

#nav li {
    /* All list items within the nav object */
	/*float: left;*/ /* DON'T CHANGE - This makes the top level horizontal. */

	width: 200px;
}

    #nav li:hover, #nav li.sfhover {
        /* All list items within the nav object - Hover */
    }


/* ##########  
   GLOBAL - Anchors (Links)
   ########## */

#nav a {
    /* All anchor tags within the nav object */
	display: block; /* DON'T CHANGE - Fills the width of the li with link rollover. */
	color: #000;
}
* html #nav a {
    /* IE6 Only */
    /* All anchor tags within the nav object */
    width: 100%; /* DON'T CHANGE - Fills the width of the li with link rollover for IE6 (display:block fix). Be careful if margin/padding/border is added. */
}

    #nav a:hover {
        /* All anchor tags within the nav object - Hover */
    }


/* ##########
   LEVEL 2+ - List Layout
   ########## */

#nav li ul {
    /* Second level lists (all sub lists within list items) */
	/*position: absolute;*/ /* DON'T CHANGE - Places second level lists in the right spot. */
	/*left: -100%;*/ /* DON'T CHANGE - Drop-down hover trick - Hide the menu off the screen. */
	display: none;
    margin: 0; /* DON'T CHANGE - Removes margin around the ul for neat layout. */
    padding: 0; /* DON'T CHANGE - Removes padding within the ul for neat layout. */
    
	list-style: none; /* DON'T CHANGE - Removes bullet points from list items. */
}

#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul {
    /* Second level lists (all sub lists within list items) - Hover over the containing li */
	/*left: auto;*/ /* DON'T CHANGE - Drop-down hover trick - Re-align the menu on the screen on rollover. */
	position: absolute;
	right: 259px;
	z-index: 200;
	margin: -1.1em 0 0;
	text-align: right;
	display: block;
	padding: 0 5px 0 0;
	background-color: #33cc55;
	width: 150px;
}

#nav li ul li {
    /* Second level list items */
    float: none; /* DON'T CHANGE - Makes second level list items vertical. */
    margin:0 0 0.1em;
	
    width: 100%;
}

    #nav li ul li:hover, #nav li ul li.sfhover {
        /* Second level list items - Hover */
    }


/* ##########
   LEVEL 2+ - Anchors (Links)
   ########## */

#nav li ul li a {
    /* Second level list items - Anchor tags */
    	color: #6c207e;
    	display: block;
    	width: 100%;
}

    #nav li ul li a:hover {
        /* Second level list items - Anchor tags - Hover */
        width: 100%;
        background-color: #00dd11;
    }
