/* Start of CMSMS style sheet '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: 75.01%;
   line-height: 1.5em;
}

/*
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: #000; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #008d64;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #008d64;

   color: #fff;
}

ul{
z-index: 3;
}

/*****************
basic layout 
*****************/
body {
   background: #fff url(uploads/images/bg.jpg);
   color: #333;
 
}

/* center wrapper, min max width */
div#pagewrapper {
   margin: 0 auto;     /* this centers wrapper */
   width: 967px; /* IE wont understand these, so we will use javascript magick */
   background: #fff url(uploads/images/content_bg.jpg);
   color: black;
}


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

div#header {
   height: 116px; /* adjust according your image size */
   background: #ccc url(uploads/images/header.jpg);   
z-index: 3;      
overflow: hidden;
}

div#header h1 a {
/* you can set your own image here */
   background: transparent; 
   display: block; 
   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#search {
   float: right;
   width: 23em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   position: relative; 
   left: -50px;
   top:-140px;
color: #fff;
}

div#search input.btn{
padding: 1px;
background: transparent;
border: none;
color: #fff;
}

div.breadcrumbs {
   padding: 1em 0 1.2em 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 */
   margin-left: 75px;              /* css shorthand rule will be opened to be "0 1em 0 1em" */
   border-bottom: 0px dotted #000;
}

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

#menu_vert{
z-index: 5000;
}

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

}

div#film{
position: relative;
left: 150px;
}

div#teaser{
border-top: 1px dotted #ccc;
margin-left: 28px;
background: #fff;
height: 115px;
overflow: hidden;
padding-top: 20px;
text-align: center;
}


div#main {
   margin-left: 50px; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   margin-right: 8%; /* and some air on the right */
background: #
z-index: 3000;
}

div#teaser p{
margin: 0;
padding: 0;
float: left;
position: relative;

}





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

div#mailer{
width:300px;
float: left;
position: relative;
left: 35px;
top: -2px;
margin-right: 160px;
margin-bottom: 40px;
z-index: 1;
}

div#mailer  fieldset{
z-index: 1;
background: #fff;

margin-top: 10px;
margin-bottom: 10px;
border: none;
}

div#mailer form input{
display:block;
margin-bottom: 6px;
}

div#mailer label{
color: #000;
}

div#mailer  textarea{
height: 100px;
width: 350px;
}

div#mailer  legend{
color: #000;
}

div#impressum{
position: relative;
top: 40px;
left: 20px;
}

 .lexi_inactive{
text-align: center;
width: 25px;
height: 25px;
margin: 2px;
color: #fff;
background: #008d64;
float: left;
padding: 1px;
text-decoration: none;
}

.lexikon p a {
text-align: center;
width: 25px;
height: 25px;
margin: 2px;
color: #fff;
background: #008d64;
float: left;
padding: 1px;
text-decoration: none;
}


.lexikon p a:hover{
background: #c1dcd5;

}

.lexikon p a:visited{
color: #fff;
text-decoration: none;
text-align: center;
}

#bronchitis_bild {

}


div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background: #ccc url(uploads/images/footer.jpg); /* same bg color as in header */
   height: 35px;
}

div#footer p {
   font-size: 1em;
   padding: 0.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 */
   text-decoration: none;
}

div#footer p a:hover {
background: transparent;
text-decoration: underline;
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;

}

/* 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: #006b42; 
   font-size: 2.3em; 
   text-align: left; 
   font-family: georgia, times, serif; 
   font-weight: normal;
   font-style: italic;
   padding-left: 1em;
   padding-bottom: 1px;



   line-height: 1.5em;
/* and some air under the border */
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #006b42; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 1.7em;
}

div#content h4 {
   color: #006b42; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.5em 2em;

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

/* TEXT */
p {
   font-size: 1em;
   margin: 0 0 1.5em 28px;  /* some air around p elements */
   line-height:1.8em;
   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.8em;
   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;
}

.newsletter{
margin-left: 30px;
}

.newsletter input{
display: block;
}

.lexicon p{
width: 600px;
}

.linktausch{
position: absolute;
left: -9999px;
}

.faq {
border-bottom: 1px #ccc dotted; padding-bottom: 15px; 
}

div#newsteaser{
margin-left: 30px; 
width: 785px; 
border: 1px solid #98cdc2;  
-moz-border-radius: 5px; 
-webkit-border-radius: 5px;
height: 65px;
overflow: hidden;
}



#newsteaser p{
padding: 8px 10px 0px 0px;
}

/*****************
Tabellen-Formatierung
*****************/

