@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
  margin: 0px;
  padding: 0px;
  text-align: center;
  background: #fff url(images/woodgrain42.jpg);
}

H1 {
	font: bold 18px Verdana, Arial, Helvetica, sans-serif;
  margin: 0px;
  padding: 0px;
  text-align: left;
  color: #000;
}

#container {
  margin: 0px;
  padding: 0px;
  text-align: center;
  background: url(images/header.jpg) repeat-x;
}

#content_box {
  width: 800px;
  margin: 0px auto;
  padding: 0px;
}

/* TOP MENU */
#top_menu  {
	font: bold 14px Verdana, Arial, Helvetica, sans-serif;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #fff;
	padding: 0px;
	margin-bottom: 12px;
}

#top_menu a:link {
	font: bold 14px Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	text-decoration: none;
	margin: 0px 15px;
}

#top_menu a:visited {
	color: #ccc;
	text-decoration: none;
	margin: 0px 15px;
}

#top_menu a:active {
  color: #f00;
	text-decoration: none;
	margin: 0px 15px;
}

#top_menu a:hover {
	text-decoration: underline;
	margin: 0px 15px;
	color: #fff;
}
/* END TOP MENU */

/* LEFT MENU */
#left_menu {
  width: 170px;
  padding: 0px 0px 0px 0px;
  border-right: 2px solid #900;
}
/* END LEFT MENU */

/* MENU ITEM*/
.menu_item  {
	font: bold 16px Verdana, Arial, Helvetica, sans-serif;
	text-align: right; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	padding: 0px 20px 0px 0px;
}

.menu_item a:link {
	font: bold 16px Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	text-decoration: none;
}

.menu_item a:visited {
 	font: bold 16px Verdana, Arial, Helvetica, sans-serif;
	color: #666;
	text-decoration: none;
}

.menu_item a:active {
	font: bold 16px Verdana, Arial, Helvetica, sans-serif;
  color: #900;
	text-decoration: none;
}

.menu_item a:hover {
	font: bold 16px Verdana, Arial, Helvetica, sans-serif;
	text-decoration: underline;
	color: #900;
}
/* END LEFT MENU ITEM */


/* CONTENT FOOTER*/
#content_footer  {
	font: normal 12px Verdana, Arial, Helvetica, sans-serif;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
	padding: 0px;
	margin: auto;
	width: 100%;
}

#content_footer a:link {
	font: normal 12px Verdana, Arial, Helvetica, sans-serif;
	color: #000;
	margin: 0px 10px;
	text-decoration: none;
}

#content_footer a:visited {
 	font: normal 12px Verdana, Arial, Helvetica, sans-serif;
	color: #666;
	margin: 0px 10px;
	text-decoration: none;
}

#content_footer a:active {
	font: normal 12px Verdana, Arial, Helvetica, sans-serif;
  color: #900;
  margin: 0px 10px;
	text-decoration: none;
}

#content_footer a:hover {
	font: normal 12px Verdana, Arial, Helvetica, sans-serif;
	text-decoration: underline;
	color: #900;
	margin: 0px 10px;
}
/* END CONTENT FOOTER*/

.wci #header { 
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.wci #header h1 {
	background: url(images/wci-master.jpg) no-repeat;
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.wci #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
.wci #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.wci  #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD; 
} 
.wci #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
