.animated {
	-webkit-animation-duration: 150ms;
	animation-duration: 150ms;
}
.tabs-wrapper {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.tabs-wrapper select.tab-nav {
	display: none;
}
.tabs-wrapper ul.tab-nav {
	list-style: none;
	display: block;
	border-bottom: 1px solid #DEDEDE;
	margin: 0px;
	padding:0;
}
.tabs-wrapper ul.tab-nav li {
	display: inline-block;
	margin-right: 5px;
}
.tabs-wrapper ul.tab-nav li a {
	text-decoration: none;
	color: #333333;
	padding: 12px 28px;
	border:solid 1px #fff;
	border-bottom: 1px solid #d5dae7;
	display: block;
	border-radius: 2px 2px 0px 0px;
	margin-bottom: -1px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
	font-size:16px;
}
.tabs-wrapper ul.tab-nav li.active a {
	border:solid 1px #d5dae7;
	border-bottom: 1px solid #fafafa;
	color:#48a9ea;
}
.tabs-wrapper ul.tab-nav li:hover a {
	background: #FAFAFA;
}
.tabs-wrapper .target-tabs {
	overflow: hidden;
	position: relative;
}
.tabs-wrapper .target-tabs .tab-content {
	display: none;
	padding:24px 0 0;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.tabs-wrapper .target-tabs .tab-content .tab-heading .tab-no {
	font-size: 28px;
	font-weight: light;
}
.tabs-wrapper .target-tabs .tab-content p {
	line-height: 24px;
	word-spacing: 1px;
}
.tabs-wrapper .target-tabs .tab-content.active {
	display: block;
}
.tabs-wrapper .target-tabs .tab-content.inactive {
	position: absolute;
}
.tabs-wrapper .target-tabs .tab-content a {
	color: #007FD3;
	text-decoration: none;
}
 @media screen and (max-width:768px) {
 .logo-wrapper img {
max-width: 320px;
}
 .container {
}
 .tabs-wrapper ul.tab-nav {
display: none;
}
 .tabs-wrapper select.tab-nav {
 width: 100%;
 padding:0 10px;
 border: 1px solid #48a9ea;
 border-radius: 5px;
 display: block;
 position:relative;
 margin-bottom:10px;
 -webkit-appearance: none;
 -moz-appearance: none;
 appearance: none;
 height:42px;
 overflow:hidden;
 background:url(../../images/plus.png) right 10px center no-repeat;
}
 .tabs-wrapper select.tab-nav option{padding:10px 10px;}

 .tabs-wrapper select.tab-nav:focus {
outline: none;
}
 .tabs-wrapper .target-tabs {
border-radius: 0px 0px 2px 2px;
}
.tabs-wrapper .target-tabs .tab-content{padding:0;}
}
.animated {
	-webkit-animation-duration: 0.2s;
	animation-duration: 0.2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
 @-webkit-keyframes fadeOut {
 from {
 opacity: 1;
}
 100% {
 opacity: 0;
}
}
 @keyframes fadeOut {
 from {
 opacity: 1;
}
 100% {
 opacity: 0;
}
}
.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}
 @-webkit-keyframes fadeIn {
 from {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
 @keyframes fadeIn {
 from {
 opacity: 0;
}
 100% {
 opacity: 1;
}
}
.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}
