@charset "utf-8";
/*this is a wildcard selector. Targets every element on the page. Here we are stripping every element on the page of its margin and padding.  Also removes default margins and paddings various browsers have */
* {
	margin: 0px;
	padding: 0px;
}
/*text-align center used here to fix IE display problem.  Wrapper will text-align left to bring us back to normal.*/
a:focus {
	outline: none; /* Damit Firefox keinen aktiven Rand um Links zeigt */
	}
body {
	background-color: #FFFFFF;
	padding: 0px;
	margin: 0px;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
	background-image: url(images/gradback.jpg);
	background-repeat: repeat-x;
}
/*wrapper has position attribute so that any other DIVs within the wrapper, using the absolute positioning, uses the wrapper as the parent*/
#wrapper {
	padding: 0px;
	width: 960px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	text-align: left;
	background-color: #4a5c74;
	background-image: url(images/indexwrapperback.jpg);
	background-repeat: repeat-y;
}
/*header has position relative so that any nested elements us the header DIV as a referance and not the wrapper or body - the menu for example*/
#header {
	width: 960px;
	height: 127px;
	background-image: url(images/header.jpg);
	background-repeat: no-repeat;
	position: relative;
}
#logo {
	float: left;
	height: 74px;
	width: 213px;
	position: relative;
}

#topright {
	height: 90px;
	width: 177px;
	position: relative;
	top: 10px;
	float: right;
	right: 15px;
}

#search {
	height: 22px;
	position: relative;
	text-align: left;
	background-image: url(images/searchback.jpg);
	background-repeat: no-repeat;
	width: 168px;
	padding-left: 9px;
	padding-top: 6px;
}
.searchfield {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #999999;
	border: 1px solid #FFFFFF;
}
#headerlinks {
	position: relative;
	text-align: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	padding-top: 5px;
	padding-right: 8px;
	line-height: 14px;
}
#headerlinks a:link {
	font-size: 10px;
	color: #36424f;
	text-decoration: none;
}
#headerlinks a:visited {
	font-size: 10px;
	color: #36424f;
	text-decoration: none;
}
#headerlinks a:hover {
	font-size: 10px;
	color: #FB9121;
	text-decoration: none;
}
#menu {
	height: 15px;
	width: 630px;
	position: absolute;
	top: 103px;
	left: 20px;
}
#content {
	position: relative;
}
.sidemenu {
	height: 275px;
	width: 219px;
	float: left;
	margin-right: 4px;
	margin-left: 20px;
	background-image: url(images/menuback.jpg);
	background-repeat: no-repeat;
	margin-bottom: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	padding-top: 25px;
	margin-top: 20px;
}
.sidemenu ul {
	list-style-type: none;
	width:219px;
}

.sidemenu li a {
	color: #FFFFFF;
	display: block;
	height: 18px;
	text-decoration: none;
	padding-top: 5px;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
}

.sidemenu li a:hover {
	background-color: #5B7395;
	color:#FFFFFF;
}
#homebanner {
	float: left;
	height: 302px;
	width: 702px;
	margin-bottom: 20px;
	margin-top: 20px;
}
#homebox1 {
	float: left;
	width: 314px;
	margin-left: 20px;
	background-image: url(images/homebox1back.jpg);
	background-repeat: no-repeat;
	padding-top: 30px;
	padding-right: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	margin-bottom: 30px;
	text-align: justify;
}
#homebox2 {
	float: left;
	width: 287px;
	background-image: url(images/homebox2back.jpg);
	background-repeat: no-repeat;
	padding-top: 30px;
	padding-right: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	margin-bottom: 30px;
}
#homebox2 a:link {
	font-size: 11px;
	text-decoration: underline;
	color: #FFFFFF;
}
#homebox2 a:visited {
	font-size: 11px;
	color: #FFFFFF;
	text-decoration: underline;
}
#homebox2 a:hover {
	font-size: 11px;
	color: #212934;
	text-decoration: none;
}
#homebox3 {
	float: left;
	width: 282px;
	background-image: url(images/homebox3back.jpg);
	background-repeat: no-repeat;
	padding-top: 30px;
	margin-bottom: 30px;
}
#footer {
	height: 97px;
	background-image: url(images/footerback.jpg);
	background-repeat: no-repeat;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
	text-align: center;
	padding-top: 12px;
	width: 960px;
	clear: both;
}
#footer a:link {
	font-size: 10px;
	color: #626570;
	text-decoration: none;
}
#footer a:visited {
	font-size: 10px;
	color: #626570;
	text-decoration: none;
}
#footer a:hover {
	font-size: 10px;
	color: #FFFFFF;
	text-decoration: none;
}
#productwrapper {
	padding: 0px;
	width: 960px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	text-align: left;
	background-color: #FFFFFF;
	background-image: url(images/productwrapperback.jpg);
	background-repeat: repeat-y;
}
#breadcrumbs {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #CCCCCC;
	padding-left: 20px;
	height: 17px;
	padding-top: 3px;
	background-color: #4a5c74;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-left-color: #000000;
}
#breadcrumbs a:link {
	color: #CCCCCC;
	text-decoration: none;
}
#breadcrumbs a:visited {
	color: #CCCCCC;
	text-decoration: none;
}
#breadcrumbs a:hover {
	color: #FB9121;
	text-decoration: none;
}
#producttitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #FFFFFF;
	padding-left: 20px;
	height: 25px;
	font-weight: bold;
	background-color: #2f3b49;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-left-color: #000000;
	padding-top: 3px;
}
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF;
}
#productleft {
	width: 370px;
	float: left;
	margin-left: 20px;
	margin-bottom: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #2f3b49;
	padding-top: 25px;
	padding-right: 15px;
	padding-left: 15px;
	text-align: justify;
}
#productleft ul {
	margin-left: 30px;
	line-height: 16px;
}
#productleft ol {
	margin-left: 40px;
	line-height: 16px;
}

