/* CSS SWR Tele-Akademie, Fernsehen			*/
/* Stand: Juni 2011					*/
/* ===================================================	*/


/* Begin Header und Navigation */

#header {
	height: 58px;
}

#header a {
	text-decoration: none;
}

#header a.right {
	float: right;
}

#navigation {
	display: table;
	width: 100%;				/* table auf volle Breite "aufblasen" */
	height: 30px;
}

#navigation li:first-child {			/* 1px links und rechts des Menüs als optischer Randausgleich zum Inhalt darunter.	*/
	padding-left: 1px;			/* 											*/
}						/* Reine Kosmetik, daher interessiert CSS3-Fähigkeit älterer Browser nicht.		*/
						/*											*/
#navigation li:last-child {			/*											*/
	padding-right: 1px;			/*											*/
}


#navigation li {
	display: table-cell;
	width: 20%;
	text-align: center;
	border-right: 2px solid #E6EFF8;	/* Der Zwischenraum zwischen den Menüpunkten als Rahmen *am* Menüpunkt */
}


#navigation li a {
	display: block;				/* volle Fläche des <li> klickbar machen */
	height: 30px;				/* gleiche Höhe wie Elternelement #navigation -> kein Überstehen oben oder unten */
	line-height: 30px;			/* einzeiliges vertikal zentrieren: line-height = box height */
	font-size: 14px;
	background-color: #849CAF;
	color: #FFF;
	text-decoration: none;
}

#navigation li:hover a,
#navigation li:focus a,
#navigation li:active a,
#navigation li a.current {
	color: #e20031;
	background-color: #f6f6f8;
}


.lastnav {
	border-right: 0 !important;		/* kein rechter Rahmen hier, da letztes Element - IE8 kann kein :last-child, also per class. Mpf. */
}

/* End Header und Navigation */

/* Begin Globals */

html, body  {
	height: 100%;
	margin-bottom: 1px;
}
	
* {
	margin: 0;
	padding: 0;
}

body {
	background: #849caf;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

#bg{				/* ║ Ersatz für background-size - IE8 kann das nicht	*/
	position: fixed;	/* ║							*/
	top: 0;			/* ║							*/
	left: 0;		/* ║							*/
	z-index: -1;		/* ║							*/
	width: 100%;		/* ║							*/
	height: 100%;		/* ║							*/
}				/* ║							*/	
				/* ║							*/
#bg img {			/* ║							*/
	width:100%;		/* ║							*/
	height:100%;		/* ║							*/
}				/* ║							*/

img {
	border: none;
}


#wrapper {
	margin: 0 auto 40px auto;
	width: 780px;
}


h1, h3, h4, h5, h6, p, pre{
	color: #374149;
}

p {
	font-size: 12px;
	line-height: 125%;
}

pre {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 125%;
}

.suchwort_highlight {
	color: #FFFFFF;
	font-weight: bold;
	background: #e20031;
}

/* End Globals */


#content {
	padding: 20px;
	background-color: #FFF;
	color: #000;
	border: 1px solid #374149;
}

.titel, p.contenttext, div.contenttext, .spalten, .swrsendungen {
	display: table;
	border-collapse: separate;
	border-spacing: 10px;			/* padding in table-Boxen */
	width: 100%;
}

.titel, .swrsendungen {
	background-color: #F6F6F8;
	margin: 10px 0 8px 0;
	color: #374149;
}

.titel {
	border-top: 1px solid #849CAF;
	font-size: 15px;
}

.untertitel {
	font-size: 13px;
	margin: 10px;
}


p.contenttext {
	background-color: #849caf;
	margin-bottom: 10px;
	font-weight: bold;
	color: #FFF;
}

.spry_blau {
	color: #285a98;
}

.spalten {					/* überschreiben der Eigenschaften aus obiger Deklaration	*/
	border-collapse: collapse;		/* => table-cells bis zum (linken und rechten) Außenrand	*/
	padding-bottom: 15px;
}

