/* common styling */
/* set up the overall width of the menu div, the font and the margins */
.right {
    float: right;
}

.menu {
	position:absolute;
	top:41px;
	right: 2px;
	font-family: "Verdana", "Times New Roman", Arial, Helvetica, sans-serif;
	margin:0;
	width:630px;
	z-index:100;
}
/* remove the bullets and set the margin and padding to zero for the unordered list */
.menu ul {
padding:0; 
margin:0;
list-style-type: none;
}
/* float the list so that the items are in a line and their position relative so that the drop down list will appear in the right place underneath each list item */
.menu ul li {
float:left; 
position:relative;
height: 30px;
}
/* style the links to be 104px wide by 30px high with a top and right border 1px solid white. Set the background color and the font size. */
.menu ul li a, .menu ul li a:visited {
display:block; 
text-align:center; 
text-decoration:none; 
text-transform:uppercase;
width:125px; 
color:#919394; 
line-height:30px; 
font-size:1.3em;
}

.menu ul li.first.active a {
display:block; 
text-align:center; 
text-decoration:none; 
text-transform:uppercase;
width:125px; 
color:#770000; 
line-height:30px; 
font-size:1.3em;
}


/* make the dropdown ul invisible */
.menu ul li ul {
display: none;
}

/* specific to non IE browsers */
/* set the background and foreground color of the main menu li on hover */
.menu ul li:hover a {
color:#770000; 
border:1px solid #C0C0C0;
border-width:1px 1px 0px 1px;
margin-top: -1px;
margin-left: -1px;
margin-right: -1px;
height: 32px;
z-index: 10;
}


.menu ul li.first:hover a {
color:#770000; 
border: 0;
margin-top: 0;
margin-left: 0;
margin-right: 0;
}

.menu ul li.first.active:hover a {
color:#770000; 
border: 0;
margin-top: 0;
margin-left: 0;
margin-right: 0;
}

.menu ul li a.hide.active {
color:#770000; 

}

.menu ul li first a.hide.active {
color:#770000; 

}


/* make the sub menu ul visible and position it beneath the main menu list item */
.menu ul li:hover ul {
display:block; 
position:absolute;
padding 0 0 0 10px !important;

top: 30px; 
left: 0; 
}
/* style the background and foreground color of the submenu links */
.menu ul li:hover ul li a, .menu ul li:hover ul li.first.active a {
padding-left: 15px;
display:block; 
background:#ffffff; 
text-transform:none;
color:#919394; 
font-size: 1.2em;
border:1px solid #C0C0C0;
border-width:1px 1px 1px 1px;
height: 30px;
margin:  0 0 0 -1px;
padding: 0 0 0 5px;
width: 195px;
text-align:left; 
}

/* style the background and forground colors of the links on hover */
.menu ul li:hover ul li a:hover,  ul li:hover ul li.first.active a:hover {
background:#C0C0C0; 
padding 0 0 0 10px !important;
margin:  0 0 0 -1px;
color:#000;
}


.langswitch {
		list-style-type: none;
		color: #770000;
		height: 20px;
		width: 80px;
		padding:  0 10px 20px 20px;

}

.langswitch li a {
	display: inline;
	text-decoration: underline;
	text-transform: uppercase;	
	font-family: "VERDANA", "Times New Roman", Arial, Helvetica, sans-serif;
	float: left; 
	margin:  5px 5px 5px 5px;
	padding: 0 10px 0 0;
	color:#666666;
	border-right: 1px solid rgb(192, 192, 192);

	/* width: 100px; */
  
}

.langswitch li.active  {
    font-family: "VERDANA", "Times New Roman", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	float: left; 
	margin:  5px 5px 5px 5px;
	padding: 0 10px 0 0;
	color: #770000;
	border-right: 1px solid rgb(192, 192, 192);
	/* width: 100px; */
}


.langswitch li.active last {
	font-family: "VERDANA", "Times New Roman", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
	text-decoration: none;	
	float: left; 
	margin:  5px 5px 5px 5px;
	padding: 0 5px 0 0;
	color: #770000;
	border: none;
	/* width: 100px; */
}

.langswitch li.last {
	text-decoration: none;	
	display: inline;
	margin:  5px 0 0 0px;
	padding: 0 5px 0 0;
	border: none;
	/* color:#666666; */
	/* width: 100px; */
}

.langswitch li.last a {
	text-decoration: underline;	
	display: inline;
	margin:  5px 5px 5px 5px;
	padding: 0 5px 0 0;
	border: none;
	/* color:#666666; */
	/* width: 100px; */
}


/* SUB NAVIGATION */
.subnav {
	padding:0;
	margin:0 0 20px 0; }

.subnav li  {
	display:block;
	padding: 3px 0; }

.subnav li a {
	display:block;
	font-size: 1.3em;
	font-family: "VERDANA", "Times New Roman", Arial, Helvetica, sans-serif;
	padding:12px 10px 3px 10px;
	text-align: right;
	border-top:1px solid #cccccc;
	color: #919394 }

.subnav li a:hover, subnav li a.selected {
	color: #484747 }

.subnav li.active a {
	color: #484747 }

.subnav li:first-child a  {
	padding-top:0;
	display:block;
	border-top:0px solid #efefef; }
	



