/*** basis ***/

body {
    margin: 0;
    /* font eigenschaften allgemein*/
    font-family: Helvetica;
    color: white;
}

a {
	color:white	
}
a:hover {
	color:black;	
}

/*** layout ***/

#wrapper {
	margin: 0 auto;	
	width: 960px;
}
.header {
	position: relative;
	height: 200px;
}
.main {
	/* height: 400px; */
	padding: 30px;
	padding-right:180px;
}

#stopper {
	position:fixed;
	width:400px; height:30px;
	top:0px; right: 0px;
	background:rgba(225, 225, 225, .85);
	
	color:#696969;
	line-height:30px;
	text-align:left;
	font-size:12px;
	margin-left:10px;
	padding-left:10px;
	display:inline;
	
	-webkit-border-radius:10px;
	-moz-border-radius: 10px;
	-o-border-radius:10px;
	border-radius: 10px;
}

#stopper a {
	color: black;
}
/*** modules ***/


/* logo */
.header .logo {
	/*position*/
	position: absolute;
	top:  30px;
	left:  30px;
}

/* navigation */
.header .nav {
	position: absolute;
	top:  30px;
	right:  30px;
}
.header .nav li{
	display: inline;	
	list-style:none;
	margin-right: 10px;
		
}

/* artikel */
.article {
	clear: both;
}
/* artikel date */
.article h2{
	/* position */
	margin-top: 100px;
	position:relative;	
	
	/* font eigenschaften*/
	font-size:18px;
}
.article h2 .date{
	/* position */
	position:absolute;
	top: -25px;
	left: 0;
	
	/* font eigenschaften*/
	font-size:14px;
	font-weight:normal;
}

/* artikel image */
.article .img-article{
	position:relative;
	float: left;
	width:150px;
	margin-right:20px;
	margin-bottom: 20px;
}
.article .img-article .figure{
	position:absolute;
	visibility:hidden;
	bottom: 10px;
	left: 5px;
	
	/* font eigenschaften*/
	padding:4px;
	margin:4px;
	background:black;
	font-size:14px;
	font-weight:normal;
}

.article .img-article:hover .figure{
	visibility: visible;;
}

/* allgemein */
.bg-main {
	background: grey;
	border: 10px solid black;
}