/* Start of CMSMS style sheet '0 Stylesheet 2 Columns' */
* {
margin:0;
padding:0;
}

body {
   text-align: left;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
   min-width: 830px;
}

img {
   border: 0;
}

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 */
}

a:hover {
   text-decoration: none;
   color: #385C72;
}

td {
vertical-align: top;
}


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

/* center wrapper, min max width */
div#pagewrapper {
   border: 0;
   margin: 0 auto;     /* this centers wrapper */
   width: 960px;
   background-color: #fff;;
   color: black;
}


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

div#header {
   height: 60px; /* adjust according your image size */
   background: #FFFFFF;
   margin: 0;
   padding: 0;
}

div#belowmenu {
   height: 22px;
}

div#search {
   float: right;
   width: 17em;     /* search input box (größer gemacht für deuschen Button! ka)*/
   text-align: right;
   padding: 1px 0 0 0;
   margin: 0 18px 0 0;
}

div#editbutton {
   float: right;
   width: 20px;     /*  Edit button */
   margin: 0 0 0 0;
   padding: 4px 0 0 0; 
}

div#addthis {
   float: right;
   width: 40px;     /*  Bookmark box */
   margin: 0 100px 0 0;
   padding: 5px 0 0 0; 
}

div.breadcrumbs {
   font-size: 90%;
   color: #848284;
   margin: 0;  
   padding: 10px 0 0 16px; 
}

div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 } 

div#content {
   margin: 0.2em auto 1em 0;
}

div#main {
   float: left;
   margin: 0 0 0 16px;
   width: 680px;
}


div#sidebar {
   float: left; 
   width: 234px;
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 1.2em;
}


/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {

   width: 234px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
   margin-left: 1.2em;
}

div#rightbar {
   float: right;  
   width: 12%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-right: 1.2em;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#rightbar.hascontent {
   width: 13%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
   margin-right: 1.2em;
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #000000;
   background-color: #FFFFFF; /* same bg color as in header */
   border-top: 1px dotted black;
}

div#footer p {
   font-size: 0.9em;
   padding: 1em 1.2em 1.5em 1.2em;      /* some air for footer */
   text-align: center;
   margin:0;
}

div#footer p a {
   color: #000000; 
}


/* 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: 1.5em; 
   margin: 0;
}
div#content h2 {
   color: #294B5F; 
   font-size: 1.5em; 
   line-height: 1.5em;
   margin: 0 0 0.6em 0;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   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 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */


p {
   font-size: 1em;
   margin: 0.8em 0 0.8em 0;
   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 {
   font-weight: bold;
}
em, i {
   font-style:italic;
}


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 */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.3em;
   margin: 0 0 1.1em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 0 0.7em 3em;
}

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

/* Erweiterungen, ka */
form td {
   padding: 2px 0 2px 12px;
}
form textarea {
   width: 98%;
}
.error_message {
   color: red; 
}

.tablelist td {
   padding: 6px 2px 6px 2px;
   line-height: 130%;
}

.subheader {
   color: #294B5F; 
   font-size: 1.5em; 
   font-weight: bold;
   padding: 0 0 1px 0.5em;
   border-bottom: 1px solid #e7ab0b; 
   border-left: 15px solid #e7ab0b; 
   line-height: 26px;
   margin: 18px 0 14px 0;
   display: block;
   clear: both; 
}


.img_float_right {
   float: right;
   padding: 0 0 8px 10px;
}

.img_float_left {
   float: left;
   padding: 0 10px 8px 0;
}

.img_padding {
   padding: 12px 0 0 0;
}


/* End of '0 Stylesheet 2 Columns' */

