/*
 * General Styles
 */

/*********************************************************************************************************************************
**********************************************************************************************************************************
Color Palette

Useage:
	span.myClass {
		background: var(--color-danger);
	}
**********************************************************************************************************************************
*********************************************************************************************************************************/
body {
	--color-danger: #d9534f;
	--color-error: #d9534f;
	--color-warning: #f0ad4e;
	--color-success: #5cb85c;
	--color-info: #5bc0de;
	--color-primary: #369;
	--color-default: #999;

	--color-danger-dark: #b94a48;
	--color-error-dark: #b94a48;
	--color-warning-dark: #8e703b;
	--color-success-dark: #468847;
	--color-info-dark: #3a87ad;
	--color-primary-dark: #24476b;
	--color-default-dark: #777;

	--color-danger-light: #E9625D;
	--color-error-light: #E9625D;
	--color-warning-light: #FCAC3B;
	--color-success-light: #5BB95B;
	--color-info-light: #78CAE3;
	--color-primary-light: #4185C8;
	--color-default-light: #ccc;

	--color-danger-vivid: #C9312C;
	--color-error-vivid: #C9312C;
	--color-warning-vivid: #EC971F;
	--color-success-vivid: #40A040;
	--color-info-vivid: #31b0d5;
	--color-primary-vivid: #07c;

	--color-help: #86AED1;
	--color-male: #09f;
	--color-female: #f357a1;
}
/*********************************************************************************************************************************
**********************************************************************************************************************************
END Color Palette
**********************************************************************************************************************************
*********************************************************************************************************************************/

/* see https://github.com/h5bp/html5-boilerplate/issues/918 for some reasons for overriding the BYU default.
In addition to those, this will allow us to avoid a ghastly extra scrollbar for our iframes */

html {
	overflow-y:auto;
}
img[name="s_i_byuconed"] {
	float:left;
}
a:active {color:var(--color-primary-light);} /* red? web team... */
a:visited {color:var(--color-primary);}
a.noUnderline {text-decoration: none;}
iframe {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

blockquote.plain:before {
	content:'';
	margin-right: -.1em;
	display:none;
}
blockquote.plain:after {
	content:'';
	display:none;
}

.cursorPointer,
.helpTip.cursorPointer {
	cursor: pointer;
}
button.pull-right + button.pull-right {
	margin-right: 8px;
}
.subText {
	color: var(--color-default);
	font-style: italic;
}

/* TRUSTARC COOKIE CONSENT
----------------------------------------------------------------------------------------*/
#truste-consent-track {
	z-index: 10000;
}

#truste-consent-buttons > button {
	background-image: none;
	text-shadow: none;
}

#teconsent > a {
	text-decoration: none;
} 

#teconsent > a:hover {
	text-decoration: underline;
} 

@media screen and (min-width: 71.525em) {
	#content {
		width: 1024px;
		max-width: 1024px;
	}
}

/* Validation and Warnings */
label.required {
	background-color: #e5f2ff;
}

input:required:not(.dirtyField):not(.error):not([disabled]),
select:required:not(.dirtyField):not(.error):not([disabled]),
textarea:required:not(.dirtyField):not(.error):not([disabled]) {
	background-color: #e5f2ff;
}

input.jquery-warning,
select.jquery-warning,
textarea.jquery-warning {
	background-color: #ffd;
}
input.error,
select.error,
textarea.error {
	background-color: #fdd;
}

input.groupError {
	box-shadow: 0 0 2px #d00;
}

label.error,
label.jquery-warning {
	margin-left: 8px;
	color: #d00;
	display: inline-block;
	padding-bottom: .45em;
	padding-top: 0;
	vertical-align: top;
	max-width: 100%;
}
label.jquery-warning {
	color: #856404;
}
label.jquery-warning:before {
	content: '\f06a'; /* fa-exclamation */
	font-family: 'fontawesome';
	margin-right: 0.8rem;
}

@media (min-width: 600px){
	label.error,
	label.jquery-warning {
		vertical-align: top;
	}

	:not(.fullWidth > .twoColumn) > label.error {
		max-width: 47%;
		margin-left: 50%;
	}
}
@media (min-width: 700px){
	:not(.fullWidth > .twoColumn) > label.error,
	:not(.fullWidth > .twoColumn) > label.jquery-warning {
		margin-left: 8px;
		padding-top: .45em;
		max-width: 30%;
	}
}
@media (min-width: 960px){
	:not(.fullWidth > .twoColumn) > label.error,
	:not(.fullWidth > .twoColumn) > label.jquery-warning {
		margin-left: 8px;
		padding-top: .45em;
		max-width: 45%;
	}
	:not(.fullWidth) > .twoColumn label.error,
	:not(.fullWidth) > .twoColumn label.jquery-warning {
		padding-top: 0;
		max-width: 47%;
		margin-left: 50%;
	}
}

/* Forms */
input,
input[type="text"],
input[type=password],
input[type=email],
input[type=url],
input[type=number],
input[type=file],
select,
textarea {

	box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-shadow: 0 0 3px #eee inset;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
/* IE10-specific fix for clipped descenders on text inputs (COM-78) */
	input[type="text"] {
		line-height: 1;
	}
}
input,
select,
textarea {
	border:solid 1px #aaa;
	padding: 6px 4px 5px; /* http://sixrevisions.com/usabilityaccessibility/improving-usability-with-fitts-law/ */
	border-radius: 2px;
	-webkit-border-radius: 2px;
}
input,
select:not([multiple]) {
	height: 35px; /* http://stackoverflow.com/questions/7229568/input-height-differences-in-firefox-and-chrome */
}
input[type=checkbox],
input[type=image],
input[type=radio] {
	border:none;
	padding:0;
	border-radius: 0;
	-webkit-border-radius: 0;
}
input[type=checkbox], input[type=radio] {
	width: 1.2rem;
	height: 1.2rem;
}
fieldset {
	border-radius: 3px;
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
	/* Min-width and width are to suppress the tendency to push the content off the page */
	min-width: 0; /* https://stackoverflow.com/a/17863685/749227 */
	width: 100%; /* https://stackoverflow.com/a/23239403/749227 */
}
.table-scroll-h {
	overflow-x: auto;
	white-space: nowrap;
	margin-bottom: 0;
}
.DTFC_LeftBodyLiner {
	overflow-x: hidden;
}
.DTFC_LeftWrapper td {
	background-color: white;
	border-right: 1px dotted #eee;
}
select {
	padding: 5px 2px 4px 0;
}
/* setting -webkit-appearance: none on selects loses the arrow on the right in both iOS Safari and Chrome desktop.  Fortunately, the background color shows through ever so slightly in iOS, so we added a touchscreen test and a couple css rules here to intensify the colors to the point where they resemble what they should be */
.ios div.formElement select:required {
	background-color: #99ccff;
}
.ios div.formElement select.error {
	background-color: #ff9999;
}
.ios div.formElement select.dirtyField {
	background-color: #ff9900;
}
label > input[type=checkbox],
label > input[type=radio] {
	margin-right: .1rem;
	position: relative;
}
label.space-after {
	margin-right: 20px;
}
span.inline-input-group label {
	margin-right: 18px;
}
button, input, select, textarea {
	vertical-align: middle;
}
.formElement input[type="text"]:not(.ignoreWidth),
.formElement input[type="password"]:not(.ignoreWidth),
.formElement input[type="file"]:not(.ignoreWidth),
.formElement select:not(.ignoreWidth),
.formElement textarea:not(.ignoreWidth),
.formElement .formGroup:not(.ignoreWidth),
.twoColumn .formElement input[type="text"]:not(.ignoreWidth),
.twoColumn .formElement input[type="password"]:not(.ignoreWidth),
.twoColumn .formElement input[type="file"]:not(.ignoreWidth),
.twoColumn .formElement select:not(.ignoreWidth),
.twoColumn .formElement textarea:not(.ignoreWidth),
.twoColumn .formElement .formGroup:not(.ignoreWidth),
.formElement .formGroup input[type="text"]:not(.ignoreWidth),
.formElement .formGroup input[type="file"]:not(.ignoreWidth),
.formElement .formGroup select:not(.ignoreWidth),
.formElement .formGroup textarea:not(.ignoreWidth),
.twoColumn .formElement .formGroup input[type="text"]:not(.ignoreWidth),
.twoColumn .formElement .formGroup input[type="file"]:not(.ignoreWidth),
.twoColumn .formElement .formGroup select:not(.ignoreWidth),
.twoColumn .formElement .formGroup textarea:not(.ignoreWidth),
.twoColumn .formElement.fullWidth>span:first-child,
.twoColumn .formElement.fullWidth>label:first-child,
.twoColumn .formElement.halfWidth>span:first-child,
.twoColumn .formElement.halfWidth>label:first-child,
.stackedLabel .formElement > label:first-child:not(.ignoreStackedLabel),
.stackedLabel .formElement > span:first-child:not(.ignoreStackedLabel),
.stackedLabel .twoColumn .formElement > label:first-child,
.stackedLabel .twoColumn .formElement > span:first-child,
.stackedLabel.fullWidth .formElement > label:first-child,
.stackedLabel.fullWidth .formElement > span:first-child,
.stackedLabel.fullWidth .formElement input[type="text"]:not(.ignoreWidth),
.stackedLabel.fullWidth .formElement input[type="password"]:not(.ignoreWidth),
.stackedLabel.fullWidth .formElement input[type="file"]:not(.ignoreWidth),
.stackedLabel.fullWidth .formElement select:not(.ignoreWidth),
.stackedLabel.fullWidth .formElement textarea:not(.ignoreWidth),
.stackedLabel.fullWidth .formElement .formGroup:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement > label:first-child,
.stackedLabel.fullWidth .twoColumn .formElement > span:first-child,
.stackedLabel.fullWidth .twoColumn .formElement input[type="text"]:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement input[type="password"]:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement input[type="file"]:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement select:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement textarea:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement .formGroup:not(.ignoreWidth),
.stackedLabel.fullWidth .formElement .formGroup input[type="text"]:not(.ignoreWidth),
.stackedLabel.fullWidth .formElement .formGroup input[type="file"]:not(.ignoreWidth),
.stackedLabel.fullWidth .formElement .formGroup select:not(.ignoreWidth),
.stackedLabel.fullWidth .formElement .formGroup textarea:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement .formGroup input[type="text"]:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement .formGroup input[type="file"]:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement .formGroup select:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement .formGroup textarea:not(.ignoreWidth),
.stackedLabel.fullWidth .twoColumn .formElement.fullWidth>span:first-child,
.stackedLabel.fullWidth .twoColumn .formElement.fullWidth>label:first-child,
.stackedLabel.fullWidth .twoColumn .formElement.halfWidth>span:first-child,
.stackedLabel.fullWidth .twoColumn .formElement.halfWidth>label:first-child {
	width: 100%;
}
.formElement .formGroup:not(.inlineInputs) button:not(:first-child),
.formElement .formGroup:not(.inlineInputs) input:not(:first-child),
.formElement .formGroup:not(.inlineInputs) div:not(:first-child) {
	margin-top: .25em;
}
.formElement .formGroup.inlineInputs input + label,
.formElement .formGroup.inlineInputs button + button {
	margin-left: 1em;
}
.formElement label,
.formElement .plainText:not(.hide) {
	padding-top: .45em;
	padding-bottom: .45em;
	display: inline-block;
}
.formElement>span:first-child,
.formElement>label:first-child,
.twoColumn .formElement>span:first-child,
.twoColumn .formElement>label:first-child {
	display: block;
	width: 100%;
	font-weight: bold;
	vertical-align: top;
	padding-top: .45em;
	padding-bottom: .45em;
}

.formElement.fullWidth textarea,
.twoColumn .formElement.fullWidth textarea,
.formElement.fullWidth select,
.twoColumn .formElement.fullWidth select,
.formElement.halfWidth textarea,
.twoColumn .formElement.halfWidth textarea,
.formElement.halfWidth input[type="text"],
.twoColumn .formElement.halfWidth input[type="text"],
.formElement.halfWidth input[type="file"],
.twoColumn .formElement.halfWidth input[type="file"],
.formElement.halfWidth select,
.twoColumn .formElement.halfWidth select {
	width: 100%;
	display: block;
}
.formElement.fullWidth label,
.formGroup.inlineInputs label {
	margin-right: 1em;
}
.formGroup.inlineInputs > input,
.formGroup.inlineInputs > select,
.formGroup.inlineInputs > button {
	margin-right: 4px;
}
.ignoreWidth,
.twoColumn .ignoreWidth {
	max-width: 100%;
}
.twoColumn {
	display: block;
	width: 100%;
	padding-right: 0;
	vertical-align: top;
}
.twoColumn .formElement.fullWidth input,
.twoColumn .formElement.fullWidth select {
	max-width: 100%;
}
.formElement.fullWidth>span:first-child,
.formElement.fullWidth>label:first-child,
.formElement.halfWidth>span:first-child,
.formElement.halfWidth>label:first-child {
	display: inline-block;
	width: auto;
	max-width: 100%;
	padding-bottom: .45em;
}
.formElement>span:first-child.plainText,
.formElement>label:first-child.plainText {
	font-weight: normal;
}
/* This will make sure all labels have some right padding. */
.formElement span label {
	padding-right: .5em;
}
.formElement, .formElement.fullWidth {
	padding-bottom: .5em;
	padding-top: .5em;
}
.formGroup {
	display: inline-block;
}
.formGroup label {
	display: inline-block;
}
.inlineInputs {
	display: inline-table;
}
.inlineInputs>div {
	display: table-cell;
}
.inlineInputs>div + div {
	box-sizing: border-box;
	padding-left: 8px;
}
.formElement input + span.helpTip,
.formElement select + span.helpTip,
.formElement textarea + span.helpTip {
	margin-left: 1em;
}

.ui-tooltip.fieldSpinner {
	box-shadow: none;
	border-radius: 2px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	background: transparent;
}
.ui-tooltip.fieldSpinner .ui-tooltip-content {
	padding-bottom: 8px;
	background-color: rgba(255,255,255,0.9);
}

/* Helptips */

.ui-tooltip {
	box-shadow: 0px 0px 3px rgba(0,0,0,0.8);
	padding: 0px;
}
body .ui-tooltip {
	border-width: inherit;
}
.tipTitle {
	background-color: rgb(51, 102, 153);
	color: white;
	padding: 6px 12px;
	margin: -6px -12px 6px;
	border-radius: 4px 4px 0px 0px;
	box-sizing:border-box;
}

span.helpTip,
span.disability {
	font-family: fontawesome;
	color: white;
	font-weight: normal;
	background-color: var(--color-help);
	border-radius: 3px;
	width: 1em;
	display: inline-block;
	text-align: center;
	font-size: .8em;
	height: 1em;
	line-height: 1em;
	padding: 3px 2px 1px;
	border: 1px solid white;
	cursor:	default;
	box-sizing: content-box; /* ensure tooltips render predictably whether in a border-box parent or not */
}
.helpTip:before {
	content: '\f129'; /* fa-info */
}
span.helpTip.helpTip-danger {
	background-color: var(--color-danger);
}
span.helpTip.helpTip-danger:before {
	content: '\f12a'; /* fa-exclamation */
}
.ui-tooltip-content {
	padding: 6px 12px;
}
.ui-tooltip-content p:last-child {
	margin-bottom: 0;
}
span.reportView {
	padding: 2px;
}

/* Session timeout dialog styles */
#sessionTimeoutDialog {
	color: red;
	font-size: 20px;
	font-weight: bold;
}

/* jQuery UI dialog: option to hide close button in header
 * usage: $('#myDialog').dialog({ dialogClass: 'no-close' });
 * Note: using closeOnEscape: true works well in conjunction with this if you really want to lock it down
 */
.no-close .ui-dialog-titlebar-close {display: none }

/* page layout */
/* note that the margin and border are to accomodate the overflow, which is needed to prevent
 * absolute positioned elements from being clipped if they overflow the content div as well as to
 * ensure the content div doesn't get a collapsed margin from it's first child (like an h1 tag)
 */
