﻿/* NBP Forms CSS overrides */

/* Table styles for radio button lists, etc. */
table, th, td 
{
    table-layout:fixed;
    width: 100%;
    vertical-align: top;
    background-color: white; 
    text-align: left;
    padding: 2px 2px 2px 2px;
}

.formsBG table, .formsBG th, .formsBG td
{
    background-color: #f3f3f3; 
}

/* Language proficiency header in Careers.aspx */
.langProficiencyHdr
{
    font-weight: bold;
    text-align: center;
}

.feederSubMeterHdr {
	font-weight: bold;
	text-align: center;
	color: black;
}

p.required > span:after, span.required > label:after
{
	content: "*" !important;
	color: #E26C24 !important;
	margin: 3px 0 0 5px !important;
}

a.nbpLinkSmall {
	font-size: 11.5px;
}

div.nbpTextarea {
    max-width: 920px;
}

div.nbpUnderFieldPrompt {
    padding-top: 5px;
}

.nbpSearchInput {
	background: #ffffff;
	border: 1px solid #e2e3e3;
    height: 25px;
	padding-left: 10px;
	width: 501px;
}

.nbpSearchInput input[type="text"] {
	border: 0 none;
	float: left;
	height: 100%;
	margin: 0;
	outline: 0 none;
	padding: 0;
	width: 474px;
}

.nbpSearchInput.helpOnRight input[type="text"] {
    width: 462px;
}

.nbpSearchInput input[type="image"] {
	height: 20px;
	margin-right: 7px;
	margin-top: 2px;
	outline: 0 none;
	width: 20px;
}

.nbpSearchInput input[type="text"]::placeholder { 
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d25d12;
    opacity: 1; /* Firefox */
}

.nbpSearchInput input[type="text"]:-ms-input-placeholder
 {
    /* Internet Explorer 10-11 */
    color: #d25d12;
}

.nbpSearchInput input[type="text"]::-ms-input-placeholder { 
    /* Microsoft Edge */
    color: #d25d12;
}


.nbpAddressWatermark input[type="text"]::placeholder { 
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d25d12;
    height: 19px;
    opacity: 1; /* Firefox */
}

.nbpAddressWatermark input[type="text"]:-ms-input-placeholder
 {
    /* Internet Explorer 10-11 */
    color: #d25d12;
    height: 19px;
}

.nbpAddressWatermark input[type="text"]::-ms-input-placeholder { 
    /* Microsoft Edge */
    color: #d25d12;
    height: 19px;
}

#nbpSubmitOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
	opacity: .5;
	filter: Alpha(Opacity=50);
	z-index: 9999999;
}

#nbpSubmitOverlayInvisible {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	width: 100%;
	height: 100%;
	opacity: .1;
	filter: Alpha(Opacity=100);
	z-index: 9999999;
}

fieldset div.error > div > select.fullWidth {
    width: 91%;
}

input[type="text"].nbpInitials {
    width: 5em !important;
}

.nbpFormPageNumber {
    height: 30px;
    float: right;
    font-size: 12px;
    margin-left: 20px;
}

div.nbpShediacLogo {
    height: 165px; 
    float: right; 
}

div.nbpShediacLogo img {
    height: 150px; 
}

div.nbpNRCLogo {
    height: 30px; 
    float: right; 
}

div.nbpNRCLogoLeft {
    float: left; 
}

div.nbpNRCLogo img {
    height: 36px; 
}

fieldset.groupOfFields div div fieldset table,
fieldset.groupOfFields div div fieldset table tr td {
	background: #ebebeb;
}

fieldset.boxOfFields {
	background: #ebebeb;
    outline: 1px solid silver;
    /*outline-offset: 10px 20px 20px 20px;*/
    margin-top: -10px;
    margin-right: -20px;
    margin-bottom: 20px;
    margin-left: -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
	/*margin: 0 -40px 25px;
	padding: 40px 40px 15px;*/
}

