/*	Responsive Tabs v1.1, Copyright 2014, Joe Mottershaw, https://github.com/joemottershaw/
//	======================================================================================= */

/*	Table of Contents
//	==================================================
//		#Reset
//		#Themes


/*	#Reset
//	================================================== */

	/* Standard */
		.tabs {
			margin: 0;
			padding: 0;
			list-style-type: none;
			position: relative;
		}

		.tabs.bm-remove		{ margin-bottom: 0;    }
		.tabs.bm-smaller	{ margin-bottom: 5px;  }
		.tabs.bm-small		{ margin-bottom: 10px; }
		.tabs.bm-medium		{ margin-bottom: 20px; }
		.tabs.bm-large		{ margin-bottom: 30px; }
		.tabs.bm-large		{ margin-bottom: 40px; }

		.tabs li {
			width: 125px;margin: 0;text-align: center;line-height: 50px;float: left;}

		.tabs li a {font-weight:600; font-size:14px; font-family: 'Open Sans', sans-serif; display: block;padding: 0 10px;text-decoration: none;color:#676767!important;	}
		.tabs li.active a{font-weight:600;display: block;padding: 0 10px;text-decoration: none;color:#202b38!important;	}

		.tabs-content { margin-bottom: 20px; }

		.tabs-content.bm-remove		{ margin-bottom: 0;    }
		.tabs-content.bm-smaller	{ margin-bottom: 5px;  }
		.tabs-content.bm-small		{ margin-bottom: 10px; }
		.tabs-content.bm-medium		{ margin-bottom: 20px; }
		.tabs-content.bm-large		{ margin-bottom: 30px; }
		.tabs-content.bm-larger		{ margin-bottom: 40px; }

		.tabs-content .tabs-panel { padding: 30px 20px 30px 45px; }

		.tabs-content .tabs-panel .tab-title { display: none; }

	/* Tabs Left */
		.tabs.tabs-left {
			width: 200px;
			float: left;
			padding-top:17px;
			background:#ffffff;
		}

		.tabs.tabs-left li {
			text-align: left;
			float: none;
		}

		.tabs-content.tabs-left { overflow: hidden; }

	/* Tabs Right */
		.tabs.tabs-right {
			width: 150px;
			float: right;
		}

		.tabs.tabs-right li {
			text-align: right;
			float: none;
		}

		.tabs-content.tabs-right { overflow: hidden; }

	@media only screen and (max-width: 767px) {
		.tabs li { display: none; }

		.tabs-content .tabs-panel,
		.tabs-content .tabs-panel .tab-title { display: block; }
	}


	/* Standard */
		.tabs-default .tabs li {
			border-bottom: 1px solid #EAEAEA!important;
			border-right: 0;
			background: #FFF;
			cursor: pointer;
			position: relative;
			z-index: 999999;
		}

		/*.tabs-default .tabs li:last-child {
			border-right: 1px solid #DDD;
		}*/

		.tabs-default .tabs li.active {
			border-bottom: 1px solid #FFF;
			background: #FFF;
		}

		.tabs-default .tabs-content {
			border-bottom: 5px solid #202b38;
			border-left:1px solid #eaeaea;
			background: #FFF;
			position: relative;
			top: -1px;
			z-index: 999;
			padding: 5px 0 14px;
		}

		.tabs-default .tabs-content .tab-title { color: #0B8593; }

	/* Tabs Left */
		.tabs-default .tabs.tabs-left { left: 1px; }

		.tabs-default .tabs.tabs-left li {
			width: 100%;
			border-bottom: 0;
			line-height: 50px;
		}

		.tabs-default .tabs.tabs-left li:last-child { border-bottom: 1px solid #DDD; }

		.tabs-default .tabs.tabs-left li.active {/* border-right: 1px solid #FFF;*/}

		.tabs-default .tabs-content.tabs-left { top: 0; }

	/* Tabs Right */
		.tabs-default .tabs.tabs-right { right: 1px; }

		.tabs-default .tabs.tabs-right li {
			width: 100%;
			border-bottom: 0;
			line-height: 50px;
		}

		.tabs-default .tabs.tabs-right li:last-child { border-bottom: 1px solid #DDD; }

		.tabs-default .tabs.tabs-right li.active { border-left: 1px solid #FFF;}

		.tabs-default .tabs-content.tabs-right { top: 0; }