/* mathe-kritik.de
 * 
 * handmade coding mai 2010
 * have fun!
 */


 /*  
Sticky Footer Solution
by Steve Hatcher | http://stever.ca | http://www.cssstickyfooter.com
*/

* {margin:0;padding:0;} 

/* must declare 0 margins on everything, also for main layout components use padding, not 
vertical margins (top and bottom) to add spacing, else those margins get added to total height 
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {height: 100%;}

.page_margins {min-height: 100%;}

#main {overflow:auto; padding-bottom: 80px;}  /* must be same height as the footer */

#footer {
	position: relative;
	margin-top: -80px; /* negative value of footer height */
	height: 75px; /* - Footer Border-top (5px) */
	clear:both;
	} 

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}



/* basis css */
html * { font-size:100.01%; }

body {
	background:#fff;
    font-family:Arial, Helvetica, sans-serif;
    font-size:80.00%;
    color:#444;
}

#header {
    color:#000;
    background:#fff repeat-x top left;
    padding:15px 2em 1em 20px;
	text-align: right;
  }
#header h1 {
    font-weight:bold;
    font-size:2.5em;
    letter-spacing:-2px;
    line-height:65%;
    color:#000;
  }

#header span { color:#999; }
  
#footer {
    color:#666;
    background:#f9f9f9;
    border-top:5px #efefef solid;
    line-height:1.5em;
	padding: 0px 20px;
  }

  #col1 { width:15%; }
  #col1_content { padding:10px 10px 10px 20px; }

  #col2 { width:15%; }
  #col2_content { padding:10px 20px 10px 10px; }

  #col3 { margin:0 15%; }
  #col3_content { padding:10px; }
  
  h1,h2,h3 {
    font-family:"Times New Roman", Times, serif;
    font-weight:normal;
    color:#222;
    margin:0 0 0.3em 0;
  }

  h1 { font-size:250%; }                       /* 30px */
  h2 { font-size:200%; }                       /* 24px */
  h3 { font-size:150%; }
 
 a,a:link,a:visited,a:focus,a:active {color: #4f4f4f; font-weight:bold;}
 
   ul, ol, dl { line-height:1.5em; margin:0 0 1em 1em; }
  ul { list-style-type:disc; }
  ul ul { list-style-type:circle; margin-bottom:0; }

  ol { list-style-type:decimal; }
  ol ol { list-style-type:lower-latin; margin-bottom:0; }

  li { margin-left:0.8em; line-height:1.5em; }
  
  p { line-height:1.5em; margin:0 0 1em 0; }

