/* CSS Document */

/***********************************/
/*         NAVIGATION 
/***********************************/

/*using Sliding Doors technique-where tabs will expand according to the font size**/
/*http://www.alistapart.com/articles/slidingdoors*/

#nav {
font-size:.85em;
line-height:normal;
position:relative;
right:10px;
float:right;
z-index:20;
}
	
#nav ul {
margin:0;
padding:0;
list-style:none;
}
	
#nav li {
float:left;
margin:0;
padding:0;
}
	
#nav li {
float:left;
background:url(../images/nav_rightdoor.jpg) no-repeat right top;
margin:0 0 0 .3em;
padding:0;
height:35px;
}
	
#nav a {
display:block;
background:url(../images/nav_leftdoor.jpg) no-repeat left top;
padding:5px 8px 0 8px;
line-height:1.1em;
text-transform:uppercase;
font-weight:800;
text-align:center;	
float:left;/*only IE5 for Mac will read this line*/
}
	
/* Commented Backslash Hack- hides rule from IE5-Mac \*/
#nav a {float:none;}
/* End IE5-Mac hack */
	
#nav a:link, #nav a:visited {
color:#003300;
text-decoration:none;
}
	
#nav a:hover {
color:#000000;
}