/*
fieldset.boxOfFields div div fieldset table,
fieldset.boxOfFields div div fieldset table tr td {
    outline: 1px solid silver;
    outline-offset: 10px;
}
*/

fieldset select.leftAlignedDropdown {
    float: left;
}

.embed-container { 
	position: relative; 
	padding-bottom: 56.25%; 
	height: 0; 
	overflow: hidden; 
	max-width: 100%;
} 
		
.embed-container iframe, 
.embed-container object, 
.embed-container embed { 
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%; 
}

/* START - RESPONSIVE GRID CSS */
.section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

.group:before,
.group:after {
    content:"";
    display:table;
}
.group:after {
    clear:both;
}
.group {
    zoom:1; /* For IE 6/7 (trigger hasLayout) */
}

.col {
	display: block;
	float:left;
	/* //! REVIEW margin: 1% 0 1% 1.6%; */ 
}

.col:first-child { margin-left: 0; } /* all browsers except IE6 and lower */

/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 480 PIXELS */
@media only screen and (max-width: 480px) {
	.col { 
		margin: 0 0 1px 0%;
	}
}
	
/* GRID OF TWO */
.span_2_of_2 {
	width: 100%;
}

.span_1_of_2 {
	width: 49.2%;
}

/* GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 480px) {
	.span_2_of_2 {
		width: 100%; 
	}
	.span_1_of_2 {
		width: 100%; 
	}
}

/* GRID OF THREE */
	
.span_3_of_3 {
	width: 100%; 
}

.span_2_of_3 {
	width: 66.13%; 
}

.span_1_of_3 {
	width: 32.26%; 
}

/* GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 480px) {
	.span_3_of_3 {
		width: 100%; 
	}
	.span_2_of_3 {
		width: 100%; 
	}
	.span_1_of_3 {
		width: 100%; 
	}
}

/* GRID OF FOUR */
.span_4_of_4 {
	width: 100%; 
}

.span_3_of_4 {
	width: 74.6%; 
}

.span_2_of_4 {
	width: 49.2%; 
}

.span_1_of_4 {
	width: 23.8%; 
}


/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */
@media only screen and (max-width: 480px) {
	.span_4_of_4 {
		width: 100%; 
	}
	.span_3_of_4 {
		width: 100%; 
	}
	.span_2_of_4 {
		width: 100%; 
	}
	.span_1_of_4 {
		width: 100%; 
	}
}

.nbpInlineRadioButtonSmall {
    width: 50px;
    padding-left: 10px;
    font-size: 12px;
}

.nbpDateDropdowns select {
    float: left;
    padding: 4px 3px 2px 3px;
}

.nbpDateDropdowns select:nth-child(1),
.nbpDateDropdowns.helpOnRight select:nth-child(1) {
    width: auto;
    margin-right: 1em;
}

.nbpDateDropdowns select:nth-child(2), 
.nbpDateDropdowns.helpOnRight select:nth-child(2) {
    width: auto;
    margin-right: 1em;
}

.nbpDateDropdowns select:nth-child(3),
.nbpDateDropdowns.helpOnRight select:nth-child(3) {
    width: auto;
}

.nbpOrangeAlert {
    background-color: #F2BD89;
	color: #000000;
	padding: 30px;
	margin: 20px 0 35px 0;
}

/* END - RESPONSIVE GRID CSS */

/* Telerik Rad Upload CSS */

.ruFileProgressWrap {
	background: #f3f3f3 none repeat scroll 0 0;
	border: 1px solid #d7d7d7;
	margin: 2px 0 0 -1px;
}

.ruFileProgressWrap {
	margin: -3px 0 0;
	position: relative;
	width: 90%;
}

.ruFileProgressWrap {
	background-color: transparent;
	background-repeat: repeat-x;
	display: block;
	height: 5px;
}

.RadUpload_Default_rtl .ruFileProgress {
	background-position: 100% 0;
}

