﻿#printheader{
display:none;
position:relative;
visibility:hidden;
width:0;
height:0;
}

/* Outer div */
div.datetime {
	width: 65px;
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}
div.datetime p {
	margin: 0 auto;
	padding: 0;
	text-align: center;
}
div.datetime .top {
	color: #fefefe;
	background-color: #489999;
	height: 18px;
	background: url(../images/kal_top.gif);
}
div.datetime .top p {
	font-weight: bold;
	text-transform: uppercase;
}
div.datetime p.day {
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	background-color:#FFFFFF;
}
div.datetime p.mon {
	letter-spacing: normal;
	text-transform: uppercase;
	border-left: 1px solid #000000;
	border-right: 1px solid #000000;
	background-color:#FFFFFF;
}
div.datetime p.yr {
	font-weight: bold;
	height: 19px;
	background: url(../images/kal_bottom.gif);
}
label.to {
	float: left;
	margin-right: 15px;
	margin-top: 15px;
}
* {
	padding: 0;
	margin: 0;
}
.clear {
	clear: both;
}
/**************************
BODY
**************************/
body, html {
	color: #000;
	font-family: Verdana, Arial, Tahoma, sans-serif;
	height: 100%;
	background: url(../images/left3_back.jpg) repeat-y #FFFFFF;   /*** This is the left column background "faked" with an image. You can also position the image using left top repeat-y also. The background color #fff (white) will be the background color for our content ***/
}
body {
	font-size: 100.01%;
	min-width: 780px;
}
#mainContainer {
	min-height: 100%;
	background: url(../images/right_back.jpg) 100% 0 repeat-y; /*** This is the right column background "faked" with an image. You can also position the image using right top repeat-y also. ***/
}
* html #mainContainer {
	height: 100%; /*** IE doesn't support min-height, but instead it handles height as min-height so we need to hack the height ***/
}
/**************************
HEADER
**************************/
#header {
	background: #797979;
	height: 120px;
	background-image: url(../images/head_back.jpg);
	width: 100%;
}
#headerright {
	width: 393px;
	margin-right: auto;
	margin-left: auto;
	height: 119px;
	float: right;
	background-image: url(../images/head_right.jpg);
	background-repeat: no-repeat;
	background-position: top right;
}
#headerleft {
	width: 387px;
	height: 119px;
	float: left;
}
/**************************
CONTENT AND COLUMNS
**************************/
.outer {
	padding-left: 180px;
	margin-right: 173px;
}
.inner {
	width: 100%;
	padding-bottom: 50px; /*** Padding-bottom value is the same value as the total height of the footer ***/;
	background: url(../images/main_back.jpg) no-repeat top right;
}
/*** div.inner is wider than its container, div.outer, and so overlaps to the right, pushing
div.right into the proper position. IE expands div.outer instead, requiring a Tan hack to avoid 
blowing the layout apart. IE gets the original 100% width as in the Livingstone layout.
***/
.float-wrap {
	float: left;
	width: 100%;
	margin-left: -180px; /*** Same length as .outer padding-left but with negative value ***/
}
#content {
	float: right;
	margin-right: -180px; /*** Same length as .outer padding-left but with negative value ***/;
	width: 100%;
	border-top: 0px solid #F1F1F1;
