@charset "utf-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #FFCC66;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666600;
	background-image:url('http://www.rohrmannspace.net/travel/css/bg-main.gif');
	background-repeat: repeat-y;
}
.twoColFixLt #container { 
	width: 1200px;  /* using 20px less than a full 980px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #CCFFCC;
	margin: 0px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */

}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* 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: #CCFFCC; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 8px 10px 15px 20px;
	color:#009900;
}
.twoColFixLt #sidebar1 a:link {
	color:#009900;
}
.twoColFixLt #sidebar1 a:hover {
	color:#00FF00;
}
.twoColFixLt #sidebar1 a:visited {
	color:#006600;
}
.twoColFixLt #mainContent { 
	margin: 0 0 0 200px; /* the left margin on this div element creates the column down the left 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. */
	background-color:#FFCC66;
	text-align:center;
		padding: 8px 10px 15px 10px;
		border-left:4px solid #777777;
		border-right:4px solid #777777;

} 
.twoColFixLt #mainContentSub { 
	margin: 0 0 0 230px; /* the left margin on this div element creates the column down the left 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. */
	background-color:#CCFFCC;
	text-align:center;
	padding: 8px 10px 15px 20px;
		border-left:2px solid #777777;

}
.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;
}

.clearfloat br{
	margin:0;
	height:0;
}

.twoColFixLt #container .imageleft{
	padding-right:30px;
	vertical-align:middle;
}
.twoColFixLt #container .imagecenter{
	padding-right:30px;
	vertical-align:middle;
}
.twoColFixLt #container .imageright{
	vertical-align:middle;
}
