:root {
	--color__gray-100: #f7f8f8;
	--color__gray-200: #f1f3f3;
	--color__gray-300: #e1e4e5;
	--color__gray-400: #c8cdd0;
	--color__gray-500: #a0a8ab;
	--color__gray-600: #697277;
	--color__gray-700: #464f53;
	--color__gray-800: #2d3234;
	--color__gray-900: #1c1f21;

	--color__white: #fff;

	--color__primary-100: #f5faff;
	--color__primary-200: #e6f3fe;
	--color__primary-300: #c4e0fd;
	--color__primary-400: #4493ee;
	--color__primary-500: #1966eb;
	--color__primary-600: #124fd3;
	--color__primary-700: #0935a5;
	--color__primary-800: #022a73;
	--color__primary-900: #042058;

	--color__nwea-primary-100:   #146193;
	--color__nwea-secondary-100: #ffc20e;
	--color__nwea-accent-100:    #2190a6;

	--font-size-sm4: .5rem;
	--font-size-sm3: .625rem;
	--font-size-sm2: .75rem;
	--font-size-sm1: .86rem;
	--font-size:     1rem;
	--font-size-lg1: 1.125rem;
	--font-size-lg2: 1.25rem;
	--font-size-lg3: 1.5rem;
	--font-size-lg4: 1.65rem;
	--font-size-lg5: 2.125rem;

	--font-weight--normal:   400;
	--font-weight--semibold: 600;
	--font-weight--bold:     700;

	--border-radius:     .375rem;
	--border-radius--sm: .25rem;
}

body {
	background:  var(--color__white);
	margin:      0;
	padding:     0;
	font-size:   var(--font-size);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Noto Sans", sans-serif;
	color:       var(--color__gray-800);
	line-height: 1.5;
}
section { margin-bottom: 2rem; }
img {
	border: 0;
}
a {
	border: 0;
	color:  var(--color__nwea-accent-100);
}
a:link, a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a[data]:hover:after {
	content: attr(data);
	padding: 8px 10px;
	color: #444;
	position: absolute;
	white-space:normal;
	z-index: 2;
	border-radius: 3px;
	border:1px solid #999;
	background-color:#EEE;
	margin-top:-24px;
	margin-left:8px;
	width:260px;
	font-weight:normal;
	font-size:12px;
	line-height:14px;
	text-align:left;
	text-decoration:none;
}

a[data].iconData:hover:after {
	content: attr(data);
	padding: 18px 8px 10px 10px;
	color: #ccc;
	white-space:normal;
	z-index: 2;
	border-radius: 4px;
	border-top-left-radius: 0;
	border-top:none;
	border-left:none;
	border-right:none;
	border-bottom: 1px solid #000;
	background: url(../img/arrowData1.png) no-repeat top left;
	margin-top:24px;
	margin-left:-50px;
	width:150px;
}

h1, h2, h3 { margin: 0 0 .3em; }
h4, h5, h6 { margin: 0 0 .5em; }

h1, h2, h3 { font-weight: var(--font-weight--semibold); }
h4, h5, h6 { font-weight: var(--font-weight--bold); }

h1 {
	font-size: var(--font-size-lg5);
	font-weight: var(--font-weight--semibold);
}
h2 { font-size: var(--font-size-lg4); }
h3 { font-size: var(--font-size-lg3); }
h4 { font-size: var(--font-size-lg2); }
h5 { font-size: var(--font-size-lg1); }
h6 { font-size: var(--font-size); }

p { margin: 0 0 1.5em; }
ul {
	list-style: none;
	margin:     0;
	padding:    0;
}
.list--divided li {
	border-bottom: 1px dotted var(--color__gray-400);
	padding: .5rem .25rem;
}

.clear {
	clear:both;
}
/* .left {
	float:left;
}
.right {
	float:right;
} */
.center {
	text-align:center;
}

/* Flexbox layout */
.flex-grid  { display: flex; }
.fg--start  { align-items: flex-start; }
.fg--middle { align-items: center; }
.fg--end 	{ justify-content: flex-end; }

.grid { display: grid; }
.g_col-2 { grid: auto-flow / 1fr 1fr; }

/* Inputs */
.input__label {
	display:       inline-block;
	font-size:     var(--font-size-sm1);
	font-weight:   var(--font-weight--semibold);
	margin-bottom: .25em;
}
.dropdown {
	background-color: var(--color__white);
	border:           1px solid var(--color__gray-300);
	border-radius:    .25rem;
	margin-bottom:    1rem;
	padding:          .5rem;
	width:            100%;
}
.dropdown:hover {
	border:1px solid #7f8ed8;
}

/* all pages */
.wrapper {
	width:  68rem;
	margin: 0 auto;
}

.page_header,
.page_content,
.page_footer {
	margin:    0 auto;
	max-width: 76rem;
}
.page_header { height: 100%; }
.page_content { padding: 1.5rem 2rem; }
.page_content.grid {
	gap:  2rem;
	grid: [row1-start] "main sidebar" 1fr [row1-end]
			/ 2fr 1fr;
}
.page_content > section	 { grid-area: main; }
.page_content > .sidebar { grid-area: sidebar; }

.page_footer .copyright {
	color:     var(--color__gray-700);
	font-size: var(--font-size-sm3);
}

