/* -------------------------------------------------------------- 
   
   Typography.css
   * Sets some default typography.
  
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Wilson Miner      [wilsonminer.com]
   
   Read more about using a baseline here:
   * alistapart.com/articles/settingtypeontheweb
   
   Edited by Aiste Cesnaite, Neosymmetria
  
-------------------------------------------------------------- */   

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.25; /* Unitless for proper inheritance */
}
body {
	font-size: 75%;
}   /* IE */
html > body {
	font-size: 12px;
}  /* Other browsers */


/* Colors
-------------------------------------------------------------- */
.fontColor1 {
	color: #fff !important;
}
.fontColor2 {
	color: #000 !important;
}
.fontColor3 {
	color: #86171e !important;	/* Dunkel Rot */
}
.fontColor4 {
	color: #003f5b !important;	/* Dunkel Blau */
}
.fontColor5 {
	color: #666 !important;	/* Dunkel Grau */
}
.fontColor6 {
	color: #cfcdcd !important;
}
.fontColor7 {
	color: #6b6b6b !important;
}
.fontColor8 {
	color: #05670d !important;
}
.fontColor9 {
	color: #086417 !important; /* Dunkel Grün*/
}


/* ------------ BackgroundColors
--------------------------------------------------------- */
.color1 {
	background-color: #86171e !important; /* Dunkel Rot */
}
.color2 {
	background-color: #003f5b !important; /* Dunkel Blau */
}
.color3 {
	background-color: #086417 !important; /* Dunkel Grün*/
}
.color4 {
	background-color: #666666 !important; /* Dunkel Grau */
}
.color5 {
	background-color: #f2f2f2 !important; /* Hell Grau*/
}
.color6 {
	background-color: #fff !important; /* Hell Grau*/
}

/* ------------ Abstände
-------------------------------------------------------------- */
.top0 {margin-top: 0px !important;}
.top5 {margin-top: 5px !important;}
.top10 {margin-top: 10px !important;}
.top15 {margin-top: 15px !important;}
.top20 {margin-top: 20px !important;}

.bottom0 {margin-bottom: 0px !important;}
.bottom5 {margin-bottom: 5px !important;}
.bottom10 {margin-bottom: 10px !important;}
.bottom15 {margin-bottom: 15px !important;}
.bottom20 {margin-bottom: 20px !important;}

/* Fonts
-------------------------------------------------------------- */
.fontArt1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
.fontArt2 {
	font-family: "Times New Roman", Times, serif;
}


/* Headings
-------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
	font-family: "Times New Roman", Times, serif;
}
h1 {
	font-size: 1.8em;
	font-size: 2em;
	color: #fff;
	line-height: 1.2em;
}
h2 {
	font-size: 1em;
	line-height: 1.7em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #fff;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0.20em;
}
h3 {
	font-size: 0.9em;
	line-height: 1em;
	color:#666;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}
h4 {
	font-size: 0.85em;
	line-height: 1em;
	color: #86171e;
	font-weight:bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h5 {
	font-size: 1em;
	font-weight:bold;
}
h6 {
	font-size: 1em;
}



h2 span {
	padding: 0 10px;
}


/* Text elements
-------------------------------------------------------------- */

p {
	font-size: 1em;
	line-height: 1.35em;
}
ul, ol {
	margin: 0 0 1.5em 1.5em;
}
ol {
	list-style-type: decimal;
}
dl {
	margin: 1.5em 0;
}
dl dt {
	font-weight: bold;
}

ul.linkListePfeil {
	list-style-image:url(../../images/arrows/arrow_red.gif);
	margin: 0px;
	padding: 0px;
}
ul.linkListe {
	margin: 0px 0px 5px 20px;
	padding: 0px;
}
.linkListe li {
	line-height: 1.5em;
}

a {
	font-size: 1em;
	color: #fff;
	text-decoration: none;
	outline: none;
}
a:hover {
	color: #fff;
	text-decoration: underline;
}

