@charset "UTF-8";
/* CSS Document */

html, body {
    height: 100%;
    position: relative;
}

body {
    font: 12px 'Open Sans', 'Trebuchet MS', Arial, Helvetica;
    margin: 0;
    background: #0c0c0c url('/_images/background.png');
    color: #486a74;
}

#wrapper {
    /*min-height: 100%;*/
    position: relative;
}

h1, h2, h3, h4, h5 {
    font-family: 'PT Sans', 'Open Sans', sans;
    padding: 0;
    margin: 0;
}

h1 {
    font-weight: 400;
    margin: 4px;
}

#page-container {
    position: relative;
    min-height: 100vh;
}

#content-wrap {
    padding-bottom: 2.5rem;    /* Footer height */
}

/*--------------------*/

/*---- FlexBox --------*/
.container {
    display: flex; /* or inline-flex */
    justify-content: center;
}

.item {
    flex-grow: 1;
    flex-basis: min-content;
}

.same-row-item {
    margin-left: 5px;
}

@media (max-width: 1000px) {
    .container {
        flex-direction: column;
    }

    .same-row-item {
        margin-top: 5px;
        margin-left: 0;
    }

    #sidebarContent {
        padding-left: 0 !important;
    }
}


/*--------------------*/

/*---- Header --------*/
#headerBackground {
    height: 12%;
    min-height: 76px;
    background-color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#fff));
    background-image: -webkit-linear-gradient(top, #f8f8f8, #fff);
    background-image: -moz-linear-gradient(top, #f8f8f8, #fff);
    background-image: -ms-linear-gradient(top, #f8f8f8, #fff);
    background-image: -o-linear-gradient(top, #f8f8f8, #fff);
    background-image: linear-gradient(top, #f8f8f8, #fff);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8f8f8', endColorstr='#ffffff', GradientType=0);
    border-bottom: 1px solid #222;
}

#header {
    height: auto;
    padding: 0;
}

#logo {
    padding-left: 60px;
}

#logo a {
    float: left;
    text-decoration: none;
    color: #486a74;
}

#logo a:visited {
    color: #486a74;
}

#logo p {
    float: left;
    margin-top: 5px;
    margin-left: 0;
    color: #486a74;
    text-shadow: 1px 1px #c0c0c0;
    font-family: "Myriad Light", 'Noto Sans', 'PT Sans', 'Open Sans', sans-serif;
    font-size: 28px;
    font-style: normal;
    margin-bottom: 0;
    padding-bottom: 0;
}



/* Login Page Styles */
#loginContent {
    width: 345px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

#accountmenu {
    position: absolute;
    right: 30px;
    top: 8px;
    padding: 6px;
    padding-top: 32px;
    line-height: 12px;
    /* background-color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
    background-image: -webkit-linear-gradient(top, #fff, #eee);
    background-image: -moz-linear-gradient(top, #fff, #eee);
    background-image: -ms-linear-gradient(top, #fff, #eee);
    background-image: -o-linear-gradient(top, #fff, #eee);
    background-image: linear-gradient(top, #fff, #eee);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);

    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);

    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);*/

    z-index: 0;

}

#accountmenu:before {
    /*content: ' ';
    position: absolute;
    z-index: -1;
    border: 1px dashed #ccc;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
    -moz-box-shadow: 0 0 0 1px #fff;
    -webkit-box-shadow: 0 0 0 1px #fff;
    box-shadow: 0 0 0 1px #fff;*/
}

#accountmenu a {
    /*color: #486a74 !important;*/
    text-decoration: none !important;
    border: none;
}

#accountmenu a img {
    text-decoration: none;
    border: none;
}

#accountmenu ul {
    font-size: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    display: inline-table;
}

#accountmenu ul:after {
    content: "";
    clear: both;
    display: block;
}

#accountmenu ul li {
    float: left;
    height: 32px;
    margin: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
    color: #486a74 !important;
}

#accountmenu ul ul {
    display: none;
    background: #5f6975;
    border-radius: 0px;
    padding: 0;
    position: absolute;
    top: 100%;
}

#accountmenu ul li:hover > ul {
    display: block;
}

#accountmenu ul ul li {
    float: none;
    border-top: 1px solid #6b727c;
    border-bottom: 1px solid #575f6a;
    position: relative;
    padding: 6px;
}

#accountmenu ul ul li a {
    padding: 3px;
    line-height: 18px;
    color: #fff;
}

