@charset "utf-8";
/* CSS for dropdown menu */

#sddm
{
	margin: 0;
	padding: 0;
	z-index: 30
}

#sddm li
{
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	font-family: arial;
	font-size: 11px;
	font-weight: normal;
}

#sddm li a {
    /*Background color of main buttons*/
	background: none repeat scroll 0 0 #7B93B7;
    color: #FFFFFF;
    display: block;
    margin: 0 1px 0 0;
    padding: 4px 10px;
    text-align: center;
    text-decoration: none;
    width: 79px;
}


#sddm li a:hover
{
	/*Background color for mouseover on main buttons*/
	background: #18236F;
	font-weight: normal;
}

#sddm div
{	
	/*Dropdown area definition*/
	position: absolute;
	visibility: hidden;
	margin: 0;
	padding: 0;
	background: #EAEBD8;
	border: 1px solid #5970B2}

#sddm div a
{
	/*Details of dropdown area*/
	position: relative;
	display: block;
	margin: 0;
	padding: 5px 5px;
	width: 111px;
	white-space: nowrap;
	text-align: left;
	text-decoration: none;
	/*Background color of dropdown area*/
	background: #D4DEEC;
	/*Text color in dropdown area*/
	color: #2875DE;
	font: 11px arial
}

#sddm div a:hover
{
	/*Background color of mouseover in dropdown area*/
	background: #18236F;
	/*Text color of mouseover in dropdown area*/
	color: #FFFFFF;
	font-weight: normal;
}

