/* CSS Document */

/* Standardstile der Browser außer Kraft setzen */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: normal;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}
/* Focus-Stylesheets müssen noch definiert werden!! */
:focus {
    outline: 0;
}
body {
    line-height: 1;
    color: black;
    background: white;
}
ol, ul {
    list-style: none;
}
/* Tabellen brauchen immer noch 'cellspacing="0"' im Markup!!! */
table {
    border-collapse: separate;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: "";
}
blockquote, q {
    quotes: "" "";
}

/* end Standardstile */

/* GRUNDLEGENDER AUFBAU */

html, body {
                font-family: Arial, Helvetica, sans-serif;
                
				font-size: 16px;
                color: black;
                
                background: #8C8C8C;

                margin: 0;
                padding: 0;
                }
                
#page_margins {
                margin: 24px auto;
                padding: 0;
                
                width: 961px; /* gesamte Breite der Seite - %:flexibel, px:fest */            

                }
#page { /* hier muss Hintergrundgrafik für linke Spalte rein */
                margin: 0;
                padding:0;
                
                background: white;
                border-right: 1px solid #444;
                border-bottom: 1px solid #444;
                }    			
				
#header, #footer {
				clear: both;
				width: 100%;
				}				
				
#header {
				margin-top: 0px; /* Abstand Kopf von oben */
				height: 110px;  /* Größe Kopf */								
				}

#leftframe {
				float: left;
				width: 192px; /* Breite linke Spalte */
				margin-left: 0; /* Unterschied zu den 95% von #centerframe */
				}
				
#leftframe_content {
				}				
				
#rightframe {
				float: right;
				width: 165px; /* Breite rechte Spalte */
				}								
				
#centerframe {
				
				float:left;
			  	width: 768px; 
			  	margin-right: -95%; 
				/* this needs to be less than 100% for Moz/Mac which thinks 
			         it's empty otherwise. The difference is made up by putting a 
			         negative left margin on the left float:
				   Note IE/Mac doesn't like this method ~ it wants the 100% so it can 
				   be fed in using IE only CSS below becasue IE/Win also works with the 100% method.  
				*/				
				}
				
#centerframe_content {
				margin: 24px 0px 24px 24px; /* Breite der linken Spalte + Rand */
				}
				
.menutempl #centerframe_content {
                margin: 24px 192px 24px 24px; /* Breite der linken Spalte + Rand */
				}					
				
#rightframe_content {
				margin: 40px 0 0;
				}											
				
#main {
				
				float: left;
				width: 100%;
				position: relative;	
				
				background: white; /* Hintergrund linke Spalte */							
				}						            

#main:after {
				/* this is for NN6 to clear floats */
			    content: "."; 
			    display: block; 
			    height: 0px;
			    clear: both; 
			    visibility: hidden;
				}
				
#menu {
                margin: 0;
                padding: 0;
                
                position: relative;
                overflow: hidden;
                
                width: 960px;
                height: 20px;
                
                background: white;
                color: black;
				border-bottom: 1px solid #666;                                
                }    
                
#bottommenu {
                margin: 0;
                padding: 0;
				
				position: relative;
                overflow: hidden;
                
                width: 960px;
                height: 16px;
				}                
                			

/* end GRUNDLEGENDER AUFBAU */

/* Menü */

#menu ul {
                display: inline;
                
                margin: 0 20px 0 215px;
                padding: 0;
                
                width: auto;
                
                float: left;
                overflow: hidden;
                
                list-style: none none inside;
                border-right: 1px solid #666;
                }
                
               
#menu ul li{
                margin: 0;
                padding: 0;
                
                list-style: none none inside;
                
                float: left;
                }                
                
#menu ul li a {
                display: block;
                
                margin: 0 0 0 0;
                padding: 4px 10px 3px 10px;    
                
                background: transparent;
                color: black;
                            
                text-decoration: none;
                
                font-size: 12px;
                line-height: 130%;
                font-weight: bold;
                
                border-left: 1px solid #666;
                }
                
#menu ul li a:hover {
                background: #ccc;
                color: #000;
                }

#menu ul li.aktiv a, #menu ul li.pfadaktiv a {
                background: #E50006;
                color: #fff;
                }
				


