/* Start of CMSMS style sheet 'ZIPPER CSS 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: Verdana, Geneva, Arial, Helvetica, sans-serif;
   font-size: 71.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: none;
   background-color: inherit;
   color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: underline;
   background-color: transparent;
   color: #019038;
}
a.standard:link, a.standard:active, a.standard:visited {text-decoration:none;}
a.standard:hover {text-decoration:underline;}
a.standard-weiss:link, a.standard-weiss:active, a.standard-weiss:visited {text-decoration:none;color:#fff;}
a.standard-weiss:hover {text-decoration:underline;#c0c0c0;}

/*****************
basic layout 
*****************/
body {
   background-color: #bcc5c8;
   background-image: url(uploads/images/higru-body.jpg);
   background-repeat:repeat-x;
   background-position:top left;
   color: #333;
   margin:1em; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid black;
   margin: 0 auto;     /* this centers wrapper */
   max-width:960px ; /* 80em 60emIE wont understand these, so we will use javascript magick */
   min-width: 960px ;
   background-image:url(uploads/images/higru-inhalt.jpg);
   background-position:top right;
   background-repeat: repeat-y;
   color: black;
}


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

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

div#header h1 a {
/* you can set your own image here */
   background: #D9D8D8 url(uploads/images/kopfzeile2.jpg) no-repeat 0 12px; 
   background-position:top left;
   display: block; 
   height: 171px;             /* 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#search {
   clear:right;   
   width: 25em;     /* enough width for the search input box */     
   padding-left:15px; 
        
}
div#search input {float:left;margin-right:1px;height:18px;font-size:11px;}

/* Hintergrund für Kapitelüberschrift */
div#kapitel {
   float: right;
   width: 330px; 
   height: 83px;   
   background-image:url(uploads/images/higru-kapitel.gif);
   background-position:top left;
   background-repeat:no-repeat;
}
div#kapitelbild {
   clear:right;
   width:330px;
   height:auto;
   margin-bottom:15px;  
}
div#kapitelbild img {
   border:4px solid #fff;
   border-left:0;
   border-right:0;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 0; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 95%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin: 0 1em;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 1px dotted #000;
width:500px;
}

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


div#content {
   margin: 0 auto 2em 0; /* some air above and under menu and content */
}

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


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

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding:0;
   width: 330px;  /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
   background-color:#009036;
   padding-bottom:30px;
}

div#footer-gruen {
   clear:both;       /* keep footer below content and menu */
   background-color:#009036;
   line-height:5px;
   height:5px;
   font-size:0px;
}
div#footer {   
   color: #fff;
   background-color: #36383b; /* same bg color as in header */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   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;
   margin: 1em;
   margin-left:0;
   border-bottom: 1px dotted black;
}

/* 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 {
   color: #294B5F; 
   font-size: 1.5em; 
   text-align: left; 
/* some air around the text */
   padding-left: 1.5em;
   padding-bottom: 1px;
/* set borders around header */
   border-bottom: 1px solid #e7ab0b; 
   border-left: 1.1em solid #e7ab0b; 
   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #000; 
   font-size: 1.1em;
   line-height: 1.2em;
   margin: 0 0 0.5em 0;  
   width:510px;
}
h3.kasten {
   padding:0 0 5px 5px;
   border-left:6px solid #BFBB7C;
   border-bottom:1px solid #BFBB7C;   
}
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;
   color:#fff;
   padding: 32px 0 0 45px;
   letter-spacing:1px;
}
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 */
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 */

*/ MH Listen zur Kategorieübersicht */

ul.mh_ul {
  line-height:120%;  
}
ul.mh_ul li{
  font-size:15px;
  list-style-type:square;
  color:#038F38;  
}
ul.mh_ul li span {
  font-size:13px;   
}

ul.mh_ul2 {
  margin:25px 0 20px 30px;
  line-height:200%;
  padding-top:0px;
}
ul.mh_ul2 li {
  font-size:15px;
  list-style-type:square;
  color:#fff;
}
ul.mh_ul2 li a:link, ul.mh_ul2 li a:active, ul.mh_ul2 li a:visited, ul.mh_ul2 li a:hover {color:#fff;}
ul.mh_ul2 li span {
  font-size:13px;
}

/* Bußgeldliste Formatierung */
table.bussgeld {
border-collapse:collapse;
empty-cells:show;
}
table.bussgeld th {
border-bottom:1px dotted #BFBB7C;
padding-bottom:5px;
}
table.bussgeld i {
color:#019036;
}
/* MH Formulare */
fieldset.formular {width:500px;}
fieldset.formular legend {border:1px dotted #c0c0c0;padding:4px;background-color:#BFBB7C;color:#fff;font-variant:small-caps;}
form td {vertical-align:top;}
form td.label {width:40%;background-color:#CFCFCF;}
form td.wert {width:60%;background-color:#EFEFEF;}
.infokasten {padding:5px;background-color:#fcf0a6;}
select {font-size:11px;margin-right:5px;font-family:verdana,arial,helvetica,sans serif;color:#5C5C5C;}
input  {font-size:11px;margin-right:5px;font-family:verdana,arial,helvetica,sans serif;color:#5C5C5C;}
.laenge50 {width:50px;}
.laenge78 {width:78px;}
.laenge86 {width:86px;}
.laenge92 {width:92px;}
.laenge110 {width:110px;}
.laenge115 {width:115px;}
.laenge117 {width:117px;}
.laenge134 {width:134px;}
.laenge150 {width:150px;}

.laenge200 {width:200px;}
.laenge206 {width:206px;}

.laenge195 {width:195px;}
.laenge205 {width:205px;}
.laenge225 {width:307px;}
/* Sonder-CSS für Rechtsinfothek (fremde) */
    table.c9 {width: 200px; height: 1008px;}
    tr.c8 {background-color: #FFFFFF;}
    tr.c7 {background-color: #E6E6E6;}
    table.c6 {width: 100%; height: 96px;}
    table.c5 {width: 100%; height: 61px;}
    td.c4 {background-color: #FAFAD2;}    
    td.c2 {background-color: #A90329;}
    
/* End of 'ZIPPER CSS Layout: Top menu + 2 columns' */

