/*------------------------------ Common styles for all pages -----------------------------------------*/
@charset "utf-8";
body {
	background: #FFFFFF;
	margin: 0; /* 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;
	font-family: Arial, Helvetica, sans-serif;
}

#header {
	padding: 10px 10px 0 10px;  /* 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. */
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-image: url(../Photos/banner.jpg);
}

#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 */
	font-family: Arial, Helvetica, sans-serif;
}

#header img#bannerRight {
	margin-left:30px; /* this creates space between the two banner images*/
}

.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;
	background: #EBEBEB;
}

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

/*------------------------------ Styles for the 3-column front page -----------------------------------------*/
.thrColFixHdr #container {
	width: 780px;  /* 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: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px;
	background-color: #FFFFFF;
}

.thrColFixHdr #sidebar2 {
	float: right; /* 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: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px; /* padding keeps the content of the div away from the edges */
}

.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 40px;
	margin-bottom: 0;
	margin-left: 190px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 

/*------------------------------ Styles for the 1-column standard pages -----------------------------------------*/
.oneColFixCtrHdr #container {
	width: 780px;  /* 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: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr2 #container {
	width: 780px;  /* 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: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #navigation {
	padding: 5px;
	border-bottom: 1px solid #000; /*create a solid line across the bottom of the navigation container spanning the entire column*/
	margin-bottom: 25px;
	}
.rowSelect {
	font-weight: bold;
	background-color: #FFCC33;
}

	
.oneColFixCtrHdr #navigation ul {
	margin-left: 0;
	padding-left: 0;
	display: inline; /* removes the vertical space normally accompanying a list and places it into the flow of the rest of the document */
	} 
.sortHead {
	text-align: center;
	cursor: pointer;
}

.rowHover {
	background-color: #FFFF99;
}


.oneColFixCtrHdr #navigation ul li {
	margin-left: 0;
	margin-bottom: 0;
	padding: 2px 15px 5px;
	border: 1px solid #000; /*create a solid line around each individual list item*/
	list-style: none; /*eliminate the bullet, box, circle, etc. that normally preceeds a list item */
	display: inline; /* turn the normal vertically positioned list items into horizontal items in line with the rest of the document text */
	background-color: #DDDDDD;
	}
		
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}

.oneColFixCtrHdr2 #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}

.error {
	font-weight: bold;
	color: #990000;
}
.odd {
	background-color: #999999;
}
.even {
	background-color: #CCCCCC;
}
.photolink {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.largetextbox {
	width: 80%;
}
.whitetext {
	color: #FFF;
}
