/* Main template style */

body {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	background-color: #FFFFFF;
}
.twoColFixLtHdr #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 #669;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image:url(../images/bg.gif);
	background-repeat:repeat-y;
} 
.twoColFixLtHdr #header { 
	background: #666699; 
	padding: 0.25em;
	color: #FFFFFF;
	font-size: 70%;
	text-align:center;
} 
.twoColFixLtHdr #header a {
	text-decoration:none;
	color: #FFFFFF;
}
.twoColFixLtHdr #header a:hover {
	text-decoration:underline;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* 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: #339; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
}
.twoColFixLtHdr #mainContent { 
	margin: 0 0 0 215px; /* 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 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.twoColFixLtHdr #mainContent li {
	list-style-type:none;
	padding-bottom:1.5em;
}

.twoColFixLtHdr #mainContent ul.bullet li {
	list-style-type:circle;
	padding-bottom:1.5em;
}

.twoColFixLtHdr #mainContent ul.twocol {
	width:500px;
	float:left;
}

.twoColFixLtHdr #mainContent ul.twocol li {
	list-style-type:circle;
	padding-bottom:1.5em;
	width:165px;
	float:left;
}

.twoColFixLtHdr #mainContent ol.list li {
	list-style-type:decimal;
	padding-bottom:1.5em;
}

.twoColFixLtHdr #mainContent h1 {
	font-size:120%;
	font-weight: bold;
	padding-top: 0.75em;
	padding-bottom:1em;
	color: #666699;
}

.twoColFixLtHdr #mainContent h2 {
	font-size:100%;
	font-weight: bold;
	padding-top: 0.75em;
	padding-bottom:1em;
	color: #000;
	text-align:center;
}

blockquote {
	border-color:#000000;
	border-style:solid;
	border-width:1px;
	background-color:#669;
	padding:1em;
	font-style:italic;
	color:#FFFFFF;
}

.twoColFixLtHdr #mainContent p.indent {
	text-indent:50px;
	padding-left:50px;
	padding-right:25px;
}

a, a:link, a:visited {
	font-weight: bold;
	color: #000;
	text-decoration: none;
}

a:hover {
	color: #000;
	text-decoration: underline;
}

.twoColFixLtHdr #mainContent a {
	text-decoration:none;
	color:#000000;
}

.twoColFixLtHdr #mainContent a:hover {
	text-decoration:underline;
}
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#669; 
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color:#fff;
	font-size:80%;
}
.twoColFixLtHdr #footer a {
	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;
}
.clear {
	clear: both;
}
.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: 1px;
}

.twoColFixLtHdr #mainContent img {
	padding:2px;
	border:1px solid #669;
}

.twoColFixLtHdr #mainContent hr {
	color:#669;
}
/*----------------------------------*/

/* Image Gallery */

div.img
{
	margin: 2px;
	border: 0px solid #669;
	height: auto;
	width: auto;
	float: left;
	text-align: center;
}

div.img img {
	display: inline;
	margin: 3px;
	border: 1px solid #fff;
}

div.img a:hover img {
	border: 1px solid #669;
}

div.desc
{
	text-align: center;
	font-weight: normal;
	width: 120px;
	margin: 2px;
}

/*----------------------------------*/

/* Navigation style (Left Menu) */

#navcontainer {
	width: 191px;
}

#navcontainer ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-weight:bold;
}

#navcontainer a {
	display: block;
	padding: 6px 0px 6px 9px;
	width: 100%;
	background-color: #339;
	border-bottom: 1px solid #fff;
}

#navcontainer a:link, #navlist a:visited {
	color: #fff;
	text-decoration: none;
}

#navcontainer a:hover {
	background-color: #669;
	color: #fff;
}