/* Start of CMSMS style sheet 'S - Textformatierungen' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Arial, Verdana, Geneva, 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;}

/*****************
basic layout 
*****************/
/* center wrapper, min max width */
div#pagewrapper {
   border: 0px solid black;
   margin: 0;     /* this centers wrapper */
   width: 590px; /* IE wont understand these, so we will use javascript magick */

   /* background-color: #FFFFFF; */
   color: black;
}



/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;
   line-height: 1em;
   margin: 0;
}

div#titelh2 {
   color: #993366; 
   font-size: 0.7em; 
   text-align: left; 
   padding-left: 0.9em;
   padding-bottom: 3px;
   border-bottom: 1px solid #993366; 
   border-left: 16px solid #993366; 
}


div#titelh3 {
   color: #993366; 
   font-size: 0.7em; 
   text-align: left; 
   padding-left: 0.9em;
   padding-bottom: 2px;
   border-bottom: 1px solid #993366; 
   border-left: 16px solid #993366; 
   /* line-height: 12px; */
}


/* div#titelh2 {
   color: #993366; 
   font-size: 0.9em; 
   text-align: left; 
   padding-left: 0.9em;
   padding-bottom: 2px;
   border-bottom: 1px solid #993366; 
   border-left: 1.7em solid #993366; 
   line-height: 1em;
   margin: 0 0 1em 0;
} */


/* div#content h2 {
   color: #993366; 
   font-size: 1.1em; 
   text-align: left; 
   padding-left: 0.5em;
   padding-bottom: 1px;
   border-bottom: 1px solid #993366; 
   border-left: 1.1em solid #993366; 
   line-height: 1.1em;
   margin: 0 0 0.5em 0;
} */

div#content h3 {
   color: #993366; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #993366; 
   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;
}
h1{
    color: #993366; 
    font-size: 2em; 
    text-align: left; 
    line-height: 2em;
    margin: 0 0 1.3em 0;
}

h2{
    color: #993366; 
    font-size: 1.5em; 
    text-align: left; 
    line-height: 1.3em;
    margin: 0 0 1.5em 0;
}
h3 {
   color: #993366; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
h4{
    color: #993366; 
    font-size: 1.2em; 
    text-align: left; 
    line-height: 1.3em;
    margin: 0 0 0.5em 0;
}
h5{
    color: #993366; 
    font-size: 1.1em; 
    text-align: left; 
    line-height: 1.3em;
    margin: 0 0 0.5em 0;
}
h6 {
   color: #993366; 
   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;
   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 of 'S - Textformatierungen' */

