body {
background-image: url('images/bg.jpg');
margin: 0px;
font-family: arial, verdana;
font-size: 11px;
color: #dedede;
}

a {
color: limegreen;
text-decoration: none;
}

a:hover {
color: white;
}

p {
text-indent: 25px;
}

img {
padding: 10px;
}

input, textarea {
background-color: black;
border: 1px solid #2a551f;
padding: 5px;
color: white;
margin: 2px;
}

h1 {
color: limegreen;
font-weight: normal;
text-transform: uppercase;
text-indent: 25px;
letter-spacing: 5px;
font-size: 13px;
border: solid white;
border-width: 0px 0px 1px 0px;
padding: 3px;
}

h2 {
font-weight: normal;
font-size: 12px;
text-transform: uppercase;
text-indent: 10px;
}

#container {
background-color: transparent;
width: 780px;
}

#image01 {
background-image: url('images/image01.jpg');
background-repeat: no-repeat;
width: 780px;
height: 100px;
}

#image02 {
background-image: url('images/image02.jpg');
background-repeat: no-repeat;
width: 780px;
height: 100px;
}

#image03 {
background-image: url('images/image03.jpg');
background-repeat: no-repeat;
width: 780px;
height: 100px;
}

#image04 {
background-image: url('images/image04.jpg');
background-repeat: no-repeat;
width: 780px;
height: 100px;
}

#navigate {
position: absolute;
top: 350px;
left: 35px;
width: 165px;
padding: 5px;
}

#navigate a {
display: block;
color: limegreen;
text-decoration: none;
background-color: #070707;
margin-top: 2px;
margin-bottom: 1px;
text-indent: 10px;
}

#navigate a:hover {
color: white;
background-color: #0b1f06;
}

#navigate h3 {
color: white;
font-weight: normal;
text-transform: uppercase;
letter-spacing: 5px;
font-size: 10px;
border: 1px solid #2a551f;
background-color: black;
padding: 3px;
}

#content {
width: 550px;
float: right;
text-align: justify;
margin-top: -150px;
margin-left: 230px;
}

#copyright {
font-size: 9px;
color: gray;
text-align: center;
padding-top: 10px;
padding-bottom: 10px;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

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

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: black;
padding: 5px;
left: -1000px;
visibility: hidden;
color: white;
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: 0;
left: 235px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