#topmenu ul {
                display: inline;
                
                margin: 0;
                padding: 0;
                
                width: auto;
                
                float: right;
                overflow: hidden;
                
                list-style: none none inside;
                border-right: 1px solid #ccc;
                }
                
               
#topmenu ul li{
                margin: 0;
                padding: 0;
                
                list-style: none none inside;
                
                float: left;
                }                
                
#topmenu ul li a {
                display: block;
                
                margin: 0 0 0 0;
                padding: 4px 6px 2px 6px;    
                
                background: transparent;
                color: #fff;
                            
                text-decoration: none;
                
                font-size: 11px;
                line-height: 130%;
                font-weight: normal;
                
                border-left: 1px solid #ccc;
                }
                
#topmenu ul li a:hover {
                background: #666;
                color: #fff;
                }
                
#bottommenu ul {
                display: inline;
                
                margin: 0 15px 0 20px;
                padding: 0;
                
                width: auto;
                
                float: right;
                overflow: hidden;
                
                list-style: none none inside;
                border-right: 1px solid #ccc;
                }
                
               
#bottommenu ul li{
                margin: 0;
                padding: 0;
                
                list-style: none none inside;
                
                float: left;
                }                
                
#bottommenu ul li a {
                display: block;
                
                margin: 0 0 0 0;
                padding: 2px 6px 2px 6px;    
                
                background: transparent;
                color: #999;
                            
                text-decoration: none;
                
                font-size: 11px;
                line-height: 130%;
                font-weight: normal;
                
                border-left: 1px solid #ccc;
                }
                
#bottommenu ul li a:hover {
                background: #666;
                color: #fff;
                }                
                                            
                                
/* ENDE Menü */ 

/* HEADER */

#header {
	position: relative;
	background: transparent url(../images/drk_kopfimage_kampagne.png) 10px 10px no-repeat;	
	}
	
#header h1 {
	position: absolute;
	z-index: 2;
	
	top: 19px;
	left: 216px;
	
	border: 0;
	
	font-size: 21px;
	line-height: 21px;
	}	
	
#header #banner {
	position: absolute;
	top: 0px;
	right: 0;
	
	z-index: 1;
	
	height: 110px;
	text-align: right;
	
	margin: 0;
	padding: 0;
	
	border: 0;
	}
	
#banner img {
	position: absolute;
	top: 0;
	right: 0;
	}		
	


/* versteckte Navigation für Textbrowser */

.hidden {
				display: none;
				}
				
/* end versteckte Navigation */

/* grundlegende Formatierung */

abbr {
	border-bottom: 1px dotted black;
	}
	
strong {
	font-weight: bold;
	}	
	
em {
	font-style: italic;                     
	}	
	
#centerframe_content, #rightframe_content {
	font-size: 12px;
	}	

/* end grundlegende Formatierung */

/* MENÜFORMATIERUNGEN */


	
#leftframe ul {
	margin: 0;
	padding: 0;
	}
	
.rightframe ul {
	margin: 25px 20px 0 10px;
	padding-bottom: 15px;	
	}	
	
#leftframe li {
    line-height: 120%;
	padding: 0;   
	
	color: black;
	} 
.rightframe li {
	line-height: 130%;
	padding-bottom: 10px;
	padding-left: 20px;
	
	background: transparent url(../images/menu_item.png) top left no-repeat;
	
	color: black;
	}
	
#leftframe a {
	display: block;
	padding: 4px 10px 2px;
	
	border-bottom: 1px solid #ccc;
	
    color: black;
	font-size: 12px;		
	
	text-decoration: none;
	font-weight: bold;
	}
	
#leftframe h2 {
    padding: 4px 10px 4px;
	
	border-bottom: 1px solid #ccc;
	
    color: white;
    background-color: #666;
	font-size: 12px;
	line-height: 130%;		
	
	text-decoration: none;
	font-weight: bold;
	}
	
#leftframe li li a {
	font-weight: normal;
	
	padding-left: 20px;
	}
	
#leftframe li li li a {
	font-weight: normal;
	
	padding-left: 30px;
	}	
	 