.topBar {
	background: var(--color__nwea-primary-100);
	min-height: 48px;
	padding:    0 1.5rem;
}
.topNav {
	color:       var(--color__white);
	flex:        1 auto;
	font-size:   var(--font-size-sm2);
	font-weight: var(--font-weight--semibold);
	height:      100%;
}
.topNav a {
	padding:         0 .5rem;
	color:           var(--color__gray-100);
}
.topNav a:hover,
.topNav a.selected {
	color:            var(--color__white);
	background-color: var(--color__primary-500);
	text-decoration:  none;
}
}
.contentWrap {
	background: #fff url('../img/bkgNavLeftSolid.png') top left repeat-y;
	min-height:400px;
	width: 960px;
	margin: 16px auto;

}
.content {
	float:left;
	width:780px;
	min-height:600px;
	position:relative;
	z-index:1;
	-moz-box-shadow: -3px -20px 3px 1px rgba(68,68,68,0.4);
	-webkit-box-shadow: -3px -20px 3px 1px rgba(68,68,68,0.4);
	box-shadow: -3px -20px 3px 1px rgba(68,68,68,0.4);
}
.navLeft {
	float:left;
	width:180px;
	min-height:300px;
	border-bottom:1px solid #2e2e2e;
}
.navLeft ul {
}
.navLeft li {
	float: left;
	background: url('../img/bkgNavLeftWide.png') top left repeat-x;
	width:180px;
}
.navLeft li a {
	display: block;
	height:50px;
	color: #EEE;
	text-decoration: none;
	line-height:50px;
	font-weight:600;
	font-size:14px;
	text-shadow: 0px 1px 1px #333;
	border-left:1px solid #333;
	padding-left:24px;
}
.navLeft li a:hover {
	text-decoration: none;
	background-image:none;
	background-color:#333;
	color: #FFF;
}
.navLeft li a.selected {
	background: url('../img/bkgNavLeftWideSelected.png') top left repeat-x;
	color: #FFF;
	text-shadow: 0px 1px 1px #555555;
	font-weight:700;
	font-size:14px;
}
.navLeft li a.navSection {
	color:#e5e5e5;
	background-color:#0183d8;
	border-top:1px solid #0072bd;
	height:32px;
	line-height:32px;
	font-weight:normal;
	text-shadow:none;
	padding-left:24px;
	font-size:13px;
}
.navLeft li a.navSection:hover {
	text-decoration: none;
	background-color:#0075c2;
	background-image:none;
	color:#FFF;
	text-shadow: 0px 1px 1px #555555;
}
.navLeft li a.navSectionSelected {
	color:#FFF;
	border-top:1px solid #0072bd;
	height:32px;
	line-height:32px;
	font-weight:700;
	text-shadow: 0px 1px 1px #555;
	padding-left:24px;
	background:#0183d8 url('../img/bkgNavLeftSectionSelected2.png') top left no-repeat;
	box-shadow:none;
	font-size:13px;
}
.profileBox {
	height:90px;
	background-color:#333;
	padding:10px;
	font-style:italic;
	font-weight:600;
	font-size:13px;
	color:#eee;
	text-shadow: 0px 1px 1px #000;
	line-height:26px;
}
.profileBox b {
	color:#27a4f1;
	font-size:16px;
}
.profileBox .btn {
	margin-top:6px;
	font-style:normal;
	font-size:12px;
	float:left;
}
.stuProfileName {
	float:left;
	width:230px;
	max-width:230px;
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow:hidden;
}
#skip a, #skip a:hover, #skip a:visited {
	position:absolute;
	left:0px;
	top:-500px;
	width:1px;
	height:1px;
	overflow:hidden;
}
.footer {
	background: var(--color__nwea-secondary-100);
	padding:    1.5rem 2rem 2rem;
}
.footer h1 {
	font-size:18px;
	font-weight:normal;
	margin:0px;
}
.footer a {
	color:#DDD;
	text-decoration:none;
}
.footer a:hover {
	text-decoration:underline;
}
.contentFooter {
	margin:18px -20px 0;
	padding:18px 20px 0;
	border-top:1px solid #ddd;
}
.TEALogo {
	float: left;
	margin-left: 10px;
}
/* img */

.logo_masthead {
	flex:   0 0;
	height: 20px;
	margin: .5rem;
}
img.logoEts {
	float:left;
	margin:9px 8px 0px 24px;
	width:480px;
	height:36px;
}
img.logoLogin {
	float:left;
	margin:9px 8px 0px 0px;
	width:188px;
	height:49px;
}
img.icnTopNav {
	margin-right: .5em;
}
img.profilePicMain {
	margin:0px 13px 0px 0px;
	float:left;
	width:64px;
	height:80px;
	border:5px solid #fff;
}
img.icnNavLeft {
	margin:12px 24px 0px 0px;
	float:right;
}
img.icnFancyHead {
	margin:12px 14px -6px 20px;
}
img.icnHeader {
	margin:2px 14px 0px 0px;
	float:left;
}
img.quantStatus {
	margin:8px 0px -6px 10px;
}
img.icnHeaderLock {
	margin:2px 0px 0px;
	float:right;
}
img.icnFormSectionHeader {
	margin:4px 12px -8px 0px;
	float:left;
}
img.icnNavLeftTop {
	margin:12px 16px 0 0px;
}
img.icnQuick {
	margin:0px 10px -6px 20px;
	float:left;
}
img.icnDashboard {
	margin:4px 9px -4px 0px;
}
img.icnPagination {
	margin:4px 0px -6px 0px;
}
img.icnSteps {
	float:right;
	margin:-3px 0px -6px 12px;
}
img.icnStepsPassword {
	float:right;
	margin:9px 0px -6px 14px;
}
img.remove {
	margin:0px 0px -7px 10px;
}
img.icnActions {
	margin:0px 12px 0px 0px;
}
img.icnActionsWindow {
	margin:0px 12px -6px 0px;
}
img.shadow {
	-moz-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	-webkit-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
}
img.icnMonitorGlance {
	margin:0px 8px -2px 0px;
	float:left;
}
img.icnPrintSm {
	margin:0px 4px -1px 0px;
	width:16px;
	height:14px;
}
img.icnSearchSmall {
	margin-top:3px;
	float:right;
	width:16px;
	height:17px
}
img.icnErrorQuant {
	margin:2px 0px -4px 6px;
	width:16px;
	height:17px
}
img.crumb {
	margin:0px 18px -3px;
	height:14px;
	width:7px;
}
img.crumbIcn {
	margin-bottom:-4px;
}
img.errorNoteIcon {
	margin: 0px 5px -2px 0px;
	padding:0px;
	height:11px;
	width:11px;
}
img.footerLogo {
	margin:2px 10px -5px 0px;
}
img.stu {
	margin-right:21px;
}
img.rep {
	margin-right:26px;
}
img.icnPdfHelp {
	float:left;
	margin:0 8px 8px 0;
	width:36px;
	height:44px;
}
img.icnDash {
	margin:0px 8px -1px 0px;
}
img.sort {
	margin:0px 0px 1px 8px;
	width:9px;
	height:5px;
}
img.tableHeaderIcn {
	margin:-6px 0px -7px;
	;
}
.icon {
	height: 24px;
	width:  24px;
}
.btn .flex-grid 	{ gap: .375rem; }
.btn .icon--right { order: 2; }

.icon__file-download { background: url(/img/icon__file-download.svg) no-repeat; }
.icon__external-file { background: url(/img/icon__external-link.svg) no-repeat; }

/* buttons */

.btn {
	background:    var(--color__nwea-secondary-100);
	border-radius: .25rem;
	color:         var(--color__gray-800);
	display:       inline-block;
	font-size:     var(--font-size-sm1);
	font-weight:   var(--font-weight--semibold);
	padding:       .375rem 1rem;

	-webkit-overflow-scrolling: touch;
}
.btn:hover {
	text-decoration: none;
	opacity:         .8;
}
.btn_secondary {
	background: transparent;
	padding:    .375rem;
}
.btn_secondary:hover {
	background: var(--color__gray-200);
	opacity:    1;
}
.btn_link {
	background:  transparent;
	font-weight: var(--font-weight--normal);
	padding:     0;
}
.btn_link:hover {
	color:           var(--color__nwea-accent-100);
	opacity:         1;
	text-decoration: underline;
}

