@charset "iso-8859-1";
/* =======================
This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, 
the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. 
===========================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	border-style: none;
	border-color: inherit;
	border-width: 0px;
	margin: 0px;
	padding: 0px;
	outline: 0px;
	font-size: 100%;
	text-align: left;
}
/* =========================
The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent 
styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set 
the background color of the page and create a centered container for the page content to display. 
===========================*/
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	background-color: #000000;
	line-height: 1.2em;
	font-size: 1em;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px 0px 0px 0px;
	background-image: url('../images/wood-floor-wallpapers_6855_1920x1200 (licht).jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
}
/*=====================
Removed ugly blue border from around hyperlinked images
====================== */
body img {
	border-style: none;
	border-color: inherit;
	border-width: 0px;
	text-decoration: none;
	float: none;
	text-align: center;
}
/* ==========================
Commonly used to style page titles. 
==============================*/
h1, h2, h3 {
	color: #008080;
	margin: 5px 0px 25px 0px;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}
h1 {
	font-size: 1.7em;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	color: #008080;
}
/* Commonly used to style section titles. */
h2 {
	font-size: 18pt;
}
h5 {
	font-size: small;
	color: #008080;
}
/*===========================
link styles
============================ */
a:link {
	border-color: #000000;
	font-weight: normal;
	color: #008080;
	background:;
	text-decoration: underline;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	font-style: normal;
	}
