/* CSS Document */

<style type="text/css" media="all">

/* 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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 104%;
}
/* 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 {
  background-color: #ffffff;
  color: #2d2e2e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #666699;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  
}
/* Commonly used to style section titles. */
h2 {
  color: #666699;
  font-size: 12px;
  font-weight: bold;
  

}
.logon {position:relative; float: right;
top:70px; right:50px; background-color:#eef6ed;
border:1px solid #C7DFF1




}

.para {font-size:14px; line-height:1.5em; margin-right:25px; background-color: #fff}
.pic {padding:5px; border:1px solid #666699; background-color:#eef6ed}

h2 {
	font-size:1.2em
}
.tb {background: #D9FBEA}
div #heading {
position:relative;
top:10px;
	width:200px;
	height:40px;
	min-height:40px;
	
	background-image:url();
	background-repeat:no-repeat;
	
}
#heading2 {
	z-index:1;	
	position:relative;
	top:0;
	left:0;
	width:538px;
	height:1.7em;
	min-height:28px;
	background:transparent;
	background-image:url();
	background-repeat:no-repeat;
	border:1px dotted red
}
h3 {
  color: #333333;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #339999;
  font-weight: 100;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #339999;
  font-weight: 100;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #336666;
  font-weight:bold
  text-decoration: underline;
  
/*  background-image:url(images/list.gif);
  background-position:left; 
  background-repeat: repeat-x */
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #339999;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #339999;
}
#topDiv {
  background-color: #ffffff;
  border-bottom: solid 0px  #999999; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
  line-height: 15px;
  padding: 10px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left;
  margin:0;
}
/* 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. */
#outerWrapper {
	background-color:fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 900px;
}
#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #eef6ed;
  border-right: solid 1px #999999; /* Sets the right border properties for an element using shorthand notation */
  border-bottom: solid 1px #999999;
  border-left: solid 1px #999999;
  float: left;
  padding: 10px 10px 10px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 200px;
}
/* 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 {
  margin: 0 0 0 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* 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 {
  clear: left;
  display: block;
}
#outerWrapper #footer {
  background-color: #eef6ed;
  border-top: solid 1px #666699; /* Sets the top border properties for an element using shorthand notation */
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}



/* It is common to set printer friendly styles such as a white background with black text. */
body.print {
  background-color: #fff;
  background-image: none;
  border-color: #000; /* Sets the border color properties for an element using shorthand notation */
  color: #000;
}
.error {position:absolute; top:450px; font-size:14px; font-style:bold; color:#FF0000}

[if IE 5]>

/* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */
#outerWrapper #contentWrapper #leftColumn1 {
  width: 220px;
}

<![endif]
[if IE]>

/* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. */
#outerWrapper #contentWrapper #content {
  zoom: 1;
}

.nav {
	list-style-type:none;
	font-size:12px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	line-height:1.7em;
	position:relative;
	left:20px;
	width: 152px;
	height: 239px;
	top: 54px;


}
.menuhead { font-family:Georgia, "Times New Roman", Times, serif; font-size:16px}

blockquote {background-color: #DADADA; border:1px dotted #999999; margin:6px; padding:6px; font-weight:100; }

/* begin css tabs */

ul#tabnav { /* general settings */
text-align: left; /* set to left, right or center */
margin: 1em 0 1em 0em; /* set margins as desired */
font: normal 14px verdana, arial, sans-serif; /* set font as desired */
border-bottom: 1px solid  #666699; /* set border COLOR as desired */
list-style-type: none;
padding: 3px 10px 3px 10px; /* THIRD number must change with respect to padding-top (X) below */
}

ul#tabnav li { /* do not change */
display: inline;
}

body#tab1 li.tab1, body#tab2 li.tab2, body#tab3 li.tab3, body#tab4 li.tab4, body#tab5 li.tab5, body#tab6 li.tab6, body#tab7 li.tab7,  body#tab8 li.tab8, body#tab9 li.tab9    { /* settings for selected tab */
border-bottom: 1px solid #fff; /* set border color to page background color */
background-color: #fff; /* set background color to match above border color */
color:#FF0000
}

body#tab1 li.tab1 a, body#tab2 li.tab2 a, body#tab3 li.tab3 a, body#tab4 li.tab4 a, body#tab5 li.tab5 a, body#tab6 li.tab6 a, body#tab7 li.tab7 a, body#tab8 li.tab8 a,body#tab9 li.tab9 a    { /* settings for selected tab link */
background-color:#fff /* set selected tab background color as desired */
color: #6666CC; /* set selected tab link color as desired */
position: relative;
top: 1px;
border: 1px solid  #666699;
border-bottom:1px solid #fff;
padding-top: 4px; /* must change with respect to padding (X) above and below */
}


ul#tabnav li a { /* settings for all tab links */
padding: 3px 4px; /* set padding (tab size) as desired; FIRST number must change with respect to padding-top (X) above */
border: 1px solid  #999999; /* set border COLOR as desired; usually matches border color specified in #tabnav */
background-color: #fff; /* set unselected tab background color as desired */
color: #999999; /* set unselected tab link color as desired */
margin-right: 0px; /* set additional spacing between tabs as desired */
text-decoration: none;
border-bottom: none;
}

ul#tabnav a:hover { /* settings for hover effect */
background: #fff; /* set desired hover color */
color:#666699;

}

/* end css tabs */

#contacts {font:Arial, Helvetica, sans-serif;
font-size:12px;
position:relative;
float:right;
margin-right:10px;
color:#666699
}
.box {
border:1px solid #668899;
background-color:#d2d2d2;
}

<![endif]
