<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body.app {
	background-color: #F1F1F1;
}

/* menu icon */
.menu-icon-hint {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	/*background-color: red;*/
	width: 32px;
	height: 32px;
	border-radius: 50%;
	z-index: -1;
}
.menu-icon-hint.pulse { animation: menu-icon-hint-pulse 1s; animation-iteration-count: 3; }
.menu-icon-hint.pulse-up { animation: menu-icon-hint-pulse-up 1s;  animation-iteration-count: 3;}
.menu-icon-hint.pulse-down { animation: menu-icon-hint-pulse-down 1s;  animation-iteration-count: 3;}
@keyframes menu-icon-hint-pulse
{
     0% {
		background-color: rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
     }
     100% {
        box-shadow: 0 0 0 24px rgba(0, 0, 0, 0);
		background-color: rgba(0, 0, 0, 0);
     }
}
@keyframes menu-icon-hint-pulse-up
{
     0% {
		background-color: rgba(150, 178, 88, 0.2);
        box-shadow: 0 0 0 0px rgba(150, 178, 88, 0.2);
     }
     100% {
        box-shadow: 0 0 0 24px rgba(150, 178, 88, 0);
		background-color: rgba(150, 178, 88, 0);
     }
}
@keyframes menu-icon-hint-pulse-down
{
     0% {
		background-color: rgba(204, 0, 0, 0.2);
        box-shadow: 0 0 0 0px rgba(204, 0, 0, 0.2);
     }
     100% {
        box-shadow: 0 0 0 24px rgba(204, 0, 0, 0);
		background-color: rgba(204, 0, 0, 0);
     }
}

.menu-icon-hint-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	/*opacity: .5;*/
	background-color: rgba(0, 0, 0, 0);
	overflow: hidden;
	transition: background-color 250ms;
}
.menu-icon-hint-overlay div:first-child {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
}
.menu-icon-hint-overlay .circle {
	position: absolute;
	margin-left: -100%;
	margin-top: -100%;
	background-color: #fff;
	width: 200%;
	padding-bottom: 200%;
	border-radius: 50%;
	transform: scale(.01);
	transition: transform 250ms;
}
.menu-icon-hint-overlay.open {
	background-color: rgba(0, 0, 0, .25);
}
.menu-icon-hint-overlay.open .circle {
	transform: scale(1);
}
.menu-icon-hint-overlay .menu-icon-hint {
	animation-iteration-count: infinite;
}
.menu-icon-hint-overlay .hint {
	margin-top: 80px;
	margin-left: 80px;
	max-width: 200px;
}
.menu-icon-hint-overlay .hint h4 {
	color: #78923B;
}
@media (min-width: 350px) {
	.menu-icon-hint-overlay .circle {
		margin-left: -350px;
		margin-top: -350px;
		width: 700px;
		height: 700px;
		padding-bottom: unset;
	}
}


/* dropdown animation */
header .dropdown .dropdown-menu {
	opacity: 0;
	transition: all .25s;
	display: block;
	visibility: hidden;
	margin-top: -8px;
}
header .dropdown.open .dropdown-menu {
	opacity: 1;
	visibility: visible;
	margin-top: 0;
}



.mobile-nav {
	position: absolute;
	top: 10px;
    left: 48%;
	transform: translate(-52%, 0%);
    max-width: 50%;
    visibility: hidden;
}

@media (max-width: 767px) {
	.mobile-nav {
        left: auto;
        right: 78px;
		transform: translate(0,0);
	}
}

.mobile-nav ul.meter {
    white-space: nowrap;
    margin-bottom: 0;
    width: 100%;
    overflow-x: auto;
}
.mobile-nav ul.meter li {
	display: inline-block;
	/*margin-right: 15px;*/
    margin-left: 30px;
	margin-bottom: 0;
	font-size: 1em;
	text-align: center;
}
.mobile-nav ul.meter li:first-child{
    margin-left: 0;
}
.mobile-nav ul.meter li span {
	font-size: .75em;
	font-weight: 300;
}
.mobile-nav ul.meter li div {
	display: none;
}

.mobile-nav .scroll-indicator {
    height: 100%;
    width: 10px;
    position: absolute;
    top: 0;
}
.mobile-nav .scroll-indicator.left {
    left: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&amp;1+0,0+100 */
    background: -moz-linear-gradient(left,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 */
}
.mobile-nav .scroll-indicator.right {
    right: 0;
    background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 ); /* IE6-9 */
}

