/**
* "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
 
*
* 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: "Courier New", Courier, monospace;
}
/*(en) base layout gets standard font size 12px
(de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln*/
BODY
{
	font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
	font-size: 75%;
	color: #000;
}
H1, H2, H3, H4, H5, H6
{
	font-family: "times new roman", times, serif;
	font-weight: bold;
	color: #4D625D;
	margin: 0 0 0.25em;
}
H1
{
	font-size: 200%;
}
/*24px*/
H2
{
	font-size: 200%;
	color: #4D625D;
}
/*24px*/
H3
{
	font-size: 150%;
}
/*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: #FFF;
}
#header SPAN
{
	color: #999;
}
P
{
	line-height: 1.5em;
	margin: 0 0 1em;
}
/*### Lists | Listen  ####*/
UL, OL, DL
{
	line-height: 1.5em;
	margin: 0 0 1em 1em;
}
LI
{
	margin-left: 1.5em;
	line-height: 1.5em;
	color: #4D625D;
}
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: 0.07em;
	border-bottom: 0.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 dotted #BDB;
	border-bottom: 1px dotted #BDB;
}
.important
{
	background: #FFD;
	padding: 1em;
	border-top: 1px dotted #DDB;
	border-bottom: 1px dotted #DDB;
}
.warning
{
	background: #FDD;
	padding: 1em;
	border-top: 1px dotted #DBB;
	border-bottom: 1px dotted #DBB;
}
.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: #414D4C;
	text-decoration: underline;
}
A:focus, A:hover, A:active
{
	color: #4d625d;
	text-decoration: none;
}
#topnav A
{
	color: #999;
	font-weight: normal;
	background: transparent;
	text-decoration: none;
}
#topnav A:focus, #topnav A:hover, #topnav A:active
{
	text-decoration: underline;
	background-color: transparent;
}
#footer A
{
	color: #414D4C;
	background: transparent;
	font-weight: bold;
	text-decoration: underline;
}
#footer A:focus, #footer A:hover, #footer A:active
{
	color: #6B8075;
	background-color: transparent;
	text-decoration: none;
}
/**
* (en) Emphasizing external Hyperlinks via 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
*
* @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
{
	color: #FFF;
	background: transparent;
	margin: 0 0 0.5em;
	padding: 0 0 0.5em;
	border: 0;
	border-bottom: 1px solid #EEE;
}
