<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,td, table {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
}



/* 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: #000000;
  background-image: url(../images/background.jpg);
  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. */
  background-repeat: repeat
}

td, table{
  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: left; /* Centers the page content container in IE 5 browsers. */
  background-repeat: repeat
}
/* Commonly used to style page titles. */
h1 {
  color: #0b74b6;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}

h1 #error{
  color: #FF0000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}



/* Commonly used to style section titles. */
h2 {
  color: #0b74b6;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}

#leftColumn1 h1{
	color: white;
	font-size: 14px;
  	font-weight: bold;
  	line-height: 14px;
	}
#leftColumn1 h2{
	color: white;
	font-size: 12px;
  	font-weight: bold;
  	line-height: 14px;
	}







/* Sets the style for unvisited links. */

a,  a:link {
  color: #0b7466;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #0b7466;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #0b7466;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #0b7466;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #0b7466;
}


	
div.hr {
width:100%;
border-bottom:1px solid white;
}
div.hr hr {
display:none;
}


/*header controls in header.css*/
/*footer controls in footer.css*/



/*Image controls*/
img.headline {
	margin-left: auto;
	margin-right: auto;
	
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 30px;
	padding-left: 10px;

	border: 1px;
	border-width: 1px ;
	border-style: solid;
	border-color: black;
	}
	
img.left{
	margin-right:10px;
	margin-left:10px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	}
img.right{
	margin-right:10px;
	margin-left:10px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	}
img.center{
	margin-right:auto;
	margin-left:auto;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	}

img{
	border:0px;	
	border-style:none;
	}
	
	
/*Paragraph controls */
#p error{
	color : #ff0000;
	}
#p left{
	text-align : left;
	}
#p right{
	text-align : right;
	}
#p center{
	text-align : center;
	}
#p justify{
	text-align : justify;
	}
#p rightJustify{
	align:right;
	text-align : justify;
	}
#img center{
	margin-right:auto;
	margin-left:auto;
	}	
	

/* 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: #ffffff;
  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: 800px;/*page*/
  border: solid 1px #000000;
}

#contentWrapper-oneCW {
	}
	
#contentWrapper-twoCWWleft {
	background:url(../images/faux-columns-white-l-white.gif) repeat;
	}
#contentWrapper-twoCWWright {
	background:url(../images/faux-columns-white-white-r.gif) repeat;
	}
	
#contentWrapper-twoCGW {
	background:url(../images/faux-columns-grey-white.gif) repeat;
	}
#contentWrapper-twoCWB {
	background:url(../images/faux-columns-white-blue.gif) repeat;
	}
	
#contentWrapper-threeCWWW {
	background:url(../images/faux-columns-white-white-white.gif) repeat;
	}
#contentWrapper-threeCGWB {
	background:url(../images/faux-columns-grey-white-blue.gif);
	}
	


#leftColumn1 {
 # background-color: #333333;
  /*border-right: solid 1px #8ab573; Sets the right border properties for an element using shorthand notation */
  float: left;
  padding-top: 10px;
	padding-right: 4px;
	padding-left: 10px;
	padding-bottom: 10px;
  width: 170px;
  color: white;
  
}

#rightColumn1 {
	#background-color: #eef6ed;
	/* border-left: solid 1px #8ab573;  Sets the left border properties for an element using shorthand notation */
	float: right;
  	padding-top: 10px;
	padding-right: 10px;
	padding-left: 4px;
	padding-bottom: 10px;
	width: 270px;
}

#leftColumn1White {
	#background-color: white;
	/*border-right: solid 1px #8ab573;  Sets the right border properties for an element using shorthand notation */
	float: left;
  	padding-top: 10px;
	padding-right: 4px;
	padding-left: 10px;
	padding-bottom: 10px;
	width: 170px;
}

#rightColumn1White {
	background-color: white;
	/*border-left: solid 1px #8ab573;  Sets the left border properties for an element using shorthand notation */
	float: right;
  	padding-top: 10px;
	padding-right: 10px;
	padding-left: 4px;
	padding-bottom: 10px;
	width: 270px;
}

/* 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. */
#content {
	margin: 0 292px 0 193px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  	padding-top: 10px;
	padding-right: 4px;
	padding-bottom: 10px;
	padding-left: 4px;
	height: 100%;
}

/* 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. */
#content1col {
	margin: 0px 0px 0px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px;
}
#contentminusleft {
  margin: 0px 0px 0px 193px; /* 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) */

}
#contentminusright {
  margin: 0px 292px 0px 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. */
.clearFloat {
  clear: both;
  display: block;
}















/*http://www.vertexwerks.com/tests/sidebox/*/
/* Show only to IE PC \*/
* html .boxhead h2  {
	height : 1%;
}

/* For IE 5 PC*/
.sidebox  {
	margin : 0 auto;
	/* center for now */
	width : 270px;
	/* 17ems so it will grow */
	background : url(../images/sbbody-r.gif) no-repeat bottom right;
	font-size : 100%;
}

.boxhead  {
	background : url(../images/sbhead-r.gif) no-repeat top right;
	margin : 0;
	padding : 0;
	text-align : center;
}

.boxhead h2  {
	background : url(../images/sbhead-l.gif) no-repeat top left;
	margin : 0;
	padding : 22px 30px 5px;
	color : white;
	font-weight : bold;
	font-size : 1.2em;
	line-height : 1em;
	text-shadow : rgba(0,0,0,.4) 0px 2px 5px;
}

.boxbody  {
	background : url(../images/sbbody-l.gif) no-repeat bottom left;
	margin : 0;
	padding : 5px 30px 31px;
}

/* ***********************************************************/

.full_sidebox  {
	margin : 0 auto;
	/* center for now */
	background : url(../images/sbbody-r2.gif) no-repeat bottom right;
	font-size : 100%;
}

.full_boxhead{
	background : url(../images/sbhead-r2.gif) no-repeat top right;
	margin : 0;
	padding : 0;
	text-align : center;
}

.full_boxhead h2{
	background : url(../images/sbhead-l2.gif) no-repeat top left;
	margin : 0;
	padding : 22px 30px 5px;
	color : white;
	font-weight : bold;
	font-size : 1.2em;
	line-height : 1em;
	text-shadow : rgba(0,0,0,.4) 0px 2px 5px;
}

.full_boxbody  {
	background : url(../images/sbbody-l2.gif) no-repeat bottom left;
	margin : 0;
	padding : 5px 30px 31px;
}


</STYLE>
[if IE 5]>
<STYLE type="text/css">/* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */



</STYLE>

[ENDIF][IF ie]>
<STYLE type="text/css">/* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. */
#content {
  zoom: 1;
}</STYLE>
<![ENDIF]