table.tab_news {
width: 800px;
margin-left: 25px;
}

table.tab_news tr th, table.tab_news tr td.tab_titel {
color: #006b42;
vertical-align: top;
padding: 5px 20px 5px 5px;
background: #c2ddd6;
}

table.tab_news tr th {
padding-bottom: 10px;
background: url(uploads/images/table_bg.jpg) repeat-x;
}

table.tab_news tr td {
padding: 5px;
background: #dbf2ec;
vertical-align: top;
}

/*****************
potpourri
*****************/
#symptome{
	position:relative;
	list-style:none;
	z-index: 0;
	height:25em;
	background: transparent url(uploads/images/atemwege_oben.jpg) 550px -10px no-repeat;
	}
	
#symptome li{
margin-top: 10px;

	}
	
#halsschmerzen a, #akut a, #schnupfen a, #chronisch a, #syndrom a, #husten a, #akutbronch a, #chronbronch a, #copd a {
		position: absolute;
		left: 30px;
		color: #006b42;
		text-decoration: none;
		font-family: Arial, Helvetica, sans-serif;
		font-weight: bold;
		width: 330px;
                line-height: 1.3em;
                font-size: 100%
	}
	
#symptome li a:hover{
		color: red;
                background: transparent;
	}
	
#halsschmerzen a{
	        top: 20px;
}

#akut a{
	top: 80px;
}

#schnupfen a{
	top: 140px;
}

#chronisch a{
	top: 200px;
}

#syndrom a{
	top: 260px;
}

#husten a{
	top: 20px;
}

#akutbronch a{
	top: 80px;
}

#chronbronch a{
	top: 140px;
}

#copd a{
	top: 200px;
}

 #halsschmerzen a .bullet, #akut a .bullet, #schnupfen a .bullet, #chronisch a .bullet, #syndrom a .bullet, #husten a .bullet, #akutbronch a .bullet, #chronbronch a .bullet, #copd a .bullet {
	position: absolute;
        left: 0
	display:inline;
	width: 10px;
	height: 10px;
	background: red 0;
        border: 2px #fff solid;
        -moz-border-radius: 20px;	
        -webkit-border-radius: 20px;
}

#halsschmerzen a:hover .bullet, #akut a:hover .bullet, #schnupfen a:hover .bullet, #chronisch a:hover .bullet, #syndrom a:hover .bullet, #husten a:hover .bullet, #akutbronch a:hover .bullet, #chronbronch a:hover .bullet, #copd a:hover .bullet{
	background: white;
        border: 2px solid red;
	width: 15px;
	height: 15px;
}



#halsschmerzen a .bullet{
	left: 668px;
	top: 90px;
}

#akut a .bullet{
	left: 655px;
	top: -45px;
}

#schnupfen a .bullet{
	left: 625px;
	top: -85px;
}

#chronisch a .bullet{
	left: 635px;
	top: -165px;
}

#syndrom a .bullet{
	left: 668px;
	top: -122px;
}


#husten a .bullet{
	left: 668px;
	top: 162px;
}

#akutbronch a .bullet{
	left: 668px;
	top: 122px;
}

#chronbronch a .bullet{
	left: 650px;
	top: 80px;
}

#copd a .bullet{
	left: 700px;
	top: 25px;
}

#halsschmerzen a .halsschmerzen, #akut a .akut, #schnupfen a .schnupfen, #chronisch a .chronisch, #syndrom a .syndrom, #husten a .husten, #akutbronch a .akutbronch, #chronbronch a .chronbronch, #copd a .copd{
	position: absolute;
	display:inline;
	color: #000;
        font-weight: normal;
        border: 1px solid #008d64;
	left: -999em;
	width: 350px;
	line-height: 1.5em;
        padding: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        background: #c2ddd6;
}



#halsschmerzen a:hover .halsschmerzen {
	left: 165px;
	top: 0px;
}

#akut a:hover .akut {
	left: 165px;
	top: -60px;
}

#schnupfen a:hover .schnupfen {
	left: 165px;
	top: -120px;
}

#chronisch a:hover .chronisch {
	left: 165px;
	top: -180px;
}

#syndrom a:hover .syndrom {
	left: 165px;
	top: -240px;
}

#husten a:hover .husten {
	left: 165px;
	top: 0px;
}

#akutbronch a:hover .akutbronch {
	left: 165px;
	top: -60px;
}

#chronbronch a:hover .chronbronch {
	left: 165px;
	top: -120px;
}

#copd a:hover .copd {
	left: 165px;
	top: -180px;
}
/* END LISTS */

/* End of 'Layout: Top menu + 2 columns' */