.btn--wide {
	display:    block;
	padding:    .5rem 1rem;
	text-align: center;
}
a.search {
	padding:6px 6px;
	height:16px;
	border-radius: 0;
	margin-left:-1px;
	box-shadow:none;
}
a.btnRed {
	background: #ae0c12 url('../img/bkgBtnRed.png') top left repeat-x;
	color:#FFFFFF;
	font-size:12px;
	font-weight:bold;
	line-height:16px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	text-shadow: 0px 1px 1px #555;
	padding:5px 16px;
	border:1px solid #9e0b0f;
	-moz-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	-webkit-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
}
a.btnRed:hover {
	text-decoration:none;
	background-image:none;
	background-color:#ae0c12;
}
a.btnBlack {
	background: #404040 url('../img/bkgBtnBlack.png') top left repeat-x;
	color:#FFFFFF;
	font-size:12px;
	font-weight:bold;
	line-height:16px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	text-shadow: 0px 1px 1px #000;
	padding:5px 16px;
	border:1px solid #0f1414;
	-moz-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	-webkit-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
}
a.btnBlack:hover {
	text-decoration:none;
	background-image:none;
	background-color:#252525;
}

a.btnAppeal {
	float:left;
	background-color: #eee;
	color:#333;
	font-size:12px;
	padding-top:4px;
	height:30px;
	width:60px;
	text-align:center;
	margin-right: 6px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	text-align:center;
	border:1px solid #ccc;
	-moz-box-shadow: 0px 1px 3px rgba(51,51,51,0.3);
	-webkit-box-shadow: 0px 1px 3px rgba(51,51,51,0.3);
	box-shadow: 0px 1px 3px rgba(51,51,51,0.3);
}
a.btnAppeal:hover {
	text-decoration:none;
	background-image:none;
	background-color:#ddd;
}

a.btnReport {
	float:left;
	background: #eee url('../img/bkgBtnReport.jpg') top left no-repeat;
	color:#333;
	font-size:12px;
	width:180px;
	height:80px;
	line-height:80px;
	margin: 30px 44px 0px 0px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	text-align:center;
	border:1px solid #eee;
	-moz-box-shadow: 0px 1px 3px rgba(51,51,51,0.4);
	-webkit-box-shadow: 0px 1px 3px rgba(51,51,51,0.4);
	box-shadow: 0px 1px 3px rgba(51,51,51,0.4);
}
a.btnReport:hover {
	text-decoration:none;
	background-image:none;
	background-color:#eee;
}
/* spacing */
.lSix {
	margin-left:6px;
}
.borderBottom {
	border-bottom:1px solid #eee;
	padding-bottom:12px;
	margin-bottom:12px;
}
/* pages - login */


.wrapperLogin {
	width: 380px;
	margin: 0 auto;
}
.loginWelcome {
	margin:30px 0px 24px;
	padding:0px;
	text-align:center;
	font-style:italic;
	font-size:18px;
	text-shadow: 0px -1px 1px #555;
	color:#fff;
}
.loginWelcome h1 {
	font-size:30px;
	font-weight:bold;
	padding:0px;
	margin:8px 0px;
	color:#fff;
	text-shadow: 0px -1px 1px #555;
	font-style:normal;
}
.login {
	height:320px;
	line-height:26px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	background-color:#333333;
	-moz-box-shadow: 0px 1px 12px rgba(255,255,255,0.4);
	-webkit-box-shadow: 0px 1px 12px rgba(255,255,255,0.4);
	box-shadow: 0px 1px 12px rgba(255,255,255,0.2);
}
.login .label {
	color:#ddd;
	padding-left:24px;
	padding-top:12px;
	font-size:14px;
}
.login h1 {
	padding-left:24px;
	margin:0px;
	font-size: 18px;
	font-weight: bold;
	color:#fff;
	background:  url('../img/bkgLoginHeader.png') top left repeat-x;
	text-shadow: 0px 1px 1px #666;
	height:60px;
	line-height:60px;
	border-bottom:1px solid #85d1ff;
	-moz-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-moz-border-top-right-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-right-radius: 3px;
}
.loginFooter {
	font-size:12px;
	color:#fff;
	margin-top:14px;
	text-align:center;
	line-height:20px;
}
.loginFooter a {
	color:#fff;
	text-decoration:none;
	font-weight:bold;
}
.loginFooter a:hover {
	text-decoration:underline;
}


.loginPortal {
	/*height:320px;*/
	line-height:26px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	background-color:#333333;
	-moz-box-shadow: 0px 1px 12px rgba(255,255,255,0.4);
	-webkit-box-shadow: 0px 1px 12px rgba(255,255,255,0.4);
	box-shadow: 0px 1px 12px rgba(255,255,255,0.2);
}
.loginPortal .label {
	color:#ddd;
	padding-left:24px;
	padding-top:12px;
	font-size:14px;
}

.loginPortal h3{
	padding-left:24px;
	margin:0px;
	font-size: 18px;
	font-weight: bold;
	color:#fff;
	background:  url('../img/bkgLoginHeader.png') top left repeat-x;
	text-shadow: 0px 1px 1px #666;
	height:60px;
	line-height:60px;
	border-bottom:1px solid #85d1ff;
	-moz-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
	-webkit-border-top-left-radius: 3px;
	-moz-border-top-right-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	
}


/* pages - dashboard */