.rightframe a {
	color: black;
	font-size: 12px;		
	
	text-decoration: none;
	}
	
#leftframe a:hover {
	color: black;
	background-color: #ccc;
	
	text-decoration: none;
	} 

.rightframe a:hover {
	color: black;
	
	text-decoration: underline;
	}	
	
 
#leftframe li.pfadaktiv > a {
    color: #E50006;
    }

	
#leftframe li.aktiv > a {
	color: #fff !important;
	background-color: #E60005;
	}
	
		
	
#leftframe p, .rightframe p {
	line-height: 130%;
	margin-bottom: 10px;
	}	
	
#leftframe address, .rightframe address {
	line-height: 150%;	  
	margin-bottom: 10px;
	}			

/* end MENÜFORMATIERUNGEN */

/* CONTENT */

#centerframe h2, #centerframe h3, #centerframe h4, #centerframe h5, #centerframe h6 {	
	}

#centerframe h2 {
	margin: 0px;
	padding: 8px 10px 6px;
	
	font-size: 18px;
	line-height: 120%;
	font-weight: normal;
	background-color: #E60005;
	color: #fff;
	border-bottom: 1px solid white;
	}

#centerframe h3 {
	margin: 0px;
	padding: 8px 10px 6px;
	
	font-size: 14px;
	line-height: 120%;
	font-weight: bold;
	
	background-color: #999;
	color: #fff;
	border-bottom: 1px solid white;
	}
	
#centerframe h4 {
	margin: 15px 0 10px;
	
	font-size: 13px;
	font-weight: bold;
	
	line-height: 130%;
	}	
	
hr {
	height: 1px;
	color: #ccc;
	border: 0;
	border-top: 1px solid #ccc;
	}	
	
#centerframe p {
	line-height: 130%;
	margin-bottom: 10px;
	}	
	
#centerframe address {
	line-height: 150%;	  
	margin-bottom: 10px;
	
	font-style: oblique;	  	  	  
	}	
	  
#centerframe ul, #centerframe ol {
	margin: 10px 0 10px 0px;
	padding-left: 25px;
	zoom: 1;
	overflow: auto;
	}

#centerframe ul li, #centerframe ol li {
	padding: 0;
	line-height: 130%;
	padding-left: 6px;
	margin: 0;
	
	list-style-type: square;
	list-style-position: outside;
	}
	
#centerframe ul li img {
	vertical-align: -9px;
	}
	
#centerframe ul li p:first-child {
	margin: 2px 0;
	}		
	
#centerframe ol li {
	list-style-image: none;
	list-style-type: decimal;
	}		  
	
#centerframe ol li img, #centerframe ul li img {
	margin: 0.5em 0;
	}
	
.rightfloat {
    margin: 0em 0em 5px 15px;
    padding: 0;
    
    float: right;    
    }
    
.leftfloat {
    margin: 0em 15px 5px 0em;
    padding: 0;
    
    float: left;		
    }    
    
.leftfloat *:first-child, .rightfloat *:first-child {
    margin-top: 0em !important;
    }
    
h2 + .rightfloat, h2 + .leftfloat, h3 + .rightfloat, h3 + .leftfloat {
	margin-top: 15px;
	}    
    
.clearfix {
    clear: both;
    }
	
.grauebox {
	background-color: #ccc;
	}		
	
.grauebox p {
	margin: 0 5px 0 5px !important;
	padding: 0 0 5px 0 !important;
	}	
	
.grauebox p img {
	margin-left: -5px;
	}	
	
/* Spalten */

.spaltenbox {
	clear: both;
	
	position: relative;
	overflow: hidden;
	margin-bottom: 20px;
	}
	
h2+.spaltenbox, h3+.spaltenbox {
	margin-top: 10px;
	}	
	
.links_50, .rechts_50, .links_66, .rechts_66 {
	width: 360px;
	
	float: left;
	margin: 0;
	}	
	
.rechts_50, .rechts_66 {
	float: right;
	}
	
.links_25_1, .links_25_2, .rechts_25_1, .rechts_25_2, .links_33, .mitte_33, .rechts_33 {
	width: 168px;
	
	float: left;
	margin: 0;
	}	
	
