@charset "UTF-8";
/**
 * "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-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
 */

@media all
{
	/**
	 * Fonts
	 *
	 * (en) global settings of font-families and font-sizes
	 * (de) Globale Einstellungen für Zeichensatz und Schriftgrößen
	 *
	 * @section content-global-settings
	 */
	
	/* (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 all browsers
	 * (de) Schriftgröße von monospaced Elemente in allen Browsern auf 16 Pixel setzen
	 *
	 * @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 */
	/* (de) Basis-Layout erhält Standardschriftgröße von 12 Pixeln */
	body {
		font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
		font-size: 75.00%;
		color: #444;
	}
	
	/*--- Headings | Überschriften ------------------------------------------------------------------------*/
	
	h1,h2,h3,h4,h5,h6 {
		font-weight: bold;
		margin: 0 0 0.45em 0;
	}
	
	h1, h2, h3 {
		background-color: #ad1021;
		padding: 0.333em 0.666em 0.416em 0.75em; 
	}
	h1, h1 a, h2, h2 a, h3, h3 a {
		color: #fff;
	}
	
	h1 { font-size: 133.33%; }
	h2 { font-size: 100%; }
	h3 { font-size: 100%; }
	h4 { font-size: 116.67%; }
	h5 { font-size: 116.67%; font-weight: normal; }
	h6 { font-size: 116.67%; font-weight: normal; }
	
	.gallery-preview {
		margin-top: 15px;
	}
	
	.gallery-preview h3 {
		background-color: #941626;
		font-size: 11px;
		margin-bottom: 0;
	}
	
	.gallery-preview h3 a {
		display:block;
		text-decoration:none
	}
	
	/* --- Lists | Listen  -------------------------------------------------------------------------------- */
	
	ul, ol, dl { line-height: 1.5em; margin: 0 0 1em 1em; }
	ul { list-style-type: disc; }
	ul ul { list-style-type: circle; 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.2em; margin: 0 0 1.4em 0; }
	
	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 0; }
	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 #aaa dotted;
		font-variant: small-caps;
		letter-spacing: .07em;
		cursor: help;
	}
	
	sub, sup { font-size: 91.6667%; line-height: 0; }
	
	hr {
		color:#fff;
		background: transparent;
		margin: 0 0 0.5em 0;
		padding: 0 0 0.5em 0;
		border: 0;
		border-bottom: 1px #eee solid;
	}
	
	/*--- Links ----------------------------------------------------------------------------------------- */
	
	a { color: #ad1021; text-decoration: none; }
	
	a:hover,
	a:active { text-decoration: underline; outline: 0 none; }
	
	/**
	 * ------------------------------------------------------------------------------------------------- #
	 *
	 * Tables | Tabellen
	 *
	 * (en) Generic classes for table-width and design definition
	 * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
	 *
	 * @section content-tables
	 */
	
	table { width: auto; border-collapse: collapse; margin-bottom: 0.5em; }
	table caption { font-variant: small-caps; }
	table.full { width: 100%; }
	table.fixed { table-layout: fixed; }
	
	th,td { padding: 0.5em; }
	tbody th { text-align: left; }

	.tx-svdclubmanagement-pi1 table th,
	.tx-svdclubmanagement-pi1 table td { padding: 0; }
	
	/**
	 * ------------------------------------------------------------------------------------------------- #
	 *
	 * Miscellaneous | Sonstiges
	 *
	 * @section content-misc
	 */
	
	.align-justify { text-align: justify; }
	.align-right { text-align: right; }
	.align-center { text-align: center; }
	.align-left { text-align: left; }
	.indent { margin-left: 2em; }
	
	.content-banner {
		padding: 12px 0 15px;
	}
	.content-banner img {
		padding-right: 14px;
		background: url(../img/banner_border.gif) no-repeat right bottom scroll;
	}


	.banner img  {
		vertical-align: top;
		margin-bottom: 2px
	}
	
	/**
	 * (en) Emphasizing external Hyperlinks via CSS
	 * (de) Hervorhebung externer Hyperlinks mit CSS
	 *
	 * @section             content-external-links
	 * @app-yaml-default    disabled
	 */
	
	.news-head {
		border-top: 1px solid #fff;
		border-bottom: 6px solid #dc861f;
	}
	
	.news-head-wrapper {
		border-top: 3px solid #510100;
		border-bottom: 3px solid #5A0000;
	}
	
	.news-head h3 {
		color: #fff;
		background: #590100 url("../img/nav.gif") repeat-x left -35px scroll;
		margin-bottom: 0;
		font-size: 116.67%;
		padding-top: 0.666em;
	}
	
	.news-head .news-date {
		float: right;
		color: #aeaeae;
		line-height: 3.3em;
		font-size: 0.917em;
		margin-right: 0.6em;
	}
	
	.news-single-item {
		margin: -15px -10px;
	}
	
	.news-content-container {
		padding: 15px 10px;
	}
	
	.news-list-container .news-list-item {
		margin: 0 0 7px 0;
		border-bottom: 2px dotted #bbbbbb;
		background-color: transparent;
	}

	.news-list-item hr {
		padding:0;
		margin:0;
	}	
	
	.news-list-item h2 .news-list-category {
		font-weight: normal;
		font-size: 0.833em;
	}	
	
	.news-list-item .source {
		padding: 0 9px;
		font-size: 0.917em;
	}

	.news-list-item .source,
	.news-list-item .source a {
		color: #b1b1b1;
	}
	
	.news-list-item .news-content {
		padding: 6px 0 6px 9px;
		line-height: 1.3em;
	}
	
	.news-list-container .news-list-item .news-content {
		font-size: 0.917em;
		padding-right: 9px;
	}
	
	.news-list-single a.more {
		background: url(../img/red_arrow.gif) no-repeat right 4px scroll;
		padding-right: 8px;
		font-weight: bold;
	}
	
	.news-list-item .news-list-image {
		float: left;
	}
	
	.news-list-item .news-list-image a img {
		border: 1px solid #000;
		margin-right: 1.3em;
		margin-bottom: 1.3em;	
	}
	
	.news-list-date {
		font-size:10px;
		padding-top:2px;
		float:left;
		line-height:12px;
	}
	
	.news-single-subheader {
		font-weight:bold;
		padding-bottom:10px;	
	}

	/* TOP NEWS (LATEST NEWS) */

	.news-latest-container {
		margin-bottom: 10px;
		position: relative;
	}

	.news-latest-container .news-list-item.topnews {
		border-bottom: 2px dotted #bbbbbb;
		padding-bottom: 1.4em;
		margin-bottom: 8px;
	}

	.news-latest-container .news-list-item.topnews > h2 {
		margin-bottom: 1px;
		padding-bottom: 8px;
		padding-top: 8px;
	}

	.topnews-image {
		display: block;
		height: 250px;
		margin-bottom: 12px;
		overflow: hidden;
		box-shadow: 0 3px 6px -2px #444;
	}

	.news-latest-container .news-list-item .news-list-image a img {
		margin-right: 0;
		border: none;
	}

	.news-latest-container .news-list-content {
		background: #cecece none repeat scroll 0 0;
		border: 1px solid #888;
		padding: 8px 8px 1px;
		box-shadow: 0 0 7px 0 #444;
	}

	.news-list-morelink {
		margin-top: 4px;
		display: inline-block;
	}
	
	/*
	#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;
	}
	*/
	
	/* indexed-search pagebrowser */
	.tx-indexedsearch ul.browsebox {
		list-style: none;
		display: block;
	}
	
	.tx-indexedsearch ul.browsebox:after {
		clear: both;
		content: ".";
		display: block;
		font-size: 0;
		height: 0;
		visibility: hidden;
	}
	
	.tx-indexedsearch ul.browsebox li {
		float: left;
	}
	
	/* indexed-search listing */
	.tx-indexedsearch .title,
	.tx-indexedsearch .percent {
		background-color: #AD1021;
	}
	
	.tx-indexedsearch .title,
	.tx-indexedsearch .percent,
	.tx-indexedsearch .title a,
	.tx-indexedsearch .percent a {
		color: #fff;
	}
	
	.tx-indexedsearch .field {
		margin-bottom: 0.3em;
	}
	
	.tx-indexedsearch .field label {
		float: left;
		width: 18%;
		line-height: 1.5em;
	}
	
	.tx-indexedsearch-submit {
		margin-left: 18%;
	}
	
	.tx-indexedsearch .title {
		font-weight: bold;
	}
	
	.tx-indexedsearch-redMarkup {
		color: #AD1021;
	}
	
	/* tx-sisosecurevote-pi1 */
	
	.tx-sisosecurevote-pi1 {
		width: auto;
		margin-bottom: 0.5em;
	}
	
	.tx-sisosecurevote-pi1 div.question {
		font-weight: bold;
		margin-bottom: 0.5em;
	}
	
	.tx-sisosecurevote-pi1 div.answer {
		padding: 5px;
		border-bottom: 1px solid #999;
		width: auto;
	}
	
	.tx-sisosecurevote-pi1 .vote .answer input.answer {
		float: left;
		border: 1px solid #334972;
		background-color: #ad1021;
		color: #fff;
		font-weight: bold;
	}
	
	.tx-sisosecurevote-pi1 .vote .label {
		margin-left: 18px;
		display: block;
	}
	
	.tx-sisosecurevote-pi1 div.odd {
		background-color: #d5d5d5;
	}
	
	.tx-sisosecurevote-pi1 .answer_image img {
		float: left;
		margin-right: 0.3em;
		margin-bottom: 0.3em;
	}
	
	.tx-sisosecurevote-pi1 .submit {
		margin-top: 0.5em;
	}
	
	.tx-sisosecurevote-pi1 .submit input {
		float: right;
		background-color: #AD1021;
		border: 1px solid #580001;
		color: #FFFFFF;
		font-weight: bold;
	}
	
	.tx-sisosecurevote-pi1 div.answer div.label {
		padding: 1px 0;
	}
	
	.tx-sisosecurevote-pi1 div.answer div.bar_container div.bar_inner {
		background-color: #ad1021;
	}
	
	.tx-sisosecurevote-pi1 div.answer div.bar_container {
		margin: 0;
		border: 1px solid #580001;
		float: right;
		width: 47%;
		margin-top: 0.3em;
	}
	
	/* LOGIN and other DEFAULT-FORMS */
	form fieldset.base_form div.clearfix,
	.tx-felogin-pi1 form div.clearfix {
		padding-bottom: 0.25em;
	}

	form fieldset.base_form label,
	.tx-felogin-pi1 form label {
		width: 11em;
		float: left;
		display: block;
		padding: 2px 0;
	}

	form fieldset.base_form div.clearfix input,
	.tx-felogin-pi1 form div.clearfix input {
		float: left;
		width: 15em;
	}

	form fieldset.base_form div.buttons,
	.tx-felogin-pi1 form div.submit {
		padding-left: 11em;
		margin-bottom: 1.5em;
	}

	/* DIRECT MAIL SUBSCRIPTION */
    .dmailsubscription_modify .form_row {
        padding-bottom: 1em;
    }
    
    .dmailsubscription_modify .form_row label {
        width: 11em;
        float: left;
		display: block;
		padding: 2px 0;
    }
    
    .dmailsubscription_modify .form_row input {
        float: left;
        width: 15em;
    }
    
    .dmailsubscription_modify .form_row_submit {
        padding-left: 11em;
		margin-bottom: 1.5em;
    }
    
    .dmailsubscription_modify .form_error {
        color: #AD1021;
        font-weight: bold;
		padding-left: 11em;
		width: 100%;
		float: left;
    }

	/* svd_club_management */
	.tx-svdclubmanagement-pi1 ul.list-sportareas {
		margin: 0;
		list-style: none;
		border-bottom: 1px dotted #C0C0C0;
	}
	.tx-svdclubmanagement-pi1 div.list-news,
	.tx-svdclubmanagement-pi1 ul.list-sportareas li,
	.tx-svdclubmanagement-pi1 div.admin-link,
	.tx-svdclubmanagement-pi1 div.goBack {
		line-height: 1.8em;
		margin-left: 0.8em;
	}

	.tx-svdclubmanagement-pi1 div.list-news {
		border-bottom: 1px dotted #C0C0C0;
		margin-bottom: 10px
	}
	.tx-svdclubmanagement-pi1 .searchbox form fieldset.base_form label {
		width: 6em;
	}
	.tx-svdclubmanagement-pi1 .searchbox form fieldset.base_form div.clearfix input {
		width: 11em;
	}
	.tx-svdclubmanagement-pi1 .searchbox form fieldset.base_form .buttons {
		padding-left: 6em;
	}
	.tx-svdclubmanagement-pi1 div.logo {
		float: right;
	}
	.tx-svdclubmanagement-pi1 table.full {
		margin-right: 75px;
		width: 479px
	}
	
	.backtoTop
{
	display:none;
    position: fixed;
    top: 80%;
    right: 0px;
}
.backtoTop img
{
	width:80px;
}

.teaser-text span p span, .teaser-text p span, .news-text-wrap p span, .teaser-text-top span p span
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif !important;
font-size: 100.01% !important;
}

	
}
