/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
/*IMAGE Gallery CSS/ */
  /* 5th Headlines */
/*Credits: Steven Butterworth */
/*URL: http://homepage.mac.com/stevenbutterworth/Sites/cars/Morges06/index.html */
 
H1 {
    text-align: center;
    font-size: 1.5em;
    text-decoration: underline;
    color: #0033FF;
}

H5	{ text-align: left;
	color: red;
	background-color: #ffffff;
}

.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 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;
left: 310px; /*position where enlarged image should offset horizontally */
z-index: 50;
}

/* give URL actions different colours */
a:link {
	font-weight: bold;
	text-decoration: none;
	color: #B7A5DF;
	background-color: #ffffff;
	}
a:visited {
	font-weight: bold;
	text-decoration: none;
	color: purple;
	background-color: #ffffff;
	}
a:hover, a:active {
	text-decoration: underline;
	color: blue;
	background-color: #ffffff;
	}

/* horizontal menus */

#navsite h5 {
display: none;
}
#navsite ul {
padding: 3px 0;
margin-left: 0;
border-bottom: 1px solid #778;
font: bold 12px Verdana, Helvetica, Arial, sans-serif;
}
#navsite ul li {
list-style: none;
margin: 0;
display: inline;
}
#navsite ul li a {
padding: 3px 0.5em;
margin-left: 3px;
border: 1px solid #669;
border-bottom: none;
background: #ccf;
text-decoration: none;
}
#navsite ul li a:link {
color: #339;
}
#navsite ul li a:visited {
color: #666;
}
#navsite ul li a:link:hover, #navsite ul li a:visited:hover {
color: #000;
background:#aae;
border-color: #336;
}
#navsite ul li a#current {
background: white;
border-bottom: 1px solid white;
}