#content {
	overflow: visible;
	margin-top:0px;
	border-top:solid 1px transparent;
	padding-bottom: 38px;
	min-height: 200px;
}
#bodyContent{position:relative;}
.simple-body,
#main-header,
#bodyContent {
	min-width:0; /* for the iframe and fluid layout crowd (and popups) */
	min-height:0; /* for ie7 on some wacky pages */
}
#bodyContent {
	margin-top: 12px;
}
.simpleHTML {
	background-color: #FFFFFF;
}
.simple-body {
	background: #FFFFFF;
}
#primary-nav .sublinks {
	margin-top:2px;
}
.center-block { /* usage: http://getbootstrap.com/css/#helper-classes-center */
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.ui-h2-right {
	float: right;
	margin-top: 30px;
}
label.ui-h2-right { /* for checkboxes, like on PM housing groups */
	margin-top: 38px;
}
.ui-h3-right {
	float: right;
	margin-top: 20px;
}
.ui-h2-right+h2,
.ui-h3-right+h3 {
	display: inline-block;
}
.ui-h2-right+.ui-h2-right,
.ui-h3-right+.ui-h3-right {
	margin-right: 8px;
}

/*
 * Utility styles
 * use these instead of inline CSS
 * If you ever find you need more than the utility style covers... make a class that includes the style from the
 * utility(s) that you require.
 */
.float-left {float:left;} /* deprecated; use pull-left */
.float-right {float:right;} /* deprecated: use pull-right */
.clear-both {clear:both;}
.v-middle {vertical-align:middle;}
.hide {display:none;}
.transparent {opacity: 0; filter: alpha(opacity=0);}
.no-wrap {white-space: nowrap;}
/* for use when a width:100% element is overflowing a td that has padding.  Wrap the 100% width element in a div
 * with this class on it to ensure the width calculation respects the padding on the td. */
.padding-respect {overflow:hidden;}
/* can also use <strong> - this is in case you are also bolding an element that already has another class and
 * the font-weight is the only difference on selected instances of the classed element */
.bolded{font-weight:bold;}
em {font-style:italic;} /* BYU template took this away.  We're bringing it back. */
.standard-top-margin {margin-top:32px;} /* use this on the first element in your view if your page doesn't start with an element that has built-in top margin/padding, like an h1 tag used as a page title */
.standard-bottom-margin {margin-bottom:12px;} /* use this where <p> elements are inappropriate and you need vertical space before the next element */
.spacing-margins {margin-top:.5em; margin-bottom:.5em;}

/*These classes are deprecated, don't use them in new code or add to this block */
.v-top {vertical-align:top;}
.w-150 {width:150px;}
.no-border {border:0;}
.w-100p {width:100%;}
.auto-overflow {overflow:auto;}
.w-33p {width:33%;}
.v-bottom {vertical-align:baseline;}
.a-right {text-align:right;} /* use text-right class (from bootstrap) instead */
.center {margin:0 auto;}
.a-left {text-align:left;} /* use text-left class (from bootstrap) instead */
.h-20 {height:20px;}
/*End deprecated class block */

/*
 * Messagebox
*/
.message-box {
	border-radius: 4px;
	text-align: center;
	position:fixed;
	top: 105px;
	left: 50%;
	padding-top: 4px;
	padding-bottom:4px;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%); /* Older Gecko browser */
	-ms-transform: translate(-50%, -50%); /* IE9+ */
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 100;
}
.message-box-type-info {
	padding: 4px 15px;
	color: #404040;
	background-color: #eedc94;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94));
	background-image: -moz-linear-gradient(top, #fceec1, #eedc94);
	background-image: -ms-linear-gradient(top, #fceec1, #eedc94);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94));
	background-image: -webkit-linear-gradient(top, #fceec1, #eedc94);
	background-image: -o-linear-gradient(top, #fceec1, #eedc94);
	background-image: linear-gradient(top, #fceec1, #eedc94);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0);
	border-color: #eedc94 #eedc94 #e4c652;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border-width: 1px;
	border-style: solid;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.message-box-type-error {
	color:white;
	text-align: left;
	background-color: #c43c35;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35));
	background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35);
	background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35));
	background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35);
	background-image: -o-linear-gradient(top, #ee5f5b, #c43c35);
	background-image: linear-gradient(top, #ee5f5b, #c43c35);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0);
	border-color: #c43c35 #c43c35 #882a25;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.message-box-type-warning {
	color:white;
	background-color: #E86C27;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#FF8F1E), to(#E86C27));
	background-image: -moz-linear-gradient(top, #FF8F1E, #E86C27);
	background-image: -ms-linear-gradient(top, #FF8F1E, #E86C27);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FF8F1E), color-stop(100%, #E86C27));
	background-image: -webkit-linear-gradient(top, #FF8F1E, #E86C27);
	background-image: -o-linear-gradient(top, #FF8F1E, #E86C27);
	background-image: linear-gradient(top, #FF8F1E, #E86C27);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8F1E', endColorstr='#E86C27', GradientType=0);
	border-color: #E86C27 #E86C27 #944519;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.message-box-type-success {
	color:white;
	background-color: #57a957;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957));
	background-image: -moz-linear-gradient(top, #62c462, #57a957);
	background-image: -ms-linear-gradient(top, #62c462, #57a957);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957));
	background-image: -webkit-linear-gradient(top, #62c462, #57a957);
	background-image: -o-linear-gradient(top, #62c462, #57a957);
	background-image: linear-gradient(top, #62c462, #57a957);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
	border-color: #57a957 #57a957 #3d773d;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
.message-box-type-warning,
.message-box-type-error,
.message-box-type-success {
	padding-left: 36px;
}
.message-box-type-warning:before,
.message-box-type-error:before,
.message-box-type-success:before {
	position: absolute;
	top:6px;
	left:10px;
}
.message-box-type-warning:before {
	content: "\f071"; /* fa-exclamation-triangle */
	font-family: "fontawesome";
	line-height: normal;
}
.message-box-type-error:before {
	content: "\f06a"; /* fa-exclamation-circle */
	font-family: "fontawesome";
	line-height: normal;
}
.message-box-type-success:before {
	content: "\f058"; /* fa-check-circle */
	font-family: "fontawesome";
	line-height: normal;
}
.message-box.hide {display:none;} /* Necessary as .message-box styles override the general .hide display */
.message-box .close {
	float: right;
	margin-left:10px;
	padding-right:10px;
	color: #000000;
	font-family:Arial, sans-serif;
	line-height:18px;
	font-size: 20px;
	font-weight: bold;
	filter: alpha(opacity=25);
	-khtml-opacity: 0.25;
	-moz-opacity: 0.25;
	opacity: 0.25;
	cursor:pointer;
}

.message-box-type-info .close {
	padding-right:0px;
}

.message-box .close:hover {
	color: #000000;
	text-decoration: none;
	filter: alpha(opacity=40);
	-khtml-opacity: 0.4;
	-moz-opacity: 0.4;
	opacity: 0.4;
}

.message-box a {color:#404040; text-decoration:underline; }
.message-box-type-error a,
.message-box-type-warning a,
.message-box-type-success a {color:white; }

.message-box .message-details {
	text-align:left;
	background: #fcc; /* IE fallback (doesn't support rgba) */
	background:rgba(255,255,255,0.2);
	padding:4px 8px;
	margin:8px 4px 0;
	border-radius:4px;
}
.message-box ul{
	margin-right:30px;
	margin-left:10px;
}

/*
 * Alerts
 * Note that these are for static in-page content, not the flash message
 * Alert styles (.alert and .alert-*) modified from original:
 * https://github.com/twitter/bootstrap/blob/16eccc43d9fa6317818b5d1621d0477150214488/LICENSE
 */
.alert {
	padding: 14px;
	margin-bottom: 18px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	background-color: #fcf8e3;
	border: 1px solid #fbeed5;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	color: var(--color-warning-dark);
}
.alert h1,
.alert h2,
.alert h3,
.alert h4,
.alert h5,
.alert h6 {
	color: var(--color-warning-dark);
}
.alert-heading {
	color: inherit;
}
.alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: var(--color-success-dark);
}
.alert-success h1,
.alert-success h2,
.alert-success h3,
.alert-success h4,
.alert-success h5,
.alert-success h6 {
	color: var(--color-success-dark);
}
.alert-danger,
.alert-error {
	background-color: #f2dede;
	border-color: #eed3d7;
	color: var(--color-danger-dark);
}
.alert-danger h1,
.alert-danger h2,
.alert-danger h3,
.alert-danger h4,
.alert-danger h5,
.alert-danger h6,
.alert-error h1,
.alert-error h2,
.alert-error h3,
.alert-error h4,
.alert-error h5,
.alert-error h6 {
	color: var(--color-danger-dark);
}
.alert-info {
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: var(--color-info-dark);
}
.alert-info h1,
.alert-info h2,
.alert-info h3,
.alert-info h4,
.alert-info h5,
.alert-info h6 {
	color: var(--color-info-dark);
}
.alert > p,
.alert > ul {
	margin-bottom: 0;
}
.alert p + p {
	margin-top: 5px;
}
.alert a:not(.btn),
.alert p a:not(.btn) {
	border-bottom: dotted 1px var(--color-primary);
	margin-bottom: -1px;
	text-decoration: none;
}
.alert a:hover:not(.btn) {
	text-decoration: none;
	border-bottom-style: solid;
	border-bottom-color: #025;
}

/* Labels */
.label {
	display:inline;
	padding:.2em .6em;
	font-size:75%;
	font-weight:bold;
	line-height:1;
	color:#fff;
	text-align:center;
	white-space:nowrap;
	vertical-align:baseline;
	border-radius:.25em;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.label.hide {
	display: none;
}
.label[href]:hover, .label[href]:focus {
	color:#fff;
	text-decoration:none;
	cursor:pointer
}
.label:empty {
	display:none
}
.label-default {
	background-color:var(--color-default)
}
.label-default[href]:hover, .label-default[href]:focus {
	background-color:var(--color-default-dark)
}
.label-primary {
	background-color:var(--color-primary-light)
}
.label-primary[href]:hover, .label-primary[href]:focus {
	background-color:var(--color-primary)
}
.label-success {
	background-color:var(--color-success)
}
.label-success[href]:hover, .label-success[href]:focus {
	background-color:var(--color-success-dark)
}
.label-info {
	background-color:var(--color-info)
}
.label-info[href]:hover, .label-info[href]:focus {
	background-color:var(--color-info-dark)
}
.label-warning {
	background-color:var(--color-warning)
}
.label-warning[href]:hover, .label-warning[href]:focus {
	background-color:var(--color-warning-dark)
}
.label-danger {
	background-color:var(--color-danger)
}
.label-danger[href]:hover, .label-danger[href]:focus {
	background-color:var(--color-danger-dark)
}
.label-male {
	background-color:var(--color-male)
}
.label-male[href]:hover, .label-male[href]:focus {
	background-color:var(--color-male)
}
.label-female {
	background-color:var(--color-female)
}
.label-female[href]:hover, .label-female[href]:focus {
	background-color:var(--color-female)
}
.label-light-default {
	background-color: transparent;
	color: var(--color-default-dark);
	border: solid 1px var(--color-default-dark);
}
.label-light-info {
	background-color: transparent;
	color: var(--color-info-vivid);
	border: solid 1px var(--color-info-vivid);
}
.label-light-success {
	background-color: transparent;
	color: var(--color-success-vivid);
	border: solid 1px var(--color-success-vivid);
}
.label-light-warning {
	background-color: transparent;
	color: var(--color-warning-vivid);
	border: solid 1px var(--color-warning-vivid);
}
.label-light-danger {
	background-color: transparent;
	color: var(--color-danger-vivid);
	border: solid 1px var(--color-danger-vivid);
}
.label-light-male {
	background-color: transparent;
	color: var(--color-male);
	border: solid 1px var(--color-male);
}
.label-light-female {
	background-color: transparent;
	color: var(--color-female);
	border: solid 1px var(--color-female);
}

/* Badges */

.badge {
	display: inline-block;
	min-width: 10px;
	padding: 3px 7px;
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	background-color: var(--color-default);
	border-radius: 10px;
}
.badge:empty {
	display: none;
}
.btn .badge {
	position: relative;
	top: -1px;
}
.btn-xs .badge {
	top: 0;
	padding: 1px 5px;
}
a.badge:hover,
a.badge:focus {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
}
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
	color: var(--color-primary);
	background-color: #fff;
}
.list-group-item > .badge {
	float: right;
}
.list-group-item > .badge + .badge {
	margin-right: 5px;
}
.nav-pills > li > a > .badge {
	margin-left: 3px;
}
.btn-default .badge {
	color: #fff;
	background-color: #333;
}
.btn-primary .badge {
	color: var(--color-primary);
	background-color: #fff;
}
.btn-success .badge {
	color: var(--color-success);
	background-color: #fff;
}
.btn-info .badge {
	color: var(--color-info);
	background-color: #fff;
}
.btn-warning .badge {
	color: var(--color-warning);
	background-color: #fff;
}
.btn-danger .badge {
	color: var(--color-danger);
	background-color: #fff;
}
.badge-warning {
	background-color: var(--color-warning);
}
.badge-danger {
	background-color: var(--color-danger);
}
.badge-info {
	background-color: var(--color-info);
}
.badge-success {
	background-color: var(--color-success);
}
.badge-male {
	background-color: var(--color-male);
}
.badge-female {
	background-color: var(--color-female);
}

/*
 * Progress Bars
 */
@-webkit-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0;
	}
	to {
		background-position: 0 0;
	}
}
@-o-keyframes progress-bar-stripes {
	from {
		background-position: 40px 0;
	}
	to {
		background-position: 0 0;
	}
}
@keyframes progress-bar-stripes {
	from {
		background-position: 40px 0;
	}
	to {
		background-position: 0 0;
	}
}
.progress {
	height: 20px;
	margin-bottom: 20px;
	overflow: hidden;
	background-color: #f5f5f5;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
					box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progress-bar {
	float: left;
	width: 0;
	height: 100%;
	font-size: 12px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	background-color: var(--color-primary);
	-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
					box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
	-webkit-transition: width .6s ease;
	-o-transition: width .6s ease;
	transition: width .6s ease;
}
.progress-striped .progress-bar,
.progress-bar-striped {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	-webkit-background-size: 40px 40px;
					background-size: 40px 40px;
}
.progress.active .progress-bar,
.progress-bar.active {
	-webkit-animation: progress-bar-stripes 2s linear infinite;
	-o-animation: progress-bar-stripes 2s linear infinite;
	animation: progress-bar-stripes 2s linear infinite;
}
.progress-bar-success {
	background-color: var(--color-success);
}
.progress-striped .progress-bar-success {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-info {
	background-color: var(--color-info);
}
.progress-striped .progress-bar-info {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-warning {
	background-color: var(--color-warning);
}
.progress-striped .progress-bar-warning {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
.progress-bar-danger {
	background-color: var(--color-danger);
}
.progress-striped .progress-bar-danger {
	background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:      -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-image:         linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}
/*
 * Table styles
 */

/* datatables styles */
table.dataTable thead tr th {
	position: relative;
	padding-right: 28px;
}
table.dataTable thead tr th.sorting_desc::after,
table.dataTable thead tr th.sorting_asc::after {
	font-family: 'fontawesome';
	color: var(--color-primary-light);
	right: 8px;
	bottom: 25%;
	position: absolute;
	margin-top: -12px;
	font-size: 12px;
}
table.dataTable thead tr th.sorting_desc::after {
	content: '\f078';
}
table.dataTable thead tr th.sorting_asc::after {
	content: '\f077';
}
.dt-buttons {
	margin-bottom: 20px;
	margin-top: -4px;
}
.dt-buttons .btn+.btn {
	margin-left: 8px;
}
.dataTables_scrollHeadInner table {
	margin-bottom: 0;
}
.dataTables_wrapper.no-footer .dataTables_scrollBody {
	border-bottom: 1px dashed #ccc;
}
.dataTables_filter {
	float: right;
}
.dataTables_filter input[type="search"] {
	height: 22px;
	margin-left: 8px;
	-webkit-appearance: searchfield;
}
.dataTablesSearchCollapse .dataTables_filter { /* apply to any ancestor */
	margin-top: -48px;
}
.dataTables_scrollBody > table,
.dataTables_scrollFootInner > table {
	margin-bottom: 0;
}

/* DataTables rowReorder */
table.dt-rowReorder-float {
	position: absolute !important;
	opacity: 0.8;
	table-layout: fixed;
	outline: 2px solid #888;
	outline-offset: -2px;
	z-index: 2001;
}

tr.dt-rowReorder-moving {
	outline: 2px solid #555;
	outline-offset: -2px;
}

body.dt-rowReorder-noOverflow {
	overflow-x: hidden;
}

table.dataTable td.reorder {
	text-align: center;
	cursor: move;
}

/* DataTable Response*/
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
	cursor: default !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
	display: none !important;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child,
table.dataTable.dtr-column > tbody > tr > td:first-child,
table.dataTable.dtr-column > tbody > tr > th:first-child,
table.dataTable.focus > tbody > tr > th:first-child,
table.dataTable.focus > tbody > tr > td:first-child {
	position: relative;
	padding-left: 30px;
	cursor: pointer;
}
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before,
table.dataTable.dtr-column > tbody tr > td.control:before,
table.dataTable.dtr-column > tbody tr > th.control:before {
	top: 7px;
	left: 6px;
	height: 14px;
	width: 14px;
	display: block;
	position: absolute;
	color: white;
	border-radius: 14px;
	box-sizing: content-box;
	text-align: center;
	font-family: 'fontawesome';
	font-size: 20px;
	line-height: 14px;
	content: '\f055';
	color: #31b131;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
	font-family: 'fontawesome';
	content: '\f056';
	color: #d33333;
}
table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
	display: none;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
	padding-left: 27px;
}
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
	top: 5px;
	left: 4px;
	height: 14px;
	width: 14px;
	border-radius: 14px;
	line-height: 14px;
	text-indent: 3px;
}
table.dataTable.dtr-column > tbody > tr > td.control,
table.dataTable.dtr-column > tbody > tr > th.control {
	position: relative;
	cursor: pointer;
	padding-left: 30px;
}
table.dataTable.dtr-column > tbody tr.parent td.control:before,
table.dataTable.dtr-column > tbody tr.parent th.control:before {
	font-family: 'fontawesome';
	content: '\f056';
	color: #d33333;
}
table.dataTable > tbody > tr.child {
	padding: 0.5em 1em;
}
table.dataTable > tbody > tr.child:hover {
	background: transparent !important;
}
table.dataTable > tbody > tr.child ul.dtr-details {
	display: inline-block;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details li {
	border-bottom: 1px solid #efefef;
	padding: 0.5em 0;
}
table.dataTable > tbody > tr.child ul.dtr-details li:first-child {
	padding-top: 0;
}
table.dataTable > tbody > tr.child ul.dtr-details li:last-child {
	border-bottom: none;
}
table.dataTable > tbody > tr.child span.dtr-title {
	display: inline-block;
	min-width: 75px;
	font-weight: bold;
}

/* DataTables search (filter) styles */
.dataTables_filter {
	margin-bottom: 1rem;
}

/* DataTables pagination styles */
.dt-right-pagination .dataTables_length label {
	float: right;
	margin-bottom: 1rem;
}
.dt-right-pagination .dataTables_paginate {
	float: right;
}
.dt-right-pagination .dataTables_length {
	float: right;
	margin-right: 1rem;
}
.dt-right-pagination .dt-buttons {
	float: left;
}

/*
	TODO: the following styles are in lieu of the dataTables.bootstrap.js renderer shown here: https://datatables.net/examples/styling/bootstrap.html
	Consider adding that renderer and removing these styles.  Note that the bootstrap pagination styles
	will need to be added (be sure to use bootstrap v3) to generalTemplate2.0.css at that time.  These approximate what those do, but for the vanilla
	DT markup; the renderer will generate markup amenable to the bootstrap styles.
*/
.dataTables_paginate > a:hover,
.dataTables_paginate > span > a:hover {
	cursor: pointer;
	z-index: 2;
	color: #23527c;
	background-color: #eee;
	border-color: #ddd;
}
.dataTables_paginate > a,
.dataTables_paginate > span > a,
.dataTables_paginate > span > span.ellipsis {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: var(--color-primary);
	text-decoration: none;
	background-color: #fff;
	border: 1px solid #ddd;
}
.dataTables_paginate > a.disabled,
.dataTables_paginate > a:focus.disabled,
.dataTables_paginate > a:hover.disabled,
.dataTables_paginate > span > a.disabled,
.dataTables_paginate > span:focus > a.disabled,
.dataTables_paginate > span:hover > a.disabled {
	color: var(--color-default-dark);
	cursor: not-allowed;
	background-color: #fff;
	border-color: #ddd;
}
.dataTables_paginate > a:first-child {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.dataTables_paginate > a:last-child {
	margin-left: 0;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	border-left: none;
}
.dataTables_paginate > span > a.current,
.dataTables_paginate > span > a:focus.current,
.dataTables_paginate > span > a:hover.current {
	z-index: 3;
	color: #fff;
	cursor: default;
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}
/* END TODO pagination styles in lieu of the bootstrap renderer */

div.dtr-modal {
	position: fixed;
	box-sizing: border-box;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 100;
	padding: 10em 1em;
}
div.dtr-modal div.dtr-modal-display {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 50%;
	height: 50%;
	overflow: auto;
	margin: auto;
	z-index: 102;
	overflow: auto;
	background-color: #f5f5f7;
	border: 1px solid black;
	border-radius: 0.5em;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}
div.dtr-modal div.dtr-modal-content {
	position: relative;
	padding: 1em;
}
div.dtr-modal div.dtr-modal-close {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 22px;
	height: 22px;
	border: 1px solid #eaeaea;
	background-color: #f9f9f9;
	text-align: center;
	border-radius: 3px;
	cursor: pointer;
	z-index: 12;
}
div.dtr-modal div.dtr-modal-close:hover {
	background-color: #eaeaea;
}
div.dtr-modal div.dtr-modal-background {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 101;
	background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 767px) {
	div.dtr-modal div.dtr-modal-display {
		width: 95%;
	}
}

/* Headers */
.table thead th {
	background: #f0f0f0;
	font-weight: bold;
	vertical-align: top;
}

.rowHeader {
	font-weight:bold;
	background:#f0f0f0;
	border-right:1px solid #e9e9e9;
	border-left:1px solid #e9e9e9;
}

th.dataSort {
	cursor: pointer;
}

/* Fixed header tables */
.outerTableContainer {
	position: relative;
	/*padding-top: 27px;  This will set by Javascript */
	background: #f0f0f0;
	overflow: hidden;
}
.tableContainer {
	overflow-y: auto;
	overflow-x: auto;
	/*height: 400px;  This will set by Javascript */
	background: #fff;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
}
.tableContainer>.table {
	width:100%;
	border-spacing: 0;
	border-top: none;
	margin-bottom: 0;
}
.tableContainer>.table:first-of-type>tbody tr:first-child td {
	border-top: none;
}
.tableContainer>.table:first-of-type>thead th {
	height: 0;
	line-height: 0;
	color: transparent;
	border: none;
	white-space: nowrap;
	padding-top: 0;
	padding-bottom: 0;
}
.tableContainer>.table:first-of-type>thead th>:not(.altHeader) {
	display: none;
}
.tableContainer>.table:first-of-type>thead th .altHeader {
	position: absolute;
	background: transparent;
	padding: .25em 0;
	/*color: black; This will set by Javascript */
	top: 0;
	line-height: normal;
	width: 100%;
	padding-left: 8px;
}
.tableContainer>.table:first-of-type>thead th:first-child .altHeader {
	border: none;
}
.tableContainer>.table:first-of-type>thead .dataSort {
	padding-right: 1.25em;
}
.childSelected table {
	background-color: #fff;
}
tr[data-childOf]>td {
	padding:0px;
}
tr[data-childOf] table {
	background-color: #fff;
}

/*
	The following line is from the version of the fixedHeader plugin that was released the same day as the version of DataTables
	that we're currently using.  If we update versions, we need to update this css to match.
	https://cdn.datatables.net/fixedheader/3.1.2/css/fixedHeader.dataTables.min.css
*/
table.fixedHeader-floating{position:fixed !important;background-color:white}table.fixedHeader-floating.no-footer{border-bottom-width:0}table.fixedHeader-locked{position:absolute !important;background-color:white}@media print{table.fixedHeader-floating{display:none}}
/* with a little fix so it will play nice with our layout */
table.fixedHeader-floating{z-index: 99;}

/*
 * Caveat: Since the :not() pseudo-selector does not support nested pseudo-selectors, there's no way in CSS alone
 * to exclude tbody > tr > th rows from the selection.  Hence, if you are determined to place tr > th directly in
 * your <table> tag w/o enclosing such rows in a <thead> tag, the :nth-child(even) will be off-by-one (e.g., your first
 * table row will be 'even' instead of 'odd'.  You have been warned.
 */

/* Alt Rows */
table.altRows tbody tr:nth-child(even):not(.hide) {
	background:#f6f6f6;
}

/* Selected */
tr.selected,
tr.childSelected {
	color:#111;
	background-color: #D7E9FA;
}

/* Highlight */
table.highlight > tbody > tr:hover:not(.rowselect-ignore) {
	background-color: #E5E5E5;
	cursor: pointer;
}

/* AltRows Selected */
table.altRows > tbody > tr:nth-child(even).selected,
table.altRows > tbody > tr:nth-child(even).childSelected {
	background-color: #C1D1E1;
}

/* Highlight lowers Brightness by 4% */
/* AltRows Highlight */
table.altRows.highlight > tbody > tr:nth-child(even):hover:not(.rowselect-ignore) {
	background-color: #D9D9D9;
}

/* Selected Highlight */
table.highlight > tbody > tr:hover.selected,
table.highlight > tbody > tr:hover.childSelected {
	background-color: #ABBAC7;
}

/* AltRows Selected Highlight */
table.highlight.altRows > tbody > tr:nth-child(even):hover.selected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.childSelected {
	background-color: #95A2AE;
}

/* Orion Specific styles: Plain */
tr.canceled,
tr.talkExpired,
tr.invalid {
	background-color: #ef959f;
	color: black !important;
}

tr.special {
	background-color: #e3ebde;
	color: black !important;
}

.rowselect-ignore { /* Used by tablecloth */
	opacity: 0.5;
}
.no-select { /* Used with dataTables */
	opacity: 0.5;
	cursor: not-allowed;
}

tr.concluded,
tr.talkInactive,
tr.inactive,
tr.batchPayment {
	background-color: #bbb;
}

tr.onHold,
tr.talkPending_Approval,
tr.missingInfo,
tr.warning {
	background-color: #feff8f;
}

tr.talkActive,
tr.valid {
	background-color:#D8FFA8;
}

tr.needsApproval {
	background-color: #F09000;
	color: #fff;
}

/*tableCloth rowselect cursors*/
table[data-rowselect]{
	cursor: pointer;
}

tr[data-noselect]{
	cursor: default;
}

/* Orion Specific styles: Alt */
table.altRows tbody tr.canceled:nth-child(even),
table.altRows tbody tr.talkExpired:nth-child(even),
table.altRows tbody tr.invalid:nth-child(even) {
	background-color: #D6868F;
	color: black !important;
}

table.altRows tbody tr.special:nth-child(even) {
	background-color: #D7DED2;
	color: black !important;
}

table.altRows tbody tr.concluded:nth-child(even),
table.altRows tbody tr.talkInactive:nth-child(even),
table.altRows tbody tr.inactive:nth-child(even),
table.altRows tbody tr.batchPayment:nth-child(even) {
	background-color: #e6e6e6;
}

table.altRows tbody tr.onHold:nth-child(even),
table.altRows tbody tr.talkPending_Approval:nth-child(even),
table.altRows tbody tr.warning:nth-child(even) {
	background-color: #F1F288;
}

table.altRows tbody tr.talkActive:nth-child(even),
table.altRows tbody tr.valid:nth-child(even) {
	background-color: #CDF2A0;
}

table.altRows tbody tr.needsApproval:nth-child(even) {
	background-color: #D68100;
	color: #fff;
}


/* Orion Specific styles: Highlight */
table.highlight > tbody > tr:hover.canceled,
table.highlight > tbody > tr:hover.talkExpired,
table.highlight > tbody > tr:hover.invalid {
	background-color: #BD767E;
	color: black !important;
}

table.highlight > tbody > tr:hover.special {
	background-color: #CAD1C6;
	color: black !important;
}

table.highlight > tbody > tr:hover.concluded,
table.highlight > tbody > tr:hover.talkInactive,
table.highlight > tbody > tr:hover.inactive {
	background-color: #C5C5C5;
}

table.highlight > tbody > tr:hover.onHold,
table.highlight > tbody > tr:hover.talkPending_Approval,
table.highlight > tbody > tr:hover.warning {
	background-color: #E5E581;
}

table.highlight > tbody > tr:hover.talkActive,
table.highlight > tbody > tr:hover.valid {
	background-color:#C2E597;
}

table.highlight > tbody > tr:hover.needsApproval {
	background-color: #BD7100;
	color: #fff;
}

table.highlight > tbody > tr:hover.batchPayment {
	background-color:#FCF8E9;
}

/* Orion Specific styles: Alt Highlight */
table.altRows.highlight > tbody > tr:nth-child(even):hover.canceled,
table.altRows.highlight > tbody > tr:nth-child(even):hover.talkExpired,
table.altRows.highlight > tbody > tr:nth-child(even):hover.invalid {
	background-color: #A3666D;
	color: black !important;
}

table.altRows.highlight > tbody > tr:nth-child(even):hover.special {
	background-color: #BEC5BA;
	color: black !important;
}

table.altRows.highlight > tbody > tr:nth-child(even):hover.concluded,
table.altRows.highlight > tbody > tr:nth-child(even):hover.talkInactive,
table.altRows.highlight > tbody > tr:nth-child(even):hover.inactive {
	background-color: #B9B9B9;
}

table.altRows.highlight > tbody > tr:nth-child(even):hover.onHold,
table.altRows.highlight > tbody > tr:nth-child(even):hover.talkPending_Approval,
table.altRows.highlight > tbody > tr:nth-child(even):hover.warning {
	background-color: #D8D97A;
}

table.altRows.highlight > tbody > tr:nth-child(even):hover.talkActive,
table.altRows.highlight > tbody > tr:nth-child(even):hover.valid {
	background-color:#B8D98F;
}

table.altRows.highlight > tbody > tr:nth-child(even):hover.needsApproval {
	background-color: #A36200;
	color: #fff;
}

table.altRows.highlight > tbody > tr:nth-child(even):hover.batchPayment {
	background-color:#FCF8E9;
}

/* Orion Specific styles: Selected */
tr.canceled.selected,
tr.talkExpired.selected,
tr.invalid.selected,
tr.canceled.childSelected,
tr.talkExpired.childSelected,
tr.invalid.childSelected {
	background-color: #F2495C;
	color: black !important;
}

tr.special.selected,
tr.special.childSelected {
	background-color: #B9BFB5;
	color: black !important;
}

tr.concluded.selected,
tr.talkInactive.selected,
tr.inactive.selected,
tr.concluded.childSelected,
tr.talkInactive.childSelected,
tr.inactive.childSelected {
	background-color: #B6CAEC;
}

tr.onHold.selected,
tr.missingInfo.selected,
tr.talkPending_Approval.selected,
tr.warning.selected,
tr.onHold.childSelected,
tr.talkPending_Approval.childSelected,
tr.warning.childSelected {
	background-color: #EDDE09;
}

tr.talkActive.selected,
tr.valid.selected,
tr.talkActive.childSelected,
tr.valid.childSelected {
	background-color:#a0df7d;
}

tr.needsApproval.selected,
tr.needsApproval.childSelected {
	background-color:#FF5D00;
	color: #fff;
}

tr.batchPayment.selected,
tr.batchPayment.childSelected {
	background-color:#FFFF99;
}

/* Orion Specific styles: Alt Selected */
table.altRows tbody tr:nth-child(even).canceled.selected,
table.altRows tbody tr:nth-child(even).talkExpired.selected,
table.altRows tbody tr:nth-child(even).invalid.selected,
table.altRows tbody tr:nth-child(even).canceled.childSelected,
table.altRows tbody tr:nth-child(even).talkExpired.childSelected,
table.altRows tbody tr:nth-child(even).invalid.childSelected {
	background-color: #D94152;
	color: black !important;
}

table.altRows tbody tr:nth-child(even).special.selected,
table.altRows tbody tr:nth-child(even).special.childSelected {
	background-color: #A1A69D;
	color: black !important;
}

table.altRows tbody tr:nth-child(even).concluded.selected,
table.altRows tbody tr:nth-child(even).talkInactive.selected,
table.altRows tbody tr:nth-child(even).inactive.selected,
table.altRows tbody tr:nth-child(even).concluded.childSelected,
table.altRows tbody tr:nth-child(even).talkInactive.childSelected,
table.altRows tbody tr:nth-child(even).inactive.childSelected {
	background-color: #A3B4D3;
}

table.altRows tbody tr:nth-child(even).onHold.selected,
table.altRows tbody tr:nth-child(even).talkPending_Approval.selected,
table.altRows tbody tr:nth-child(even).warning.selected
table.altRows tbody tr:nth-child(even).onHold.childSelected,
table.altRows tbody tr:nth-child(even).talkPending_Approval.childSelected,
table.altRows tbody tr:nth-child(even).warning.childSelected {
	background-color: #D4C608;
}

table.altRows tbody tr:nth-child(even).talkActive.selected,
table.altRows tbody tr:nth-child(even).valid.selected
table.altRows tbody tr:nth-child(even).talkActive.childSelected,
table.altRows tbody tr:nth-child(even).valid.childSelected {
	background-color:#8EC66F;
}

table.altRows tbody tr:nth-child(even).needsApproval.selected
table.altRows tbody tr:nth-child(even).needsApproval.childSelected {
	background-color:#E55400;
	color: #fff;
}

table.altRows tbody tr:nth-child(even).batchPayment.selected
table.altRows tbody tr:nth-child(even).batchPayment.childSelected {
	background-color:#E5E58A;
}

/* Orion Specific styles: Highlight Selected */
table.highlight > tbody > tr:hover.canceled.selected,
table.highlight > tbody > tr:hover.talkExpired.selected,
table.highlight > tbody > tr:hover.invalid.selected
table.highlight > tbody > tr:hover.canceled.childSelected,
table.highlight > tbody > tr:hover.talkExpired.childSelected,
table.highlight > tbody > tr:hover.invalid.childSelected {
	background-color: #C03A49;
	color: black !important;
}

table.highlight > tbody > tr:hover.special.selected
table.highlight > tbody > tr:hover.special.childSelected {
	background-color: #888D85;
	color: black !important;
}

table.highlight > tbody > tr:hover.concluded.selected,
table.highlight > tbody > tr:hover.talkInactive.selected,
table.highlight > tbody > tr:hover.inactive.selected
table.highlight > tbody > tr:hover.concluded.childSelected,
table.highlight > tbody > tr:hover.talkInactive.childSelected,
table.highlight > tbody > tr:hover.inactive.childSelected {
	background-color: #8F9FBA;
}

table.highlight > tbody > tr:hover.onHold.selected,
table.highlight > tbody > tr:hover.talkPending_Approval.selected,
table.highlight > tbody > tr:hover.warning.selected
table.highlight > tbody > tr:hover.onHold.childSelected,
table.highlight > tbody > tr:hover.talkPending_Approval.childSelected,
table.highlight > tbody > tr:hover.warning.childSelected {
	background-color: #BAAE07;
}

table.highlight > tbody > tr:hover.talkActive.selected,
table.highlight > tbody > tr:hover.valid.selected
table.highlight > tbody > tr:hover.talkActive.childSelected,
table.highlight > tbody > tr:hover.valid.childSelected {
	background-color:#7CAD61;
}

table.highlight > tbody > tr:hover.needsApproval.selected
table.highlight > tbody > tr:hover.needsApproval.childSelected {
	background-color:#CC4B00;
	color: #fff;
}

table.highlight > tbody > tr:hover.batchPayment.selected
table.highlight > tbody > tr:hover.batchPayment.childSelected {
	background-color:#CCCC7A;
}

/* Orion Specific styles: Alt Highlight Selected */
table.highlight.altRows > tbody > tr:nth-child(even):hover.canceled.selected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.talkExpired.selected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.invalid.selected
table.highlight.altRows > tbody > tr:nth-child(even):hover.canceled.childSelected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.talkExpired.childSelected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.invalid.childSelected {
	background-color: #A6323F;
	color: black !important;
}

table.highlight.altRows > tbody > tr:nth-child(even):hover.special.selected
table.highlight.altRows > tbody > tr:nth-child(even):hover.special.childSelected {
	background-color: #70736D;
	color: black !important;
}

table.highlight.altRows > tbody > tr:nth-child(even):hover.concluded.selected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.talkInactive.selected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.inactive.selected
table.highlight.altRows > tbody > tr:nth-child(even):hover.concluded.childSelected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.talkInactive.childSelected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.inactive.childSelected {
	background-color: #7B89A0;
}

table.highlight.altRows > tbody > tr:nth-child(even):hover.onHold.selected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.talkPending_Approval.selected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.warning.selected
table.highlight.altRows > tbody > tr:nth-child(even):hover.onHold.childSelected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.talkPending_Approval.childSelected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.warning.childSelected {
	background-color: #A19606;
}

table.highlight.altRows > tbody > tr:nth-child(even):hover.talkActive.selected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.valid.selected
table.highlight.altRows > tbody > tr:nth-child(even):hover.talkActive.childSelected,
table.highlight.altRows > tbody > tr:nth-child(even):hover.valid.childSelected {
	background-color:#6A9353;
}

table.highlight.altRows > tbody > tr:nth-child(even):hover.needsApproval.selected
table.highlight.altRows > tbody > tr:nth-child(even):hover.needsApproval.childSelected {
	background-color:#B24100;
	color: #fff;
}

table.highlight.altRows > tbody > tr:nth-child(even):hover.batchPayment.selected
table.highlight.altRows > tbody > tr:nth-child(even):hover.batchPayment.childSelected {
	background-color:#B2B26B;
}

/* mini-cart (since that's in the COM template rather than in Orion proper */
.cart-icon {
	font-family: 'fontawesome';
	color: white;
	font-size: 20px;
	margin-top: 7px;
}

/* End of Orion Specific styles */

tbody tr.selected a { text-decoration:none; border-bottom:dotted 1px #69A; }

tbody tr.attention {
	background: #ffa;
}
table .moneyColumn {
	text-align: right;
	white-space: nowrap;
}
.negativeMoneyAmount,
.text-danger
{
	color: red;
}

/*
 * Buttons
 * Button styles modified from original:
 * https://github.com/twitter/bootstrap/blob/16eccc43d9fa6317818b5d1621d0477150214488/LICENSE
 * (note that the byu template provides .btn and .btn-* - here we merely style non-classed inputs to match)
 * Note that when all browsers we support support the :not() selector, we may
 * remove the '.alert a.btn' selectors here and use :not(.btn) above for the
 * non-button links and combine the separate border styles back in with the main
 * selectors
 */

.btn {
	white-space: nowrap;
}

.btn.allowWrap {
	white-space: normal;
}

input[type=submit],
input[type=button],
input[type=reset],
button,
.ui-dialog-buttonset .ui-button,
.btn:not(.btn-mini):not(.btn-large) {
	padding:7px 12px 6px;
}
input[type=submit],
input[type=button],
input[type=reset],
button {
	margin-bottom: 0;
}
input[type=submit]:not(.hide),
input[type=button]:not(.hide),
input[type=reset]:not(.hide),
button:not(.hide),
.ui-dialog-buttonset .ui-button:not(.hide) {
	display: inline-block;
	*display:inline;
}
input[type=submit],
input[type=button],
input[type=reset],
button,
.ui-dialog-buttonset .ui-button,
button.ui-datepicker-close.ui-state-default.ui-priority-primary.ui-corner-all {
	*zoom:1;
	font-size:15px;
	line-height:20px;
	text-align: center;
	vertical-align:middle;
	cursor:pointer;
	color:#333;
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
	background-color: #f5f5f5;
	background-image:-moz-linear-gradient(top, #fff, #e6e6e6);
	background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fff), to(#e6e6e6));
	background-image:-webkit-linear-gradient(top, #fff, #e6e6e6);
	background-image:-o-linear-gradient(top, #fff, #e6e6e6);
	background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);
	background-repeat: repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFE6E6E6', GradientType=0);
	border-color:#e6e6e6 #e6e6e6 #bfbfbf;
	border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	*background-color:#e6e6e6;
	filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);
	border:1px solid #ccc;
	*border:0;
	border-bottom-color:#b3b3b3;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	*margin-left:.3em;
	-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05)
}
.ms-options-wrap > button {
	filter: none;
	background: #eee;
}
.ui-dialog-buttonset .ui-button.btn-danger {
	color:#fff;
	text-shadow:0 -1px 0 rgba(0,0,0,0.25);
	background-color:#b71e1e;
	background-image:-moz-linear-gradient(top, #c33, #900);
	background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#c33), to(#900));
	background-image:-webkit-linear-gradient(top, #c33, #900);
	background-image:-o-linear-gradient(top, #c33, #900);
	background-image:linear-gradient(to bottom, #cc3333,#990000);
	background-repeat:repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFCC3333', endColorstr='#FF990000', GradientType=0);
	border-color:#900 #900 #4d0000;
	border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
	*background-color:#900;
	filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);
}
.ui-dialog-buttonset .ui-button.btn-danger:hover,
.ui-dialog-buttonset .ui-button.btn-danger:focus,
.ui-dialog-buttonset .ui-button.btn-danger:active,
.ui-dialog-buttonset .ui-button.btn-danger.active,
.ui-dialog-buttonset .ui-button.btn-danger.disabled,
.ui-dialog-buttonset .ui-button.btn-danger[disabled] {
		color:#fff;
		background-color:#900;
		*background-color:maroon}.btn-danger:active,.btn-danger.active{background-color:#600 \9;
}
input[type=submit],
input[type=button],
input[type=reset],
button,
.ui-dialog-buttonset .ui-button {
	border-color: #e6e6e6 #e6e6e6 #bfbfbf;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
	border: 1px solid #cccccc;
	border-bottom-color: #b3b3b3;
}
p > input[type=submit],
p > input[type=button],
p > button {
	vertical-align:baseline;
}
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,
button:hover,
.ui-dialog-buttonset .ui-button:hover,
input[type=submit]:active,
input[type=button]:active,
input[type=reset]:active,
button:active,
.ui-dialog-buttonset .ui-button:active,
input[type=submit].disabled,
input[type=button].disabled,
input[type=reset].disabled,
button.disabled,
.ui-dialog-buttonset .ui-button.disabled,
input[type=submit][disabled],
input[type=button][disabled],
input[type=reset][disabled],
button[disabled],
.ui-dialog-buttonset .ui-button[disabled] {
	background-color: #e6e6e6;
}
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover,
button:hover,
.ui-dialog-buttonset .ui-button:hover {
	color: #333333;
	text-decoration: none;
	background-color: #e6e6e6;
	background-position: 0 -15px;
	-webkit-transition: background-position 0.1s linear;
	-moz-transition: background-position 0.1s linear;
	-ms-transition: background-position 0.1s linear;
	-o-transition: background-position 0.1s linear;
	transition: background-position 0.1s linear;
}
input[type=submit]:focus,
input[type=button]:focus,
button:focus,
.ui-dialog-buttonset .ui-button:focus {
	outline: thin dotted #333;
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}
input[type=submit].active,
input[type=button].active,
button.active,
.ui-dialog-buttonset .ui-button.active,
input[type=submit]:active,
input[type=button]:active,
button:active,
.ui-dialog-buttonset .ui-button:active {
	background-image: none;
	-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
	background-color: #e6e6e6;
	outline: 0;
}
input[type=submit].active,
input[type=button].active,
button.active,
.ui-dialog-buttonset .ui-button.active,
input[type=submit]:active,
input[type=button]:active,
button:active,
.ui-dialog-buttonset .ui-button:active {
	background-color: #d9d9d9;
}
input[type=submit].disabled,
input[type=button].disabled,
button.disabled,
.ui-dialog-buttonset .ui-button.disabled,
input[type=submit][disabled],
input[type=button][disabled],
button[disabled],
.ui-dialog-buttonset .ui-button[disabled] {
	cursor: default;
	background-image: none;
	background-color: #e6e6e6;
	opacity: 0.65;
	filter: alpha(opacity=65);
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.dropdown-menu > li > a { /* button menu */
	padding-top: 6px;
}
#search-container a.btn-primary {
	background-color: #4777A8;
	background-image: -moz-linear-gradient(top, #628cb6, var(--color-primary));
	background-image: -ms-linear-gradient(top, #628cb6, var(--color-primary));
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#628cb6), to(var(--color-primary)));
	background-image: -webkit-linear-gradient(top, #628cb6 0%, var(--color-primary) 100%);
	background-image: -o-linear-gradient(top, #628cb6, var(--color-primary));
	background-image: linear-gradient(top, #628cb6, var(--color-primary));
	background-repeat: repeat-x;
}
#search-container a.btn-primary {
	border-color: var(--color-primary) var(--color-primary) #003580;
	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}
button.ui-datepicker-close.ui-state-default.ui-priority-primary.ui-corner-all,
.ui-dialog-buttonset .ui-button.btn-primary
{
	color:#fff;
	text-shadow:0 -1px 0 rgba(0,0,0,0.25);
	background-color:#25588b;
	background-image:-moz-linear-gradient(top, var(--color-primary), #147);
	background-image:-webkit-gradient(linear, 0 0, 0 100%, from(var(--color-primary)), to(#147));
	background-image:-webkit-linear-gradient(top, var(--color-primary), #147);
	background-image:-o-linear-gradient(top, var(--color-primary), #147);
	background-image:linear-gradient(to bottom, #336699,#114477);
	background-repeat:repeat-x;
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF336699', endColorstr='#FF114477', GradientType=0);
	border-color:#147 #147 #071e34;
	border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
	*background-color:#147;
	filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)
}
.ui-dialog-buttonset .ui-button.btn-primary:hover {
	background-color: #147;
}
/* arrow in button */
.generatedcontent .btn.btn-arrow-right {
	padding-right: 24px;
	position: relative;
}
.generatedcontent .btn.btn-arrow-right:after {
	font-family: 'fontawesome';
	content: '\F0DA';
	position: absolute;
	top: 5px;
	right: 8px;
	font-size:22px;
}
.generatedcontent .btn.btn-arrow-left {
	padding-left: 24px;
	position: relative;
}
.generatedcontent .btn.btn-arrow-left:before {
	font-family: 'fontawesome';
	content: '\F0D9';
	position: absolute;
	top: 5px;
	left: 8px;
	font-size:22px;
}
.generatedcontent .btn.btn-arrow-down {
	padding-left: 24px;
	position: relative;
}
.generatedcontent .btn.btn-arrow-down:before {
	content: '\25be';
	position: absolute;
	top: 3px;
	left: 8px;
	font-size:22px;
}
.generatedcontent .btn.btn-arrow-up {
	padding-left: 24px;
	position: relative;
}
.generatedcontent .btn.btn-arrow-up:before {
	content: '\25b4';
	position: absolute;
	top: 3px;
	left: 8px;
	font-size:22px;
}

/* wide arrow layout */
.generatedcontent .btn.btn-wide.btn-arrow-right {
	padding-right: 34px;
}
.generatedcontent .btn.btn-wide.btn-arrow-right:after {
	right:18px;
}
.generatedcontent .btn.btn-wide.btn-arrow-left {
	padding-left: 42px;
}
.generatedcontent .btn.btn-wide.btn-arrow-left:before {
	left:18px;
}
.generatedcontent .btn.btn-wide.btn-large.btn-arrow-right {
	padding-right: 48px;
}
.generatedcontent .btn.btn-wide.btn-large.btn-arrow-right:after {
	right:28px;
	top:.45em;
	font-size:26px;
}
.generatedcontent .btn.btn-wide.btn-large.btn-arrow-left {
	padding-left: 48px;
}
.generatedcontent .btn.btn-wide.btn-large.btn-arrow-left:before {
	left:28px;
	top:.45em;
	font-size:26px;
}
.generatedcontent .btn.btn-wide.btn-small.btn-arrow-right {
	padding-right: 28px;
}
.generatedcontent .btn.btn-wide.btn-small.btn-arrow-right:after {
	right:14px;
	top:4px;
	font-size:20px;
}
.generatedcontent .btn.btn-wide.btn-small.btn-arrow-left {
	padding-left: 28px;
}
.generatedcontent .btn.btn-wide.btn-small.btn-arrow-left:before {
	left:14px;
	top:4px;
	font-size:20px;
}
.generatedcontent .btn.btn-wide.btn-mini.btn-arrow-right {
	padding-right: 20px;
}
.generatedcontent .btn.btn-wide.btn-mini.btn-arrow-right:after {
	right:10px;
	font-size: 15px;
}
.generatedcontent .btn.btn-wide.btn-mini.btn-arrow-left {
	padding-left: 20px;
}
.generatedcontent .btn.btn-wide.btn-mini.btn-arrow-left:before {
	left:10px;
	font-size: 15px;
}
/* color */
.generatedcontent .btn.btn-arrow-right:after,
.generatedcontent .btn.btn-arrow-left:before {
	color: var(--color-default-dark);
	color: rgba(0,0,0,0.6);
}
.generatedcontent .btn.btn-primary.btn-arrow-right:after,
.generatedcontent .btn.btn-primary.btn-arrow-left:before,
.generatedcontent .btn.btn-warning.btn-arrow-right:after,
.generatedcontent .btn.btn-danger.btn-arrow-left:before,
.generatedcontent .btn.btn-danger.btn-arrow-right:after,
.generatedcontent .btn.btn-danger.btn-arrow-left:before,
.generatedcontent .btn.btn-success.btn-arrow-right:after,
.generatedcontent .btn.btn-success.btn-arrow-left:before,
.generatedcontent .btn.btn-info.btn-arrow-right:after,
.generatedcontent .btn.btn-info.btn-arrow-left:before,
.generatedcontent .btn.btn-inverse.btn-arrow-right:after,
.generatedcontent .btn.btn-inverse.btn-arrow-left:before {
	color: #fff;
	color: rgba(255,255,255,0.8);
}

.btn-group {
	font-size: 15px;
}
.btn-group > .btn {
	float: left;
}

/*
 * Multiselect plugin
 */
.ms-options-wrap > .ms-options > ul label {
	padding-left: 4px !important;
	display: flex !important;
	align-items: center;
	gap: 8px;
}
.ms-options-wrap > .ms-options > ul input[type="checkbox"] {
	position: relative !important;
	left: unset !important;
	top: unset !important;
	margin-right: 0 !important;
}
.ms-options-wrap > .ms-options .ms-selectall {
	text-transform: none !important;
}
.ms-options-wrap > button:focus, .ms-options-wrap > button {
	font-size: inherit !important;
}
.ms-options-wrap > button:focus, .ms-options-wrap > button {
	white-space: unset !important;
}

 /*
 * Tablesorter plugin
 */
.headerSortUp {
	background-image: url(/common/images/sortAsc.png);
	background-position: right center;
	background-repeat:no-repeat;
}

.headerSortDown {
	background-image: url(/common/images/sortDesc.png);
	background-position: right center;
	background-repeat:no-repeat;
}

/*
 * Application styles
 * Specific elements in this application
 */

/* Status Message Area */
#statusMessage {
	float:left;
	margin-right:2.75em;
}
#statusMessage, #statusMessage a {
	color:white;
}
.noscript-message {color: #e00; font-size: 16px;}
.server-name {color: orange;}
#search-container .btn {
	border: 0;
	padding:4px 28px;
	font-weight: bold;
}

#logo {
	color: #fff;
}

/* Mobile Styles */
#parentLess {
	display: none;
	white-space: nowrap;
}

/*
 * Registration styles
 */
.categorySelect, .searchBox {
	min-width: 200px;
	margin: 0 5px;
	height: 30px;
}
div.programList { /* deprecated (still in use in IS, but won't be eventually).  Also, this style is more specific than COM and belongs in the orion stylesheet rather than in general.  as it stands it's now no longer used on CE as of visual cart. */
	text-align: left;
	margin: 5px 5px 25px;
	min-width: 200px;
	width: 400px;
	float:left;
	clear:left;
}
div.categoryHeader {
	color: #666;
	font-size: 15px;
	padding: 12px 0px 4px;
}
div.categoryItem {
	margin-left: 5px;
}
div.regBox {
	padding: 5px;
}
#content.fullWidth {
	margin: 0px;
	width: 96%;
	max-width: 96%;
	padding: 1em 2% 2em;
}
#content.threeQuarterWidth {
	width: auto;
	max-width: none;
	padding: 1em 2% 2em;
}
.rotator {
	-webkit-animation:spin 1.5s linear infinite;
	animation:spin 1.5s linear infinite;
}
button .rotator {
	vertical-align: bottom;
}
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

.btn .rotator {
	height: 16px;
	width: 16px;
	display: inline-block;
	vertical-align: text-bottom;
}

.dialogText div:first-child {
	display: inline-table
}
.dialogText>div>* {
	display: table-cell;
	vertical-align: middle;
}
.waitingDialog .rotator {
	float: left;
	margin-right: 10px;
}
.ui-dialog.confirmDialog {
	max-width: 500px;
}

.tabWaitingOverlay {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background-color: rgba(255,255,255,.5);
}
.tabWaitingOverlay img {
	margin-top: 8px;
	margin-right: 8px;
	float:right;
}
.ui-icon-fix {
	position: absolute;
	top: 25%;
	bottom: 0px;
	right: 0px;
}
/*
 *  The following styles are responsive styles that allow our site to work on most devices.
 *  Please be sure to update anything here that might need changing as you add styles above.
 */

/* General Fixes to the new BYU Template 2.0 */
body {
	overflow: visible;
}
label.nowrap {
	white-space: nowrap;
}
p, pre {
	margin: 10px 0;
}
#parentLess {
	display: inherit;
}
#parent {
	display: none !important;
}
#logo .parentlink, #byu-bar .parentlink {
	text-transform: none;
}
a.btn.sign-in.login, a.btn.sign-in.login:hover {
	border-radius: 4px;
	padding: 4px 10px;
	font-weight: normal;
	border: none;
	margin:0px;
	background-color:#147;
	cursor:pointer;
}
.sign-in {
	position: absolute;
	top: -5.25em;
	right: 3%;
}
#search-container {
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	background: none !important;
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
	height: 34px;
}
#search-menu {
	overflow: visible;
}
h1 {
	margin: 10px 0;
}
#logo h2, #byu-bar h2 {
	margin: 0;
}
footer {
	font-size: 12px;
}
#page-footer #footer-bottom a {
	display: inline-block;
	text-indent: 0;
}
#statusMessage {
	display: none;
}
div.boxMenuContainer {
	width: auto;
	margin: 0px auto;
}
.catalogInstruction {
	margin-left:0px;
}
#authForm {
	max-width: 300px;
}
#primary-nav hr {
	margin: 6px 0;
}
#primary-nav li .noClick, #primary-nav li .noClick:hover {
	cursor: text;
	background-color: transparent !important;
	margin-left: -21px;
	font-style: italic;
	color: #fff; /* IE */
	filter:alpha(opacity=65); /* IE */
	color: rgba(255,255,255,.65) !important;
}
#page-footer #footer-bottom {
	padding: .5em 9% 1px;
}

/* These are styles for adding a hider. */
.hider:not(.hide) {
	margin-bottom: .5em;
	display: inline-block;
	width: 100%;
	border: 1px #ccc solid;
	border-radius: 4px;
	margin-top: 2px;
}
.hider:hover {
	border: 1px solid #aec4d5;
}
.hiderToggle {
	width: 100%;
	display: inline-block;
	cursor: pointer;
	/*margin-top: 2px;*/
	padding: .5em .5em .5em .7em;
	min-height: 0;
	box-sizing: border-box;
	background: #f6f6f6;
	color: var(--color-primary-light);
	position: relative;
	padding-left: 2.2em;
}
.hiderToggle.hiderActive {
	background: #fff;
}
.hiderToggle:hover {
	background: #cee4f5;
	color: var(--color-primary);
}
.hiderToggle.hiderActive:hover {
	background: #fff;
	color: var(--color-primary-light);
}
.hiderToggle .helperButton {
	position: absolute;
	left: .5em;
	top: 50%;
	margin-top: -8px;
}
.hideContent {
	border-top: 1px #ccc solid;
	padding: 1em;
}
.hideContent.hideContentHidden {
	display:none;
}

/* jQuery UI Tabs styles */
.ui-tabs.ui-tabs-pill > .ui-tabs-nav.ui-widget-header {
	padding: 1rem 0 1.4rem;
}
.ui-tabs-pill-stacked > .ui-tabs-nav.hideWhenMobile,
.ui-tabs-stacked > .ui-tabs-nav.hideWhenMobile,
.hideWhenMobile {
	display: none;
}
.ui-tabs-pill-stacked.ui-style-link > .ui-tabs-nav > li.ui-tabs-active {
	background: none;
}
.ui-tabs-pill-stacked.ui-style-link > .ui-tabs-nav > li.ui-tabs-active > a.ui-tabs-anchor {
	color: #428bca;
}
.ui-tabs-pill-stacked.ui-style-link > .ui-tabs-nav > li.ui-tabs-active a:after {
	content: '\f040'; /* fa-chevron-right */
	font-family: 'fontawesome';
	margin-left: 0.4rem;
}
.ui-tabs-pill-stacked.ui-style-link > .tabPanes.ui-accordion > .ui-tabs-panel {
	padding-top: 1rem;
}

#page-footer #footer-bottom {
	text-align: center;
}
#feedbackPopupPage {
	min-width: 40%;
	max-width: 85%;
	overflow:auto;
	max-height: 90%
}
#feedbackPopupPage > div {
	margin:auto;
	width:150px;
	font-style:italic;
	height:200px;
	line-height:200px;
}
#contactFormTable input, #contactFormTable select, #contactFormTable textarea {
	width: 100%;
}
#footer-bottom, #page-footer {
	border-top: 0px;
}
#page-footer {
	z-index: 1;
}
.ui-tabs div > h2:first-child {
	margin-top: 0px;
}
.stayTogether {
	white-space: nowrap;
}
.tableCollapse th:not(.collapseShow):not(.ignoreCollapse),
.tableCollapse td:not(.collapseShowValue):not(.ignoreCollapse),
.tableCollapse .collapseShowContent {
	display: none;
}
.tableCollapse .collapseShowClick {
	cursor: pointer;
	display: inline-block;
	padding: 8px;
}
.tableCollapse .collapseShowContent {
	padding: 8px;
}
.collapseShowClick {
	width: 100%;
}
.tableCollapse .collapseShowClick .helperButton {
	margin-right: 0.5em;
	font-weight: bold;
	line-height: 1.5em
}

/* Tables */
.table th, .table td {
	padding: .25em .5em;
}

td {
	border-right-color: #e0e0e0;
	border-left-color: #e0e0e0;
}

table, td, th {
	border-color: #dadada;
}

/* Fix responsive.css line 52 */
@media (min-width: 60em){
	.simple-body #header-top {
		height: 39.25px;
	}
}

/* min-width: 600 */
@media print, (min-width: 600px){
	#content {
		padding: 1.6em 4em 2em;
		min-height: 300px;
	}
	#primary-nav li.showWhenMobile,
	#secondary-nav li.showWhenMobile,
	.ui-accordion-header.showWhenMobile,
	.showWhenMobile {
		display: block;
	}
	.ui-tabs-pill-stacked > .ui-tabs-nav.hideWhenMobile,
	.ui-tabs-stacked > .ui-tabs-nav.hideWhenMobile,
	.hideWhenMobile {
		display: none;
	}
	#statusMessage {
		display: block;
	}
	.catalogInstruction {
		float:left;
		padding:12px;
		margin-left:70px;
		font-weight:bold;
	}
	#search-menu {
		padding-left: 0px;
	}
	#statusMessage {
		width: 100%;
		text-align: center;
		line-height: 34px;
	}
	#feedbackPopupPage {
		min-width: 40%;
		max-width: 50%;
	}
	#contactFormTable input, #contactFormTable select, #contactFormTable textarea {
		max-width: 300px;
	}
	/* Forms */
	.formElement input[type="text"]:not(.ignoreWidth),
	.formElement input[type="password"]:not(.ignoreWidth),
	.formElement input[type="file"]:not(.ignoreWidth),
	.formElement select:not(.ignoreWidth),
	.formElement textarea:not(.ignoreWidth),
	.formElement .formGroup:not(.ignoreWidth),
	.twoColumn .formElement input[type="text"]:not(.ignoreWidth),
	.twoColumn .formElement input[type="password"]:not(.ignoreWidth),
	.twoColumn .formElement input[type="file"]:not(.ignoreWidth),
	.twoColumn .formElement select:not(.ignoreWidth),
	.twoColumn .formElement textarea:not(.ignoreWidth),
	.twoColumn .formElement .formGroup:not(.ignoreWidth) {
		width: 50%;
	}

	.formElement label+.alert {
		width: 68%;
		display: inline-block;
	}

	span.indicatesRequired {
		background-color: #e5f2ff !important;
		border: 1px solid #aaa;
		padding: 1px;
		width: 1.25rem;
		height: 1rem;
		display: inline-block;
		border-radius: 2px;
	}
	.requiredFieldHint {
		font-size: 0.9rem;
		color: var(--color-default);
		font-style: italic;
		font-size: 0.9rem;
	}

	.stackedLabel .formElement input[type="text"]:not(.ignoreWidth),
	.stackedLabel .formElement input[type="password"]:not(.ignoreWidth),
	.stackedLabel .formElement input[type="file"]:not(.ignoreWidth),
	.stackedLabel .formElement select:not(.ignoreWidth),
	.stackedLabel .formElement textarea:not(.ignoreWidth),
	.stackedLabel .formElement .formGroup:not(.ignoreWidth),
	.stackedLabel .twoColumn .formElement input[type="text"]:not(.ignoreWidth),
	.stackedLabel .twoColumn .formElement input[type="password"]:not(.ignoreWidth),
	.stackedLabel .twoColumn .formElement input[type="file"]:not(.ignoreWidth),
	.stackedLabel .twoColumn .formElement select:not(.ignoreWidth),
	.stackedLabel .twoColumn .formElement textarea:not(.ignoreWidth),
	.stackedLabel .twoColumn .formElement .formGroup:not(.ignoreWidth) {
		width: 100%;
	}

	.formElement>span:first-child,
	.formElement>label:first-child,
	.twoColumn .formElement>span:first-child,
	.twoColumn .formElement>label:first-child {
		display: inline-block;
		width: 48%;
		font-weight: bold;
		vertical-align: top;
		padding-top: .45em;
	}
	.formElement.fullWidth textarea,
	.twoColumn .formElement.fullWidth textarea,
	.formElement.fullWidth select,
	.twoColumn .formElement.fullWidth select,
	.formElement.halfWidth textarea,
	.twoColumn .formElement.halfWidth textarea,
	.formElement.halfWidth input[type="text"],
	.twoColumn .formElement.halfWidth input[type="text"],
	.formElement.halfWidth input[type="file"],
	.twoColumn .formElement.halfWidth input[type="file"],
	.formElement.halfWidth select,
	.twoColumn .formElement.halfWidth select {
		width: 100%;
		display: block;
	}
	.ignoreWidth,
	.twoColumn .ignoreWidth {
		max-width: 50%;
	}
	.twoColumn .formElement.fullWidth input,
	.twoColumn .formElement.fullWidth select {
		max-width: 48%;
	}
	.formElement input[type="text"]:not(.ignoreWidth).dateButton{
		width: 40%;
	}

	/* Full width forms (Used in the Contact Us page)*/
	form.fullWidth .formElement input[type="text"]:not(.ignoreWidth),
	form.fullWidth .formElement input[type="password"]:not(.ignoreWidth),
	form.fullWidth .formElement input[type="file"]:not(.ignoreWidth),
	form.fullWidth .formElement select:not(.ignoreWidth),
	form.fullWidth .formElement textarea:not(.ignoreWidth),
	form.fullWidth .formElement .formGroup:not(.ignoreWidth) {
		width: 50%;
	}
	form.fullWidth .formElement>span:first-child,
	form.fullWidth .formElement>label:first-child {
		display: inline-block;
		width: 48%;
		font-weight: bold;
		vertical-align: top;
		padding-top: .45em;
	}
	form.fullWidth .formElement.fullWidth textarea,
	form.fullWidth .formElement.fullWidth select {
		width: 100%;
		display: block;
	}
	form.fullWidth .ignoreWidth {
		max-width: 100%;
	}
	form.fullWidth .formElement input[type="text"]:not(.ignoreWidth).dateButton{
		width: 40%;
	}
	.tableCollapse th:not(.collapseShow):not(.ignoreCollapse),
	.tableCollapse td:not(.collapseShowValue):not(.ignoreCollapse) {
		display: table-cell;
	}
	.tableCollapse .collapseShowValue {
		display: none;
	}
	.tableCollapse .collapseShowValue {
		cursor: auto;
	}

	/* Fixed header tables */
	.outerTableContainer {
		/*padding-top: 27px;  This will set by Javascript */
		background: none;
		overflow: auto;
	}
	.tableContainer {
		overflow-x: auto;
		height: auto;
	}
	.tableContainer>.table:first-of-type>thead th .altHeader {
		position: relative;
		padding-left: 0px;
	}
}
/* min-width: 700 This is used for Forms only right now. */
@media (min-width: 700px){
	/* Forms */
	.formElement input[type="text"]:not(.ignoreWidth),
	.formElement input[type="password"]:not(.ignoreWidth),
	.formElement input[type="file"]:not(.ignoreWidth),
	.formElement select:not(.ignoreWidth),
	.formElement textarea:not(.ignoreWidth),
	.formElement .formGroup:not(.ignoreWidth),
	.twoColumn .formElement input[type="text"]:not(.ignoreWidth),
	.twoColumn .formElement input[type="password"]:not(.ignoreWidth),
	.twoColumn .formElement input[type="file"]:not(.ignoreWidth),
	.twoColumn .formElement select:not(.ignoreWidth),
	.twoColumn .formElement textarea:not(.ignoreWidth),
	.twoColumn .formElement .formGroup:not(.ignoreWidth),
	.formElement input[type="text"]:not(.ignoreWidth).dateButton {
		width: 33%;
	}

	.wideInput .formElement input[type="text"]:not(.ignoreWidth),
	.wideInput .formElement input[type="password"]:not(.ignoreWidth),
	.wideInput .formElement input[type="file"]:not(.ignoreWidth),
	.wideInput .formElement select:not(.ignoreWidth),
	.wideInput .formElement textarea:not(.ignoreWidth),
	.wideInput .formElement .formGroup:not(.ignoreWidth),
	.wideInput .formElement input[type="text"]:not(.ignoreWidth).dateButton,
	.formElement input[type="text"]:not(.ignoreWidth).wideInput,
	.formElement input[type="password"]:not(.ignoreWidth).wideInput,
	.formElement input[type="file"]:not(.ignoreWidth).wideInput,
	.formElement select:not(.ignoreWidth).wideInput,
	.formElement textarea:not(.ignoreWidth).wideInput,
	.formElement .formGroup:not(.ignoreWidth).wideInput{
		width: 65%;
	}

	.stackedLabel .formElement input[type="text"]:not(.ignoreWidth),
	.stackedLabel .formElement input[type="password"]:not(.ignoreWidth),
	.stackedLabel .formElement input[type="file"]:not(.ignoreWidth),
	.stackedLabel .formElement select:not(.ignoreWidth),
	.stackedLabel .formElement textarea:not(.ignoreWidth),
	.stackedLabel .formElement .formGroup:not(.ignoreWidth),
	.stackedLabel .formElement input[type="text"]:not(.ignoreWidth).dateButton {
		width: 50%;
	}

	/* Dalorean case */
	.dateTimeLayout .formElement input[type="text"]:not(.ignoreWidth),
	.dateTimeLayout .formElement input[type="password"]:not(.ignoreWidth),
	.dateTimeLayout .formElement input[type="file"]:not(.ignoreWidth),
	.dateTimeLayout .formElement select:not(.ignoreWidth),
	.dateTimeLayout .formElement textarea:not(.ignoreWidth),
	.dateTimeLayout .formElement .formGroup:not(.ignoreWidth) {
		width: 40%;
	}
	/* Dalorean case */
	.dateTimeLayout .twoColumn .formElement input[type="text"]:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement input[type="password"]:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement input[type="file"]:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement select:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement textarea:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement .formGroup:not(.ignoreWidth) {
		width: 66%;
	}
	.formElement>span:first-child,
	.formElement>label:first-child,
	.twoColumn .formElement>span:first-child,
	.twoColumn .formElement>label:first-child {
		display: inline-block;
		width: 33%;
		font-weight: bold;
		vertical-align: top;
		padding-top: .45em;
	}
	.formElement.fullWidth textarea,
	.twoColumn .formElement.fullWidth textarea,
	.formElement.fullWidth select,
	.twoColumn .formElement.fullWidth select {
		width: 100%;
		display: block;
	}
	.formElement.halfWidth textarea,
	.twoColumn .formElement.halfWidth textarea,
	.formElement.halfWidth input[type="text"],
	.twoColumn .formElement.halfWidth input[type="text"],
	.formElement.halfWidth input[type="file"],
	.twoColumn .formElement.halfWidth input[type="file"],
	.formElement.halfWidth select,
	.twoColumn .formElement.halfWidth select {
		width: 66%;
		display: block;
	}
	.ignoreWidth,
	.twoColumn .ignoreWidth {
		max-width: 66%;
	}
	.twoColumn .formElement.fullWidth input,
	.twoColumn .formElement.fullWidth select {
		max-width: 33%;
	}
	.formElement .formGroup.inlineInputs:not(.ignoreWidth) {
		width: 65%;
	}
	.formElement .formGroup.inlineInputs input[type="text"]:not(.ignoreWidth),
	.formElement .formGroup.inlineInputs input[type="file"]:not(.ignoreWidth),
	.formElement .formGroup.inlineInputs select:not(.ignoreWidth) {
		width: 51%;
		display: block;
	}
	.stayTogether {
		white-space: normal;
	}
}

