.tapestry-conteiner {
    padding-left: 160px;
    padding-top: 41px;
    padding-right: 44px;
}

.image-list-wrap {
    position: absolute;
    top: 119px;
    left: 8px;
    width: 230px;
    height: 400px;
    color: #999999;
}

.navbar-fixed-top {
    min-height: 10px;
    background-color: #f7f7f7;
}
.navbar-nav > li > a{
    padding-top: 5px;
    padding-bottom: 5px;
}
.navbar-brand {
    float: left;
    height: 21px;
    padding: 5px 15px;
    font-size: 15px;
    line-height: 17px;
}

.sideMenu {
    position: fixed;
    background-color: #f7f7f7;
    z-index: 1000;
    width: 100%;
    top: 10px;
    padding-bottom: 10px;

}

.allInList {
    height: 400px;
    overflow: auto;
}

.image-list-tools {
    font-size: 11px;
    color: #999999;
    margin-bottom: 10px;
    width: 216px;
    height: 21px;
    border-bottom: solid 1px #DEDEDE;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.image-list-tools span {
    cursor: pointer;
    margin-top: 3px;
    margin-right: 5px;
}

.image-list-wrap ul li a {
    color: #999999;
    cursor: pointer;
}

.image-list-wrap ul {
    padding: 0;
    margin: 0;
    padding-left: 0;

}

.image-list-wrap ul li {
    display: block;
    cursor: pointer;
}

.container-fluid {
    padding-right: 10px;
    padding-left: 10px;
    margin-right: auto;
    margin-left: auto;
}

.yearItem:hover, .homeListItem:hover {
    color: #619bcd;
}

.custom-input input {
    margin: 0;
    height: 21px;
    border: none;
    width: 97px;
    font-size: 11px;
    background: none;
}

.sample-show-hide {
    animation: fadeIn 0.7s;
}

.img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img {
    max-height: 537px;
}

.single-image-description {
    text-align: left;
    margin-top: 10px;
}

.text-list {
    text-align: left;
    border-bottom: 1px solid #DEDEDE;
    margin-bottom: 10px;
    text-wrap: normal;
    display: block;
    overflow: hidden;
    max-height: 148px
}

.text-list img {
    display: none;

}

.text-left {
    margin-bottom: 48px;
}

.text-left-home {
    margin-bottom: 5px;
    text-align: left;
}

.singleText {
    text-align: left;
    width: 850px;
    min-height: 400px;
}

.singleText img {
    margin: 5px;
    display: block;
    height: 100%;
}

.readMore {
    cursor: pointer;
    color: #607D8B;

}

.textTitleClick {
    cursor: pointer;
    color: #607D8B;
}

.jumbotron p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: normal;
    background: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    z-index: 9999;

    text-align: center;
}

.overlay-white {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c6c6c6;
    z-index: 9990;

    text-align: center;
}

.overlay-content {
    height: auto;
    max-height: calc(100% - 250px);
    max-width: calc(100% - 200px);
    position: relative;
    display: block;
    margin: 0 auto 0 auto;
    top: 45%;
    transform: translateY(-50%);
    opacity: 1;
    color: #f7f7f7;

}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0; /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;

    -webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fade-in.one {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.intro-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 26px;
    line-height: 28px;
}

.fade-in-out {
    transition: 1s linear all;
    opacity: 1;
}

.fade-in-out.ng-hide {
    transition: 2s linear all;
    opacity: 0;
}

.fade-in-out-2.ng-hide {
    transition: 2s linear all;
    opacity: 0;
}

.text-fade-in-out {
    transition: 1s linear all;
    opacity: 1;
}

.text-fade-in-out.ng-hide {
    transition: 0.1s linear all;
    opacity: 0;
}

.text-fade-in-out-2.ng-hide {
    transition: 0.1s linear all;
    opacity: 0;
}

/* On the flex container */
.flexcontainer {
    display: -webkit-flex;
    display: flex;
    align-items: left;
    justify-content: left;
    /* You can set flex-wrap and flex-direction individually */
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    /* Or do it all in one line with flex flow */
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    /* tweak the where items line up on the row */
    /* valid values are: flex-start, flex-end, space-between, space-around, stretch */
    -webkit-align-content: flex-end;
    align-content: flex-end;
}

.tooltip.customClass .tooltip-inner {
    min-width: 100px;
    color: #2a3e5a;
    background-color: #a2bcd5;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .175);
}

.tooltip.customClass .tooltip-arrow {
    display: none;
}

.tapestryimg a img {
    width: 25px;
    height: 25px;
    background-color: #dbe8f0;
    margin: 0;
    padding: 0;

}

.tapestryimg:hover {
    margin: 1px;
    padding: 0;
    background-color: #dedede;
}

.tapestryimg {
    margin: 1px;
    padding: 0;
    background-color: #464646;
}

.tapestryimg a {
    margin: 0;
    padding: 0;
    background-color: #dbe8f0;
}

.gallery-navigation {
    font-size: 12px;
    text-align: right;
}

.gallery-navigation span {
    margin-right: 10px;
    cursor: pointer;
}

.gallery-navigation span:hover {

    color: #0b97c4;
}

.by-year {
    max-height: 300px;
    overflow: auto;

}

/* Let's get this party started */
::-webkit-scrollbar {
    width: 9px;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px #DBDBDB;
    border-radius: 1px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    border-radius: 1px;
    background: #DBDBDB;
    box-shadow: inset 0 0 6px #DBDBDB;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #A2BCD5;
}

.home-attachment {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eea236;
}

.home-attachment li {
    margin-top: 10px;
    list-style: none;
    color: #B2D1EC;
    font-size: 13px;
}

.additionallist {
    color: #3C763D;
}

.advancedSearch {
    max-height: 600px;
    overflow: auto;

}

.advancedSearchTitle {
    margin-top: 15px;
    margin-bottom: 10px;
    display: block;
    border-bottom: 1px solid #CCCCCC;
    width: 199px;
    font-size: 14px;
    color: #45515b;
}

.advancedSearchMessage {
    margin-top: 15px;
    margin-bottom: 10px;
    display: block;
    width: 199px;
    font-size: 12px;
    color: #980808;
}

.advancedSearch .form-group label {
    display: block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: normal;
    margin-top: 10px;
}

.advancedSearch .form-group textarea {
    width: 190px;
}

.advancedSearch .form-group {
    margin: 0;
}

.advancedSearch .form-group .btn {
    background-color: #8D969E;
    margin-top: 10px;
    background-image: none;
    color: #eee;
    text-shadow: none;
    border: none;
}

.search-category {
    width: 190px;
}

.custom-input-input {
    width: 190px;
    margin-bottom: 5px;
}

.customBtn {
    width: 190px;
    background-color: #ababab;
    margin: 4px;
    margin-left: 1px;
    color: #0a0a0a;
}

.bottom-menu {
    float: right;
    margin-right: 20px;
    margin-bottom: 5px;
    font-size: 15px;
}
.search-dropdown{
    width: 190px;
    margin-bottom: 5px;
}
