/* ------------------------ // CSS resets \\ ------------------------ */
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,
b, u, i, center,
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-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ------------------------ // end CSS resets \\ ------------------------ */

/* ------------------------ // grid-system \\ ------------------------ */
/*
	Variable Grid System.
	Learn more ~ http://www.spry-soft.com/grids/
	Based on 960 Grid System - http://960.gs/

	Licensed under GPL and MIT.
*/


/* Containers
----------------------------------------------------------------------------------------------------*/
.container_5 {
	margin-left: auto;
	margin-right: auto;
	width: 960px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/

.grid_1,
.grid_2,
.grid_3,
.grid_4,
.grid_5 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 6px;
	margin-right: 6px;
}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
	margin-left: 0;
}

.omega {
	margin-right: 0;
}

/* Grid >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .grid_1 {
	width:180px;
}

.container_5 .grid_2 {
	width:372px;
}

.container_5 .grid_3 {
	width:564px;
}

.container_5 .grid_4 {
	width:756px;
}

.container_5 .grid_5 {
	width:948px;
}



/* Prefix Extra Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .prefix_1 {
	padding-left:192px;
}

.container_5 .prefix_2 {
	padding-left:384px;
}

.container_5 .prefix_3 {
	padding-left:576px;
}

.container_5 .prefix_4 {
	padding-left:768px;
}



/* Suffix Extra Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .suffix_1 {
	padding-right:192px;
}

.container_5 .suffix_2 {
	padding-right:384px;
}

.container_5 .suffix_3 {
	padding-right:576px;
}

.container_5 .suffix_4 {
	padding-right:768px;
}



/* Push Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .push_1 {
	left:192px;
}

.container_5 .push_2 {
	left:384px;
}

.container_5 .push_3 {
	left:576px;
}

.container_5 .push_4 {
	left:768px;
}



/* Pull Space >> 5 Columns
----------------------------------------------------------------------------------------------------*/

.container_5 .pull_1 {
	left:-192px;
}

.container_5 .pull_2 {
	left:-384px;
}

.container_5 .pull_3 {
	left:-576px;
}

.container_5 .pull_4 {
	left:-768px;
}




/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/

/* http://sonspring.com/journal/clearing-floats */

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

/* http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack */

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}
/* ------------------------ // end grid-system \\ ------------------------ */


/* ------------------------ // IE .png fix \\ ------------------------ */
img, div {
behavior: url(iepngfix.htc);
}
/* ------------------------ // end IE .png fix \\ ------------------------ */


/* ------------------------ // page elements \\ ------------------------ */
body {/*background:#99c4ed url('pics/site_2.jpg') no-repeat top center;*/
      background:#99c4ed;
      /*text-align:center;*/
      overflow:hidden; 		/* needed to eliminate scrollbars caused by the background image */
      padding:0;margin:0;		/* necesarry for the raster to fill the screen */
      height:100%;width:100%;
}
p, h1, h2, h3, h4, tr, th, li, a, label, input {font-family: Arial,Helvetica,sans-serif;
    color:#00448a;
    font-size: 13px;
}
p {line-height:140%
}
strong {font-weight:bold;
}
em {font-style:italic;
}
a {text-decoration:none;
        font-weight:bold;
        padding:3px;
}
a:hover {background:#00448a;
        color:#FFFFFF;
        padding:3px;
}
a:visited {
}
h1 {font-size: 24px;
}
h2 {font-size: 20px;
}
h3 {font-size: 14px;
}
h4 {font-size: 10px;
}


/* ------------------------ // wrapper \\ ------------------------ */
#bgimg {
	position:absolute;
	z-index: -1;
}

#realBody{
	position:absolute;
	z-index: 5;				/* Place the new body above the background image */
	overflow:auto; 			/* restore scrollbars for the content */
	height:100%;width:100%;	/* Make the new body fill the screen */
	background: url('pics/raster.png'); /* this is just a fancy raster, you can remove it; I kinda like it though */
        text-align:center;
}

#wrapper {/*height:1000px;*/
          margin: 0 auto;
          text-align:left;
          overflow:hidden;

}
/* ------------------------ // end wrapper \\ ------------------------ */


/* ------------------------ // header \\ ------------------------ */
#header {background: url('pics/header.gif') no-repeat top left;
    border: 2px solid #e5ecf3;
    border-right: none !important;
    height: 96px;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
}
.logo_text {text-indent: -9999px;    
}
#subnavi {background: #e5ecf3;
    border-style:solid none solid solid;
    border-width:2px;
    border-color:#E5ECF3;
    margin-bottom:10px;
    text-align:right;
    font-size:9px !important;
    height:20px;
    padding-bottom:3px;
}