.contentPage {
	padding:14px 20px 20px;
	min-height:600px;
	background: #fff url('../img/bkgHeaderPage.png') top left repeat-x;
	font-size:13px;
}
.contentPage h1 {
	height:46px;
	line-height:34px;
	margin:0px;
	padding:0px;
	font-size:20px;
	font-weight:bold;
	color:#FFF;
	text-shadow: 0px 1px 1px #555555;
}
.contentPage h2 {
	color:#017fd2;
	padding:0px;
	margin:16px 0px;
	font-size:16px;
	font-weight:bold;
}
.contentPage h3 {
	color:#017fd2;
	padding:0px;
	margin:14px 0px;
	font-size:14px;
	font-weight:bold;
}
.crumb {
	height:40px;
	line-height:40px;
	color:#fff;
	font-size:12px;
	letter-spacing:0.2px;
	text-shadow: 0px 1px 1px #444444;
	font-weight:600;
}
.crumb a {
	color:#eee;
	text-decoration:none;
	text-shadow:none;
}
.crumb a:hover {
	color:#fff;
	text-decoration:none;
	text-shadow: 0px 1px 1px #444444;
}
.description {
	color:     var(--color__gray-700);
	font-size: var(--font-size);
}
.contentDashboard {
	background:  url('../img/bkgHeaderDashboard.png') top left;
	color:#fff;
	padding: 16px 20px 0px;
	height:40px;
	font-size:13px;
	line-height:22px;
	margin:0px -20px 0px;
}
.contentDashboard h1 {
	margin-bottom:2px;
	margin-top:6px;
	padding:0px;
}
.contentDashboard h3 {
	margin-bottom:8px;
	margin-top:0;
	padding:0px;
	font-size:14px;
	color:#fff;
	float:left;
	font-weight:normal;
}
.contentDashboard a {
	color:#038de7;
	text-decoration:none;
	float:left;
}
.contentDashboard a:hover {
	text-decoration:underline;
}
.contentDashboardPage {
	padding: 20px 20px;
	min-height:300px;
	margin:0px -20px -20px;
}
.tabsDashboard {
	margin-top:-31px;
}
.tabsDashboard ul {
}
.tabsDashboard li {
	float: left;
	font: bold 12px/20px Tahoma, Geneva, sans-serif;
	margin-right:6px;
}
.tabsDashboard li a {
	background: url('../img/bkgTab.png') center left repeat-x;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	text-shadow: 0px 1px 1px #555;
	padding: 5px 30px 6px 30px;
	overflow: visible;
	-moz-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-border-top-right-radius: 4px;
}
.tabsDashboard li a:hover {
	text-decoration:none;
	background: #28aafa url('../img/bkgTabHover.png') center left repeat-x;
}
.tabsDashboard li a.selected {
	color: #017fd2;
	background-image:none;
	background-color:#fff;
	-moz-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	text-shadow:none;
	z-index: 1;
	margin-bottom: -1px;
}
.news {
	margin-top:20px;
}
.news i {
	color:#5189ad;
	font-style:normal;
}
.news ul {
}
.news li {
	float: left;
	margin-bottom:20px;
	line-height:20px;
}
.news li a {
	width:600px;
	height:72px;
	padding:8px 50px 0px 90px;
	display: block;
	color: #193452;
	text-decoration: none;
	font-size:13px;
	background: url('../img/bkgNews.png') top left no-repeat;
}
.news li.orders a {
	background: url('../img/bkgNewsOrder.png') top left no-repeat;
}
.news li.orders a:hover {
	text-decoration: none;
	background: url('../img/bkgNewsOrderHover.png') top left no-repeat;
}
.news li.alert a {
	background: url('../img/bkgNewsAlert.png') top left no-repeat;
}
.news li.alert a:hover {
	text-decoration: none;
	background: url('../img/bkgNewsAlertHover.png') top left no-repeat;
}
.news li.alert b {
	color:#cc0000;
}
.news li a:hover {
	text-decoration: none;
	background: url('../img/bkgNewsHover.png') top left no-repeat;
}
.news li a.selected {
	background: url('../img/bkgNavLeftWideSelected.png') top left no-repeat;
}
.pagination {
	color:#333;
	float:right;
	margin-top:14px;
}
.pagination b {
	margin:0px 10px;
}
.pagination a {
	color:#0185db;
}
.fancy {
	padding:0px 24px 20px 24px;
	font-size:13px;
	background-color:#f6f6f6;
}
.fancy.normal h1 {
	margin:0px -24px 12px;
	font-size: 18px;
	font-weight: bold;
	color:#fff;
	background: #fff url('../img/bkgNavLeftWideFancy.png') top left repeat-x;
	text-shadow: 0px 1px 1px #666;
	height:53px;
	padding-top:5px;
}
.fancy.error {
	color:#993333;
}
.fancy.error h1 {
	margin:0px -24px 12px;
	font-size: 18px;
	font-weight: bold;
	color:#fff;
	background: #fff url('../img/bkgFancyErrorHead.png') top left repeat-x;
	text-shadow: 0px 1px 1px #666;
	height:53px;
	padding-top:5px;
}
.fancy.message {
	color:#fff;
	background-color:#0185db;
}
.fancy.message h1 {
	margin:0px -24px 12px;
	font-size: 18px;
	font-weight: bold;
	color:#fff;
	background: #fff url('../img/bkgNavLeftWide.png') top left repeat-x;
	text-shadow: 0px 1px 1px #666;
	height:53px;
	border-bottom:1px solid #257492;
	padding-top:5px;
}
.fancyMessageBottom {
	border-top:1px solid #e6e6e6;
	padding: 16px 20px;
	background-color:#f6f6f6;
}
.bkgDarkBlue {
	background-color:#294e79;
}
.downloadTemplate {
	float:right;
	margin-top:4px;
	font-size:16px;
	font-weight:bolder;
}
.downloadTemplate a {
	color:#0185db;
}
.uploadBar {
	border:1px solid #dedede;
	height:60px;
	padding:0px 20px;
	line-height:60px;
	background: url('../img/bkgUpload.png') top left repeat-x;
}
.uploadBtnRight {
	float:right;
	height:60px;
	border-left:1px solid #c0c0c0;
	padding:0px 0px 0px 16px;
}
.uploadedFiles {
	margin:18px 0px 14px 0px;
}
.uploadedFiles h2 {
	color:#0185db;
	margin:0px 0px 6px 0px;
	padding:0px;
}
.uploadedFiles b {
	color:#0185db;
	font-weight:bold;
}
.uploadedButtons {
	margin:20px 0px;
	border-bottom:1px solid #ddd;
	padding-bottom:22px;
}
.steps {
	float:right;
	line-height:32px;
	font-size:19px;
	font-weight:bold;
	color:#fff;
}
.userNumber {
	color:#213f62;
	font-weight:bold;
	font-size:18px;
	float:right;
}
.userNumber a {
	color:#c30f15;
	text-decoration:underline;
}
.capacityBox {
	background:    var(--color__gray-100);
	border-radius: .375rem;
	border:        1px solid var(--color__gray-400);
	padding:       1rem;
}
.calcBox {
	min-height:    48px;
	background:    var(--color__primary-200);
	border:        1px solid var(--color__primary-400);
	border-radius: var(--border-radius);
	padding:       .5rem;
	margin-top:    1rem;
	text-align:    center;
}
#calcString { font-size: var(--font-size-sm1); }

#capacityAnswer {
	font-size:   var(--font-size-lg3);
	font-weight: var(--font-weight--bold);
	color:       var(--color__nwea-primary-100);
}

.calculateBox {
	background-color: var(--color__gray-200);
	border:           1px solid var(--color__gray-400);
	border-radius:    var(--border-radius--sm);
	padding:          1rem;
}
.calculateBox .inputContainer { margin-bottom: .5rem; }
.calculateBox .input__label 	{ display: inline; }

