/* Start of CMSMS style sheet 'Layout: Top menu + 2 columns' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Helvetica, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #246b25; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #246b25;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   text-decoration: underline;
   color: #246b25;
}

/*****************
basic layout 
*****************/
body {
   background: #076217;
   color: #333;
   margin:0em; /* gives some air for the pagewrapper */
}

div#container {
background: #faf7f2 url(images/bg.jpg) repeat-x;
}

div#containerimg {
background: url(images/bg_banner.jpg) no-repeat top center;
}

div#containerimgsub {
background: url(images/bg_banner.jpg) no-repeat top center;
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   width: 970px;
   color: black;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 100px; /* adjust according your image size */
}

div#header h1 a {
/* you can set your own image here */
   background: url(images/logo.png) no-repeat 0 12px; 
   display: block; 
   height: 100px;             /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#banner {
background: url(images/banner.png) no-repeat;
height: 320px;
padding: 15px;
padding-bottom: 0px;
}

div#subbanner {
height: 180px;
}

div.subblock {

background: url(images/bg_teaser.jpg) no-repeat;
height: 140px;
width: 285px;
float: left;
margin-left: 10px;
padding: 12px;
}

div.subblockimg1 {
float: right;
margin-right:-10px;
margin-top: 35px;
}

div.subblockimg2 {
background: url(images/calendar.png) no-repeat;
height: 100px;
float: right;
width: 83px;
text-align: center;
padding-top: 25px;
margin-top: 10px;
}



div.subblockimg3 {
float: right;
margin-right: -10px;
margin-top: 0px;
}

div.subblock h2 {
font-family: georgia, times, serif;
font-size: 40px;
color: #246b25;
padding-bottom: 0px;

}

div.subblock h3 {
font-family: georgia, times, serif;
font-size: 17px;
color: #262626;
padding-bottom: 0px;
margin-top: 3px;

}

div.subblock p {
font-size: 11px;
color: #4d4d4d;
line-height: 13px;
}

div.subblock p a{
background: url(images/btn.png) no-repeat;
padding: 5px;
padding-left: 15px;
padding-right: 30px;
padding-top: 4px;
color: #262626;
text-decoration: none;
}

div.subblock p a:hover{
background: url(images/btn_hover.png) no-repeat;
}

div#content {
   margin: 0em auto 0em 0; /* some air above and under menu and content */
   height: 100%;
   overflow: hidden;

}

div#contentsubpages {
   margin: 0em auto 0em 0; /* some air above and under menu and content */
   height: 100%;

   background: url(images/bg_content.png) no-repeat top center;
   padding-top: 30px;
   padding-left: 10px;

}



div#main {
   margin-left: 2%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 35%; /* and some air on the right */
   padding-top: 7px;
}

div#mainsubpages img {
padding: 2px;
border: 1px solid #ccc;
margin: 4px;
}

div#mainsubpages {
   margin-left: 2%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */

   padding-top: 7px;
width:600px;
}

div#main img {
background: #FFF;
padding: 1px;
border: 1px solid #e0e0e0; 
}


div#sidebartop {
   background: url(images/sidebar_top.jpg) no-repeat;
   height: 5px;
}

div#sidebar {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 32%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-right: 10px;
}

div#sidebarsubpages {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 34%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-right: 10px;
}

div#sidebarcenter {
   background: url(images/sidebar_center.jpg) repeat-y;
   padding: 10px;
   padding-top: 3px;

}

div#sidebarcentersubpages {
   background: url(images/sidebar_center.jpg) repeat-y;

   padding-bottom: 10px;
   padding-left: 10px;
   padding-top: 3px;
   padding-right: 20px;
}


div#sidebarbottom {
   background: url(images/sidebar_bottom.jpg) no-repeat;
   height: 5px;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background: url(images/bg_footer.jpg) repeat-x;
   min-height: 150px;
}

div#footercontent {
   margin: 0px auto;
   width: 940px;
}

div#footer p {
   font-size: 0.8em;
   padding-top: 2.5em;      /* some air for footer */
   margin:0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   background: #FFF;
   margin-right: 10px;
   margin-bottom: 15px;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 1em;
   margin: 0;
}

div#content h2,
div#contentsubpages h2 {
   font-family: georgia, times, serif;
   color: #246b25; 
   font-size: 19px; 
   text-align: left; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}



div#content h3,
div#contentsubpages h3 {
   font-family: georgia, times, serif;
   color: #246b25; 
   font-size: 16px; 
   text-align: left; 
   line-height: 15px;
/* and some air under the border */
   margin: 0 0 0.3em 0;
   
}
div#content h4,
div#contentsubpages h4 {
   font-family: georgia, times, serif;
   color: #000; 
   font-size: 14px; 
   text-align: left; 
   line-height: 14px;
/* and some air under the border */
   margin: 0 0 0.3em 0;
}

div#content h5
div#contentsubpages h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
ul,
ol,
dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
ul li,
ol li {
   margin: 0 0 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

#contact {
float: left;
padding-bottom: 20px;
margin-top: 0px;
}

input {
width: 300px;
margin-bottom: 10px;
}

select {
margin-bottom: 10px;
}

label {
float: left;
width: 100px;
}

.formbuilderform textarea {
width: 300px;
height: 100px;
margin-bottom: 10px;
}

.fbsubmit {
width: 300px;
margin-left: 100px;
margin-top: 10px;
}

.bedingungschecker input {
margin-left: 218px;
margin-top: -15px;
position: absolute;
}

.bedingungschecker label {
display: none;
}

.gutschein input {
width: 30px;
margin-left: 265px;
margin-top: -17px;
}

.personenbox input {
width: 30px;
margin-left: 100px;
margin-top: -17px;
}

.wositzen textarea {
margin-top: 20px;
}

.platzwahl select {
margin-top: -8px;
margin-bottom:20px;
}

.error_message {
color: red;
}
/* End of 'Layout: Top menu + 2 columns' */

