﻿/* Standard Stylesheet
www.projektname.de
Start: 01.01.2006
Letzte Aenderung: 10.02.2006
*/
/* Reset all */
*{
	padding: 0;
	margin: 0;
	border: 0;
}

/* Allgemeines */
body {
	font-size: 100%;
	line-height: 2em;
	color: #666666;
	background: #fff;
	font-family: Georgia, serif;
}

a:link {
	color: #666666;
	text-decoration: none;
}

a:visited {
	color: #999999;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
	color: #cccccc;
}

/* Clear Class */
.c {
	clear: both;
}

img, a img {
	border: 0;
}

.keine-anzeige {
	display: none;
}

/* Absaetze */
p {
	font-size: 1em;
	line-height: 1.7em;
	margin: 0.5em 0;
	clear: both;
}

/* Kleinerer Text */
.s {
	font-size: 0.9em;
}

/* Links- bzw. Rechtsausrichtung für Elemente */
.leftalign {
	float: left;
	margin: 0 0.5em 0 0;
}

.rightalign {
	float: right;
	margin: 0 0 0 0.5em;
}

h1 {
	font-size: 20px;
	color: #666666;
	font-style: bold;
	font-style: italic;
	padding-top: 30px;
	padding-bottom: 20px;

}

h2 {

}

h3 {

}

h4 {

}

/* Layout */
#wrapper {	
	width: 884px;
	background-image: url(jpg/bg_wrapper.jpg);
	background-repeat: no-repeat;
	margin: 0 auto;
}

#header {
	width: 239px;
	float: left;
}

#thumbs {
	width: 525px;
	background-image: none;
	padding-top: 13px;
	padding-left: 18px;
	padding-right: 18px;
	padding-bottom: 13px;
	background-color: #FFFFFF;
}

#thumbs img {

}

#thumbs img:hover {
	


}

#navi {
	width: 190px;
	float: left;
	margin-top: 65px;
	text-align: right;
	line-height: 1.3em;
}
#navi li {
	list-style: none;
}
#navi  a{
	color: #999999;
	font-size: 14px;

	display: block;
	float: right;
	width: 190px;
	
}

#navi  a:hover {
	color: #cccccc;
	text-decoration: none;
	
}

.navi_active_1 {
	color: #666666;
	font-size: 14px;
	font-weight: bold;
	display: block;
	float: right;
	width: 190px;;
}

.navi_active {

	color: #6666666;
	font-size: 14px;
	font-style: bold;
	display: block;
	float: right;
	width: 150px;


}
#level2  {



}
#level2 li a {
	
	font-size: 12px;
	color: #FFFFFF;	

}

#level2 li a:hover {
	color: #CCCCCC;
	border-bottom: 1px solid #333333;
	background-color: #333333;

}

#content {
	width: 640px;
	float: right;
	
	
}
#text {
	margin-top: 180px;
	font-size: 14px;
	color: #999999;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#text p {
font-family: Georgia, serif;


}
#kontakt {
	padding-top: 10px;
	clear: both;
}

#footer {
	width: 818px;
float: left;
background-color: #ffffff;
}

/* ACCORDION */

#basic-accordian{
	width:640px;


	margin-left: 0px;
	z-index:2;
	margin-top:0px;
}

.accordion_headings{
	color:#999999;
	cursor:pointer;

}

.accordion_headings:hover{
	background:#CCCCCC;
	color:#FFFFFF;
}

.accordion_child{
	padding:15px;
	
}

.header_highlight{
	background:#CCCCCC;
	color:#FFFFFF;
	font-weight: bold;
}
/* FORMULAR */

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% Georgia, serif;
  margin: 0;
  padding: 0;
  min-width: 500px;
  max-width: 600px;
  width: 535px; 
}
.fehler {
	background-color:#FFFFFF; color: #999999; font-weight: bold;
}
form fieldset {
  clear: both;
  border-color: #cccccc;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form label {
	padding: 5px;

}

form legend {
padding-bottom: 15px;
font-size: 14px; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 80px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
  /* Firefox 1.07 WIN and Explorer 5.2 Mac don't support first-letter */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* we instead underline first letter on each label element and accesskey */
                                    /* each input. doing only legends would  lessens cognitive load */
                                   /* opera breaks after first letter underlined legends but not labels */
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px;
	background-color: #CCCCCC;
	 /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

form submit {
	width: 150px;
	border: 1px solid #CCCCCC;


}
.select {
	margin-left: 9px;
}

.mf-submit {
	color: #FFFFFF;
	cursor: pointer;
	font-style: bold;
	background-color: #999999;
	
}

.mf-submit:hover {

	cursor: pointer;
	color: #CCCCCC;
	font-style: bold;
	background-color: #999999;
}