.layout2Column {
	float: left;
	width: 50%;
	box-sizing: border-box;
	padding-right: 20px;
}
.layout2Column + .layout2Column {
	padding-left: 20px;
	padding-right: 0;
}

/* min-width: 960 */
@media (min-width: 960px){
	/* General Fixes to the new BYU Template 2.0 */
	#main-header{
		height: 74px;
	}
	#parentLess {
		display: none !important;
	}
	#parent {
		display: inline-block !important;
	}
	#primary-nav li.showWhenMobile,
	#secondary-nav li.showWhenMobile,
	.ui-accordion-header.showWhenMobile,
	.showWhenMobile {
		display: none;
	}
	#logo h2, #byu-bar h2 {
		margin-right: 100px;
	}
	div.boxMenuContainer {
		width: 60%;
		margin: 0px auto;
	}
	body.fullWidth #bodyContent{
		padding-left: 32px;
		padding-right: 32px;
	}
	.nav-container {
		top: 38px !important;
	}
	.login {
		top: 0em;
		right: 0;
		white-space: nowrap;
	}
	#search-menu {
		width: auto;
		top: .3em;
		height: 0px;
	}
	#search-container {
		right: 70px;
		top: 3px;
	}
	#header-top a.sign-in {
		right: 0px;
	}
	#content {
		top: 0px;
	}
	#primary-nav li .noClick, #primary-nav li .noClick:hover {
		cursor: text;
		background-color: transparent !important;
		margin-left: 0px;
		font-style: inherit;
		color: #001948 !important;
	}

	#primary-nav .links .sublinks li a:before {
		font-family: 'fontawesome';
		content: '\f105';
		padding-right: 0px;
		margin-left: -12px;
		list-style-type: none;
		color: #aaa;
		position: absolute;
	}
	#primary-nav .mega .links .sublinks li a:before {
		padding-right: 0px;
		margin-left: -12px;
		color: #aaa;
		position: absolute;
	}
	#primary-nav .links .sublinks li a {
		color: var(--color-primary);
		display: inline-block;
		margin-left: 10px;
		width: 75%;
	}
	#primary-nav li.hover a, #secondary-nav li.hover a {
		color: var(--color-primary);
	}
	#statusMessage {
		line-height: inherit;
	}

	/* These are styles for adding a hider. */
	.hider {
		margin-bottom: auto;
		min-width: 136px;
	}
	.hider.mobileOnly {
		border: none;
	}
	.mobileOnly .hiderToggle {
		display: none;
	}
	.mobileOnly .helperButton, .mobileOnly .helperText {
		display: none;
	}
	.mobileOnly .hideContent,
	.hideContentHidden {
		display: inherit;
		border-top: none;
	}
	.ui-tabs-pill-stacked > .ui-tabs-nav.hideWhenMobile,
	.ui-tabs-stacked > .ui-tabs-nav.hideWhenMobile,
	.hideWhenMobile {
		display: block;
		display: initial;
	}
	th.hideWhenMobile,
	td.hideWhenMobile {
		display: table-cell;
	}
	#feedbackPopupPage {
		min-width: 40%;
		max-width: 40%;
	}
	/* Forms */
	.wideInput .formElement input[type="text"]:not(.ignoreWidth),
	.wideInput .formElement input[type="file"]:not(.ignoreWidth),
	.wideInput .formElement select:not(.ignoreWidth),
	.wideInput .formElement textarea:not(.ignoreWidth),
	.wideInput .formElement .formGroup:not(.ignoreWidth),
	.wideInput .formElement .searchPerson:not(.ignoreWidth),
	.formElement input[type="text"]:not(.ignoreWidth).wideInput,
	.formElement input[type="file"]:not(.ignoreWidth).wideInput,
	.formElement select:not(.ignoreWidth).wideInput,
	.formElement textarea:not(.ignoreWidth).wideInput,
	.formElement .formGroup:not(.ignoreWidth).wideInput,
	.formElement .searchPerson:not(.ignoreWidth).wideInput,
	.formElement > span + span.plainText {
		width: 74%;
	}

	.wideFullInput .formElement input[type="text"]:not(.ignoreWidth),
	.wideFullInput .formElement select:not(.ignoreWidth),
	.wideFullInput .formElement textarea:not(.ignoreWidth),
	.wideFullInput .formElement .formGroup:not(.ignoreWidth),
	.wideFullInput .formElement .searchPerson:not(.ignoreWidth),
	.formElement input[type="text"]:not(.ignoreWidth).wideFullInput,
	.formElement select:not(.ignoreWidth).wideFullInput,
	.formElement textarea:not(.ignoreWidth).wideFullInput,
	.formElement .formGroup:not(.ignoreWidth).wideFullInput,
	.formElement .searchPerson:not(.ignoreWidth).wideFullInput,
	body:not(.checkout) .formElement>label:first-child.wideFullInput{
		width: 90%;
	}

	.formElement input[type="text"]:not(.ignoreWidth),
	.formElement input[type="password"]:not(.ignoreWidth),
	.formElement input[type="file"]:not(.ignoreWidth),
	.formElement select:not(.ignoreWidth),
	.formElement textarea:not(.ignoreWidth),
	.formElement .formGroup:not(.ignoreWidth),
	.formElement .searchPerson:not(.ignoreWidth),
	.formElement input[type="text"]:not(.ignoreWidth).dateButton,
	.formElement > span:first-child {
		width: 30%;
	}

	.stackedLabel .formElement input[type="text"]:not(.ignoreWidth),
	.stackedLabel .formElement input[type="password"]:not(.ignoreWidth),
	.stackedLabel .formElement input[type="file"]:not(.ignoreWidth),
	.stackedLabel .formElement select:not(.ignoreWidth),
	.stackedLabel .formElement textarea:not(.ignoreWidth),
	.stackedLabel .formElement .formGroup:not(.ignoreWidth),
	.stackedLabel .formElement input[type="text"]:not(.ignoreWidth).dateButton {
		width: 42%;
	}

	/* Dalorean case */
	.dateTimeLayout .formElement input[type="text"]:not(.ignoreWidth),
	.dateTimeLayout .formElement input[type="password"]:not(.ignoreWidth),
	.dateTimeLayout .formElement input[type="file"]:not(.ignoreWidth),
	.dateTimeLayout .formElement select:not(.ignoreWidth),
	.dateTimeLayout .formElement textarea:not(.ignoreWidth),
	.dateTimeLayout .formElement .formGroup:not(.ignoreWidth) {
		width: 50%;
	}
	/* Dalorean case */
	.dateTimeLayout .formElement .formGroup:not(.ignoreWidth) select {
		width: 100%;
	}
	.dateTimeLayout .twoColumn .formElement input[type="text"]:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement input[type="password"]:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement input[type="file"]:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement select:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement textarea:not(.ignoreWidth),
	.dateTimeLayout .twoColumn .formElement .formGroup:not(.ignoreWidth) {
		width: 100%;
	}
	.twoColumn .formElement input[type="text"]:not(.ignoreWidth),
	.twoColumn .formElement input[type="password"]:not(.ignoreWidth),
	.twoColumn .formElement input[type="file"]:not(.ignoreWidth),
	.twoColumn .formElement select:not(.ignoreWidth),
	.twoColumn .formElement textarea:not(.ignoreWidth),
	.twoColumn .formElement .formGroup:not(.ignoreWidth) {
		width: 64%;
	}
	.twoColumn .formElement input[type="text"]:not(.ignoreWidth).dateButton{
		width: 38%;
	}
	.formElement>span:first-child,
	.formElement>label:first-child,
	.formElement .searchPerson,
	label.formElement.searchPerson {
		display: inline-block;
		width: 25%;
		font-weight: bold;
		vertical-align: top;
		padding-top: .45em;
	}

	.formElement.fullWidth textarea,
	.formElement.fullWidth select,
	.formElement.fullWidth .formGroup {
		width: 100%;
		display: block;
	}
	.formElement.halfWidth textarea,
	.formElement.halfWidth input[type="text"],
	.formElement.halfWidth input[type="file"],
	.formElement.halfWidth select {
		width: 50%;
		display: block;
	}
	.formElement.innerHalfWidth textarea,
	.formElement.innerHalfWidth input[type="text"],
	.formElement.innerHalfWidth input[type="file"],
	.formElement.innerHalfWidth select {
		width: 50%;
		display: inline;
	}
	.twoColumn .formElement.fullWidth textarea,
	.twoColumn .formElement.fullWidth select {
		width: 100%;
		display: block;
	}
	.birthday-picker select+select {
		margin-left: 4px;
	}
	.ignoreWidth {
		max-width: 74%;
	}
	.inlineInputs.ignoreWidth:first-child {
		max-width: 100%;
	}
	.twoColumn .ignoreWidth,
	.twoColumn .formElement>span.formGroup {
		max-width: 64%;
	}
	.twoColumn+.twoColumn {
		padding-left: 4%;
	}
	.twoColumn .twoColumn+.twoColumn {
		padding-left: 3%;
	}
	.twoColumn {
		display: inline-block;
		width: 47.5%;
		vertical-align: top;
	}
	.twoColumn .formElement>span:first-child,
	.twoColumn .formElement>label:first-child {
		width: 34%;
	}
	/* Dalorean case */
	.dateTimeLayout .twoColumn .formElement>span:first-child,
	.dateTimeLayout .twoColumn .formElement>label:first-child {
		width: 100%;
	}
	.twoColumn .formElement.fullWidth input {
		max-width: 50%;
	}
	.formElement .formGroup.inlineInputs:not(.ignoreWidth) {
		width: 60%;
	}
	.twoColumn .formElement .formGroup.inlineInputs:not(.ignoreWidth) {
		width: 64%;
	}
	.formElement .formGroup.inlineInputs input[type="text"]:not(.ignoreWidth),
	.formElement .formGroup.inlineInputs input[type="file"]:not(.ignoreWidth),
	.formElement .formGroup.inlineInputs select:not(.ignoreWidth) {
		width: 51%;
		display: inline-block;
	}
	.formElement .formGroup.inlineInputs.ignoreWidth input[type="text"]:not(.ignoreWidth),
	.formElement .formGroup.inlineInputs.ignoreWidth input[type="file"]:not(.ignoreWidth),
	.formElement .formGroup.inlineInputs.ignoreWidth select:not(.ignoreWidth) {
		width: 24.6%;
	}
	.twoColumn .formElement .formGroup.inlineInputs input[type="text"]:not(.ignoreWidth),
	.twoColumn .formElement .formGroup.inlineInputs input[type="file"]:not(.ignoreWidth),
	.twoColumn .formElement .formGroup.inlineInputs select:not(.ignoreWidth) {
		width: 100%;
	}

	/* Fixed header tables */
	.outerTableContainer {
		/*padding-top: 27px;  This will set by Javascript */
		background: #f0f0f0;
		overflow: hidden;
	}
	.tableContainer {
		overflow-x: hidden;
		/*height: 400px;  This will set by Javascript */
	}
	.tableContainer>.table:first-of-type>thead th .altHeader {
		position: absolute;
	}
	.ui-tabs .ui-tabs-nav {
		display: block;
	}
}
/* min-width: 1146 */
@media (min-width: 1146px) {
	#logo {
		padding-left: 5px;
	}
	#content.threeQuarterWidth {
		width: 75%;
		max-width: 75%;
	}
}

