.helix-calc ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.helix-calc h1 {
	color: #eca620;
	font-size: 24px;
	font-style: italic;
	font-weight: bold;
}
.helix-calc h2 {
	margin: 0;
	padding: 0;
	color: #eca620;
	font-size: 20px;
}
.helix-calc h3 {
	color: #333;
	font-size: 14px;
	font-weight: bold;
}

.user-inputs {
	position: relative;
}

.input-section {
	float: left;
	width: 33.333333333%;
	padding: 0 30px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.input-section li {
	position: relative;
	margin: 0 0 15px;
	font-weight: normal;
	border-bottom: 1px solid #939393;
}

.input-section label {
	display: block;
	font-weight: normal;
}

.input-section input[type="text"] {
	padding: 2px 5px;
	border: none;
}
.input-section input[type="text"]:focus {
	outline: none; /* maybe */
	background-color: rgba(266, 166, 32, .1);
}

.input-section .amt {
	width: 125px;
}
.input-section .pct, .input-section .amt-hr {
	width: 55px;
}
.input-section .hrs {
	width: 30px;
}

.submit-button {
	position: absolute;
	bottom: 15px;
	right: 15px;
}

.results {
	display: none;
	padding: 20px 15px 15px;
	clear: both;
}
.final-tally {
	display: none;
}

/* === Table Styles === */
.helix-calc table {
	width: 100%;
	border-collapse: collapse;
}
.helix-calc table th, .helix-calc table td {
	border-bottom: 1px solid #d9d9d9;
}
.helix-calc thead th {
	border-bottom: 1px solid #999;
}
.helix-calc tfoot th, .helix-calc tfoot td {
	padding: 15px 0 15px 10px;
	color: #ce7b2d;
	font-weight: bold;
	border-bottom: none;
}

/* === Final Tally === */
.final-tally {
	padding: 20px 75px;
	background: #ce7b2d;
	overflow: hidden;
	border-radius: 0 0 5px 5px;
}
.final-tally div {
	float: left;
	width: 50%;
}
.final-tally h3 {
	margin: 0;
	padding: 0 0 5px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
}
.final-tally p {
	margin: 0;
	padding: 0;
	color: #484848;
	font-size: 24px;
	font-weight: bold;
}

.help {
	position: relative;
	z-index: 100;
	display: inline-block;
	width: 13px;
	height: 13px;
	background: url('/~/media/181A58AAC4C74A97A0F68B348DAB7685.png') no-repeat 0 0;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
}

.tooltip {
	display: none;
	position: absolute;
	z-index: 800;
	top: 100%;
	left: 200%;
	width: 150px;
	margin: 4px 0 0 40px;
	padding: 10px;
	background: #fff;
	color: #939393;
	font-size: 11px;
	line-height: 1.4;
	text-align: left;
	border: 1px solid #d6d6d6;
	border-radius: 3px;
}
.tooltip:after, .tooltip:before {
	top: 100%;
	left: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.tooltip:after {
	border-color: rgba(136, 183, 213, 0);
	border-top-color: #fff;
	border-width: 10px;
	margin-left: -10px;
}
.tooltip:before {
	border-color: rgba(194, 225, 245, 0);
	border-top-color: #d6d6d6;
	border-width: 11px;
	margin-left: -11px;
}

.helix-overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: 100%;
	background: url('/Assets/Images/Colorbox/overlay.png') repeat 0 0;
	background: rgba(0, 0, 0, .6);
}