.productsubtitles {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #4a5c74;
}
.productsubtitlesgrey {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #999999;
}

#productright {
	float: left;
	width: 523px;
	padding-top: 25px;
}
#gallerytitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #4a5c74;
	float: left;
	width: 450px;
	padding-top: 20px;
	padding-left: 70px;
	padding-bottom: 10px;
}
#productimage {
	margin-left: 65px;
}
.gallerythumb1 {
	float: left;
	width: 124px;
	margin-left: 70px;
	margin-bottom: 20px;
	height: 70px;
	border: 1px solid #344660;
}
.gallerythumb2 {
	float: left;
	width: 124px;
	margin-left: 20px;
	margin-bottom: 20px;
	height: 70px;
	border: 1px solid #344660;
}

#contentpartners {
	width: 890px;
	float: left;
	margin-left: 20px;
	margin-bottom: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #2f3b49;
	padding-top: 40px;
	padding-right: 15px;
	padding-left: 15px;
	text-align: justify;
}
#contentpartners a:link {
	font-size: 11px;
	color: #36424f;
}
#contentpartners a:visited {
	font-size: 11px;
	color: #36424f;
}

#contentpartners a:hover {
	font-size: 11px;
	color: #FB9121;
	text-decoration: none;
}
#contentpartners td {
	vertical-align: top;
}


.productthumb {
	border: 1px solid #344660;
	margin-right: 20px;
	margin-bottom: 50px;
}
.prodlistlink {

	
}
.prodlistlink a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #4a5c74;
	text-decoration: none;
}
.prodlistlink a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #4a5c74;
	text-decoration: none;
}
.prodlistlink a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FB9121;
	text-decoration: none;
}
.contactmenu {
	height: 131px;
	width: 219px;
	float: left;
	margin-right: 4px;
	margin-left: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	margin-top: 20px;
}
.contactmenu ul {
	list-style-type: none;
	width:219px;
}

.contactmenu li a {
	color: #4a5c74;
	display: block;
	height: 18px;
	text-decoration: none;
	padding-top: 5px;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}

.contactmenu li a:hover {
	background-color: #5B7395;
	color:#FFFFFF;
}
.contactmenuselect  {
	background-color: #CCCCCC;
	color:#FFFFFF;
	display: block;
	height: 18px;
	text-decoration: none;
	padding-top: 5px;
	padding-left: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
}

#contactbanner {
	float: left;
	height: 156px;
	width: 700px;
	margin-bottom: 20px;
	margin-top: 20px;
}
#contactbox1 {
	float: left;
	width: 300px;
	margin-left: 245px;
	margin-bottom: 30px;
	border: 1px solid #344660;
}
#contactbox2 {
	float: left;
	padding-top: 40px;
	padding-right: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom: 30px;
	margin-left: 20px;
}
#contactbox3 {
	float: left;
	width: 900px;
	margin-left: 20px;
	padding-right: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	margin-bottom: 30px;
	color: #666666;
}


#contactbox2 a:link {
	color: #36424f;
	text-decoration: none;
}
#contactbox2 a:visited {
	color: #36424f;
	text-decoration: none;
}
#contactbox2 a:hover {
	color: #FB9121;
	text-decoration: none;
}
#formcontent {
	float: left;
	width: 670px;
	margin-bottom: 20px;
	margin-top: 20px;
	padding-left: 30px;
}