a:visited {
	font-weight: bold;
	color: #980E10;
	background: transparent;
	padding: 0px;
	text-decoration: underline;
}
a:hover {
	font-weight: bold;
	text-decoration : none;
	background: #FFFFFF;
	color: #564C66;
}
a:active {
	font-weight: bold;
	text-decoration : underline;
	background: #D5D2D9;
	color: #000000;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #2170bd;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #039;
}
/* ========================
This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid 
the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on 
the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the 
left and right margins to center the container on the page. 
============================*/
body {
	background-color: #fff;
	width: 80%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 50px auto 0px auto;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	color: #000000;
}
/* ========================
Masthead 
========================== */
#outerWrapper #header {
	background-position: left center;
	background-color: #FFFFFF;
	padding: 10px 10px 10px 10px;
	height: 157px;
	background-image: url('../images/EiB%20Banner%201380x184.jpg');
	background-repeat: no-repeat;
	margin-left: 20px;
	position: relative;
	top: -1px;
	left: -58px;
	width: 1358px;
}
/* ===================
Menu Container
==================== */
#menu-bar {
  width: 95%;
  margin: 0px 0px 0px 0px;
  padding: 3px 3px 3px 3px;
  height: 34px;
  line-height: 100%;
  border-radius: 9px;
  -webkit-border-radius: 9px;
  -moz-border-radius: 9px;
  box-shadow: 3px 2px 7px #666666;
  -webkit-box-shadow: 3px 2px 7px #666666;
  -moz-box-shadow: 3px 2px 7px #666666;
  background: #8B8B8B;
  background: linear-gradient(top,  #ADADAD,  #A3A3A3);
  background: -ms-linear-gradient(top,  #ADADAD,  #A3A3A3);
  background: -webkit-gradient(linear, left top, left bottom, from(#ADADAD), to(#A3A3A3));
  background: -moz-linear-gradient(top,  #ADADAD,  #A3A3A3);
  border: solid 2px #616161;
  position:relative;
  z-index:999;
}
#menu-bar li {
  margin: 0px 0px 6px 0px;
  padding: 0px 6px 0px 6px;
  float: left;
  position: relative;
  list-style: none;
}
#menu-bar a {
  font-weight: bold;
  font-family: 'trebuchet ms';
  font-style: normal;
  font-size: 12px;
  color: #E7E5E5;
  text-decoration: none;
  display: block;
  padding: 6px 20px 6px 20px;
  margin: 0;
  margin-bottom: 6px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  text-shadow: 2px 2px 3px #000000;
}
#menu-bar li ul li a {
  margin: 0;
}
#menu-bar .active a, #menu-bar li:hover > a {
  background: #0399D4;
  background: linear-gradient(top,  #EBEBEB,  #A1A1A1);
  background: -ms-linear-gradient(top,  #EBEBEB,  #A1A1A1);
  background: -webkit-gradient(linear, left top, left bottom, from(#EBEBEB), to(#A1A1A1));
  background: -moz-linear-gradient(top,  #EBEBEB,  #A1A1A1);
  color: #444444;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
  box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
  text-shadow: 2px 2px 3px #FFFFFF;
}
#menu-bar ul li:hover a, #menu-bar li:hover li a {
  background: none;
  border: none;
  color: #666;
  -box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
#menu-bar ul a:hover {
  background: #BCD486 !important;
  background: linear-gradient(top,  #434539,  #737270) !important;
  background: -ms-linear-gradient(top,  #434539,  #737270) !important;
  background: -webkit-gradient(linear, left top, left bottom, from(#434539), to(#737270)) !important;
  background: -moz-linear-gradient(top,  #434539,  #737270) !important;
  color: #FFFFFF !important;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  text-shadow: 2px 2px 3px #FFFFFF;
}
#menu-bar ul {
  background: #DDDDDD;
  background: linear-gradient(top,  #FFFFFF,  #CFCFCF);
  background: -ms-linear-gradient(top,  #FFFFFF,  #CFCFCF);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#CFCFCF));
  background: -moz-linear-gradient(top,  #FFFFFF,  #CFCFCF);
  display: none;
  margin: 0;
  padding: 0;
  width: 185px;
  position: absolute;
  top: 34px;
  left: 0;
  border: solid 1px #B4B4B4;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-box-shadow: 2px 2px 3px #222222;
  -moz-box-shadow: 2px 2px 3px #222222;
  box-shadow: 2px 2px 3px #222222;
}
#menu-bar li:hover > ul {
  display: block;
}
#menu-bar ul li {
  float: none;
  margin: 0;
  padding: 0;
}
#menu-bar ul a {
  padding:10px 0px 10px 15px;
  color:#424242 !important;
  font-size:12px;
  font-style:normal;
  font-family:'trebuchet ms';
  font-weight: lighter;
  text-shadow: 2px 2px 3px #FFFFFF;
}
#menu-bar ul li:first-child > a {
  border-top-left-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  border-top-right-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -moz-border-radius-topright: 10px;
}
#menu-bar ul li:last-child > a {
  border-bottom-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-bottom-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-bottomright: 10px;
}
#menu-bar:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#menu-bar {
  display: inline-block;
}
  html[xmlns] #menu-bar {
  display: block;
}
* html #menu-bar {
  height: 1%;
}

#outerWrapper #topNavigation {
	/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-repeat: repeat;
	background-color: #F2F2F2;
}
/*========================
Content wrapper background images makes them equal height columns
========================== */
#outerWrapper #contentWrapper {
	background-size: 1000px;
	background-position: left;
	clear: both;
	background: #ffffff url('../images/content-bg.jpg');
	background-repeat: repeat-y;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	color: #000000;
}
/* ============================
leftmost column
============================= */
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	width: 200px;
	padding: 10px 10px 10px 10px;
}
#outerWrapper #contentWrapper #leftColumn1 p {
	font-size: .85em;
}
#search {
	text-align: center;
	margin: 3px auto 8px auto;
	font-size: .8em;
}
#search p {
	margin-bottom: 0px;
}
#myform {
	/*CSS for sample search box. Remove if desired */
	margin: 0;
	padding: 0;
}
#myform .textinput {
	width: 100px;
	border: 1px solid gray;
}
#myform .submit {
	font: bold .9em Verdana;
	height: 22px;
	background-color: #980E10;
	color: #ffffff;
}
/* left-hand menu - colored box  */
.sidebox {
	border: 2px solid #003300;
	margin: 0px 5px 3px 5px;
	padding: 0px 3px 5px 3px;
	background: #FFFFFF;
	color: #000000;
	font-size: 85%;
}
/* left-hand menu - colored box  */
.sideboxheading {
	background: #BD0001;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	margin-top: 3px;
	padding: 2px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	padding: 10px 20px 10px 20px;
	margin: 0px 0px 0px 220px;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	color: #000000;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being 
cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before 
the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
	display: block;
	clear: both;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	color: #000000;
}
#outerWrapper #footer {
	background-color: #FFFFFF;
	border-top: solid 1px #9bb6d2;
	padding: 10px 10px 10px 10px;
	border-top-color: #AF1819;
	font-size: .85em;
	color: #000000;
}
/* removes the top and bottom margins*/
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
}

/*=================
image styles
===================*/
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}

.imgctr {
	display: block;
	margin: 0px auto;
}

/*=======================
misc styles
========================= */
.ctr {
	text-align: center;
}
.smltxt {
	font-size: small;
}
.tinytxt {
	font-size: .75em;
}
/*=============
form styles 
==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 1px solid #353c48;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	border: 1px solid #353c48;
	color: #ffffff;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
	background-color: #AF1819;
}
.cf {
	border: 1px #353c48 solid;
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #000000;
	background-color: #AF1819;
	color: white;
}
/*============ 
For Bing search box 
==============*/
#WLSearchBoxDiv {
	margin: 1em;
	font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
	color: #000000;
}