#accountmenu ul ul li a:hover {
    background: #4b545f;
}

/* -------- Footer ------*/
#footerBackground {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 44px;
    width: 100%;
    min-height: 44px;
    background-color: #183642;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#183642), to(#1f3f4f));
    background-image: -webkit-linear-gradient(top, #183642, #1f3f4f);
    background-image: -moz-linear-gradient(top, #183642, #1f3f4f);
    background-image: -ms-linear-gradient(top, #183642, #1f3f4f);
    background-image: -o-linear-gradient(top, #183642, #1f3f4f);
    background-image: linear-gradient(top, #183642, #1f3f4f);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#183642', endColorstr='#1f3f4f', GradientType=0);
    color: #c0c0c0;
}

.push {
    height: 64px;
}

#primaryFooter {
    padding: 0 10px;
    background-repeat: repeat-x;
    background-position: left top;
}

#primaryFooter p {
    margin: 0;
    padding: 15px 0;
    font-size: .7em;
    color: #c0c0c0;
    text-align: left;
}

/*-------- Login --------*/

#login {
    min-height: 240px;
    width: 475px;
    margin: 200px auto 0 auto;
    padding: 25px;
    position: relative;
}

#login #msgblock {
    width: 515px;
    padding: 0;
    margin: -150px auto 0 -260px;
    position: absolute;
    top: 30%;
    left: 50%;
}

.msg {
    border: 1px solid;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 5px 0;
    padding: 5px 5px 5px 40px;
    background-repeat: no-repeat;
    background-position: 10px center;
    cursor: pointer;
}

.info {
    color: #00529b;
    background-color: #bde5f8;
    background-image: url('/_images/icons/Info.png');
    background-size: 20px;
}

.check-image {
    background-image: url('/_images/check.png');
    background-repeat:no-repeat;
    background-size: 100%;
}

.success {
    color: #4f8a10;
    background-color: #dff2bf;
    background-image: url('/_images/icons/Valid_Green.png');
    background-size: 20px;

}

.warning {
    color: #9f6000;
    background-color: #feefb3;
    background-image: url('/_images/icons/Warning.png');
    background-size: 20px;

}

.error {
    color: #d8000c;
    background-color: #ffbaba;
    background-image: url('/_images/icons/Error.png');
    background-size: 20px;
}

.settings-update-author-list {
    background-image: url('/_images/icons/shine-icon-set/png/256x256/application_process.png');
    background-position: center 5px !important;
    background-size: 50px;
}

.author-search {
    background-image: url('/_images/icons/shine-icon-set/png/256x256/application_search.png');
    background-position: center 5px !important;
    background-size: 50px;
}

.refresh-author-data {
    background-image: url('/_images/icons/Refresh.png');
    background-position: center 0 !important;
    background-repeat: no-repeat;
    background-size: 20px;
    height: 20px;
    width: 20px;
    display: inline-block;
    cursor: pointer;
}

.dashfunction {
    background-color: #cedbe0;
    width: 100px;
    min-height: 51px;
    /* border: 1px solid #000; */
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 5px 10px;
    padding: 60px 4px 4px 4px;
    background-repeat: no-repeat;
    background-position: 10px center;
    text-align: center;
    -webkit-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);

    -moz-box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);

    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: #486a74;
    cursor: pointer;
    float: left;
    /*display: none;*/
}

.dashfunction:hover {
    background-color: #3c9cd7;
    -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);

    -moz-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);

    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    color: #fff;

}

/* styling the checkbox "keep me logged in"*/
.keeplogin {
    margin-top: -20px;
}

.keeplogin input,
.keeplogin label {
    display: inline-block;
    font-size: 12px;
    font-style: italic;
}

.keeplogin input#loginkeeping {
    margin-right: 5px;
}

.keeplogin label {
    width: 80%;
}

/*--------------------*/
#login h1 {
    text-transform: uppercase;
    text-align: center;
    color: #666;
    margin: 0 0 30px 0;
    letter-spacing: 4px;
    font: normal 18px/1 Verdana, Helvetica;
    position: relative;
}

#login h1:after, #login h1:before {
    background-color: #777;
    content: "";
    height: 1px;
    position: absolute;
    top: 15px;
    width: 120px;
}