/*** We have used border top here to push the content down, but other solutions can also be used ***/	position: relative; /*** IE needs this  ***/;
	top: 0;
	bottom: 0;
}
.contentWrap {
	padding: 10px;

	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 0.8em;
	color : #000000;
}
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/
/*************************
RIGHT COLUMN
**************************/
#right {
	float: right;
	width: 173px;
	margin-right: -173px; /** This negative margin-right value is in this example the same as the right column width. ***/;
	border-top: 0px solid #F1F1F1;
	position: relative; /*** IE needs this  ***/;
	border-top: 1px #FFFFFF solid;
	background: #797979;
}
DIV#right img {
display:block;
}
DIV#rightAdress, DIV#testbox {
	background:url(../images/info_back.gif) #000000;
	padding: 5px;
	margin: 5px;
	border-style: solid;
	border-width: 1px;
	border-color: #FFFFFF;
	font-size: 0.6em;
	color: #FFFFFF;
}
DIV#rightAdress img.icon {
	float: left;
	width: 17px;
	height: 15px;
}
DIV#rightAdress div.address {
	background: url(../images/icons/address.gif) no-repeat 0px 0%;
	padding: 0px 0px 0px 22px;
}
DIV#rightAdress div.phone {
	background: url(../images/icons/phone.gif) no-repeat 0px 50%;
	padding: 2px 0px 2px 22px;
}
DIV#rightAdress div.fax {
	background: url(../images/icons/fax.gif) no-repeat 0px 50%;
	padding: 2px 0px 2px 22px;
}
DIV#rightAdress div.email {
	background: url(../images/icons/email.gif) no-repeat 0px 50%;
	padding: 2px 0px 2px 22px;
}
DIV#rightAdress a {
	color: #FFFFFF;
}
DIV#rightAdress a:hover, DIV#rightAdress a:active, DIV#rightAdress a:focus {
	color: #2ED9D6;
}
/**************************
FOOTER
**************************/
#footer {
	height: 50px; /*** The drawback with this solution is that the height of the footer can't be flexible. If you add so much content to the footer that it extends 45px, you will get a vertical scrollbar and the content will overflow the footer if you don't set overflow to hidden ***/;
	margin-top: -50px; /*** By using a negative margin-top we now moves the footer up the same amount as the footer height to avoid vertical scrolling. Remember, if you use borders and padding on your footer you will have to calculate this in your negative margin-top value also. ***/;
	text-align: center;
	background: url(../images/footer_back.jpg) 100% 0 repeat-x #797979;
	font-size: 0.6em;
	color: #FFFFFF;
}
#footerLeft, #footerRight {
	height: 15px;
}
#footerLeft {
	float: left;
	width: 180px; /*** Same length as .outer padding-left ***/
}
#footerRight {
	float: right;
	width: 173px; /*** Same length as right plus some padding. If you get a horisontal scrollbar try to adjust this value. ***/
}
#footer p {
	bottom: 0;
	clear: both;
}
/**************************
TABLES
**************************/
table {
	font-size: 0.80em;
}
table.definitiontable {
	width: 100%;
	border-style: solid;
	border-width: 1px;
	font-size: 0.50em;
	color : #000000;
	padding: 4px;
}
td.definitionhead {
	border-style: none;
	border-width: medium;
	background-color: #556D79;
	color: #FFFFFF;
	height: 20px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
}
/**************************
HEADINGS
**************************/
h1 {
	font-size: 1.6em;
	font-weight: bold;
	color: #319493;
	margin-top: 10px;
	margin-bottom: 10px;
}
h2 {
	font-size: 1.4em;
	font-weight: bold;
	color: #319493;
	margin-top: 10px;
	margin-bottom: 10px;
	clear:both;
}
h3 {
	font-size: 1.2em;
	font-weight: bold;
	color: #319493;
	margin-top: 10px;
	margin-bottom: 10px;
}
h4 {
	font-size: 1em;
	font-weight: bold;
	color: #000000;
	margin-top: 10px;
	margin-bottom: 10px;
}
/**************************
MESSAGES
**************************/
.good {
	font-weight: bold;
	color: #009933;
}
.bad {
	font-weight: bold;
	color: #FF0000;
}
/**************************
LABELS
**************************/
label.left {
	float: left;
	text-align: right;
	width: 150px;
	margin: 2px;
}
label.right {
	float: left;
	margin: 2px;
}
/**************************
FORMS
**************************/
.submit input {
	margin-left: 4.5em;
	color: #000;
	background: #ffa20f;
	border: 1px outset #d7b9c9;
}
input.right {
	float: left;
	width: auto;
	clear: both;
	margin-left: 5.3em;
	margin: 2px;
	padding: 5px;
}
input.text, select, textarea, input.submit {
	color: #FFFFFF;
	border: 1px solid #000000;
	background-Color: #489999;
	float: left;
	margin: 2px;
	width: 60%;
}
input[type=checkbox].right, input.radio, input.submit {
	margin-left: 6.3em;
	margin: 2px;
	float: left;
}
form br {
	clear: both;
}
/**************************
LINES
**************************/
hr.dashed {
	border: 0px;
/* Für Firefox und Opera */	border-top: dashed 1px #007F82;
	border-bottom: dashed 1px #FFFFFF;
	clear: both;
	margin-top: 10px;
	margin-bottom: 10px;
}
/**************************
LISTS
**************************/
ul, ol {
	padding: 10px 10px 10px 50px;
}
li {
	padding: 0 0 0 10px;
}
/**************************
SITEMAP
**************************/
DIV#sitemap {
	padding: 1em 1.5em;
	line-height: 20px;
}
DIV#sitemap LI {
	padding: 0 0 0 24px;
	list-style-type: none;
}
DIV#sitemap LI {
	background: url(../images/sitemap/extm.gif) no-repeat 0% 0%;
}
DIV#sitemap LI.last {
	background: url(../images/sitemap/exlm.gif) no-repeat 0% 0%;
}
DIV#sitemap a.file {
	background: url(../images/sitemap/exfilebw.gif) no-repeat 0% 0%;
	padding: 0 0 0 17px;
}
DIV#sitemap a.file:hover, DIV#sitemap a.file:active, DIV#sitemap a.file:focus {
	background: url(../images/sitemap/exfilecolor.gif) no-repeat 0% 0%;
	padding: 0 0 0 17px;
}
DIV#sitemap a.folder {
	background: url(../images/sitemap/exfolderbw.gif) no-repeat 0% 0%;
	padding: 0 0 0 23px;
}
DIV#sitemap a.folder:hover, DIV#sitemap a.folder:active, DIV#sitemap a.folder:focus {
	background: url(../images/sitemap/exfoldercolor.gif) no-repeat 0% 0%;
	padding: 0 0 0 23px;
}
DIV#sitemap UL {
	padding: 0 0 0 24px;
	margin: 0 0 0 -24px;
	list-style-type: none;
}
DIV#sitemap UL {
	background: url(../images/sitemap/exim.gif) repeat-y 0% 0%;
}
DIV#sitemap UL.last {
	background-image: none;
}
/**************************
LEFT NAVIGATION
**************************/
DIV#leftNavi {
	float: left;
	width: 180px;
	border-top: 0px;
	background: #797979 100%;
	position: relative; /*** IE needs this  ***/;
	font-size: 0.8em;
}
DIV#leftNavi LI {
	list-style-type: none;
	display: block;
	border-top: 1px #FFFFFF solid;
	padding: 0;
	margin: 0;
}

