.thumb {
    display: inline;
    max-height: 320px;
}
.thumbV {
    display: inline;
    max-height: 480px;
}
#thumblist {
    text-align: center;
    padding: 0;margin-bottom: 1.5em;
}
#thumblist img {
    padding:  .5em;
}
.description {
      color: white;
      text-decoration: none;
      font-weight: 400;
}
#forcap {
    margin: 0 0 8.8em 0;padding: 0;display: inline-block;
    text-align: center;position: relative;
}
#forcapV {
    margin: 0 0 12em 0;padding: 0;display: inline-block;
    text-align: center;position: relative;
}
#forcapSV {
    margin: 0 0 10.5em 0;padding: 0;display: inline-block;
    text-align: center;position: relative;
}
.gallcap {
    position: absolute;top: 320px;left: 5%;
    color:#362b5c;font-family: 'Judson', serif;
    font-size: 1.15em;line-height: 1.25em;width: 90%;
}
.gallcapV {
    position: absolute;top: 480px;left: 20%;
    color:#362b5c;font-family: 'Judson', serif;
    font-size: 1.15em;line-height: 1.25em;
    }
.gallcapSV {
    position: absolute;top: 320px;left: 7%;width: 90%;
    color:#362b5c;font-family: 'Judson', serif;
    font-size: 1.15em;line-height: 1.25em;margin-bottom: 
}
#ppbox {
	font-family: 'Marcellus SC', serif;
    text-align: center;margin: 0 auto;
}
#ppbox table {
    margin: auto;
}
.ppdropV {
	font-family: 'Judson', serif;font-size: .85em;
		width:200px;
	text-align: center;
	margin: 0 auto 0;
}
.ppdropH {
	font-family: 'Judson', serif;font-size: .85em;
	width:320px;
	text-align: center;
	margin: 0 auto 0;
}

.ppbuttonV {
	display: inline-block !important;
	text-align: center;margin: 10px auto 0;
}
.ppbuttonH {
	display: inline-block !important;width: 166px;
	text-align: center;margin: 10px auto 0;
}
/** relevant CSS Below **/

.lightbox {
    display: none; /**sets the default display to hide the lightbox until it's the :target**/
    position: fixed; /**the rest of this styling makes the lightbox full screen when selected**/
    z-index: 999;
    width: 100%;
    height: 100%;
    text-align: center;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.8);
}
.lightbox img { /**sets the styling of the image in the lightbox**/
    max-width: 80%;
    max-height: 90%;
    text-align: center;
    margin-top: 2%;
}
.lightbox:target { /**this is where the magic happens. makes the lightbox display when it's the target of a clickable link**/
    outline: none;
    display: block;
}
.previous { /**styling the left arrow**/
    position: fixed;
    left: 4px;
    top: 40%;
    width: 40px;
}
.exit { /**styling the exit button**/
    position: fixed;
    top: 4px;
    right: 4px;
    width: 40px;
}
.next { /**styling the right arrow**/
    position: fixed;
    right: 4px;
    top: 40%;
    width: 40px;
}

/*---------------------------*/
/*       Media Queries       */
/*---------------------------*/

@media screen and (max-width:760px) {
    .thumb {
    display: inline;
    max-height: none;
    width: 96%;
    }
#forcap {
    margin: 0 auto 3em;padding: 0;display: inline-block;
    text-align: center;position: static;
}
#forcapSV {
    margin: 0 0 3em 0;padding: 0;display: inline-block;
    text-align: center;position: static;
}
.gallcap,
.gallcapSV {
    position: static;
}
.description {
        max-width: 280px;margin: 0 auto 0;
}
#ppbox {
        text-align: center;position: static;
        display: block;margin: 0 auto 0 !important;
}

.ppbuttonV, 
.ppbuttonH {
	display: block !important;width: 180px;
	text-align: center;margin: 8px auto 0;
}
}