/*
**  The following rules specify how the links look within the menu.
*/

      
#nav {
	background-color:#FFFFFF; 
	width:100%; 
	height:60px;
	border-bottom: 1px solid #000000;

    }


 #nav a {
     display: block;
	 color: #000000;
     text-decoration: none;
     font-weight: normal;

 }

 #nav a:link {
	 color: #000000;
     text-decoration: none;
     font-weight: normal;

 }

 #nav a:visited {
	 color: #000000;
     text-decoration: none;
     font-weight: normal;

 }

/*
**  We want the links on the drop-downs to have the same width as the unordered list that
**  contains them, to make sure two of them don't end up on the same line
*/

 #nav li ul li a {
	 width: 11em;
	 background-color: #EEEEEE;
	 padding: 0px 10px 7px;
 }

 #nav li ul li a:link {
	 width: 11em;
	 
 }

 #nav li ul li a:visited {
	 width: 11em;
	 
 }
 
/*
**  Following applies to the 'Websites for Artists' text in the menu bar.  Adjust the margin-top
**  to move the text up or down.
*/

#wfa {
	float: left;
    font-family: "Arial", serif;
    font-size: 30pt;
    font-weight: normal;
    margin-right: 70px;
    margin-bottom: 0px;
    margin-top: 10px;
	color: #00000;
}

#nav, #nav ul {
	padding: 0;
	margin: 0;
	list-style: none;
	
}


/*
**  Underline menu items when you hover over them
*/
 
 #nav a:hover {
    text-decoration: underline;
    background-color: #CCCCCC;
    	color: #000000;
 }

/*
**  This is the style for the items on the main menu bar.  Defines the font, and a big right
**  margin to create space before the next item.  Adjust the margin-top to move text up or down.
*/

#nav li {
	float: left;
    font-family: "Arial", serif;
    font-size: 12pt;
    margin-right: 50px;
    margin-top: 20px;
    margin-bottom: 0px;
    
    
}

/*
**  The drop-down menu items shouldn't have a big gap above them, or to the right.
*/

#nav li ul li {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;

}

#nav li ul {
	position: absolute;
	width: 11em;

	left: -999em;
}

#nav li:hover ul, #nav li.sfhover ul  {
	left: auto;
}
