﻿/* Menu */

#menucontainer {
	border: 1px solid #CCCCCC;
	margin:20px auto auto auto;
	background-color: #F8f8f8;
	width: 960px;
}


#menucontainer td+td {
	font-size:16px;
font-family: calibri;
	font-weight:normal;
	vertical-align:middle;
}


/* BE SURE TO INCLUDE THE CSS RESET FOUND IN THE DEMO PAGE'S CSS */
/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	/* Clear floats */margin: 0px;
	list-style: none;
	line-height:normal;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav li{
	float:left;
	position:relative;
	
	zoom:1;
}
#nav a{
	padding: 15px 27px 16px 25px;
	display: block;
	color: #000000;
	font-family: calibri;
	font-size: 15px;
	text-decoration: none;
}


/*--- DROPDOWN ---*/
#nav ul{
	background: #F5F5F5;
	/*background: rgba(255,255,255,0);  But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */ /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */;
	/*background: rgba(255,255,255,0);  But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style: none;
	position: absolute;
	left: -9999px;
}
#nav ul li{
	/* Introducing a padding between the li and the a give the illusion spaced items */;
	border: 1px solid #CCCCCC;
	padding: 0px;
	float: none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{
	/* Display the dropdown on hover */
	
	top:49px;
	left: 0px; /* Bring back on-screen when needed */
}
#nav li:hover a{
	/* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background-image: url('../Images/HoverBg.png');
	color: #FFFFFF;
}
#nav li:hover ul a{
	/* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	padding: 5px;
	text-decoration: none;
	background-image: none;
	color: #000000;
	width: 165px;
}
#nav li:hover ul li a:hover{
	/* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background: #f8f8f8;
}

#menu .last a {
}

#nav .ChangeCss
{
    background-image: url('../Images/HoverBg.png');
	color:White
    }

.RightAlignWithRsForLabel
{
    text-align: right;
    background-image: url('../Images/Rs_Symbol.gif');
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-right: 10px;
    vertical-align: middle;
}

.hide
    {
        display:none;
    }