html,
body {
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

body {
	background: #fff;
	font-family: verdana, sans-serif;
	color: #000;
	font-size: 12px;
}

td {
	font-family: verdana, sans-serif;
	color: #000;
	font-size: 12px;
}

div#header {
	margin-top: 25px;
	height: 160px;
	background: #ebebeb;
	text-align: center;
	position: fixed;
	width: 100%;
	z-index: 1;
}

div#cart {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: 240px;
	margin-top: 38px;
	width: 230px;
	height: 37px;
	//border:1px solid red;
}

.versandinfo {
	-webkit-border-radius: 5px 5px 5px 0px;
    border-radius: 5px 5px 5px 0px;
    -webkit-box-shadow:  0px 0px 2px 1px rgba(0, 0, 0, 0.4);
    box-shadow:  0px 0px 2px 1px rgba(0, 0, 0, 0.4);
    background:white;
    color:black;
}

div#linkList {
	position:fixed;
	left:0px;
	margin: 0;
	width: 100%;
	height: 25px;
	top:0px;
	font-weight:bold;
	font-size:10px;
	background: #c8c8c8;
	padding-top: 6px;
	text-align: right;
	z-index: 1;
}

div#linkList a {
	color: black;
}

div#header>img#logo {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -224px;
	margin-top: -52px;
	image-rendering: optimizeSpeed;             /* GIVE ME SPEED 				  */
    image-rendering: -moz-crisp-edges;          /* Firefox                        */
    image-rendering: -o-crisp-edges;            /* Opera                          */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
    -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
}

div#content {
	z-index: 2;
	text-align: center;
	padding-top: 185px;
}

h1 {
	font-weight: bold;
	font-size: 24px;
	color: #fd8b27;
}

h2 {
	font-weight: bold;
	font-size: 14px;
	color: #000;
}

table.offers thead td,
table.cartTable thead td {
	font-size: 12px;
	font-weight: bold;
	border-bottom: 1px solid #868686;
}


table.offers tbody td,
table.cartTable tbody td {
	border-bottom: 1px solid #868686;
	padding-top:15px;
	padding-bottom: 15px;
	cursor: pointer;
}

table.cartTable tbody td {
	cursor: auto;
}

.no-select {
	-webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}