@charset "UTF-8";
/*
    * Website : UNB.ca Form Layout and Styling
    * Author  : Neil D. Hawker
    * Launch  Dec10 | 2013
        ** Last Update: Jan.22 / 2015
    * Validated : July. 15 | 2013
    * Version : 1.0.0.
*/
/*=== Formzilla ===*/
form.frmzlla {
    margin: 10px 0;
    padding: 0;
    font-family: 'Source Sans Pro', Verdana, Arial, sans-serif;
}

form.frmzlla p {
    clear: both;
    padding: 0;
}
form.frmzlla .prvcy {font-style: italic; padding: 0 10px 0 1px; margin-top: 8px; color: #989898;}

/*=== Inputs ===*/
form.frmzlla input, form.frmzlla select {
    font-size: .9em;
}
form.frmzlla textarea {
    font-family: 'Source Sans Pro', Verdana, Arial, sans-serif;
}
form.frmzlla input[type='text'], 
form.frmzlla input[type='tel'], 
form.frmzlla input[type='password'], 
form.frmzlla input[type='number'], 
form.frmzlla input[type='email'], 
form.frmzlla input[type='date'], 
form.frmzlla input[type='website'], 
form.frmzlla input[type='time'], 
form.frmzlla select, 
form.frmzlla textarea, 
form.frmzlla input[type='password'] {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #ccc;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 51%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(50%, rgba(243,243,243,1)), color-stop(51%, rgba(237,237,237,1)), color-stop(100%, rgba(255,255,255,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 51%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 51%, rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 51%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(243,243,243,1) 50%, rgba(237,237,237,1) 51%, rgba(255,255,255,1) 100%);
}

form.frmzlla input:focus, form.frmzlla select:focus, form.frmzlla textarea:focus {
	outline: none;
	border-color: #fed95e;
	box-shadow: 0 0 10px #fed95e;
	background: #fff7df;
	color: #000;
}
form.frmzlla input[type='text'], form.frmzlla input[type='tel'], form.frmzlla input[type='password'], form.frmzlla input[type='number'], form.frmzlla input[type='email'], form.frmzlla input[type='date'], form.frmzlla input[type='website'], form.frmzlla input[type='time'], form.frmzlla select, form.frmzlla textarea {
	padding: 9px 12px;
}

form.frmzlla textarea {
	min-height: 70px;
    max-height: 125px;
	min-width: 300px;
	line-height: 1.2;
}
/*=== Checkbox and Radio Buttons====*/
form.frmzlla input[type=checkbox], form.frmzlla input[type=radio] {
	margin-top: 1px;
	margin-right: 4px;
	margin-left: 4px;
}
/*=== Input Placeholder ===*/
    
	::-webkit-input-placeholder {
font-size: .9em;
}
	:-moz-placeholder {
font-size: .9em;
}
	::-moz-placeholder {
font-size: .9em;
}
	:-ms-input-placeholder {
font-size: .9em;
}

input[placeholder], textarea[placeholder] {
	color: #898989;
	font-style: italic;
	font-size: .9em !important;
}
/*=== Required Fields==*/
form.frmzlla .reqrd {
	display: inline;
	vertical-align: middle;
	cursor: help;
	color: #ca0f18;
}
form.frmzlla label .required {
	color: #ca0f18;
}
strong.required {
	color: #ca0f18;
}
/*=== Defintion list / Form Layout===*/
form.frmzlla fieldset {
	border: none;
}
form.frmzlla legend {
	color: #000;
	font-size: 1.6em;
	border-bottom: 1px dotted #ccc;
	width: 100%;
	padding: 10px 0 5px 0;
	margin-bottom: 20px;/*font-family: 'Source Sans Pro', Verdana, Arial, sans-serif;*/
}

form.frmzlla dt {margin: 4px 0;}
form.frmzlla dd {margin:0;}
form.frmzlla dl {padding-left: 20px;}

form.frmzlla dt,form.frmzlla dd  {
    padding-top: 6px;
}
form.frmzlla dt label:after {
	content: ":"
}
form.frmzlla dl.optnl {
	font-style: italic;
	opacity: 0.55;
}
form.frmzlla input[type="checkbox"].newaccessitem { 
	height: 20px !important; 
	margin-right: 10px !important;
}
/*=== Form Buttons ====*/
form.frmzlla input[type='button'], form.frmzlla input[type='submit'], form.frmzlla input[type='reset'] {
	padding: 5px 6px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid #ccc;
    margin-top: 12px !important;
}
form.frmzlla input[type='submit'], form.frmzlla input[type='reset'] {
	margin-top: 2px;
}
form.frmzlla input[type='button'], form.frmzlla input[type='submit'], form.frmzlla input[type='reset'], form.frmzlla input[type='search'] {
	color: #fff;
	border: 1px solid #c4c4c4;
	cursor: pointer;
	background-color: #000;
}
form.frmzlla input[type='button'] {
	background-position: 0px -100px;
	border: 1px solid #434343;
}
form.frmzlla input.reset {
	background-position: 0px -67px;
	border: 1px solid #ee3a43;
	color: #fff;
}
form.frmzlla input.aux {
	background-position: 0px -35px;
	border: 1px solid #fed95e;
	color: #6d6600;
}
form.frmzlla input[type='button']:hover, form.frmzlla input[type='submit']:hover, form.frmzlla input[type='reset']:hover {
	border: 1px solid #ccc;
}
/*== Custom Tweaks for different applications ==*/
form.frmzlla dt.sslogin, form.frmzlla dd.sslogin {
	width: auto;
	text-align: left;
}
form.frmzlla dt.sslogin {
	padding: 8px 0 2px 0;
}
form.frmzlla .msg {
	color: #06F;
	font-style: italic;
}
form.frmzlla .example {
	color: #ababab !important;
}
#forgotpw {
	padding-top: 8px;
}
/*=== Form Messaging ===*/
.message {
	clear: both;
	padding: 12px 0 0 40px;
	border: 1px solid;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	width: 90%;
	margin: 14px auto 8px auto;
}
.message.error, .message.alert, .message.success, .message.warning, .message.info {
	background-position: 4px center;
	background-repeat: no-repeat;
}
.message.error {
	background-color: #fff;
	color: #cc0000;
	background-image: url('../img/icns/error-icon.png');
}
.message.alert {
    background-color: #fff;
	color: #cc0000;
	background-image: url('../img/icns/alert-icon.png');
}
.message.success {
	background-color: #fff;
	color: #578a00;
	background-image: url('../img/icns/success-icon.png');
}
.message.successnoimg {
	background-color: #fff;
	color: #578a00;
	background-image: none;
}
.message.warning {
	background-color: #fff;
	color: #955800;
	background-image: url('../img/icns/warn-icon.png');
}
.message.info {
	background-color: #fff;
	color: #0b51a0;
	background-image: url('../img/icns/info-icon.png');
}
/*=== Form Buttons ===*/
.button {
	display: inline-block;
	font-weight: 600 !important;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em;
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	height: 40px; min-width: 135px;
}
.button:hover {
	text-decoration: none;
	color: #fef4e9;
}
.button:active {
	position: relative;
	top: 1px;
}
/*=== Blue Submit  ===*/
.blue {
	border: solid 1px #0076a3;
	background: #0076a3;
	background: -webkit-gradient(linear, left top, left bottom, from(#448ccb), to(#0076a3));
	background: -moz-linear-gradient(top, #448ccb, #0076a3);
}
.blue:hover {
	color: #fff14b !important;
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#0076a3), to(#005b7f));
	background: -moz-linear-gradient(top, #0076a3, #005b7f);
}
.blue:active {
	color: #81cdeb;
	background: -webkit-gradient(linear, left top, left bottom, from(#0076a3), to(#448ccb));
	background: -moz-linear-gradient(top, #0076a3, #448ccb);
}
/*=== Orange Reset ===*/
.orange {
	border: solid 1px #da7c0c;
	background: #f78d1d;
	background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
	background: -moz-linear-gradient(top, #faa51a, #f47a20);
}
.orange:hover {
	color: #fff14b !important;
	background: #f47c20;
	background: -webkit-gradient(linear, left top, left bottom, from(#f88e11), to(#f06015));
	background: -moz-linear-gradient(top, #f88e11, #f06015);
}
.orange:active {
	background: -webkit-gradient(linear, left top, left bottom, from(#f47a20), to(#faa51a));
	background: -moz-linear-gradient(top, #f47a20, #faa51a);
}
/*=== Green Add ===*/
.green {
	border: solid 1px #528538 !important;
	background: #557c42;
	background: -webkit-gradient(linear, left top, left bottom, from(#528538), to(#557c42));
	background: -moz-linear-gradient(top, #528538, #557c42);
}
.green:hover {
	color: #fff14b !important;
	background: #052853;
	background: -webkit-gradient(linear, left top, left bottom, from(#557c42), to(#557c42));
	background: -moz-linear-gradient(top, #557c42, #557c42);
}
.green:active {
	background: -webkit-gradient(linear, left top, left bottom, from(#557c42), to(#557c42));
	background: -moz-linear-gradient(top, #557c42, #557c42);
}
/*=== Red Remove ===*/
.red {
	border: solid 1px #eb3a4a !important;
	background: #eb3a4a;
	background: -webkit-gradient(linear, left top, left bottom, from(#eb3a4a), to(#ec2a34));
	background: -moz-linear-gradient(top, #eb3a4a, #ec2a34);
}
.red:hover {
	color: #fff14b !important;
	background: #fff14b;
	background: -webkit-gradient(linear, left top, left bottom, from(#ec2a34), to(#eb3a4a));
	background: -moz-linear-gradient(top, #ec2a34, #eb3a4a);
}
.red:active {
	background: -webkit-gradient(linear, left top, left bottom, from(#ec2a34), to(#eb3a4a));
	background: -moz-linear-gradient(top, #ec2a34, #eb3a4a);
}
/* === Form callouts === */
.form-error {
	position: relative;
	padding: 10px 10px 10px 20px;
	margin: 1em 0 3em;
	color: #fff;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.form-error.red {
	background: #ef3f42;
}
.form-error.green {
	background: #4F8A10;
}
/*=== Form table  ===*/
table.frmtble {
	border-collapse: collapse;
	border: none;
	width: 75%;
	margin: 0 auto;
}
table.frmtble label {position: absolute;
    left: -999em;
    width: 1em;
    overflow: hidden;}
table.frmtble td {
	padding: 12px 16px;
}
table.frmtble th {
	padding: 2px;
	font-weight: 500;
}
.tblabel {
	color: #fff;
	background: rgba(76,76,76,1);
	background: -moz-linear-gradient(top, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(76,76,76,1)), color-stop(12%, rgba(89,89,89,1)), color-stop(25%, rgba(102,102,102,1)), color-stop(39%, rgba(71,71,71,1)), color-stop(50%, rgba(44,44,44,1)), color-stop(51%, rgba(0,0,0,1)), color-stop(60%, rgba(17,17,17,1)), color-stop(76%, rgba(43,43,43,1)), color-stop(91%, rgba(28,28,28,1)), color-stop(100%, rgba(19,19,19,1)));
	background: -webkit-linear-gradient(top, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	background: -o-linear-gradient(top, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	background: -ms-linear-gradient(top, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	background: linear-gradient(to bottom, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 12%, rgba(102,102,102,1) 25%, rgba(71,71,71,1) 39%, rgba(44,44,44,1) 50%, rgba(0,0,0,1) 51%, rgba(17,17,17,1) 60%, rgba(43,43,43,1) 76%, rgba(28,28,28,1) 91%, rgba(19,19,19,1) 100%);
	border-radius: 8px;
	padding: 10px;
	min-width: 100px;
	display: block;
}
/*=== floated form elements ===*/
.rght-fltr {
	float: right;
	padding: 20px;
	border-radius: 10px;
	display: block;
	width: 300px;
margin-top: -60px;
	margin-right: 20px;
	background: #fed95e; /* Old browsers */
	border: 1px solid #e7e7e7;
	background: -moz-linear-gradient(top, #ffffff 0%, #fed95e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff ), color-stop(100%, #fed95e)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #ffffff 0%, #fed95e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #ffffff 0%, #fed95e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #ffffff 0%, #fed95e 100%); /* IE10+ */
	background: linear-gradient(to bottom, #ffffff 0%, #fed95e 100%); /* W3C */
}
.rght-fltr ul li {list-style: none; padding: 2px 0;}

ul.apprvd {}
ul.apprvd li { list-style-image:url(../img/forms/arrw-sccs.png) !important;}
ul.apprvd li ul li { list-style-image:url(../img/forms/arrw-sccs.png) !important}

/* === SideNav forms ==== */
#sideform { width: 250px; margin: 0 auto;}
#sideform dt, #sideform dd, #sideform input {margin: 0 auto; text-align: center;}
#sideform dt, #sideform dd {padding: 0; margin: 4px 0;}
#sideform dt {text-align: left;}
#sideform textarea {min-width: 180px;}
#sideform .prvcy {font-style: italic; padding: 0 10px 0 1px; margin-top: 8px; color: #989898;}

.prvcy {font-style: italic; padding: 0 10px 0 1px; margin-top: 8px; color: #989898;}