﻿/******************************************************************************
	FONTS
*******************************************************************************/


/*******************************************************************************
	GLOBAL 
*******************************************************************************/

html, body, img, h1, h2, h3, h4, p, ul, ol, li{	
	margin: 0;
	padding: 0;
	border: 0;
}

html{
	height: 101%;
}

body{	
	max-width: 100%;
	min-width: 1000px;
	height: 100%;	
	font-family: Arial, Verdana, Helvetica, Geneva, sans-serif;
	font-size: 100.01%;
	font-size: 12px;
	color: #000000;
	background-color: #C6BD9C;
	margin: 0;
	padding: 0;	
	position: relative;
	overflow:hidden;
}

.clear{
	width: 0;
	height: 0;
	font-size: 0;
	overflow: hidden;
	clear: both;
}

h1{
	font-size: 30px;
	font-weight: normal;
	margin-bottom: 12px;
}

p{
	padding-bottom: 10px;
}

p strong{
	font-size: 16px;
	font-weight: normal;
}

a{

}

a:hover{
	text-decoration: underline;
}


/* Hintbox */

.messageHint{
	position: relative;
	border: 3px solid #74b02c;
	color: #000000;
	width: auto;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 15px;
}

.messageHint .hint{
	background-image: url("images/iconHint.png");
	background-repeat: no-repeat;
	background-position: 0 0;
	min-height: 30px;
	height: auto !important; /* for IE6 and IE7 */
	height: 30px; /* for IE6 and IE7 */
	padding-left: 25px;
	margin: 0px;
	margin-top: 5px;
}

.messageHint .tl, 
.messageHint .tr, 
.messageHint .bl, 
.messageHint .br{
	position: absolute;
	display: block;
	height: 6px;
	width: 6px;
}

.messageHint .tl{
	background-image: url("images/hint_tl.gif");
	top: -3px;
	left: -3px;
}

.messageHint .tr{
	background-image: url("images/hint_tr.gif");
	top: -3px;
	right: -3px;
}

.messageHint .bl{
	background-image: url("images/hint_bl.gif");
	bottom: -3px;
	left: -3px;
}

.messageHint .br{
	background-image: url("images/hint_br.gif");
	bottom: -3px;
	right: -3px;
}


/*******************************************************************************
	GRID 
*******************************************************************************/

#stageContainer{
    margin-left: -500px;
	margin-top: -300px;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    float: left;
}

/*Logo im Hintergrund */
#mainContainer{
	position: relative;
	background-color: #ffffff;
	width: 1000px;
	min-height: 601px;
	height: auto !important; /* for IE6 and IE7 */
	height: 601px; /* for IE6 and IE7 */
	float: left;
	dislpay: block;
}

#contentContainer{
	position: relative;
	margin-top: 0px;
	margin-left: 0px;
	padding: 0;
	width: 1000px;
	height: auto;
}


