﻿/* CSS layout */
#masthead {
	background-color: #99FFCC;
}
#top_nav {
	font-family: Arial, Helvetica, sans-serif;
	font-size: medium;
	background-color: #CCFF99;
}
#container {
	position: relative;
	width: 100%;
	background-color: #CCFF99;
}
#left_col {
	width: 200px;
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: #CCFF99;
}
#page_content {
	padding: 1px;
	margin-left: 200px;
}
#footer {
	background-color: #CCFF99;
}
.hmenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/*Top level list items*/
.hmenu ul li {
	position: relative;
	display: inline;
	float: left;
}
/*Top level menu link items style*/
.hmenu ul li a {
	display: block; /*Width of top level menu link items*/
	border: 1px solid #202020;
	border-left-width: 0;
	text-decoration: none;
	background: url("../images/mbg.gif") center center repeat-x;
	color: black;
	font: bold 13px Tahoma;
	padding-top: 2px;
	padding-right: 8px;
	padding-bottom: 2px;
	padding-left: 8px;
	width: 80px;
}
/*Sub level menu*/
.hmenu ul li ul {
	left: 0;
	top: 0;
	border-top: 1px solid #202020;
	position: absolute;
	display: block;
	visibility: hidden;
	z-index: 100;
}
/*Sub level menu list items*/
.hmenu ul li ul li {
	display: inline;
	float: none;
}
/* Sub level menu links style */
.hmenu ul li ul li a {
	width: 60px;
	font-weight: normal;
	padding: 2px 5px;
	background: #e3f1bd;
	border-width: 0 1px 1px 1px;
}
.hmenu ul li a:hover {
	background: url("../images/mbgover.gif") center center repeat-x;
}
.hmenu ul li ul li a:hover {
	background: #cde686;
}
.hmenu .arrowdiv {
	position: absolute;
	right: 0;
	background: transparent url("../images/marrow.gif") no-repeat center left;
}
* html .hmenu ul li {
	float: left;
	height: 1%;
}
* html .hmenu ul li a {
	height: 1%;
}


#viewer,
#imagesBox,
#image-title,
#image-comment {
    width: 400px;
    margin: 0 auto 0 auto;
}
#viewer,
#imagesBox {
    border: solid 1px purple;
    overflow: auto;
}
#viewer {
    height: 400px;
    text-align: center;
    vertical-align: middle;
}
#viewer img {
    max-height: 400px;
    max-width: 400px;
    cursor: pointer;
    display: block;
    margin: 0 auto 0 auto;
}
#imagesBox {
    height: 100px;
    margin-bottom: 5px;
}
#imagesBox img {
    height: 30px;
    width: 30px;
    float: left;
    margin: 5px 5px;
    cursor: pointer;
}
#image-title{
    font-weight: bold;
    margin-top: 5px;
}
#image-comment {
    padding: 4px 0 4px 0;
}

