@charset "utf-8";
* {margin: 0; padding: 0;}
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif; /* 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;
	margin-top: 35px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #192542;
}
.twoColFixLt #container {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #000000;
	background-repeat: repeat;
	background-image: url(images/bkgrd.jpg);
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 250px;
	padding: 0px;
	background-color: #697786;
	margin: 0px;
	background-image: url(images/sidebar-left.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
.twoColFixLt #mainContent {
	margin: 0 0 0 250px; /* 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. */
	padding: 0 20px 20px;
	background-image: url(images/Girl.jpg);
	background-repeat: no-repeat;
	background-position: right top;
} 
.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;
}
.main2 {
	background-color: #CCCCCC;
	padding: 5px;
	float: left;
	width: 550px;
}
.photoright {
	padding: 5px;
	float: right;
}
.photoleft {
	padding: 5px;
	float: left;
}
