
#tree {

width:256px;
float: left;

}

#wrapper {
  width: 800px;
}

#content {
width: 500px;
float: left;


}

p,li,ul,td,dd,dt,blockquote,h1,h2,h3 {
font-family:Arial,sans-serif;
font-size:14px;
color: #125605;
}


a {
color: #0000CC;

   
}

a:hover {
  color: #666666;
}


h2 {
margin-left: 15px;
color: #003063;
font-size: 18px;
font-weight: bold;
}

h3 {
margin-left: 17px;
color: #003063;
font-size: 15px;
font-weight: bold;
}

p {
margin-left: 20px;
margin-right: 20px;
}

.red {
color: red;
}

.white{
color: white;
}

.normal {
font-size:12px;
}

.subtitle {
font-size: 15px;
}

.nomargin
{
margin-left: 0px;
margin-right: 0px;
}

td.white
{
background: black;
font-weight: bold;
text-align: center;
}

td.white a {
color: white;
text-decoration: none;
}


/* Home page Images Thumb creation */

.gallerycontainer{
position: relative;
width: 100%;

/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
border: 1px solid white;
margin: 0 2px 2px 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: 0; /*position where enlarged image should offset horizontally */
left: 600px;
z-index: 50;
}


