@font-face
	{
	font-family: Contra;
	src: url('contra-webfont.ttf');
	}

html
	{
	font-family: Contra, Times;
	background-color: #123;
	margin: 0px;
	height: 100%;
	}

body
	{
	margin: 0px;
	height: 100%;
	}

.container
	{
	background: #476C96;
	width: 850px;
	margin: auto;
	padding: 0;
	border: 3px solid #EEC;
	}

.header
	{
	width: 100%;
	height: 235px;
	background: #182025;
	padding-top: 10px;
	}

.footer
	{
	display: block;
	margin: 0px;
	padding: 1em 0;
	color: white;

	width: 100%;
	height: 100px;
	background: #182025;
	padding-top: 10px;
	}

/* Links */
a
	{
	color: #6290B9;
	text-decoration: underline;
	}

a:hover
	{
	text-decoration: none;
	}

h1
	{
	text-align: center;
	font-size: 1.5em;
	}

h1 a
	{
	color: white;
	text-decoration: none;
	}

/* Various text styles */
.small
	{
	font-family: inherit;
	font-size: 0.8em;
	}

.normal 
	{
	font-family: inherit;
	font-size: 1em;
	}

.medium
	{
	font-size: 1.5em;
	}

.big
	{
	font-family: inherit;
	font-size: 1.5em;
	}

.verybig
	{
	font-family: inherit;
	font-size: 2em;
	}


.hidden
	{
	display: none;
	}

/* Query debug */
.debugQuery
	{
	font-size: 0.8em;
	background: white;
	color: gray;
	}

.qdebug
	{
	width:80%;
	}

.qdebug th
	{
	background:gray;
	color:white;
	font-weight:bold;
	font-size:0.9em;
	}

.qdebug td
	{
	background:white;
	color:#333333;
	font-size:0.9em;
	}

/* Alignment */
.left
	{
	text-align: left;
	}

.center
	{
	text-align: center;
	}

.right
	{
	text-align: right;
	}

.centerInPage
	{
	margin: auto;
	}

/* No border (useful for linked images) */
.noborder
	{
	border: none;
	}

/* Error messages */
.error
	{
	display: block;
	font-size: 1.1em;
	color: white;
	border: 1px solid #1F0000;
	text-align:center;
	vertical-align:middle;
	width:80%;
	margin: 10px auto;
	padding:10px;

	background: #7C0000; /* for non-css3 browsers */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#AF3333', endColorstr='#6C0000'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#AF3333), to(#6C0000)); /* for webkit browsers */
	background: -moz-linear-gradient(top, #AF3333, #6C0000); /* for firefox 3.6+ */

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	}

.message
	{
	display: block;
	width: 100%;

	background: gray;
	color: black;
	padding: 3px;
	}

/* Content wrapper */
#wrapper
	{
	clear: both;
	}

/* Main menu */

.mainMenuList
	{
	list-style-type: none;
	clear: both;
	height: 100%;
	min-height: 100px;
	width: 100%;
	padding: 0px;
	margin: 0px auto;
	}

.mainMenuList li
	{
	position: relative;
	float: left;
	height: 100%;
	width: 25%;
	}

.mainMenuImg
	{
	border: none;
	}

.portfolioTitle
	{
	position: absolute;
	top: 0px;
	left: 0.5em;

	font-size: 3em;
	color: white;
	}

.menuOverlay
	{
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 0px;
	height: 0px;
	background-color: rgba(255, 255, 255, 0.1);
	cursor: pointer !important;
	cursor: hand;
	}

.spacer
	{
	clear: both;
	}

/* Links menu */
.links
	{
	text-align: center;
	color: white;
	font-size: 1.05em;
	}

.currentPortfolioLink
	{
	font-weight: bold;
	margin: 0em 1em;
	}

.portfolioLink a
	{
	color: #78A0C3;
	margin: 0em 1em;
	text-decoration: none;
	}

/* Thumbnails */
.thumbsContainer
	{
	display: block;
	position: relative;
	height: 65px;
	width: 495px;
	margin: 1em auto;
	padding: 0px;
	overflow: hidden;
	}

.thumbsArrow
	{
	height: 62px;
	padding: 0px;
	position: absolute;

	cursor: pointer !important;
	cursor: hand;
	}

.thumbnail
	{
	display: block;
	position: absolute;

	width: 80px;
	height: 60px;
	margin-right: 1%;
	border: 1px solid gray;
	text-align: center;
	}

.thumbnail:hover
	{
	border: 1px solid orange;
	}

.currThumbnail
	{
	display: block;
	position: absolute;

	width: 80px;
	height: 60px;
	margin-right: 1%;
	border: 3px solid orange;
	text-align: center;
	}

.thumbnailImg
	{
	cursor: pointer !important;
	cursor: hand;
	}

/* Current image */

#imgContainer
	{
	position: relative;
	margin-top: 10px;
	}

#currentImage
	{
	position: relative;
	width: 700px;
	margin: auto;
	}

#currentImage img
	{
	position: absolute;
	top: 0;
	left: 0;
	}

#currentImageDesc
	{
	width: 70%;

	color: #E8EFF5;
	text-align: center;
	line-height: 2em;

	margin: 1em auto;
	padding: 1em;
	}

#currentImageComments
	{
	width: 70%;
	color: #E8EFF5;
	}

#currentImageNumComments
	{
	color: #E8EFF5;
	}

#whitewall
	{
	margin-top: 1em;
	}

#whitewall a
	{
	color: white;
	}

#newCommentWrapper
	{
	width: 70%;
	margin: auto;
	text-align: center;
	}

#newCommentWrapper textarea
	{
	border: 1px solid gray;
	color: #444444;
	font-size: 0.95em;
	}

.comment1
	{
	display:block;
	top:70px;
	width: 650px;
	background-color:#1050bb;
	margin: auto;
	padding: 1em;
	margin-bottom: 0.5em;
	}

.comment2
	{
	display:block;
	top:70px;
	width: 650px;
	background-color:#2010bb;
	margin: auto;
	padding: 1em;
	margin-bottom: 0.5em;
	}

.commentDate
	{
	float: right;
	font-size: 3em;
	color: rgba(250, 250, 250, .40);
	position: relative;
	top: -0.4em;
	right: -0.1em;
	}

.imgPopup
	{
	display: none;
	position: absolute;
	top: 0px;
	padding: 0px 5px;

	font-size: 2em;
	text-align: center;
	color: white;
	background: rgba(30, 30, 30, 0.5);
	
	z-index: 100;
	width: 1em;
	height: 100%;

	cursor: pointer !important;
	cursor: hand;	
	}

#contactForm
	{
	color: white;
	}

#recaptcha_area
	{
	margin: 0 auto;
	}