
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 75px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
	
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #1e1e1e;
    margin: auto;
	
    border: 0px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
	border-radius: 15px 15px 15px 15px;
	
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* The Close Button */
.close {
    color: rgba(1, 1, 1, .4);
    float: right;
	
    font-weight: bold;

}

.close:hover,
.close:focus {
    color: white;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    background-color: #323232;
	width: 100%;
	border-radius: 15px 15px 0px 0px;
	padding-left: 3em;
	padding-right: 2.5em;
	padding-top: 1em;
	height: 4.5em;
}



.modal-body {
	padding: 0px 30px;
	padding-bottom: 2em;
	margin: 0 1% 0;}

.modal-footer {
    padding: 1em;
    background-color: #1e1e1e;
    color: white;
}

.rightGroup{
	width: 62.5%;
	float:right;
	padding-top: 1em;
}

.leftGroup{
	float: left;
	width: 35%;
	text-align: center;
	margin-top: 2em;
}



.thumbNail{
		width: 12%;
		padding: 1%;
	
}

.sideThumbNail{
	width: 30%;
	margin-top: .25em;
	margin: .1%;	
}

