/**********************************/
/* Minimal CSS - general settings */
/**********************************/
* {
	margin:0;
	padding:0;
}

html, body {
	height:100%;
}

#wrap {
	min-height:100%;
}

/* IE Win only \*/
* html #wrap {
	height:100%;
}
/* */

#content {
	min-height:100%;
}

/* IE Win only \*/
* html #content {
	height:100%;
}
/* */

#header {
		height:100px;
}

#footer {
	height:30px;
	margin-top:-3em;
}

/********************/
/* Styling settings */
/********************/

body {
	background-color: #FFFFFF;
	color:#000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.8em;
}

/* Titles */

h1 {
    font-size: 1.2em;
    margin: 0.2em 0;
}

h2 {
    font-size: 1.1em;
    margin: 0.2em 0;
}

h3 {
    font-size: 1.0em;
    margin: 0.2em 0;
}

/* general link */

a {
	text-decoration: none;
}

/* wrap settings includes header, content, navigation_h */
#wrap {
	background-color:white;
	color:black;
}

#header {
	display:none;
}

#navigation_h{
	display:none;
}
#navigation_h a img{
	border:none;
	clear:left;
}

/* content settings includes navigation_v, main */
#content {
	background-color:white;
	color:black;
}

/* Navigation vertical */
#navigation_v{
	display:none;
	clear:left;
}

/* Main Section */
#main {
	color:#000000;
}

ul#main {
	margin-left: 20px;
}

* html ul#main { /* Für IE */
	margin-left: 35px; 
}
* html div#main {
    height: 1em;  /* Workaround gegen den 3-Pixel-Bug des Internet Explorer bis Version 6 */
    margin-bottom: 0;
}

#main p {
    font-size: 1em;
    margin: 1em 0;
}
#main a img {
	border:none;
}

/* Footer Section - not in wrap div*/
#footer {
	display:none;
}
	

/* REST */

td, th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 24px;
	color: #333333;
}
a {
	color: #3366CC;
	text-decoration: none;
}

/* Diese Regel fuegt in CSS2-Browsern die Link-Adresse hinter Links ein. */ 
a:link:after, a:link:visited:after {

  content: " (Link auf <" attr(href) ">) ";

  font-size: 76%;
  color: #999;

  background: transparent;
}


/* Bei internen Links muss noch die eigene Domain ausgegeben werden */

a[href^="/"]:link:after {

  content: " (Link auf <http://style-sheets.de " attr(href) ">) ";

}

