@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:700);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

body {
	background-color: #f2f2f2;
}

header {
	width: 100%;
	background-color: #5f5ca9;
	text-align: center;
}

h1 {
	font-family: 'Roboto Condensed', sans-serif;
	color: #f2f2f2;
	font-size: 2.3em;
}

h2,h3 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1em;
	width: 100%;
	text-align: center;
	color: #4c8d7c;
}

em {
	color: #000;
}

.wrapper {
	width: 80%;
	margin: 40px auto;
}

div.gallery {
	margin-top: 30px;
}

div.gallery ul {
	list-style-type: none;
	margin-left: 35px;
}


/* animation */

div.gallery ul li,
div.gallery li img {
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}

div.gallery ul li {
	position: relative;
	float: left;
	width: 50px;
	height: 50px;
	margin: 15px;
	padding: 50px;
	z-index: 0;
}


/* Make sure z-index is higher on hover */


/* Ensure that hover image overlapped the others */

div.gallery ul li:hover {
	z-index: 5;
}


/* Image is position nicely under li */

div.gallery ul li img {
	position: absolute;
	left: 0;
	top: 0;
	border: 1px solid #dddddd;
	padding: 2px;
	width: 130px;
	height: 130px;
	background: #f0f0f0;
}

div.gallery ul li img:hover {
	width: 200px;
	height: 200px;
	margin-top: -100px;
	margin-left: -100px;
	top: 65%;
	left: 65%;
}

p.attribution {
	font-family: 'Consolas';
	color: #9b87fd;
	clear: both;
	text-align: center;
	line-height: 25px;
	padding-top: 20px;
}

p.attribution a {
	color: #4c8d7c;
}


/* Responsive hack */

@media only screen and (min-width: 499px) and (max-width: 1212px) {
	.wrapper {
		width: 500px;
	}
}

@media only screen and (max-width: 498px) {
	.wrapper {
		width: 300px;
	}
	div.gallery ul {
		list-style-type: none;
		margin: 0;
	}
}

thead th {
	width: 400px;
	border-top: solid 1px #ddd;
	font-weight: bold;
}

tbody tr {
	border-bottom: solid 1px #ddd;
	font-weight: bold;
	text-align: center;
}

tbody a {
	color: #4c8d7c;
}

th {
	text-align: center;
	vertical-align: middle;
}
#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(155, 135, 253);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#return-to-top:hover {
    background: rgb(155, 135, 253);
}
#return-to-top:hover i {
    color: rgba(68, 26, 26, 0.9);
    top: 5px;
}