#login h1:after {
    background-image: -webkit-gradient(linear, left top, right top, from(#777), to(#fff));
    background-image: -webkit-linear-gradient(left, #777, #fff);
    background-image: -moz-linear-gradient(left, #777, #fff);
    background-image: -ms-linear-gradient(left, #777, #fff);
    background-image: -o-linear-gradient(left, #777, #fff);
    background-image: linear-gradient(left, #777, #fff);
    right: 0;
}

#login h1:before {
    background-image: -webkit-gradient(linear, right top, left top, from(#777), to(#fff));
    background-image: -webkit-linear-gradient(right, #777, #fff);
    background-image: -moz-linear-gradient(right, #777, #fff);
    background-image: -ms-linear-gradient(right, #777, #fff);
    background-image: -o-linear-gradient(right, #777, #fff);
    background-image: linear-gradient(right, #777, #fff);
    left: 0;
}

/*--------------------*/

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

/*--------------------*/

#inputs input {
    background: #f1f1f1 url(/_images/login-sprite.png) no-repeat;
    padding: 15px 15px 15px 30px;
    margin: 0 0 10px 0;
    width: 420px; /* 353 + 2 + 45 = 400 */
    border: 1px solid #ccc;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
    -webkit-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
    box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
}

#username {
    background-position: 5px -2px !important;
}

#password, #answerstr {
    background-position: 5px -52px !important;
}

#inputs input:focus, #comment:focus {
    background-color: #fff;
    border-color: #3c9cd7;
    outline: none;
    -moz-box-shadow: 0 0 0 1px #486a74 inset;
    -webkit-box-shadow: 0 0 0 1px #486a74 inset;
    box-shadow: 0 0 0 1px #486a74 inset;
}

/*--------------------*/
#actions {
    margin: 25px 0 0 0;
}

#submit, .submit_btn {
    background-color: #3c9cd7;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3c9cd7), to(#2c8cc7));
    background-image: -webkit-linear-gradient(top, #3c9cd7, #2c8cc7);
    background-image: -moz-linear-gradient(top, #3c9cd7, #2c8cc7);
    background-image: -ms-linear-gradient(top, #3c9cd7, #2c8cc7);
    background-image: -o-linear-gradient(top, #3c9cd7, #2c8cc7);
    background-image: linear-gradient(top, #3c9cd7, #2c8cc7);

    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;

    /* text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); */

    /* -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset; */
    /* -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset; */
    /* box-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.3) inset; */

    border-width: 1px;
    border-style: solid;
    border-color: #c0c0c0;

    float: right;
    height: 35px;
    padding: 5px;
    cursor: pointer;
    font: bold 15px Arial, Helvetica;
    color: #fff;
}

#submit:hover, #submit:focus, .submit_btn:hover, .submit_btn:focus {
    background-color: #08c;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#08c), to(#00589c));
    background-image: -webkit-linear-gradient(top, #08c, #00589c);
    background-image: -moz-linear-gradient(top, #08c, #00589c);
    background-image: -ms-linear-gradient(top, #08c, #00589c);
    background-image: -o-linear-gradient(top, #08c, #00589c);
    background-image: linear-gradient(top, #08c, #00589c);
}

#submit:active, .submit_btn:active {
    outline: none;

    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5) inset;
}

#submit::-moz-focus-inner, .submit_btn::-moz-focus-inner {
    border: none;
}

#actions a {
    color: #3151a2;
    float: right;
    line-height: 35px;
    margin-left: 10px;
}

/*--------------------*/

#back {
    display: block;
    text-align: center;
    position: relative;
    top: 60px;
    color: #999;
}

#mainContent {
    height: 100%;
    width: 95%;
    margin: 85px auto;
}

/* Dashboard */
.dashboardWrapper {
    max-width: 1000px;
    padding: 10px;
    margin-top: 25px;
    background-color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
    background-image: -webkit-linear-gradient(top, #fff, #eee);
    background-image: -moz-linear-gradient(top, #fff, #eee);
    background-image: -ms-linear-gradient(top, #fff, #eee);
    background-image: -o-linear-gradient(top, #fff, #eee);
    background-image: linear-gradient(top, #fff, #eee);
    z-index: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
}

.dashboardContent {
    border: 1px dashed #ccc;
    width: auto;
    min-height: 200px;
    padding: 5px;
    -moz-box-shadow: 0 0 0 1px #fff;
    -webkit-box-shadow: 0 0 0 1px #fff;
    box-shadow: 0 0 0 1px #fff;
}

.dashheader:after {
    content: ' ';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 3px;
    margin-bottom: 15px;
    background: -moz-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(147, 184, 189, 0)), color-stop(20%, rgba(147, 184, 189, 0.8)), color-stop(53%, rgba(147, 184, 189, 1)), color-stop(79%, rgba(147, 184, 189, 0.8)), color-stop(100%, rgba(147, 184, 189, 0)));
    background: -webkit-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
    background: -o-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
    background: -ms-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
    background: linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
}

.hrseperator {
    content: ' ';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 3px;
    margin-bottom: 15px;
    background: -moz-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(147, 184, 189, 0)), color-stop(20%, rgba(147, 184, 189, 0.8)), color-stop(53%, rgba(147, 184, 189, 1)), color-stop(79%, rgba(147, 184, 189, 0.8)), color-stop(100%, rgba(147, 184, 189, 0)));
    background: -webkit-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
    background: -o-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
    background: -ms-linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
    background: linear-gradient(left, rgba(147, 184, 189, 0) 0%, rgba(147, 184, 189, 0.8) 20%, rgba(147, 184, 189, 1) 53%, rgba(147, 184, 189, 0.8) 79%, rgba(147, 184, 189, 0) 100%);
}

.remove-response {
    background-image: url("../_images/mail_delete.png");
    background-repeat: no-repeat;
    display: block;
    height:24px;
    width:24px;
}

/* sidebar */
#sidebarContent {
    min-width: 250px;
    margin-top: 25px;
    padding-left: 10px;
}

#sidebarWrapper {
    background-color: #ffffff;
    padding: 20px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);

}

/* Forms */
.site-form-label {
    font-weight: bold;
}

.site-form-label {
    display: inline-block;
    font-size: 14px;
}

.site-name-field .site-form-input-very-short {
    width: 12%;
}

.site-name-field .site-form-input-short {
    width: 24%;
}

.site-name-field .site-form-input-medium {
    width: 36%;
}

.site-form-left {
    float: left;
}

.site-name-field .site-form-input-long {
    width: 49%;
}

.site-name-field .site-form-input-full {
    width: 100%;
}

.site-form-right {
    float: right;
}

.site-form-input {
}

.site-form-field div.site-form-input-container .site-form-input {
    line-height: 20px;
    background: #f1f1f1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100% !important;
}

.site-form-input, .site-search-element-input {
    border: 1px #ccc solid;
    background: #f1f1f1;
    border-radius: 2px;
    padding: 3px 10px !important;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
    -webkit-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
    box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
}

.site-form-input:focus, .site-search-element-input:focus {
    background-color: #fff !important;
    border-color: #3c9cd7;
    outline: none;
    -moz-box-shadow: 0 0 0 1px #3c9cd7 inset;
    -webkit-box-shadow: 0 0 0 1px #3c9cd7 inset;
    box-shadow: 0 0 0 1px #3c9cd7 inset;
}

/* Paper Box Style */

.paperBox {
    background-color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
    background-image: -webkit-linear-gradient(top, #fff, #eee);
    background-image: -moz-linear-gradient(top, #fff, #eee);
    background-image: -ms-linear-gradient(top, #fff, #eee);
    background-image: -o-linear-gradient(top, #fff, #eee);
    background-image: linear-gradient(top, #fff, #eee);
    z-index: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);

}

.paperBox:before {
    content: '';
    z-index: -1;
    position: absolute;
    border: 1px dashed #ccc;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    -moz-box-shadow: 0 0 0 1px #fff;
    -webkit-box-shadow: 0 0 0 1px #fff;
    box-shadow: 0 0 0 1px #fff;
}

.clear {
    clear: both;
}

#empTable thead {
    cursor: pointer;
    background: #c9dff0;
}

#empTable thead tr th {
    font-weight: bold;
    padding: 6px 10px;
    padding-left: 35px;
}

#empTable thead tr th span {
    padding-right: 20px;
    background-repeat: no-repeat;
    background-position: 100% 100%;
}

#empTable thead tr th.headerSortUp span {
    background-image: url('http://i.imgur.com/SP99ZPJ.png');
}

#empTable thead tr th.headerSortDown span {
    background-image: url('http://i.imgur.com/RkA9MBo.png');
}

#empTable tbody tr:nth-child(even) {
    background-color: #ccc;
}

.employeetable {
    margin: 0px;
    padding: 0px;
    width: 100%;
    position: relative;
    /*box-shadow: 2px 1px 3px #888888;*/
    border: 1px solid #000;
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    border-bottom-left-radius: 6px;
    -moz-border-radius-bottomright: 6px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    -webkit-border-top-right-radius: 6px;
    border-top-right-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    border-top-left-radius: 6px;
}

.employeetable table {
    position: relative;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
}

.employeetable tr:last-child td:last-child {
    -moz-border-radius-bottomright: 6px;
    -webkit-border-bottom-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.employeetable table tr:first-child th:first-child {
    -moz-border-radius-topleft: 6px;
    -webkit-border-top-left-radius: 6px;
    border-top-left-radius: 6px;
}

.employeetable table tr:first-child th:last-child {
    -moz-border-radius-topright: 6px;
    -webkit-border-top-right-radius: 6px;
    border-top-right-radius: 6px;
}

.employeetable tr:last-child td:first-child {
    -moz-border-radius-bottomleft: 6px;
    -webkit-border-bottom-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.employeetable tr:hover td {
    background: #3c9cd7;
}

.author-title {
    width: 200px !important;
    padding: 0 !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

.employeetable tr:nth-child(odd) {
    background-color: #e5e5e5;
}

.employeetable tr:nth-child(even) {
    background-color: #fff;
}

.employeetable td {
    vertical-align: middle;
    border: 1px solid #000;
    border-width: 0px 1px 1px 0px;
    text-align: left;
    padding: 7px;
    font-size: 10px;
    font-family: Arial;
    font-weight: normal;
    color: #000;
}

.employeetable tr:last-child td {
    border-width: 0px 1px 0px 0px;
}

.employeetable tr td:last-child {
    border-width: 0px 0px 1px 0px;
}

.employeetable tr:last-child td:last-child {
    border-width: 0px 0px 0px 0px;
}

.employeetable tr:first-child th {
    background: #5c9ccc url("/_styles/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png") 50% 50% repeat-x;
    border: 0px solid #000;
    text-align: center;
    border-width: 0px 0px 1px 1px;
    font-size: 12px;
    font-family: Arial;
    font-weight: bold;
    color: #fcfcfc;
}

.employeetable tr:first-child:hover th {

}

.employeetable tr:first-child th:first-child {
    border-width: 0px 0px 1px 0px;
}

.employeetable tr:first-child th:last-child {
    border-width: 0px 0px 1px 1px;
}

.paper {
    font: normal 12px/1.5 "Lucida Grande", arial, sans-serif;
    position: relative;
    padding: 6px 5px 4px 25px;
    color: #444;
    line-height: 20px;
    border: 1px solid #d2d2d2;
    background: #fff;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#d9eaf3), color-stop(4%, #fff)) 0 4px;
    background: -webkit-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
    background: -moz-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
    background: -ms-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
    background: -o-linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
    background: linear-gradient(top, #d9eaf3 0%, #fff 8%) 0 4px;
    -webkit-background-size: 100% 20px;
    -moz-background-size: 100% 20px;
    -ms-background-size: 100% 20px;
    -o-background-size: 100% 20px;
    background-size: 100% 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07);
    min-width: 200px;
    margin-top: 15px;
    /* min-height: 400px; */
}

.paper::before {
    content: '';
    position: absolute;
    width: 4px;
    top: 0;
    left: 15px;
    bottom: 0;
    border: 1px solid;
    border-color: transparent #efe4e4;
}

.head {
    background-color: #fff;
    min-height: 24px;
    min-width: 227px;
    margin-left: -23px;
    margin-top: -4px;
    padding-right: 5px;
    margin-right: -5px;
    margin-bottom: 20px;
}

.head h3 {
    margin-left: 23px;
    padding-top: 22px;
    padding-right: 5px;
}

.newhire, .newhire a {
    color: #3c3;
}

.term, .term a {
    color: #f00;
}

.newhire a, .term a {
    text-decoration: none;
}

.newhire a:hover, .term a:hover {
    color: #133;
}

.dir-rtl {
    direction: rtl !important;
}

.dir-ltr {
    direction: ltr !important;
}

.dashboard-section {
    margin-bottom: 85px;
}

.dashboard-section:last-child {
    margin-bottom: 0px;
}

.dashboard-section header {
    margin-bottom: 10px;
}

/*  FORM */
form {
    margin-bottom: 10px;
    margin-left: 3px;
}

form[name="search"] input {
    padding: 4px;
}

.message {
    margin-bottom: 3px;
    margin-left: 4px;
    font-size: 13px;
    display: none;
}

.error-message {
    color: red;
}

.success-message {
    color: green;
}

.error-input {
    border: 1px solid red;
}

.form-errors {
    color : red;
}
.form-errors p {
    margin: 0;
    padding: 0;
}

.file-sbt-button {
    background-color: #3c9cd7;
    display: inline-block;
    padding: 5px;
    cursor: pointer;
    color: white;
}

.file-sbt-button:hover {
    opacity: 0.5;
}


.field-disclosure {
    font-size: 11px;
    margin: 3px 0px;
}

.export-csv {
    background-color: #08c;
    display: inline-block;
    padding: 5px;
    cursor: pointer;
    color: #ffffff;
}

/* Author search */
#authorInfoForm p {
    margin-bottom: 5px !important;
    margin-left: 2px;
    margin-top: 0;
}

/*  Author Form */
#author-form h1 {
    font-size: 25px;
}

#mainContent article p {
    margin: 8px 0px 4px 4px;
}

#comment {
    background-color: #f1f1f1;
    width: 100%;
    box-sizing: border-box;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
    -webkit-box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
    box-shadow: 0 1px 1px #ccc inset, 0 1px 0 #fff;
}

.form-section-title {
    font-weight:bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

#resultswrapper {
    width: 100%;
    min-width: 1090px;
    padding: 10px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    float: left;
    background-color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
    background-image: -webkit-linear-gradient(top, #fff, #eee);
    background-image: -moz-linear-gradient(top, #fff, #eee);
    background-image: -ms-linear-gradient(top, #fff, #eee);
    background-image: -o-linear-gradient(top, #fff, #eee);
    background-image: linear-gradient(top, #fff, #eee);
    z-index: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border-color: #888;
    border-style: solid;
    border-width: 1px;
    -webkit-box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 8px 10px 2px rgba(0, 0, 0, 0.2);
}

/*  Footer */
footer {
    width: 100%;
    background-color: #183642;
    font-size: 10px;
    color: #8faec1;
    /*padding: 15px 0;*/
    position: absolute;
    bottom: 0px;
    margin-top: 50px;
}

.footer-container {
    width: 100%;
    border: none;
    border-collapse: collapse;
    background-color: #183642;
    padding: 25px;
    margin:auto;
    position: absolute;
    box-sizing: border-box !important;
}

#footer-menu li {
    float: left;
    margin-right: 45px;
    list-style: none;
}
#footer-menu a {
    color: #fff !important;
    text-decoration: none !important;
}

.spinning-icon-right {
    -webkit-animation-name: rotate;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate;
    -moz-animation-duration: 0.5s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    animation-name: rotate;
    animation-duration: 0.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotate {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}




@media screen and (max-width: 480px) {

    #author-form .dashboardWrapper {
        min-width: 300px;
        max-width: 400px;
        margin: auto;
        float: none;
    }

    /*#author-form #mainContent {*/
    /*    min-width: 100%;*/
    /*    min-height: 2303px !important;*/
    /*}*/

    /*#author-form .dashboardContent {*/
    /*    min-height: 0 !important;*/
    /*    max-height: 2229px !important;*/
    /*}*/

    #author-form article p {
        font-size: 11px !important;
        margin-bottom: 3px !important;
    }

    #author-form .form-errors {
        font-size: 11px !important;
    }

    #author-form .form-section-title {
        margin-top: 12px !important;
    }

    #author-form footer {
        padding: 0;
        margin: 0;
    }

    #author-form .footer-container {
        padding: 0;
        margin: 0;
    }

    #author-form .footer-container > div {
        float: none !important;
    }

    #author-form .footer-container > div:first-child {
        width: auto !important;
    }

    #author-form .footer-container > div:last-child {
        padding-left: 40px;
    }

    #author-form #footer-menu li {
        margin-right: 25px !important;
    }

    #author-form .site-form-input-container {
        width: 100% !important;
        margin-left: 0 !important;
        /*margin-top: 5px !important;*/
        /*margin-bottom: 5px !important;*/
    }

    #author-form .button-container {
        width: inherit !important;
    }

    #author-form .site-form-right {
        float: none !important;
    }

    #author-form #middle, #last, #city, #state {
        margin-top: 5px !important;
    }

    #author-form .other-title-wrapper {
        width: 100% !important;
        margin: 0 0 9px !important;
    }

    #author-form .orcid-wrapper {
        margin: 5px 0 !important;
    }

    #author-form #sidebarContent {
        margin: 25px auto;
        width: 329px;
        float: none;
    }
}


