/* Start of CMSMS style sheet 'Layout: Left sidebar + 1 column' */
/*****************
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: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 70.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: underline;
/* 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: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
      background-color: transparent;
   color: #c90606;
}

/*****************
basic layout 
*****************/
body {
   background-color: #767f82;
   color: #4d5661;
   margin:1em;    /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: none;
   margin: 0 auto;       /* this centers wrapper */
   max-width: 808px;   /* IE wont understand these, so we will use javascript magick */
   min-width: 808px;
   background: transparent url(/images/cms/bg_content.gif) repeat-y;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it so that the image wont cut off
*/
div#header {
position:relative;
   height: 120px;    /* adjust according your image size */
   background: transparent url(/images/cms/header.jpg) no-repeat 0px 0px;
          
}

div#header h1 a {
/* you can set your own image here */
   display: block;
   width:260px;
   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#header h1 a:hover {background:transparent;}
/* position for the search box */
div#search {
   float: right;
   width: 23em;    /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
position:absolute;
left:260px;
top:105px;
   padding: 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;        /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
color:#4d5661;

}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

 div#content {
/*   margin: 1.5em auto 2em 0;    some air above and under menu and content */
padding-top:20px;
margin:0px 0px 0px 28px;

}

div#main { margin-left: 29%;margin-right: 40px; }

div#mainStart {
   margin-left: 29%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 0; /* and some air on the right */
   background: transparent url(/images/cms/deneve.jpg) no-repeat right top; 
padding-right:150px;
}

div#sidebar {
   float: left;        /* set sidebar on the left side. Change to right to float it right instead. */
   width: 26%;     /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX IE double margin bug */
   margin-left: 0;

}
div#sidebar .kontakt {margin:90px 0px 0px 24px;color:#838792;}
div#sidebar .kontakt a {margin:0;padding:0;border:none;}
div#sidebar .kontakt a:hover {border:none;margin:0;padding:0;color:#c90606;font-weight:normal;text-decoration:underline;}

div#footer {
   clear: both;       /* keep footer below content and menu */
   color: #9c9c99;height:65px;
   background: #393833 url(/images/cms/bg_footer.gif) repeat-x 0px 0px; 
   margin:0px 0px 0px 28px;border:none;border-top:1px solid #636c6f;
}

div#footer p {
   font-size: 0.8em;
   padding: 8px 0 4px 24px;       /* 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;
   padding: 1em;
   border-bottom: 1px dotted black;
   margin: 1em;
}

/* relational links under content */
div.left49 {
  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 {
  font-size: 1.4em; 
  color:#c90606;
  text-align: left; 
  margin: 0 0 2em 0;
  font-weight:bold;
  font-family:verdana;
}
div#content h3 span.paragraph { font-family:verdana;color:#dbdddf;font-size:1.6em;margin-right:12px;font-weight:normal;}
div#content h3 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
  color:#4d5661;
 font-family:verdana;
}



div#content h4 {
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   color: #294B5F; 
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
div#content .hinweis {height:112px;width:429px;background: transparent url(/images/cms/bg_hinweis.gif) no-repeat left top;padding:18px 12px 12px 60px;margin-top:24px; }
div#content .btn {text-align: right;margin-right:50px;margin-top:3px;margin-bottom:24px;}
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;
}
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%;


}

/* Separating the divs on the template explanation page, with some bottom-border */
div.templatecode {
  margin: 0 0 2.5em;
}

/* END TEXT */

/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
   font-size: 1.0em;
   line-height: 1.4em;
   margin: 0;list-style:none;
}
div#main ul.rechtsgebiete {padding:12px 0px 8px 0px;width:463px;background: transparent url(/images/cms/bg_rechtsgebiete.gif) no-repeat left bottom;}
div#main ul li,
div#main ol li {
   margin: 0 0 0.25em 2.5em; padding-left:12px;background: transparent url(/images/cms/bg_liste.gif) no-repeat left 4px;
}

/* definition lists topics on bold */
div#main dl dt {
   font-weight: bold;
   margin: 0 0 0 1em;
}
div#main dl dd {
   margin: 0 0 1em 1em;
}

div#main dl {
  margin-bottom: 2em;
  padding-bottom: 1em;
  border-bottom: 1px solid #c0c0c0;
}


/* END LISTS */

/*  FORM */
input {background: transparent url(/images/cms/bg_inputs.gif) repeat-x bottom;margin-left:8px;border:1px solid #4d5661;height:22px;width:340px;margin-bottom:4px;}
#ffplz{width:40px;margin-right:5px;}
#ffhaus_nr {width:45px;}
#ffort, #ffstrasse {width:284px;}
.required, .stern {color:#c90606;font-weight:bold;}
textarea {background: transparent url(/images/cms/bg_inputs.gif) repeat-x bottom;margin-left:8px;width:340px;border:1px solid #4d5661;margin-bottom:4px;height:80px;}
/* End of 'Layout: Left sidebar + 1 column' */

