﻿/*E-PROF FLEX-BOX DIRECTORY LISTING*/
/*ANIMATION*/
@-webkit-keyframes grow {
 0% {
 -webkit-transform: scale(1);
 transform: scale(1);
 box-shadow: 0.8px 0.8px 1.8px 0px rgba(0, 0, 0, 0.7);
}
 25% {
 -webkit-transform: scale(1.02);
 transform: scale(1.02);
 box-shadow: 1.6px 1.6px 3.2px 0.5px rgba(0, 0, 0, 0.75);
}
 50% {
 -webkit-transform: scale(1.04);
 transform: scale(1.04);
 box-shadow: 2.4px 2.4px 4.8px 1px rgba(0, 0, 0, 0.5);
}
 75% {
 -webkit-transform: scale(1.06);
 transform: scale(1.06);
 box-shadow: 3.2px 3.2px 6.4px 1.5px rgba(0, 0, 0, 0.4);
}
 100% {
 -webkit-transform: scale(1.08);
 transform: scale(1.08);
 box-shadow: 4px 4px 8px 2px rgba(0, 0, 0, 0.25);
}
}
.person {
    transition: all ease-in 0.2s;
}
 @-webkit-keyframes image-blur {
 0% {
 -webkit-filter: blur(0);
 filter: blur(0);
}
 25% {
 -webkit-filter: blur(2px);
 filter: blur(2px);
}
 50% {
 -webkit-filter: blur(4px);
 filter: blur(4px);
}
 75% {
 -webkit-filter: blur(2px);
 filter: blur(2px);
}
 100% {
 -webkit-filter: blur(0);
 filter: blur(0);
}
}
.img-mask img {
    transition: all ease-in 0.25s;
}
/*ANIMATION - END*/
/*Flex-settings*/
#main .directory > .flex-row {
    /*Flex-settings*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;/*Flex-settings*/
}
#main .directory > .flex-row > .person {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
}
#main .directory > .flex-row > .person .info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
/*Flex-settings - END*/
#main .directory {
    margin-bottom: 0;
}
#main .directory > .flex-row > .person {
    border: none;
    border-radius: 0;
    overflow: hidden;
    margin: 1.5%;
    max-width: 180px;
    position: relative;
    box-shadow: 0.8px 0.8px 1.8px 0px rgba(0, 0, 0, 0.7);
}
#main .directory > .flex-row > .person:hover, #main .directory > .flex-row > .person:focus {
    /*CALL TO ANIMATION*/
    -webkit-animation-name: grow;
    -webkit-animation-duration: 0.2s;
    -webkit-animation-timing-function: ease-in-out;
    /* ease is the default */
    -webkit-animation-delay: 0s;
    /* 0 is the default */
    -webkit-animation-iteration-count: 1;
    /* 1 is the default */
    -webkit-animation-direction: normal;
    /* normal is the default */
    -webkit-animation-fill-mode: forward;
    -webkit-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
    box-shadow: 4px 4px 8px 2px rgba(0, 0, 0, 0.25);
    z-index: 2;
}
#main .directory > .flex-row > .person:hover .img-mask img, #main .directory > .flex-row > .person:focus .img-mask img {
    position: relative;
    z-index: 1;
    -webkit-box-shadow: inset 0px -56px 106px 0px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: inset 0px -56px 106px 0px rgba(0, 0, 0, 0.6);
    box-shadow: inset 0px -56px 106px 0px rgba(0, 0, 0, 0.6);
    image-rendering: auto;
    -ms-interpolation-mode: nearest-neighbor;
    image-rendering: -moz-crisp-edges;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
#main .directory > .flex-row > .person:hover .inner-shadow, #main .directory > .flex-row > .person:focus .inner-shadow {
    display: block;
    opacity: 1;
}
#main .directory > .flex-row > .person:hover .info, #main .directory > .flex-row > .person:focus .info {
    position: relative;
    z-index: 2;
}
#main .directory > .flex-row > .person:hover .viewMo, #main .directory > .flex-row > .person:focus .viewMo {
    display: block;
    position: absolute;
    margin: 0;
    width: 100%;
    height: 100%;
    border: none;
    top: 0%;
    opacity: 1;
    z-index: 9;
}
#main .directory > .flex-row > .person.active {
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.25);
}
#main .directory > .flex-row > .person .inner-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: all ease-in-out 0.25s;
    z-index: 8;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+50,0.65+100 */
    background: -moz-linear-gradient(top, transparent 0%, transparent 65%, rgba(0, 0, 0, 0.75) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, transparent 65%, rgba(0, 0, 0, 0.75) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, transparent 65%, rgba(0, 0, 0, 0.75) 100%);
            /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000', GradientType=0 );
