@charset "UTF-8";
body  {
	width: 900px;
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size: 9pt;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	background-color: #FFFFFF;
}

.twoColFixLtHdr #container {
	width: 1045px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 400px;
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	
} 

.twoColFixLtHdr #header {
	padding: 20px 0px 0px 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. */
	height: 35px;
} 

.twoColFixLtHdr #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 */
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	height: 500px;
	width: 125px; /* 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 */
	padding: 0px 0px 0px 20px;
	font-size: 9pt;
	color: #000000;
}

.twoColFixLtHdr #mainContent {
	margin: 0 0 0 0px; /* 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. */
	height: 600px;
	padding: 0px 0px 0px 20px;
} 

.twoColFixLtHdr #footer {
	padding: 5px 0px 0px 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. */
	height: 10px;
	width: 100px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 7pt;
	font-style: normal;
	font-weight: lighter;
	font-variant: normal;

} 

a:link { text-decoration: none;
	color: #000000;
}

	a:visited {
	color: #000000;
	text-decoration: none;
}
	a:hover {
	color: #FF0000;
	text-decoration: none;

}


.photo-list {
 margin: 0;
 padding: 0;
 list-style: none;
 overflow: auto;
 white-space: nowrap;
}
.photo-list li {
 display: inline;
}
.photo-list img {
 height: 600px;	THIS ADJUSTS SIZE OF IMAGE BOX;
 border: 0;
}