.icon_small {background:transparent url(pics/spritesheet.gif) no-repeat scroll 0 0;
    border:0;
    height:17px !important;
    width:17px !important;
    margin:0 10px -5px 0;
}
#nav_search {
    display:inline;
    font-size:9px;
    font-weight:normal;
}

#subnavi a {margin:0 50px 0 5px;
    font-size:9px !important;
}

#subnavi a:hover{/*padding-top:10px;
                 padding-bottom: 20px;*/
                 margin:0 50px 0 5px;
                 font-size:9px !important;
}

#subnav_search {
    display:inline;
}
#nav_search_button {
    border: 1px solid #00448a;
    background:#e5ecf3;
}
#breadcrumbs {
    margin: 4px 0 0 10px;
}

#contact{background-position:-118px -93px;
    display:inline;
}
#contact:hover{
}
#disclaimer{background-position:-70px -93px;
    display:inline;
}
#disclaimer:hover{
}
#agb{background-position:-237px -93px;
    display:inline;
}
#agb:hover{
}
/* ------------------------ // end header \\ ------------------------ */


/* ------------------------ // navi \\ ------------------------ */
#navi {
    border: 2px solid #e5ecf3;
    /*background: url('pics/transp_nav.png') repeat top left;*/
    background-color: #FFFFFF;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    margin-top:135px;
    float:left;
    font-size:11px;
}
#menu {display:inline;
    list-style-type:none;
    list-style-image:none;
    margin: 0;
    padding: 0;
}

#menu li {/*display:inline;*/
list-style: none;
padding:0 0 0 5px;
       margin:5px 0;
}

#menu_head {background:#e5ecf3;
    color:#00448a;
    text-align:center;
}

#menu a {font-size:14px;
    color:#00448a;
    text-decoration:none !important;
    display:block;
    padding:0px !important;
}

#menu a:hover {color:#FFFFFF;
    background-color: #00448a;
    padding:0px !important;
    /*font-weight:bold;*/
}

#menu ul li {padding:0 0 0 10px;
}
#menu ul ul li {padding:0 0 0 20px;
}
#menu ul ul ul li {padding:0 0 0 30px;
}
#menu ul ul ul ul li {padding:0 0 0 40px;
}
#menu ul ul ul ul ul li {padding:0 0 0 50px;
}

/*#menu li:hover {
    background: #e5ecf3;
    font-weight:bold;
    color: #FFFFFF;
}*/

.active {background:#00448a !important;
    font-style:italic !important;
}

.active a {color:#e5ecf3 !important;}

.active a:hover {color:#e5ecf3 !important;
    background:#00448a !important;}

#menu_title {
}
/* ------------------------ // end navi \\ ------------------------ */


/* ------------------------ // content \\ ------------------------ */
#content {
    background:#e5ecf3;
    float:left;
    border-style:solid none solid solid;
    border-width:2px;
    border-color:#E5ECF3;
    margin-bottom:30px;
}

.prod_details {
width:100%;
margin: 20px 0 0 0;
}
.prod_details th {text-align:center;
                 background:#FFFFFF;
                 border:none;
}
.prod_details th img {margin:0 0 10px 2px;
}
.prod_details td {background:#00448a; 
                 text-align:center;
                 color:#FFFFFF;
                 height:20px;
                 vertical-align:middle;
}
.line {background-color:#00448a;
      height:1px;
      border:none;
}

.product_box {background:#FFFFFF;
    border-right: 1px solid #999999;
    border-bottom: 1px solid #999999;
    margin: 10px;
    padding: 10px;
}
.product_box p {
}
.product_box p em.artnr {
}

strong.oldprice {
		border:1px solid #00448A;
		float:right;
		font-size:11px;
		margin:2px 5px 0 60px;
		padding:5px;
		text-decoration:line-through;
}

strong.price {border:1px solid #00448A;
    font-size:12px;
    float:right;
    padding:5px;
}

strong.soprice {border:2px solid #FF0000;
    font-size:12px;
    float:right;
    padding:5px;
    color:#FF0000
}

strong.oprice {border:2px solid #88FF55;
    font-size:12px;
    float:right;
    padding:5px;
    color:#88FF55
}


.product_box h2 {
    text-align:center;
}

.product_image {
    border:2px solid #FFFFFF;
    vertical-align:text-top;
    text-align:center;
    display:block;
    margin: 0 auto;
    padding: 0 !important;
    }

.product_image:hover {
vertical-align:text-top !important;
text-align:center !important;
display:block !important;
margin:0 auto !important;
padding: 0 !important;
background: #FFFFFF !important;
border: 2px solid #00448a;
}


.prod_img {
    display: block;
    margin: 0 auto;
}

