/*Zweispaltiges CSS-Layout auf skalierbarer Breite in zentriertem div-container,
Buttons als gerahmte divs mit css-Effekten

Copyright by Nadine Peetz, im Mai 2003

Inspirierenlassen erlaubt und erwünscht, aber nicht vergessen:
Wer ganze css-Dateien klaut, fickt sicherlich auch Schafe ;o)*/


/*=========================================*/
/*Gerüst*/
body {
background-image: url(gfx/rueck.gif);
background-repeat: repeat;
font-family: Courier New, Courier, mono; 
color: #52311b; 
font-size: 12px;
line-height: 17px;
}

#drumrum {
margin-left: 4%;
margin-right: 4%;
text-align: center;
}

#links {
margin-top: 5px;
width: 15%;
float: left;
text-align: left;
}

#text {
padding-top: 12px;
width: 80%;
float: right;
text-align: justify;
padding-bottom: 20px;
}

#unten {
width: 100%;
float: left;
padding-bottom: 10px;
}



/*=========================================*/

/*Navigation rechts &#151; Linkformatierungen*/
.nav {
color: #9a5736;
width: 100%;
display: block;
padding: 4px;
margin: 3px;
background-color: none;
}

a.nav:link, a.nav:visited {
color: #9A5736;
text-decoration: underline;
border: 1px;
border-color: none;
}

a.nav:hover, a.nav:active {
color: #9a5736;
background-color: #F5EDE7;
text-decoration: none;
border: 1px dotted #9a5736;
}




/*Schriftformatierungen*/
p, li, td, tr {
font-family: Courier New, Courier, mono; 
color: #000000; 
font-size: 13px;
line-height: 17px;
}

h1, h2, h3 {
font-family: Courier New, Courier, mono; 
font-weight: normal; 
color: #52311b;
}

h4, h5, h6 {
font-family: Courier New, Courier, mono; 
font-weight: normal; 
color: #000000;
}


h1 {
font-size: 20px;
}

h2 {
font-size: 18px;
}

h3 {
font-size: 16px;
}

h4 {
font-size: 14px;
}

h5 {
font-size: 13px;
}

h6 {
font-size: 11px;
line-height: 14px;
}





/*=========================================*/

/*Pseudoklassen für Links */
a:link {
color: #52311b; 
text-decoration: underline;
}

a:visited {
color: #52311b; 
text-decoration: underline;
}

a:hover {
color: #52311b; 
text-decoration: none;
}

a:active {
color: #52311b; 
text-decoration: none;
}


/*=========================================*/
/*Pseudoklassen für Links innerhalb der Linkliste zu den Texten */
a.liste:link {
color: #000000; 
text-decoration: underline;
}

a.liste:visited {
color: #9a5736;
text-decoration: underline;
}

a.liste:hover, a.liste:active {
color: #FFFFFF; 
text-decoration: none;
background-color: #9a5736;
}


