.tabs {
	position: relative;
	padding: 1px;
	width: 100%;
	zoom: 1;
	}
	.tabName {
		position: relative;
		left: 33px;
		float: left;
		margin-right: 5px;
		padding: 7px 10px 0;
		height: 28px;
		border-bottom: 0;
		-webkit-border-radius: 5px 5px 0 0;
		   -moz-border-radius: 5px 5px 0 0;
				border-radius: 5px 5px 0 0;
		color: #797979;
		text-transform: uppercase;
		font-size: 14px;
		font-family: 'DINPro_Bold';
		cursor: pointer;
		}
		.tabName > .after,
		.tabName:after {
			position: absolute;
			bottom: -7px;
			left: -7px;
			display: block;
			width: 150%;
			height: 7px;
			background: white;
			content: '';
			}
	.tabName:hover,
	.tabName.m-active {
		z-index: 3;
		background: white;
		-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
		   -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
				box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
		color: #04458f;
		}

	.tabPane {
		position: relative;
		z-index: 2;
		display: none;
		float: right;
		margin: 35px 0 0 -100%;
		width: 100%;
		background: white;
		}
		.tabPane > .before,
		.tabPane:before {
			position: absolute;
			top: -13px;
			display: block;
			width: 555px;
			height: 13px;
			background: url(../../i/content/tabs-sh.png) no-repeat center bottom;
			content: '';
			}
	.tabPane.m-active {
		display: block;
		}
		.tabContent {
			padding: 25px 0 25px 20px;
			}