blockquote {
	margin: 1.5em 0 1.5em 1.5em;
	color: #666;
	font-style: italic;
}
strong {
	font-weight: bold;
}
em {
	font-style: italic;
}
pre {
	margin-bottom: 1.3em;
	background: #eee;
	border:0.1em solid #ddd;
	padding:1.5em;
}
code {
	font:0.9em Monaco, monospace;
}
sup {
	line-height: 0;
	vertical-align: text-top;
	font-size:0.92em;
}
/* Horizontal rulers */

hr {
	background: #d1d1d1;
	clear: both;
	float: none;
	width: 475px;
	height: 1px;
	margin:0;
	border: none;
}
* html hr {
	margin: 1em 0;
} /* IE6 fix */
.separator hr {
	display:none;
}
.separator {
	height: 1px;
	/*margin: 15px 15px 11px 15px;*/
	margin-left: 18px;
	margin-right: 18px;
	clear: both;
	float: none;
}
.separator.line {
	background: #d1d1d1;
}
.separator.thick {
	background: #d1d1d1;
	height: 5px;
}
.separator.dot {
	background: transparent url(../../images/dot_hori.gif) left top repeat-x;
}


/* ------------ Ausrichtungen
--------------------------------------------------------- */
.rightFloat {
	float: right;
	display: block;
}
.leftFloat {
	float: left;
	display: block;
}

.rightAlign {
	text-align: right;
}
.leftAlign {
	text-align: left;
}
.centerAlign {
	text-align: center;
}


/* Links
-------------------------------------------------------------- */
a.more {
	color: #86171e;
	padding-right: 5px;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	background: transparent url(../../images/arrows/arrow_red.gif) right center no-repeat;
}
a.more.twin {
	padding-right: 15px;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: right;
	background: transparent url(../../images/arrows/twin_arrow_red_5.gif) right 3px no-repeat;
}
a.linksArtikel {
	font-size: 11px;
	padding-left: 5px;
}
.linkListe a.more {
	color: #fff;
	padding-right: 0px;
	padding-left: 7px;
	font-size: 11px;
	background: transparent url(../../images/arrows/arrow_white.gif) left 4px no-repeat;
	text-transform: none;
}
.linkRAlign {
	margin: 0 15px;
	padding: 0.10em 0;
	text-align: right;
}

#sidebar a.ngLink {
	color: #fff;
	padding-right: 5px;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	background: transparent url(../../images/arrows/arrow_white.gif) right center no-repeat;
}
#sidebar a.ngLink:hover {
	text-decoration: underline;
	color: #999999;
}

/* Tables
-------------------------------------------------------------- */
/*
table   { margin-bottom: 1.4em; border-top:0.1em solid #ddd; border-left:0.1em solid #ddd; }
th,td   { height: 1em; padding:0.2em 0.4em; border-bottom:0.1em solid #ddd; border-right:0.1em solid #ddd; }
th      { font-weight:bold; }
*/

table {
	border:0;
	margin:0;
}
th, td {
	height: 1em;
	padding:0.2em 0.3em;
	border:0;
	font-size:0.92em;
	vertical-align: middle;
}
th {
	font-weight:bold;
}
td a {
	font-weight:bold;
	text-decoration:none;
}
td a:hover {
	text-decoration:underline;
}
td img {
	margin-bottom:-1px;
}
td.width55 {
	width:55%;
}
td.width45 {
	width:45%;
}
table.live td.time {
	color:#792b2b;
	font-weight:bold;
	font-size:0.83em;
}


/* Forms
-------------------------------------------------------------- */

input, select, textarea {
	font-family: Verdana, Arial, Helvetica, sans-serif;
}


/* Some default classes
-------------------------------------------------------------- */

p.small {
	font-size: 0.8em;
	margin-bottom: 1.875em;
	line-height: 1.875em;
}
p.big {
	font-size: 1.2em;
	line-height: 2.5em;
}
p.quiet {
	color: #666;
}
.hide {
	display: none;
}
.loading {
	/*background: transparent url(../images/ajaxloader.gif) center center no-repeat;*/
	background: transparent url(../images/ajaxLoader.gif) center center no-repeat;
}

/* Mouse Cursor
--------------------------------------------------------------*/
.cursorDefault {
	cursor: default;
}
.cursorPointer {
	cursor: pointer;
}

/* Special text styles
--------------------------------------------------------------*/