/* IE6-9 */
}
#main .directory > .flex-row > .person .img-mask {
    position: relative;
}
#main .directory > .flex-row > .person .img-mask img {
    width: 100% !important;
    height: auto !important;
}
#main .directory > .flex-row > .person .info {
    border-top: solid 3px #d80002;
    background-color: #fff;
    background-repeat: no-repeat;
    padding: 10px;
    position: relative;
}
#main .directory > .flex-row > .person .info h1 {
    font-size: 1.6rem;
    margin: 5px 0 0;
    line-height: 1.8rem;
    color: #d80002;
    padding: 0;
    font-weight: 700;
}
#main .directory > .flex-row > .person .info h2 {
    font-size: 1.4rem;
    line-height: 1.4rem;
    margin: 5px 0 5px;
    font-weight: normal;
    color: #000;
    padding: 0;
}
#main .directory > .flex-row > .person .info h2:after {
    content: none;
    border: none;
    width: 0;
    height: 0;
    background-color: transparent;
}
#main .directory > .flex-row > .person .viewMo {
    display: none;
    transition: all ease-in-out 0.50s;
    opacity: 0;
    top: 100%;
}
#main .directory > .flex-row > .person .viewMo > a {
    color: #fff;
    font-weight: normal;
    text-align: center;
    width: 100%;
    height: 100vh;
    padding: 107% 0 0;
    text-transform: uppercase;
    background-color: transparent !important;
    border: none;
    display: block;
    margin: 0 auto;
    font-size: 1.5rem;
    letter-spacing: 1px;
    vertical-align: middle;
    text-shadow: 0px 0px 8px black !important;
    opacity: 1;
    transition: all ease-in-out 0.5s;
}
#main .directory > .flex-row > .person .viewMo > a:hover {
    background-color: transparent !important;
    text-decoration: none !important;
    opacity: 1;
}
#main .directory > .flex-row > .person ul {
    list-style: none;
    padding: 20px 0 0 0;
    margin: 0;
    border-top: solid 1px #ccc;
    display: none;
}
#main .directory > .flex-row > .person ul li {
    display: inline-block;
    margin: 0 3.25%;
}
#main .directory > .flex-row > .person ul li:focus a {
    color: #7A7A7A;
    font-size: 0.70rem;
    text-align: center;
    color: #000;
}
#main .directory > .flex-row > .person ul li:focus a i {
    font-size: 1rem;
    display: block;
    line-height: 0.15rem;
    color: #000;
}
#main .directory > .flex-row > .person ul li a {
    font-size: 0.70rem;
    text-align: center;
    color: #979797;
}
#main .directory > .flex-row > .person ul li a i {
    font-size: 1rem;
    display: block;
    line-height: 0.15rem;
    color: #979797;
}
#main .directory > .flex-row > .person ul li a:focus {
    color: #000;
    text-decoration: none;
}
#main .directory > .flex-row > .person ul li a:focus i {
    font-size: 1rem;
    display: block;
    line-height: 0.15rem;
    color: #000;
}
#main .directory > .flex-row > .person a.view-btn {
    font-size: 0.75rem;
    font-weight: 700;
    /*letter-spacing:0.8px;*/
    text-transform: lowercase;
    text-align: center;
    margin: 0 -10px 5px 0;
    padding: 5px 8px;
    border-radius: 4px 0 0 4px;
    color: #fff;
    background: #000;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
}
#main .directory > .flex-row > .person a.view-btn:focus {
    background: #d80002;
    text-decoration: none;
}
/*E-PROF PROFILE & PUBLICATION VIEW*/
.content-block > header {
    padding: 0 !important;
}
#main .directory .full-profile {
    background: #fff;
    padding: 15px 0;
    /*box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);*/
    border-top: solid 5px #e00122;
    display: inline-block;
    margin-top: 0;
}
#main .directory .full-profile .person .img-mask img {
    width: 100%;
    height: auto;
}
#main .directory .full-profile .bsInfo .row {
    margin-left: -30px;
    margin-right: -15px;
}
#main .directory .full-profile .bsInfo .row header {
    padding: 0 15px;
    position: relative;
    margin-bottom: 1.5rem;
}
#main .directory .full-profile .bsInfo .row header h1.pubName {
    margin-top: 0;
    margin-bottom: 0.3em;
    padding: 0;
    color: #000;
    font-size: 2.5rem;
    font-weight: 700;
}
#main .directory .full-profile .bsInfo .row header h2.pubTitle {
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.2;
    color: #e00122;
}
#main .directory .full-profile .bsInfo .row header h2.pubTitle:after {
    content: none;
    width: 0;
    border: none;
    position: absolute;
    bottom: 0;
    left: 0;
}
#main .directory .full-profile .bsInfo .row header:after {
    content: "";
    width: 33px;
    border: solid 5px #e00122;
    position: absolute;
    bottom: -1.0rem;
}
#main .directory .full-profile .bsInfo .row .pull-right {
    text-align: right;
}
#main .directory .full-profile .bsInfo .row .pull-right .pill-btn {
    line-height: 1;
    text-align: right;
    color: #000;
    display: inline-block;
}
#main .directory .full-profile .bsInfo .row .pull-right .pill-btn.pull-right {
    line-height: 1;
    margin-left: 15px;
}
#main .directory .full-profile .bsInfo .row .col-md-4 strong {
    text-align: right;
}
#main .directory .full-profile .bsInfo .row .address {
    text-align: right;
}
#main .directory .full-profile .bsInfo .row .address ul.conInfo {
    padding: 0;
    list-style: none;
    text-align: right;
}
#main .directory .full-profile .bsInfo .row ul {
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0;
}
#main .directory .full-profile .bsInfo .row ul li {
    margin: 5px 0;
    font-size: 1.6rem;
    line-height: 1.3;
}
#main .directory .full-profile .bsInfo .row ul li:before {
    content: none !important;
    border: none !important;
}
#main .directory .full-profile .pubBtn, #main .directory .full-profile .pubBtnAbtract {
    border: none;
    background-color: transparent;
    padding: 0;
    float: right;
    font-weight: 700;
    margin: 2.2rem 0 0;
}
#main .directory .full-profile .pubBtn:hover, #main .directory .full-profile .pubBtn:focus, #main .directory .full-profile .pubBtnAbtract:hover, #main .directory .full-profile .pubBtnAbtract:focus {
    background-color: transparent;
    box-shadow: none;
    outline-color: rgba(255, 255, 255, 0);
}
#main .directory .full-profile .pubBtn .btnText, #main .directory .full-profile .pubBtnAbtract .btnText {
    font-weight: 700;
    color: #3d3d3d;
    vertical-align: text-bottom;
}
#main .directory .full-profile .pubBtn .glyphicon, #main .directory .full-profile .pubBtnAbtract .glyphicon {
    color: #d80002;
    text-align: center;
    font-size: 1.2em;
}
#main .directory .full-profile .pubHolder {
    clear: both;
}
#main .directory .full-profile .pubHolder .btn-default:hover, #main .directory .full-profile .pubHolder .btn-default:focus, #main .directory .full-profile .pubHolder .btn-default:active, #main .directory .full-profile .pubHolder .btn-default.active {
    background-color: transparent;
    box-shadow: none;
    outline-color: rgba(255, 255, 255, 0);
}
#main .directory .full-profile .pubHolder h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 10px;
    color: #3d3d3d;
}
#main .directory .full-profile .pubHolder .pubs, #main .directory .full-profile .pubHolder .pubsAbtract {
    clear: both;
    height: 0;
    overflow: hidden;
    -webkit-transition: max-height ease-in-out 1.5s;
    transition: max-height ease-in-out 1.5s;
    position: relative;
    transition: all ease-in-out 0.25s;
}
#main .directory .full-profile .pubHolder .pubs + .pubsAbtract {
    margin: 2rem 0 1.8rem;
}
#main .directory .full-profile .pubHolder p {
    font: 1.6rem/2.0rem arial, sans-serif;
    color: #333;
    padding: 5px 8px;
    margin: 0;
}
#main .directory .full-profile .pubHolder p:nth-child(even) {
    background: #f6f6f6;
    border-radius: 4px;
}
#main .directory .full-profile .showFive.showAll, #main .directory .full-profile .showAll {
    height: auto !important;
}
#main .directory .full-profile .showAll .pubBtn .glyphicon {
    padding: 3px 0 0 1px;
}