DIV#leftNavi a {
		text-decoration: none;
}		
		
DIV#leftNavi a.file {
	background: url(../images/navLeft_Main_Inactiv.gif) no-repeat 3px 50%;
	padding: 4px 4px 4px 26px;
	display: block;
	background-color: #3EBBBB;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 0.9em;
}
DIV#leftNavi a.fileMaster {
	background: url(../images/navLeft_Main_Inactiv.gif) no-repeat 3px 50%;
	padding: 4px 4px 4px 26px;
	display: block;
	background-color: #7BD2D2;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 0.85em;
}
DIV#leftNavi a.file:hover, DIV#leftNavi A.fileMaster:hover, DIV#leftNavi a.file:active, DIV#leftNavi A.fileMaster:active, DIV#leftNavi a.file:focus, DIV#leftNavi A.fileMaster:focus {
	background: url(../images/navLeft_Main_Activ.gif) no-repeat 6px 50%;
	padding: 4px 4px 4px 26px;
	display: block;
	background-color: #2ED9D6;
	text-decoration: none;
}
DIV#leftNavi a.folder {
	background: url(../images/navLeft_Main_Inactiv.gif) no-repeat 3px 50%;
	padding: 4px 4px 4px 26px;
	display: block;
	background-color: #333333;
	font-weight: bold;
	color: #FFFFFF;
	display: block;
}
DIV#leftNavi A.folderactive {
	background: url(../images/navLeft_Main_Inactiv.gif) no-repeat 3px 50%;
	padding: 4px 4px 4px 26px;
	display: block;
	background-color: #319493;
	font-weight: bold;
	color: #FFFFFF;
}
DIV#leftNavi A.folder:hover, DIV#leftNavi A.folderactive:hover, DIV#leftNavi A.folder:active, DIV#leftNavi A.folderactive:active, DIV#leftNavi A.folder:focus, DIV#leftNavi A.folderactive:focus {
	background: url(../images/navLeft_Main_Activ.gif) no-repeat 3px 50%;
	background-color: #2ED9D6;
	padding: 4px 4px 4px 26px;
	text-decoration: none;
}
DIV#leftNavi UL {
	display: block;
	list-style-type: none;
	padding: 0;
	margin: 0;
}
/**************************
HEADER NAVIGATION
**************************/
DIV#topNavi {
	height: 26px;
	background-image: url(../images/head2_back.gif);
	width: 100%;
}
DIV#topNavi ul {
	width: auto;
	list-style: none;
	height: 26px;
	border: 0;
	float: right;
	padding: 0;
	margin: 0;
	display: block;
}
DIV#topNavi li {
	height: 26px;
	width: 100px;
	list-style: none;
	float: left;
	border: 0;
	border-left: 1px solid #FFFFFF;
	padding: 0;
	margin: 0;
	display: block;
}
DIV#topNavi a {
	color: #FFFFFF;
	font-weight: bold;
	padding: 5px;
	display: block;
	text-decoration: none;
	background: url(../images/nav_activ.gif);
	text-align: center;
	font-size: 0.8em;
}
DIV#topNavi a:hover, DIV#topNavi a:active, DIV#topNavi a:focus {
	background: url(../images/nav_activ_hover.gif);
	display: block;
}
DIV#topNavi a.topNaviAtive {
	background: url(../images/nav_inac.gif);
	display: block;
}
DIV#topNavi a.topNaviAtive:hover, DIV#topNavi a:active, DIV#topNavi a:focus {
	background: url(../images/nav_inac_hover.gif);
	display: block;
}
/**************************
LANGUAGE SELECTION NAVIGATION
**************************/
DIV#topLangNavi ul {
	width: auto;
	list-style: none;
	height: 26px;
	float: right;
	border: 0;
	padding: 0;
	margin: 0;
}
DIV#topLangNavi li {
	height: 26px;
	list-style: none;
	float: left;
	border: 0;
	padding: 0;
	margin: 0;
}
DIV#topLangNavi a.SiteMap:hover,DIV#topLangNavi a.SiteMap:active,DIV#topLangNavi a.SiteMap:focus {
		text-decoration: underline;
}
DIV#topLangNavi img.language {
	padding:5px;
}
DIV#topLangNavi a.SiteMap {
		color: #FFFFFF;
	font-weight: bold;
	padding: 5px 5px 5px 30px;
	display: block;
	font-size: 0.8em;
		text-decoration: none;

	background: url(../images/icons/sitemap_icon.gif) no-repeat 3px 50%;
}
/**************************
Product Navigation
**************************/
div#productNavi {
}
div#productNavi ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
/**************************
HYPERLINKS
**************************/

