/*
author: jens buss // jensbuss.com
date: febuary 2010

client: Nina Friesleben
*/

/* global #################### */

* {
	margin: 0;
	padding: 0;
}

#mainFrame{
	width: 100%;
}

.clear {
	clear: both;
}

body {
	margin: 30px;
}

/* head #################### */

#topAnchor {
	position: absolute;
	top: -30px;
}

#head {
	width: 100%;
	display: block;
	position: fixed;
	top: 0;
	padding: 30px 0 0 0;
	height: 170px;
	z-index: 9999;
	background-color: white;
}

#title {
	float: left;
	width: 200px;
}

#mainNavigation {
	position: absolute;
	left: 280px;
	width: 600px;
}

#mainNavigation li {
	display: block;
	float: left;
	width: 150px;
}

#mainNavigation li.contact {
	float: right;
}

.subNavigation li {
	background-color: white;
}

/* content #################### */

#content {
	width: 920px;
	position: absolute;
	top: 200px;
}

#leftCol {
	width: 200px;
	position: absolute;
	z-index: 100;
	float: left;
	background-color: white;
}

#rightCol {
	width: 820px;
	position: absolute;
	left: 280px;
	top: 5px;
}

#rightCol img {
	display: block;
	float: left;
	margin: 0 10px 10px 0;
}

/* overview ################## */

.post {
	float: left;
	margin: 0 10px 10px 0;
}

.post-content-title {
	display: block;
}

.entry-title a {
	display: block;
	visibility: none;
	height: 100%;
}

.post-content {
	position: absolute;
	visibility: hidden;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
	opacity: 0;
	z-index: 1000;
	cursor: pointer;
	display: block;
	background-color: black;
}

/*.post-content span {
	margin: 10px;
	text-align: center;
}*/

.post-content:hover, .post:hover .post-content {
	-moz-opacity: 1;
	filter:alpha(opacity=100);
	opacity: 1;
	visibility: visible;
}

.post-content a {
	color: white;
	background-color: black;
	display: block;
}

.post .scnd-image {
	position: absolute;
	top: 0;
	z-index: -1;
}

/* footer #################### */

#footer {
	padding: 20px 0;
	height: 100px;
	clear: both;
}