/* Start of CMSMS style sheet 'Layout: Top menu + 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: 10pt;
   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;
}



/*****************
basic layout 
*****************/

div#main {
   margin-left: 2.5em; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 2.5em; /* and some air on the right */
}


div#sidebar {
   float: left;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 23%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-left: 0;
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 1%;
   width: 21%;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
   font-size: 8pt;
}





/********************
CONTENT STYLING
*********************/
div#content {
   border-top: 1px dotted #000;
   margin: 0;
   padding-top:1em;
}



/* TEXT */
div#content { font-size: 1em; line-height: 1em; }

div#main p {
   font-size: 0.9em;
   text-align: left;
   padding-right:3em;
   color: #384654;
   margin-bottom: .8em;
   line-height:1.6em;
}
div#main ul {
   font-size: 9pt !important;
   text-align: left;
   color: #384654;
   line-height:1.6em;
}
div#main ul li { line-height:1.6em; }

/* div#main p {
   font-size: 1em;
   margin: 0 0 1.5em 0;  /* some air around p elements */
   line-height:1.5em;
   padding: 0;
} */
div#main p.small { font-size: 0.85em; }

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 */
}

table.tbl td, table.tbl th {
   padding-bottom: 1.5em;
}

/* END TEXT */

/* IMAGES */

/* END IMAGES */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main 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 */

/* FORMS */
/*
input {display:block; clear:both; margin:-1.2em 0 1em 12em;}
input.fbsubmit {margin-left:0;}
textarea {margin:1em 0 2em 0;width:40em;display:block;}
*/
.required {font-weight:bold;}

.bestellform, .beitrittsform {
   line-height:1.7em;
}
textarea {
   margin-bottom: 1.7em;
   display: block;
}
input, textarea {
   padding: .1em 0;
   border: thin solid silver;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
.statictext, .bruchnz, .submit, .faktuell, .cds {
   padding: 1.7em 0 1.7em;
   clear:both;
   display:block;
}
.faktuell select, .cds select {
   width: 35em;
   padding-left:.5em;
   font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
}
.anrede select, #m4_24, #m4_25, #m4_26, #m4_27, #m4_28, #m4_29, #m4_30, #m4_46, #m4_47, #m4_48, #m4_49, #m4_50, #m4_51, #m4_52 {
   margin-top:-1.5em;
   margin-left:120px;
   display:block;
}
.faktuell label, .anrede label, .cds label {
   display: block;
}
.textbox {padding-top:1.7em; }
.mnr label {margin: 1.7em 1em 0 0;}
.bruchnz label { float:left; clear:right;}
.bruchnz input {float:left; clear:left; margin:.35em .5em;}
.bruchnzz input {float:left; margin:.35em .5em;}

/* END FORMS */

.floetelinks p a:link, .floetelinks p a:visited, .floetelinks p a:active, .floetelinks p a:hover {
   line-height:.8em;
   font-weight: bold;
   text-decoration: none;
   color: rgb(51, 51, 51);
   margin-left: 1em;
}
/* End of 'Layout: Top menu + 1 column' */

