/* Enabled */
	.tab-content {
		display: none;
		margin-top: -1px;
		border: 1px solid #ccc;
		border-radius: 0 3px 3px 3px;
	}
	label.tab {
		display: inline-block;
		zoom: 1;
        *display: inline; /* IE7 */
		border: 1px solid #bbb;
		border-radius: 7px 7px 0 0;
		background-color: #fff;
		border-color: #fff;
		border-bottom-color: #ccc;
		padding: 4px 11px;
		position: relative;
	}
	label.tab ~ label.tab {
		margin-left: -1px;
	}

/* Checked */
	/*input:checked + label.tab,*/
	input.checked + label.tab {
		background-color: #fff;
		border-color: #ccc;
		border-bottom-color: #fff;
		z-index: 2;
	}
	/*input:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
	input:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
	input:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
	input:nth-of-type(4):checked ~ .tab-content:nth-of-type(4),
	input:nth-of-type(5):checked ~ .tab-content:nth-of-type(5),
	input:nth-of-type(6):checked ~ .tab-content:nth-of-type(6),
	input:nth-of-type(7):checked ~ .tab-content:nth-of-type(7),
	input:nth-of-type(8):checked ~ .tab-content:nth-of-type(8),
	input:nth-of-type(9):checked ~ .tab-content:nth-of-type(9),*/
	input.nth-of-type-1.checked ~ .tab-content.nth-of-type-1,
	input.nth-of-type-2.checked ~ .tab-content.nth-of-type-2,
	input.nth-of-type-3.checked ~ .tab-content.nth-of-type-3,
	input.nth-of-type-4.checked ~ .tab-content.nth-of-type-4,
	input.nth-of-type-5.checked ~ .tab-content.nth-of-type-5,
	input.nth-of-type-6.checked ~ .tab-content.nth-of-type-6,
	input.nth-of-type-7.checked ~ .tab-content.nth-of-type-7,
	input.nth-of-type-8.checked ~ .tab-content.nth-of-type-8,
	input.nth-of-type-9.checked ~ .tab-content.nth-of-type-9 {
		display: block;
	}

/* Hover (should be before disabled block) */
	input + label.tab:hover {
		border-top-color: #aaa;
		border-left-color: #aaa;
		border-right-color: #aaa;
		z-index: 2;
	}
	/*input:checked + label.tab:hover,
	input:focus + label.tab:hover,*/
	input.checked + label.tab:hover,
	input.focus + label.tab:hover {
		border-bottom-color: #fff;
	}

/* Focus */
	input.checked.focus + label.tab {
		border-color: #0082DD;
	}
	/*input:focus + label.tab,
	.tabs-group.has-radio-focus > input:focus + label.tab,*/
	input.focus + label.tab,
	.tabs-group.has-radio-focus > input.focus + label.tab {
		border-bottom-color: #fff;
		z-index: 3;
	}
	.tabs-group.has-radio-focus > label.tab {
		border-bottom-color: #0082DD;
	}
	.tabs-group.has-radio-focus > .tab-content {
		border: 1px solid #0082DD;
	}

/* Disabled (should be after hover block) */
