
/********************************************************************/
/*	 ADLER MANNHEIM - CSS - Definitionen                             */
/*  Definitionen für die Teamseiten                                 */
/********************************************************************/

/* === Spielernavigation =========================================== */

#spielernavi {
   width: 691px;
	height: 32px;
	margin: 0;
	padding: 0;
}

/* zurück zur Auswahl */

#backtoteam {
	margin: 8px 0 0 10px;
	float: left;
	display: inline;
}

/* Spielerauswahl */

#playerSelector {
	float: right;
	margin: 5px 5px 0 0;
	z-index: 10;
}

/* Spieler */

#player {
   width: 691px;
   height: 382px;
	margin-left: 5px;
	margin-bottom: 20px;
	position: relative;
	float: left;
}

* html #player {display: inline;}

#player img {display: block;}

#portrait {
	margin: 0;
	padding: 0;
	position: absolute;
	bottom: 115px;
	left: 10px;
}



/* Spielerprofil */

#spielerprofil p {
	width: 306px;
	margin: 0 15px 0 0;
	padding: 0;
	font-size: 11px;
	float: left;
	display: inline;
}

/* Tabelle */

#tab_spielerprofil {
	width: 30em;
	margin: 0 15px;
	padding: 0;
	float: left;
	font-size: 11px;
	border: 1px solid #ccc;
	table-layout: fixed;
}

* html #tab_Spielerprofil {display: inline;}

#tab_spielerprofil td {
	padding: 0 10px;
	vertical-align: top;
}

#tab_spielerprofil tr.gray {
	background-color: #E9E9E9;
}

#tab_spielerprofil em {
	font-style: normal;
	font-weight: bold;
	color: #039;
	white-space: nowrap;
}

/* Button-Menü */

#playerbuttons {
	width: 133px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: absolute;
	top: 19px;
	left: 47px;
}

#playerbuttons li {
	width: 133px;
	min-height: 15px;
	height: 12px;
	padding: 1 0 2px 0;
	font-size: 11px;
	float: left;
	text-align: center;
	background: url(../assets/hoverbutton.gif);
	border-bottom: 1px solid #363636;
}

#playerbuttons .active {
	background-position: 0 -15px;
	color: white;
}

#playerbuttons li a {
	width: 133px;
	height: 15px;
	display: block;
	text-decoration: none;
}

/* === Trainingskalender =========================================== */

#trainingskalender {
	width: 566px;
	margin: 0 auto;
	padding: 6px;
	border: 3px solid #038;
	background: white;
	position: absolute;
	top: 70px;
	left: 59px;
	z-index: 20;
}

#trainingdate {
	position: absolute;
	top: 45px;
	right: 100px;
	font-size: 14px;
	font-weight: bold;
	color: white;
	text-transform: uppercase;
	white-space: nowrap;
}

#trainingmonth {
}

#trainingmonth td {
	width: 72px;
	height: 60px;
	padding: 6px 0 0 6px;
	font-size: 12px;
	font-weight: normal;
	color: #6D6D6D;
	vertical-align: top;
	background: url(../assets/normalday.gif) no-repeat;
	border: 1px solid #D8D6D6;
}

* html #trainingmonth td {height: 52px;}

/* Uhrzeiten */

#trainingmonth td em {
	margin: 0px 0 0 0;
	font-size: 11px;
	font-style: normal;
	display: block;
}

/* Heutiger Tag */

#trainingmonth td.today {
	background: url(../assets/today.gif) no-repeat;
	border: 1px solid #c00;
	font-size: 18px;
	color: white;
}

/* Heutiger Trainingstag */

#trainingmonth td.todaytraining {
	background: url(../assets/trainingtoday.gif) no-repeat;
	border: 1px solid #c00;
	font-size: 18px;
	color: white;
}

/* Trainingstag */

#trainingmonth td.trainingday {
	background: url(../assets/trainingday.gif) no-repeat;
	border: 1px solid #3197FD;
	font-size: 18px;
	color: white;
}

/* Kein Tag */

#trainingmonth td.noday {
	border: none;
	background: white;
}

/* === Tooltip ======================================================== */

a.info {
    position:relative; /*this is the key*/
    z-index:24;
    color:#fff;
    text-decoration:none;
	 display: block;
	 height: 36px;
	 cursor: default;
}

a.info:hover{z-index:25; background: none;}

a.info span.inside {display: none}

a.info span.inside strong {
	color: #039;
}

a.info:hover span.inside { /*the span will display just on :hover state*/
    display:block;
    position:absolute;
	 padding: 6px;
	 font-size: 11px;
    top:2em;
	 left:2em;
    background: white;
	 color: #000;
	 border: 1px solid #666;
    text-align: left;
	 white-space: nowrap;
	 -moz-opacity:0.80;
	 filter:Alpha(opacity=80);
}
