/**
 * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
 *
 * (en) central stylesheet - layout example "3col_standard"
 * (de) Zentrales Stylesheet - Beispiellayout "3col_standard"
 *
 * @copyright       Copyright 2005-2011, 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.3.1
 * @revision        $Revision: 501 $
 * @lastmodified    $Date: 2011-06-18 17:27:44 +0200 (Sa, 18 Jun 2011) $
 */

@media screen {
/** 
   * (en) Forcing vertical scrollbars in IE8, Firefox, Webkit & Opera 
   * (de) Erzwingen vertikaler Scrollbalken in IE8, Firefox, Webkit & Opera 
   *
   * @workaround
   * @affected IE8, FF, Webkit, Opera
   * @css-for all
   * @valid CSS3
   */

body {
	overflow-y: scroll;
}
/*------------------------------------------------------------------------------------------------------*/
  
  /**
   * (en) Formatting YAML's  basic layout elements
   * (de) Gestaltung des YAML Basis-Layouts
   */

  /* (en) Marginal areas & page background */
  /* (de) Randbereiche & Seitenhintergrund */
body {
	background: #7f878c;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}
/* (en) Centering layout in old IE-versions */
  /* (de) Zentrierung des Layouts in alten IE-versionen */
body {
	text-align: center;
}
/*Abstand vom linken Browserrand*/
  
html * {
	font-size: 100.01%;
}
/* (en) base layout gets standard font size 12px */
  /* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
body {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 75.00%;
	color: #e8e9ea;
}
p {
	line-height: 1.6em;
	margin: 0 0 1em 0;
}
strong, b {
	font-weight: bold;
}
em, i {
	font-style: italic;
}
big {
	font-size: 116.667%;
}
small {
	font-size: 91.667%;
}
/*--- Links ----------------------------------------------------------------------------------------- */

a {
	color: #e8e9ea;
	background: transparent;
	text-decoration: none;
}
a:visited {
	color: #e8e9ea;
}
/* (en) maximum constrast for tab focus - change with great care */
  /* (en) Maximaler Kontrast für Tab Focus - Ändern Sie diese Regel mit Bedacht */
a:focus {
	text-decoration: none;
	color: #000; /*background: #fff;*/ /*outline: 3px #f93 solid;*/
}
a:hover, a:active {
	color: #e8e9ea;
	text-decoration: none;
	outline: 0 none;
}
#nav {
	width: 100%;
	height: 32px; /*36px*/
	position: relative;
	background: #545a61 url("../images/logo_14px.gif") no-repeat;
	padding: 0px;
}
#logo {
	float: left;
}
#logo img {
	border: 0;
}
.button {
	float: right;
	display: block;
	font-size: 12px;
	padding: 1px 10px 1px 10px;
	text-align: center;
	height: 2em;
	line-height: 2em;
	text-decoration: none;
	width: auto;/*200px;*/
	margin: 2px;
	border: 1px solid #2C2F33;
	font-weight: normal;
	color: #fff;
	text-shadow: 0 1px 1px #111;
	-webkit-border-radius: 1.2em;
	-moz-border-radius: 1.2em;
	border-radius: 1em;
	background: #545a61;
	background: -moz-linear-gradient(#5c626a, #545a61 );
	background: -webkit-gradient(linear, left top, left bottom, from(#5c626a), to(#545a61));
	background: -webkit-linear-gradient(#5c626a, #545a61);
	background: -o-linear-gradient(#5c626a, #545a61);
	background: linear-gradient(#5c626a, #545a61);    /*#545a61,#2C2F33, 5c626a*/
}
}

