@charset "UTF-8";
/* CSS Document */

#navigation {
	margin:0;
	
	width:874x;
    height:54px;
	
    background-image:url(/graphics/navigation.png);
    background-repeat:no-repeat;
	
}


#nav    { /* all lists */ 
		margin:0;       
		margin-left:40px;

		padding: 0;
		padding-top:2px;
		
        width:874px;
		height:52px;
}

#nav a:hover {
        color:#56c5d0;
}

.sub    { /* all lists */       
		margin-top:10px;      

		padding: 0;
}

#nav li { /* all list items */
	    margin:0;
		
		padding-top:10px;

        width:130px;
		
		position: relative;
		
		float: left;
}
li a{
	color:#ffffff;
	text-decoration: none;
	
}
.linkhead{	
	margin:0;
	
	padding:0;
	
	height:54px;
	
	font-family:helvetica, verdana, arial,sans-serif;
	color: #ffffff;
	font-size:16px;
    font-weight:500;
	text-align:center;
    cursor:pointer;
    list-style:none;
	
}


.linkhead:hover {
    color:#56c5d0;
}


.link{        
	margin:0;
	
    padding-top:5px;
    padding-left:10px;
    padding-bottom:5px;
	
	width:135px;
	height:20px;
	
	font-family:helvetica, verdana, arial,sans-serif;
	color: #333333;
	font-size:12px;
    font-weight:400;
	text-align:left;

	background-image:url(/graphics/dropdown.png);
    background-repeat:repeat;
    list-style:none;
	
}
.link a:hover {
	color:#56c5d0;
	
	
	
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0px;
}
li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: 0;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;	
}