@media print{
	body {
		width: 8.5in;
		height: 11in;
	}
	#main-header
	{
		height:35px;
	}

	#search-menu
	{
		display:none;
	}

	#logo
	{
		display:none;
	}

	#search-menu .menu-button
	{
		display:none;
	}

	a[href]:after {
		content:none;
	}

	.mini-cart {
		display:none;
	}

	div.nav-container
	{
		width:100%;
		display:block;
		min-height:36px;
		z-index:5;
		top:0px !important;
	}

	#primary-nav>ul>li,#secondary-nav>ul>li
	{
		float:left;
		border:none;
	}

	#primary-nav a,#secondary-nav a
	{
		padding:.6em 1.2em;
	}

	#primary-nav
	{
		padding-left:2%;
		margin-top:0;
	}

	#primary-nav .sub
	{
		display:none;
	}

	div.overlayContainer {
		background: #fff !important;
		border: 1px solid gray;
	}
	/* Fixed header tables */
	.tableContainer>.table:first-of-type>thead th>:not(.altHeader) {
		display: none;
	}
	.outerTableContainer {
		/*padding-top: 27px;  This will set by Javascript */
		background: none;
		overflow: auto;
	}
	.tableContainer {
		overflow-x: auto;
		height: auto;
	}
	.tableContainer>.table:first-of-type>thead th {
		color: transparent !important;
	}
	.tableContainer>.table:first-of-type>thead th .altHeader {
		position: relative;
		padding-left: 0px;
	}

}

