/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .ui-tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}

/* Tab包括ブロック */
div#rotate{
    width:600px;
	float:right;
	margin:10px auto;
}

/* ui-tabs-nav = タブボタン(タイトル) */
/* ui-tabs-panel = タブの内容 */
.ui-tabs-nav,
.ui-tabs-panel {
    font-family: "Trebuchet MS", Trebuchet, Verdana, Helvetica, Arial, sans-serif;
    font-size: 12px;
}
.ui-tabs-panel{
	border:1px solid #ccc;
    padding:6px;
    background-color: #fff;
}
.ui-tabs-panel p{
    border-bottom:1px solid #ccc;
}
.ui-tabs-nav {
    width:600px;
	height:30px;
    list-style: none;
    margin: 10px auto 0px auto;
	text-align:center;
}
.ui-tabs-nav li {
    float: left;
}
.ui-tabs-nav li a,
.ui-tabs-nav li a span {
    width:150px;
    height:30px;
	line-height:30px;
    display: block;
    font-weight: bold;
	text-decoration: none;
	margin:0px;
    padding:0px;
	color:#fff;
    background: url(http://www.gaiheki-toso.jp/img/tabtitle_bg.jpg) repeat-x;
}
.ui-tabs-nav li a:hover{ text-decoration:none; }
.ui-tabs-nav li a span:hover{
	text-decoration:none;
    background: url(http://www.gaiheki-toso.jp/img/tabtitle_bg_hover.jpg) repeat-x;
}

.ui-tabs-nav a {
    white-space: nowrap; /* required in IE 6 */    
    outline: 0; /* prevent dotted border in Firefox */
}
.ui-tabs-nav .ui-tabs-selected a {
    position: relative;
    z-index: 2;
    margin-top: 0;
}
.ui-tabs-nav a span {
    width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 18px; /* IE 6 treats height as min-height */
    min-height: 18px;
    padding-top: 6px;
    padding-right: 0;
	text-indent:12px;
}
*>.ui-tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.ui-tabs-nav .ui-tabs-selected a span {
    width:150px;
    height:30px;
	line-height:30px;
    display: block;
	text-decoration:none;
	color:#FF6600;
    background:transparent url(http://www.gaiheki-toso.jp/img/tabtitle_bg_hover.jpg) repeat-x;
}

.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
}

.ui-tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}

/* Additional IE specific bug fixes... */
* html .ui-tabs-nav { /* auto clear, @ IE 6 & IE 7 Quirks Mode */
    display: inline-block;
}
*:first-child+html .ui-tabs-nav  { /* @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
    display: inline-block;
}

