/* Legt das Grundlayout des Shops fest */

html, body, div, p, h1, h2, h3, h4, h5, h6, blockquote, ol, ul, li, dl, dt, dd, td, form, fieldset, a, img, button {
     margin: 0;
     padding: 0;
     border: 0;
}

/* 'Jello Mold' page construction technique based on http://www.positioniseverything.net/articles/jello.html */
body {
	margin: 0;
	padding: 0 364px; /* the critical side padding that sets the natural min-width! */ 
	text-align: center; /* centers the #sizer element in IE5.x/win */
	font-family:Verdana;
	font-size:10px; /* this body font-size fixes an IE bug and maintains x-browser uniformity */ 
	/*background-image:url(images/bg_tile.jpg);  this BG tiles the area outside the columns */
	background-repeat:repeat-x;
	background-color:#FFF;
	color:#333333;
}

h1, h2, h3, h4, h5, h6 {color: #333333;}

/*Typographics styles adapted from http://www.thenoodleincident.com/tutorials/typography/ */
h1 {
	margin:0;
	font-size: 1.6em;
	font-weight: normal;
}
h2 {
	margin: 0;
	font-size: 1.5em;
	font-weight: normal;
}
h3 {
	margin: 0.5em 0;
	font-size: 1.4em;
	font-weight: normal;
}
h4 {
	margin: 0.5em 0;
	font-size: 1.2em;
	font-weight: bold;
}
h5 {
	margin: 0.5em 0;
	font-size: 1.0em;
	font-weight: bold;
}
h6 {
	margin: 0.5em 0;
	font-size: 0.8em;
	font-weight: bold;
}
p  {
    margin: 1em 0;
    line-height:1.4;
}
a {
	text-decoration:none;
	color:#333333;
}

a:hover {text-decoration:underline;}

#sizer 
{
	margin: 0 auto; /* centers #sizer in standard browsers */
	padding: 0;
	width:300px; /* this value controls liquidity; 0% = full rigid, 100% = full liquid */
	text-align: left; /* resets the default text alignment for the page */
}
#expander { /* Any % height here causes IE to lose the neg right margin */
	position: relative; /* makes #expander visible outside #sizer in IEwin */
	min-width: 1024px; /* Critical Safari fix! */ /* This prevents Safari from losing the negative margins in narrow windows */ 
	min-height: 1px; /* This harmless declaration gives Layout to IE7, which can't read the Holly hack below */
	margin: 0 -362px 0 -362px; /* neg side margin values should be < or = to side body padding */
	background: #FFFFFF;
	background-repeat:repeat-y;
	background-position:top right;
}

/* Holly hack for IE \*/
* html #expander { height: 0; }
/* #expander must have "height: 0" in IEwin bug fixing */
/* The above is a modified Holly hack for #expander, with zero substituted for the 
usual 1% height value. Any % value on this element causes a horrendous IE bug! */ 


#wrapper { 
	width: 100%; /* helps IE get the child percentages right. */
}

/* http://positioniseverything.net/easyclearing */
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-table;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */

#skiptocontent{
	position:absolute;
	margin-left:-1000px;
}

#header 
{
	height:154px;
	background: url('images/header_center.jpg') no-repeat left top;
	border-left: 1px solid #999999;
	border-right: 1px solid #999999;
	
}


#title
{
	height:127px;
	background: url('images/bg_tile.jpg') repeat-x left bottom;
}

#title h2
{
	display: none;
}

#logo
{
  margin-left: 20px;
	height: 100px;
	width: 200px;
	background: url('images/logo_head.png') no-repeat;
}

#mainmenu
{
	padding-left: 210px;
}
#mainmenu a
{
  text-align: center;
  margin: 0 20px 0 20px;
}

#mainmenu h2
{
	display: none;
	
}


#content
{
	background: url('images/shadow_top.jpg') repeat-x left top;
}

#leftcolumn{
	background: url('images/shadow_top.jpg') repeat-x left top;
	float:left;
	width:200px;
  margin-bottom: 20px;
	margin-right:-3px; /* IE 3px display bug fix (in conjunction with the rule following below)*/
	background-color:#FFFFFF;
	font-size:1em;
}
html>body #leftcolumn{margin-right:0;}

#rightcolumn{
	background: url('images/shadow_top.jpg') repeat-x left top;
	float:right;
	clear: right;
	width:200px;
	margin-bottom: 20px;
	margin-left:-3px; /* IE 3px display bug fix (in conjunction with the rule following below)*/
	background-color:#FFFFFF;
	font-size:1em;
}
html>body #rightcolumn{margin-left:0;}

#centercolumn{
	height:1%;
	margin:0;
}
html>body #centercolumn {
	margin-left:200px;
	margin-right:200px;
}

#centercolumn #maincontent
{
	font-size: 1.0em;
	margin: 0 10px;
	overflow: auto;
}

.pageoptions
{
	font-size: 1.0em;
	color: #999;
}

#footer
{
	height:27px;
	display:block;
	clear: both;
	margin-top: 20px;
	background-image: url('images/footer_center.jpg');
	background-repeat:no-repeat;
	background-position: left top;
	color: #FFF;
	padding: 10px;
}
#footer a
{
	font-weight: bold;
	color: #FFF;
}

.ib-fix li { display:-moz-inline-box; -moz-box-orient:vertical;
               display:inline-block; vertical-align:top; word-wrap:break-word; }
  * html .ib-fix li { display:inline; }
  * + html .ib-fix li { display:inline; }
  .ib-fix li > * { display:table; table-layout:fixed; overflow:hidden; }

