#main-container {
	width: 100%;
	height: 330px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
	.tab {
		width: 100%;
		height: 60px;
		-webkit-transition: background .1s ease-out;
		-moz-transition: background .1s ease-out;
		-o-transition: background .1s ease-out;
		-ms-transition: background .1s ease-out;
		transition: background .1s ease-out;
	}
		.tab h3 {
			margin-left:5px;
			padding-bottom:0px;
			line-height:20px;
			cursor: pointer;
			font-size: 14px;
			font-family:arial;
			display: inline-block;
			float: left;
			color: #0ACF66;

			}
			.tab h7 {
			margin-left:35%;
			margin-top:15px;
			font-size: 16px;
			font-family:arial;
			display: inline-block;
			float: center;
			color: #0ACF66;
			}
			.notification {
				display: inline-block;
				width: 73px;
				line-height: 18px;
				float: left;
				margin: 0px 5px;
				text-align: center;
				color: #fff;
				font-size: 11px;			
			}
	.tabSelected {
		background: #fff;
	}
		.tabSelected h3 {
			color: #ffffff;
		}
		.tabSelected .notification {
			background: #d3d4d6;			
		}
			.tabSelected .notification:hover {
				background: #0ACF66;
			}
	.tabNoSelected {
		background: #ffffff;
		border-bottom: solid 1px #e6e6e6;	
	}
		.tabNoSelected:hover {
			border: solid 2px #F2F2F2;
		}
		.tabNoSelected h3 {
			color: #363a3d;
		}
		.tabNoSelected .notification {
			background: #0ACF66;
		}
			.tabNoSelected .notification:hover {
				background: #0ACF66;
			}
	.tabBody {
		background: #fff;
		width: 100%;
		height: 250px;
		display: none;
		border-top: solid 2px #0ACF66;

	}
		.tabBodyOptions {
			list-style-type: none;
			padding: 0;
			margin: 0;
		}
		.tabBodyOptions a {
			display: block;
			color: #000;
			font-size: 13px;
			line-height: 32px;
			width: 100%;
			padding-left: 10px;
			-webkit-transition: background .3s ease-out;
			-moz-transition: background .3s ease-out;
			-o-transition: background .3s ease-out;
			-ms-transition: background .3s ease-out;
			transition: background .3s ease-out;
		}
			.tabBodyOptions a:hover {
	background: #fff;
			}
		
