/* CSS admin */

html, body { 
	margin-bottom: 1px;
}


body{
	background: url(../images/background.jpg) repeat-x top left;
}

#container{
	position:inherit;
	width:800px;
	height: 650px;
	padding:0;
	margin: 1px auto;
	background: url(../images/backgroundcontainer.jpg) no-repeat;
}

#header{
	width:800px;
	height:150px;
	
	

}

#menu{
	float:left;
	width: 280px;
	height: 490px;
	
}

#menu a{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 25px;
	font-weight:bold;
	color: #000000;
	text-decoration:none;
}

#menu a:hover{
	text-decoration:underline;
}


#content{
	float:left;
	width:480px;
	height:490px;
	margin-right:10px;
	margin-left: 30px;
	overflow:auto;
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
	scrollbar-face-color: #CCCCCC;
	scrollbar-shadow-color: #CCCCCC;
	scrollbar-highlight-color: #CCCCCC;
	scrollbar-3dlight-color:#CCCCCC;
	scrollbar-darkshadow-color: #CCCCCC;
	scrollbar-track-color: #CCCCCC;
	scrollbar-arrow-color: #CCCCCC;
}

.h1{
	font-size:18px;
	font-weight:bold;
}

#footer{
float:left;
	width:800px;
	height:9px;
	font-size:8px;
	color:#666666;

}

/*pop css */

.thumbnail{
	position: relative;
	height:300px;
	z-index: 0;
}

.thumbnail:hover{
	background-color: transparent;
	z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	background-color: lightgrey;
	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: -200px;
left: -200px; /*position where enlarged image should offset horizontally */

}

