﻿/*
===================================
CSS Basic Styles

Description: 	Styles the Basic CSS Tags
Author: 		Felix Kreitner
Date:			26.02.2010

*/

/*
========================================================
FONTS
========================================================
*/

/*
========================================================
GLOBAL
========================================================
*/
html, body, table, textarea, input {
	font-size:			13px;
	line-height:		17px;
	font-family:		Arial, Helvetica, sans-serif;
}

body {
	color:				#383b3f;
}

/*
========================================================
LINKS
========================================================
*/

a:link, a:visited {
	color:				#f50024;
	text-decoration:	underline;
}

a:hover,code,pre {
	color:				#f50024;
}

a:active,.a:focus {
	color:				#f50024;
}

/*
========================================================
HEADLINES
========================================================
*/

h1,h2,h3,h4,h5,h6 {
	font-weight:			normal;
}

h1,h2,h3,h4,h5,h6 {
	margin:					12px 0 12px 0;
}

h1 {
	font-size:				18px;
	line-height:			18px;
	color:					#383b3f;
}

h2 {
	font-size:				14px;
	line-height:			14px;
	color:					#7e8388;

}

h3 {
	padding:				0 0 7px 32px;
	font-size:				14px;
	line-height:			14px;
	color:					#383b3f;
	background-image: 		url(/images/template/background-h3.png);
	background-repeat: 		no-repeat;
	background-position: 	left bottom;
}

h4 {
	padding:				4px 0 5px 32px;
	font-size:				14px;
	line-height:			14px;
	color:					#383b3f;
	background-image: 		url(/images/template/background-h4.png);
	background-repeat: 		no-repeat;
	background-position: 	left top;
	background-color:		#dcdfe1;;
}

h5 {
	margin-top:				25px;
	font-size:				18px;
	line-height:			22px;
	color:					#f50024;
}

h6 {
	font-size:				14px;
	line-height:			18px;
	text-transform:			uppercase;
}

/*
h1 + h2 {
	margin-top:				-12px;
}
*/

/*
========================================================
TABLE
========================================================
*/

table {
	border-top:				1px solid #d4d4d4;
	border-left:			1px solid #d4d4d4;
}

th, td {
	padding:				6px 10px;
	vertical-align:			top;
	border-bottom:			1px solid #d4d4d4;
	border-right:			1px solid #d4d4d4;
}

th {
	padding:				4px 10px;
	font-size:				13px;
	background-repeat: 		repeat-x;
	background-position: 	left top;	
}

/*
========================================================
ELEMENTS / TAGS
========================================================
*/

b,strong,th,thead td,samp,dfn {
	font-weight:			bold;
}

sub { 
	vertical-align:			sub;
}

sup {
	vertical-align:			super;
}

small, sup, sub {
	font-size:				10px;
	line-height:			0;
}

big {
	font-size:				20px;
}

caption { 
	text-align:				center;
}

pre {
	white-space:			pre;
}

pre * {
	font-size:				12px;
	white-space:			pre;
}

del {
	text-decoration:		line-through;
	color:					#666;
}

ins,dfn {
	border-bottom:			1px solid #666;
}

abbr,acronym {
	text-transform:			uppercase;
	font-size:				11px;
	letter-spacing:			1px;
}

abbr[title],acronym[title],dfn[title] {
	cursor:					help;
	border-bottom:			1px dotted black;
}

blockquote {
	color:					#666;
	padding-left:			20px;
}

blockquote > *:first-child:before {
	content:				"\201C";
	margin-left:			-10px;
	padding-right:			4px;
	line-height:			0;
}

blockquote > *:first-child:after {
	content:				"\201D";
	margin-right:			-10px;
	padding-right:			4px;
	line-height:			0;
}

blockquote cite, q cite {
	font-style:				normal;
}

cite,em,dfn {
	font-style:				italic;
}

code,kbd,samp,pre,tt,var {
	font-size:				12px;
	font-family:			mono-space,monospace;
}

hr {
	display:				block;
	margin:					20px 0 20px 0;
	background:				#d7d7d7;
	color:					#d7d7d7;
	width:					100%;
	height:					1px;
	border:					none;
}


/*
========================================================
FORM
========================================================
*/

form label {
	display:				block;
	margin:					0 0 4px 0;
}

form label.left {
	margin:					0 15px 0 10px;
}

