/* ######################################################################################################
** ### Vorbereitende Maßnahmen | Reset ##################################################################
** ######################################################################################################
*/
	/* Hiermit werden die Randabstände und border aller HTML-Elemente auf Null gesetzt. Damit wird das       
	** Aussehen der Webseite in unterschiedlichen Browsern vereinheitlicht. 
	*/
	
	* { margin:0; padding: 0; } 

	/* Das zurücksetzen der Innen- und Außenabstände verursacht zu kleine Selectboxen. Dies wird korrigiert */
	option {padding-left: 0.4em}
	
	/*
	** Die nachfolgenden Angaben entstammen dem Artikel 'Useful Code Snippets' von Mike Foskett
	** [http://www.websemantics.co.uk/tutorials/useful_css_snippets/]
	*/
	
	/* Vertikalen Scrollbalken im Netscape & Firefox erzwingen. Dies verhindert, dass zentrierte Layouts 
	** um 10 Pixel springen wenn der Seiteninhalt kleiner wird als die Höhe des Browserfensters. */
	html { height: 100% } 
	body { 
		min-height: 101%;	
	/* Beseitigung des Rundungsfehlers bei Schriftgrößen im Opera sowie Standardformatierungen */
		font-size: 100.01%; 
	/* FIX: Verhindert, dass positionierte Elemente nicht verschoben werden when die Größe des Browser 
			Fensters geändert wird. */
		position: relative; 
	
	/* Vorgabe der Standardfarben und Textausrichtung*/     
		color: #000;        
		background: #fff;
		text-align: left; 
	} 
	
	/* Standardrahmen zurücksetzen */
	fieldset, img { border:0; }
	
	/* Anpassung für Safari Browser. font-size:100% ist für den Safari in Formularen zu groß */ 
	select, input, textarea { font-size: 99% }
	
	
/* ######################################################################################################
** ### Markupfreie CSS-Floatclearing-Lösungen ###########################################################
** ######################################################################################################
*/

	/* Clearfix-Methode zum Clearen der Float-Umgebungen */
	 .clearfix:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	
	/* Diese Angabe benötigt der Safari-Browser zwingend !! */
	.clearfix { display: block; } 
	
	/* Overflow-Methode zum Clearen der Float-Umgebungen */
	.floatbox { overflow:hidden; }
	
	/* IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
	#ie_clearing { display: none }
	
/* ####################################### Ende Clearing ####################################### */
	
	
	
body { 
	background-position: top left;
	background-repeat: repeat-x;
	font-family:Verdana, Arial, san-serif;
	}

/* Layoutpositionierung | Randgestaltung */
#page_margins {
	width: 950px; 
	position: relative;   
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
}

#page{ background: #fff; }

/* Formatierung der Kopfbereiches */

#header { 
	position:relative;
	background-color: #fff; color: #fff; padding: 0px;
	height: 91px;
	 }




#topnav {
		position:absolute;
		top: 0px;
		padding-top: 0px;
		right: 20px;
		color: #676f82;
		background: transparent;
		text-align: right; /* Erforderlich, damit im Opera 6 wirklich rechts plaziert ! */
	}
	

.kotilogo  {
	position:absolute;
	top: 55px;
	right: 18px;
	text-align:right; 
	border: 0px #333 solid;
	color: #7c7c7c;
	font-family:"Lucida Grande", Arial, san-serif;
	font-size: 12px;
}
	
	
#topnav a{
	color: #1f3694;
	font-family:"Lucida Grande", Arial, san-serif;
	font-size: 12px;
	margin-left: 15px;
	padding-left: 15px;
	padding-top: 10px;
	text-decoration: none;
	border-left: 1px #1f3694 solid;
	}
	
#topnav a:hover{
	text-decoration: underline;
	}
	
#nav { clear:both; width: auto; }

	
#main { 
	background: #fff; 
	padding: 20px 0 20px 0; 
	font-family:"Lucida Grande", Arial, san-serif;
	font-size: 12px;
	}
	
	
