﻿
.SizeClass 
{
padding:0;
margin:0;
width:790px;
background:#333333;
border:none;
border-collapse:collapse; /*Removes space from table*/
}

ul.AspNet-Menu, .AspNet-Menu-Horizontal
{
z-index:1; /*Important; this, combined with Page Header z-index make
             Drop down list hover above other Div's and items*/
}

	ul.AspNet-Menu li
	{
	    background:#333333;
	    height:35px;
	    list-style:none;
	    margin:0;
	    padding:0;
	    border:none;
	    border:0px;
	    font: 67.5% "Lucida Sans Unicode", "Bitstream Vera Sans", "Trebuchet Unicode MS", "Lucida Grande", Verdana, Helvetica, sans-serif;
	    font-size:14px;
	    font-weight:bold;
	    width:130px;
	    float:left;
		padding:0px;
	}
	
	/*Affects all Menu Links*/
	a.AspNet-Menu-Link{
		background:#333333 url("/_images/seperator.gif") bottom right no-repeat;
		color:#cccccc;
		display:block;
		font-weight:normal;
		line-height:35px;
		margin:0px;
		padding:0px 25px;
		text-align:center;
		text-decoration:none;
		}
		
    /*Affects Drop Down Items Properties*/
	ul.AspNet-Menu li ul {
		background:#333333;
		display:none;
		height:auto;
		padding:0px;
		margin:0px;
		border:0px;
		position:absolute;
		width:130px;		
		}
	
	/*Not sure what this effects...*/
	.AspNet-Menu li:hover ul {
		display:block;	
		}
		
    /*Effects Drop Down List Properties*/
	.AspNet-Menu li li{
		background:url('_/images/sub_sep.gif') bottom left no-repeat;
		width:130px;
		}
	
	.AspNet-Menu li ul a{
		display:block;
		height:35px;
		font-size:12px;
		font-style:normal;
		margin:0px;
		padding:0px 10px 0px 15px;
		text-align:left;
		}
		
		/*Handles Child Elements*/
		.AspNet-Menu li ul a:hover, .AspNet-Menu li ul li:hover a
		{
			background:#2580a2 url('/_images/hover_sub.gif') center left no-repeat;
			border:0px;
			color:#ffffff;
			text-decoration:none;
		}
        
		/*Affects Link and List background properties on hover*/
		.AspNet-Menu li a:hover, .AspNet-Menu ul li:hover a {
			background: #2580a2; /* url("/_images/hover.gif") bottom center no-repeat;*/
			color:#FFFFFF;
			text-decoration:none;
			}
			
		a.AspNet-Menu-ChildSelected
		{
		/*background: Green url("/_images/hover.gif") bottom center no-repeat;*/
			background:url('/_images/hover-down-sm-wb.gif') center bottom no-repeat;
			text-decoration:none;
			}
			.AspNet-Menu-Selected a
			{
		    background: #2580a2;
			color:#FFFFFF;
			text-decoration:none;
			}
			
/*Shows Down Arrow on Parent Menu hover if it has Children*/
 li.AspNet-Menu-WithChildren a:hover 
 {
	background:url('/_images/hover-down-sm-wb.gif') center bottom no-repeat;
	text-decoration:none;
	border:0px; /* Needed, or Drop Down list elements are pushed to the right */
    }
    
    /*Shows left-facing arrow if Child-element is selected*/
    ul li ul li a.AspNet-Menu-Selected {
    background:#2580a2 url('/_images/hover_sub.gif') center left no-repeat;
    }
