/* FireFox adheres to Control Panel > Display zoom settings. If higher than 100%, page appears zoomed in. This CSS prevents that zooming. */
/* See http://stackoverflow.com/questions/23099849/stop-firefox-dpi-scaling-when-windows-setting-is-at-125  */
@media only screen and( -webkit-min-device-pixel-ratio: 1.25 ),
       only screen and(      -o-min-device-pixel-ratio: 5/4 ),
       only screen and( min-resolution: 120dpi ),
       only screen and( min-resolution: 1.25dppx ) {
    body {
        font-size: 1rem;
    }
}



html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}


html {
    background-color: #35a; /* The footer color */
    margin:0px;
    padding:0px;
}

body {
    background-color: #d2b48c; /* The body color. #d2b48c=tan */
    margin:0px;
    padding:0px;
}


.logged-in-text {
    color: #eeeeee;
    font: 11pt Verdana;
    position:absolute;
    right: 20px;
    top: 10px;
    z-index: 2;
}

.logged-in-text a {
    color:white;
}

.jdspad-header {
    background-color: #3355aa;                                                  /* Fallback                         */
    background-image: -ms-linear-gradient(left, #77AAEE 0%, #3355AA 100%);      /* IE10 Consumer Preview            */
    background-image: -moz-linear-gradient(left, #77AAEE 0%, #3355AA 100%);     /* Mozilla Firefox                  */
    background-image: -o-linear-gradient(left, #77AAEE 0%, #3355AA 100%);       /* Opera                            */
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #77AAEE), color-stop(1, #3355AA));
                                                                                /* Webkit (Safari/Chrome 10)        */
    background-image: -webkit-linear-gradient(left, #77AAEE 0%, #3355AA 100%);  /* Webkit (Chrome 11+)              */
    background-image: linear-gradient(to right, #77AAEE 0%, #3355AA 100%);      /* W3C Markup, IE10 Release Preview */
    border-bottom: 1px #35a solid;
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: center;
}

.jdspad-header a {
    color: white;
    font-family: "Times New Roman", Georgia, Serif;
    font-size: 64px;
    font-style: italic;
    font-weight: 300;   /* 300 and 400 supported for Oxygen font */
    text-decoration: none;
    text-shadow: 1px 1px #35a, 2px 2px #35a, 3px 3px #35a, 4px 4px #f00;
    transition: text-shadow 300ms, color 300ms; -webkit-transition: text-shadow 300ms, color 300ms;
}

.jdspad-header a:hover {
    color: #fff;
    text-shadow: 1px 1px #f00, 2px 2px #f00, 3px 3px #f88, 4px 4px #f88;
}

.jdspad-header-shadow1 {
    display: none;
}
.jdspad-header-shadow2 {
    display: none;
}


.expand-jdspad-top-nav-label {
}
.expand-jdspad-top-nav-cb {
    display: none;
    margin: 0px;
    padding: 0px;
    visibility: hidden;  /* Don't need to show the actual checkbox */
}
.expand-jdspad-top-nav-cb:checked ~ .jdspad-top-nav {
    max-height: 400px;   /* Make this value bigger than the menu height could ever be */
    overflow: hidden;
}

.jdspad-top-nav {
    background-color: #35a; /* #7AE; */
    border-bottom: 1px #7ae solid;
    border-top: 1px #7ae solid;
    text-align: center;
    z-index: 2;
}

.jdspad-top-nav a {
    border: 0px gray solid;
    color: #9cf;
    display: inline-block;
    font-size: 20px;
    font-family: "Oxygen", Helvetica, sans-serif;
    font-style: italic;
    font-weight: 300;
    padding-left: 7px;
    padding-right: 7px;
    text-decoration: none;
    transition: background-color 300ms; -webkit-transition: background-color 300ms;
}

.jdspad-top-nav a:hover {
    background-color: #7ae;  /* #35a; */
    color: white;
}

.content-outer {
    background-image: url("/pictures/backgrounds/beige_bg.jpg");
    border-top: 1px #35a solid;
    border-bottom: 1px #35a solid;

    /* h-shadow, v-shadow, blur, spread (shadow size), color, inset */
    -moz-box-shadow:    0px  8px 8px -8px #222 inset, 
                        0px -8px 8px -8px #222 inset;
    -webkit-box-shadow: 0px  8px 8px -8px #222 inset, 
                        0px -8px 8px -8px #222 inset;
     box-shadow:        0px  8px 8px -8px #222 inset, 
                        0px -8px 8px -8px #222 inset;
}

.bread-crumbs-outer {
    margin: 20px auto 0px auto;
    max-width: 700px;
    width: 100%;
}

.bread-crumbs-inner {
    background-color: #ffffff;
    border-top: 1px #cccccc solid;
    border-left: 1px #aaaaaa solid;
    border-right: 1px #888888 solid;
    border-bottom: 1px white solid;
    border-top-left-radius: 50px 36px; -moz-border-radius-topleft: 50px 36px;
    border-top-right-radius: 50px 36px; -moz-border-radius-topright: 50px 36px;
    color: #444444;
    font-size: 14px;
    font-family: "Oxygen", Helvetica, sans-serif;
    display: inline-block;
    margin: 0px 0px -1px 0px;
    max-width: 700px;
    padding: 4px 30px 4px 30px;
}

.bread-crumbs-inner a {
    color: #3355cc;
    text-decoration: none;
}

.content,
.content-inner {
    background-color: white;
    border-top: 1px #cccccc solid;
    border-left: 1px #aaaaaa solid;
    border-right: 1px #888888 solid;
    border-bottom: 1px #666666 solid;
    border-radius: 4px; -moz-border-radius: 4px;
    box-shadow: 8px 8px 11px rgba(0, 0, 0, 0.40);
    color: #333333;
    font-size: 16px;
    font-family: "Oxygen", Helvetica, sans-serif;
    margin: 0px auto 35px auto;
    max-width: 700px;
    padding: 13px 35px 23px 35px;
}

h1 { font-size: 36px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
h4 { font-size: 16px; }
h5 { font-size: 14px; }

footer {
    background-color: #35a;
}
.jdspad-footer {
    background: #35a;
    border-top: 1px #77aaee solid;
    color: #7ae;
    font-size: 16px;
    font-family: "Oxygen", Helvetica, sans-serif;
    padding-top: 5px;
    padding-bottom: 25px;
    text-align: center;
}
.jdspad-footer a {
    color: white;
    text-decoration: none;
}
.jdspad-footer a:hover {
    color: yellow;
    text-decoration: underline;
}

.web-compliance-badges {
    margin-top: 25px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.web-compliance-badges img {
    border: 0px;
}


.datepicker {
    max-width: 100px;
}

.sleek-button {

    -webkit-appearance: none;
    -webkit-border-horizontal-spacing: 0px;
    -webkit-border-image: none;
    -webkit-border-vertical-spacing: 0px;
    -webkit-box-align: center;
    -webkit-box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.0470588) 0px 1px 2px 0px;
    -webkit-rtl-ordering: logical;
    -webkit-transition-delay: 0s;
    -webkit-transition-duration: 0s;
    -webkit-transition-property: all;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
    -webkit-user-select: text;

    background-color: whiteSmoke;
    background-image: -webkit-linear-gradient(top, white, #E6E6E6);
    background-position: 0% 0%;
    background-repeat: repeat-x;
    border-style: solid;
    border-width: 1px;
    border-bottom-color: rgba(0, 0, 0, 0.247059);
    border-left-color: rgba(0, 0, 0, 0.0980392);
    border-right-color: rgba(0, 0, 0, 0.0980392);
    border-top-color: rgba(0, 0, 0, 0.0980392);
    border-collapse: separate;
    border-radius: 4px;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.0470588) 0px 1px 2px 0px;
    box-sizing: border-box;
    color: #111111;
    cursor: pointer;
    display: inline-block;
    empty-cells: show;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    height: 28px;
    letter-spacing: normal;
    line-height: 18px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    max-width: none;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    text-align: center;
    text-decoration: none;
    text-indent: 0px;
    text-shadow: rgba(255, 255, 255, 0.74902) 0px 1px 1px;
    text-transform: none;
    vertical-align: middle;
    white-space: pre;
    width: 118px;
    word-spacing: 0px;
}
.sleek-button:hover {
    /* background-image: -webkit-linear-gradient(top, white, #d5d5d5); */
    background-image: -webkit-linear-gradient(top, white, #999999);
    background-color: #cccccc;   /* Only used by IE, since that browser doesn't support the background gradients */
}

.disabled-button {
    color: #aaaaaa;
    cursor: auto;
}
.sleek-button.disabled-button:hover {
    background-color: whiteSmoke;
    background-image: -webkit-linear-gradient(top, white, #E6E6E6);
}

.sleek-select {
    -webkit-appearance: button;
    -webkit-border-radius: 2px;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-padding-end: 20px;
    -webkit-padding-start: 2px;
    -webkit-user-select: none;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAeCAMAAAAfOR5kAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAMAUExURQAAALu7u729vb+/v8PDw9bW1v///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFU5rIwAAAEAdFJOU////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wBT9wclAAAACXBIWXMAABJ0AAASdAHeZh94AAAAGXRFWHRTb2Z0d2FyZQBwYWludC5uZXQgNC4wLjE3M26fYwAAADlJREFUKFNjYP2PDYwKYwJihNmgAE2YESLKiG4IE0iUCchAM5uZjY0ZRKNbycICptCFoWAkCP//DwB2oVjnkEkZiQAAAABJRU5ErkJggg=='), -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
    background-position: 88% center;
    background-repeat: no-repeat;
    border-style: solid;
    border-width: 1px;
    border-bottom-color: rgba(0, 0, 0, 0.247059);
    border-left-color: rgba(0, 0, 0, 0.0980392);
    border-right-color: rgba(0, 0, 0, 0.0980392);
    border-top-color: rgba(0, 0, 0, 0.0980392);
    border-collapse: separate;
    border-radius: 4px;
    color: #111111;
    cursor: pointer;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    outline: none;
    overflow: hidden;
    padding: 5px 40px 5px 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sleek-textarea {
    -webkit-appearance: none;
    -webkit-background-clip: border-box;
    -webkit-box-shadow: rgb(204, 204, 204) 0px 1px 3px 1px inset;
    -webkit-rtl-ordering: logical;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: text;
    -webkit-writing-mode: horizontal-tb;
    background-clip: border-box;
    background-color: rgb(255, 255, 255);
    border-bottom-color: rgb(204, 204, 204);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-style: none;
    border-bottom-width: 0px;
    border-image-outset: 0px;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: rgb(204, 204, 204);
    border-left-style: none;
    border-left-width: 0px;
    border-right-color: rgb(204, 204, 204);
    border-right-style: none;
    border-right-width: 0px;
    border-top-color: rgb(204, 204, 204);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top-style: none;
    border-top-width: 0px;
    box-shadow: rgb(204, 204, 204) 0px 1px 3px 1px inset;
    box-sizing: content-box;
    color: #555555;  /* rgb(85, 85, 85); */
    cursor: auto;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    height: auto;
    letter-spacing: normal;
    line-height: 23.09375px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    outline-color: rgb(85, 85, 85);
    outline-style: none;
    outline-width: 0px;
    padding: 2.5px 5px;
    text-align: start;
    text-indent: 0px;
    text-shadow: none;
    text-transform: none;
    vertical-align: middle;
    white-space: pre-wrap;  /* Whitespace is preserved by the browser. Text will wrap when necessary, and on line breaks */
    word-spacing: 0px;
    writing-mode: lr-tb;
}

.sleek-textbox {
    -webkit-appearance: none;
    -webkit-background-clip: border-box;
    -webkit-box-shadow: rgb(204, 204, 204) 0px 1px 3px 1px inset;
    -webkit-rtl-ordering: logical;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: text;
    -webkit-writing-mode: horizontal-tb;
    background-clip: border-box;
    background-color: rgb(255, 255, 255);
    border-bottom-color: rgb(204, 204, 204);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-style: none;
    border-bottom-width: 0px;
    border-image-outset: 0px;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    border-left-color: rgb(204, 204, 204);
    border-left-style: none;
    border-left-width: 0px;
    border-right-color: rgb(204, 204, 204);
    border-right-style: none;
    border-right-width: 0px;
    border-top-color: rgb(204, 204, 204);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top-style: none;
    border-top-width: 0px;
    box-shadow: rgb(204, 204, 204) 0px 1px 3px 1px inset;
    box-sizing: content-box;
    color: rgb(85, 85, 85);
    cursor: auto;
    /* display: block; */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    height: 23.09375px;
    letter-spacing: normal;
    line-height: 23.09375px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    outline-color: rgb(85, 85, 85);
    outline-style: none;
    outline-width: 0px;
    padding-bottom: 2.4779999256134033px;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 2.4779999256134033px;
    text-align: start;
    text-indent: 4.619999885559082px;
    text-shadow: none;
    text-transform: none;
    vertical-align: middle;
    white-space: nowrap;
    /* width: 239.34375px; */
    word-spacing: 0px;
    writing-mode: lr-tb;
}

.drop-shadow {
    position: relative;
    padding: 1em;
    margin: 2em 10px 4em;
    background: #ffffff;
    -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.drop-shadow:before,
.drop-shadow:after {
    content: "";
    position: absolute;
    z-index: -2;
}

.lifted {
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.lifted:before {
    bottom: 15px;
    left: 10px;

    height: 150px;
    width: 150px;

    -webkit-box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.7);

    -webkit-transform:rotate(-3deg);
    -moz-transform:rotate(-3deg);
    -ms-transform:rotate(-3deg);
    -o-transform:rotate(-3deg);
    transform:rotate(-3deg);
}
.lifted:after {
    bottom: 15px;
    right: 10px;
    left: auto;

    height: 150px;
    width: 150px;

    -webkit-box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.7);
    -moz-box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.7);
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.7);

    -webkit-transform:rotate(3deg);
    -moz-transform:rotate(3deg);
    -ms-transform:rotate(3deg);
    -o-transform:rotate(3deg);
    transform:rotate(3deg);
}








