﻿/* root element for tabs  */

#tabs_container {
  width: 300px;
  min-height: 300px; /*315*/
  float: left;
  margin: 0px;
}

ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	height:30px;
	width: 300px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0 !important;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	font-size:12px;
	display:block;
	height: 30px;  
	line-height:30px;
	width: auto;
	text-align:center;	
	text-decoration:none;
	color:#00325b;
	padding:0px 8px;
	margin:0px;	
	position:relative;
	top:1px;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	/*background: url(/webdocs/global/images/tab_shadow-hover.png) repeat-x;*/
	background-color: #79a5d9;
	color:#fff;	
	border-color: #ccc;
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background-color: #00325b;
	color: #fff;
	border: 0px;
}

/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
}

/* tab pane styling */
.panes div {
	display:none;		
	padding:0px;
	border:0px solid #ccc;
	border-top:0;
	min-height:250px;
	color: #222;
	font-family: sans-serif;
	font-size: 13px;
}

.panes div.athletics {
  height: 380px; 
  overflow: auto;
}

.panes div.athletics table {
  border: 0px;
  width: 100%;
}

.panes div.athletics tr:hover {
  background-color: #eee;
}

.panes div.athletics td {
  font-size: 10px;
  padding: 4px;
  border-left: 1px solid #eee;
  border-top: 1px solid #eee;
}

.panes div.athletics td:first-child {
  border-left: 0px;
}