.assertion_img {
    margin-top:30px;
    display:block;
    width:110px !important;
    float:left;
}

.centered_img {
    margin: 20px auto;
    display:block;
    width:110px !important;
}

.right_img {
        margin:30px 0px;
        margin-left:15px !important;
    display:block;
    width:200px !important;
    float:right;
}

.no_hover {
    margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

.no_hover:hover {
    margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
        color: #00448A !important;
}

.assertion_txt {
    margin-top:30px;
}

.product_preview {
    height:50px;
    display: block;
    background:#FFFFFF;
    border-top: 1px solid #e5ecf3;
    border-left: 1px solid #e5ecf3;
    border-right: 1px solid #999999;
    border-bottom: 1px solid #999999;
    margin: 10px;
    padding: 5px;
}

.product_preview .artnr {line-height:30px;}

.product_preview:hover {
background-color: #e5ecf3 !important;
color: #00448A !important;
border: 1px solid #00448A !important;
margin: 10px !important;
padding: 5px !important;
}

.prod_thumbnail {
    height:100%;
    float:left;
    margin: 0px 30px;
}

.teaser {
    background:#FFFFFF;
    border: 2px solid #88FF55;
    margin: 10px;
    padding: 10px;
}

.teaser h1 {margin-bottom: 10px;}

.teaser_killer {text-align:center;
    margin-top:30px;
}

.teaser_image {
width:200px;
vertical-align:text-top;
text-align:center;
float:right;
display:block;
border: 2px solid #FFFFFF;
}

.teaser_image:hover {
vertical-align:text-top !important;
text-align:center !important;
float:right !important;
display:block !important;
margin:0 !important;
padding: 0 !important;
background: #FFFFFF !important;
border: 2px solid #00448a;
}

.caption {
margin: 10px 0 10px 0;
font-size: 8px;
color: #999999;
}

.teaser img {
border:none;
width:90%;
}

.action_img {
    width:200px !important;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.footer_box {
    background:#FFFFFF;
    border: 2px solid #88FF55;
    margin: 10px;
    padding: 10px;
}

.box {
    min-height:100px;
    margin: 10px;
    padding: 10px 10px 10px 70px;
}

.box p {color:#FFFFFF;
        font-weight:bold;
}   

.box h3 {margin-bottom: 10px;
color: #FFFFFF;}

.red {background:url('pics/warning.gif') #FF0000 no-repeat scroll 0 0;
    border: 2px solid #FF0000;
    background-position:10px center;}
.green {background:url('pics/finger.gif') #88FF55 no-repeat scroll 0 0;
    border: 2px solid #88FF55;
    background-position:10px center;}

.footer_box h3 {margin-bottom: 10px;}


/* ------------------------ // end content \\ ------------------------ */


/* ------------------------ // right \\ ------------------------ */
#right {/*position:fixed;
        margin-top: 134px;*/
    
}
/* ------------------------ // end right \\ ------------------------ */


/* ------------------------ // basket \\ ------------------------ */
#basket {background: url('pics/basket.gif') no-repeat top left;
        border: 2px solid #e5ecf3;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        float:left;
        margin: 0 0 10px 0;
        width:100%;
        height: 290px;
}
#basket p {
    text-align:center;
    vertical-align:bottom;
    padding-top:240px;
    font-weight:bold;
    color:#FFFFFF;
}

#basket a {color: #FFFFFF !important;}
/* ------------------------ // end basket \\ ------------------------ */


/* ------------------------ // contactbox \\ ------------------------ */
#contactbox {-moz-border-radius-bottomleft:10px;
        -moz-border-radius-bottomright:10px;
        -moz-border-radius-topleft:10px;
        -moz-border-radius-topright:10px;
        background:transparent none repeat scroll 0 0;
        border:2px solid #E5ECF3;
        width:100%;
        height:130px;
        margin: 0 0 0 0px;
        font-size:11px;
}

#contactbox a {
    color:#FFFFFF;
    display:block;
    margin:6px 0;
    padding:5px;
}
.icon {background:transparent url(pics/spritesheet.gif) no-repeat scroll 0 0;
    height:28px !important;
    width:28px !important;
    border:0;
    margin:0 5px -5px 0;
}
.contact_label {
    font-size:11px;
    padding:8px 0 0;
    position:absolute;
}
#newsletter{
    background-position:0 -37px;
}
#newsletter:hover{
}
#printcatalogue{background-position:-40px -37px;
}
#printcatalogue:hover{
}
#callback {background-position:-159px -37px;
}
#callback:hover {
}
/* ------------------------ // end contactbox \\ ------------------------ */


/* ------------------------ // end page elements \\ ------------------------ */

