*, *::after, *::before {
    box-sizing: border-box;
}

body,
html {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
}

.center {
    text-align: center;
}

.centerDiv {
    text-align: center;
}

.container {
    margin: auto;
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
}

html {
    box-sizing: border-box;
}

.row::after {
    clear: both;
    content: "";
    display: block;
}

a {
    color: #007fc6;
    text-decoration: underline;
}

body {
    color: #707070;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 15px;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    display: block;
}

h1, h2 {
    color: #007fc6;
    font-weight: 400;
}

h1 {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 10px;
}

h2 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 5px;
}

h3 {
    color: #007fc6;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 5px;
}

h4, h5 {
    color: #000;
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 10px;
    margin-top: 0px;
    text-transform: uppercase;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: inherit;
}

    h5.table_title {
        margin-bottom: 0px;
        text-align: center;
    }

h6 {
    font-size: inherit;
    font-weight: bold;
    margin: 0;
}

p {
    display: block;
    margin: 0px 0px 20px 0px;
}

.button {
    background-color: #747474;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

    .button:focus, .button:hover {
        background-color: #676767;
    }

.error_msg span {
    color: #dc3100;
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-top: 5px;
}

.input_wrap.error input[type="email"], .input_wrap.error input[type="password"], .input_wrap.error input[type="text"] {
    border: 1px solid #dc3100;
}

.input_wrap.error:after {
    background-position: -35px -35px;
    content: "";
    display: inline-block;
    height: 20px;
    background-image: url("Images/spritesheet.png");
    background-repeat: no-repeat;
    margin-right: 8px;
    position: absolute;
    right: 8px;
    top: calc(50% - 10px);
    width: 20px;
}

.lockout_msg {
    background-color: #dc3100;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 20px 30px;
}

.lockout_msg__left {
    display: table-cell;
    vertical-align: middle;
    width: 100px;
}

.lockout_msg .row {
    display: table;
}

.system_msg {
    background-color: #dc3100;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin: 20px 0px;
    padding: 20px 40px;
}

    .system_msg span {
        display: block;
    }

        .system_msg span:before {
            background-position: -85px -5px;
            content: "";
            display: block;
            height: 65px;
            background-image: url("Images/spritesheet.png");
            background-repeat: no-repeat;
            margin: 0px auto 20px auto;
            text-align: center;
            width: 65px;
        }

input[type="email"], input[type="password"], input[type="text"], select {
    border: 1px solid #ccc!important;
    border-radius: 0px;
    box-shadow: none;
    font-size: inherit;
    height: 36px;
    padding: 8px 10px;
}

input[type="email"], input[type="password"], input[type="text"] {
    /*display: block;*/
}

    input[type="email"].inline, input[type="password"].inline, input[type="text"].inline {
        display: inline-block;
    }

input[type="file"] {
    /*height: 1px;*/
    /*opacity: 0;*/
    /*overflow: hidden;*/
    /*position: absolute;*/
    /*width: 1px;*/
    /*z-index: -1;*/
}


input[type="reset"] {
    background-color: #e42b00;
    border: none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    width:100px;
    /*font-size: 18px;*/
    padding: 10px 20px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

    input[type="reset"]:focus, input[type="reset"]:hover {
        background-color: #cb2600;
    }

input[type="submit"] {
    background-color: #015294;
    border: none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    /*width:100px;  */
    /*font-size: 18px;*/
    padding: 10px 20px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

    input[type="submit"]:focus, input[type="submit"]:hover {
        background-color: #01447b;
    }

.input_wrap {
    position: relative;
}

label {
    display: inline-block;
    font-size: 13px;
    /*margin-bottom: 10px;
    margin-top: 20px;*/
    text-transform: uppercase;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    select:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #000;
    }

html.js label.file_pseudo {
    cursor: pointer;
    max-width: 100%;
    text-transform: none;
}

    html.js label.file_pseudo:focus {
        outline: -webkit-focus-ring-color auto 5px;
    }

    html.js label.file_pseudo span {
        border: 1px solid #747474;
        display: inline-block;
        font-style: italic;
        max-width: 100%;
        overflow: hidden;
        padding: 15px 20px;
        text-overflow: ellipsis;
        white-space: nowrap;
        width: 375px;
        vertical-align: top;
    }

    html.js label.file_pseudo strong {
        border: 1px solid #747474;
        background-color: #eaeef1;
        display: block;
        margin-bottom: 10px;
        padding: 15px 20px;
        height: 100%;
    }

@media only screen and (min-width: 992px) {
    html.js label.file_pseudo strong {
        border-right: 1px solid transparent;
        display: inline-block;
        margin-bottom: 0px;
    }
}

.icon-pass:before {
    background-position: -55px -5px;
    content: "";
    display: inline-block;
    height: 20px;
    background-image: url("Images/spritesheet.png");
    background-repeat: no-repeat;
    margin-right: 8px;
    width: 20px;
    vertical-align: text-bottom;
}

.icon-user:before {
    background-position: -5px -35px;
    content: "";
    display: inline-block;
    height: 20px;
    background-image: url("Images/spritesheet.png");
    background-repeat: no-repeat;
    margin-right: 8px;
    width: 20px;
    vertical-align: text-bottom;
}

.icon-warn {
    background-position: -85px -5px;
    display: block;
    height: 65px;
    background-image: url("Images/spritesheet.png");
    background-repeat: no-repeat;
    width: 65px;
}

/*ol, ul {
    display: block;
    margin-bottom: 20px;
}*/

    ol li, ul li {
        margin-bottom: 10px;
    }

.navigation {
    display: none;
    list-style: none;
    margin: 0;
    padding: 15px 0px;
}

@media only screen and (min-width: 992px) {
    .navigation {
        display: block !important;
        padding: 0;
    }
}

.navigation > li {
    display: block;
    margin: 0;
    position: relative;
}

@media only screen and (min-width: 992px) {
    .navigation > li {
        float: left;
    }
}

@media only screen and (min-width: 992px) {
    .navigation > li:after {
        content: "|";
        position: absolute;
        right: -3px;
        top: 10px;
    }
}

@media only screen and (min-width: 992px) {
    .navigation > li:last-child:after {
        content: "";
    }
}

.navigation > li > a {
    color: inherit;
    cursor: pointer;
    display: block;
    padding: 15px 18px;
    text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

@media only screen and (min-width: 992px) {
    .navigation > li > a {
        display: inline-block;
        padding: 10px 18px;
    }
}

.navigation > li > a:focus, .navigation > li > a:hover {
    color: #a3a3a3;
}

.navigation > li > ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 1;

    display: none;
}

@media (max-width: 767px) {
    .navigation > li > ul {
        display: block !important;
    }
}

@media only screen and (min-width: 992px) {
    .navigation > li > ul {
        background-color: #eaeef1;
        box-shadow: 0 3px 5px 0 rgba(50,50,50,0.23);
        display: none;
        min-width: 200px;
        position: absolute;
        left: 0;
        top: 50px;
    }
}

.navigation > li > ul > li {
    display: block;
    margin-bottom: 0;
}

    .navigation > li > ul > li > a {
        color: inherit;
        cursor: pointer;
        display: block;
        padding: 15px 18px;
        text-decoration: none;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

@media only screen and (min-width: 992px) {
    .navigation > li > ul > li > a {
        font-size: 13px;
        padding: 15px 20px;
    }
}

@media only screen and (min-width: 992px) {
    .navigation > li > ul > li > a:focus, .navigation > li > ul > li > a:hover {
        background-color: #007fc6;
        color: #fff;
    }
}

@media only screen and (min-width: 992px) {
    .navigation > li.active > a {
        color: #015294;
        font-weight: bold;
    }
}

.navigation > li.dropdown > a {
    display: none;
}

@media only screen and (min-width: 992px) {
    .navigation > li.dropdown > a {
        display: block;
    }
}

table {
    border-collapse: separate;
    border-spacing: 1px;
    margin: 12px 0px;
    width: 100%;
}

    table tbody td {
        font-size: 13px;
        padding: 10px 12px;
        text-align: left;
    }

        table tbody td input {
            width: 100%;
        }

    table tbody > tr:nth-of-type(2n+2) {
        background-color: #eaeef1;
    }

    table thead th {
        background-color: #015294;
        color: #fff;
        font-weight: bold;
        padding: 10px 12px;
        text-align: left;
    }

        table thead th a {
            color: #fff;
        }

.table_wrap {
    overflow-x: auto;
}

.content {
    padding: 20px 0px 60px 0px;
}

    .content.no-pad {
        padding: 0;
    }

.content__status {
    border-bottom: 2px solid #eaeef1;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

    .content__status h3 {
        margin-bottom: 5px;
    }

.content__status__half {
    border-left: 8px solid #54bbe6;
    padding-left: 15px;
}

@media only screen and (min-width: 992px) {
    .content__status__half {
        display: table-cell;
        width: 50%;
    }
}

.content__status__full {
    /*border-left: 8px solid #54bbe6;
    padding-left: 15px;*/
}

@media only screen and (min-width: 992px) {
    .content__status__full {
        display: table-cell;
        width: 100%;
    }
}

.content__status p {
    margin: 0px 0px 10px 0px;
}

@media only screen and (min-width: 992px) {
    .content__status > .row {
        display: table;
        width: 100%;
    }
}

.content__status select {
    display: block;
    margin-top: 30px;
    width: 100%;
}

.footer {
    background-color: #494949;
    color: #fff;
    font-size: 11px;
    padding-top: 30px;
}

    .footer h6 {
        font-size: 13px;
    }

@media only screen and (min-width: 992px) {
    .footer__left {
        width: calc(13.3333333333%);
        float: left;
        margin-left: 0px;
    }
}

.footer__left img {
    display: block;
    margin-bottom: 30px;
    max-width: 100%;
}

@media only screen and (min-width: 992px) {
    .footer__left img {
        margin-bottom: 0px;
    }
}

.footer p {
    margin: 0;
}

.footer__right {
    padding-bottom: 40px;
}

@media only screen and (min-width: 992px) {
    .footer__right {
        width: calc(86.6666666667% - 74.6666666667px);
        float: left;
        margin-left: 40px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
}

.footer__right__first {
    border-left: 5px solid #c6e2f7;
    margin-bottom: 20px;
    padding-bottom: 7px;
    padding-left: 15px;
}

@media only screen and (min-width: 992px) {
    .footer__right__first {
        display: table-cell;
        margin-bottom: 0px;
        width: 46.6666666667%;
    }
}

@media only screen and (min-width: 992px) {
    .footer__right > .row {
        display: table;
        width: 100%;
    }
}

.footer__right__second {
    border-left: 5px solid #c6e2f7;
    margin-bottom: 20px;
    padding-bottom: 7px;
    padding-left: 15px;
}

@media only screen and (min-width: 992px) {
    .footer__right__second {
        display: table-cell;
        margin-bottom: 0px;
        width: 53.3333333333%;
    }
}

.footer .spacer {
    padding-bottom: 5px;
}

    .footer .spacer:after {
        content: "|";
        display: inline-block;
        margin: 0px 5px;
    }

.header {
    background-color: #c6e2f7;
    padding: 10px 0px;
}

@media only screen and (min-width: 992px) {
    .header__left {
        width: calc(26.6666666667%);
        float: left;
        margin-left: 0px;
    }
}

.header__left img {
    display: block;
    max-width: 100%;
}

@media only screen and (min-width: 992px) {
    .header__right {
        width: calc(73.3333333333%);
        float: left;
        margin-left: 0px;
    }
}

.header__right p {
    font-size: 12px;
    margin: 0;
    padding: 15px 0px;
    text-transform: uppercase;
}

@media only screen and (min-width: 992px) {
    .header__right p {
        font-size: 14px;
        padding: 15px 0px 15px 40px;
    }
}

.header__right p span {
    color: #007fc6;
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin-right: 10px;
}

@media only screen and (min-width: 992px) {
    .header__right p span {
        display: inline-block;
        font-size: 17px;
    }
}

.subheader {
    background-color: #eaeef1;
    padding-top: 20px!important;
}

    .subheader .button {
        float: right;
    }

.subheader__toggle {
    color: inherit;
    display: inline-block;
    font-size: 18px;
    padding: 10px 20px 10px 0px;
    text-decoration: none;
}

@media only screen and (min-width: 992px) {
    .subheader__toggle {
        display: none;
    }
}

.subheader__toggle:after {
    background-position: -35px -5px;
    content: "";
    display: inline-block;
    height: 10px;
    background-image: url("Images/spritesheet.png");
    background-repeat: no-repeat;
    margin-left: 10px;
    width: 10px;
    vertical-align: middle;
}

.subheader__toggle:before {
    background-position: -5px -5px;
    content: "";
    display: inline-block;
    height: 20px;
    background-image: url("Images/spritesheet.png");
    background-repeat: no-repeat;
    margin-right: 10px;
    width: 20px;
    vertical-align: text-bottom;
}

.dashboard_page__chart h2 {
    margin-bottom: 30px;
    text-align: center;
}

.dashboard_page__chart #cceChart {
    display: block;
    margin: auto;
}

.dashboard_page h5 {
    margin-top: 40px;
}

.login_page {
    background-color: #eaeef1;
}

    .login_page > .container {
        padding: 0;
        height: 600px;
       
    }

@media only screen and (min-width: 992px) {
    .login_page > .container > .row {
        background-color: #eaeef1;
        display: table;
        width: 100%;
            height: 600px;
    }
}

.login_page__left {
    background-image: url("Images/RIOHIC_Image.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: none;
}

@media only screen and (min-width: 992px) {
    .login_page__left {
        display: table-cell;
        width: 66.6666666667%;
        vertical-align: top;
    }
}

.login_page__left img {
    display: block;
    width: 100%;
}

.emailTextHighlight{
    
    border: 1px solid #ff0000;
    background-color: #ffeeee;

}
.login_page__right {
    background-color: #fff;
}

@media only screen and (min-width: 992px) {
    .login_page__right {
        display: table-cell;
        width:  66.6666666667%;
        vertical-align: middle;
    }
}

.login_page__right__inner {
    padding: 40px 20px;
}

@media only screen and (min-width: 992px) {
    .login_page__right__inner {
        padding: 40px 40px 40px 50px;
    }
}

.login_page__right__inner .center a {
    display: block;
}

.login_page__right__inner h1 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 0px;
    text-transform: uppercase;
}

    .login_page__right__inner h1:before {
        background-color: #54bbe6;
        content: "";
        display: block;
        height: 10px;
        margin-bottom: 10px;
        width: 70px;
    }

.login_page__right__inner h4 {
    font-size: 15px;
    margin-top: 0px;
}

.login_page__right__inner input[type="password"], .login_page__right__inner input[type="text"] {
    width: 100%;
}

.login_page__right__inner input[type="submit"] {
    margin: 40px auto 20px auto;
}

.login_page__right__inner label {
    font-size: inherit;
    margin-top: 30px;
    text-transform: none;
}

.provider_page__info {
    padding: 0px 0px 30px 0px;
}

    .provider_page__info h2 {
        margin-bottom: 0px;
    }

@media only screen and (min-width: 992px) {
    .provider_page__info__half {
        float: left;
        width: 50%;
    }
}

@media only screen and (min-width: 992px) {
    .provider_page__info__half.first {
        padding-right: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .provider_page__info__half.second {
        padding-left: 20px;
    }
}

.provider_page__info__half input, .provider_page__info__half select {
    width: 100%;
}
.provider_page__info__half__sub4 {
    float: left;
    width: 60%;
    padding-left: 15px;
}
.provider_page__info__half__sub3 {
    float: right;
    width: 30%;
    padding-left: 40px;
    padding-right:20px;
}
.provider_page__info__half__sub2 {
    float: left;
    padding-left: 20px;
    width: 50%;
}
.provider_page__info__half__sub1 {
    float: right;
    width: 40%;
    padding-right:25px;
}

.provider_page input[type="reset"] {
    float: right;
    margin-right: 20px;
}

.provider_page input[type="submit"] {
    float: right;
}

@media only screen and (min-width: 992px) {
    .provider_page__vendor__half {
        float: left;
        width: 50%;
        padding-left: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .provider_page__vendor__half.first {
        padding-right: 20px;
    }
}

@media only screen and (min-width: 992px) {
    .provider_page__vendor__half.second {
        padding-left: 20px;
    }
}

.provider_page__vendor__half input {
    width: 100%;
}

.provider_page__vendor > .row:last-of-type {
    border-bottom: 2px solid #eaeef1;
    margin-bottom: 20px;
    padding-bottom: 30px;
}

.responses_page__instruction {
    border-left: 8px solid #54bbe6;
    color: #007fc6;
    font-weight: bold;
    padding: 10px 0px 10px 15px;
}

.responses_page form {
    border-bottom: 2px solid #eaeef1;
    margin-bottom: 40px;
    padding-bottom: 40px;
}

.responses_page__search {
    border: 2px solid #eaeef1;
    margin-bottom: 20px;
    padding: 20px 20px 40px 20px;
}

@media only screen and (min-width: 992px) {
    .responses_page__search__half {
        float: left;
        padding: 0px 20px;
        width: 50%;
    }
}

.responses_page__search__half__dates {
    padding-top: 20px;
}

@media only screen and (min-width: 992px) {
    .responses_page__search__half__dates {
        padding-left: 20px;
    }
}

.responses_page__search__half__dates label {
    display: block;
    margin-right: 10px;
}

@media only screen and (min-width: 992px) {
    .responses_page__search__half__dates label {
        display: inline-block;
    }
}

@media only screen and (min-width: 992px) {
    .responses_page__search__half__dates label:last-of-type {
        margin-left: 20px;
    }
}

.responses_page__search__half input {
    width: 100%;
}

.responses_page input[type="reset"] {
    float: right;
    margin-right: 20px;
}

.responses_page input[type="submit"] {
    float: right;
}

.upload_page form {
    margin-bottom: 30px;
}

    .upload_page form input[type="submit"] {
        display: block;
    }

@media only screen and (min-width: 992px) {
    .upload_page form input[type="submit"] {
        display: inline-block;
        margin-left: 20px;
    }
}

.upload_page__legend {
    background-color: #eaeef1;
    margin: 30px 0px;
    padding: 20px 30px;
}

    .upload_page__legend ul {
        list-style: none;
        padding: 0;
    }
    /***************************
    Modal Popup
****************************/
/*#region Modal Popup */
.ui-widget-overlay {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    opacity: .5;
    filter: Alpha(Opacity=50);
}

.ui-front {
    z-index: 100;
}

.BlueLockBox
{
    height:193px;
    width:151px;
    float:left;
    background: url(images/LockIcon.png) 50% 50% no-repeat;
    background-color:#074051;    
}

.LightBlueBox
{
    height:193px;
    float:right;
    background-color:#54bbe6;
    padding:25px;
}

.LightBlueTerms
{
    height:150px;
    width:389px;    
    background-color:#54bbe6;
    padding:25px;
}

.LightBlueBox h1
{
    font-size:large;
    color:white;
    font-weight:100;
}

.ForgotPasswordPopup
{
    height:500px;
    width:440px;
    background-color:white;
    color:white;
    overflow:hidden;
}

.noTitleStuff .ui-dialog-titlebar {display:none}

.noTitleStuff { position:fixed; overflow:visible; }

.EnterNote .ui-dialog-buttonpane { background-color:lightgray; }

.rednote
{
    background-color:rgba(255,0,0, 0.8);
} 

.lightrednote
{
    background-color:rgba(255,0,0, 0.3);
} 

#forgotpasswordpopup
{
    padding:0px;
}

.ui-dialog .ui-dialog-content{
  padding: 0px;
  overflow:hidden;
}

.forgot-password-link
{
    text-decoration:underline;
    font-size:.9em;
    cursor: pointer; 
}
/*#endregion */

.field-validation-error {
    color:Red;
}

.field-validation-valid{
    display: none;
}
.validation-summary-valid{
    display: none;
}

.validation-summary-errors{
    color: #ff0000 !important;
}

.hr
{
    border:#BDC7D0 1px dashed;
    border-style: none none dashed;
    width:100%;
    height:1px;
    clear: both;
}

.SectionHeader {
    color: #007fc6;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 5px;
}

.BlueRoundedButton {
    background-color: #015294;
    border: none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    width:100px;
    font-weight: bold;
    /*font-size: 18px;*/
    padding: 10px 20px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.NJLoginButton {
    background-color: #015294;
    border: none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    width:200px;
    /*font-size: 18px;*/
    padding: 10px 20px;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: .65;
}

.ui-dialog-titlebar-close {
    cursor: pointer;
    border: none;
    background-image: url("Images/circle_x.png");
    background-repeat:no-repeat;
    background-position:center
}

/*#providerList.k-list-container {
    white-space: nowrap !important;
    width: auto!important;
    overflow-x: hidden !important;
    min-width:initial !important;
}

#providerList.k-list  {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    width:auto !important;
   
}

#providerList.k-list-container.k-list .k-item {    
    margin: 0px;
}*/

.k-list-container {
    white-space: nowrap !important;    
    overflow-x: hidden !important;    
}

.k-list  {
    overflow-x: hidden !important;
    overflow-y: auto !important;  
}

.k-list-container .k-list .k-item {    
    margin: 0px;
}

#graphDiv.fullscreen{
    z-index: 9999; 
    width: 100%; 
    height: 100%; 
    position: fixed; 
    top: 0; 
    left: 0; 
 }

#content-area {
    display:none;
    height:200px;
    overflow:auto;
    margin-bottom:1.5em;
    padding:10px;
    border:solid 1px #d7d7d7;
    color:#505050;
    background-color:#ffffff;
    font-size:90%;
}

#contentTerms{
  width: 240px;
  height: 200px;
  overflow-y: scroll;
}

/* Ordered List for Instructions on the page */
ol {
    counter-reset: li; /* Initiate a counter */
    list-style: none; /* Remove default numbering */
    *list-style: decimal; /* Keep using default numbering for IE6/7 */
    font: 15px 'trebuchet MS', 'lucida sans';
    padding: 0;
    /*margin-bottom: 4em;*/
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

ol ol {
    margin: 0 0 0 2em; /* Add some left margin for inner lists */
}

.rectangle-list a{
    position: relative;
    display: block;
    padding: .4em .4em .4em .8em;
    *padding: .4em;
    margin: .5em 0 .5em 2.5em;
    background: #ddd;
    color: #444;
    text-decoration: none;
    transition: all .3s ease-out;   
}

.rectangle-list a:hover{
    background: #eee;
}   

.rectangle-list a:before{
    content: counter(li);
    counter-increment: li;
    position: absolute; 
    left: -2.5em;
    top: 50%;
    margin-top: -1em;
   /* background: #fa8072;*/
    background: #87ceeb;
    height: 2em;
    width: 2em;
    line-height: 2em;
    text-align: center;
    font-weight: bold;
     font-size:12px;
}

.rectangle-list a:after{
    position: absolute; 
    content: '';
    border: .5em solid transparent;
    left: -1em;
    top: 50%;
    margin-top: -.5em;
    transition: all .3s ease-out;               
}

.rectangle-list a:hover:after{
    left: -.5em;
   /* border-left-color: #fa8072; */            
     border-left-color: #87ceeb;   
}   

.info {
    background: #f8f8f8;
    margin-bottom: 1em;
    padding: 8px;
    font-size: 16px;
}

.info code {
    display: inline-block;
    background: white;
    padding: 0 2px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.form__daterange {
    font-size: 16px;
    padding: 8px;
    width: 30em;
}

.ui-datepicker-range > .ui-state-default {
    background: lightblue;
}