/* Nav Item Properties */
ul.nav &gt; li.personal &gt; a {
	border-color: #b1be85;
}
ul.nav &gt; li.income &gt; a {
	border-color: #bea985;
}
ul.nav &gt; li.deductions &gt; a {
	border-color: #b785be;
}
ul.nav &gt; li.healthcare &gt; a {
	border-color: #85a4be;
}
ul.nav &gt; li.file &gt; a {
	border-color: #bf8686;
}
.nav &gt; li &gt; a.disabled {
	border-color: transparent !important;
	cursor: default;
	opacity: .5;
	font-style: italic;
}




#wizard-container {
	position: relative;
	/*margin-top: 16px;*/
	margin-top: 20px;
	padding: 0;
	background-color: #fff;
	border-radius: 8px;
	/* box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12)!important; */
	overflow: hidden;
	z-index: 900;
	/*margin-bottom: 55px;*/
	border: 1px solid rgba(0, 0, 0, .12);
}
/* html.no-boxshadow #wizard-container {
	border: 1px solid #DDD;
	border-bottom: 3px solid #CCC;
} */

#wizard-canvas {
	position: relative;
	margin-left: 15px;
	margin-right: 15px;
	/*background-color: red;*/
}

#wizard-canvas form &gt; h2 {
	margin-top: 10px;
	margin-left: -15px;
	margin-right: -15px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 8px;
	padding-bottom: 8px;
	/*background-color: #f8f8f8;*/
	font-size: 20px;
	font-weight: 400 !important;
}
#wizard-canvas form &gt; h2 .progress {
	position: absolute;
	bottom: 0;
	height: 2px;
	width: 100px;
	background-color: rgba(0,0,0,.1);
}


/* Button Options */
#wizard-canvas .button-option {
	text-align: center;
}
#wizard-canvas .button-option .btn {
	min-width: 100px;
	margin: 10px;
}
#wizard-canvas .button-option .button1 {
	margin-right: 100px;
}
@media (max-width: 767px) {
	#wizard-canvas .button-option .btn {
		/* display: inline-block; */
		width: 45%;
		min-width: inherit;
		margin-left: 0;
		margin-right: 0;
	}
	#wizard-canvas .button-option.full-width .btn {
		width: 100%;
	}
	#wizard-canvas .button-option .button1 {
		margin-right: 10px;
	}
}

#wizard-canvas.personal		form &gt; h2, h2.personal     {/*color: #b1be85;*/ color: #6e7d40;}
#wizard-canvas.income		form &gt; h2, h2.income       {/*color: #bea985;*/ color: #8a734c;}
#wizard-canvas.deductions	form &gt; h2, h2.deductions   {/*color: #b785be;*/ color: #9b62a3;}
#wizard-canvas.healthcare	form &gt; h2, h2.healthcare   {/*color: #85a4be;*/ color: #397bb1;}
#wizard-canvas.file			form &gt; h2, h2.file         {/*color: #bf8686;*/ color: #ae6161;}

#fix_message {
	border-left: 0;
	border-right: 0;
	border-top: 0;
	border-radius: 0;
	margin-left: -15px;
	margin-right: -15px;
	margin-bottom: 0;
}

div.sidebar {
	position: relative;
	/*margin-top: 16px;*/
	margin-top: 20px;
	margin-bottom: 45px;
}

div.sidebar ul.meter,
div.sidebar h4 {
	margin-left: 10px;
}

/* Meter */
ul.meter {
	position: relative;
	display: block;
	list-style: inside none;
	padding: 0;
	margin: 0;
	margin-bottom: 40px;
}

ul.meter li {
	/*display: inline-block;*/
	font-size: 1.75em;
	margin-bottom: 15px;
	cursor: pointer;
	font-weight: 300;
}
ul.meter.no-calc li {
	cursor: default !important;
}
ul.meter.no-calc li div {
	display: none;
}

ul.meter li.refund {
	color: #96B258;
}

ul.meter li.balance {
	color: #CC0000;
}

ul.meter li span {
	font-weight: bold;
	display: block;
	font-size: .5em;
	color: rgb(119, 118, 118);
}
ul.meter li div {
	font-weight: 300;
	font-size: .5em;
	color: #999;
}