.monitorBox {
	width:132px;
	height:90px;
	font-size:14px;
	color:#FFF;
	text-align:center;
	font-weight:bold;
	padding-top:46px;
	line-height:24px;
	float:left;
	margin:6px 14px 0px 0px;
}
.monitorBox h3 {
	font-size:26px;
	color:#fff;
	margin:0px;
	padding:0px;
	font-weight:bold;
}
.monitorBox.registered {
	background: url(../img/bkgMonitorRegistered2.png) top center no-repeat;
}
.monitorBox.enrolled {
	background: url(../img/bkgMonitorEnrolled2.png) top center no-repeat;
}
.monitorBox.testing {
	background: url(../img/bkgMonitorTesting.png) top center no-repeat;
}
.monitorBox.completed {
	background: url(../img/bkgMonitorCompleted.png) top center no-repeat;
}
.monitorBox.errors {
	background: url(../img/bkgMonitorErrors.png) top center no-repeat;
}
.monitorCenters {
	width:320px;
	font-weight:bold;
	font-size:32px;
	line-height:22px;
	color:#0185db;
	float:right;
	margin-top:-10px;
}
.monitorCenters h2 {
	color:#0185db;
	font-size:18px;
	line-height:18px;
	font-weight:bold;
	border-bottom:1px solid #e3e3e3;
	width:100%;
}
.status {
	margin:5px 0px 24px;
	border-bottom:1px solid #ddd;
	padding-bottom:8px;
}
.status b {
	color:#017fd2;
	font-size:14px;
	font-weight:bold;
	line-height:22px;
}
.status ul {
	margin:0px 0px -9px 0px;
	padding:0px;
}
.status li {
	float: left;
	font:  bold 12px/20px Tahoma, Geneva, sans-serif;
	margin:0px 4px 0px 0px;
}
.status li a {
	background: url('../img/bkgTab.png') center left repeat-x;
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	text-shadow: 0px 1px 1px #555;
	padding: 5px 13px 6px 13px;
	overflow: visible;
	-moz-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-border-top-right-radius: 4px;
}
.status li a:hover {
	text-decoration:none;
	background: #28aafa url('../img/bkgTabHover.png') center left repeat-x;
}
.status li a.selected {
	color: #017fd2;
	background-color:#FFF;
	background-image:none;
	-moz-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-webkit-border-top-left-radius: 4px;
	-moz-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	-webkit-border-top-right-radius: 4px;
	border:1px solid #ccc;
	border-bottom:1px solid #fff;
	padding-bottom:7px;
	text-shadow:none;
	z-index: 1;
	margin-bottom: -2px;
}
hr.form {
	border: 0;
	color: #ddd;
	background-color: #ddd;
	height: 1px;
	margin:16px 0px 24px;
}
hr.formMid {
	border: 0;
	color: #f2f2f2;
	background-color: #f2f2f2;
	height: 1px;
	margin:16px 0px 24px;
}
.boxReport {
	width:740px;
	margin-bottom:24px;
	padding-bottom:8px;
	border-bottom:1px solid #eee;
}
.boxReport b {
	font-size:14px;
	line-height:22px;
}
.boxReport .mid {
	width:500px;
	float:left;
}
.boxTrack {
	font-weight:bold;
	margin:0px 50px 10px 0px;
	line-height:24px;
}
.scoringResponse {
	width:420px;
	height:430px;
	padding:10px;
	max-width:420px;
	overflow-y:auto;
	border:1px solid #ddd;
}
.scoringBox {
	width:250px;
	background-color:#e7ecf5;
	padding:0 12px 18px;
	margin-bottom:20px;
	margin-top:-4px;
}
.scoringBox h2 {
	font-size:16px;
	float:left;
	margin:0;
	padding:8px 0;
}
.scoringBox td {
	border-bottom:1px solid #d6ddeb;
	padding:3px 0;
}
/* reports */