/* ######################################################################################################
** ### Skiplink-Navigation ##############################################################################
** ######################################################################################################
*/

.skip {
	position: absolute;
	left: -1000em; 
	width: 20em;
}

	
	
/* ####################################### Spaltenformatierung ####################################### */
	
#col1 {
		float: left;
		width: 25%;  /* Standard-Wert, falls keine anderen Vorgaben gemacht werden */
	}
#col1_content { padding-left: 20px; padding-right: 10px; }
	
#col2 {
		float:right; 
		width: 200px; /* Standard-Wert, falls keine anderen Vorgaben gemacht werden */
		display:none;
	}
#col2_content {	padding-left: 10px; padding-right: 20px; display:none; }
	
#col3
	{
		width:auto;
		margin-left: 25%; margin-right: 0; border-right: 0
	}
	
#col3_content { padding-left: 10px; padding-right: 10px; }


/* ####################################### Ende Spaltenformatierung ####################################### */
	
#footer { 
	clear:both; /* Backup für IE-Clearing */
	background-color: #eef1f5; 
	color:#3b3f5b; 
	padding: 10px 15px 10px 15px; 
	font-family:"Lucida Grande", Arial, san-serif;
	font-size: 12px;
	}	
	
	
#footer a {
	color: #1f3694;
	text-decoration: none;
}

#footer a:hover {
	text-decoration: underline;
}

#footer a:visited {
	color: #1f3694;
}

#footer a:active  {
	color: #1f3694;
}



/* ######################################################################################################
** ### Hauptnavigation: "Shiny Buttons" von Dirk Jesse ##################################################
** ######################################################################################################
*/

#nav {
	padding-bottom: 5px;
}
#nav img{
    border-bottom: 1px #fff solid;

}

#nav_main {
    width: 100%;		/* Einfassen der Floats im IE */
    float:left;         /* Einfassen der Floats in allen anderen Browsern */
    border-bottom: 1px #fff solid;
    line-height: 0px;
}

#nav_main ul {
    float:left;
    display:inline;		/* Fix f?r IE Doubled Float Margin Bug    */ 
    margin:0;			/* Standard-Listendefinition zur?cksetzen */
    padding: 0;
    border-right: 1px #818596 solid;
}

#nav_main ul li {
    float: left;
    display:inline;     /* Fix f?r IE Doubled Float Margin Bug    */ 
    margin: 0;
    padding: 0;
    line-height: 1em;
    list-style-type: none;
    border-right: 1px #818596 solid;
}

#nav_main ul li a {
    display:block;
    width: auto;
    font-weight: bold;
    background: transparent;
    text-decoration: none;
    color: #fff;
    margin: 0;
    padding: 0.4em 1.3em 0.6em 1.3em;
	font-family:"Trebuchet MS", "Lucida Grande", Arial, san-serif;
	font-size: 13px;
	font-weight: normal;
}

#nav_main ul li a:hover {
    color: #fff;
    text-decoration: none;
}

#nav_main ul li#current { 
    border-right: 1px #818596 solid;
}

#nav_main ul li#current a,
#nav_main ul li#current a:hover {
    color: #fff;
    background: transparent;
    text-decoration: none;
}

/* ####################################### Ende Navigation ####################################### */


/*---------- Google Searchbutton ---------*/

#suchbox {
		color: #676f82;
		background: transparent;
		text-align: right; /* Erforderlich, damit im Opera 6 wirklich rechts plaziert ! */
		margin-right: 18px;
}

.searchbutton {
	background-color: #FFF;
	color:#000;
	border: 0;
	padding: 0;
	margin-left: 5px;
	font-family:"Trebuchet MS", "Lucida Grande", Arial, san-serif;
	font-size: 12px;
}


input#search {
	height: 18px;
	margin-top: 1px;
}


/*---------- Ende Google Searchbutton ---------*/



