/*
  File      : tabstrip.css
  Version   : 0.04 (15-May-2006)
  Purpose   : ym_Web_Tabstrip widget styles
  Author    : (c) 2006 Misha Yurasov <mike at managebytes dot com>
*/

/* DO NOT EDIT THIS SECTION */

.tabstrip {
  position: relative;
}

.tabstrip .page {
  display: block;
  position: absolute;
}

.tabstrip .tabs .tab {
	cursor: default;
}

/* YOU MAY EDIT FOLLOWING LINES AS YOU LIKE */

.tabstrip div,
.tabstrip input,
.tabstrip textarea,
.tabstrip td {
  font-family: Tahoma, Verdana, Arial, Sans-Serif;
  font-size: 8pt;
}

/* page */
.tabstrip .page {
  background-color: #EEEEEE;
  padding: 10px;
  border-color: #90AFE4;
  border-style: solid;
  border-width: 2px 1px 2px 1px;
}

/* tabs */
.tabstrip .tabs .tab {
	color: #505050;
	background-color: #DDDDDD;
	border-top: 2px solid #DDDDDD;
	padding: 4px 5px 6px 5px;
	font-weight: bold;
	cursor: pointer;
}

/* active tab */
.tabstrip .tabs .active {
  border-top-color: #FFBF00;
  background-color: #90AFE4;
  color: white;
}

/* active, mouse over tab */
.tabstrip .tabs .active_hover {
  border-top-color: #FFBF00;
  background-color: #90AFE4;
  color: white;
}

/* inactive tab */
.tabstrip .tabs .inactive {

}

/* inactive, mouse over tab */
.tabstrip .tabs .inactive_hover {
  border-top-color: #FFBF00;
}

/* tabs separator */
.tabstrip .tabs .sep {
  width: 3px;
}

/* NO JAVASCRIPT SUPPORT */

.tabstrip_no_js .page {
  background-color: #EEEEEE;
  border-color: #90AFE4;
  border-style: solid;
  border-width: 2px 1px 2px 1px;
  font-family: Tahoma, Verdana, Arial, Sans-Serif;
  font-size: 8pt;
  padding: 10px 10px 10px 10px;
  margin: 0px 0px 10px 0px;
}