﻿/* ------------------------------------------------------------

Breyer GmbH - Acryl & Licht
Design: Cedric May, nonstop-design.de
Code: Bernhard Vogler, bernhardvogler.de

------------------------------------------------------------ */

/* Basis
------------------------------------------------------------ */

* {
	font-size: 1em;
	margin: 0;
	padding: 0;
}

body {
	background: #A3B9B6 url(/images/body.png);
	color: #6A8581;
	font-family: "Helvetica Neue", Helvetica, FreeSans, "Free Sans", Arial, sans-serif;
	font-size: 60.5%;
	padding-top: 160px;
	text-align: center;
}

img {
	border: none;
}

a:link, a:visited {
	color: #536865;
	text-decoration: underline;
}

h1 {
	font-size: 2.1em;
	border-bottom: 1px solid #6A8581;
	margin-bottom: .5em;
}

h2 {
	font-size: 1.5em;
	margin-top: .3em;
}

#maincontent p, #maincontent td, #maincontent ul, #maincontent ol {
	font-size: 1.2em;
	line-height: 1.5em;
}

#maincontent p, #maincontent ul, #maincontent ol {
	margin: .5em 0;
}

#maincontent img {
	padding: 5px;
	border: 1px solid #E7E8E2;
}

ul {
	list-style-position: inside;
	list-style-type: square;
}

/* Layout
------------------------------------------------------------ */

div#header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 179px;
	background-repeat: repeat-x;
	z-index: 2;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/header.png', sizingMethod='scale');
}

html>body #header {
	background-image: url(/images/header.png);
}

@media screen {
	body>div#header {
		position:fixed;
	}
}
* html body {
	overflow: hidden;
} 
* html div#content {
	height:100%;
	overflow:auto;
}

#header img {
	font-size: 4em;
}

#maincontent, #header-inner {
	margin: 0 auto;
	text-align: left;
}

#content {
	background: transparent url(/images/content.png) repeat-x fixed;
	padding-top: 30px;	
}

html>body #content {
	background-position: 0 160px;
}

#maincontent {
	background-color: #F5F5F5;
	font-family:  Verdana, "Mukti Narrow", "Gargi_1.7", "Gargi 1.7", Gargi, sans-serif;
	margin-bottom: 15px;
	width: 770px;
}

/* Doofer IE muss wegen Hack leider in noch doeoeferen Quirks Mode */
#maincontent-inner {
	padding: 20px;
}

#header-inner {
	width: 770px;
}

#logo {
	float: left;
}

#links {
	background-color: #F7F7F7;
	border: 1px solid #E7E8E2;
	font-family: "Lucida Grande", "Lucida Sans", Verdana, "Mukti Narrow", "Gargi_1.7", "Gargi 1.7", Gargi, sans-serif;
	font-size: 11px;
	float: right;
	line-height: 20px;
	margin-top: 10px;
	padding: 6px;
}

#links a {
	text-decoration: none;
}

p.shop a {
	clear: right;
	display: block;
	float: right;
	margin-top: 54px;
	height: 27px;
	width: 167px;
}

p.shop a.link {
	background: url(/images/shop.png) no-repeat;
	text-indent: -10000px;
}

p.shop a.cart {
	background: url(/images/shop_blank.png) no-repeat top right;
	font-size: 1.4em;
	font-weight: bold;
	padding-right: 50px;
	padding-top: 6px;
	text-align: right;
	text-decoration: none;
}

div.images {
	float: right;
	margin-left: 20px;
	width: 262px;
}

div.images img {
	margin-bottom: 10px;
}

#footer {
	background: url(/images/footer.png) no-repeat center;
	color: #ffffff;
	font-family: "Lucida Grande", "Lucida Sans", Verdana, "Mukti Narrow", "Gargi_1.7", "Gargi 1.7", Gargi, sans-serif;
	font-size: 1.2em;
	line-height: 1.7em;
	margin-bottom: 3em;
}

#footer a {
	color: #ffffff;
	text-decoration: none;
}


/* Navigation */

#nav {
	clear: both;
	font-size: 15px;
	line-height: 31px;
	position: absolute;
	top: 131px;
}

#nav li {
	background-position: top left;
	display: inline-block;
	float: left;
	list-style: none;
	padding: 0 5px;
	text-shadow: #333 2px 2px 2px;
}

