@charset "UTF-8";
/* CSS Document */

	/* remove the list style */
		#nav {
	margin:0;
	padding:0;
	list-style:none;
	float: right;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
	float:left;
	display:block;
	width:131px;
	position:relative;
	z-index:1;
	margin-left: 5px;
		}
		
		/* this is the parent menu */
		#nav li a {
	display:block;
	text-decoration:none;
	color:#fff;
	text-align:center;
	color:#FFF;
	line-height: 25px;
	font-weight: bold;
	background: url(../Assets/slm-tab-up.jpg) no-repeat scroll left top;
	text-transform: uppercase;
	margin: 5px 0px 1px;
	padding: 0px 0px 0;
	width: 131px;
	font-size: 11px;
		}

		#nav li a:hover {
	color: #C00;
	background: url(../Assets/slm-tab-over.jpg) no-repeat scroll left top;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
	position:absolute;
	left:0;
	display:none;
	margin:0 0 0 -1px;
	list-style:none;
	padding:0px;
	border: 1px solid #666;
	background: #000;
		}
		
		#nav ul li {
	background: #000;
	margin: 0px;
	padding: 0px;
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
	display:block;
	width:121px;
	height:30px;
	color:#FFF;
	margin-top: 1px;
	text-align: right;
	background: url(../Assets/slm-tabbed-nav-line.jpg) no-repeat scroll left 22px;
	padding: 0px;
		}
		
		#nav ul a:hover {
	color: #C00;
	background-attachment: scroll;
	background-image: url(../Assets/nav-over-long.gif);
	background-repeat: no-repeat;
	background-position: center top;
		}

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav ul {
			margin:0 0 0 -2px;
		}