.formfields {
	background-color: #CCCCCC;
	border: 1px solid #262E3B;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #262E3B;
	margin-bottom: 10px;
}
.productborder {
	border: 1px solid #344660;
}
#sitemap {
	float: left;
	width: 400px;
	margin-left: 345px;
	padding-top: 30px;
	padding-right: 20px;
	font-size: 11px;
	margin-bottom: 30px;
}
#sitemap a:link {
	color: #36424f;
	text-decoration: none;
}
#sitemap a:visited {
	color: #36424f;
	text-decoration: none;
}
#sitemap a:hover {
	color: #FB9121;
	text-decoration: none;
}
#sitemap ul {
	padding-left: 20px;
}
#dealers {
	float: left;
	width: 670px;
	margin-bottom: 20px;
	margin-top: 20px;
	padding-left: 30px;
	font-size: 12px;
}
#dealers a:link {
	color: #36424f;
	text-decoration: none;
}
#dealers a:visited {
	color: #36424f;
	text-decoration: none;
}
#dealers a:hover {
	color: #FB9121;
	text-decoration: none;
}

#dealers ul {
	padding-left: 30px;
}
#dealers td {
	padding-bottom: 20px;
	vertical-align: top;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #2f3b49;
	padding-top: 10px;
}
#news {
	float: left;
	margin-left: 250px;
	padding-top: 40px;
	font-size: 10px;
}
#news a:link {
	color: #36424f;
	text-decoration: none;
	font-size: 12px;
}
#news a:visited {
	color: #36424f;
	text-decoration: none;
	font-size: 12px;
}
#news a:hover {
	color: #FB9121;
	text-decoration: none;
	font-size: 12px;
}
#news ul {
	padding-left: 20px;
}
#contentcareers {
	width: 890px;
	float: left;
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 12px;
	color: #2f3b49;
	padding-top: 40px;
	padding-right: 15px;
	padding-left: 15px;
}
#contentcareers ul {
	padding-left: 50px;
}
#contentcareers a:link {
	color: #36424f;
	text-decoration: none;
}
#contentcareers a:visited {
	color: #36424f;
	text-decoration: none;
}
#contentcareers a:hover {
	color: #FB9121;
	text-decoration: none;
}
#video {
	margin-left: 160px;
	padding-top: 30px;
	padding-right: 20px;
	font-size: 10px;
	margin-bottom: 30px;
}
#prodpage {
	margin-left: 100px;
}
#prodpage ul {
	padding-left: 25px;
}

#prodpage a:link {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #4a5c74;
	text-decoration: none;
}
#prodpage a:visited {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #4a5c74;
	text-decoration: none;
}
#prodpage a:hover {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FB9121;
	text-decoration: none;
}
#productlistleft {
	width: 370px;
	float: left;
	margin-left: 20px;
	margin-bottom: 20px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #2f3b49;
	padding-top: 25px;
	padding-right: 15px;
	padding-left: 15px;
	text-align: justify;
}
#productlistright {
	float: left;
	width: 370px;
	padding-top: 25px;
}
#contentpartners ul {
	margin-left: 30px;
	line-height: 16px;
}
.floatright {
	float: right;
	margin-top: 25px;
}
.productsubtitles14 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #4a5c74;
}
#pdf {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	float: left;
	width: 450px;
	padding-top: 10px;
	padding-left: 70px;
	padding-bottom: 10px;
	font-size: 11px;
}
#pdf a:link {
	color: #999999;
	text-decoration: none;
}
#pdf a:visited {
	color: #999999;
	text-decoration: none;
}
#pdf a:hover {
	color: #FB9121;
	text-decoration: none;
}
#righttable {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	float: left;
	width: 450px;
	padding-top: 20px;
	padding-left: 70px;
	padding-bottom: 10px;
	color: #FFFFFF;
}
#dealerlink
{
	display: block;
	width: 170px;
	height: 25px;
	background-image: url(images/dealerlink.jpg);
	background-repeat: no-repeat;
	background-position: 0px -25px;
}
#dealerlink:hover
{ 
  background-position: 0 0px;
}
#dealerlink span
{
  display: none;
}
#newsletterlink
{
	display: block;
	width: 130px;
	height: 25px;
	background-image: url(images/newsletterlink.jpg);
	background-repeat: no-repeat;
	background-position: 0px -25px;
}
#newsletterlink:hover
{ 
  background-position: 0 0px;
}
#newsletterlink span
{
  display: none;
}
#slider {
    position:relative;
    width:700px; /* Change this to your images width */
    height:300px; /* Change this to your images height */
    background:url(images/loading.gif) no-repeat 50% 50%;
}
#slider img {
    position:absolute;
    top:0px;
    left:0px;
    display:none;
}
#slider a {
    border:0;
    display:block;
}