#nav li.current {
	padding: 0;
}

#nav li a {
	color: #fff;
	text-decoration: none;
}

#nav li.current a {
	color: #5d6a69;
}

#nav li.current a {
	background-position: top left;
	background-repeat: repeat-x;
	color: #5d6a69;
	padding: 0 7px;
	text-shadow: 0px 0px 0px;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/nav_main.png', sizingMethod='scale');
}

html>body #nav li.current a {
	background-image: url(/images/nav_main.png);
}

#nav li div {
	display: inline-block;
}

#nav li a {
	padding: 0 10px;
}

#nav li.current .left, #nav li.current .right, #nav li.current a {
	display: block;
	float: left;
	height: 50px;
}

#nav li.current .left, #nav li.current .right {
	width: 19px;	
}

#nav li.current .left {
	background-repeat: no-repeat;
	background-position: top left;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/nav_left.png', sizingMethod='crop');
}

html>body #nav li.current .left {
	background-image: url(/images/nav_left.png);
}

#nav li.current .right {
	background-repeat: no-repeat;
	background-position: top right;
	filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/nav_right.png', sizingMethod='crop');
}

html>body #nav li.current .right {
	background-image: url(/images/nav_right.png);
}

.clear {
	clear: both;
}


/* Shop
------------------------------------------------------------ */

#maincontent p.flash {
	background-color: #c2dedb;
	border: 1px solid #A3B9B6;
	padding: 3px 5px;
}

#maincontent table {
	border-collapse: collapse;
	border-spacing: 0;
}

#catlist {
	margin-top: 10px;
}

#catlist div {
	float: left;
	text-align: center;
	width: 120px;
	padding-right: 26px;
}

#catlist p.image {
	border: 1px solid #E7E8E2;
	margin: 0 auto;
}

#catlist p.image a {
	display: block;
}

#catlist p.image span {
	display: table-cell;
	vertical-align: middle;
	height: 100px;
}

p.backlinkÊ{
	text-align: right;
}

#maincontent .showcategory td {
	border-bottom: 1px solid #E7E8E2;
	padding: 5px 3px;
}

#maincontent .showcategory img, #catlist img, #catlist p.image {
	padding: 3px;
}

.info {
	float: right;
	margin-left: 2em;
	text-align: right;
}

.info form {
	width: inherit;
}

.info img {
	margin-bottom: .5em;
}

#maincontent p.image {
	color: #777;
	text-align: center;
}

#maincontent .info .price {
	font-weight: bold;
	font-size: 1.5em;
}

#maincontent .info p.image {
	border: 1px solid #E7E8E2;
	display: table-cell;
	height: 200px;
	width: 250px;
	vertical-align: middle;
}

#cartmenu {
	border-left: 1px solid #333333;
	padding-left: 10px;
	float: right;
}

#cartmenu ul {
	list-style-position: inside;
}

table {
	line-height: 2em;
	margin: 5px 0;
	vertical-align: top;
}

th {
	font-size: 1.4em;
	text-align: left;
}



table .price, .total .text, table .quantity {
	padding-right: 10px;
	text-align: right;
}

.total {
	font-weight: bold;
}

.total .price {
	border-bottom: 2px solid #333333;
	border-top: 1px solid #333333;
}

form {
	width: 500px;
}

fieldset {
	border: 1px solid #E7E8E2;
	margin-left: -8px;
	margin-bottom: 5px;
	margin-top: 5px;
	padding: 7px;
	position: relative;
}

fieldset legend {
	font-size: 1.4em;
	font-weight: bold;
	padding-right: .3em;
}

form label {
	font-size: 1.4em;
	float: left;
	width: 10em;
}

form input, form textarea, form select {
	font-size: 1.3em;
	clear: right;
}

label, input, select, textarea {
	line-height: 1.5em;
}

form div {
	clear: both;
}

form div div {
	margin-bottom: .5em;
}


/* Errors */

.invalid {
	border: 2px solid #c00;
}

/* Fehlerseiten */

#error #content {
	background-image: none;
}

body#error, #error #maincontent {
	background: #fff;
	border-color: #fff;
}

#error #maincontent {
	margin-top: 10px;
	width: 500px;
}

#error h1 {
	font-size: 3em;
}