/* CSS Document */

/* zero out all tags */
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	height:100%;		/* bugfix for center problem in firefox */
}

/* specific settings for the body tag. These are sitewide defaults */
body {
	text-align:center;  								/* this is a hack for IE5 to center the wrapper */
	min-width:780px;									/* this is a hack for mozilla */
	background: #282828 url(header_bg01.jpg) repeat-x;
	font-family: Arial, Helvetica, sans-serif;
	font-size:100.01%;
	color:#ffffff;
	overflow: -moz-scrollbars-vertical;
	min-height: 101%;
}

/* this is the wrapper that will contain our actual site */
#container{
	margin: auto;
	text-align:left;
	color:#FFFFFF;
}



/* misc classes */
.clearboth {
	clear: both;
}
.floatright {
	float: right;
	margin: 0 0 20px 20px;
}
.floatleft {
	float: left;
	margin: 0 20px 20px 0;
}
.floatleftmiddle {
	float: left;
	margin: 20px 20px 20px 0;
}

#header {
	height: 140px;
}

#logo {
	float:left;
}

/* navbar settings */
#navbarcontainer {
	float:right;
	padding: 0 10px 0 0;
}

#navbar {
	color:#b7b7b7;

}

#navbar ul {
	padding: 10px 0 5px 0;
	margin: 0;
	text-align:right;
}
#navbar ul li{
	display: inline;
	padding: 0;
	margin: 0;
}
#navbar ul li a{
	font-size: 85%;
	color: #b7b7b7;
	text-decoration: none;
	padding: 0 5px 0 5px;
	text-align: right;
	width: 9em;
} 

#navbar ul li a:hover, #nav ul li a:focus{
	color:#b7b7b7;
}


/* index main images */
#indeximages {

	padding:50px 0 0 0;
}
#indeximages table {
	padding: 50px 50px 0px 50px;
	text-align:center;
}
#indeximages td img.giThumbnail {
	border: 5px solid;
	border-color: #ffffff;
}

#content {
	margin-top:60px;
	text-align: center;
}

#site_info {
	margin: 40px 0 0 0;
	font-size: 0.72em;
	color: #b7b7b7;
	text-align: center;
}

#site_info a{
	color: #b7b7b7;
	text-decoration: none;
} 

#site_info a:hover, #site_info a:focus{
	color:#b7b7b7;
	text-decoration: underline;
}


