/*
 * jQuery UI Tabs 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 */
.ui-tabs { 
	position: relative; 
	padding: 0; 
	zoom: 1; 
} /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */

.ui-tabs .ui-tabs-nav { 
	margin: 0; 
	padding: 0; 
	display: table;
}

.ui-tabs .ui-tabs-nav li { 
	list-style: none; 
	float: left; 
	position: relative; 
	top: 1px; 
	margin: 0; 
	padding: 5px; 
	white-space: nowrap; 
}

.ui-tabs .ui-tabs-nav li a { 
	float: left;
	text-decoration: none;
	padding: 5px 7px 10px;
	color:#e38e3a;
}
.ui-tabs .ui-tabs-nav li {
  border-bottom: 0 none !important;
  float: left;
  list-style: none outside none;
  margin: 0;
  padding: 0;
  position: relative;
  top: 1px;
  white-space: nowrap;
}
.ui-state-default, .ui-widget-content .ui-state-default {
  /*border: 1px solid #e6e6e6;*/
  color: #E38E3A;
  outline: medium none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
	background-color:#ffffff;
	border-bottom: 0 !important;  
	border-left: 1px solid #e6e6e6;  
	border-top: 1px solid #e6e6e6;  
	border-right: 1px solid #e6e6e6;
	top:1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { 
	cursor: text; 
}
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { 
	cursor: pointer; 
} /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */

.ui-tabs .ui-tabs-panel { 
	display: block; 
	padding: 10px 10px 0;
	border: 1px solid #e6e6e6;  
/*	background-image: url(/_img/gradient.png); */
	background-image: -ms-linear-gradient(top, #ffffff, #dfdfdf);
	background-image: -moz-linear-gradient(center top , #ffffff, #dfdfdf);
	background-image: -webkit-gradient(linear, center top, center bottom, from(#ffffff), to(#dfdfdf));
	background: -o-linear-gradient(top, #ffffff, #dfdfdf);
	background: linear-gradient(center top, #ffffff, #dfdfdf);
}

.ui-tabs .ui-tabs-hide { 
	display: none !important; 
}