.reportCriteria {
	color:#777;
	font-size:10px;
	padding:0 20px;
	height:25px;
	line-height:25px;
	border-bottom:1px solid #ddd;
	border-top:1px solid #ddd;
	margin:0px -20px 20px;
	background-color:#EFEFEF;
}
.reportCriteria a {
	color:#777;
	text-decoration:none;
	margin-right:6px;
	border-right:1px solid #ccc;
	height:25px;
	display:inline-block;
}
.reportCriteria img.selector {
	margin:1px 7px 1px 5px;
}
.reportCriteria a:hover {
	color:#000;
	text-decoration:none;
}
.reportCriteria p {
	border-right:1px solid #ccc;
	padding:0 8px 0 0;
	margin:0 8px 0 0;
	float:left;
	height:25px;
}
.reportCriteria .selection {
	max-width:100px;
	overflow:hidden;
	height:25px;
	line-height:25px;
	margin-bottom:-9px;
	display: inline-block;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.reportCriteria a.filter {
	background: url(../img/bkgEditCriteria.png) #D8D8D8 top left repeat-x;
	padding:4px 10px 0;
	height:27px;
	line-height:26px;
	border-left:1px solid #e2e2e2;
	margin-right:-20px;
}
.reportCriteria a.filter:hover {
	background-color: #DADADA;
	background-image:none;
}
.reportCriteria .dropdownStyle select {
	background: transparent;
	width: 128px;
	border: 0;
	border-radius: 0;
	-webkit-appearance: none;
	font-size: 11px;
	color:#777;
	cursor:pointer;
}
.reportCriteria .dropdownStyle {
	border: 1px solid #ddd;
	height:15px;
	padding:3px 3px 3px 0;
	margin-right:10px;
	margin-top:1px;
	margin-bottom:1px;
	width: 100px;
	overflow: hidden;
	background: url(../img/down_arrow_select.png) no-repeat right #f5f5f5;
	border: 1px solid #ccc;
}
.reportCriteria .dropdownStyle:hover {
	border: 1px solid #aaa;
	background-color:#fff;
}
.choose {
	border: 1px solid #ddd;
	margin: 10px 18px 10px 0;
	float:left;
	background-color:#FFF;
	font-size:12px;
	color:#666;
}

.choose label {
	padding:8px 10px 8px 6px;
	width:190px;
	cursor:pointer;
	float:left;
	text-overflow: ellipsis;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
}
.choose:hover {
	color:#000;
	border: 1px solid #ccc;
	background-color:#f8f8f8;
}
.percentile {
	float:right;
	width:90px;
	color:#777;
	font-size:10px;
	line-height:14px;
	margin-top:-10px
}
.percentile b {
	font-size:21px;
	font-weight:normal;
	color:#444;
	line-height:18px;
}
.percentile i {
	font-size:9px;
	font-style:normal;
	line-height:9px;
}
.reportStudentName {
	color:#888;
	font-size:18px;
	border-bottom:1px solid #eee;
	padding-bottom:6px;
}
#disclaimer {
	font-size: 10px;
	color: #787777;
	margin-top: 16px;
	margin-bottom:10px;
	padding:6px 12px;
	line-height:12px;
}
.boxOverview {
	width:150px;
	height:80px;
	text-align:center;
	font-size:12px;
	color:#888;
	padding:12px 0 0;
	margin-right:20px;
	background: #CCD6DC url('../img/bkgBoxDn.png') top left no-repeat;
	line-height:16px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border:1px solid #BEBEBF;
	-moz-box-shadow: 0px 1px 2px rgba(68,68,68,0.4);
	-webkit-box-shadow: 0px 1px 2px rgba(68,68,68,0.4);
	box-shadow: 0px 1px 2px rgba(68,68,68,0.4);
}
.boxOverview:hover {
	border:1px solid #999999;
	background-image:none;
	background-color:#CDD6DC;
	cursor:pointer;
}
.boxOverview b {
	font-size:32px;
	line-height:40px;
	font-weight:normal;
}
.boxOverview.selected {
	border:1px solid #999999;
	background-image:none;
	background-color:#fff;
	color:#222;
	cursor:default;
	-moz-box-shadow: 0px 1px 2px rgba(68,68,68,0.4);
	-webkit-box-shadow: 0px 1px 2px rgba(68,68,68,0.4);
	box-shadow: 0px 1px 2px rgba(68,68,68,0.4);
}
.selectedArrow {
	margin-top:-1px;
	float:left;
	margin-left:196px;
}
.boxOverview .bar {
	width:150px;
	height:20px;
	float:left;
	margin-top:4px;
}
.boxOverview .bar .section {
	float:left;
	height:20px;
}
.boxOverview .barSideLeft {
	width:14px;
	height:92px;
	float:left;
	margin-top:-28px;
	background-color:#8ac752;
	border-top-left-radius:4px;
	border-bottom-left-radius:4px;
	-moz-border-top-left-radius:4px;
	-moz-border-bottom-left-radius:4px;
	-webkit-border-top-left-radius:4px;
	-webkit-border-bottom-left-radius:4px;
}
.boxOverview .barSideLeft .coverage {
	border-top-left-radius:4px;
	-moz-border-top-left-radius:4px;
	-webkit-border-top-left-radius:4px;
	width:100%;
	background-color:#f59798;
}
.boxOverview .barSideRight {
	width:14px;
	height:92px;
	float:right;
	margin-top:-28px;
	background-color:#8ac752;
	border-top-right-radius:4px;
	border-bottom-right-radius:4px;
	-moz-border-top-right-radius:4px;
	-moz-border-bottom-right-radius:4px;
	-webkit-border-top-right-radius:4px;
	-webkit-border-bottom-right-radius:4px;
}
.boxOverview .barSideRight .coverage {
	border-top-right-radius:4px;
	-moz-border-top-right-radius:4px;
	-webkit-border-top-right-radius:4px;
	width:100%;
	background-color:#f59798;
}
.roundBottom {
	border-bottom-right-radius:5px;
	border-bottom-left-radius:5px;
	-moz-border-bottom-right-radius:5px;
	-moz-border-bottom-left-radius:5px;
	-webkit-border-bottom-right-radius:5px;
	-webkit-border-bottom-left-radius:5px;
}
.badge {
	float:left;
	text-align:center;
	margin-top:10px;
}
.strengthsComp {
	width:220px;
	float:right;
	text-align:center;
	font-size:11px;
	line-height:10px;
	margin-top:10px;
}
.strengthsComp .row {
	height:66px;
	border-top:1px dashed #DEDDDD;
	padding:7px 0 4px;
}
.strengthsComp .avg {
	width:109px;
	height:31px;
	border-right:1px solid #888;
	float:left;
	margin-top:3px;
	margin-bottom:2px;
	margin-right:0px;
}
.strengthsComp .pos {
	vertical-align:top;
	height:25px;
	float:left;
	background-color:#8AC651;
	margin-top:3px;
}
.strengthsComp .scorePos {
	font-size:14px;
	color:#006600;
	float:left;
	margin-left:6px;
	margin-top:10px;
}
.strengthsComp .neg {
	vertical-align:top;
	height:25px;
	float:right;
	background-color:#EF7959;
}
.strengthsComp .scoreNeg {
	font-size:14px;
	color:#993300;
	float:right;
	margin-right:6px;
	margin-top:6px;
}
.strengthsCompStu {
	width:370px;
	float:right;
	text-align:center;
	font-size:11px;
	line-height:10px;
	margin-top:4px;
}
.strengthsCompStu .col {
	background-color:#F2F2F2;
	height:190px;
	width:90px;
	border-left:1px dashed #DEDDDD;
	padding:10px 0 4px;
	float:left;
	margin-top:8px;
}
.strengthsCompStu .avg {
	vertical-align:bottom;
	width:60px;
	height:90px;
	border-bottom:1px solid #888;
	float:left;
	margin-top:4px;
	margin-left:15px;
}
.strengthsCompStu p {
	margin: 4px 0;
	padding:0;
}
.strengthsCompStu .neg {
	vertical-align:top;
	width:29px;
	float:left;
	background-color:#EF7959;
	margin-bottom:3px;
	margin-left:29px;
}
.strengthsCompStu .scoreNeg {
	font-size:12px;
	color:#993300;
	float:left;
	width:90px;
	float:left;
	margin-top:3px;
}
.strengthsCompStu .pos {
	width:29px;
	background-color:#8AC651;
	margin-left:14px;
	float:left;
}
.strengthsCompStu .scorePos {
	font-size:12px;
	color:#006600;
	width:60px;
	margin-bottom:3px;
	float:left;
}
.boxCompleted {
	width:88px;
	height:62px;
	float:left;
	font-size:12px;
	line-height:14px;
	color:#888;
	padding:8px;
	margin:12px 8px;
	background: #EEEEEE url('../img/bkgBoxCompleteDn.png') top left no-repeat;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border:1px solid #AAAAAA;
	-moz-box-shadow: 0px 1px 2px rgba(68,68,68,0.4);
	-webkit-box-shadow: 0px 1px 2px rgba(68,68,68,0.4);
	box-shadow: 0px 1px 2px rgba(68,68,68,0.4);
	text-overflow: ellipsis;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	vertical-align: top;
}
.boxCompleted:hover {
	border:1px solid #666666;
	background-image:none;
	background-color:#EEEEEE;
	cursor:pointer;
}
.boxCompleted b {
	font-size:30px;
	line-height:36px;
	font-weight:normal;
	float:right;
}
.boxCompleted img {
	float:left;
	margin-top:6px;
}
.boxOverview.inactive {
	background-image:none;
	background-color:#FAFAFA;
	border:1px solid #DDD;
	cursor:default;
	-moz-box-shadow: none);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.boxOverview.inactive:hover {
	border:1px solid #DDD;
}


.criteriaProcess {
	height:50px;
	line-height:50px;
	margin:0 -20px;
	background-color:#F8F8F8;
}
.criteriaProcess a {
	color:#555;
	text-decoration:none;
}
.criteriaProcess a:hover {
	color:#000;
	text-decoration:none;
}

