/*!
 * jQuery UI Tabs 1.9.2
 * http://jqueryui.com
 *
 * Copyright 2012 jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 */

/* border設定 */
.ui-tabs .ui-tabs-nav li				{ border                : 1px solid #ccc; }
.ui-tabs .ui-tabs-panel					{ border                : 1px solid #ccc; }
.ui-tabs .ui-tabs-nav li:last-child		{ border-right          : 1px solid #ccc; }



.ui-tabs 								{ position              : relative;
										  padding               : .2em; 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 					{ display               : table;
										  width                 : 100%; }
.ui-tabs .ui-tabs-nav li 				{ position              : relative;
										  top                   : 0;
										  border-right          : 0;
										  white-space           : nowrap;
										  display               : table-cell;
										  text-align            : center;
										  border-radius         : 5px 5px 0 0;
										  padding               : 5px 0;
										/* グラデーション */
										  background            : #ffffff; /* Old browsers */
										  background            : -moz-linear-gradient(top, #ffffff 0%, #e9e9e9 100%); /* FF3.6+ */
										  background            : -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e9e9e9)); /* Chrome,Safari4+ */
										  background            : -webkit-linear-gradient(top, #ffffff 0%,#e9e9e9 100%); /* Chrome10+,Safari5.1+ */
										  background            : -o-linear-gradient(top, #ffffff 0%,#e9e9e9 100%); /* Opera 11.10+ */
										  background            : -ms-linear-gradient(top, #ffffff 0%,#e9e9e9 100%); /* IE10+ */
										  background            : linear-gradient(to bottom, #ffffff 0%,#e9e9e9 100%); /* W3C */
										  filter                : progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e9e9e9',GradientType=0 ); /* IE6-9 */  }
.ui-tabs .ui-tabs-nav li a 				{ display               : block;
										  width                 : 100%; }
.ui-tabs .ui-tabs-nav li.ui-tabs-active { border-bottom         : 0;
										  background            : none; }
.ui-tabs .ui-tabs-panel 				{ display               :  block;
										  border-top            : 0;
										  padding               : 1em 1.4em;
										  background            : none; }