/* ####################################### Subnavigation ####################################### */
.subnavigation {
	margin-bottom:30px;
}

.subnavigation ul,
.subnavigation li {
	margin:0px;
	padding:0 0 2px 0;
	list-style-type:none;
}

.subnavigation a {
	color: #1f3694;
	text-decoration: none;
}

.subnavigation a:hover {
	color: #c9050f;
	text-decoration: underline;
}

.subnavigation a:visited {
}

.subnavigation a:active  {
}

.subnavigation li.scurrent a {
	color: #c9050f;
	text-decoration: underline;
}

/* ####################################### Ende Subnavigation ####################################### */




/* ####################################### Contentbereich ####################################### */

#main h2 {
	margin:0px 0px 15px 0px;
	padding:0px 0px 2px 0px;
	border-bottom:1px solid #cccccc;
	font-family:"Trebuchet MS", "Lucida Grande", Arial, san-serif;
	font-weight:bold;
	font-size:16px;
	color: #666666;
}

#col1 h2 {
	font-size:16px;
}

#main h3 {
	font-family:"Trebuchet MS", "Lucida Grande", Arial, san-serif;
	font-weight:bold;
	font-size:16px;
	color: #a3181b;
}

#main h4 {
	font-family:"Trebuchet MS", "Lucida Grande", Arial, san-serif;
	font-weight:bold;
	font-size:13px;
	color: #000000;
	margin-bottom: 5px;
}

.absatz, .absatz_image_float {
	margin-bottom:30px;
}

.absatz ul, .absatz_image_float ul {
	margin-left:25px;
	margin-bottom:10px;
}

.absatz li, .absatz_image_float li {
	margin-bottom:10px;
}

.float_image_left {
	padding-right:9px; 
	float:left;
	margin-bottom:10px;
}
.float_image_right, .absatz_container_right {
	padding-left:9px; 
	float:right;
	margin-bottom:10px;
}

.image_center {
	text-align: center;
}

/* ####################################### Clearing image absatz float ####################################### */
	
		/* Clearfix-Methode zum Clearen der Float-Umgebungen */
	 .absatz_image_float:after {
		content: "."; 
		display: block; 
		height: 0; 
		clear: both; 
		visibility: hidden;
	}
	
	/* Diese Angabe benötigt der Safari-Browser zwingend !! */
	.absatz_image_float { display: block; } 
	
	/* Overflow-Methode zum Clearen der Float-Umgebungen */
	.absatz_image_float { overflow:hidden; }
	
	/* IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
	#ie_clearing { display: none }
	
/* ####################################### Ende Clearing image absatz float ####################################### */

#col3 b{
	color: #666666;
}

.absatz_image_float p{
	padding-bottom:10px;
}

.absatz p{
	padding-bottom:10px;
}


/* ######### content links ######### */

#col3 a {
	color: #1f3694;
	text-decoration: none;
}

#col3 a:hover {
	color: #c9050f;
	text-decoration: underline;
}

#col3 a:visited {
}

#col3 a:active  {
}



/* ######### breadcrumb navi ######### */


#breadcrumb {
	font-size: 11px;
	margin-bottom: 10px;
	margin-left:-5px;
	color: #959595;
}

#breadcrumb a {
	color: #959595;
	text-decoration: none;
	padding: 0 5px 0 5px;
}

#breadcrumb a:hover {
	color: #C9050F;
	text-decoration: underline;
}


/* ######### News Contentbereich & Seitenleiste ######### */


h3 .newsdate {
	font-size:11px;
	color: #666666;
	font-weight:normal;
}


ul.newslist {
	font-size:11px;
	padding:0 3px 10px 3px;
	margin-bottom:15px;
	border-bottom:1px solid #cccccc;
}

li.newslisttitel {
	color: #a3181b;
	padding-bottom:5px;

}

li.newslisttitel b{
	font-weight:bold;
	font-size:12px;
}


