@charset "utf-8";
/* CSS Document */

* {margin:0; padding:0;}

img {border:none;}

body  {
	font: 100% Arial, Helvetica, sans-serif;
	background: #3366cc;
	margin: 0; 
	padding: 0;
	text-align: center;
	color: #333366;
}
.twoColFixRtHdr #container { 
	width: 878px;  
	background: #FFFFFF;
	margin: 0 auto; 
	border: 1px solid #000000;
	text-align: left; 
} 
.twoColFixRtHdr #header { 
	width:878px;
	height:270px;
} 
.twoColFixRtHdr #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 */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 275px; 
	height:1010px;
	background: #ffffff;
	background-image:url(images/sunflower.jpg); background-position: bottom right; background-repeat:no-repeat;
	padding: 15px 10px;
}
.twoColFixRtHdr #mainContent { 
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixRtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#333366; 
} 
.twoColFixRtHdr #footer p {
	margin: 0; 
	padding: 10px 0;
	font-size:11px;
	color:#FFF;
}

#slideshow {width:260px;
			height:600px;
}

#downloads {background-color:#66cc33;
	width:230px;
	height:250px;
	padding:10px;
}

#downloads h2 {color:#FFF; font-size:16px; padding-top:10px; padding-bottom:10px;}
#downloads p {color:#FFF;}

#linksbox {background-color:#66cc33;
	width:230px;
	height:250px;
	padding:10px;
	margin-left:10px;
}

#linksbox h2 {color:#FFF; font-size:16px; padding-top:10px; padding-bottom:10px;}
#linksbox p {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;
}
.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;
}

h1 {font-size:16px; color:#66cc33; padding-top:30px; padding-bottom:10px;}
h2 {font-size:14px; color:#66cc33; padding-top:10px; padding-bottom:10px;}
p {font-size:12px; font-weight:bold; padding-top:10px; padding-bottom:10px;}

a {font-size:12px;}
a:visited {color:#336633;}
a.footer {color:#FF0;}

/*image viewer*/

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: #FFC;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -50;
left: 200px; /*position where enlarged image should offset horizontally */

}

--> 