form label.error {
	display:				none;
	color:					#F00;
	font-weight:			normal;
}

form input.error,
form select.error,
form textarea.error {
	border:					1px solid #F00;
	display:				block;
}

form input[type="radio"],
form input[type="checkbox"] {
	border:					0 !important;
}

input:focus {
	outline: 				2px solid Highlight;
}

input,
select,
textarea {
	padding:				3px 0;
	border:					1px solid #999;
}

input.small,
select.small,
textarea.small {
	width:					150px;
}

input.medium,
select.medium,
textarea.medium {
	width:					270px;
}

input.large,
select.large,
textarea.large {
	width:					560px;
}

/*
========================================================
LANGUAGE
========================================================
*/

:lang(af),:lang(nl),:lang(pl) {
	quotes:'\201E' '\201D' '\201A' '\2019';
}

:lang(bg),:lang(cs),:lang(de),:lang(is),:lang(lt),:lang(sk),:lang(sr),:lang(ro) {
	quotes:'\201E' '\201C' '\201A' '\2018';
}

:lang(da),:lang(hr) {
	quotes:'\00BB' '\00AB' '\203A' '\2039';
}

:lang(el),:lang(es),:lang(sq),:lang(tr) {
	quotes:'\00AB' '\00BB' '\2039' '\203A';
}

:lang(en-GB) {
	quotes:'\2018' '\2019' '\201C' '\201D';
}

:lang(fi),:lang(sv) {
	quotes:'\201D' '\201D' '\2019' '\2019';
}

:lang(fr) {
	quotes:'\ab\2005' '\2005\bb' '\2039\2005' '\2005\203a';
}

*[lang|='en'] q:before {
	content:'\201C';
}

*[lang|='en'] q:after {
	content:'\201D';
}

*[lang|='en'] q q:before {
	content:'\2018';
}

*[lang|='en'] q q:after {
	content:'\2019';
}

/*
========================================================
EXTENDED CLASSES
========================================================
*/

.left {
	float:					left;
}

.right {
	float:					right;
}

.align-left {
	text-align: 			left;
}

.align-right {
	text-align: 			right;
}

.align-center {
	text-align:				center;
}

.justify {
	text-align:				justify;
}

.hide {
	display: 				none;
}

.clear {
	clear:					both;
}

.bold {
	font-weight:			bold;
}

.italic {
	font-style:				italic;
}

.underline {
	border-bottom:			1px solid;
}

.highlight {
	background:				#ffc;
}

img.centered {
	display: 				block;
	margin-left: 			auto;
	margin-right: 			auto;
}

img.alignleft {
	float:					left;
	margin:					0 15px 5px 0;
}

img.alignright {
	float:					right;
	margin:					10px 0 10px 10px;
}

.marginleft {
	margin-left:			20px;
}

.marginright {
	margin-right:			20px;
}

.show-50 {
	-moz-opacity:			.50;
	filter:					alpha(opacity=50);
	opacity:				.50;
}

.clearfix:after {
	content:				".";
	display:				block;
	height:					0;
	clear:					both;
	visibility:				hidden;
	line-height:			0;
}

.p25left {
	padding-left:			25px;
}

.clearfix {
	display:				inline-block;
}

* html .clearfix {
	height:					1%;
}

html[xmlns] .clearfix {
	display:				block;
}

.clearfix {
	display:				block;
}

/*
========================================================
BASIC TAGS
========================================================
*/

.red {
	color:					#f50024;	
}

p {
	margin:					12px 0 12px 0;
}

#content ul {
	margin:					12px 0 12px 0;
	padding:				0 0 0 0;
	margin-bottom:			1em;
}

#content ul li {
	background-image:		url(/images/icons/pointer-grey.gif);
	padding:				3px 0 3px 15px;
	list-style:				none;
	background-repeat: 		no-repeat;
	background-position: 	left 8px;
}

#content ul ul {
	margin:					0;
}

#content ol li,
#content ul li {
	margin-bottom:			3px;
}

#content ol {
	margin:					12px 0 12px 26px;
	padding-left:			0px;
}

#content ol ol {
	margin:					0 0 0 26px;
}

#content ol li {
	list-style:				decimal;
	background-image:		none;
	padding-left:			0px;
}

.image-holder{
	background:#FFF url(/images/ajax-loader.gif) 50% 50% no-repeat;
}

.AlexaSiteStatsWidget
{
	display:				none;
}