/*
html, body
{
    margin: 0px 0px 0px 0px;
    padding: 0;
    color: #333333;
}

html, body, td, th, p, div {
    font-family: Verdana, Arial, Sans-serif;
    font-size: 10px;
	margin-left: 0px;
}
*/
.templateB {
	background-color: #d9d9d9;
	margin: 4px;
}

.templateB .container {
	background-color: #FFFFFF;
	width: 90%;
	margin: 0px auto;
	border-left: 1px solid #00CC66;
	border-right: 1px solid #00CC66;
	border-bottom: 1px solid #00CC66;
	height: auto;
}

.templateB .above_header {
	background-color:#FFFFFF;
	background-image:url(/Customization/templatestuff/tB1.jpg);
	background-position: left top;
	background-repeat: no-repeat;
	margin: 0 0 0 30px;
	color: #FFFFFF;
	padding-left: 46px;	
	padding-top: 18px;
	padding-bottom: 3px;
	font-size: 18px;
}

.templateB .header {
	background-color: #a8db56;
	border-top: 1px solid #00CC66;
	border-bottom: 1px solid #00CC66;
	background-image:url(/Customization/templatestuff/tB2.gif);
	background-position:left top;
	background-repeat: repeat-x;
	margin: 0;
}

.templateB .header_text_left {
	padding-left: 36px;
	color: #009933;
	font-size: 28px;
	padding-top: 8px;
	padding-bottom: 8px;
}

.templateB .header_text_right {
	float: right;
	color: #666666;
	font-size: 14px;
	padding-top: 18px;
	padding-right: 16px;
}

.templateB .left {
	float: left;
	width: 180px;
	background-color: #a8db56;
	margin-left: 30px;
	margin-top: 1px;
}

.templateB .navigation {
	background-image:url(/Customization/templatestuff/tb4.jpg);
	background-position:left bottom;
	background-repeat:no-repeat;
	padding-bottom: 32px;
}

.templateB .navigation ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.templateB .navigation ul li {
	padding: 2px;
	padding-left: 10px;
}

.templateB .navigation a {
	color: #333333;
	font-weight: bold;
}

.templateB .content {
	margin-left: 230px;
	padding-top: 20px;
	padding-right: 20px;
}


.templateB .footer {
	text-align: right;
	color: #999999;
	font-size: 10px;
	padding-bottom: 8px;
	padding-right: 8px;
}

.templateB .content_header {
	background-image:url(/Customization/templatestuff/tb5.jpg);
	background-position: left center;
	background-repeat: no-repeat;
	color: #333333;
	font-weight: bold;
	padding-top: 16px;
	padding-bottom: 10px;
	padding-left: 60px;
}

/* ======================================================== */
/* VIVAJOT CSS RADIO TABS FOR CUSTOMIZABLE AREAS            */
/* ======================================================== */

/* Hide the underlying radio buttons */
input.tab-radio { display: none; }

/* Default unselected label styling */
label.tab-label {
    cursor: pointer;
    color: #2D312D;
    font-weight: 400;
    font-size: 15px;
    margin-right: 35px;
    padding-bottom: 5px;
    opacity: 0.6;
}

/* Hover state for tab labels */
label.tab-label:hover {
    color: #1A1A1B !important;
    border-bottom: 3px solid rgba(163,201,168,0.5) !important;
    padding-bottom: 4px !important;
}

/* Highlight the active label when its corresponding hidden radio is checked */
body:has(#rd-home:checked) label[for="rd-home"],
body:has(#rd-how:checked) label[for="rd-how"],
body:has(#rd-about:checked) label[for="rd-about"] {
    font-weight: 800 !important;
    color: #000000 !important;
    opacity: 1 !important;
    border-bottom: 4px solid #A3C9A8 !important;
    padding-bottom: 3px !important;
}

/* Hide all tab contents globally using strict IDs so we don't break the platform */
#content-home, #content-how, #content-about { display: none !important; }

/* Show only the active content section based on which radio is checked - using :has to bypass any DOM nesting issues */
body:has(#rd-home:checked) #content-home,
body:has(#rd-how:checked) #content-how,
body:has(#rd-about:checked) #content-about {
    display: block !important;
}