/** "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
* (en) Uniform design of standard content elements
* @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) $
* @appdef yaml
* Fonts
* (en) global settings of font-families and font-sizes
* @section content-global-settings
(en) reset font size for all elements to standard (16 Pixel)*/
HTML *
{
	/*[disabled]font-size:100.01%;*/
}
/** (en) reset monospaced elements to font size 16px in all browsers
* @see: http://webkit.org/blog/67/strange-medium/*/
TEXTAREA, PRE, CODE, KBD, SAMP, VAR, TT
{
	font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier;
}
/*(en) base layout gets standard font size 12px*/
BODY
{
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 75%;
	color: #444;
}
/*--- Headings | Überschriften ------------------------------------------------------------------------*/
H1, H2, H3, H4, H5
{
	font-family: sans-serif, Times, serif;
	font-weight: bold;
	color: #222;
	margin: 0 0 0.25em;
}
H1
{
	font-size: 250%;
}
/*30px*/
H2
{
	font-size: 150%;
}
/*24px*/
H3
{
	font-size: 150%;
}
/*18px*/
H4
{
	font-size: 133.33%;
}
/*16px*/
H5
{
	font-size: 116.67%;
}
/*14px*/
H6
{
	font-family: sans-serif, Times, serif;
	font-weight: bold;
	font-size: 116.67%;
	color: #222;
	margin: 0 0 0.75em;
}
/*14px
--- Lists | Listen  --------------------------------------------------------------------------------*/
UL, OL, DL
{
	line-height: 1.5em;
	margin: 0 0 1em 1em;
}
UL
{
	list-style: url(bullet.png);
}
UL UL
{
	list-style: url(bullet.gif);
	margin-bottom: 0;
}
OL
{
	list-style-type: decimal;
}
OL OL
{
	list-style-type: lower-latin;
	margin-bottom: 0;
}
LI
{
	margin-left: 0.8em;
	line-height: 1.5em;
}
DT
{
	font-weight: bold;
}
DD
{
	margin: 0 0 1em 0.8em;
}
/*--- general text formatting | Allgemeine Textauszeichnung ------------------------------------------*/
P
{
	line-height: 1.5em;
	margin: 0 0 1em;
}
IMG
{
	border: 1px solid #2E5F87;
	padding: 4px;
	background: #FAFAFA;
	margin: 5px;
}
IMG.float-right
{
	margin: 5px 0px 5px 15px;
}
IMG.float-left
{
	margin: 5px 15px 5px 0px;
	text-align: left;
}
IMG.img_content
{
	text-align: left;
	border: none;
	background-color: transparent;
}
IMG.img_content_left
{
	text-align: left;
	border: none;
	background-color: transparent;
	margin: -10px 0 0 -10px;
}
BLOCKQUOTE, CITE, Q
{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-style: italic;
}
BLOCKQUOTE
{
	margin: 0 0 1em 1.6em;
	color: #666;
}
STRONG, B
{
	font-weight: bold;
}
EM, I
{
	font-style: italic;
}
BIG
{
	font-size: 116.667%;
}
SMALL
{
	font-size: 91.667%;
}
PRE
{
	line-height: 1.5em;
	margin: 0 0 1em;
}
PRE, CODE, KBD, TT, SAMP, VAR
{
	font-size: 100%;
}
PRE, CODE
{
	color: #800;
}
KBD, SAMP, VAR, TT
{
	color: #666;
	font-weight: bold;
}
VAR, DFN
{
	font-style: italic;
}
ACRONYM, ABBR
{
	border-bottom: 1px dotted #AAA;
	font-variant: small-caps;
	letter-spacing: 0.07em;
	cursor: help;
}
SUB, SUP
{
	font-size: 91.6667%;
	line-height: 0;
}
HR
{
	color: #FFF;
	background: transparent;
	margin: 0 0 0.5em;
	padding: 0 0 0.5em;
	border: 0;
	border-bottom: 1px solid #A9BCCB;
}
/*--- Links -----------------------------------------------------------------------------------------*/
A
{
	color: #2E5F87;
	background: transparent;
	text-decoration: underline;
}
A:visited
{
	color: #828E98;
}
/*(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: underline;
	color: #000;
	background: #FFF;
	outline: 3px solid #F93;
}
A:hover, A:active
{
	color: #828E98;
	text-decoration: none;
	outline: 0 none #000000;
}
/*--- images (with optional captions) | Bilder (mit optionaler Bildunterschrift) ------------------*/
P.icaption_left
{
	float: left;
	display: inline;
	margin: 0 1em 0.15em 0;
}
P.icaption_right
{
	float: right;
	display: inline;
	margin: 0 0 0.15em 1em;
}
P.icaption_left IMG, P.icaption_right IMG
{
	padding: 0;
	border: 1px solid #888;
}
P.icaption_left STRONG, P.icaption_right STRONG
{
	display: block;
	overflow: hidden;
	margin-top: 2px;
	padding: 0.3em 0.5em;
	background: #EEE;
	font-weight: normal;
	font-size: 91.667%;
}
/** Generic Content Classes
* (en) standard classes for positioning and highlighting
* @section content-generic-classes*/
.highlight
{
	color: #C30;
}
.dimmed
{
	color: #888;
}
.info
{
	background: #F8F8F8;
	color: #666;
	padding: 10px;
	margin-bottom: 0.5em;
	font-size: 91.7%;
}
.note
{
	background: #EFE;
	color: #040;
	border: 2px solid #484;
	padding: 10px;
	margin-bottom: 1em;
}
.important
{
	background: #FFE;
	color: #440;
	border: 2px solid #884;
	padding: 10px;
	margin-bottom: 1em;
}
.warning
{
	background: #FEE;
	color: #400;
	border: 2px solid #844;
	padding: 10px;
	margin-bottom: 1em;
}
.float_left
{
	float: left;
	/*[disabled]display:inline;*/
	margin-right: 1em;
	margin-bottom: 0.15em;
}
.float_right
{
	float: right;
	display: inline;
	margin-left: 1em;
	margin-bottom: 0.15em;
}
.center
{
	display: block;
	text-align: center;
	margin: 0.5em auto;
}
/** Tables | Tabellen
* (en) Generic classes for table-width and design definition
* @section content-tables*/
TABLE
{
	border-collapse: collapse;
	margin: 10px 15px;
}
TH STRONG
{
	color: #FFF;
}
TH
{
	background: #2E5F87;
	height: 29px;
	padding-left: 25px;
	padding-right: 25px;
	color: #FFF;
	text-align: left;
	border-left: 1px solid #B6D59A;
	border-bottom: 2px solid #FFF;
}
TR
{
	height: 30px;
}
TD
{
	padding-left: 25px;
	padding-right: 25px;
/*border-left: 1px solid #FFE1C3;*/
	border-left: 1px solid #FFF;
	border-bottom: 1px solid #FFFFFF;
}
TD.first, TH.first
{
	border-left: 0px solid #000000;
}
TR.row-a
{
	background: #F8F8F8;
}
TR.row-b
{
	background: #EFEFEF;
}
/** Miscellaneous | Sonstiges
* @section content-misc
* (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;
}
*/

