@charset "utf-8";
/* CSS Document */
/************ LIGHT VERSION (DESIGN 2) **********/


/********** BASIC STYLING ******/

* {
    margin: 0;
    padding: 0;
}



/***********  STYLING THE TAB SYSTEM ************/

#tab-area {
	width: 960px;
	position: relative;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

.dummy {
	outline: none;  /* For IE */
}

input[name=pane] { display: none;}

/* Styles for the tabs */
.tabs {
    position: relative;
    list-style: none;
}

.tabs li {
    position: relative;
    width: 100px;
    height: 38px;
	float: left;
	cursor: pointer;
	font: bold 14px  Calibri, "Myriad Pro", Myriad, Tahoma, Geneva, "Helvetica Neue", Helvetica, Arial, sans serif;
	letter-spacing: 1px;
	border-right:  1px solid #aaa;
	-moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

.tabs li:first-child {
	margin-left: 30px;
	border-left: 1px solid #888;
	-moz-border-radius: 8px 0 0 0;
    -webkit-border-radius: 8px 0 0 0;
    border-radius: 8px 0 0 0;
}

.tabs li:last-child {
	border-right: 1px solid #888;
	-moz-border-radius: 0 8px 0 0;
    -webkit-border-radius: 0 8px 0 0;
    border-radius: 0 8px 0 0;
}


.tabs label {
    display: block;
    height: 38px;
    position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
    color: #fff;
    text-decoration: none;
	text-align: center;
	line-height: 38px;
	outline: none;
	cursor: pointer;
}

/* Style for span tag that causes active/current tab highlighting */
.tabs li .active {
    position: absolute;
	display: none;
    top: -10px;
	left: -3px;
	width: 110px;
	height: 48px;
    z-index: 1;
	-moz-border-radius: 8px 8px 0 0;
    -webkit-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
	-moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}

/* Code to achieve inverted round corners at bottom of #active */
.tabs li .active:before {
	content: '';
	position: absolute;
	top: 40px;
	left: -10px;
	width: 10px;
	height: 8px;
	background: transparent;
	-moz-border-radius: 0 0 18px 0;
	-webkit-border-radius: 0 0 18px 0;
	border-radius: 0 0 18px 0;
}

.tabs li .active:after {
	content: '';
	position: absolute;
	top: 40px;
	left: 107px;
	width: 10px;
	height: 8px;
	background: transparent;
	-moz-border-radius: 0 0 0 18px;
	-webkit-border-radius: 0 0 0 18px;
	border-radius: 0 0 0 18px;
}

/* The strip between the tabs and the panes */
.tab-strip {
	content: '';
	position: relative;
	clear: both;
	z-index: 1;
	height: 10px;
	width: 960px;
	-moz-border-radius: 8px 8px 0 0;
	-webkit-border-radius: 8px 8px 0 0;
	border-radius: 8px 8px 0 0;
	-moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}


/* Styles for the panes and their parent wrapper */
.panes-scroll {
    width: 960px;
	position: relative;
    overflow:hidden;
    border: 1px solid #aaa;
	border-top: none;
    -moz-border-radius: 0 0 8px 8px;
    -webkit-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
    -moz-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.panes-items {
	width: 3840px;
	position: relative;
	-webkit-transition: margin-left 500ms ease-in-out ;
	-moz-transition: margin-left 500ms ease-in-out ;
	-o-transition: margin-left 500ms ease-in-out ;
	-ms-transition: margin-left 500ms ease-in-out ;
	transition: margin-left 500ms ease-in-out ;
}

.panes-items > div {
    padding: 20px;
	width: 920px;
	height: 0;
	float: left;
}


/******************** THE TAB SWITCHING FUNCTIONALITY **************/

/* On page load with no hash tag in url, display first pane and highlight first tab */
.panes-items > div:first-of-type { height: auto; }
.tabs li:first-child .active { display: block;}


/* On url hash change set zero height for all panes and remove highlight from all tabs */
input[name=pane]:checked + .dummy .panes-items > div { height: 0; }
input[name=pane]:checked + .dummy .tabs li .active { display: none;}


/* Scroll the required pane into view */
#p1:checked + .dummy .panes-items { margin-left: 0;}
#p2:checked + .dummy .panes-items { margin-left: -960px;}
#p3:checked + .dummy .panes-items { margin-left: -1920px;}
#p4:checked + .dummy .panes-items { margin-left: -2880px;}


/* After the previous step now display the appropriate pane */
#p1:checked + .dummy .panes-items > div:nth-of-type(1) ,
#p2:checked + .dummy .panes-items > div:nth-of-type(2) ,
#p3:checked + .dummy .panes-items > div:nth-of-type(3),
#p4:checked + .dummy .panes-items > div:nth-of-type(4) {
	height: auto;
}


/* And also highlight the appropriate tab */
#p1:checked + .dummy .tabs li:nth-child(1) .active,
#p2:checked + .dummy .tabs li:nth-child(2) .active,
#p3:checked + .dummy .tabs li:nth-child(3) .active,
#p4:checked + .dummy .tabs li:nth-child(4) .active {
	display: block;
}
