@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Uniform design of standard content elements
 * (de) Einheitliche Standardformatierungen für die wichtigten Inhalts-Elemente
 *
 * @copyright       Copyright 2005-2008, Dirk Jesse
 * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
 *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
 * @link            http://www.yaml.de
 * @package         yaml
 * @version         3.0.6
 * @revision        $Revision: 202 $
 * @lastmodified    $Date: 2008-06-07 14:29:18 +0200 (Sa, 07 Jun 2008) $
 * @appdef yaml
 */

@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:Arial, Helvetica, sans-serif;
	width:280px;
	height:150px;
	margin-bottom:10px;
  }

  /* (en) base layout gets standard font size 12px */
  /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
  body {
	font-family:Arial, Helvetica, sans-serif;  	
    font-size: 75.00%; 
    color: #333;  
  }

  h2,h3,h4,h5,h6 { 
	font-family:Arial, Helvetica, sans-serif;  	
  	font-weight:bold; 
  	color:#000;
  	margin: 0 0 0.25em 0; 
  }
  
    h1 { 
	font-family:Arial, Helvetica, sans-serif;  	
  	font-weight:bold; 
  	color:#000;
  	margin: 0 0 1em 0; 
  }

  h1 { font-size: 110%; color:#90834d;}			   		              				/* 24px */
  h2 { font-size: 200%; color:#90834d;}          								/* 24px */
  h3 { font-size: 150%; color:#90834d;}               								/* 18px */
  h4 { font-size: 110%; padding-bottom:4px; font-weight:normal; border-bottom: 1px #000 solid; }		/* 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:#333;
  }

  p { line-height: 1.5em; margin: 0 0 0 0; text-align:left; }
  
  .csc-header { margin:0 0 0 0;}

  /* ### Lists | Listen  #### */

  ul, ol, dl { line-height: 1.0em; margin:0; list-style-type:none; }
  li { line-height: 1.5em; margin:0.5em 0 0 0; list-style-type:none; }
  li#current a { color:#383838; }
  

  dt { margin: 0 0 2em 0; font-weight: bold }
  dd { margin: 0 0 1em 0; font-size:9px; color:#666666; font-weight:bold; }

  /* ### 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: #90834d; text-decoration:none;}
  a:focus,
  a:hover,
  a:active {color:#000000; text-decoration:none;}
  
  #topnav a { color: #90834d; font-weight: normal; background:transparent;}
  #topnav a:focus, 
  #topnav a:hover,
  #topnav a:active { color: #000; text-decoration:none; background-color: transparent;}
  
  #footer a { color: #90834d; background:transparent;}
  #footer a:focus, 
  #footer a:hover,
  #footer a:active {color: #333; background-color: transparent;}

  /**
   * (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-width and design definition
   * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
   *
   * @section content-tables
   */

  table { width: auto; border-collapse:collapse; margin-bottom: 0.5em; }
  table.full { width: 100%; }
  table.fixed { table-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 }
  
  /**
   * Miscellaneous | Sonstiges
   *
   * @section content-misc
   */

  hr, csc-frame csc-frame-rulerAfter {
    color: #fff;
    background:transparent;
    margin: 0.5em 0 0.5em 0;
    padding: 0.5em 0 0.5em 0;
    border:0;
    border-bottom: 1px #90834d dotted;
  }
  
#totop {
width:100%;
text-align:right;
}

.cal_head {
font-size:90.00%;
line-height:100%;
margin: 0.5em 0 0.75em 0;
padding: 0.5em 0 0.75em 0;
}

.cal_time {
font-size:80.00%;
line-height:90%;
color:#666666;
}

.cal_text {
font-size:80.00%;
line-height:90%;
}

.wocherot {
font-size:80.00%;
line-height:90%;
}

.wocherot a { color: #ff0000; font-weight:bold; background:transparent;}
.wocherot a:focus, 
.wocherot a:hover,
.wocherot a:active { color:#000; font-weight:bold; text-decoration:none; background-color:transparent;}

.wochegrau {
font-size:80.00%;
line-height:90%;
}

.csc-textpic-caption {
line-height:130%;
}

.csc-sword {
color: #ff0000;
font-weight:bold;
}

.wall_ok {
color:#009900}

.wall_error {
color:#ff0000}

}

/* Römische Zeit rot */
#menue_19273 
{
padding:  0 0 0 0 ;
font-size: 12px;
line-height:20px;
border-bottom-color:#a51b1b;
border-bottom-style: solid;
border-bottom-width:4px;
}
#menue_19273 a {color: #000000; text-decoration:none;}



/* Frühmittelalter orange */
#menue_19549
{
padding:  0 0 0 0 ;
font-size: 12px;
line-height:20px;
border-bottom-color:#c87913;
border-bottom-style: solid;
border-bottom-width:4px;
}
#menue_19549 a {color: #000000; text-decoration:none;}


/* Alter Dom grün */
#menue_19434
{
padding:  0 0 0 3 ;
font-size: 12px;
line-height:20px;
/* background-color:#136211; */
border-bottom-color:#136211;
border-bottom-style: solid;
border-bottom-width:4px;
}
#menue_19434 a {color: #000000; text-decoration:none;}



/* Gotischer Dom blau  */
#menue_19435
{
padding:  0 0 0 0 ;
font-size: 12px;
line-height:20px;
border-bottom-color:#193471;
border-bottom-style: solid;
border-bottom-width:4px;
}
#menue_19435 a {color: #000000; text-decoration:none;}




/* Neuzeit grau */
#menue_19432
{
padding:  0 0 0 0 ;
font-size: 12px;
line-height:20px;
border-bottom-color:#7C7771;
border-bottom-style: solid;
border-bottom-width:4px;
}
#menue_19432 a {color: #000000; text-decoration:none;}


#menue_epoche2 
{
font-size: 12px;
line-height:20px;
background-color:#FFFFFF;
color: #00FF00; 
line-height: 1.3em;

}


#menue_epoche_current
{
color:#FF0000;
padding:  0 0 0 0 ;
font-weight:bold;
font-size: 13px;
background-color:#AAAAAAAA;
}


table#tabellestandard {    
background-color:#FFFFFF;    
border: solid #000 1px;    
width: 511px;}


/* SPACER */
.spacer {
   line-height:3px;
}

.news-single-img {
    float: right;
    margin: 0 0 0 0;
    padding: 0;
}

#col1_content1 {
 
margin: 0 0 0 15px ;
}

audio{
	background-color:#FFFFFF; 
}