.criteriaProcess h2 {
	float:left;
	color:#0185db;
	font-size:18px;
	font-weight:normal;
	margin:0 0 0 24px;
	paddding:0;
}

.criteriaProcess .step {
	float:left;
		color:#555;
	

}
.criteriaProcess .step p {
	float:left;
	font-size:12px;
	margin:0;
	padding:0;
	width:120px;
	text-align:center;
}
.criteriaProcess .step.selected{
	font-size:12px;
	color:#333;
	font-weight:bold;
	background-color:#f8ff88;
}
.criteriaProcess .rightPoint {
	float:right;
	background-color:#f3f3f3;
	width:34px;
	height:50px;
}

.boxCriteria {
	width:160px;
	font-size:12px;
	color:#666;
	margin-right:34px;
	margin-bottom:30px;
	float:left;
}
.boxCriteria h2{
	color:#777;
	font-size:16px;
	font-weight:normal;
}
	
.boxCriteria .choose {
	width:100%;
padding:10px 0 10px 10px; 
border: 1px solid #ddd;
margin-bottom:6px;
cursor:pointer;
background-color:#fff;
}
.boxCriteria p {
	color:#777;
	line-height:16px;
	margin:0 0 12px 0;
	padding:0;
}
.boxCriteria .choose:hover {
	color:#000;
	border: 1px solid #ccc;
}
.boxCriteria h2 {
	font-size:15px;
	color:#010101;
	padding:0;
	margin:10px 0 8px;
}
.boxCriteria .choose.disabled {
	background-color:#F7F7F7;
	color:#777;
}
.boxCriteria .choose.disabled:hover {
	color:#777;
}
.boxCriteriaSelections {
	width:158px;
	height:190px;
	color:#231F20;
	overflow-y:scroll;
	overflow-x:hidden;
	background-color:#FFF;
	border:1px solid #999;
	margin-top:2px;
}
.boxCriteriaSelections td {
	padding:4px 2px;
}
.boxCriteriaSelections tr:hover {
	background-color:#EEE;
}

.systemInformation {
    /* width: 570px;
    float: left; */
}

.calculateBox input {
    width: 36px;
    padding-left: 5px;
}


/* forms */
.formSection {
	color:#464646;
	line-height:26px;
	margin-bottom:30px;
}
.formSection h2 {
	color:#017fd2;
	padding:0px 0px 8px 0px;
	margin:12px 0px;
	border-bottom:1px solid #e3e3e3;
	font-size:18px;
	font-weight:bold;
}
.formSection b {
	font-weight:bold;
	font-size:16px;
	color:#017fd2;
}
.required {
	color:#ed1c24;
}
.monitorCentersOverview {
	padding: 10px 18px;
	width: 240px;
	border: 1px solid #eee;
	float:left;
}
.field {
	/* font-size: 14px; */
	background-color: var(--color__white);
	border: 1px solid var(--color__gray-400);
	border-radius: var(--border-radius);
	padding: .5rem;
}
.field:hover {
	border:1px solid #7f8ed8;
}
.fieldLogin {
	margin:2px 0px 0px 24px;
	width:314px;
	font-size: 16px;
	background-color: #f1f1f1;
	border: 1px solid #e0e0e0;
	line-height:40px;
	height:40px;
	color:#444;
	border:2px solid #333;
	padding-left:14px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
}
.fieldLogin:hover {
	background-color: #fff;
	border:2px solid #7f8ed8;
}
.formError {
	border:1px solid #be0101;
	background-color:#ffe8e8;
	color:#555;
}
.formError:hover {
	border:1px solid #be0101;
	background-color:#fff;
}
.formErrorNote {
	height:32px;
	margin:-4px 0px -7px 8px;
	color:#fff;
	font-size:12px;
	background: url('../img/icnErrorNoteBkg.png') top left no-repeat;
	text-shadow: 0px 1px 1px #555;
	padding:1px 10px 0px 8px;
	z-index:2;
	position:relative;
	border-top-right-radius: 3px;
	border-bottom-right-radius:3px;
	-moz-border-radius-topright:3px;
	-moz-border-radius-bottomright:3px;
	-webkit-border-radius-topright:3px;
	-webkit-border-radius-bottomright:3px;
}
.dropdownLogin {
	width:330px;
	font-size: 16px;
	background-color: #fff;
	border: 1px solid #e3e3e3;
	height:40px;
	line-height:40px;
	color:#777;
	padding:9px 9px 9px 7px;
	margin:26px 0px 0px 24px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}
.dropdownLogin:hover {
	border:1px solid #e49396;
}
input.btn {
	background: #078be0 url('../img/bkgBtn.png') top left repeat-x;
	color:#FFFFFF;
	font-size:12px;
	font-weight:bold;
	line-height:16px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	text-shadow: 0px 1px 1px #555;
	padding:5px 16px;
	border:1px solid #0872b8;
	-moz-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	-webkit-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	-webkit-overflow-scrolling: touch;
}
input.btn:hover {
	text-decoration:none;
	background-image:none;
	background-color:#1699ec;
	cursor:pointer;
}
a.btn.btnLogin {
	width:256px;
	display: inline-block;
	padding: 0px;
	text-align: center;
	text-transform: uppercase;
	font-align:center;
	height:40px;
	margin:22px 0px 24px 24px;
	background: #078be0 url('../img/bkgBtn.png') top left repeat-x;
	color:#FFFFFF;
	font-size:14px;
	font-weight:bold;
	line-height:40px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	text-shadow: 0px 1px 1px #555;
	border:1px solid #0872b8;
	-moz-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	-webkit-box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
	box-shadow: 0px 1px 3px rgba(68,68,68,0.4);
}
a.btn.btnLogin:hover {
	text-decoration:none;
	background-image:none;
	background-color:#1699ec;
	cursor:pointer;
}
input[disabled='disabled'] {
	background-color:#eee;
	color:#666666;
	border: 1px solid #e0e0e0;
}
input[disabled='disabled']:hover {
	background-color:#eee;
	color:#666666;
	border: 1px solid #e0e0e0;
}
.addStudentInfo {
	/* margin:0px 20px 18px 0px; */
}
.helpDoc {
	width:180px;
	margin:10px 50px 36px 0;
	color:#777;
	line-height:17px;
}
.activityGrHeader {
	border-bottom:1px dashed #ddd;font-weight:bold;color:#999;margin-top:6px;margin-bottom:10px;padding-bottom:4px;
}
.helpDoc b {
	font-size:11px;
	line-height:11px;
	color:#888;
	font-weight:normal;
}
.helpDoc h3 {
	font-size:16px;
	line-height:15px;
	color:#555;
	margin:2px 0 4px;
	padding:0;
}

