@charset "UTF-8";

@media all
{
  /**
   * Fonts
   * (en) font-family and font-size selection for headings and standard text elements
   * (de) Zeichensatz und Schriftgrößen für Überschriften und übliche Text-Elemente
   *
   * @section content-fonts
   */

  /* (en) reset font size for all elements to standard (16 Pixel) */
  /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
  html * { font-size: 100.01% }
  
  /* (en) reset monospaced elements to font size 16px in Gecko browsers */
  /* (de) Schriftgröße von monospaced Elemente auf 16 Pixel setzen */
  textarea, pre, tt, code {
	font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;  	
  }

  /* (en) base layout gets standard font size 12px */
  /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
  body {
    font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
    font-size: 75.00%; 
    color: #000;  
  }

  h1,h2,h3,h4,h5,h6 { 
  	font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
  	font-weight:normal; 
  	color:#4A171E;
  	margin: 0.1em 0 0.1em 0; 
  }

  h1 { 
  font-size: 150%; 
  padding-left: 15px;
  padding-top:0.2em;
/*  background: url('../../images/pfeilgreen.png' ) no-repeat 0 0.4em; */ 
  text-transform: uppercase;
  border-top:1px solid #F3F4EF;
  border-bottom:1px solid #F3F4EF;
  }                        /* 24px */
  h2 { font-size: 150%; color:#4A171E;}          /* 24px */
  h3 { font-size: 133.33% }                        /* 18px */
  h4 { font-size: 133.33% }                     /* 16px */
  h5 { font-size: 116.67% }                     /* 14px */
  h6 { font-size: 116.67%; font-style:italic }  /* 14px */

  #header h1 {
    font-size:2.5em;
    letter-spacing:-2px;
    line-height:65%;
    color:#000;
  }

  #header span {
    color:#000;
  }

  p { line-height: 1.5em; margin: 0 0 1em 0; }

  /* ### Lists | Listen  #### */

  ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em }
  li { margin-left: 1.5em; line-height: 1.5em }

  dt { font-weight: bold }
  dd { margin: 0 0 1em 2em }

  /* ### text formatting | Textauszeichnung ### */

  cite, blockquote { font-style:italic }
  blockquote { margin: 0 0 1em 1.5em }

  strong,b { font-weight: bold }
  em,i { font-style:italic }

  pre, code { font-family: monospace; font-size: 1.1em; }

  acronym, abbr {
    letter-spacing: .07em;
    border-bottom: .1em dashed #c00;
    cursor: help;
  }

  /**
   * Generic Content Classes
   * (en) standard classes for positioning and highlighting
   * (de) Standardklassen zur Positionierung und Hervorhebung
   *
   * @section content-generic-classes
   */

  .note {background: #dfd; padding: 1em; border-top: 1px #bdb dotted; border-bottom: 1px #bdb dotted;}
  .important {background: #ffd; padding: 1em; border-top: 1px #ddb dotted; border-bottom: 1px #ddb dotted;}
  .warning {background: #fdd; padding: 1em; border-top: 1px #dbb dotted; border-bottom: 1px #dbb dotted;}

  .float_left { float: left; display:inline; margin-right: 1em; margin-bottom: 0.15em;  }
  .float_right { float: right; display:inline; margin-left: 1em; margin-bottom: 0.15em;  }
  .center { text-align:center; margin: 0.5em auto }

  /**
   * External Links
   *
   * (en) Formatting of hyperlinks
   * (de) Gestaltung von Hyperlinks
   *
   */

  a {color: #AEADA8; text-decoration:none;}
  a:focus,
  a:hover,
  a:active {color:#4A171E; text-decoration:underline;}
  
  #topnav a { color: #000; font-weight: normal; background:transparent; text-decoration:none; }
  #topnav a:focus, 
  #topnav a:hover,
  #topnav a:active { color: #4A171E; text-decoration:underline; background-color: transparent;}
  
  #footer a { color: #000; background:transparent; font-weight: normal;}
  #footer a:focus, 
  #footer a:hover,
  #footer a:active {color: #4A171E; background-color: transparent; text-decoration:underline;}

  /**
   * (en) Emphasizing external Hyperlinks via CSS
   * (de) Hervorhebung externer Hyperlinks mit CSS
   *
   * @section             content-external-links
   * @app-yaml-default    disabled
   */

  /*
  #main a[href^="http://www.my-domain.com"],
  #main a[href^="https://www.my-domain.com"]
  {
    padding-left: 12px;
    background-image: url('your_image.gif');
    background-repeat: no-repeat;
    background-position: 0 0.45em;
  }
  */

  /**
   * tables | Tabellen
   * (en) Generic classes for table .orange-width and design definition
   * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
   *
   * @section content-table .oranges
   */

  table { width: auto; border-collapse:collapse; margin-bottom: 0.5em; }
  table .full { width: 100%; }
  table .fixed { table .orange-layout:fixed }

  th,td { padding: 0.5em; }
  thead th { background: #444; color: #fff }
  tbody th { background: #ccc; color: #333 }
  tbody th.sub { background: #ddd; color: #333 }

  /*##############################

####### Orange TABELLEN ###############*/

table .orange a { color:#f60;	text-decoration:none; }

table .orange a:hover { text-decoration:underline; }

table .orange a:visited { color:#ffb17d; }

table .orange caption, th, tfoot td { }

table .orange caption { color:#4A171E;	letter-spacing:.3em; text-align:center; padding-bottom:.5em; }

table .orange { width:100%; border-collapse:collapse; border:2px solid #4A171E;}

table .orange td,table .orange th { padding:5px; }

/* THEAD*/

table .orange thead th { font-size:15px; font-weight:normal; font-variant:small-caps;

	color:#fff2ea;	background-color:#4A171E; }

/* TFOOT */

table .orange tfoot th, table .orange tfoot td { font-size:15px; font-weight:bold; 

	color:#fff2ea;	background-color:#f60; padding:10px; }

table .orange tfoot td { font-size:30px;	font-weight:normal; }

/* TBODY */

table .orange tbody td, table .orange tbody th { line-height:140%; background-color:#fff; color:#666; }

table .orange tbody tr.odd td, table .orange tbody tr.odd th { background-color:#fff2ea;	border:1px solid #f60; border-width:1px 0; }

table .orange tbody th a { font-size:13px; font-weight:normal; font-variant:small-caps; }



/* ONLY REAL GOOD BROWSERS */

/* GENERAL */

table .orange tbody td+td+td+td {	text-align:right; }

table .orange tbody tr th:before { content:"\2588\00A0\00A0"; color:#f60;}

table .orange tbody td+td+td+td:before { content:"\21E9"; color:#f60; }

/* HOVER */

table .orange tbody tr:hover td, table .orange tbody tr:hover th:before { color:#000; }

table .orange tbody tr:hover td a, table .orange tbody tr:hover th a { color:#000; text-decoration:underline; }

table .orange tbody tr:hover td a:visited, table .orange tbody tr:hover th a:visited { color:#ccc; }

table .orange tbody tr:hover td+td+td+td a { font-weight:bold; }

table .orange tbody tr:hover td+td+td+td:before { color:#000; }
  
  /**
   * Miscellaneous | Sonstiges
   *
   * @section content-misc
   */

  hr {
    color: #fff;
    background:transparent;
    margin: 0 0 0.5em 0;
    padding: 0 0 0.5em 0;
    border:0;
    border-bottom: 1px #eee solid;
  }

/* ######################################################################################################

** ### Formulare #############################################################################

** ######################################################################################################

*/


form {overflow:hidden; width:99.9%; border:0;}
input, textarea, select {width:auto; border:1px #4A171E solid; background:#FFDFE4; margin:5px; padding:3px; color:#000;}
input[type=text]:focus, input[type=password]:focus, textarea:focus {background:#E7FFDF; color:#000; border-color:#66A552;}
label {margin-top: 10px; width:9em; float:left;}
legend {display:none;}
fieldset {border:none;}


/* ######################################################################################################

** ### Spezielle Formatanweisungen für Buttons ############################################

** ######################################################################################################

*/

input.button {
	width: auto;
	color: #ffffff;
	background: #4A171E;
	margin-right: 5px;
	margin-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	border: none;

}

input.button:hover {
	background-color: #AEADA8;
	cursor: pointer;

}

.csc-mailform-submit {
	width: auto;
	color: #ffffff;
	background: #4A171E;
	margin-right: 5px;
	margin-top: 10px;
	padding-left: 5px;
	padding-right: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
	border: none;
}

.csc-mailform-submit:hover {
	background-color: #AEADA8;
	cursor: pointer;
}

fieldset.tx-powermail-pi1_fieldset div.even {
background:none;
}

} /* End - media */


