body {font-family:sans-serif; color: #989898; font-size:x-large; background-color: black; padding: 0;
margin: 0;
text-align: center;}
body.gradient {background: -webkit-gradient(linear, center top, center bottom, from(#000000), to(#404040));
					background: -webkit-linear-gradient(#000000, #404040);
					background: -moz-linear-gradient(#000000, #404040);
					background: -o-linear-gradient(#000000, #404040);
					background: -ms-linear-gradient(#000000, #404040);
					background: linear-gradient(#000000, #404040);}
.menu {color: #989898; float: left; font-size:xx-large;}
a {text-decoration:none; color:inherit;}
a:hover {color:white;}
.bord {border: none;}
.block {display: inline-block;}
.label {font-weight:bold; vertical-align:bottom; color: white;}
.pad {padding: 30px;}
.picture {display: inline; padding: 20px; vertical-align: middle;}
.pictureH {padding: 10px; height: 220px;}
.pictureV {padding: 10px; width: 220px;}
.left {text-align: left;}
.in {display: inline-block; padding: 20px; font-size: 30px; font-weight: bold; vertical-align: middle;}
.big {font-size: xxx-large;}
img.grid {width:200px;}
.resume {float:left; text-align:left;}
.resume h3 {line-height:50%;}
.resume h2 {line-height:50%;}
.resume p {font-style:italic;}


/* Styles the thumbnail */

.lightbox
{display: inline-block; vertical-align:middle;
}

a.lightbox img {
border: 0;
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */

.lightbox-target {
position: fixed;
top: -100%;
width: 100%;
background: rgba(0,0,0,.7);
width: 100%;
opacity: 0;
z-index: 1;
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
overflow: hidden;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */

.lightbox-target img {
margin: auto;
position: absolute;
top: 0;
left:0;
right:0;
bottom: 0;
max-height: 0%;
max-width: 0%;
border: 0px;
height: 700px;
box-shadow: 0px 0px 8px rgba(0,0,0,.3);
box-sizing: border-box;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Styles the close link, adds the slide down transition */

a.lightbox-close {
display: block;
width:50px;
height:50px;
box-sizing: border-box;
background: gray;
color: black;
text-decoration: none;
position: absolute;
top: 0px;
left: 0px;
-webkit-transition: .5s ease-in-out;
-moz-transition: .5s ease-in-out;
-o-transition: .5s ease-in-out;
transition: .5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:before {
content: "";
display: block;
height: 30px;
width: 3px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(45deg);
-moz-transform:rotate(45deg);
-o-transform:rotate(45deg);
transform:rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */

a.lightbox-close:after {
content: "";
display: block;
height: 30px;
width: 3px;
background: black;
position: absolute;
left: 26px;
top:10px;
-webkit-transform:rotate(-45deg);
-moz-transform:rotate(-45deg);
-o-transform:rotate(-45deg);
transform:rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */

.lightbox-target:target {
opacity: 1;
top: 0;
bottom: 0;
}

.lightbox-target:target img {
max-height: 100%;
max-width: 100%;
}

.lightbox-target:target a.lightbox-close {
top: 0px;
}