/*******************************************************
TITLE: Fixed Box Layout  V1.0
DATE: 20060809
AUTHOR: The CSS Tinderbox - http://www.csstinderbox.com
MODIFIED: Mats Hagwall - http://hagwall.com
LIGHTBOX JS v2.0: Lokesh Dahkar - http://www.huddletogether.com/projects/lightbox2/
*******************************************************/

body {
margin:3em;
padding:0;
height:100%;
background-color:#ffffff;
color:#4A4A4A;  
text-align:justify;
font-family:Arial, Helvetica, sans-serif; color:#4A4A4A; font-size:14px;
}

a:link {text-decoration:none; color:#0033CC;}
a:visited {text-decoration:none;color:#0033CC;}
a:hover {text-decoration:underline; color:#0033CC;}

img {border: none;}

ul{margin: .5em 1em 1em 1em}

blockquote {
margin:1em;
padding:.5em;
background-color:#eeeeee;
border:1px solid #cccccc;
}

blockquote p {
margin:.2em;
}

#centerColumn { 	
margin:0 auto;
padding:1em;
width:550px;
text-align:justify;
vertical-align: middle;	
background-color:#ffffff;
border:1px solid #999999;
}

#centerColumn h2 {
margin:0;
padding:1.5em 0 0 0;
font-size:18px; color:#4A4A4A;
}

#centerColumn h3 {
margin:0;
padding:1.1em 0 0 0;
font-size:16px; color:#4A4A4A;
}

#centerColumn h4 {
margin:0;
padding:.8em 0 0 0;
font-size:14px; color:#4A4A4A;
}

#header {
margin:-1em -1em 0 -1em;
padding:0 0 0 0;
height:5em;
background-color:#ffffff;
}

#header a:link { text-decoration:none; color:#4A4A4A;}
#header a:visited {text-decoration:none; color:#4A4A4A;}
#header a:hover {color:#666666;}

#header h1 {
margin:0 0 -.6em 0;
padding:.5em 0 0 1em;
font-size:1.5em;
letter-spacing:.06em;
}

#header h2 {
margin:0 0 0 0;
padding:1em 0 0 1.75em;
font-size:.9em;
font-weight:300;
letter-spacing:.1em;
}

#nav {
border-top:1px solid #999999;
margin:-0.7em 0 2em 0;
padding:.5em 0 0 0;
text-align:right;
font-size:12px;
letter-spacing:.4px;
}

#nav a:link { text-decoration:none; color: #4A4A4A;}
#nav a:visited {text-decoration:none; color: #4A4A4A;}
#nav a:hover { text-decoration:underline; color: #666666;}

#fauxRightColumn {
position:relative;
float:right;
margin:.5em 0 0 .5em;
padding:0 .7em .25em .7em;
width:11em;
font-size:.9em;
background-color:#ffffff;
border:1px solid #cccccc;
}

#fauxRightColumn h2 {
margin:0 0 -.1em 0;
font-size:1.0em;color:#4A4A4A;
padding:.75em 0 0 0;
}

#footer {
position:relative;
bottom:0;
margin:5em 0 0 0;
padding:0;
height:4em;
line-height:4em;
text-align:center;
font-size:.75em;
background-color:#ffffff;
border-top:1px solid #999999;
}

#footer a:link { text-decoration:none; color: #4A4A4A;}
#footer a:visited {text-decoration:none; color: #4A4A4A;}
#footer a:hover { text-decoration:underline; color: #666666;}

#RightPictureholder {
	position:relative;
	float:right;
	margin:0.7em 0 0.7em 0.7em;
	width:auto;
	height: auto;
	font-size:.9em;
	border:1px solid #cccccc;
}

#LeftPictureholder {
	position:relative;
	float:left;
	margin:0.7em 0.7em 0.7em 0;
	width:auto;
	height: auto;
	font-size:.9em;
	border:1px solid #cccccc;
}

/* LIGHTBOX JS v2.0 by Lokesh Dahkar, wich is a cool overlay thing with images*/

#lightbox{
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
	}

#lightbox a img{ border: none; }

#outerImageContainer{
	position: relative;
	background-color: #fff;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	}

#imageContainer{
	padding: 10px;
	}

#loading{
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
	}
#hoverNav{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	}
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{
	width: 49%;
	height: 100%;
	background: transparent url(images/blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
	}
#prevLink { left: 0; float: left;}
#nextLink { right: 0; float: right;}
#prevLink:hover, #prevLink:visited:hover { background: url(images/prevlabel.gif) left 15% no-repeat; }
#nextLink:hover, #nextLink:visited:hover { background: url(images/nextlabel.gif) right 15% no-repeat; }

#imageDataContainer{
	font: 10px Verdana, Helvetica, sans-serif;
	background-color: #fff;
	margin: 0 auto;
	line-height: 1.4em;
	}

#imageData{
	padding:0 10px;
	}
#imageData #imageDetails{ width: 70%; float: left; text-align: left; }	
#imageData #caption{ font-weight: bold;	}
#imageData #numberDisplay{ display: block; clear: left; padding-bottom: 1.0em;	}			
#imageData #bottomNavClose{ width: 66px; float: right;  padding-bottom: 0.7em;	}	
		
#overlay{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
	background-color: #000;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
	}
	
.clearfix:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
	}

* html>body .clearfix {
	display: inline-block; 
	width: 100%;
	}

* html .clearfix {
	/* Hides from IE-mac \*/
	height: 1%;
	/* End hide from IE-mac */
	}	
	/*This ends the cool overlay thing with images*/