@charset "utf-8";
/* CSS Document */

html {
    min-width: 945px;    /* IE7 */
}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* zero margin padding of the body for differing browser defaults */
	padding: 0;
	text-align: center; /* center the wrapper in IE 5* browsers. The text is then set to the left aligned default in the #wrapper selector */
	font-size: small;
	color: #000000;
	background: #000000 url("images/red_bg.png") no-repeat top fixed;
}

#wrapper {
	width: 760px;  /* use less than full width to allow for browser chrome */
	background-color: #AF894F;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* overrides the text-align: center on the body element. */
} 

#branding {
	width: 760px;  /* 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: 0;
	text-align: left; /* overrides the text-align: center on the body element. */
} 

#header { 
/*	background: #DDDDDD;  */
/*	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. */
	width: 760px;
	height: 221px;
/*	height: 221px; */
	padding: 0;
/*	background: #000000 url("images/ringworld_banner.jpg") no-repeat top fixed; */
	background: #000000 url("images/ringworld_banner.jpg") no-repeat;
} 

#header_sub_bar { 
	width: 100%;
	height: 23px;
/*	margin-left: 3px; */
	padding: 0;
/*	background: #000000 url("images/ringworld_banner.jpg") no-repeat top fixed; */
/*	background: #000000 url("images/red_sub_nav_bg.gif") no-repeat; */
	text-align:center;
	font-size: 12px;
	padding-top: 6px;
	color: white;
	background-color: #FF0000;
} 

#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 */
	color: white;
}

#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-color: #AF894F;	
	padding: 0;
}

#mainContent { 
	margin: 0;
	padding: 0 10px;
	background-color: white;
	float: right; /* CFA  add float */
	width: 575px;  /* CFA  add width for new wireframe width */
} 

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	color:#FFFFFF;
	background-color:#FF0000;
	font-size: smaller;
} 

#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 */
/*	font-size: 10px;  */
	text-align:center;
}

h1 {
	font-size:large;
}

h2 {
	font-size:large;
}

h3 {
	font-size: medium;
}

#about h3 {
	font-size: small;
}

.txtCenter {
	text-align: center;
}

.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;
}

/* ======================  Add Wireframe menu stuff  ============================= */

.wireframemenu{
border: 0;
	background-color: #AF894F;
	width: 165px;
	font-size: 14px;
	color: #FFFFFF;            /* CFA */
	float: left;               /* CFA */
}

* html .wireframemenu{ /*IE only rule. Original menu width minus all left/right paddings */
	width: 159px;
}

.wireframemenu ul{
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.wireframemenu a{
	font: bold 13px Verdana;
	padding: 4px 3px;
	display: block;
	width: 100%; /* Define width for IE6's sake */
	color: #FFFFFF;
	text-decoration: none;
	border-bottom: 1px solid #C0C0C0;
}

.wireframemenu a:visited{
	color: #595959;
}

html>body .wireframemenu a{ /* Non IE rule */
	width: auto;
}

.wireframemenu a:hover{
	background-color: #F8FBBD;
	color: black;
	color: #0000FF;               /* CFA */
	background-color: #dddddd;
	text-decoration: underline;
}

/* ======================  End Wireframe menu stuff  ============================= */

#callnow {
	font-size:small;
	text-align:center;
	font-weight:bold;
}

.color_red {
	color:#FF0000;
}

.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;
}

.clearer{      /* alternate clearer class */
	clear:both;
	margin:0px;
	margin-top:-1px;
	font:1px Monotype;
}

/*
#homepage h1 {
	text-align:center;
	font-size:large;
}

#homepage h2 {
	font-size:large;
}
*/