.RadUpload_Default .ruFileProgress {
	background-image: url("WebResource.axd?d=WRHwL431D1wVVgSYOSXVWR0-ndexfcAxokaoNzuomy7sy-e_uD5-ucRQmw42C6poS6Xbe5fAZKeTLBGIgRl_dzxdZ47F_KJI07CJF-pEDUK9m0TP_4peAc0czJdqEFRSay36R9ywZlRhv2N6y5lghcpMmXE1&t=635453381231082496");
}


/* Inline progress */

.RadUpload .ruFileProgress {
	display: block;
	height: 5px;
	background-repeat: repeat-x;
	background-color: #54cbe0;
}

* html .RadUpload .ruFileProgress,
.RadUpload .ruFileProgress {
	margin-left: -2px;
	width: 2px;
}

* html .RadUpload .ruFileProgress {
	position: relative;
}

.RadUpload_rtl .ruFileProgress {
	margin-left: 0;
	margin-right: -2px;
}





.RadUpload .ruProgressComplete {
	display: none;
}

.RadUpload .ruUploadProgress {
	background: url("images/statusFileUploadProgress.png") no-repeat scroll 0 50% transparent;
	box-sizing: border-box;
	display: block;
	padding-left: 18px;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 200px;
	white-space: nowrap;
}

.RadUpload .ruUploadSuccess, .RadUpload .ruUploadFailure, .RadUpload .ruUploadCancelled {
	background-color: transparent;
	background-image: url("images/statusFileUpload.png");
	background-repeat: no-repeat;
}

.RadUpload .ruUploadSuccess {
	background-position: 0px 18%;
}

.RadUpload input.ruFileInput {
	height: 31px;
	left: 94%;
	margin-left: 10px;
	top: -1px;
	width: 80px !important;
}

.RadUpload .ruInputs li {
	margin: 0 0 5px;
	padding-left: 0px;
}

	.RadUpload .ruInputs li.ruActions {
		margin: 1.4em 0 0;
	}

.RadUpload .ruInputs,
.RadUploadProgressArea .ruProgress {
	list-style: none;
	margin: 0;
	padding: 0;
}

.RadUpload .ruCheck {
	padding: 3px;
	position: static;
	top: 1px;
}

.RadUpload .ruFileWrap {
	display: inline-block;
	line-height: 20px;
	padding-right: 6px;
	position: relative;
	vertical-align: top;
	white-space: nowrap;
	width: auto;
}

.ruFileWrap.ruStyled.fileSizeError {
	white-space: normal;
}

.RadUpload .ruUploadFailure {
	width: 200px;
}

.RadUpload .ruUploadFailure, .RadUpload .ruUploadCancelled {
	background-position: 0 80%;
}

.ruInputs .fileSizeError {
	background-color: #ffcccc;
	color: #cc0000;
	margin-top: 3px;
	padding-left: 10px;
	width: auto;
}

span.ruFileWrap.ruStyled.fileSizeError {
	padding-left: 6px;
}

.RadUpload_rtl .ruFileWrap {
	padding-left: 0.8em;
	padding-right: 0;
}

.RadUpload .ruFileInput {
	height: 22px;
	top: -5px;
	left: 0;
}

.RadUpload .ruFileInput,
.RadUpload .ruFakeInput,
.RadUpload .ruButton,
.RadUploadProgressArea .ruButton {
	box-sizing: border-box;
	float: none;
	padding: 5px 10px;
	vertical-align: top;
}

/* Remove Button, Cancel Button */
input.ruButton.ruRemove,
input.ruButton.ruCancel {
	--transitionDuration: 420;
	--computerBreakpoint: 1280px-px;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	font-family: Montserrat,Arial,sans-serif;
	margin: 0 30px;
	padding: 6px 20px 5px;
	font-size: 12px;
	border: 1px solid;
	border-color: #00833E;
	right: 0;
	top: -8px;
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-weight: 300;
	color: #00833e;
	transition: all 420ms ease-out;
	height: 30px;
}