a.block {
	width: 165px;
	height: 75px;
	background: url(../images/a_small_block_hover.gif);
	text-decoration: none;
}
a.block:link, a.block:visited { 
background: url(../images/a_small_block.gif); 
}

a.blocklarge {
	width: 150px;
	height: 170px;
}
a.block, a.blocklarge {
	float: left;
	background-color: #797979;
	border: 1px #000000 solid;
	margin: 0 15px 15px 0;
	display: block;
	padding: 5px;
	color: #FFFFFF;
}
a.blocklarge:hover, a.blocklarge:active, a.blocklarge:focus {
}
a.block:hover, a.block:active, a.block:focus {
	background: url(../images/a_small_block_hover.gif);
	border: 1px #333333 solid;
}
a.Link {
	background: url(../images/Link_Icon.gif) no-repeat 3px 50%;
	padding: 2px 2px 2px 24px;
	white-space: nowrap;
	width: auto;
		color: #339A99;
			text-decoration: none;
}
a.Link:hover, a.Link:active, a.Link:focus {
	background: url(../images/Link_Icon_Hover.gif) no-repeat 3px 50%;
	width: auto;
		color: #000000;
		text-decoration: underline;
}
a.Pages {
text-decoration:none;
background:#fff;
border:1px solid #ccc;
padding:2px 5px;
color: #339A99;
}
a.Pages:hover, a.Pages:active, a.Pages:focus {
background:#EEEEEE;
border:1px solid #666666;
color: #000000;
}
span.PagesActive {
text-decoration:none;
background:#EEEEEE;
border:1px solid #666666;
padding:2px 5px;
color: #000000;
}
input.search {
text-decoration:none;
background:#EEEEEE;
border:1px solid #666666;
padding:2px 5px;
color: #000000;
}

/**************************
Images
**************************/
img {
	border: 0;
}
.img-shadow {
	float: left;
	margin: 12px 10px 6px 6px !important;
	margin: 12px 5px 6px 6px;
}
.img-shadow-product {
	float: left;
	margin: 12px 10px 6px 6px !important;
	margin: 12px 5px 6px 6px;
}
.img-shadow, .img-shadow-product {
	background: url(../images/shadowAlpha.png) no-repeat bottom right !important;
	background: url(../images/shadow.gif) no-repeat bottom right;
}
.img-shadow img {
	display: block;
	position: relative;
	background-color: #fff;
	border: 1px solid #797979;
	margin: -6px 6px 6px -6px;
	padding: 4px;
}
div.productMedImage {
	display: block;
	position: relative;
	background-color: #fff;
	border: 1px solid #797979;
	margin: -6px 6px 6px -6px;
	padding: 4px;
	width:402px;
	text-align: center; 
}
.ImageBackground{
	background: #CCCCCC;
	background-image: url(../images/product_background.jpg);
	width:400px;
	border:1px solid #000000;
}


 /* basic fieldset styling */ 
 fieldset {
padding:0px 10px 10px 10px; 
 background: url(../images/fieldset-back.gif) ;
 position: relative; 
 line-height: 1.5;
 margin-top:20px;
 border:1px solid #000000;
 }

 fieldset legend {
 line-height: 1.3 
 /* note this line-height value */;}


legend{ 
	font-size: 1.2em;
	font-weight: bold;
	color: #319493;
}

 
 /* IE6 fix */
* html fieldset.fixed legend {float: left; position: relative; margin-top: -1.20em /* equals actual line-height minus 0.35em */;}
* html p.comp {margin-bottom: 18px;}

 /* IE7 fix */
*:first-child+html fieldset.fixed legend {float: left; position: relative; margin-top: -1.20em /* equals actual line-height minus 0.35em */;}
*:first-child+html p.comp {margin-bottom: 18px;}