/*  CSS Reset 
    http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/
*/
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,
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-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: Arial, Sans-Serif;
	vertical-align: baseline;
}

body {
	line-height: 1;
	color: #333;
}

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

caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

/* -- End CSS Reset */


/*  2 Spalten Layout, basiert auf: 
    http://www.456bereastreet.com/lab/developing_with_web_standards/csslayout/2-col/
    aber einige der spaeteren Schritte weggelassen, da momentan nicht benoetigt 
*/

body {
    min-width:990px;
    background: #bbbbbb;
    }
    
    
#wrap {
    background:#fff;
    margin:20px auto;
    width:990px;
}

#main {
    float:left;
    width:600px; /* (without paddin width would be 640px) */
    padding: 0 20px;
    border-right: 1px solid #dddddd;
}

#sidebar {
    float:right;
    position: relative; /* for scrollFollow jquery plugin to work.. */
    right: 0;
    width:330px; /* etw enger als noeting lassen um IE bug zu verhindern (mit Footer)*/
}

#footer {
    clear:both;
    text-align: center;
    padding: 40px 20px 10px 20px;
}
    
/* Ende 2-Spalten Layout */

/* Basic font styles */

h1, h2, h3 {
    font-weight: bold;
    color: #333;
}

h1 {
    font-size: 1.8em;
    margin: 1.5em 0 0.3em 0;
    letter-spacing: -0.03em;
}

#sidebar h1 {
    margin-top: 2.5em;
}

h2 {
    font-size: 1.5em;
    margin: 0.5em 0;
    border-top: 1px #dddddd solid;
    padding-top: 0.5em;
    letter-spacing: -0.03em;
}

#wrap h3 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.8em;
}

strong {
    font-weight: bold;
}

p, td, ul, address, h3 {
    line-height:1.4em;
    font-size:0.9em;
    margin-bottom:1.2em;
}

em {
    font-style: italic;
}


/* Link styles */

a {
    color:#1258CD;
}

#wrap a:hover {
    color:#0033CC;
	background-color:#E9F2FE;
}

a:visited {
    color:#4B80D6;
}


/* Price table */
table {
    width: 99%;
}

td {
    padding: 0 20px 5px 20px; 
    border-left:1px solid #ddd;
}

td.first {
    padding-left: 1px;
    border-left: none;
}

/* Form, Input fields */

input.textInput, textarea {
    font-size: 0.9em;
    font-family: Arial;
    color: #333;
    padding: 3px;
    border: solid #999 1px;
    width: 220px;
    vertical-align:top;
}

input.textInput:hover, textarea:hover,
input.textInput:focus, textarea:focus  {
	border: #111 solid 1px;
}

input.textInput:focus, textarea:focus  {
	background: #FFFDE1;
}

input.submit, input.textInput {
    margin-bottom: 1em;
}

.submit {
    width: auto;
    margin-top:1em;
}

textarea {
    width: 300px;
    height: 120px;
}

/* Form errors.. */
.hightlight {
    border: #b33 1px solid!important;
    background: #fee;
}

.server-errors,
.server-success {
    background:#FFEEEE;
    border:2px solid darkred;
    color:black;
    font-size:0.9em;
    margin:0 20px 20px 0;
    padding:7px;
}

.server-success {
    border:1px solid green;
    color:#333333;
    font-size:1em;
    margin:7em 20px 7em 0;
    padding:10px;
    background: #EEFFDD; 
}

.server-errors ul {
    margin-left: 1em;
}

/* Lists */

ul, ol {
    margin-left: 3em;
    
}

/* Galleries */

.gallery {
    margin-bottom:0.8em;
}

#wrap .gallery a:hover {
    background: white;
}

#wrap a:hover img{
    opacity: 0.7;
}

.gallery img {
    padding: 0 0 5px 5px;
}

.gallery img.first {
    padding-left:0;
}