li.newslisttxt {
	color: #666666;
}



/* ######### Glossar ######### */

#glossar h3 {
	font-family:"Trebuchet MS", "Lucida Grande", Arial, san-serif;
	font-weight:bold;
	font-size:16px;
	color: #666666;
	border-bottom:1px solid #cccccc;
}

#glossar h3.glossartop{
	font-size:14px;
	color: #666666;
	border-bottom: 0;
}

#glossar a {
	color: #1f3694;
	text-decoration: none;
}

#glossar a:hover {
	text-decoration: underline;
}

#glossar a:visited {
	color: #1f3694;
}

#glossar a:active  {
	color: #1f3694;
}

.glossarup {
	text-align: right;
}

/* ######### agb ######### */

ol.agb   {
	padding-left: 20px;
}

.agb li.agbfirst  {
	margin-bottom: 25px;
}

.agbfirst h3 {
	margin-bottom: 10px;
	font-weight:bold;
	font-size:12px;
	color: #666666;
}

ol.agbsec {
	list-style-type: lower-latin;
	list-style-position:outside;
	padding-left: 25px;
}

.agbsec li  {
	margin-bottom: 10px;
}

/* ######### site up ######### */
.up {
	text-align: right;
	padding:0 0 0 30px;
	margin: -10px 0 5px 0;
	font-size:11px;
}

.pfeilup {
	background-image: url(../images/button-up.gif);
	background-position: top right;
	background-repeat: no-repeat;
}

.pfeilup a{
	padding-right: 15px;
}

.pfeildown {
	background-image: url(../images/button-down.gif);
	background-position: top right;
	background-repeat: no-repeat;
	margin-right:10px;
}

.pfeildown a{
	padding-right: 15px;
}

/* ######### content menue list ######### */

ul .contentmenue{
	margin-left:25px;
	margin-bottom:10px;
}

.contentmenue li {
	margin-bottom:5px;
}
.contentmenue li.pdf {
	list-style-image: url(../images/acrobatklein2.gif);
}

.contentmenue li.pdf {
	list-style-image: url(../images/acrobatklein2.gif);
}


/* ######### arguments list ######### */

ul .argumentlist{
	margin-left:25px;
	margin-bottom:10px;
}

.argumentlist li {
	font-weight:bold;
	font-size:12px;
	margin-bottom:10px;
}


/* ######### hotline ######### */

.hotline {
	background-image: url(../images/phone.jpg);
	background-position: top left;
	background-repeat: no-repeat;
	margin-left:25px;
	padding-left: 25px;
	heigth:100px;
}


/* ######### Hygiene Programm Argument list first ######### */

ul.oklist{
	margin-left:25px;
	margin-bottom:10px;
}

.oklist li {
	list-style: none;
}


li.oklisthacken{
	margin-bottom:15px;
	list-style-image: url(../images/hacken.gif);
}


li.pointlist {
	margin-bottom:5px;
	list-style-image: url(../images/punkt_rot.gif);
}


/* ######### Produkt Legende ######### */

.legendematerial td {
	padding:5px 50px 5px 5px;
	font-size:11px;
}
.legendematerial th {
	padding:5px 20px 5px 5px;
	font-size:12px;
	color:#666666;
}

.bggrey td {
	background-color:#eef1f5;
}

.legendecolor td {
	padding:5px 20px 5px 5px;
	font-size:12px;
}

/* ######### Produkt List ######### */

.productlist td {
	padding:5px 30px 5px 5px;
}
.productlist th {
	padding:15px 30px 5px 5px;
	font-size:12px;
	color:#666666;
}

.tablehead td {
	padding:5px 30px 0px 5px;
	font-size:11px;
}
td.symbol {
	padding-right: 5px;
}

.productimage {
	margin: 10px 0 10px 0;
}
.maincolorlist img {
	padding-left: 5px;
}

.maincolorlist p {
	text-align: right;
}