/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; }	<--- This makes links green
	.custom a:hover { color: #00f; }				<--- This makes links blue when you mouse over them

WHY THIS WORKS:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/

body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}

.custom ul#tabs li ul {display:none; position:absolute; list-style:none; z-index:999;}
.custom ul#tabs li ul li {float:none;}
.custom ul#tabs li:hover ul {display:block;}

.custom .standings {
padding: 0px;
width: 100%;
border-spacing:0;
border-collapse: collapse;
margin-bottom:20px;
}

.custom  .standings td {
text-align: center;
border-bottom: 1px solid #808080; 
height: 35px;
}

.custom  .standings tr.odd td{
background-color: #FFFFFF;
}

.custom  .standings tr.even td{
background-color: #EFEFEF;
}

.custom  .standings tr.head th{
background-color: #EFEFEF;
border-bottom: 2px solid #808080;
height: 35px;
}

.custom  .standings .flagge {
text-align: left;
}

.custom  .standings .flagge img{
vertical-align: top;
display: inline;
padding-right: 5px;
padding-left: 5px;
margin: 0;
}


.custom .fixtures {
padding: 0px;
width: 100%;
border-spacing:0;
border-collapse: collapse;
margin-bottom:50px;
}

.custom  .fixtures td {
text-align: center;
border-bottom: 1px solid #808080; 
height: 35px;
}

.custom  .fixtures tr.odd td{
background-color: #FFFFFF;
}

.custom  .fixtures tr.even td{
background-color: #EFEFEF;
}

.custom  .fixtures tr.head th{
background-color: #EFEFEF;
border-bottom: 2px solid #808080;
height: 35px;
}

.custom  .fixtures .l {
text-align: left;
padding-left: 5px;
}

.custom  .fixtures .flagge1 {
text-align: left;
}

.custom  .fixtures .flagge1 img{
vertical-align: top;
display: inline;
padding-right: 5px;
padding-left: 5px;
margin: 0;
}

.custom  .fixtures .flagge2 {
text-align: right;
}

.custom  .fixtures .flagge2 img{
vertical-align: top;
display: inline;
padding-right: 5px;
padding-left: 5px;
margin: 0;
}




.custom .sidebar h3 {
	border-bottom:1px dotted #DDDDDD;
	border-top:1px solid #DDDDDD;
	color:#111111;
	font-size:0.846em;
	font-variant:normal;
	font-weight:bold;
	letter-spacing:2px;
	line-height:1.455em;
	margin-bottom:1em;
	padding:0.636em 0.455em 0.545em;
	text-transform:uppercase;
}

.custom #advertise{
	
}

.custom #advertise img{
	padding:0 10px;
}

.custom .headline_meta {
	float:left;
	
}

.custom .sidebar a, .custom .sidebar a:visited, .custom .sidebar a:hover {
	color: #339900;
}

.custom .aligncenter {
	clear:both;
	display:block;
	float:none;
	margin:0 auto;
}

.custom li.refdir {
	margin-bottom:0;
}

.custom .refdir li, .custom .textwidget li {
	line-height:1em;
}

.custom li.widget input[type="submit"] {
	background:transparent url(../images/submit-bg.gif) repeat scroll 0 0;
	border-color:#CCCCCC #999999 #999999 #CCCCCC;
	border-style:double;
	border-width:3px;
	color:#111111;
	cursor:pointer;
	font-weight:bold;
}

.custom .gadget {
	background:#ddffcd none repeat scroll 0 0;
	border:0.077em solid #aaddaa;
	line-height:1.385em;
	padding:0.846em;	
}

.custom .gadget h4 {
	font-size:1.077em;
	font-weight:bold;
	line-height:1.286em;
	margin-bottom:0.429em;
}

.custom .content_ad {
	text-align: center;
	padding: 1.1em 0 1.1em 0;
}

.custom .content_ad_without_padding {
	text-align: center;
	padding: 1.1em 0 0 0;
}

.custom .content_ad_left {
	text-align: left;
	padding: 1.1em 0 1.1em 0;
}

.custom #header {
padding-bottom: 1.1em;
}

.custom .comments_intro {
	margin-top: 2.2em;
}
/* Styling für das Kontaktformular*/
.custom #wpcf label {
	clear: both;
	display: block;
	float: left;
	width: 150px;
}
.custom #wpcf input {
	float: left;
	width: 200px;
	padding: 1px;
	margin: 2px 5px 2px 0;
}
.custom #wpcf textarea {
	width: 350px;
	height: 100px;
	padding: 1px;
	margin: 0 5px 10px 0;
}
.custom #wpcf #contactsubmit {
	margin-right: 250px;
	width: 100px;
}
.custom td.right {
	text-align: right;
}
.custom td.left {
	text-align: left;
}
.custom td.center {
	text-align: center;
}
.custom thead {
	font-weight: bold;
}
.custom .tv {
	font-size:0.8em;
}