@charset "utf-8";

/*------------------------
Tab
------------------------*/
.tabs {
	position:relative;
	margin: 20px auto;
	width: 725px;
}
.tabs ul {
	margin-left:2px;
}

.tabs ul li {
	z-index: 1;
	position:relative;
	float:left;
	display:inline-block;
	width: 110px;
	height: 50px;
	margin-top:3px;
	margin-right:6px;
	background: #999999;
	border-radius: 5px 5px 0 0;
	box-shadow: 0 0 0 1px #ffffff, 0 0 0 2px #e5e5e5;
	color:#777777;
	font-weight: bold;
	text-align: center;
	line-height:40px;
	cursor: pointer;
	background: #f6f6f6;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2ZjZmNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #f6f6f6 0%, #ffffff 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6f6f6), color-stop(100%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f6f6f6 0%,#ffffff 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f6f6f6 0%,#ffffff 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f6f6f6 0%,#ffffff 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f6f6f6 0%,#ffffff 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f6f6', endColorstr='#ffffff',GradientType=0 ); /* IE6-8 */

}

.tabs ul li:first-child.selected {
	margin-left:-2px;
	margin-right:5px;
}
.tabs ul li:last-child {
	width: 141px;
	margin-left:0;
	margin-right:0;
}

.tabs ul li.long{
	line-height:1.2;
	padding-top:.2em;
}
.tabs ul li.longer{
	line-height:1.2;
	padding-top:.2em;
	font-size:84%;
}
#contents .tabs > ul > li > a {
	display:block;
	color:inherit;
	text-decoration:inherit;
}
.tabs ul li span {
	font-size: 12px;
}
.tabs ul li.selected {
	z-index:1000 !important;
	position:relative;
	margin-top:-2px;
	margin-right:4px;
	margin-left:-1px;
	padding-top:6px;
	background: #fff;
	box-shadow:none;
	border:solid 1px #e5e5e5;
	border-bottom:solid 1px #fff;
	color:#eb5505;
}
.tabs ul li.selected:last-child {
	margin-right:0px;
	margin-left:0px;

}
.tabs ul li.selected a {
	cursor:default;
}

.tabs ul li:hover {
	background:rgba(200,200,200,0.2);
	color:#333333;
	transition: background-color 0.5s ease-out 0s;
	
	animation: translate 0.8s; 
  	animation-iteration-count: 1; 
  	-webkit-animation: translate 0.8s; 
  	-webkit-animation-iteration-count: 1; 	
}
/*
@keyframes translate { 
  0%   { transform:  translate(0px, 0px);    } 
  50%   { transform:  translate(0, -3px);   }
  100%  { transform:  translate(0px, 0px);   } 
} 
@-webkit-keyframes translate { 
  0%   { -webkit-transform:  translate(0px, 0px) ;   } 
  50%   { -webkit-transform:  translate(0, -3px);   }
  100%  { -webkit-transform:  translate(0px, 0px);   } 
} */
.tabs ul li.selected:hover {
	background:#fff;
	color:#eb5505;
	animation:none;	
	-webkit-animation:none;
}

.tabs .content {
	z-index:10;
	position:relative;
    background: #fff;
    width: 683px;
	margin-top:-2px;
	padding:0 20px 20px;
	border:solid 1px #e5e5e5;
    border-radius: 0 0 5px 5px;
}