/* Browse Button */
input.ruButton.ruBrowse,
input.ruButton.ruBrowse.ruButtonHover {
	--transitionDuration: 420;
	--computerBreakpoint: 1280px-px;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
	font-family: Montserrat,Arial,sans-serif;
	margin: 0px 0 0 10px;
	padding: 5px 0 5px 0;
	font-size: 14px;
	border: 1.5px solid;
	border-color: #00833E;
	right: 0;
	position: relative;
	display: inline-block;
	text-decoration: none;
	font-weight: 400;
	color: #00833e;
	transition: all 420ms ease-out;
	height: 27px;
	width: 100px;
	background-image: none;
	cursor: pointer;
}

/* Input box alongside Browse Button */
.ruFakeInput.radPreventDecorate {
	/*
	--transitionDuration: 420;
	--computerBreakpoint: 1280px-px;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box !important;
	font: inherit;
	position: relative;
	min-width: 246px;
	border-radius: 8px !important;
	margin: 5px 0 20px;
	padding: 15px 32px 12px 15px !important;
	background-color: #fff !important;
	height: 60px !important;
	*/ 
    vertical-align: middle;
	font-family: "Gotham SSm 4r", "Gotham SSm A", "Gotham SSm B", Gotham, Helvetica, Arial;
	line-height: 20px;
	font-style: normal;
	font-weight: normal;
	font-size: 12px;
	margin: 0;
	padding: 3px 3%;
	position: relative;
}

div div div.RadAsyncUpload.RadUpload.RadUpload_Default ul.ruInputs li span.ruFileWrap.ruStyled input[type=text].ruFakeInput.radPreventDecorate {
	border: 1px solid #b1b1b1;
	line-height: 20px;
	height: 22px;
}

div.error div div.RadAsyncUpload.RadUpload.RadUpload_Default ul.ruInputs li span.ruFileWrap.ruStyled input[type=text].ruFakeInput.radPreventDecorate {
	border: 2px solid #900;
}

div#ctl00_contentPlaceHolder_ucFileUpload_RadCaptcha1_ctl01:hover {
	border: none;
}

/* Captcha Refresh Link */
a.rcRefreshImage {
	margin: 20px 0 15px 0;
}

/* File details line, file input line */
span.ruFileWrap.ruStyled {
	height: auto;
}

.RadUpload .ruStyled .ruFileInput {
	left: -1000%;
	position: absolute;
	z-index: 1;
	opacity: 0; /*Opera,Firefox*/
	-moz-opacity: 0; /*Firefox*/
	filter: alpha(opacity=0); /*IE*/
}

.RadUpload .ruReadOnly .ruFakeInput {
	position: relative;
	z-index: 2;
}

.RadUpload .ruBrowse {
	margin-left: 2%;
	padding: 5px 10px;
}

.RadUpload .ruFakeInput {
	/* width: 200px; */
}

.RadUpload .ruActions .ruButton,
.RadUploadProgressArea .ruActions .ruButton {
	background-position: 0 -23px;
	margin: 0 16px 0 0;
	width: 79px;
}

.RadUpload_rtl .ruActions .ruButton,
.RadUploadProgressArea_rtl .ruActions .ruButton {
	margin: 0 0 0 16px;
}

/* Stops an extra blob appearing on validation error */
fieldset div.error > div#sessionRadFileUpload:before {
	content: none;
}

/* End of Telerik Rad Upload CSS */

.nbpOrangeHr {
	border-top: 1px solid #e26c24;
}

/* This is used to hide a label visually but allow a screen reader to read it */
label.nbpVisuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.nbpEligibleEVListContainer {
	margin-left: 100px;
	overflow-x: auto;
	margin-bottom: 100px;
}

th.rgHeader.nbpTelerikColumnHeader {
	padding: 10px 15px 10px 10px;
}
