/*------------------------------------------------------
Info

(Geko-based browsers like Firefox, Opera, Safari, Netscape support absolute positioning)
IE x.x family browser don't (buggy!) so we use the absolute positioning for all the browsers
plus the marging/padding stuff for IE x.x

/*------------------------------------------------------
globals
------------------------------------------------------*/

* {
	margin: 0;
	padding: 0;
}


body 
{ 
	font: 08pt/12pt georgia; 
	color: #555753;
	background-color: #fef7f0;
}

p 
{ 
	font: 08pt/12pt georgia; 
	margin-top: 0px; 
	text-align: justify;
}

h3 
{ 
	font: italic normal 12pt georgia; 
	letter-spacing: 1px; 
	margin-bottom: 0px; 
	color: #7D775C;
}

/*------------------------------------------------------
top frame - logo
------------------------------------------------------*/

#logo {
	position: absolute;
	width: 1024px;
	height: 150px;
	z-index: 1;
	left: 0px;
	top: 0px;
}

/*------------------------------------------------------
locale Selector
------------------------------------------------------*/

#localeSelector 
{
	position: absolute;
	top: 200px;
	width: 100%;
	color: #555753; 
	font: 14pt/22pt georgia;
}

#ieCompat
{
	height: 200px;
	width: 100%;
	color: #555753; 
	font: 14pt/22pt georgia;
}

/*------------------------------------------------------
left Menu
------------------------------------------------------*/

#leftMenu 
{
	clear: both;
	color: #555753; 
	width: 250px;
	font: 14pt/22pt georgia;
	text-align:left;
	margin-top: 15px;
}

#leftMenu p 
{
	font: italic 14pt/22pt georgia; 
	text-align: left;
	padding: 5px 10px;
}


/*------------------------------------------------------
content frame - right
------------------------------------------------------*/

#content 
{
	width: auto;
	clear: right;
	padding: 10px;
}


/*------------------------------------------------------
links + lists
------------------------------------------------------*/

a:link, a:visited
{
	font: italic 08pt/12pt georgia; 
	text-decoration: none;
	color: #7f8d71;
}

a:hover, a:active 
{
	font: italic 08pt/12pt georgia; 
	text-decoration: underline;
	color: #7f8d71;
}

.quickList 
{
	font: italic 08pt/12pt georgia; 
	text-align: left;
	clear: both; 
	margin: 0;
}

.quickList h3
{
	font: italic 12pt/22pt georgia; 
	text-align: left;
	clear: both; 
	text-decoration: underline;
}

.quickList p 
{
	margin-top: 0;
	font: italic 08pt/12pt georgia;
	text-align: left;

}

.quickList a:link, .quickList a:visited, .quickList a:hover, .quickList a:active 
{
	font: italic 08pt/12pt georgia; 
	text-decoration: none;
	color: #7f8d71;
}

.quickList a:hover, .quickList a:active 
{
	font: italic 08pt/12pt georgia; 
	text-decoration: underline;
	color: #7f8d71;
}


/*------------------------------------------------------
bottom frame - footer
------------------------------------------------------*/

#footer
{
	font: 08pt/12pt georgia; 
	text-align: center;
}


/*  ALEX  */
.menu_left a {
  display:block;
  width:150;
  margin:1px;
  padding:1px 3px 1px 3px;
  border:1px solid white;
  text-decoration:none;
  font-family:Georgia;
  font-size:9px;
  font-style:normal;
  overflow:hidden;
}

.menu_left a:hover {
  background-color:green;
  color:white;
  font-weight:normal;
  font-style:normal;
}
