/* CSS Document */


/* grid for content area */

.content-container {
    display: grid;
    grid-template-columns: 280px 280px 280px;
    grid-template-rows: 200px 500px;
    grid-template-areas:
        "preview thumbnails thumbnails"
        "preview col-1 col-2";
    grid-gap: 30px;
    width: 930px;
    padding: 30px 36px;
}


preview {
    grid-area: preview;
	display: block;
}

#previewPane img {
    border: 5px solid white;
	margin-top: 30px;
}

#artistCredit {
    text-align: center;
    line-height: 12px;
    padding: 13px 0;
}

#thumbsPane {
    width: 595px; /* <----- this is width of the VISIBLE area*/
    overflow: hidden;
    margin-top: 55px;
}

#innerPane{
    width:850px; /* <----- this is width of the 'masked' HIDDEN area*/
}

img.thumbI{
    border: 2px solid white;
    margin:0 2px 4px 0px;
    vertical-align: text-top;
}


img.thumbI.no-border{
    border: none;
}


img.thumbI.landscape{
    width:65px;
}

col-1 {
    grid-area: col-1;
    margin-top: 16px;
}

col-2 {
    grid-area: col-2;
}

#nextPrev {
    text-align: right;
    margin: 0;
}

#nextPrev a {
    font-family: oswald500;
    font-size: 13px;
    color: #666666;
    background-image: url(../assets/ui/png/l-arrow-gray.png), url(../assets/ui/png/r-arrow-gray.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 13px;
    padding: 0 17px;
}

#nextPrev a:hover {
	color: white;
}

#nextPrev a.showRightArrow {
    background-image: url(../assets/ui/png/r-arrow-gray.png);
    background-position: right 0 top 4px;
}

#nextPrev a.showRightArrow:hover {
    background-image: url(../assets/ui/png/r-arrow-white.png);
    background-position: right 0 top 4px;
}

#nextPrev a.showLeftArrow {
    background-image: url(../assets/ui/png/l-arrow-gray.png);
    background-position: left 0 top 4px;
}

#nextPrev a.showLeftArrow:hover {
    background-image: url(../assets/ui/png/l-arrow-white.png);
    background-position: left 0 top 4px;
}
#artistCredit{
    margin-top:-13px;
}
p.artistName {
    font-family: sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    text-align: left;
    color:#666666;

}
a.dLink {
    display:block;
    font-family: sans-serif;
    font-size: .7em;
    text-transform: uppercase;
    text-align: left; 
}


col-1 p{
    line-height: 1.4em;
    margin-bottom: 10px;
}

preview:hover .download { 
color: #FFF;
}

img.thumbI:hover {
	    color: yellow;
        opacity: 1.0;
        filter: alpha(opacity=100);
    }

a.download:hover{
    color:white;
}
