@charset "UTF-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #666666;
	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: #000000;
	font-size: 24px;
	line-height: 14px;
}
	

.thrColFixHdr #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
} 
.thrColFixHdr #header { 
	background: #DDDDDD; 
	padding: 0 0px 0 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. */
} 
.thrColFixHdr #header h1 {
	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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* 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; /* padding keeps the content of the div away from the edges */
}
.thrColFixHdr #mainContent { 
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.thrColFixHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
} 
.thrColFixHdr #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;
}

/* 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 {
	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: 780px;
	padding-left: 25px;
	padding-right: 25px;
	background-image: url(images/fadeedge.gif);
}
#outerWrapper #header {
	background-color: #FEFAEA;
	/*border-bottom: solid 1px #767a7f;  Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 155px;
	line-height: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top: 14px;
}
#outerWrapper #topNavigation {
	background-color: #76BB2A;
	/*border-bottom: solid 1px #9ea3aa;  Sets the bottom border properties for an element using shorthand notation */
	height: 20px;
	padding: 4px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	margin-top: 0px;
	background-image: url(images/navart.gif);
}
#outerWrapper #contentWrapper {
	background-repeat: repeat-y;
	overflow: hidden;
}
#outerWrapper #contentWrapper #leftColumn1 {
	border-style: none; /* Sets the border style properties for an element using shorthand notation */
	float: left;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 165px;
	background-repeat: repeat-y;
	overflow: hidden;
	height: 900px;
}


#outerWrapper #contentWrapper #rightColumn1 {
	border-style: none; /* Sets the border style properties for an element using shorthand notation */
	float: right;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 175px;
	border-width: 0 0 thin;
	border-bottom-color: #FF0000;
}
/* 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 {
	border-style: none; /* Sets the border style properties for an element using shorthand notation */
	margin-left: 0px;
	padding: 0px 200px 0px 190px;
}
#outerWrapper #footer {
	background-color: #FFFAEB;
	border-top: solid 1px #9ea3aa; /* Sets the top border properties for an element using shorthand notation */
	height: 30px;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
/* 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. */

.para_runaround {
	margin-left: 0px;
	padding-left: 0px;
}
.b.h3leftnava {
	line-height: 10px;
}

/* Art positioning */

img {
	padding-top: 0px;
	margin-top: 0px;
	padding-bottom: 0px;
	border-color: #E55F06;
	border: 2px;
}

.bmi_art {
	margin-right: 10px;
	margin-top: 25px;
	padding-right: 10px;
	padding-top: 25px;
}


.amazonimg {
	vertical-align: bottom;
}
.beiart {
	position: relative;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	height: 232px;
	width: 144px;
	float: left;
	margin-right: 10px;
	margin-bottom: 0px;
	padding-bottom: 225px;
	margin-top: 0px;
}
.swsart {
	top: 338px;
	left: 175px;
	right: 0px;
	bottom: 0px;
	height: 232px;
	width: 144px;
	float: left;
	margin-right: 10px;
	padding-bottom: 155px;
}
.wagingart {
	top: 338px;
	left: 175px;
	right: 0px;
	bottom: 0px;
	height: 232px;
	width: 144px;
	float: left;
	margin-right: 10px;
	padding-bottom: 350px;
}
.imgnoborder {
	border: none;
	border-width: 0;
	border-style: none;
	float: left;
}

