@charset "utf-8";
/* CSS Document */

body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #2d001d url(../images/bg.gif) repeat-x;
	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: #525252;
}
.twoColFixRtHdr #container { 
	width: 1136px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF url(../images/nav_bg.gif) repeat-x;
	margin: 144px auto 0; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 262px; /* 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: 0;
	margin:0;
}
.twoColFixRtHdr #mainContent { 
	margin: 0 250px 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: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #mainContent p { 
	margin: 15px 80px 15px 115px;
	font-size: 80%
}
.twoColFixRtHdr #mainContent a:link { 
	text-decoration: none;
	color: #525252;
}
.twoColFixRtHdr #mainContent a:visited { 
	text-decoration: none;
	color: #525252;
}
.twoColFixRtHdr #mainContent a:hover { 
	text-decoration: none;
	color: #671C63;
}
.twoColFixRtHdr #header { 
	margin-top: 50px;
	margin-bottom:58px;
	padding: 104px 0 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: transparent url(../images/logo.gif) 0 22px no-repeat;
	display:block;
	height:24px;
} 

#header img  {
	margin-left:20px;
}
#logo a {
	width: 340px;
	height: 95px;
	margin: 0;
	display: block;
	position:fixed;
	top: 165px;
	z-index: 5;
}
#logo h1 {
	display:none;
}

#first {
	margin-left: 310px; 
}
.twoColFixRtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#2d001d; 
} 
.twoColFixRtHdr #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 */
	text-align:right;
	font-size: 70%;
	color: #fff;
}
.twoColFixRtHdr #footer a:link { 
	text-decoration: none;
	color: #fff;
}
.twoColFixRtHdr #footer a:visited { 
	text-decoration: none;
	color: #fff;
}
.twoColFixRtHdr #footer a:hover { 
	text-decoration: none;
	color: #BF7324;
}
.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;
}
.highlight {
	color: #BF7324;
	font-weight: bold;
}
#h2 {
	color="671C63";
}
div#wn	{ 
    position:relative; 
    width:497px; height:358px; 
    overflow:hidden;	
	float: left;
	}
div#scrollbar { 
  position: relative;
  float: right;
  width:7px; height:358px; 
  margin-right: 25px;
  font-size:1px;  /* for image vertical alignment issue */
  }
div#track { 
  position:absolute; left:14; top:4px;
  width:6px; height:350px;
  background: #FFFFFF;
  }
div#dragBar {
  position:absolute; left:13px; top:1px;
  width:6px; height:20px;
  background-color:#671C63;
  }  
div#up { position:absolute; left:14; top:0; }  
div#down { position:absolute; left:14; bottom:0; }

/* for safari, to prevent selection problem  */
div#scrollbar, div#track, div#dragBar, div#up, div#down {
    -moz-user-select: none;
    -khtml-user-select: none;
}

/* so no gap or misplacement due to image vertical alignment [1]*/
div#scrollbar img {
    display:block; 
}
a {
	outline:none;
}