.active-link {
	color: #e36c09;
}

.big-font {
	font-weight: bold;
	color: #09599F;
}

#Tabs ul {
padding: 0px;
margin: 0px;
margin-left: 10px;
list-style-type: none;
}

#Tabs ul li {
display: inline-block;
clear: none;
float: left;
height: 24px;
}

#Tabs ul li a {
position: relative;
margin-top: 16px;
display: block;
margin-left: 6px;
line-height: 24px;
padding-left: 10px;
background: #f6f6f6;
z-index: 9999;
border: 1px solid #ccc;
border-bottom: 0px;

/* The following four lines are to make the top left and top right corners of each tab rounded. */
-moz-border-radius-topleft: 4px;
border-top-left-radius: 4px;
-moz-border-radius-topright: 4px;
border-top-right-radius: 4px;
/* end of rounded borders */

width: 140px;
text-decoration: none;
font-weight: bold;
}


#Tabs ul li a:hover {
text-decoration: underline; // a very simple effect when hovering the mouse on tab
}

#Tabs #Content_Area { // this is the css class for the content displayed in each tab
padding: 0 15px;
clear:both;
overflow:hidden;
line-height:19px;
position: relative;
top: 20px;
z-index: 5;
height: 70px;
overflow: hidden;
}

#Tabs p { padding-left: 40px; }







.fileInput {
	height: 575px;
	background-color: #DFDFDF;
	width: 50%;
    margin: 0px auto;
	padding-top: 30px;
	padding-left: 40px;
}

.fileInputNoPad {
	height: 155px;
	background-color: white;
	width: 60%;
    margin: 0px auto;
	padding: 15px;
}

.fileExport {
	height: 50px;
	background-color: white;
	width: 40%;
    margin: 0px auto;
	padding-top: 30px;
}

.csvFileSubmit {
	padding-left: 270px;
}

.formSection {
    border-bottom: 1px dotted #CCCCCC;
    clear: both;
    display: inline-block;
    margin: 0 0 1em;
}

hr.dashed {
	border:0;
	height:0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

label {
	font-weight:bold;
	font-size:95%;
}

th.blueHeader {
	color: #006699;
}

th.smallBlueHeader {
	color: #006699;
	font-size: 85%;
	text-transformation: uppercase;
	font-style: italic;
}

label.error {
	color:red;
}

input.error {
	border: 1px solid #FF0000;
	background-color : #FFDDDD;
}

select.error {
	border: 1px solid #FF0000;
	background-color : #FFDDDD;
}

/* Style the tab */
.tab {
	overflow: hidden;
	border: 1px solid #ccc;
	background-color: #f1f1f1;
}

/* Style the buttons inside the tab */
.tab button {
	background-color: inherit;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 14px 16px;
	transition: 0.3s;
	font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
	background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
	background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
	display: none;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-top: none;
}

.switch {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 18px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 10px;
	width: 10px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #2196F3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(13px);
	-ms-transform: translateX(13px);
	transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

