@charset "utf-8";
/* CSS Document */

body {
	background-color:#000000;
	background-image:url(images/bg.gif);
	background-repeat: no-repeat;
	color:#0066cc;
}

#container {
	background-color: transparent;
	font-family: Arial, Helvetica, sans-serif;
	width: 1024px;
	height:100%;
	
}

#menu {
	background-color: transparent;
	width:150px;
	margin-top:275px;
	margin-left:10px;
	text-align:right;
}

#content {
	background-color: transparent;
	margin-left:200px;
	width: 700px;
	height: 600px;
	margin-top:-120px;
}

#footer {
	background-color: transparent;
	text-align:center;
	margin:0 0 0 0;
	font-size: 9px;
	color: #666666;
}

#subfooter {
 	background-color: transparent;
	text-align:right;
	font-size: xx-small;
	color: #666666;
}

.contact {text-align:center;}

/* Image Gallery*/

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.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 on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}
/*END IMAGE GALLERY*/