.links_25_2, .rechts_25_1, .rechts_25_2, .mitte_33, .rechts_33 {
	margin-left: 24px;
	}	
	
#centerframe a {
	color: #015bca;
	background-color: inherit;
	text-decoration: underline;
	}
	
#centerframe a:hover {
	color: #E60005;
	background-color: inherit;
	text-decoration: none;
	}	
	
.rightframe {
	position: absolute;
	top: 24px;
	right: 0;
	
	width: 170px !important;
	}	
	
.rightframe p {
	margin: 0;
	padding: 10px;
	border-left: 1px solid #ccc !important;
	}		
	
.rightframe h2 {
	margin: 0 !important;
	padding: 8px 10px !important;	
	font-weight: bold !important;
	font-size: 1em !important;	
	border: 1px solid #ccc !important;
	border-right: 0 !important;
	color: black !important;
	background-color: white !important;
	}	

/* ENDE Spalten */	

/* Formulare */

form {
    margin: 0;
    }

fieldset {
    position: relative;
    
    width: 350px;

    margin: 10px 0 20px 0;
    
    padding: 0;
    }
    
fieldset fieldset {
    width: 350px;
    margin: 0;
    }
        
legend {
    display: block;
    
    font-weight: bold;
    font-size: 1.3em;    
    
	margin: 0 0 8px 0;
    padding: 0;
    }
    
fieldset fieldset legend, fieldset fieldset legend span {
    display: block;
    }

fieldset fieldset legend span {        
    font-weight: bold;
    font-size: 1.3em;    
    margin: 0;
    
    position: absolute;
    left: 1em;
    top: 0.1em;
    
    display: block;
    
    width: 350px;                                                                                                
    }
    
fieldset label {
    display: block;
    width: auto;
    
    font-weight: bold;
    letter-spacing: 0.05em;
    font-size: 1.1em;
    
    margin: 0 0 0.25em 0;
    }
    
fieldset fieldset label, ol.nochmal label {
    display: inline;
    
    font-weight: normal;    
    font-size: 1em;
    }    
    
ol.nochmal label {
    font-weight: bold;
    }    
    
fieldset label em {
    font-style: normal;
    
    text-decoration: underline;
    }    

fieldset ol.form {
    margin: 0 !important;
    padding: 0.5em 1em 0 0em !important;  
                
    list-style: none !important;                     
    }
    
fieldset fieldset ol.form {
    margin: 0 !important;
    margin-top: 1em !important;
    }    
                
fieldset ol.form li {
    width: 100%;  
                
    margin: 6px 0 !important;
    padding: 0 !important;
    padding-bottom: 0.25em !important; 
    
    list-style: none !important;
    list-style-image: none !important;
    }

fieldset input, fieldset select, fieldset textarea {
    padding: 0.15em 0.25em;
    
    font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
    font-size: 1.0em;
    margin: 0;
    
    border: 1px solid #aaa;
    
    width: 350px;
    }    
    
fieldset select {
    width: 360px;
    }    
    
fieldset input.checkbox, fieldset input.radio {
    width: auto;
    margin-bottom: 1px !important;
    margin-right: 5px;
    }    
    
select optgroup {
    font-style: normal;
    font-weight: bold;
    padding-bottom: 0.25em;        
    }    
    
select optgroup option {
    padding-left: 1em;
    }    
    
fieldset select {
    padding: 0.1em 0.15em;
    }

fieldset select.multiple {
    height: 18em;
    }

fieldset textarea {
    height: 13.1em;
    }

fieldset ol.form li span {
    display: block;
    width: auto;
    
    margin: 0.15em 0.15em;
    
    font-size: 0.8em;
    letter-spacing: 0.05em;
    }  
    
fieldset p.aktionen {
    text-align: left;
    
    margin-bottom: 1em;
    }
    
p.aktionen {
    text-align: left;
    }    

button, a.button {
    padding: 4px;        
    
    font-weight: bold;
    
    cursor: pointer;
    }        
    
select:hover, select:focus, input:hover, input:focus, textarea:hover, textarea:focus {
    border: 1px solid black;
    }    

/* ENDE Formulare */