.simpleHTML #main-header {
	height: 37px;
}

.ui-dialog-content button.btn-mini,
.ui-widget button.btn-mini {
	font-size:11.25px;
}

.fontAwesome {
	font-family: fontawesome;
}
.sortDirection {
	font-family: fontawesome;
	font-size: .5em;
	line-height: 1em;
	vertical-align: middle;
	margin-bottom: .5em;
	display: inline-block;
	color: var(--color-primary-light);
}

/* styles for jquery-ui-timepicker-addon.js */
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
.ui-timepicker-div dl { text-align: left; }
.ui-timepicker-div dl dt { float: left; clear:left; padding: 0 0 0 5px; }
.ui-timepicker-div dl dd { margin: 0 10px 10px 40%; }
.ui-timepicker-div td { font-size: 90%; }
.ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }

.ui-timepicker-rtl{ direction: rtl; }
.ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; }
.ui-timepicker-rtl dl dt{ float: right; clear: right; }
.ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; }

.ui-timepicker-div dd {
	padding: 0;
}

.ui-datepicker-trigger:before {
	content: '\f073';
	font-family: FontAwesome;
	font-size: 14px;
}

.ui-datepicker-trigger {
	margin-left: 0.5em;
	padding: 5px 10px 6px;
}

.ui-datepicker .ui-datepicker-header { border-radius: 3px 3px 0 0; padding: .2em 0 .1em 0; }

