@charset "UTF-8";
/*
    * Form, Buttons, labels, & form defintion lists
    *
    * Website : unb.ca, eservices, insideUNB
    * Author : Neil D. Hawker
    * Launch  : December 2011
        ** Updated Jan.24th Message Handling
    * Validated : Decemeber 21, 2011 
        ** Exceptions [border-radius]
    * Version : 1.0.0.1
*/
form.frmzlla {
    color: #434343;
    margin: 0;
    padding: 0;
    font-family:Arial, Helvetica, sans-serif;
}

/*
    * Background of text/password inputs,
    textareas and select boxes.
*/

form.frmzlla input[type='text'], form.frmzlla input[type='password'], form.frmzlla textarea, form.frmzlla select {
    border:1px solid #ccc;
    border-radius: 4px; /*CSS3*/
    padding: 6px;
    background-position:top;
    background-repeat:repeat-x;
    background-image:url("https://www.unb.ca/_resources/img/forms/inptbckgr.gif");
    background-position:0px -1px;
    font-size: 100%;
}
form.frmzlla textarea {
    background-image:url("https://www.unb.ca/_resources/img/forms/input_bckgr.jpg");
    background-position:top;
    background-repeat:repeat-x;
}
form.frmzlla input[type='text']:focus, form.frmzlla input[type='password']:focus, form.frmzlla select:focus, form.frmzlla textarea:focus {
    border:1px solid #fed95e;
    background-position:0px -27px;
}
form .optnl {
    font-style:italic;
    color: #666;
    padding-left: 6px;
}
form.frmzlla .example {
    color: #ababab !important;
}
/* 
    * Updates the form buttons
*/

form.frmzlla input[type='button'], form.frmzlla input[type='submit'], form.frmzlla input[type='reset'] {
    padding: 4px 8px;
    background:#fff;
    border-radius: 4px;
    border: 1px solid #c4c4c4;
    margin-top: 4px;
    cursor:pointer;
    background-color:#fff;
    background-image: url("https://www.unb.ca/_resources/img/forms/bttnbckgr.gif");
    background-repeat:repeat-x;
    background-position:bottom;
    background-position:0px 0px;
    font-size: 100%;
}
/* 
    * Submit buttons / single button non-specific action 
*/
form.frmzlla input.submit {
    background-position:0px -30px;
    color: #fff;
    border:1px solid #676767;
}
/* 
    * Reset / specific action { e.g. Delete, Reload, etc.}
*/
form.frmzlla input.reset {
    background-position:0px -59px;
    border:1px solid #ee3a43;
    color:#fff;
}
form.frmzlla input.aux {
    background-position:0px -87px;
    border:1px solid #fed95e;
    color:#6d6600;
}
form.frmzlla input[type='button']:hover, form.frmzlla input[type='submit']:hover, form.frmzlla input[type='reset']:hover {
    background-color:#999;
    background-image: url("https://www.unb.ca/_resources/img/forms/sublvl-vstd-bckgr.gif");
    background-position:bottom;
    background-repeat:repeat-x;
    border:1px solid #ccc;
    color:#ebebeb;
}
/* 
    * Form layout within Defintion List 
*/
form.frmzlla fieldset {
    margin: 0;
    padding: 0;
    border:none;
}
form.frmzlla legend {
    color: #000;
    font-size: 16px;
    margin-bottom: -4px;
    margin: 0 12px;
    padding: 0 2px;
    display:block;
}
/*  
    * Custom Fieldsets
    *The custom fieldsets will allow you to
    enable background colours and borders.
    *
    *CLASS="BRDR" 
    ** adds a thin gray border around the fieldset
    *
    *CLASS="YLLW" 
    ** visually seperate large forms or certain form elements 
    {e.g. search fields, additional/optional section,}
    *
    *CLASS="RED"
    ** use to inform user of removal/warning
*/

form.frmzlla fieldset.brdr {
    border: 1px solid #ccc;
    border-radius: 8px; /* CSS3 */
}
form.frmzlla fieldset.yllw {
    border: 1px solid #fed85e;
    border-radius: 8px; /* CSS3 */
    background: #fff7df;
}
form.frmzlla fieldset.red {
    border: 1px solid #ca0f18;
    border-radius: 8px; /* CSS3 */
    background: #ee3a43;
    color: #fff;
}
/* 
    * additional area that relfects the colour
    changes on the FIELDSET.RED 
*/
form.frmzlla fieldset.red .optnl {
    color:#fed95e;
}
form.frmzlla fieldset.red .required:before {
    color:#fed95e;
}
/* 
*
    *Defination style and form layout 
*/
form.frmzlla dl {
    clear:both;
}
form.frmzlla dt {
    font-weight: 600;
    min-width: 150px;
}
form.frmzlla dt, form.frmzlla dd {
    float:left;
    line-height:28px;
    margin:0 10px 10px 0;
}
form.frmzlla dt label {
    margin-left: 10px;
}
/* 
    * Adds in colon after each label 
*/
form.frmzlla dt label:after {
    content: ":"
}
/* 
    * Required fields 
*/
form.frmzlla .required:before {
    content: "* ";
    color:#ca0f18;
    font-size: 14px;
    display: inline;
    vertical-align:middle;
}
/*
 * Used for tables that are to show pre-populated information (i.e. from LDAP) that the user cannot modify before submission.
 */
table.dsplyrsults {
    margin: 0.5em 0 2em 0;
    width: 90%;
    font-family: Arial, Helvetica, sans-serif;
}
table.dsplyrsults th {
    text-align:left;
    padding: 8px 6px;
    border:1px solid #ccc;
    width: 200px;
    border-right: 2px solid #999;
}
table.dsplyrsults td {
    padding-left: 1em;
    vertical-align: middle;
}
/*--- Generic table --*/
table.stndrd {
    width: 95%;
    margin: 0 auto;
    border-collapse:collapse;
}
table.stndrd td {
    padding: 12px 8px;
}
table.stndrd th {
    background:#434343 url(https://www.unb.ca/_resources/img/table/th_bkgr.gif) top repeat-x;
    font-weight:600;
    padding: 8px;
    text-align:left;
    color: #fff;
}
table.stndrd td, table.stndrd th {
    border:1px solid #CCC;
}
table.stndrd tr.odd {
    background-color: #F5F5F5;
}
table.stndrd tr:hover {
    background-color:#FFFFCC;
}
/*--- Notices Error .apperror, Succesful .appsucess, Standard .appmsg--- */
.apperror {
    background: #fff url(https://www.unb.ca/_resources/img/forms/errbkgr_app.gif) bottom repeat-x;
    width: 95%;
    display:block;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-border-radius:6px;
    border:1px solid #ca0f18;
    padding: 10px 10px 20px 10px;
}
.appsuccess {
    background: #fff url(https://www.unb.ca/_resources/img/forms/scssbkgr_app.gif) bottom repeat-x;
    width: 95%;
    display:block;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-border-radius:6px;
    border:1px solid #c4df9b;
    padding: 10px 10px 20px 10px;
}
.appmsg {
    background: #fff url(https://www.unb.ca/_resources/img/forms/stnrd_msg.gif) bottom repeat-x;
    width: 95%;
    display:block;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    -moz-border-radius:6px;
    border:1px solid #434343;
    padding: 10px 10px 20px 10px;
}
hr {color: #fff; background-color: #fff; border: 1px dotted #999; border-style: none none dotted; width: 100%;}
.instrt {color: #ca0f18;}