/* CSS Tab styling is start here */

	/* Tab menu styling*/
	input.tab-menu-radio {
		display: none;
	}
	label.tab-menu {
		display: inline-block;
		float: left;
		padding:10px 25px;
		cursor: pointer;
		z-index: 99;
	}
	/* End Tab menu styling*/

	/* Tab content styling*/
	
	.tab-content {
		top:-3px;
		clear: both;
		width: 100%;
		position: relative;
		padding: 5px;
		background-color: #f7f7f7;
		border-top:7px solid #0a4;
	}	
	/* End Tab content styling*/

	/* CSS tab core */
		.tab-menu-radio:checked + label {
			-webkit-transition:all 1s; /* Optional */
			-moz-transition:all 1s; /* Optional */
			transition:all 1s; /* Optional */
			background-color: #0a4;
			color: #fff;
		}
		.tab-content .tab {
			height: 0;
			opacity: 0;
		}
		#tab-menu1:checked ~ .tab-content .tab-1,
		#tab-menu2:checked ~ .tab-content .tab-2,
		#tab-menu3:checked ~ .tab-content .tab-3, 
		#tab-menu4:checked ~ .tab-content .tab-4,
		#tab-menu5:checked ~ .tab-content .tab-5,
		#tab-menu6:checked ~ .tab-content .tab-6,
		#tab-menu7:checked ~ .tab-content .tab-7,	
		#tab-menu8:checked ~ .tab-content .tab-8,
		#tab-menu9:checked ~ .tab-content .tab-9,
		#tab-menu10:checked ~ .tab-content .tab-10		{
			-webkit-transition:opacity 1s; /* Optional */
			-moz-transition:opacity 1s; /* Optional */
			transition:opacity 1s; /* Optional */
			height: auto;
			opacity: 1;
		}
	/* End CSS tab core */

/* CSS Tab Styling is end here */