@charset "UTF-8";
/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) Template for designing a screen layout
 * (de) Gestaltungsvorlage für die Erstellung eines Screenlayouts
 *
 * @copyright       Copyright 2005-2010, 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.2.1
 * @revision        $Revision:392 $
 * @lastmodified    $Date:2009-07-05 12:18:40 +0200 (So, 05. Jul 2009) $
 */
 
 /*
  * Changed, extended by simplicity gmbh, 2010-01-20
  */

@media screen, projection
{
  /** 
   * Forcing vertical scrollbars in IE8, Firefox, Webkit & Opera 
   *
   * @workaround
   * @affected IE8, FF, Webkit, Opera
   * @css-for all
   * @valid CSS3
   */

  body { overflow-y:scroll; }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Design of the Basic Layout | Gestaltung des YAML Basis-Layouts
  *
  * @section layout-basics
  */

  /* Page margins and background | Randbereiche & Seitenhintergrund */
  body {
  	background-color: #113360;
  }

  /* Layout:Width, Background, Border | Layout:Breite, Hintergrund, Rahmen */
  .page_margins { 
	min-width: 850px;
	max-width: 850px;
	margin: 0 auto;
  	background-color: #ffffff;
  	text-algin: left;
  }
  .page { 
  	padding: 0px 0px 0px;
  }

  /* Design of the Main Layout Elements | Gestaltung der Hauptelemente des Layouts */
  #header { 
	height: 48px;
	background-color: #fff;
  }
  
  #header #logo {
  	padding: 0px 0px;
  }
  div.logosymbol {
  	background-color: #fff;
  }
  
  #topnav {
  	position: relative;
  	text-align: right;
	padding: 7px 3px 10px;
	font-size: 11px;
  }
  #topnav a {
  	text-decoration: none;
  }
  #topnav a:hover {
  	text-decoration: underline;
  }
  #topnav a.cur {
  	color: #cc0000;
  }
  #topnav a.cur:hover {
  	color: #cc0000;
  	text-decoration: underline;
  }
  #topnav div.metanav {
  	float: right;
  	width: 300px;
  	padding: 3px 20px 0px 0px;
  }
  
  #langnav {
  	float: right;
  	width: 100px;
  	overflow: hidden;
  }
  #langnav div.langlink,
  #langnav div.langlinka {
  	float: right;
  	margin: 0 0 0 3px;
  	padding: 3px;
  }
  #langnav div.langlink {
  	background-color: #fff;
  }
  #langnav div.langlink a {
	font-weight: bold;
	color: #113360;
  	text-decoration: none;
  }
  #langnav div.langlink a:hover {
	color: #cc0000;
  	text-decoration: none;
  }
  #langnav div.langlinka {
  	background-color: #113360;
  }
  #langnav div.langlinka a {
	font-weight: bold;
	color: #fff;
  	text-decoration: none;
  }
  #langnav div.langlinka a:hover {
	color: #00cccc;
  	text-decoration: none;
  }
	
  #subheader { 
  	clear: left;
  	margin: 0px 0px;
  	padding: 0px 0px;
  }
  #subheader .clickpath {
  	margin: 0px 0px;
  	padding: 0px 0px;
  }  
  

  #main {  }

  
 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Formatting of the Content Area | Formatierung der Inhaltsbereichs
  *
  * @section layout-main
  */

  #col1 { 
  	width: 230px;
  }
  #col1_content { 
  	margin-right: 0px;
  }
  #col1_content .navblock {
  	background-color: #ccc;
  }

  #col3 { 
  	margin-left: 230px;
  	margin-right: 0px;
  }
  #col3_content {
  	padding: 20px 25px 0px 25px;
  	min-height: 400px;
  	overflow: hidden;
  }

  .contentBelowSubnav {
  	margin-top: 10px;
  	padding: 12px 10px 1px 13px;
/* 	background-color: #e4e4e4; */
  }

 /*------------------------------------------------------------------------------------------------------*/

 /**
  * Footer, bottom nav layout
  */
  
  #footer {
  	margin-top: 20px;
  	padding: 0px 0px;
  	height: 60px;
  	background-color: #113360;
  	color: #fff;
  	font-size: 11px;
  }
  #footer .footerlogos {
  	padding: 20px 0px 10px;
  	background-color: #fff;
  }
  #footer .belowpage {
    height: 30px;
    padding-top: 5px;
  	background-color: #113360;
  }
  #footer .copyright {
  	color: #fff;
  	float: left;
  }
  #footer .bottomnav {
  	color: #ccc;
  	float: right;
  }
  #footer .copyright a,
  #footer .bottomnav a {
  	color: #fff;
  	font-weight: normal;
  	text-decoration: none;
  }
  #footer .copyright a:hover,
  #footer .bottomnav a:hover {
  	text-decoration: underline;
  }
  
  #footer table.footerlogos {
  	width: 100%;
  	border-top: 0px solid #fff;
  	border-bottom: 0px solid #fff;
  }
  #footer table.footerlogos td {
  	border-bottom: 0px solid #fff;
  	width: 25%;
  }
  
  /* Abstand zu t3 admin panel */
  #footerclear {
  	clear: both;
  	margin-bottom: 5px;
  }
  
 /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Skiplinks 
  *
  * @section content-skiplinks
  */
  
  #skiplinks a.skip:focus,
  #skiplinks a.skip:active { 
	color:#fff; 
	background:#333; 
	border-bottom:1px #000 solid;
	padding:10px 0;
	text-decoration:none;
  }  
}