/* table */
table { border-collapse: collapse; }
.table {
	border:1px solid #e6e6e6;
	border-bottom:none;
	font-size:12px;
}
td, th { padding: .375rem .5rem; }
th { background: var(--color__gray-300); }
tr { border-bottom: 1px solid var(--color__gray-400); }

.borderless,
.borderless tr { border: 0; }

table.system_specs {
	border:        1px solid var(--color__gray-400);
	font-size:     var(--font-size-sm2);
	margin-bottom: 1rem;
	text-align:    left;
}
table.sb_downloads {
	font-size:  var(--font-size-sm1);
	text-align: left;
	width:      100%;
}

.table th {
	background: url('../img/bkgTableHeader.png') top left repeat-x #efefef;
	text-align: left;
	line-height: 12px;
	color: #333333;
	white-space: nowrap;
	padding: 20px 6px;
	border-bottom: 1px solid #e6e6e6;
}
.table th.condensed {
	font-size:11px;
	font-weight:normal;
	color:#111;
	padding:4px 6px;
}
.table_head {
	background: url('../img/bkgTableHeader.png') top left repeat-x #efefef;
	line-height: 12px;
	color: #333333;
	white-space: nowrap;
	border: 1px solid #e6e6e6;
}
.table_head thead th {
	padding: 20px 6px;
	text-align: left;
}
.table th a {
	color: #333;
	text-decoration: none;
}
.table th a:hover {
	color: #333;
	text-decoration: underline;
}
.table th.center {
	text-align:center;
}
.table td {
	line-height: 12px;
	padding: 11px 6px;
	border-bottom: 1px solid #e6e6e6;
	text-align: left;
	vertical-align:top;
}
.table tr {
	background-color:#f8f8f8;
}
.table tr:hover {
	background-color:#fff;
}
.table td.center {
	text-align:center;
}
.table i {
	color:#c30f15;
	font-style:normal;
}
.table i a {
	color:#c30f15;
	font-style:normal;
}
.table td b {
	color:#009900;
	font-style:bold;
}

.quantity {
	font-size:11px;
}
.quantity td {
	padding: 4px 8px;
	border-bottom: 1px solid #e6e6e6;
	text-align: left;
	background-color:#f8f8f8;
}
.quantity td.grey {
	background-color:#ccc;
	border-left:1px solid #e6e6e6;
	line-height:12px;
	word-wrap: break-word;
	overflow:hidden;
	padding: 4px 8px;
}
.quantity input {
	width:60px;
	border: 1px solid #ddd;
	background-color: #fff;
	padding-left:10px;
}
.quantity input:hover {
	background-color: #f5f5f5;
	border:1px solid #e49396;
}
.quantity .formError {
	border:1px solid #be0101;
	background-color:#ffe8e8;
	color:#555;
}
.quantity .formError:hover {
	border:1px solid #be0101;
	background-color:#fff;
}

/* portal */
.portalBox {
	 float:left;
	 width:166px;
	 height:124px;
	 font-color:#888;
	 margin:-4px 2px 12px 0;
	 padding:12px;
}
.portalBox:hover {
	background-color:#eee;
}
.portalBox .text {

float:left;}
.portalBox .info {
width:210px;float:left;margin:-4px 14 0 0;}

.portalBox img {
	float:left;margin:-2px 9px 10px 0;
}
.portalBox h3{
	float:left;
	padding:0;
	margin:0 0 10px 0;
	font-size:16px;
	color:#395fb6;
	font-weight:normal;
}
.portalHomeRow {
	width:910px;float:left;margin:18px 0;border-top:1px solid #ddd;border-bottom:1px solid #ddd; padding-top:14px;
}

.portalBoxInterior {
	 float:left;
	 width:240px;
	 font-color:#888;
	 margin:0px 92px 30px 0;
}
.portalBoxInterior h3{
	padding:0px;
	margin:0px 0px 10px 0px;
	font-size:18px;
}
.portalBoxLogo {
	width:250px;float:left;color:#333;font-size:15px;text-align:center;letter-spacing: 0px;
}
.portalBoxLogo .btn {
	width:216px;margin-top:10px;}
	
.portalHomeTopText {
	width:560px;float:left;
	}
.portalBoxCindy {
	float:right;width:177px;line-height:16px;}
.portalBoxCindy img {
	margin-bottom:8px;
}
.contentWrapPortal { min-height:400px; }
.contentWrapPortal.grid {
	grid: [row1-start] "header" auto [row1-end]
			[row2-start] "page-content" 1fr [row2-end]
			[row3-start] "footer" auto [row3-end]
			/ 100%;
}
.contentWrapPortal h1{
	font-size: var(--font-size-lg5);
	color:     var(--color__nwea-primary-100);
}

hr.wide {
  border: 0;
  color: #ebebeb;
background-color: #ebebeb;
height: 1px;
margin:16px 0px 24px;

}
.video_sections {
	float: left;
	padding: 0 20px 50px 10px;
	width: 190px;
	line-height:18px;
}

.video_sections img {
	margin: -20px 0 0;
	padding: 0 0 20px;
}

.charCounter {
	float:right;font-size:11px;margin:8px 0 8px;
}

.charCounter .number {float:right;margin:-4px 0 0 6px;width:28px;font-size:11px;text-align:center;background-color:#DDD;line-height:18px;border:none;
}

.appealReasonField {
width:440px;max-width:440px;height:70px;line-height:14px;font-size:12px;padding-top:8px;margin:4px 0;
}
.notification {
	border: 1px solid #ec9b9b;
	border-radius: 3px;
	display: block;
	margin-bottom: 20px;
	margin-top:14px;
	overflow: hidden;
	padding: 0px;
	position: relative;
	/*width: 100%;*/  
	z-index: 1;
	zoom: 1;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #f9d5d5;
}
.notification p {
	color: #4d4c4c;
	line-height: 20px;
	float:left;
	margin-left: 14px;
	margin-right: 25px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 0px !important;
}
.notification b {
	color: #990000;
}
.notification .icon {
	display: block;
	width: 16px;
	height: 16px;
	float: left;
	margin-top: 12px;
	margin-left:12px;
	background: url('../img/notification_error_16.png');
}
.notification.success {
	background-color: #ddf4ce;
	border-color: #72CB67;
}
.notification.success b {
	color: #018907;
}
.notification.success .icon {
	background: url('../img/notification_success_16.png');
}
.notification.info {
	background-color: #dce6f3;
	border-color: #50B0EC;
}
.notification.info .icon {
	background: url('../img/notification_info_16.png') top left no-repeat;
	margin-left: 8px;
}

.overlayFade {
background-color:#444444;
opacity: 0.2;
}

#result.active {
	background: #E5F1FB;
	padding: 10px;
	border-radius: 10px;
	border: 2px solid #5B92C1;
}