@media (max-width: 991px) {
#main .directory .full-profile .bsInfo .row .pull-right .pill-btn {
    margin: 0 0 1.5rem;
}
}

@media (max-width: 767px) {
#main .directory .full-profile .bsInfo {
    margin-top: 2.5rem;
}
#main .directory .full-profile .bsInfo .row {
    margin-left: 0;
    margin-right: 0;
}
}
/*E-PROF SORT NAVIGATION*/
#main .directory .tab-nav {
    display: block;
    width: 100%;
    background: #fff !important;
    /*border-top:solid 1px #C0C0C0;*/
    border-bottom: solid 1px #C0C0C0;
    margin-bottom: 60px;
}
#main .directory .tab-nav > a {
    background: #000;
    color: #fff !important;
    font-weight: 400;
    float: left;
    margin: 13px 0 0 !important;
    padding: 5px 0 2px 10px !important;
    font-size: 0.85em !important;
    border-radius: 4px 4px 0 0;
}
#main .directory .tab-nav > a > .caret {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    border-top: 8px solid #d80002 !important;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    float: right !important;
    margin: 4px 8px 8px !important;
}
#main .directory .tab-nav > ul {
    float: left;
    display: inline-block;
    margin: 0 0 0 35px;
}
#main .directory .tab-nav > ul > li {
    display: inline-block;
    font-weight: 700;
    margin: 0 10px 0 0;
    padding: 10px 35px;
}
#main .directory .tab-nav > ul > li:before {
    border: none !important;
}
#main .directory .tab-nav > ul > li.active {
    border-top: solid #d80002 4px;
    margin-top: -4px;
    margin-bottom: -1px;
    background: #fff;
    padding-bottom: 11px;
    box-shadow: 0px -3px 5px 0px rgba(0, 0, 0, 0.25);/* */
}
#main .directory .tab-nav > ul > li.active a {
    color: #000;
}
#main .directory .tab-nav > ul > li > a {
    color: #6C6C6C;
}

/*# sourceMappingURL=eprof-complete.css.map */
/*REMOVAL OF OLD DEPT DIRECTORY STYLING*/
#main .wrap #content:after {
    content: none !important;
    border: none !important;
    box-shadow: none !important;
}