img {
	max-width: inherit;
}

/* responsive.css line 34 put z-index 10 to #search-menu. We have to overwite it to put a datepicker on top. We'll go with the default that the library also writes inline. */
#ui-datepicker-div {
	z-index: 101 !important;
}

.ui-autocomplete {
	max-height: 100px;
	overflow-y: auto;
	overflow-x: hidden;
}

.ui-autocomplete-loading{
	background:none !important;
}

.tabOverlay {
	background: #fff;
	opacity: .5;
	filter: Alpha(Opacity=50);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.floatContainer {
	overflow: auto;
	width: 100%;
}

button.ui-datepicker-close.ui-state-default.ui-priority-primary.ui-corner-all {
	font-size: 15px;
	font-weight: normal;
}

button.ui-datepicker-current.ui-state-default.ui-priority-secondary.ui-corner-all {
	color: #333333;
	background-image: linear-gradient(to bottom, #ffffff,#e6e6e6);
	background-repeat: repeat-x;
	opacity: initial;
	font-size: 15px;
}

.ui-widget-content button.ui-datepicker-close.ui-state-default.ui-priority-primary.ui-corner-all.ui-state-hover {
	text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
	background-image: linear-gradient(to bottom, #336699,#114477);
	background-repeat: repeat-x;
	background-position: 0 -15px;
	transition: background-position 0.1s linear;
	color: #fff;
	background-color: #147;
}

.ui-widget-content button.ui-datepicker-current.ui-state-default.ui-priority-secondary.ui-corner-all.ui-state-hover {
	color: #333333;
	text-decoration: none;
	background-color: #e6e6e6;
	background-position: 0 -15px;
	transition: background-position 0.1s linear;
}

/*
 * Breadcrumb style(s)
 */
a.breadcrumbParent::after {
	content: ' \f054';
	font-family: 'fontawesome';
	font-size: smaller;
}

/*
 * Program Manager Styles
 */

.label.label-family {
	background-color: #28a745;
}

.label.label-suite {
	background-color: #848484;
}

#selectorColorSample {
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 2px;
}

/*
 * END Program Manager Styles
 */


/*
 * FontAwesome styles (v 4.3.0 css; note that BYU Template 2.0 had the 3.0.2 font files baked in.  They've been updated to the 4.3.0 versions with this css addition as well.)
 * copied from https://github.com/FortAwesome/Font-Awesome/blob/master/css/font-awesome.css
 * on 2/19/2015
 * usage: class="fa fa-*"
 */


.fa, .fas {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translate(0, 0);
}

/* makes the font 33% smaller relative to the icon container.  NOTE: .fa-sm is custom to DCE.  It's most useful in things like h1 tags */
.fa-sm {
	font-size: 0.66666666em;
	line-height: 0.45em;
	vertical-align: 30%;
}


/* makes the font 33% larger relative to the icon container */
.fa-lg {
	font-size: 1.33333333em;
	line-height: 0.75em;
	vertical-align: -15%;
}
.fa-2x {
	font-size: 2em;
}
.fa-3x {
	font-size: 3em;
}
.fa-4x {
	font-size: 4em;
}
.fa-5x {
	font-size: 5em;
}
.fa-fw {
	width: 1.28571429em;
	text-align: center;
}
.fa-ul {
	padding-left: 0;
	margin-left: 2.14285714em;
	list-style-type: none;
}
.fa-ul > li {
	position: relative;
}
.fa-li {
	position: absolute;
	left: -2.14285714em;
	width: 2.14285714em;
	top: 0.14285714em;
	text-align: center;
}
.fa-li.fa-lg {
	left: -1.85714286em;
}
.fa-border {
	padding: .2em .25em .15em;
	border: solid 0.08em #eeeeee;
	border-radius: .1em;
}
.fa-pull-left {
	float: left;
}
.fa-pull-right {
	float: right;
}
.fa.fa-pull-left,
.fas.fa-pull-left {
	margin-right: .3em;
}
.fa.fa-pull-right,
.fas.fa-pull-right {
	margin-left: .3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
	float: right;
}
.pull-left {
	float: left;
}
.fa.pull-left,
.fas.pull-left {
	margin-right: .3em;
}
.fa.pull-right,
.fas.pull-right {
	margin-left: .3em;
}
.fa-spin {
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
}
.fa-pulse {
	-webkit-animation: fa-spin 1s infinite steps(8);
	animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
@keyframes fa-spin {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}
.fa-rotate-90 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.fa-rotate-180 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}
.fa-rotate-270 {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
}
.fa-flip-horizontal {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}
.fa-flip-vertical {
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
	-webkit-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
	filter: none;
}
.fa-stack {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
}
.fa-stack-1x {
	line-height: inherit;
}
.fa-stack-2x {
	font-size: 2em;
}
.fa-inverse {
	color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
	 readers do not read off random characters that represent icons */
.fa-glass:before {
	content: "\f000";
}
.fa-music:before {
	content: "\f001";
}
.fa-search:before {
	content: "\f002";
}
.fa-envelope-o:before {
	content: "\f003";
}
.fa-heart:before {
	content: "\f004";
}
.fa-star:before {
	content: "\f005";
}
.fa-star-o:before {
	content: "\f006";
}
.fa-user:before {
	content: "\f007";
}
.fa-film:before {
	content: "\f008";
}
.fa-th-large:before {
	content: "\f009";
}
.fa-th:before {
	content: "\f00a";
}
.fa-th-list:before {
	content: "\f00b";
}
.fa-check:before {
	content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
	content: "\f00d";
}
.fa-search-plus:before {
	content: "\f00e";
}
.fa-search-minus:before {
	content: "\f010";
}
.fa-power-off:before {
	content: "\f011";
}
.fa-signal:before {
	content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
	content: "\f013";
}
.fa-trash-o:before {
	content: "\f014";
}
.fa-home:before {
	content: "\f015";
}
.fa-file-o:before {
	content: "\f016";
}
.fa-clock-o:before {
	content: "\f017";
}
.fa-road:before {
	content: "\f018";
}
.fa-download:before {
	content: "\f019";
}
.fa-arrow-circle-o-down:before {
	content: "\f01a";
}
.fa-arrow-circle-o-up:before {
	content: "\f01b";
}
.fa-inbox:before {
	content: "\f01c";
}
.fa-play-circle-o:before {
	content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
	content: "\f01e";
}
.fa-refresh:before {
	content: "\f021";
}
.fa-list-alt:before {
	content: "\f022";
}
.fa-lock:before {
	content: "\f023";
}
.fa-flag:before {
	content: "\f024";
}
.fa-headphones:before {
	content: "\f025";
}
.fa-volume-off:before {
	content: "\f026";
}
.fa-volume-down:before {
	content: "\f027";
}
.fa-volume-up:before {
	content: "\f028";
}
.fa-qrcode:before {
	content: "\f029";
}
.fa-barcode:before {
	content: "\f02a";
}
.fa-tag:before {
	content: "\f02b";
}
.fa-tags:before {
	content: "\f02c";
}
.fa-book:before {
	content: "\f02d";
}
.fa-bookmark:before {
	content: "\f02e";
}
.fa-print:before {
	content: "\f02f";
}
.fa-camera:before {
	content: "\f030";
}
.fa-font:before {
	content: "\f031";
}
.fa-bold:before {
	content: "\f032";
}
.fa-italic:before {
	content: "\f033";
}
.fa-text-height:before {
	content: "\f034";
}
.fa-text-width:before {
	content: "\f035";
}
.fa-align-left:before {
	content: "\f036";
}
.fa-align-center:before {
	content: "\f037";
}
.fa-align-right:before {
	content: "\f038";
}
.fa-align-justify:before {
	content: "\f039";
}
.fa-list:before {
	content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
	content: "\f03b";
}
.fa-indent:before {
	content: "\f03c";
}
.fa-video-camera:before {
	content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
	content: "\f03e";
}
.fa-pencil:before {
	content: "\f040";
}
.fa-map-marker:before {
	content: "\f041";
}
.fa-adjust:before {
	content: "\f042";
}
.fa-tint:before {
	content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
	content: "\f044";
}
.fa-share-square-o:before {
	content: "\f045";
}
.fa-check-square-o:before {
	content: "\f046";
}
.fa-arrows:before {
	content: "\f047";
}
.fa-step-backward:before {
	content: "\f048";
}
.fa-fast-backward:before {
	content: "\f049";
}
.fa-backward:before {
	content: "\f04a";
}
.fa-play:before {
	content: "\f04b";
}
.fa-pause:before {
	content: "\f04c";
}
.fa-stop:before {
	content: "\f04d";
}
.fa-forward:before {
	content: "\f04e";
}
.fa-fast-forward:before {
	content: "\f050";
}
.fa-step-forward:before {
	content: "\f051";
}
.fa-eject:before {
	content: "\f052";
}
.fa-chevron-left:before {
	content: "\f053";
}
.fa-chevron-right:before {
	content: "\f054";
}
.fa-plus-circle:before {
	content: "\f055";
}
.fa-minus-circle:before {
	content: "\f056";
}
.fa-times-circle:before {
	content: "\f057";
}
.fa-check-circle:before {
	content: "\f058";
}
.fa-question-circle:before {
	content: "\f059";
}
.fa-info-circle:before {
	content: "\f05a";
}
.fa-crosshairs:before {
	content: "\f05b";
}
.fa-times-circle-o:before {
	content: "\f05c";
}
.fa-check-circle-o:before {
	content: "\f05d";
}
.fa-ban:before {
	content: "\f05e";
}
.fa-arrow-left:before {
	content: "\f060";
}
.fa-arrow-right:before {
	content: "\f061";
}
.fa-arrow-up:before {
	content: "\f062";
}
.fa-arrow-down:before {
	content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
	content: "\f064";
}
.fa-expand:before {
	content: "\f065";
}
.fa-compress:before {
	content: "\f066";
}
.fa-plus:before {
	content: "\f067";
}
.fa-minus:before {
	content: "\f068";
}
.fa-asterisk:before {
	content: "\f069";
}
.fa-exclamation-circle:before {
	content: "\f06a";
}
.fa-gift:before {
	content: "\f06b";
}
.fa-leaf:before {
	content: "\f06c";
}
.fa-fire:before {
	content: "\f06d";
}
.fa-eye:before {
	content: "\f06e";
}
.fa-eye-slash:before {
	content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
	content: "\f071";
}
.fa-plane:before {
	content: "\f072";
}
.fa-calendar:before {
	content: "\f073";
}
.fa-random:before {
	content: "\f074";
}
.fa-comment:before {
	content: "\f075";
}
.fa-magnet:before {
	content: "\f076";
}
.fa-chevron-up:before {
	content: "\f077";
}
.fa-chevron-down:before {
	content: "\f078";
}
.fa-retweet:before {
	content: "\f079";
}
.fa-shopping-cart:before {
	content: "\f07a";
}
.fa-folder:before {
	content: "\f07b";
}
.fa-folder-open:before {
	content: "\f07c";
}
.fa-arrows-v:before {
	content: "\f07d";
}
.fa-arrows-h:before {
	content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
	content: "\f080";
}
.fa-twitter-square:before {
	content: "\f081";
}
.fa-facebook-square:before {
	content: "\f082";
}
.fa-camera-retro:before {
	content: "\f083";
}
.fa-key:before {
	content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
	content: "\f085";
}
.fa-comments:before {
	content: "\f086";
}
.fa-thumbs-o-up:before {
	content: "\f087";
}
.fa-thumbs-o-down:before {
	content: "\f088";
}
.fa-star-half:before {
	content: "\f089";
}
.fa-heart-o:before {
	content: "\f08a";
}
.fa-sign-out:before {
	content: "\f08b";
}
.fa-linkedin-square:before {
	content: "\f08c";
}
.fa-thumb-tack:before {
	content: "\f08d";
}
.fa-external-link:before {
	content: "\f08e";
}
.fa-sign-in:before {
	content: "\f090";
}
.fa-trophy:before {
	content: "\f091";
}
.fa-github-square:before {
	content: "\f092";
}
.fa-upload:before {
	content: "\f093";
}
.fa-lemon-o:before {
	content: "\f094";
}
.fa-phone:before {
	content: "\f095";
}
.fa-square-o:before {
	content: "\f096";
}
.fa-bookmark-o:before {
	content: "\f097";
}
.fa-phone-square:before {
	content: "\f098";
}
.fa-twitter:before {
	content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
	content: "\f09a";
}
.fa-github:before {
	content: "\f09b";
}
.fa-unlock:before {
	content: "\f09c";
}
.fa-credit-card:before {
	content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
	content: "\f09e";
}
.fa-hdd-o:before {
	content: "\f0a0";
}
.fa-bullhorn:before {
	content: "\f0a1";
}
.fa-bell:before {
	content: "\f0f3";
}
.fa-certificate:before {
	content: "\f0a3";
}
.fa-hand-o-right:before {
	content: "\f0a4";
}
.fa-hand-o-left:before {
	content: "\f0a5";
}
.fa-hand-o-up:before {
	content: "\f0a6";
}
.fa-hand-o-down:before {
	content: "\f0a7";
}
.fa-arrow-circle-left:before {
	content: "\f0a8";
}
.fa-arrow-circle-right:before {
	content: "\f0a9";
}
.fa-arrow-circle-up:before {
	content: "\f0aa";
}
.fa-arrow-circle-down:before {
	content: "\f0ab";
}
.fa-globe:before {
	content: "\f0ac";
}
.fa-wrench:before {
	content: "\f0ad";
}
.fa-tasks:before {
	content: "\f0ae";
}
.fa-filter:before {
	content: "\f0b0";
}
.fa-briefcase:before {
	content: "\f0b1";
}
.fa-arrows-alt:before {
	content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
	content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
	content: "\f0c1";
}
.fa-cloud:before {
	content: "\f0c2";
}
.fa-flask:before {
	content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
	content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
	content: "\f0c5";
}
.fa-paperclip:before {
	content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
	content: "\f0c7";
}
.fa-square:before {
	content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
	content: "\f0c9";
}
.fa-list-ul:before {
	content: "\f0ca";
}
.fa-list-ol:before {
	content: "\f0cb";
}
.fa-strikethrough:before {
	content: "\f0cc";
}
.fa-underline:before {
	content: "\f0cd";
}
.fa-table:before {
	content: "\f0ce";
}
.fa-magic:before {
	content: "\f0d0";
}
.fa-truck:before {
	content: "\f0d1";
}
.fa-pinterest:before {
	content: "\f0d2";
}
.fa-pinterest-square:before {
	content: "\f0d3";
}
.fa-google-plus-square:before {
	content: "\f0d4";
}
.fa-google-plus:before {
	content: "\f0d5";
}
.fa-money:before {
	content: "\f0d6";
}
.fa-caret-down:before {
	content: "\f0d7";
}
.fa-caret-up:before {
	content: "\f0d8";
}
.fa-caret-left:before {
	content: "\f0d9";
}
.fa-caret-right:before {
	content: "\f0da";
}
.fa-columns:before {
	content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
	content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
	content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
	content: "\f0de";
}
.fa-envelope:before {
	content: "\f0e0";
}
.fa-linkedin:before {
	content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
	content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
	content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
	content: "\f0e4";
}
.fa-comment-o:before {
	content: "\f0e5";
}
.fa-comments-o:before {
	content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
	content: "\f0e7";
}
.fa-sitemap:before {
	content: "\f0e8";
}
.fa-umbrella:before {
	content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
	content: "\f0ea";
}
.fa-lightbulb-o:before {
	content: "\f0eb";
}
.fa-exchange:before {
	content: "\f0ec";
}
.fa-cloud-download:before {
	content: "\f0ed";
}
.fa-cloud-upload:before {
	content: "\f0ee";
}
.fa-user-md:before {
	content: "\f0f0";
}
.fa-stethoscope:before {
	content: "\f0f1";
}
.fa-suitcase:before {
	content: "\f0f2";
}
.fa-bell-o:before {
	content: "\f0a2";
}
.fa-coffee:before {
	content: "\f0f4";
}
.fa-cutlery:before {
	content: "\f0f5";
}
.fa-file-text-o:before {
	content: "\f0f6";
}
.fa-building-o:before {
	content: "\f0f7";
}
.fa-hospital-o:before {
	content: "\f0f8";
}
.fa-ambulance:before {
	content: "\f0f9";
}
.fa-medkit:before {
	content: "\f0fa";
}
.fa-fighter-jet:before {
	content: "\f0fb";
}
.fa-beer:before {
	content: "\f0fc";
}
.fa-h-square:before {
	content: "\f0fd";
}
.fa-plus-square:before {
	content: "\f0fe";
}
.fa-angle-double-left:before {
	content: "\f100";
}
.fa-angle-double-right:before {
	content: "\f101";
}
.fa-angle-double-up:before {
	content: "\f102";
}
.fa-angle-double-down:before {
	content: "\f103";
}
.fa-angle-left:before {
	content: "\f104";
}
.fa-angle-right:before {
	content: "\f105";
}
.fa-angle-up:before {
	content: "\f106";
}
.fa-angle-down:before {
	content: "\f107";
}
.fa-desktop:before {
	content: "\f108";
}
.fa-laptop:before {
	content: "\f109";
}
.fa-tablet:before {
	content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
	content: "\f10b";
}
.fa-circle-o:before {
	content: "\f10c";
}
.fa-quote-left:before {
	content: "\f10d";
}
.fa-quote-right:before {
	content: "\f10e";
}
.fa-spinner:before {
	content: "\f110";
}
.fa-circle:before {
	content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
	content: "\f112";
}
.fa-github-alt:before {
	content: "\f113";
}
.fa-folder-o:before {
	content: "\f114";
}
.fa-folder-open-o:before {
	content: "\f115";
}
.fa-smile-o:before {
	content: "\f118";
}
.fa-frown-o:before {
	content: "\f119";
}
.fa-meh-o:before {
	content: "\f11a";
}
.fa-gamepad:before {
	content: "\f11b";
}
.fa-keyboard-o:before {
	content: "\f11c";
}
.fa-flag-o:before {
	content: "\f11d";
}
.fa-flag-checkered:before {
	content: "\f11e";
}
.fa-terminal:before {
	content: "\f120";
}
.fa-code:before {
	content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
	content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
	content: "\f123";
}
.fa-location-arrow:before {
	content: "\f124";
}
.fa-crop:before {
	content: "\f125";
}
.fa-code-fork:before {
	content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
	content: "\f127";
}
.fa-question:before {
	content: "\f128";
}
.fa-info:before {
	content: "\f129";
}
.fa-exclamation:before {
	content: "\f12a";
}
.fa-superscript:before {
	content: "\f12b";
}
.fa-subscript:before {
	content: "\f12c";
}
.fa-eraser:before {
	content: "\f12d";
}
.fa-puzzle-piece:before {
	content: "\f12e";
}
.fa-microphone:before {
	content: "\f130";
}
.fa-microphone-slash:before {
	content: "\f131";
}
.fa-shield:before {
	content: "\f132";
}
.fa-calendar-o:before {
	content: "\f133";
}
.fa-fire-extinguisher:before {
	content: "\f134";
}
.fa-rocket:before {
	content: "\f135";
}
.fa-maxcdn:before {
	content: "\f136";
}
.fa-chevron-circle-left:before {
	content: "\f137";
}
.fa-chevron-circle-right:before {
	content: "\f138";
}
.fa-chevron-circle-up:before {
	content: "\f139";
}
.fa-chevron-circle-down:before {
	content: "\f13a";
}
.fa-html5:before {
	content: "\f13b";
}
.fa-css3:before {
	content: "\f13c";
}
.fa-anchor:before {
	content: "\f13d";
}
.fa-unlock-alt:before {
	content: "\f13e";
}
.fa-bullseye:before {
	content: "\f140";
}
.fa-ellipsis-h:before {
	content: "\f141";
}
.fa-ellipsis-v:before {
	content: "\f142";
}
.fa-rss-square:before {
	content: "\f143";
}
.fa-play-circle:before {
	content: "\f144";
}
.fa-ticket:before {
	content: "\f145";
}
.fa-minus-square:before {
	content: "\f146";
}
.fa-minus-square-o:before {
	content: "\f147";
}
.fa-level-up:before {
	content: "\f148";
}
.fa-level-down:before {
	content: "\f149";
}
.fa-check-square:before {
	content: "\f14a";
}
.fa-pencil-square:before {
	content: "\f14b";
}
.fa-external-link-square:before {
	content: "\f14c";
}
.fa-share-square:before {
	content: "\f14d";
}
.fa-compass:before {
	content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
	content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
	content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
	content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
	content: "\f153";
}
.fa-gbp:before {
	content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
	content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
	content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
	content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
	content: "\f158";
}
.fa-won:before,
.fa-krw:before {
	content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
	content: "\f15a";
}
.fa-file:before {
	content: "\f15b";
}
.fa-file-text:before {
	content: "\f15c";
}
.fa-sort-alpha-asc:before {
	content: "\f15d";
}
.fa-sort-alpha-desc:before {
	content: "\f15e";
}
.fa-sort-amount-asc:before {
	content: "\f160";
}
.fa-sort-amount-desc:before {
	content: "\f161";
}
.fa-sort-numeric-asc:before {
	content: "\f162";
}
.fa-sort-numeric-desc:before {
	content: "\f163";
}
.fa-thumbs-up:before {
	content: "\f164";
}
.fa-thumbs-down:before {
	content: "\f165";
}
.fa-youtube-square:before {
	content: "\f166";
}
.fa-youtube:before {
	content: "\f167";
}
.fa-xing:before {
	content: "\f168";
}
.fa-xing-square:before {
	content: "\f169";
}
.fa-youtube-play:before {
	content: "\f16a";
}
.fa-dropbox:before {
	content: "\f16b";
}
.fa-stack-overflow:before {
	content: "\f16c";
}
.fa-instagram:before {
	content: "\f16d";
}
.fa-flickr:before {
	content: "\f16e";
}
.fa-adn:before {
	content: "\f170";
}
.fa-bitbucket:before {
	content: "\f171";
}
.fa-bitbucket-square:before {
	content: "\f172";
}
.fa-tumblr:before {
	content: "\f173";
}
.fa-tumblr-square:before {
	content: "\f174";
}
.fa-long-arrow-down:before {
	content: "\f175";
}
.fa-long-arrow-up:before {
	content: "\f176";
}
.fa-long-arrow-left:before {
	content: "\f177";
}
.fa-long-arrow-right:before {
	content: "\f178";
}
.fa-apple:before {
	content: "\f179";
}
.fa-windows:before {
	content: "\f17a";
}
.fa-android:before {
	content: "\f17b";
}
.fa-linux:before {
	content: "\f17c";
}
.fa-dribbble:before {
	content: "\f17d";
}
.fa-skype:before {
	content: "\f17e";
}
.fa-foursquare:before {
	content: "\f180";
}
.fa-trello:before {
	content: "\f181";
}
.fa-female:before {
	content: "\f182";
}
.fa-male:before {
	content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
	content: "\f184";
}
.fa-sun-o:before {
	content: "\f185";
}
.fa-moon-o:before {
	content: "\f186";
}
.fa-archive:before {
	content: "\f187";
}
.fa-bug:before {
	content: "\f188";
}
.fa-vk:before {
	content: "\f189";
}
.fa-weibo:before {
	content: "\f18a";
}
.fa-renren:before {
	content: "\f18b";
}
.fa-pagelines:before {
	content: "\f18c";
}
.fa-stack-exchange:before {
	content: "\f18d";
}
.fa-arrow-circle-o-right:before {
	content: "\f18e";
}
.fa-arrow-circle-o-left:before {
	content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
	content: "\f191";
}
.fa-dot-circle-o:before {
	content: "\f192";
}
.fa-wheelchair:before {
	content: "\f193";
}
.fa-vimeo-square:before {
	content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
	content: "\f195";
}
.fa-plus-square-o:before {
	content: "\f196";
}
.fa-space-shuttle:before {
	content: "\f197";
}
.fa-slack:before {
	content: "\f198";
}
.fa-envelope-square:before {
	content: "\f199";
}
.fa-wordpress:before {
	content: "\f19a";
}
.fa-openid:before {
	content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
	content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
	content: "\f19d";
}
.fa-yahoo:before {
	content: "\f19e";
}
.fa-google:before {
	content: "\f1a0";
}
.fa-reddit:before {
	content: "\f1a1";
}
.fa-reddit-square:before {
	content: "\f1a2";
}
.fa-stumbleupon-circle:before {
	content: "\f1a3";
}
.fa-stumbleupon:before {
	content: "\f1a4";
}
.fa-delicious:before {
	content: "\f1a5";
}
.fa-digg:before {
	content: "\f1a6";
}
.fa-pied-piper-pp:before {
	content: "\f1a7";
}
.fa-pied-piper-alt:before {
	content: "\f1a8";
}
.fa-drupal:before {
	content: "\f1a9";
}
.fa-joomla:before {
	content: "\f1aa";
}
.fa-language:before {
	content: "\f1ab";
}
.fa-fax:before {
	content: "\f1ac";
}
.fa-building:before {
	content: "\f1ad";
}
.fa-child:before {
	content: "\f1ae";
}
.fa-paw:before {
	content: "\f1b0";
}
.fa-spoon:before {
	content: "\f1b1";
}
.fa-cube:before {
	content: "\f1b2";
}
.fa-cubes:before {
	content: "\f1b3";
}
.fa-behance:before {
	content: "\f1b4";
}
.fa-behance-square:before {
	content: "\f1b5";
}
.fa-steam:before {
	content: "\f1b6";
}
.fa-steam-square:before {
	content: "\f1b7";
}
.fa-recycle:before {
	content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
	content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
	content: "\f1ba";
}
.fa-tree:before {
	content: "\f1bb";
}
.fa-spotify:before {
	content: "\f1bc";
}
.fa-deviantart:before {
	content: "\f1bd";
}
.fa-soundcloud:before {
	content: "\f1be";
}
.fa-database:before {
	content: "\f1c0";
}
.fa-file-pdf-o:before {
	content: "\f1c1";
}
.fa-file-word-o:before {
	content: "\f1c2";
}
.fa-file-excel-o:before {
	content: "\f1c3";
}
.fa-file-powerpoint-o:before {
	content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
	content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
	content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
	content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
	content: "\f1c8";
}
.fa-file-code-o:before {
	content: "\f1c9";
}
.fa-vine:before {
	content: "\f1ca";
}
.fa-codepen:before {
	content: "\f1cb";
}
.fa-jsfiddle:before {
	content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
	content: "\f1cd";
}
.fa-circle-o-notch:before {
	content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
	content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
	content: "\f1d1";
}
.fa-git-square:before {
	content: "\f1d2";
}
.fa-git:before {
	content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
	content: "\f1d4";
}
.fa-tencent-weibo:before {
	content: "\f1d5";
}
.fa-qq:before {
	content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
	content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
	content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
	content: "\f1d9";
}
.fa-history:before {
	content: "\f1da";
}
.fa-circle-thin:before {
	content: "\f1db";
}
.fa-header:before {
	content: "\f1dc";
}
.fa-paragraph:before {
	content: "\f1dd";
}
.fa-sliders:before {
	content: "\f1de";
}
.fa-share-alt:before {
	content: "\f1e0";
}
.fa-share-alt-square:before {
	content: "\f1e1";
}
.fa-bomb:before {
	content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
	content: "\f1e3";
}
.fa-tty:before {
	content: "\f1e4";
}
.fa-binoculars:before {
	content: "\f1e5";
}
.fa-plug:before {
	content: "\f1e6";
}
.fa-slideshare:before {
	content: "\f1e7";
}
.fa-twitch:before {
	content: "\f1e8";
}
.fa-yelp:before {
	content: "\f1e9";
}
.fa-newspaper-o:before {
	content: "\f1ea";
}
.fa-wifi:before {
	content: "\f1eb";
}
.fa-calculator:before {
	content: "\f1ec";
}
.fa-paypal:before {
	content: "\f1ed";
}
.fa-google-wallet:before {
	content: "\f1ee";
}
.fa-cc-visa:before {
	content: "\f1f0";
}
.fa-cc-mastercard:before {
	content: "\f1f1";
}
.fa-cc-discover:before {
	content: "\f1f2";
}
.fa-cc-amex:before {
	content: "\f1f3";
}
.fa-cc-paypal:before {
	content: "\f1f4";
}
.fa-cc-stripe:before {
	content: "\f1f5";
}
.fa-bell-slash:before {
	content: "\f1f6";
}
.fa-bell-slash-o:before {
	content: "\f1f7";
}
.fa-trash:before {
	content: "\f1f8";
}
.fa-copyright:before {
	content: "\f1f9";
}
.fa-at:before {
	content: "\f1fa";
}
.fa-eyedropper:before {
	content: "\f1fb";
}
.fa-paint-brush:before {
	content: "\f1fc";
}
.fa-birthday-cake:before {
	content: "\f1fd";
}
.fa-area-chart:before {
	content: "\f1fe";
}
.fa-pie-chart:before {
	content: "\f200";
}
.fa-line-chart:before {
	content: "\f201";
}
.fa-lastfm:before {
	content: "\f202";
}
.fa-lastfm-square:before {
	content: "\f203";
}
.fa-toggle-off:before {
	content: "\f204";
}
.fa-toggle-on:before {
	content: "\f205";
}
.fa-bicycle:before {
	content: "\f206";
}
.fa-bus:before {
	content: "\f207";
}
.fa-ioxhost:before {
	content: "\f208";
}
.fa-angellist:before {
	content: "\f209";
}
.fa-cc:before {
	content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
	content: "\f20b";
}
.fa-meanpath:before {
	content: "\f20c";
}
.fa-buysellads:before {
	content: "\f20d";
}
.fa-connectdevelop:before {
	content: "\f20e";
}
.fa-dashcube:before {
	content: "\f210";
}
.fa-forumbee:before {
	content: "\f211";
}
.fa-leanpub:before {
	content: "\f212";
}
.fa-sellsy:before {
	content: "\f213";
}
.fa-shirtsinbulk:before {
	content: "\f214";
}
.fa-simplybuilt:before {
	content: "\f215";
}
.fa-skyatlas:before {
	content: "\f216";
}
.fa-cart-plus:before {
	content: "\f217";
}
.fa-cart-arrow-down:before {
	content: "\f218";
}
.fa-diamond:before {
	content: "\f219";
}
.fa-ship:before {
	content: "\f21a";
}
.fa-user-secret:before {
	content: "\f21b";
}
.fa-motorcycle:before {
	content: "\f21c";
}
.fa-street-view:before {
	content: "\f21d";
}
.fa-heartbeat:before {
	content: "\f21e";
}
.fa-venus:before {
	content: "\f221";
}
.fa-mars:before {
	content: "\f222";
}
.fa-mercury:before {
	content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
	content: "\f224";
}
.fa-transgender-alt:before {
	content: "\f225";
}
.fa-venus-double:before {
	content: "\f226";
}
.fa-mars-double:before {
	content: "\f227";
}
.fa-venus-mars:before {
	content: "\f228";
}
.fa-mars-stroke:before {
	content: "\f229";
}
.fa-mars-stroke-v:before {
	content: "\f22a";
}
.fa-mars-stroke-h:before {
	content: "\f22b";
}
.fa-neuter:before {
	content: "\f22c";
}
.fa-genderless:before {
	content: "\f22d";
}
.fa-facebook-official:before {
	content: "\f230";
}
.fa-pinterest-p:before {
	content: "\f231";
}
.fa-whatsapp:before {
	content: "\f232";
}
.fa-server:before {
	content: "\f233";
}
.fa-user-plus:before {
	content: "\f234";
}
.fa-user-times:before {
	content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
	content: "\f236";
}
.fa-viacoin:before {
	content: "\f237";
}
.fa-train:before {
	content: "\f238";
}
.fa-subway:before {
	content: "\f239";
}
.fa-medium:before {
	content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
	content: "\f23b";
}
.fa-optin-monster:before {
	content: "\f23c";
}
.fa-opencart:before {
	content: "\f23d";
}
.fa-expeditedssl:before {
	content: "\f23e";
}
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
	content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
	content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
	content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
	content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
	content: "\f244";
}
.fa-mouse-pointer:before {
	content: "\f245";
}
.fa-i-cursor:before {
	content: "\f246";
}
.fa-object-group:before {
	content: "\f247";
}
.fa-object-ungroup:before {
	content: "\f248";
}
.fa-sticky-note:before {
	content: "\f249";
}
.fa-sticky-note-o:before {
	content: "\f24a";
}
.fa-cc-jcb:before {
	content: "\f24b";
}
.fa-cc-diners-club:before {
	content: "\f24c";
}
.fa-clone:before {
	content: "\f24d";
}
.fa-balance-scale:before {
	content: "\f24e";
}
.fa-hourglass-o:before {
	content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
	content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
	content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
	content: "\f253";
}
.fa-hourglass:before {
	content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
	content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
	content: "\f256";
}
.fa-hand-scissors-o:before {
	content: "\f257";
}
.fa-hand-lizard-o:before {
	content: "\f258";
}
.fa-hand-spock-o:before {
	content: "\f259";
}
.fa-hand-pointer-o:before {
	content: "\f25a";
}
.fa-hand-peace-o:before {
	content: "\f25b";
}
.fa-trademark:before {
	content: "\f25c";
}
.fa-registered:before {
	content: "\f25d";
}
.fa-creative-commons:before {
	content: "\f25e";
}
.fa-gg:before {
	content: "\f260";
}
.fa-gg-circle:before {
	content: "\f261";
}
.fa-tripadvisor:before {
	content: "\f262";
}
.fa-odnoklassniki:before {
	content: "\f263";
}
.fa-odnoklassniki-square:before {
	content: "\f264";
}
.fa-get-pocket:before {
	content: "\f265";
}
.fa-wikipedia-w:before {
	content: "\f266";
}
.fa-safari:before {
	content: "\f267";
}
.fa-chrome:before {
	content: "\f268";
}
.fa-firefox:before {
	content: "\f269";
}
.fa-opera:before {
	content: "\f26a";
}
.fa-internet-explorer:before {
	content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
	content: "\f26c";
}
.fa-contao:before {
	content: "\f26d";
}
.fa-500px:before {
	content: "\f26e";
}
.fa-amazon:before {
	content: "\f270";
}
.fa-calendar-plus-o:before {
	content: "\f271";
}
.fa-calendar-minus-o:before {
	content: "\f272";
}
.fa-calendar-times-o:before {
	content: "\f273";
}
.fa-calendar-check-o:before {
	content: "\f274";
}
.fa-industry:before {
	content: "\f275";
}
.fa-map-pin:before {
	content: "\f276";
}
.fa-map-signs:before {
	content: "\f277";
}
.fa-map-o:before {
	content: "\f278";
}
.fa-map:before {
	content: "\f279";
}
.fa-commenting:before {
	content: "\f27a";
}
.fa-commenting-o:before {
	content: "\f27b";
}
.fa-houzz:before {
	content: "\f27c";
}
.fa-vimeo:before {
	content: "\f27d";
}
.fa-black-tie:before {
	content: "\f27e";
}
.fa-fonticons:before {
	content: "\f280";
}
.fa-reddit-alien:before {
	content: "\f281";
}
.fa-edge:before {
	content: "\f282";
}
.fa-credit-card-alt:before {
	content: "\f283";
}
.fa-codiepie:before {
	content: "\f284";
}
.fa-modx:before {
	content: "\f285";
}
.fa-fort-awesome:before {
	content: "\f286";
}
.fa-usb:before {
	content: "\f287";
}
.fa-product-hunt:before {
	content: "\f288";
}
.fa-mixcloud:before {
	content: "\f289";
}
.fa-scribd:before {
	content: "\f28a";
}
.fa-pause-circle:before {
	content: "\f28b";
}
.fa-pause-circle-o:before {
	content: "\f28c";
}
.fa-stop-circle:before {
	content: "\f28d";
}
.fa-stop-circle-o:before {
	content: "\f28e";
}
.fa-shopping-bag:before {
	content: "\f290";
}
.fa-shopping-basket:before {
	content: "\f291";
}
.fa-hashtag:before {
	content: "\f292";
}
.fa-bluetooth:before {
	content: "\f293";
}
.fa-bluetooth-b:before {
	content: "\f294";
}
.fa-percent:before {
	content: "\f295";
}
.fa-gitlab:before {
	content: "\f296";
}
.fa-wpbeginner:before {
	content: "\f297";
}
.fa-wpforms:before {
	content: "\f298";
}
.fa-envira:before {
	content: "\f299";
}
.fa-universal-access:before {
	content: "\f29a";
}
.fa-wheelchair-alt:before {
	content: "\f29b";
}
.fa-question-circle-o:before {
	content: "\f29c";
}
.fa-blind:before {
	content: "\f29d";
}
.fa-audio-description:before {
	content: "\f29e";
}
.fa-volume-control-phone:before {
	content: "\f2a0";
}
.fa-braille:before {
	content: "\f2a1";
}
.fa-assistive-listening-systems:before {
	content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
	content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
	content: "\f2a4";
}
.fa-glide:before {
	content: "\f2a5";
}
.fa-glide-g:before {
	content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
	content: "\f2a7";
}
.fa-low-vision:before {
	content: "\f2a8";
}
.fa-viadeo:before {
	content: "\f2a9";
}
.fa-viadeo-square:before {
	content: "\f2aa";
}
.fa-snapchat:before {
	content: "\f2ab";
}
.fa-snapchat-ghost:before {
	content: "\f2ac";
}
.fa-snapchat-square:before {
	content: "\f2ad";
}
.fa-pied-piper:before {
	content: "\f2ae";
}
.fa-first-order:before {
	content: "\f2b0";
}
.fa-yoast:before {
	content: "\f2b1";
}
.fa-themeisle:before {
	content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
	content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
	content: "\f2b4";
}
.fa-handshake-o:before {
	content: "\f2b5";
}
.fa-envelope-open:before {
	content: "\f2b6";
}
.fa-envelope-open-o:before {
	content: "\f2b7";
}
.fa-linode:before {
	content: "\f2b8";
}
.fa-address-book:before {
	content: "\f2b9";
}
.fa-address-book-o:before {
	content: "\f2ba";
}
.fa-vcard:before,
.fa-address-card:before {
	content: "\f2bb";
}
.fa-vcard-o:before,
.fa-address-card-o:before {
	content: "\f2bc";
}
.fa-user-circle:before {
	content: "\f2bd";
}
.fa-user-circle-o:before {
	content: "\f2be";
}
.fa-user-o:before {
	content: "\f2c0";
}
.fa-id-badge:before {
	content: "\f2c1";
}
.fa-drivers-license:before,
.fa-id-card:before {
	content: "\f2c2";
}
.fa-drivers-license-o:before,
.fa-id-card-o:before {
	content: "\f2c3";
}
.fa-quora:before {
	content: "\f2c4";
}
.fa-free-code-camp:before {
	content: "\f2c5";
}
.fa-telegram:before {
	content: "\f2c6";
}
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
	content: "\f2c7";
}
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
	content: "\f2c8";
}
.fa-thermometer-2:before,
.fa-thermometer-half:before {
	content: "\f2c9";
}
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
	content: "\f2ca";
}
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
	content: "\f2cb";
}
.fa-shower:before {
	content: "\f2cc";
}
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
	content: "\f2cd";
}
.fa-podcast:before {
	content: "\f2ce";
}
.fa-window-maximize:before {
	content: "\f2d0";
}
.fa-window-minimize:before {
	content: "\f2d1";
}
.fa-window-restore:before {
	content: "\f2d2";
}
.fa-times-rectangle:before,
.fa-window-close:before {
	content: "\f2d3";
}
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
	content: "\f2d4";
}
.fa-bandcamp:before {
	content: "\f2d5";
}
.fa-grav:before {
	content: "\f2d6";
}
.fa-etsy:before {
	content: "\f2d7";
}
.fa-imdb:before {
	content: "\f2d8";
}
.fa-ravelry:before {
	content: "\f2d9";
}
.fa-eercast:before {
	content: "\f2da";
}
.fa-microchip:before {
	content: "\f2db";
}
.fa-snowflake-o:before {
	content: "\f2dc";
}
.fa-superpowers:before {
	content: "\f2dd";
}
.fa-wpexplorer:before {
	content: "\f2de";
}
.fa-meetup:before {
	content: "\f2e0";
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

/*
 * Orion tweaks/extensions of the font awesome classes
 */
.fa.hide,
.fas.hide {
	display: none;
}
.fa.fa-type-primary,
.fas.fa-type-primary {
	color: var(--color-primary);
}
.fa.fa-type-success,
.fas.fa-type-success {
	color: var(--color-success);
}
.fa.fa-type-warning,
.fas.fa-type-warning {
	color: var(--color-warning);
}
.fa.fa-type-danger,
.fas.fa-type-danger {
	color: var(--color-danger);
}
.fa.fa-type-info,
.fas.fa-type-info {
	color: var(--color-info);
}
.fa.fa-type-light,
.fas.fa-type-light {
	color: var(--color-default-dark);
}
.fa.fa-type-male,
.fas.fa-type-male {
	color: var(--color-male);
}
.fa.fa-type-female,
.fas.fa-type-female {
	color: var(--color-female);
}
.fa-remove.remove-btn {
	font-size: 16px;
	color: #d00;
	cursor: pointer;
}

/* styles for jquery.dirtyFields.js */
input.dirtyField,
select.dirtyField,
textarea.dirtyField,
label.dirtyField {
	background-color: #ffda9f;
}
.dirtyFieldsIndicator {background-color: #ffda9f;
	height: 40px;
	left: 0px;
	position: fixed;
	width: 100%;
	bottom: 0px;
	z-index:9999;}
.dirtyFieldsIndicatorText:before{font-family: FontAwesome;
	content: "\f0c7";
	margin-left: 20px;
	font-size: 20px}
.dirtyFieldsIndicatorText{margin-top: 10px;}
.dirtyChoice {font-style:italic;font-weight:bold;}

input.error,
select.error,
textarea.error {
	background-color: #fdd;
}

input:disabled,
select:disabled,
textarea:disabled {
	background-color: #ebebe4;
}

.pre {
	white-space: pre-wrap;
}

/* A few missing bootstrap styles and tweaks to override what the BYU template breaks from bootstrap */
.btn-group-vertical>.btn-group:after, .btn-group-vertical>.btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
	display: table;
	content: " ";
}
.btn-group-vertical>.btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .modal-header:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after {
	clear: both;
}

