@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: url(bg1.jpg) top center fixed #000000;
	background-repeat: no-repeat;
	overflow: scroll;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	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: #222222;
}
a , a:hover , a:visited {
	color:#39F;
	font-weight:800;
	text-decoration:none;
}
hr {
  color: transparent;
  background-color: transparent;
  border: 0px;
  border-top: transparent;
  border-bottom: transparent;
  margin: 0px 0;
  height: 0px;
}
/* Infomessages - Miscellaneous */
.tooltip {
  position: absolute;
  display: none;
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #DDDDDD;
  border-left: 4px solid #222222;
  padding: 4px 10px;
  z-index: 100;
}

.errorbox {
  background-color: #FFCCCC;
  border: 1px dashed #D60000;
  color: #666666;
  font-size: 10px;
  width: 350px;
  padding: 8px;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
}

/* BBCode Tags */
.quote {
  color: #383838;
  text-align: left;
  font: normal 9px Verdana, Arial, Helvetica, sans-serif;
  margin: 0 auto;
  padding: 3px;
}

.list {
	list-style-type: disc;
	list-style-position:outside;
}
.list_num {
	list-style-type: decimal;
	list-style-position:outside;
}

.list_alpha {
	list-style-type: lower-latin;
	list-style-position:outside;
}

.code {
  color: #000000;
  text-align: left;
  margin: 0 auto;
  padding: 3px;
  font: normal 10px Verdana, Arial, Helvetica, sans-serif;
}

.codeinner {
  color: #000000;
  font: 11px 'Courier New', Courier, monospace;
}

.codeline0 {
	background-color: #F3F3F3;
	height: 15px;
	padding-left: 3px;
	white-space: nowrap;
}

.codeline1 {
	background-color: #FFFFFF;
	height: 15px;
	padding-left: 3px;
	white-space: nowrap;
}
.twoColFixRtHdr #container { 
	width: 915px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	background-image:url(images/top_06.jpg);
	height: 204px;
	width: 915px;
	background-position:top center;
	background-repeat: no-repeat;
	padding: 0px;  /* 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. */
} 
.flashbar {
	background-image:url(images/top_15.jpg);
	height: 301px;
	width: 915px;
	background-position:top center;
	background-repeat:no-repeat;
	background-color:#000;
}
.twoColFixRtHdr #sidebar1 {
	background-color:#000;
	float: right; /* since this element is floated, a width must be given */
	width: 245px; /* 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 */
	padding: 0px;
	margin: 0px;
}
.sidecontent {
	background-image:url(images/rightbg_28.jpg);
	background-position: top center;
	background-repeat:repeat-y;
	width: 245px;
	margin: 0px;
	padding: 0px;
}
.twoColFixRtHdr #mainContent {
	background-color:#000;
	width: 670px;
	margin: 0 245px 0 0; /* the right margin on this div element creates the column down the right 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: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.midcontent {
	background-image:url(images/leftbg_24.jpg);
	background-position: top center;
	background-repeat:repeat-y;
	width: 670px;
	margin: 0px;
	padding: 0px;
}
.twoColFixRtHdr #footer { 
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
.twoColFixRtHdr #footer p {
	color:#999;
	font-size:10px;
	text-align:center;
	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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.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;
}
