/*
/* html */
html {
    width: 100%;
    margin: 0px;
    line-height: 150%;
    color:#663300;
    background-color: #CC9900;
    font-family:"Times New Roman";
    font-size: 17px; 
}

/* Header */
div.header {
    padding: 0.5em;
    color: #CC9900;
    background-color: #663300;
    clear: left;

    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100%;

}

/* Navigation bar */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;

    position: fixed;
    z-index: 102;
    top: 80px;
    left: 0px;
    width: 100%;
}

li {
    float: left;
}

li a {
    display: block;
    color: white;
    text-align: center;
    padding: 5px 15px;
    text-decoration: none;
}

li a:hover:not(.active) {
    background-color: gray;
}

.active {
    background-color: #663300;
}

/* content */
div.content {
    margin-top: 100px;
    overflow: hidden;
    font-size: 20px;
}

/* Footer */
div.footer {
    padding: 0.5em;
    color: #CC9966;
    background-color: #663300;
    clear: left;

    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;

}

/* Container */
div.container
{
}

/* -----------------------------------------------------------------------*/

#thumbwrap {
	margin:200px auto;
	width:252px; height:252px;
}
.thumb {
	/*float:left; /* must be floated for same cross browser position of larger image */
	position:relative;
	margin:3px;
}
.thumb img { 
	border:1px solid #000;
	vertical-align:bottom;
}
.thumb:hover {
	border:0; /* IE6 needs this to show large image */
	z-index:200;
}
.thumb span { 
	position:absolute;
	visibility:hidden;
}
.thumb:hover span { 
	visibility:visible;
	top:-500%; left:0px; 
}
		

