﻿/* 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: 100%;
}
/* 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: #818181;
	background-image: url('../images/background.jpg');
	background-position: bottom-left;
	background-repeat: repeat-x;
	line-height: 14px;
	font-size: .8em;
	color: #000000;
	font-family: Calibri, sans-serif, Verdana;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	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) */
}
/* Commonly used to style page titles. */
h1 {
	line-height: 20px;
	padding-bottom: 5px;
	padding-top: 0px;
	color: #000;
	font-size: 1.6em;
	font-weight: bold;
}
/* Commonly used to style section titles. */
h2 {
	line-height: 18px;
	color: #000;
	padding-bottom:5px;
	font-size: 1.4em;
	font-weight: bold;
}
h3 {
	line-height: 16px;
	color: #CC0000;
	font-size: 1.2em;
	font-weight: bold;
	padding-bottom:5px;
}
p  {
	margin:0px 0 5px 0;}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #000;
	font-weight: bold;
	text-decoration: underline;
}
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #CC0000;
	text-decoration: none;
	font-weight: bold;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
  font-weight: bold;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #666666;
	font-weight: bold;
}
/* 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:transparent;
	margin-left: auto;
	width: 865px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin-right: auto;
}
#outerWrapper #header {
	font-family: Calibri, sans-serif, Verdana;
/* Sets the font properties for an element using shorthand notation */	
	background-image: url('../images/logo1.png') ;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */;
	color: #FF0000;
	line-height: 35px;
	background-repeat: no-repeat;
	height:90px;
}
#outerWrapper #homeheader {
	font-family: Calibri, sans-serif, Verdana;
/* Sets the font properties for an element using shorthand notation */	
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */;
	color: #FF0000;
	height:90px;
}

#outerWrapper #contentWrapper {
	margin: 0; padding: 0; border:0px solid #000;/* Sets the border properties for an element using shorthand notation */
	background-color: #999999;
	}
#outerWrapper #Wrapper {
	margin: 0; border-left:0px solid #fff; border-right:0px solid #fff;/* Sets the border properties for an element using shorthand notation */
	background-color: #999999;
	padding: 36px 36px 36px 36px;
	min-height:200px;
	font-size: 120%;
	line-height: 18px;
	}

#outerWrapper #contentWrapper #leftColumn1 {
	font-family: Calibri, sans-serif, Verdana;
	background-color: #999999;
	float: left;
	width: 140px;
	min-height: 400px;
	color: #000000;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #leftColumn1 ul{
	/* General style of list style in left column; including category listing */
	list-style-type: none;
	padding: 5px 5px 5px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 28px;
	font-size: 110%;
	background-color:black;
}
#outerWrapper #contentWrapper #leftColumn1 li{
	/* General style of list style in left column; including category listing */
	background: url(../images/buttonA.jpg) no-repeat;
	padding-top: 2px;
	padding-bottom: 5px;
	background-color: #000;
}

#outerWrapper #contentWrapper #leftColumn1 li a {

	padding-left:28px;
	color:#fff;
	text-decoration: none;
	

}

#outerWrapper #contentWrapper #leftColumn1 li a:hover {
	padding-left: 28px;
	color: #CC0000;
	background: url('../images/buttonB.jpg') no-repeat;
	display: inline-block;
	text-decoration: none;
}
#outerWrapper #contentWrapper #leftColumn1 li a.selected {
	background: url('../images/buttonC.jpg') no-repeat;
	text-decoration: none;
	padding-left: 28px;
	padding-top: 1px;
	padding-bottom: 2px;
	color: #C0C0C0;
	display: block;
	text-decoration: none;
}

#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #999999;
	float: right;
	width: 140px;
	min-height: 400px;
	padding: 10px 5px 5px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #rightColumn1 h3 {
	line-height: 14px;
	color: #CC0000;
	font-size: 12px;
	font-weight: bold;
	padding-bottom:5px;
}

#outerWrapper #contentWrapper #rightColumn1 ul{
	/* General style of list style in left column; including category listing */	
	list-style-type: none;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 14px;
	font-size: 110%;
	color: #000;
	}

#outerWrapper #contentWrapper #rightColumn1 li{
	
	background-image:url('../images/green-triangle.gif');
	background-repeat:no-repeat;
	background-position:left;
	padding-left: 12px;
	padding-top: 3px;
	padding-bottom:4px;
	margin-left:0px;
	}

