/* 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;
    }
}

/* Skin */
#airport{
    margin: 15px auto;
    height		: 350px;
    overflow	: hidden;
    }

#airport:after{
    content		: "";
    display		: block;
    clear		: both;
    height		: 1px;
    overflow	: hidden;
    }

/*\*/
* html #airport{
    height		: 1em;
    overflow	: visible;
    }
/**/
	
#airport h3{
	margin-bottom:10px;
	}
#airport p{
	margin-bottom:5px;
	}
.ui-tabs-nav {
    padding: 0;
    float: left;
}
.ui-tabs-nav li{
	margin-bottom:10px;
	}
	
*html .ui-tabs-nav li{
	margin-bottom:0px;
	}
.ui-tabs-nav a, .ui-tabs-nav a span {
    display: block;
}
.ui-tabs-nav .ui-tabs-selected a {
    z-index: 2;
}
/*
.ui-tabs-nav .nahaAir{
	background:#B3D465;
	}

.ui-tabs-nav .miyaAir{
	background:#7ECEF4;
	}

.ui-tabs-nav .ishiAir{
	background:#FDE278;
	}
*/
.ui-tabs-disabled {
    opacity: .4;
    filter: alpha(opacity=40);
    background:#333;
}

.ui-tabs-nav .ui-tabs-selected a, .ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active {
    background: url("/img/site/airport_on.gif") no-repeat left top;
}
.ui-tabs-nav a, .ui-tabs-nav .ui-tabs-disabled a:hover, .ui-tabs-nav .ui-tabs-disabled a:focus, .ui-tabs-nav .ui-tabs-disabled a:active {
    background: url("/img/site/airport_off.gif") no-repeat left top;
}

.ui-tabs-nav .ui-tabs-selected a:link, .ui-tabs-nav .ui-tabs-selected a:visited, .ui-tabs-nav .ui-tabs-disabled a:link, .ui-tabs-nav .ui-tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.ui-tabs-nav a:hover, .ui-tabs-nav a:focus, .ui-tabs-nav a:active,
.ui-tabs-nav .ui-tabs-deselectable a:hover, .ui-tabs-nav .ui-tabs-deselectable a:focus, .ui-tabs-nav .ui-tabs-deselectable a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
#tab01,#tab02,#tab03{
	width		: 552px;
	float		: right;
    background: #fff; /* declare background color for container to avoid distorted fonts in IE while fading */
    text-align	: left;
}
*html #tab01,*html #tab02,*html #tab03{
	width		: 572px;
	}
#tab01{
    border: 10px solid #B6D712;
    }
#tab02{
    border: 10px solid #B6D712;
    }
#tab03{
    border: 10px solid #B6D712;
    }
    
#tab01 dl,#tab02 dl,#tab03 dl{
	margin		: 10px;
	}
#tab01 dt,#tab02 dt,#tab03 dt{
	position	: relative;
	margin-top	: 3px;
	padding-left: 40px;
	display:inline;
	}
	
#tab01 dt img,#tab02 dt img,#tab03 dt img{
	position	: absolute;
	left:0;
	}
#tab01 dt.firstChild img,#tab02 dt.firstChild img,#tab03 dt.firstChild img,
#tab01 dt:first-child img,#tab02 dt:first-child img,#tab03 dt:first-child img, {
	top: 0;
}
	
#tab01 dd,#tab02 dd,#tab03 dd{
	background	: url("/img/site/dotted.gif") repeat-x left bottom;
	padding-left: 40px;
	padding-bottom:5px;
	font-size	: 10px;
	}

/* 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;
}