.schrift10 {
	font-size: 10px;
	/*text-align: justify;*/
}
.schrift12 {
	font-size: 12px;
	text-align: justify;
}

.block {
	/*text-align: justify;*/
}
.titel {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #e6f1d1;
	font-weight: bold;
	text-align: left;
	border-bottom: 1px solid #e6f1d1;
}

.titel2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: bold;
	text-align: left;
}
.titel1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
}

#boxRed {
        border-width:2px;
        border-style:solid;
        border-color:red;
        padding:15px;
        text-align:justify;
        color:red;
        width:90%;
        z-index:1;
}

.tabellenRand_1px {
	border: 1px solid #e6f1d1;
}

#tabelleGitter
{
	background-color: #e6f1d1;
	margin: 0px 0px;
	width: 80%
}

.rahmen_lireun {
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #e6f1d1;
	border-bottom-color: #e6f1d1;
	border-left-color: #e6f1d1;
	/*text-align: justify;*/
} 

.rahmen_reun {

	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #e6f1d1;
	border-bottom-color: #e6f1d1;
	border-left-color: #e6f1d1;
	/*text-align: justify;*/
}

.rahmen_liun {

	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #e6f1d1;
	border-bottom-color: #e6f1d1;
	border-left-color: #e6f1d1;
	/*text-align: justify;*/
}

.rahmen_lireunob {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #e6f1d1;
	border-bottom-color: #e6f1d1;
	border-left-color: #e6f1d1;
	border-top-color: #e6f1d1;
	/*text-align: justify;*/
}
.rahmen_unten {

	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-right-color: #e6f1d1;
	border-bottom-color: #e6f1d1;
	border-left-color: #e6f1d1;
	/*text-align: justify;*/
}
.rahmen_unob {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-right-color: #e6f1d1;
	border-bottom-color: #e6f1d1;
	border-left-color: #e6f1d1;
	border-top-color: #e6f1d1;
	/*text-align: justify;*/
}
.rahmen_oben {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #e6f1d1;
	border-bottom-color: #e6f1d1;
	border-left-color: #e6f1d1;
	/*text-align: justify;*/
	border-top-color: #e6f1d1;
}


/***************** Formular **********************/
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font: 100%;
  margin: 0;
  padding: 0;
 /* margin:auto; /* box zenrieren */
}

form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #bcc2a8;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
  min-width: 500px;
  max-width: 600px;
  width: 560px; 
}

form fieldset legend {
	font-size:1.1em; /* 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: 100px; 
	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 */
	text-decoration:underline;    /* 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, form select {
	/* 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; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

textarea { overflow: auto; }

.spam img {
	margin:5px 0 0 10px;
}

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 */
}

.textsmall {
	font-size: 95%;
	font-style: italic;
	color: #999999;
  
}

select  /*funktioniert nur im Firefox...)*/
{
	background-color: #FFFFFF;
	/*border: thin solid #AA0028;*/
	border: 1px solid #aaaaaa;
	border-bottom-color:#aaaaaa;
	border-right-color: #aaaaaa;
	border-top-color:#aaaaaa;
	border-left-color:#aaaaaa;
	color: #000000;
}
textarea  
{
	background-color: #FFFFFF;
	border: 1px solid #aaaaaa;
	border-bottom-color:#aaaaaa;
	border-right-color: #aaaaaa;
	border-top-color:#aaaaaa;
	border-left-color:#aaaaaa;
	color: #000000;
}
input  
{
	background-color: #FFFFFF;
	border: 1px solid #aaaaaa;
	border-bottom-color:#aaaaaa;
	border-right-color: #aaaaaa;
	border-top-color:#aaaaaa;
	border-left-color:#aaaaaa;
	color: #000000;
} 

.button
{
	background-color: #dddddd;
	border: 1px solid #B7AE88;
	border-bottom-color:#B7AE88;
	border-right-color: #B7AE88;
	border-top-color:#cccccc;
	border-left-color:#cccccc;
	color: #000000;
}
/***************** Formular END **********************/


/*************** GALERIE *****************/

.KategorieTitel
{
	padding: 5px 5px 10px 0px;
	font-size: 120%;
	font-weight: bold;
}

.titelGalerieVorschau
{ 
  background: #ffffff;
  /*color: #000000;*/
  /*padding: 0px 40px 0px 20px;*/
  font-size: 120%;
  font-weight: bold;
}

#kategorie {
  /*padding: 10px;        /* padding in fieldset support spotty in IE */
  /*margin: 0;*/
  background-color: none;
  width: 80%; 

}

#kategorie fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #bcc2a8;
  border-width: 1px;
  border-style: solid;
  padding: 10px 10px 10px 15px;       /* padding in fieldset support spotty in IE */
  width: 450px;
  margin-left: 10px;

}

#kategorie fieldset legend {
	font-size:1.1em; /* 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  */
}




#galerieHintergrund {
	/*background-color: #787878;*/
	background-color: #e6f1d1;
}
/*
#galerieHintergrund a:hover, #galerieHintergrund a, #galerieHintergrund a#selected:hover
{
	/*padding: 0px 0px 2px 0px;*/
  /*text-decoration: none;
  border-bottom: 0px dashed;
}*/

#galerieHintergrund img {
	border: 1px solid #bcc2a8;
}

.zelleH {
	background-color: #ffffff;
}

.tabborder {
  border-color: #787878;
  border-width: 1px;
  border-style: solid;
}

.galerieBildLinks
{ float: left; 
  padding: 0px 8px 0px 0px;
}
.galerieBildLinks img {
	border: 1px solid #bcc2a8;
}

#kategorie .galerieBildLinks a:hover, #kategorie .galerieBildLinks a, #kategorie .galerieBildLinks a#selected:hover
{
	/*padding: 0px 0px 2px 0px;*/
  text-decoration: none;
  border-bottom: 0px dashed;
}

#galerieHintergrund a:hover, #galerieHintergrund a, #galerieHintergrund a#selected:hover
{
	/*padding: 0px 0px 2px 0px;*/
  text-decoration: none;
  border-bottom: 0px dashed;
}

.smallGal
{
	font-size: 80%;
}

/********** END GALERIE *******************/

.verkaufsTitel {
	margin-top: 15px; 
	margin-bottom: 15px; 
	background:#fff; 
	font-size:15px; 
	font-weight: bold;
	text-align: left;	
}

pre
{
	font-size: 14px;

}