#navDrawer-container ul.meter {
	margin-left: 20px;
	margin-top: 30px;
}

/* Subnav -- inherrited from etax.css */
.subnav &gt; h4 {
	font-weight: 400;
	margin-bottom: 16px;
}

.wizard-nav {
	border-top: 1px solid #ddd;
	margin-top: 20px;
	height: 60px;
}
.wizard-nav .btn {
	margin-top: 10px;
	min-width: 100px;
}
.wizard-nav .btn .icon {
	font-size: 1.6em;
  line-height: 0;
	margin-top: 1px;
}
#wizButtonNext {
	padding-left: 24px;
}
#wizButtonBack {
	padding-right: 24px;
}

.workspace {
	background-color: transparent;
}


/* Wizard Cards */
.wc-spinner-container {
	position: fixed;
	top: 200px;
	/*z-index: -100;*/
	z-index: 0;
}
.wc-spinner-container span {
	display: block;
	margin-top: 20px;
	word-break: keep-all;
	font-size: 14px;
	font-weight: 300;
	text-align: center;
	color: #aaa;
	animation-delay: .5s;
	animation-duration: .25s
}
.wc-spinner-container .spinner {
	width: 80px;
	height: 80px;
	border: 5px solid transparent;
	border-bottom-color: #B1BE85 /*#19A5DF*/;
	border-top-color: #B1BE85;
	border-radius: 100%;
	animation: rotate 1s linear 0s infinite;
}
.loading-screen .wc-spinner-container {
	position: relative;
	margin-top: 100px;
	top: auto;
	z-index: auto;
}
.loading-screen .wc-spinner-container .spinner {
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
}
.loading-screen .wc-spinner-container span {
	color: #B1BE85;
}
@keyframes rotate {
  from {
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/* Loading Screen */
.loading-screen {
	display: none;
	background: #fff;
	text-align: center;
	color: #B1BE85;
}

.loading-screen .spinner {
	margin-top: 100px;
}
.loading-screen span {
	display: block;
	margin-top: 20px;
	font-size: 16px;
	font-weight: 300;

}


/* Help */
div.help h1 {
    display: block;
    padding-left: 70px;
    font-size: 14px;
	font-weight: bold;
    background-image: url(/images/help/help.gif);
    background-repeat: no-repeat;
    padding-top: 10px;
    height: 50px;
    margin-top: 20px;
    color: #555;
}

div.help p {
    padding-bottom: 10px;
}
.fragment.help .fragment-content {
	padding: 20px;
}
.fragment.help .fragment-content p {
	padding-right: 20px;
}

ul.help-topics {
	display: none;
	margin: 0;
	padding: 0;
	margin-top: 20px;
	margin-bottom: 30px;
}

ul.help-topics &gt; h2 {
	font-weight: 300;
}

ul.help-topics li {
	margin-left: 20px;
	margin-bottom: 8px;
}
.help-tip {
	font-size: 22px;
	cursor: pointer;
	color: rgb(51, 122, 183);
}


/* Invoice &amp; IP Details */
.invoice, .signature {
	font-weight: 100;
	width: 100%;
}
.invoice.extra, .signature.extra, .signature.help-topics {
	max-width: 150px;
	font-size: 85%;
}
.invoice .item, .signature .item {
	position: relative;
}
.invoice .item span, .signature .item span {
	float: right;
}
.invoice .item.less, .signature .item.less {
	/*color: #a94442;*/
	color: #96B258;
}
.invoice .item.total, .signature .item.total {
	padding-top: 5px;
	border-top: 1px solid #ccc;
}

/* Modal */
.fragment.modal .fragment-content {
	padding: 20px;
	min-height: 100px;
	color: rgba(0, 0, 0, .68);
}
.fragment.modal .fragment-content ul {
	margin-top: 10px;
}
.fragment.modal .fragment-nav a.btn {
	min-width: 80px;
}
.fragment.modal-icon .fragment-content i.modal-icon {
	float: left;
	font-size: 32px;
	margin-right: 20px;
	color: rba(0, 0, 0, .83);
}


/* MODAL: ERROR */
/* .fragment.modal-error,
.fragment.modal-error &gt; div,
.fragment.modal-error .fragment-title i.fa, */
.fragment.modal-error .fragment-title {
    color: #a94442 !important;
}
.fragment.modal-error .btn {
	color: #a94442;
}
.fragment.modal-error .btn:hover,
.fragment-nav.modal-error .btn:focus,
.fragment.modal-error .btn:active {
	color: #d9534f !important;
}

/* MODAL: ALERT */
/* .fragment.modal-alert,
.fragment.modal-alert &gt; div,
.fragment.modal-alert .fragment-title i.fa, */
.fragment.modal-alert .fragment-title {
    color: #8a6d3b !important;
}
.fragment.modal-alert .btn {
	color: #8a6d3b;
}
.fragment.modal-alert .btn:hover,
.fragment-nav.modal-alert .btn:focus,
.fragment.modal-alert .btn:active {
	color: #B38E4D !important;
}

/* MODAL: CONFIRM */

.fragment.modal-confirm .fragment-title {
    color: #31708f !important;
}
.fragment.modal-confirm .btn {
	color: #31708f;
  /* background-color: #3D8CB3; */
  /* border-color: #31708f; */
	/* text-shadow: #31708f 1px 1px 1px; */
}
.fragment.modal-confirm .btn:hover,
.fragment-nav.modal-confirm .btn:focus,
.fragment.modal-conform .btn:active {
	color: #3D8CB3 !important;
}

.fragment.modal.coupon-code .error {
	color: #a94442;
}


/* Preview */
.fragment.preview .fragment-title, .fragment.preview .fragment-nav {
	/*color: #fff;
	background-color: #B1BE85;*/
}


/* Form Elements */
form .question-details {
	margin-bottom: 30px;
	font-weight: 300;
}

form .divide {
	height: 1px;
	border-bottom: 1px solid #ddd;
	margin-top: 10px;
	margin-bottom: 10px;
}
form .divide.dotted {border-bottom-style: dotted;}
form .divide.double {border-bottom-width: 2px;}


.form-group input, .form-group select, .form-group .form-control {
	box-shadow: 0 0 0 0;
	/*background-color: #f5f5f5;*/
	border-radius: 24px;
	/*border: 1px solid #ddd;*/
	font-weight: normal;
	background-color: white;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	background-color: #eee;
}
.form-group.has-error input {

}
.form-group input:focus, .form-group select:focus,  .form-group .form-control.focus {
	/*border-color: #66afe9;*/
	border-color: #78923B;
	box-shadow: #78923B 0px 0px 8px 0px;
}
.form-group.has-error input:focus, .form-group.has-error .form-control.focus {
	border-color: #a94442;
}
.form-group.has-error input:focus, .form-group.has-error .form-control.focus {
	box-shadow: #a94442 0px 0px 8px 0px;
}
.form-group .caseUpper {
	text-transform: uppercase;
}
.form-group .caseLower {
	text-transform: lowercase;
}
.form-group label {
	font-size: 12px;
}
.form-group .msg {
	font-size: 12px;
	display: none;
	clear: both;
	padding-left: 16px;
}
.form-group.has-error .msg {
	color: #a94442;
	display: block;
}
.checkbox.form-group input[type=checkbox], .radio.form-group input[type=radio],
.checkbox-inline input[type=checkbox], .radio-inline input[type=radio]{
	margin-top: 2px !important;
}
.checkbox, .radio, .form-horizontal .checkbox, .form-horizontal .radio {
	/*margin-bottom: 2px;*/
	/* margin-bottom: 4px; */
	margin-bottom: 8px;
}
.radio-inline, .checkbox-inline {
	padding-right: 10px;
	padding-top: 0;
}
.radio &gt; p {
	padding-left: 5px;
}
form .has-error .include-error {
	    color: #a94442;
}

form .table td a.btn, .btn.special {
	text-transform: uppercase;
	border-color: #B3B3B3;
    border-bottom-color: #999;
	margin-left: 4px;
	margin-right: 4px;
	background-color: #eee;
	border-color: #999;
    text-shadow: none;
	color: #78923B;
	font-weight: bold;
}
form .table td a.btn:hover, .btn.special:hover {
	color: #337ab7 !important;
}
form .table tbody tr td {
	vertical-align: middle;
	font-size: 12px;
}
form .table thead tr td {
	vertical-align: middle;
}
form .table thead tr.summary-title {
		border-top: solid 2px #CCC;
		border-bottom: dotted 1px #CCC;
		font-size: 12px;
		font-weight: bold;
}
form .table .summary-amount {
	padding-right: 80px;
}
form .table.table-no-border tbody tr td {
	border: none;
}
form .table.table-hover tbody tr:hover {
	background-color: #f8f7ed;
}
form .table-wrapper {
	margin-left: 20px;
	margin-right: 20px;
}
form .form-group label i, form label.format-i i {
	font-style: normal;
	font-weight: 100;
}
form h4 i {
	font-style: normal;
	font-weight: 100;
	color: #888;
}
form .row {
	margin-bottom: 10px;
}
form input.amount {
	padding-left: 28px;
	/*background-image: url(/images/amount.gif);*/
	background-image: url(/images/amount.png);
	background-repeat: no-repeat;
	/*background-position: 5px 8px;*/
	background-position: 8px 50%;
	background-size: 12px;
}
form input.percent {
	padding-right: 28px;
	/*background-image: url(/images/percent.gif);*/
	background-image: url(/images/percent.png);
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 12px;
}
form .panel h4 {
	margin-bottom: 20px;
}
form span.error {
	color: #900;
	font-weight: bold;
}
.composit-date {
	padding-top: 0;
	padding-bottom: 0;
	white-space: nowrap;
	color: #ccc;
}
.composit-date .valid {
	color: #000;
}
.composit-date input {
	display: inline-block;
	padding-left: 0;
	padding-right: 0;
	border: 0;
	width: auto;
	background: transparent;
	margin-left: 6px;
}
.composit-date input:first-child {
	margin-left: 0;
}
.composit-date input.month, .composit-date input.day {
	width: 25px;
}
.composit-date input.year {
	width: 50px;
}
.composit-date input:focus {
	border: 0 !important;
	box-shadow: none !important;
}



/* Month boxes */
div.months {
	padding-bottom: 10px;
	border-bottom: dotted 1px #ccc;
	margin-bottom: 20px;
}
div.months:last-child {
	border-bottom: none;
}
div.months &gt; div {
	padding: 0;
}
div.months .name {
	margin-bottom: 10px;
	display: block;
}
div.months a.m {
	display: block;
	background-color: #fff;
	text-align: center;
	margin: 2px;
	text-decoration: none;
	font-weight: bold;
	padding-top: 8px;
	padding-bottom: 8px;
	color: #666;
	border: 1px solid #eee;
}
div.months a.m.selected {
	background-color: #97a761 !important;
	color: #fff !important;
}
div.months a.m i {
	visibility: hidden;
}
div.months a.m.selected i {
	visibility: inherit;
}
div.months a.m.hover {
	background-color: #eee;
}
div.months input {
	display: none;
}
div.months div.sc {
	margin-top: 10px;
}

/*.checkbox input::before {*/
/*	width: 16px;*/
/*	height: 16px;*/
/*	background-color: #fff;*/
/*	border: 1px solid green;*/
/*	border-radius: 2px;*/
/*	content: ' ';*/
/*	display: inline-block;*/
/*	text-align: center;*/
/*	font: normal normal normal 14px/1 FontAwesome;*/
/*    text-rendering: auto;*/
/*    -webkit-font-smoothing: antialiased;*/
/*    -moz-osx-font-smoothing: grayscale;*/
/*    transform: translate(0, 0);*/
/*}*/
/*.checkbox input:checked::before {*/
/*	content: '\f00c';*/
/*}*/

/* Paper Form */
.paper-form-container {
	padding: 0;
}
.paper-form-header {
	position: relative;
	vertical-align: bottom;
	height: 30px;
	border-bottom: 1px dotted #ccc;
	margin-bottom: 20px;
}
.paper-form-header .form-title, .paper-form-header .info {
	float: right;
}
.paper-form-header .form-title b {
	font-size: 24px;
	margin-left: 3px;
}
.paper-form-header .info {
	font-size: 9px;
	margin-left: 3px;
	margin-top: 4px;
}
.paper-form-header .owner {
	position: absolute;
	bottom: 0;
	left: 0;
}


/* Banners */
.wiz-banner {
	position: relative;
	background-color: #ddd;
	min-height: 265px;
	height: 265px;
	height: auto;
	border-radius: 10px;
	border-bottom: 1px solid #eee;

	display: flex;
	flex-direction: row;
}
.wiz-banner-body, .wiz-banner-image {
	align-self: center;
}
.wiz-banner-body {
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 30px;
	padding-right: 30px;
}
.wiz-banner-image {
	padding-right: 15px;
	padding-left: 15px;
}

.wiz-banner.personal-info, .wiz-banner.direct-deposit {
	background: #d8dec2; /* Old browsers */
	background: linear-gradient(to bottom,  #d8dec2 0%,#f7f8f2 100%);
}
.wiz-banner.health-insurance {
	background: #9cb6cc; /* Old browsers */
	background: linear-gradient(to bottom,  #9cb6cc 0%,#eaf0f4 100%);
}
.wiz-banner.efile-paper {
	background: #c8dde2; /* Old browsers */
	background: linear-gradient(to bottom,  #c8dde2 0%,#f3f8f9 100%);
}
.wiz-banner.error {
	background: #ded9c2; /* Old browsers */
	background: linear-gradient(to bottom,  #ded9c2 0%,#f8f7f2 100%);
}



/* Selection List */
.selection-list {
	margin-left: 50px;
}
.selection-list .section {
	position: relative;
	/*margin-bottom: 20px;*/
	margin-bottom: 32px;
}
.selection-list .section{
}
.selection-list h4 {
	border-bottom: 1px solid #ddd;
	line-height: 35px;
	font-weight: 400;
	margin-bottom: 16px;
	/*font-size: 16px;*/
}
.selection-list .checkbox {
	margin-left: 4px;
	margin-bottom: 20px;
}
.selection-list .section &gt; .icon {
	position: absolute;
	top: 0;
	left: -50px;
	background-image: url(/images/icons.jpg);
	background-repeat: no-repeat;
	height: 35px;
	width: 35px;
}

.selection-list .section &gt; .icon.wages {background-position: 0 0 !important;}
.selection-list .section &gt; .icon.investments {background-position: 0 -177px !important;}
.selection-list .section &gt; .icon.other {background-position: 0 -120px !important;}
.selection-list .section &gt; .icon.investments2 {background-position: 0 -60px !important;}
.selection-list .section &gt; .icon.business {background-position: 0 -590px !important;}
.selection-list .section &gt; .icon.home {background-position: 0 -475px !important;}
.selection-list .section &gt; .icon.family {background-position: 0 -535px !important;}
.selection-list .section &gt; .icon.medical {background-position: 0 -415px !important;}
.selection-list .section &gt; .icon.charity {background-position: 0 -710px !important;}
.selection-list .section &gt; .icon.property {background-position: 0 -765px !important;}
.selection-list .section &gt; .icon.edu {background-position: 0 -650px !important;}
.selection-list .section &gt; .icon.retire {background-position: 0 -295px !important;}
.selection-list .section &gt; .icon.job {background-position: 0 -120px !important;}
.selection-list .section &gt; .icon.credits {background-position: 0 -235px !important;}

@media (max-width: 767px) {
	.selection-list {
		margin-left: 32px;
	}
}

#footer.app {
	/*position: absolute;*/
	/*bottom: 0;*/
	/*width: 100%;*/
	/*height: 40px;*/
	color: #999;
	background-color: transparent;
}

#dtime {
	font-size: 12px;
	font-style: italic;
}


.form-control::-moz-placeholder {
  color: #ccc;
  text-transform: none;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #ccc;
  text-transform: none;
}
.form-control::-webkit-input-placeholder {
  color: #ccc;
  text-transform: none;
}

fieldset.datePicker .dob-info {
    display: block;
    position: absolute;
    right: 24px;
    top: 3px;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none;
    color: #888;
}

fieldset.datePicker input:focus ~ .dob-info {
    /*background-color: red;*/
    color: #78923B;
}

fieldset.datePicker .dob-info small {
    display: block;
    font-size: 9px;
}

ul.password-check {
	display: none;
	list-style: none;
	padding-left: 0;
	font-size: .9em;
	margin-bottom: 20px;
}
ul.password-check li i.fa-check, ul.password-check li i.icon-check {
	color: green;
}
ul.password-check li i.icon-circle {
	font-size: 8px;
    margin: 0 2px;
}

/* Passwords */
.password-show-hide {
	float: right;
	margin-right: 14px;
	cursor: pointer;
	user-select: none;
	font-weight: bold;
	user-select: none;
}
.password-show-hide:hover {
	text-decoration: none;
}
.password-show-hide span {
	display: inline-block;
	font-size: 12px;
	width: 32px;
	text-align: right;
}
.password-check .fa {
	width: 14px;
}
.password-check .fa-circle {
	font-size: 8px;
	padding-left: 2px;
}
.password-check li.ok, .password-check .fa-check {
	color: #bdbbb9 !important;
}
.password-check {
	margin-bottom: 0 !important;
}
.password-check-secure {
	color: #3c763d;
	display: none;
}

/* recaptcha info */
.recaptcha-info {
	margin-top: 20px;
	padding: 10px;
	background-color: rgba(0, 0, 0, .025);
	text-align: center;
	font-size: 10px;
}

/* Status Panel */
.status-panel .status-steps {
	background-color: #efefef;
	margin-left: -15px;
	margin-right: -15px;
	font-style: italic;
	font-weight: 100px;
}
.status-panel .status-steps .step {
	color: #ccc;
	padding-top: 10px;
	padding-bottom: 10px;
}
.status-panel .status-steps .step i.fa {
	opacity: 0;
	color: #96B258;
}

.status-panel .status-steps.step1 .step1,
.status-panel .status-steps.step2 .step1,
.status-panel .status-steps.step2 .step2,
.status-panel .status-steps.step3 .step1,
.status-panel .status-steps.step3 .step2,
.status-panel .status-steps.step3 .step3 {
	color: #666;
	font-style: normal;
}
.status-panel .status-steps.step2 .step1 i.fa,
.status-panel .status-steps.step3 .step1 i.fa,
.status-panel .status-steps.step3 .step2 i.fa,
.status-panel .status-steps.step3 .step3 i.fa {
	opacity: 1;
}
.status-panel .status-steps .step.active {
	font-weight: bold;
}

.status-panel h4, .reject-panel h4, .download-panel h4 {
	padding-bottom: 9px;
    padding-top: 9px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    margin-top: 0px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    background-color: #ddd;
}

.status-panel .btn i {
	color: #f3e72b;
}

.alert-panel {
	color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-panel h4 {
	background-color: #faebcc;
}

.reject-panel {
	border-color: #a94442;
}

.reject-panel h4 {
	background-color: #a94442;
	color: #fff;
}

.reject-panel .btn-fix {
	color: #fff;
	background-color: #a94442;
	border: none;
	text-shadow: #8a3432 1px 1px 1px;
}

.reject-panel .reject-details {
	border-bottom: 1px dotted #ccc;
	margin-bottom: 20px;
	padding-bottom: 20px;
	color: #a94442;
}
.reject-panel .reject-details:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.download-panel .download {
	padding-bottom: 20px;
}

.dropdown-header.platinum {
	text-align: center;
	background-color: #E5E4E2;
}

/* Progress Bar */
.app-progress {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 2px;
	z-index: 1001; /* header + 1 */
}
.app-progress .value, .app-progress .filler {
	position: absolute;
	top: 0; left: 0;
	width: 0%;
	height: 100%;
	background-color: green;
}
.app-progress .filler {
	display: none;
}
header .progress {}
/*header .progress .value {background-color: #888;}*/
.app-progress .value, .app-progress .filler {background-color: #b1be85;}
.app-progress.income {}
.app-progress.income .value, .app-progress .income.filler {background-color: #bea985;}
.app-progress.deductions {}
.app-progress.deductions .value, .app-progress .deductions.filler {background-color: #b785be;}
.app-progress.healthcare {}
.app-progress.healthcare .value, .app-progress .healthcare.filler {background-color: #85a4be;}
.app-progress.file {}
.app-progress.file .value {background-color: #bf8686;}


/* Medium - Responsive Modifications */
@media (max-width: 991px) {

}
/* XS - Responsive Modifications */
@media (max-width: 767px) {
	form .table .summary-amount {
		padding-right: 15px;
	}
	.wiz-banner {
		width: 110%;
	}
	.wiz-banner-body .button-option.xs-expand {
		margin-left: -15px;
		margin-right: -15px;
	}
}
/* adjust size of worspace for smaller screens */
@media (max-width: 480px) {

}
/* Not XS - Responsive Modifications */
@media (min-width: 768px) {
	.text-right-not-xs {
		text-align: right;
	}
	.padding-top-7-not-xs {
		padding-top: 7px;
	}
}


.fytLog {
	position: relative;
}

.fytLog a {
	position: absolute;
	top: -40px;
	left: 50%;
}

.fytLog pre {
	display: none;
	border-radius: unset;
}

.fytLog.errors i {
	color: #a94442;
	font-weight: bold;
}

.fytLog i.response-error {
	display: none;
}
.fytLog.xml-error i {
	display: none;
}
.fytLog.xml-error i.response-error {
	display: inline-block;
}

/* no-select */
.no-select, label, .btn, .sidebar {
	user-select: none;
}

.pop-help-tip {
	position: relative;
	top: 1px;
	font-size: 16px;
	padding-right: 2px;
	margin-left: 6px;
	display: inline;
	display: inline-flex;
	text-decoration: none !important;
}
.pop-help-tip .icon {
	top: 2px;
    position: relative;
	line-height: 0;
}
.form-group .pop-help-tip .icon {
	line-height: .9em;
}
.form-group .pop-help-tip {
	font-size: 1.6em;
	margin-top: 4px;
}

/* Mobile Theme */
@media (max-width: 768px) {
	.inside header .nav-bar-helper {
		box-shadow: unset;
		transition: box-shadow linear .25s;
	}
	.inside header.scrolling .nav-bar-helper {
		box-shadow: rgba(0, 0, 0, .3) 0px 0px 5px 0px;
	}
	.inside #wizard-container,
	#wizard-container {
		border-radius: unset;
		box-shadow: none !important;
		border: none !important;
	}
	.inside .workspace, .inside #porthole {
		background-color: #fff;
	}
	.inside #footer small {
		display: none;
	}
	.inside .wiz-banner {
		border-radius: 8px;
		width: 100% !important;
		margin-left: 0;
		margin-right: 0;
	}
}

/* screen shot adjustments */
html.screen-shot,
html.screen-shot body {
  height: unset;
  overflow: unset;
  overflow-y: unset;
}
html.screen-shot .dropdown-menu {
  display: none !important;
}
html.screen-shot input,
html.screen-shot select {
	border-radius: unset !important;
}

html.screen-shot .panel {
	box-shadow: unset !important;
}


/* beta */

.form-group input, .form-group select, .form-group .form-control {
	border-radius: 4px 4px 0 0;
	background-color: rgba(0,0,0,.06);
	border: none;
	border-bottom: 1px solid rgba(0,0,0,.25);
	min-height: 38px;
	transition: background-color 250ms ease, box-shadow 250ms ease;
}

.form-group input:focus, .form-group select:focus, .form-group .form-control:focus {
	padding-top: 7px;
	border-bottom-width: 2px;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	border-bottom-style: dashed;
	background-color: rgba(0, 0, 0, .03) !important;
	color: rgba(0, 0, 0, .5);
}

.form-group label {
	transition: color 250ms ease;
}

.form-group:focus-within:not(.has-error) label {
	/* color: #78923B; */
	color: #78923B;
}

.form-group input:not(:focus):hover, .form-group select:not(:focus):hover, .form-control:not(:focus):hover {
	background-color: rgba(0, 0, 0, .1);
}

header ul.nav li a {
	transition: color 250ms ease;
}

.popover {
	cursor: default;
	user-select: none;
}

@media (max-width: 768px) {
	body.app {
		background-color: #fff;
	}

	.navbar-header .etax-title {
		margin-left: auto;
		margin-right: auto;
		padding-right: 48px;
	}

	.recaptcha-info {
		background-color: unset;
	}

	.form-group input, .form-group select, .form-group .form-control {
		min-height: 48px;
	}

	.btn {
		min-height: 48px;
		line-height: 32px;
	}

	.btn-xs {
		min-height: 24px;
		/* line-height: 32px; */
	}

	form .table-wrapper {
		margin-left: 0;
		margin-right: 0;
	}

	form table .btn-xs {
		margin-left: 4px;
	}

	.btn.special {
		padding-right: 12px;
	}

	div.checkbox, div.radio {
		margin-bottom: 24px !important;
	}

	ul.help-topics li {
		margin-top: 20px;
	}

	header .drawer-button {
		padding-left: 0;
	}

	.drawer-back-button {
		margin-left: 0;
	}

	.menu-icon-hint {
		left: -8px !important;
	}
}

@media (min-width: 768px) {
	.form-horizontal .control-label {
		padding-top: 11px;
	}
	.form-horizontal .control-label.two-line {
		padding-top: 3px;
	}
}
</pre></body></html>