body {
	/* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10;
	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;
	background-image: url(images/sandskynew.png);
	background-repeat: repeat-x;
	margin-top: 0;
	margin-right: 10;
	margin-bottom: 10;
	margin-left: 10;
	font-family: Arial, Helvetica, sans-serif;
}
html {min-height: 100%; margin-bottom: 1px; overflow-y: scroll;}

.bottom {
	font-size: 10px;
}
.thrColFixHdr #container {
	width: 1000px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.thrColFixHdr #header {
	height: 175px;
}
.tabtext {
	font-size: 11px;
}
.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: 5px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color: #000;
	font-size: 16px;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 130px; /* padding keeps the content of the div away from the edges */
	background-color: #FFF;
}
.thrColFixHdr #sidebar1 a:link {
	color: #000;
	text-decoration: none;
	font-size: 12px;
	background-color: #CCF;
	border: 1px solid #3E3EFF;
	display: block;
	text-indent: 2px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	padding: 4px;
	font-weight: bold;
}

.thrColFixHdr #sidebar1 a:visited {
	color: #000;
	text-decoration: none;
	font-size: 12px;
	background-color: #CCF;
	border: 1px solid #3E3EFF;
	display: block;
	text-indent: 2px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	padding: 4px;
	font-weight: bold;
}
.thrColFixHdr #sidebar1 a:hover {
	color: #FF0000;
	text-decoration: none;
	font-size: 12px;
	border: 1px solid #000099;
	display: block;
	text-indent: 2px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	background-color: #FFFFFF;
	padding: 4px;
	font-weight: bold;
}

.activelink{
	background-color: #ff0000;
	border: 1px solid #000000;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	font-size: 12px;
	display: block;
	text-indent: 2px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	padding: 4px;
}


.thrColFixHdr #sidebar1 .homeactivelink a:link{
	background-color: #F00;
	border: 1px solid #000000;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	font-size: 12px;
	display: block;
	text-indent: 2px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	padding: 4px;
}

.thrColFixHdr #sidebar1 .homeactivelink a:visited{
	background-color: #ff0000;
	border: 1px solid #000000;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	font-size: 12px;
	display: block;
	text-indent: 2px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	padding: 4px;
}
.thrColFixHdr #sidebar1 .homeactivelink a:hover{
	background-color: #ff0000;
	border: 1px solid #000000;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	font-size: 12px;
	display: block;
	text-indent: 2px;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 1px;
	padding: 4px;
}

.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 130px; /* padding keeps the content of the div away from the edges */
}

.thrColFixHdr #sidebar2 .right{}

.thrColFixHdr #sidebar2 .right a:link {
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
}
.thrColFixHdr #sidebar2 .right a:hover {
	text-decoration: none;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
}
.thrColFixHdr #sidebar2 .right a:visited {
	text-decoration: none;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px;
	padding: 0px;
}
.thrColFixHdr #mainContent {
	height: auto;
	background-color: #FFF;
	margin-top: 0;
	margin-right: 135px;
	margin-bottom: 0;
	margin-left: 130px;
	padding-top: 0;
	padding-right: 5px;
	padding-bottom: 0;
	padding-left: 5px;
	text-align: left;
}
.arrow{
	}
.arrow a:link{
	background-color: #A3A3FF;
	text-decoration: none;
}
.arrow a:visited{
	background-color: #CCF;
	text-decoration: none;
}
 .arrow a:hover{
	background-color: #F1F1FF;
	text-decoration: none;
}
.thrColFixHdr #container #mainContent img {
	margin: 3px;
}

.thrColFixHdr #footholder {
	padding: 0 10px 0 20px;
	background-color: #FFF;
}
.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;
}
.control {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	background-color: #ddddFF;
	font-weight: bold;
	color: #000099;
}
.baywhit {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 40px;
	font-weight: bold;
	color: #000099;
	font-variant: small-caps;

}

h2 {
	text-align: center;
	font-weight: bold;
	font-family: "Courier New", Courier, monospace;
	font-size: 36px;
	color: #FF0033;
}
.maintable {
	border: 1px solid #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding: 2px;
	text-decoration: none;
}
.offertext {
	font-size: 16px;
	font-weight: bold;
}



.koolwebs a:link {
	font-size: 10px;
	color: #000000;
	font-variant: small-caps;
	font-weight: bold;
	text-decoration: none;
	background-color: #A0A0FF;
	padding: 2px;
	font-family: Arial, Helvetica, sans-serif;
}
.koolwebs a:visited {
	font-size: 10px;
	color: #006;
	font-variant: small-caps;
	font-weight: bold;
	text-decoration: none;
	background-color: #CCCCFF;
	padding: 2px;
	font-family: Arial, Helvetica, sans-serif;
}
.koolwebs a:hover {
	font-size: 10px;
	color: #FFF;
	font-variant: small-caps;
	font-weight: bold;
	text-decoration: none;
	background-color: #F00;
	padding: 2px;
	font-family: Arial, Helvetica, sans-serif;
}
.footer  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #A0A0FF;
}
.footer a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000;
	background-color: #CCF;
	text-decoration: none;
	border: 1px solid #00A;
	padding: 1px;
}


.footer a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000;
	background-color: #CCF;
	text-decoration: none;
	border: 1px solid #00A;
	padding: 1px;
}
.footer a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #FFF;
	color: #F00;
	text-decoration: none;
	border: 1px solid #000099;
	padding: 1px;
}
.thrColFixHdr #container #mainContent .maintable a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFF;
	font-weight: bold;
	color: #000;
	border: 1px solid #000;
	text-decoration: none;
}
.thrColFixHdr #container #mainContent .maintable a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFF;
	font-weight: bold;
	color: #000;
	border: 1px solid #000;
	text-decoration: none;
}
.thrColFixHdr #container #mainContent .maintable a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFF;
	font-weight: bold;
	color: #F00;
	border: 1px solid #F00;
	text-decoration: none;
}
.style1 {
	font-size: 40px;
	font-weight: bold;
	font-variant: small-caps;
	font-family: "Courier New", Courier, monospace;
}
.search {
	font-family: "Courier New", Courier, monospace;
	font-size: 17px;
	background-color: #FFF;
	font-weight: bold;
	color: #000099;
	border: 1px solid #000099;
}

.topblack {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 30px;
	font-weight: bold;
	color: #000099;
	font-variant: small-caps;
}
.orange {
	font-family: Verdana, Geneva, sans-serif;
	color: #F36E19;
	font-weight: bold;
}
.orange a:link{
	font-family: Verdana, Geneva, sans-serif;
	color: #F36E19;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFF;
}
.orange a:visited{	font-family: Verdana, Geneva, sans-serif;
	color: #F36E19;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFF; }	
	.orange a:hover{	font-family: Verdana, Geneva, sans-serif;
	color: #F36E19;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFF;}
.pink {
	font-family: Verdana, Geneva, sans-serif;
	color: #E5006F;
	font-weight: bold;
}
.pink a:link {
	font-family: Verdana, Geneva, sans-serif;
	color: #E5006F;
	background-color: #FFF;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.pink a:visited{
	font-family: Verdana, Geneva, sans-serif;
	color: #E5006F;
	background-color: #FFF;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.pink a:hover{
	font-family: Verdana, Geneva, sans-serif;
	color: #E5006F;
	background-color: #FFF;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