.spalte {
	display: table-cell;
	width: 50%;				/* automatische Breitenhalbierung */
}

.spaltentext {
	padding-left: 10px;
}

.links {
	border-right: 12px solid #FFF;
}

/* unbenutzt, aber wer weiß...
.rechts {

} */

.schraffiert {
	background: url("schraffur.png");
}

.grau {
	background-color: #F6F6F8;
}

.pad {						/* generisches 10px-Padding */
	padding: 10px;
}

.rahmenrechts {
	border-right: 10px solid #F6F6F8;
}

.lilink {
	padding: 10px 10px 10px 15px;
	list-style: circle outside none;
	font-size: 12px;
	line-height: 125%;
	color: #374149;
}


.sendung {
	display: table;				/* Unter-"table" - auch CSS-tables können geschachtelt werden. Erspart so irgendwelche float-reset-Hacks */
	width: 90%;				/* In Prozent des *Elternelements*, also der Spaltenbreite - fehlende Angabe führt zu "flowed-minimierter" Breite */
	margin: 10px 0 20px 10px;
	font-size: 12px;
}

.suche {
	margin: 2px 8px;
}


.zentriert {
	display: block;
	margin: 0 auto;
}

.floatleft {
	float: left;
}

img.person {
	width: 75px;
	height: 100px;
	margin: 0 10px 5px 0 !important;
}

.flvplayer {
	margin: 0 0 0 11px;
	background-color: #F6F6F8;
}

a, a:link, a:visited {
	text-decoration: none;
	color: #285a98;
	font-weight: bold;
}
 
a:hover, a:active, a:focus {
	text-decoration: underline;
	color: #e20031;
}

.invisible {
	position: fixed;
	visibility: hidden;
}

/* "Suchen"-Seite */

#sendungssuche {
	margin: 0;
	border: 0;
}

#sendungssuche p {
	font-size: 12px;
	padding-top: 5px;
}


.AccordionPanelTab .titel {			/* Geckos haben sonst margin-Verwirrung */
	margin: 0;
}


.referenten {
	font-size: 13px;
	margin: 5px 10px 0 10px;
}

.referenten li {
	list-style-type: none;
	margin-bottom: 10px;
	line-height: 15px;
}

.referenten li a {
	margin-left: 20px;			/* addiert von .referenten margin-left => positiver relativer Einzug */
}

.referenten li:first-child:first-letter {
	color: #000000;
	font-size: 20px;
	font-weight: bold;
}

table.monate {
	margin-left: 8px;
	font-size: 12px;
	width: 95%;				/* <100%, margin/padding erzeugen sonst horizontale Scrollbalken */
}

.swrsendungen {
	font-size: 12	px;
}

.swrsendungen img {
	float: left;
	padding-right: 10px;
	width: 225px;
	height: 120px;
}


.lebenslauf td {
	padding: 2px;
	vertical-align: top;
}


#footer {
	margin-top: 15px;
	margin-left: -1px;			/* optischer Randausgleich */
}

#zpx { 
	display: none; 
} 

#taplayer01, #taplayer02, #taplayer03, #taplayer04, #taplayer05, #taplayer06, #taplayer07, #taplayer08, #taplayer09, #taplayer10, #taplayer11, #taplayer12, #taplayer13, #taplayer14, #taplayer15, #taplayer16, #taplayer17, #taplayer18, #taplayer19, #taplayer20, #taplayer21, #taplayer22, #taplayer23, #taplayer24 {
	margin: 0px 20px 0px 0px;
	background-color: #F6F6F8;
}


/* Intern */

.beschreibung_continum {
	color: #FFFF33;
	font-weight: bold;
	background: #0033FF;
}

input {
	vertical-align: middle;
}

/* format submit buttons */
input[type=submit] {
	/*vertical-align: bottom;*/
	padding: 1px 5px;
	font-weight: bold;
	color: #285a98;
	border: 2px outset #285a98;
	background-color: #FFF;
}

