﻿BODY {
	FONT-SIZE: 100%;
	PADDING-RIGHT: 0px;
	PADDING-LEFT: 0px;
	PADDING-BOTTOM: 0px;
	LINE-HEIGHT: normal;
	PADDING-TOP: 0px;
	BACKGROUND-REPEAT: repeat;
	BACKGROUND-COLOR: #000000;
	FONT-FAMILY: "Arial",Arial,sans-serif;
	FONT-VARIANT: normal;
}

H1 {FONT-SIZE: 150%; MARGIN: 0px 10px; COLOR: #F1F1D9}

H2 {FONT-SIZE: 125%;
	MARGIN: 0px 10px;
	COLOR:  #F1F1D9;
	PADDING-TOP: 0.3em;}
	
H3 {FONT-SIZE: 100%; 
	MARGIN: 0px 10px; 
	COLOR:  #F1F1D9;
	PADDING-TOP: 1;
	PADDING-BOTTOM: 2;}

H4 {FONT-SIZE: 125%;
	MARGIN: 0px;
	COLOR:  #00000;
	PADDING-TOP: 0.3em;
	text-decoration: underline;}
H5 {FONT-SIZE: 100%;
	MARGIN: 0px;
	COLOR:  #00000;
	PADDING-BOTTOM: 1em;}
	
H6 {FONT-SIZE: 125%;
	MARGIN: 0px;
	COLOR:  #17A717;
	PADDING-BOTTOM: 1em;}

H7 {FONT-SIZE: 100%;
	MARGIN: 0px;
	COLOR:  #17A717;
	PADDING-BOTTOM: 1em;}


P {MARGIN: 0px;
	COLOR: #F1F1D9;
	PADDING-TOP: 1;
	PADDING-BOTTOM: 3;}
P1 {MARGIN: 0px;
	COLOR: #00000;
	PADDING-TOP: 1em;
	PADDING-BOTTOM: 1em;}
P3 {MARGIN: 0px;
	COLOR: #17A717;
	PADDING-TOP: 1;
	PADDING-BOTTOM: 3;}


A:link {
	border-width: 0;
	COLOR: #17A717;
	TEXT-DECORATION: underline;
	}
A:visited {COLOR: #17A717; TEXT-DECORATION: underline}
A:hover {COLOR: #00FF00; TEXT-DECORATION: underline}
A:active {COLOR: #00FF00; TEXT-DECORATION: underline}

iframe {frameboarder: 0}


/*IMAGE GALLERY*/

.gallerycontainer{
position: relative;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 0 5px 5px 0;
}

.thumbnail:hover{
background-color: transparent;
}

.thumbnail:hover img{
border: 1px solid blue;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
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*/
visibility: visible;
/* top: 0px;  <-- use to set top positions if desired */
top:-100px;
left: 170px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