/* 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 10px 10px 10px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	
	background: #fff;
	/*background-image: url('../images/content-bkground2.png');
	background-position: top;
	background-repeat: no-repeat;*/
	color: #000;
	font-size: 110%;
	min-height: 220px;
	margin: 0 161px 0 161px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #contentheader {
	padding: 10px 10px 10px 10px;
/* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */	
	background: #dbdbdb;
	color: #000;
	font-size: 110%;
	height: 186px;
	margin: 0 161px 0 161px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #contentheader a {
	color: #000;
	font-size: 110%;
}
#outerWrapper #contentWrapper #contentheader a:hover {
	color: #CC0000;
	font-size: 110%;
	text-decoration:none;
}


#outerWrapper #contentWrapper #content ul{
	/* General style of list style in left column; including category listing */	
	list-style-type: none;
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;
	line-height: 14px;
	font-size: 110%;
	}

#outerWrapper #contentWrapper #content li{
	
	background-image:url('../images/green-triangle.gif');
	background-repeat:no-repeat;
	background-position:left;
	padding-left: 14px;
	padding-top: 3px;
	padding-bottom:4px;
	margin-left:0px;
	}
#outerWrapper #contentWrapper #content a {
	color: #000;
	font-size: 110%;
}
#outerWrapper #contentWrapper #content a:hover {
	color: #CC0000;
	font-size: 110%;
	text-decoration:none;
}

.image {
	border-width: 0;
	margin-right:10px;
	margin-bottom:10px;
	float:left;
}
.rightimage {
	vertical-align: middle;
	margin-left: 20px;
	margin-right: 20px;
	margin-top: 3px;
	margin-bottom: 3px;
}
.icon {
	margin-right: 10px;
	margin-bottom:10px;
	vertical-align: middle;
	float: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 {
  display: block;
  clear: both;
}
#outerWrapper #footer {
  background: transparent;
  border-top: solid 0px #666; /* Sets the top border properties for an element using shorthand notation */
  color: #ffffff;
  font-size: 100%;
  padding: 10px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
 
}
#outerWrapper #footer .style1 {
	vertical-align: middle;
	margin-left: 10px;
	margin-right: 20px;
	margin-top: 3px;
	margin-bottom: 3px;
}

.link a, a:link{
 text-decoration:underline;
 color: #ffffff;
}
.center {
	text-align: center;
}

dl {margin: 0; padding: 0; border-left:1px solid #000; border-right:1px solid #000;}
.top {
  display:block; 
  background:transparent; 
  font-size:1px;
  }

.bottom {
  display:block; 
  background:transparent; 
  font-size:1px;   
  }

.b1, .b2, .b3, .b4 {
display:block; 
/* hide overflow:hidden from IE5/Mac */ 
/* \*/ 
overflow: hidden; 
/* */ 
}

.b1, .b2, .b3 {height:1px;}
.b2, .b3, .b4 {background:#999999; border-left:1px solid #000; border-right:1px solid #000;}
.b1 {margin:0 5px; background:#000;}
.b2 {margin:0 3px; border-width:0 2px;}
.b3 {margin:0 2px;}
.b4 {height:2px; margin:0 1px;}

.menu1, .menu2, .menu3, .menu4 {
display:block; 
/* hide overflow:hidden from IE5/Mac */ 
/* \*/ 
overflow: hidden; 
/* */ 
}

.menu1, .menu2, .menu3 {height:1px;}
.menu2, .menu3, .menu4 {background:#000; border-left:1px solid #000; border-right:1px solid #000;}
.menu1 {margin:0 5px; background:#000;}
.menu2 {margin:0 3px; border-width:0 2px;}
.menu3 {margin:0 2px;}
.menu4 {height:2px; margin:0 1px;}

.content {
	margin: 0; padding: 0; border-left:0px solid #000; border-right:0px solid #000;
	background-color:#fff; text-align: center;
}
.content1, .content2, .content3, .content4 {
display:block; 
/* hide overflow:hidden from IE5/Mac */ 
/* \*/ 
overflow: hidden; 
/* */ 
}

.content1, .content2, .content3 {height:1px;}
.content2, .content3, .content4 {background:#fff; border-left:1px solid #000; border-right:1px solid #000;}
.content1 {margin:0 5px; background:#000;}
.content2 {margin:0 3px; border-width:0 2px;}
.content3 {margin:0 2px;}
.content4 {height:2px; margin:0 1px;}



