﻿/* These styles just pretty up the page a bit. */
/* Styles for main menus start */

.menustyle
{
	background: -webkit-gradient(linear, left top, left bottom, from(#3093c7), to(#1c5a85)); /* For Mozilla/Gecko (Firefox etc) */
	background: -moz-linear-gradient(top, #3093c7, #1c5a85); /* For Internet Explorer 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3093c7, endColorstr=#1c5a85); /* For Internet Explorer 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3093c7, endColorstr=#1c5a85)";
	 border:1px solid white;
	-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height:25px;
    
    
}

.navigation
{
    background: -webkit-gradient(linear, left top, left bottom, from(#3093c7), to(#1c5a85)); /* For Mozilla/Gecko (Firefox etc) */
	background: -moz-linear-gradient(top, #3093c7, #1c5a85); /* For Internet Explorer 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3093c7, endColorstr=#1c5a85); /* For Internet Explorer 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3093c7, endColorstr=#1c5a85)";
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px; 
    border-right:2px solid white;
    
}

.navigation1
{
    background: -webkit-gradient(linear, left top, left bottom, from(#3093c7), to(#1c5a85)); /* For Mozilla/Gecko (Firefox etc) */
	background: -moz-linear-gradient(top, #3093c7, #1c5a85); /* For Internet Explorer 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3093c7, endColorstr=#1c5a85); /* For Internet Explorer 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3093c7, endColorstr=#1c5a85)";
    border-right:2px solid white;
    
}
.navigation2
{
    background: -webkit-gradient(linear, left top, left bottom, from(#3093c7), to(#1c5a85)); /* For Mozilla/Gecko (Firefox etc) */
	background: -moz-linear-gradient(top, #3093c7, #1c5a85); /* For Internet Explorer 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3093c7, endColorstr=#1c5a85); /* For Internet Explorer 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#3093c7, endColorstr=#1c5a85)";
    border-top-right-radius: 5px; 
    border-bottom-right-radius: 5px; 
    

}

#wrap 
{
	FONT-FAMILY: Arial, Helvetica, sans-serif;
  FONT-SIZE: 14px;
	width: 100%;
	position: relative; 
	margin:0;
	
}

/* These styles create the dropdown menus. */
#navbar 
{
	margin:0;
	padding: 0;
	height: auto;
	width: 100%;
	
}

#navbar li {
	list-style: none;
	float: left; 
	
	}
#navbar li a {
	display: block;
	padding: 10px 17px 10px 17px;
	font-weight:bold;
	color: #fff;
	text-decoration: none; }
#navbar li ul {
	display: none; 
	width:110px; /* Width to help Opera out */
	background-color:  #3d3d3d;}
#navbar li:hover ul, #navbar li.hover ul 
{
	background: #FF9933;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	display: block;
	position: absolute;
	margin: 0;
	padding: 0; }
#navbar li:hover li, #navbar li.hover li {
	float: none; }
#navbar li:hover li a, #navbar li.hover li a {
	background-color:  #FF9933;
	width:110px;
	border-bottom: 1px solid #fff;
	color: #000; }
#navbar li li a:hover {
	background-color: #FF9933; }

/* Styles for main menus end */
/* Styles for sub menus */

.flexdropdownmenu, .flexdropdownmenu ul{ /*topmost and sub ULs, respectively*/
FONT-FAMILY: Arial, Helvetica, sans-serif;
FONT-SIZE: 14px;
margin: 0;
padding: 0;
position: absolute;
left: 0;
top: 0;
list-style-type: none;
border: 1px solid grey;
border-bottom-width: 0;
visibility: hidden;
display: none; /*collapse all sub menus to begin with*/
}
.flexdropdownmenu li{
position: relative;
}
.flexdropdownmenu li a{
display: block;
width: 180px; /*width of menu (not including side paddings)*/
border-bottom: 1px solid white;
font-weight:bold;
text-decoration: none;
padding: 8px 8px;
background:#336699;
color:White;
}
* html .flexdropdownmenu li{ /*IE6 CSS hack*/
display: inline-block;
width: 160px; /*width of menu (include side paddings of LI A*/
}
.flexdropdownmenu li a:hover, .flexdropdownmenu li.selected>a{
background: #FF9933;
}
.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}