.dropdown-menu .dropdown-text {
	padding-left: 20px;
}

/*
	Bootstrap grid system styles
*/
.container {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.container,
.container *,
.container-fluid,
.container-fluid * {
	box-sizing: border-box;
}
/* use when a container will sit in the same space as other content not in a container */
.container.container-share,
.container-fluid.container-share {
	margin-left: -15px;
	margin-right: -15px;
}
@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}
@media (min-width: 992px) {
	.container {
		width: 970px;
	}
}
@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}
.container-fluid {
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
.row {
	margin-right: -15px;
	margin-left: -15px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
	position: relative;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
	float: left;
}
.col-xs-12 {
	width: 100%;
}
.col-xs-11 {
	width: 91.66666667%;
}
.col-xs-10 {
	width: 83.33333333%;
}
.col-xs-9 {
	width: 75%;
}
.col-xs-8 {
	width: 66.66666667%;
}
.col-xs-7 {
	width: 58.33333333%;
}
.col-xs-6 {
	width: 50%;
}
.col-xs-5 {
	width: 41.66666667%;
}
.col-xs-4 {
	width: 33.33333333%;
}
.col-xs-3 {
	width: 25%;
}
.col-xs-2 {
	width: 16.66666667%;
}
.col-xs-1 {
	width: 8.33333333%;
}
.col-xs-pull-12 {
	right: 100%;
}
.col-xs-pull-11 {
	right: 91.66666667%;
}
.col-xs-pull-10 {
	right: 83.33333333%;
}
.col-xs-pull-9 {
	right: 75%;
}
.col-xs-pull-8 {
	right: 66.66666667%;
}
.col-xs-pull-7 {
	right: 58.33333333%;
}
.col-xs-pull-6 {
	right: 50%;
}
.col-xs-pull-5 {
	right: 41.66666667%;
}
.col-xs-pull-4 {
	right: 33.33333333%;
}
.col-xs-pull-3 {
	right: 25%;
}
.col-xs-pull-2 {
	right: 16.66666667%;
}
.col-xs-pull-1 {
	right: 8.33333333%;
}
.col-xs-pull-0 {
	right: auto;
}
.col-xs-push-12 {
	left: 100%;
}
.col-xs-push-11 {
	left: 91.66666667%;
}
.col-xs-push-10 {
	left: 83.33333333%;
}
.col-xs-push-9 {
	left: 75%;
}
.col-xs-push-8 {
	left: 66.66666667%;
}
.col-xs-push-7 {
	left: 58.33333333%;
}
.col-xs-push-6 {
	left: 50%;
}
.col-xs-push-5 {
	left: 41.66666667%;
}
.col-xs-push-4 {
	left: 33.33333333%;
}
.col-xs-push-3 {
	left: 25%;
}
.col-xs-push-2 {
	left: 16.66666667%;
}
.col-xs-push-1 {
	left: 8.33333333%;
}
.col-xs-push-0 {
	left: auto;
}
.col-xs-offset-12 {
	margin-left: 100%;
}
.col-xs-offset-11 {
	margin-left: 91.66666667%;
}
.col-xs-offset-10 {
	margin-left: 83.33333333%;
}
.col-xs-offset-9 {
	margin-left: 75%;
}
.col-xs-offset-8 {
	margin-left: 66.66666667%;
}
.col-xs-offset-7 {
	margin-left: 58.33333333%;
}
.col-xs-offset-6 {
	margin-left: 50%;
}
.col-xs-offset-5 {
	margin-left: 41.66666667%;
}
.col-xs-offset-4 {
	margin-left: 33.33333333%;
}
.col-xs-offset-3 {
	margin-left: 25%;
}
.col-xs-offset-2 {
	margin-left: 16.66666667%;
}
.col-xs-offset-1 {
	margin-left: 8.33333333%;
}
.col-xs-offset-0 {
	margin-left: 0;
}
@media (min-width: 768px) {
	.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
		float: left;
	}
	.col-sm-12 {
		width: 100%;
	}
	.col-sm-11 {
		width: 91.66666667%;
	}
	.col-sm-10 {
		width: 83.33333333%;
	}
	.col-sm-9 {
		width: 75%;
	}
	.col-sm-8 {
		width: 66.66666667%;
	}
	.col-sm-7 {
		width: 58.33333333%;
	}
	.col-sm-6 {
		width: 50%;
	}
	.col-sm-5 {
		width: 41.66666667%;
	}
	.col-sm-4 {
		width: 33.33333333%;
	}
	.col-sm-3 {
		width: 25%;
	}
	.col-sm-2 {
		width: 16.66666667%;
	}
	.col-sm-1 {
		width: 8.33333333%;
	}
	.col-sm-pull-12 {
		right: 100%;
	}
	.col-sm-pull-11 {
		right: 91.66666667%;
	}
	.col-sm-pull-10 {
		right: 83.33333333%;
	}
	.col-sm-pull-9 {
		right: 75%;
	}
	.col-sm-pull-8 {
		right: 66.66666667%;
	}
	.col-sm-pull-7 {
		right: 58.33333333%;
	}
	.col-sm-pull-6 {
		right: 50%;
	}
	.col-sm-pull-5 {
		right: 41.66666667%;
	}
	.col-sm-pull-4 {
		right: 33.33333333%;
	}
	.col-sm-pull-3 {
		right: 25%;
	}
	.col-sm-pull-2 {
		right: 16.66666667%;
	}
	.col-sm-pull-1 {
		right: 8.33333333%;
	}
	.col-sm-pull-0 {
		right: auto;
	}
	.col-sm-push-12 {
		left: 100%;
	}
	.col-sm-push-11 {
		left: 91.66666667%;
	}
	.col-sm-push-10 {
		left: 83.33333333%;
	}
	.col-sm-push-9 {
		left: 75%;
	}
	.col-sm-push-8 {
		left: 66.66666667%;
	}
	.col-sm-push-7 {
		left: 58.33333333%;
	}
	.col-sm-push-6 {
		left: 50%;
	}
	.col-sm-push-5 {
		left: 41.66666667%;
	}
	.col-sm-push-4 {
		left: 33.33333333%;
	}
	.col-sm-push-3 {
		left: 25%;
	}
	.col-sm-push-2 {
		left: 16.66666667%;
	}
	.col-sm-push-1 {
		left: 8.33333333%;
	}
	.col-sm-push-0 {
		left: auto;
	}
	.col-sm-offset-12 {
		margin-left: 100%;
	}
	.col-sm-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-sm-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-sm-offset-9 {
		margin-left: 75%;
	}
	.col-sm-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-sm-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-sm-offset-6 {
		margin-left: 50%;
	}
	.col-sm-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-sm-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-sm-offset-3 {
		margin-left: 25%;
	}
	.col-sm-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-sm-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-sm-offset-0 {
		margin-left: 0;
	}
}
@media (min-width: 992px) {
	.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
		float: left;
	}
	.col-md-12 {
		width: 100%;
	}
	.col-md-11 {
		width: 91.66666667%;
	}
	.col-md-10 {
		width: 83.33333333%;
	}
	.col-md-9 {
		width: 75%;
	}
	.col-md-8 {
		width: 66.66666667%;
	}
	.col-md-7 {
		width: 58.33333333%;
	}
	.col-md-6 {
		width: 50%;
	}
	.col-md-5 {
		width: 41.66666667%;
	}
	.col-md-4 {
		width: 33.33333333%;
	}
	.col-md-3 {
		width: 25%;
	}
	.col-md-2 {
		width: 16.66666667%;
	}
	.col-md-1 {
		width: 8.33333333%;
	}
	.col-md-pull-12 {
		right: 100%;
	}
	.col-md-pull-11 {
		right: 91.66666667%;
	}
	.col-md-pull-10 {
		right: 83.33333333%;
	}
	.col-md-pull-9 {
		right: 75%;
	}
	.col-md-pull-8 {
		right: 66.66666667%;
	}
	.col-md-pull-7 {
		right: 58.33333333%;
	}
	.col-md-pull-6 {
		right: 50%;
	}
	.col-md-pull-5 {
		right: 41.66666667%;
	}
	.col-md-pull-4 {
		right: 33.33333333%;
	}
	.col-md-pull-3 {
		right: 25%;
	}
	.col-md-pull-2 {
		right: 16.66666667%;
	}
	.col-md-pull-1 {
		right: 8.33333333%;
	}
	.col-md-pull-0 {
		right: auto;
	}
	.col-md-push-12 {
		left: 100%;
	}
	.col-md-push-11 {
		left: 91.66666667%;
	}
	.col-md-push-10 {
		left: 83.33333333%;
	}
	.col-md-push-9 {
		left: 75%;
	}
	.col-md-push-8 {
		left: 66.66666667%;
	}
	.col-md-push-7 {
		left: 58.33333333%;
	}
	.col-md-push-6 {
		left: 50%;
	}
	.col-md-push-5 {
		left: 41.66666667%;
	}
	.col-md-push-4 {
		left: 33.33333333%;
	}
	.col-md-push-3 {
		left: 25%;
	}
	.col-md-push-2 {
		left: 16.66666667%;
	}
	.col-md-push-1 {
		left: 8.33333333%;
	}
	.col-md-push-0 {
		left: auto;
	}
	.col-md-offset-12 {
		margin-left: 100%;
	}
	.col-md-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-md-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-md-offset-9 {
		margin-left: 75%;
	}
	.col-md-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-md-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-md-offset-6 {
		margin-left: 50%;
	}
	.col-md-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-md-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-md-offset-3 {
		margin-left: 25%;
	}
	.col-md-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-md-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-md-offset-0 {
		margin-left: 0;
	}
}
@media (min-width: 1200px) {
	.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
		float: left;
	}
	.col-lg-12 {
		width: 100%;
	}
	.col-lg-11 {
		width: 91.66666667%;
	}
	.col-lg-10 {
		width: 83.33333333%;
	}
	.col-lg-9 {
		width: 75%;
	}
	.col-lg-8 {
		width: 66.66666667%;
	}
	.col-lg-7 {
		width: 58.33333333%;
	}
	.col-lg-6 {
		width: 50%;
	}
	.col-lg-5 {
		width: 41.66666667%;
	}
	.col-lg-4 {
		width: 33.33333333%;
	}
	.col-lg-3 {
		width: 25%;
	}
	.col-lg-2 {
		width: 16.66666667%;
	}
	.col-lg-1 {
		width: 8.33333333%;
	}
	.col-lg-pull-12 {
		right: 100%;
	}
	.col-lg-pull-11 {
		right: 91.66666667%;
	}
	.col-lg-pull-10 {
		right: 83.33333333%;
	}
	.col-lg-pull-9 {
		right: 75%;
	}
	.col-lg-pull-8 {
		right: 66.66666667%;
	}
	.col-lg-pull-7 {
		right: 58.33333333%;
	}
	.col-lg-pull-6 {
		right: 50%;
	}
	.col-lg-pull-5 {
		right: 41.66666667%;
	}
	.col-lg-pull-4 {
		right: 33.33333333%;
	}
	.col-lg-pull-3 {
		right: 25%;
	}
	.col-lg-pull-2 {
		right: 16.66666667%;
	}
	.col-lg-pull-1 {
		right: 8.33333333%;
	}
	.col-lg-pull-0 {
		right: auto;
	}
	.col-lg-push-12 {
		left: 100%;
	}
	.col-lg-push-11 {
		left: 91.66666667%;
	}
	.col-lg-push-10 {
		left: 83.33333333%;
	}
	.col-lg-push-9 {
		left: 75%;
	}
	.col-lg-push-8 {
		left: 66.66666667%;
	}
	.col-lg-push-7 {
		left: 58.33333333%;
	}
	.col-lg-push-6 {
		left: 50%;
	}
	.col-lg-push-5 {
		left: 41.66666667%;
	}
	.col-lg-push-4 {
		left: 33.33333333%;
	}
	.col-lg-push-3 {
		left: 25%;
	}
	.col-lg-push-2 {
		left: 16.66666667%;
	}
	.col-lg-push-1 {
		left: 8.33333333%;
	}
	.col-lg-push-0 {
		left: auto;
	}
	.col-lg-offset-12 {
		margin-left: 100%;
	}
	.col-lg-offset-11 {
		margin-left: 91.66666667%;
	}
	.col-lg-offset-10 {
		margin-left: 83.33333333%;
	}
	.col-lg-offset-9 {
		margin-left: 75%;
	}
	.col-lg-offset-8 {
		margin-left: 66.66666667%;
	}
	.col-lg-offset-7 {
		margin-left: 58.33333333%;
	}
	.col-lg-offset-6 {
		margin-left: 50%;
	}
	.col-lg-offset-5 {
		margin-left: 41.66666667%;
	}
	.col-lg-offset-4 {
		margin-left: 33.33333333%;
	}
	.col-lg-offset-3 {
		margin-left: 25%;
	}
	.col-lg-offset-2 {
		margin-left: 16.66666667%;
	}
	.col-lg-offset-1 {
		margin-left: 8.33333333%;
	}
	.col-lg-offset-0 {
		margin-left: 0;
	}
}
/*
	END Bootstrap grid system styles
*/
/*
	Small fixes to get bootstrap grid system to work
*/
.container,
.container-fluid,
.row,
.row > div {
	box-sizing: border-box;
}
#bodyContent > .container-fluid {
	margin-left: -15px;
	margin-right: -15px;
}
.container-fluid.full {
	padding-left: 0;
	padding-right: 0;
}
/*
	END Small fixes to get bootstrap grid system to work
*/

/* Review Applications */
#acceptedPrintFormat button {
	width: 100%;
}
#acceptedPrintFormat button + button {
	margin-top: 0.8rem;
}
/* End Review Applications */

/* Breathing room for fontawesome-icon'd buttons */
button > .fa:first-child:not(.iconOnly) {
	margin-right: 0.4rem;
}
.btn-group > button.dropdown-toggle > .fa-caret-down {
	margin-right: 0;
	margin-left: 0.4rem;
}

fieldset fieldset {
	box-sizing: border-box;
}
fieldset + fieldset {
	margin-top: 1rem;
}
