.lightbox:not(.alt):before
{
	background: url("../images/gallery_hover.png") no-repeat scroll center center rgba(0, 0, 0, 0.8);
	bottom: 0;
	content: "";
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.4s all;
}

.lightbox:not(.alt):hover:before
{
	opacity: 1;
	visibility: visible;
}

.lightbox
{
	display: inline-block;
	position: relative;
}

.lightbox > img
{
	display: block;
}

.borderBox
{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.ellipsis
{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}


a
{
	color: #ffffff;
	text-decoration: none;
	transition: 0.2s color;
}

a:hover
{
	color: #2AC0FF;
}

.a2
{
	color: #798896;
	font-weight: bold;
	text-decoration: none;
	transition: 0.2s color;
}

.a2:hover
{
	color: #2AC0FF;
}

html {
	background-color: #000000;
}

h1, h2, h3, h4, h5
{
	font-family: Oswald;
}

input[type='text'], textarea, select
{
	border: 1px solid #c6c9cd;
	color: #7f8183;
	padding: 3px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 2px 6px -4px #A7A0A0 inset;
	transition-property: border-color, color, width, height;
	transition-duration: 0.3s, 0.3s, 0s, 0s;
}

input[type='text']:hover, textarea:hover, select:hover
{
	border-color: #a7aaaf;
}

input[type='text']:active, input[type='text']:focus, textarea:active, textarea:focus, select:active, select:focus
{
	border-color: #0073d4;
	color: #484b4e;
}

.generalButton
{
	padding: 5px 15px;
	color: white;
	font-family: Open Sans;
	font-weight: bold;
	display: inline-block;
	background-color: #37a8d2;
	border: none;
	cursor: pointer;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	text-transform: uppercase;
	transition: 0.3s linear;
}

.generalButton:hover
{
	background-color: #04B8F4;
	color: white;
}

#slidebox .left div, #slidebox .right div
{
	border-radius: 20%;
	border: 1px solid blue;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
}

#slidebox .left:not(:active) div, #slidebox .right:not(:active) div
{
	/*
	animation: animationFrames ease-in-out 0.4s;
	-webkit-animation: animationFrames ease-in-out 0.4s;
	*/
}

@keyframes animationFrames
{
	50%
	{
		transform: scaleX(1.2) scaleY(1.2);
		opacity: 1;
	}

	100%
	{
		transform: rotate(0deg) scaleX(1) scaleY(1);
		opacity: 0;
	}
}

@-webkit-keyframes animationFrames
{
	50%
	{
		-webkit-transform: scaleX(1.2) scaleY(1.2);
		opacity: 1;
	}

	100%
	{
		-webkit-transform: rotate(0deg) scaleX(1) scaleY(1);
		opacity: 0;
	}
}

.mainWidth
{
	max-width: 1000px;
}

#header
{
	height: 300px;
}

#content
{
	margin: 0 auto;
}


#slidebox
{
	background-color: #3d4456;
	padding: 20px;
}

#slidebox .inner
{
	background-color: #a3a9b4;
	height: 250px;
	position: relative;
}

#slidebox .left, #slidebox .right
{
	width: 35px;
	height: 35px;
	background: url(../images/arrow_left_open.png) no-repeat center center #37a8d2;
	margin: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	cursor: pointer;
	z-index: 10;
	opacity: 0.6;
	transition: 0.2s opacity linear;
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#slidebox .left:hover, #slidebox .right:hover
{
	opacity: 1;
}

#slidebox .right
{
	right: 0;
	background-image: url(../images/arrow_right_open.png);
}

#slidebox .slideImage
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	transition: 0.8s all linear;
	visibility: hidden;
	opacity: 0;
}

#slidebox .slideImage img
{
	width: 100%;
	height: 100%;
}

#slidebox .slideImage.selected
{
	visibility: visible;
	opacity: 1;
}

#slidebox .caption
{
	padding: 5px;
	position: absolute;
	overflow: hidden;
	width: 50%;
	max-height: 50%;
	left: 50px;
	bottom: 60px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	font-size: 20px;
	font-family: Doppio One;
	z-index: 5;
}

#slidebox .readMore
{
	position: absolute;
	bottom: 20px;
	right: 50px;
	z-index: 5;
}

.leftColumn, .rightColumn
{
	display: inline-block;
	vertical-align: top;
}

.leftColumn
{
	width: calc(100% - 300px);
	padding-right: 20px;
}

.rightColumn
{
	width: 300px;
}

#sidebar h3
{
	font-size: 14px;
}

#sidebar h3 a
{
	display: block;
	text-transform: uppercase;
}

#sidebar .entry
{
	border-bottom: 2px dotted #d5dae2;
	margin: 20px 0;
	padding: 0 10px 20px;
}

h1
{
	background-color: #119ddf;
	background-position: 92% center;
	background-repeat: no-repeat;
	color: #FFFFFF;
	font-size: 17px;
	line-height: 2em;
	padding: 0 1em;
	text-transform: uppercase;
	margin-bottom: 20px;
	position: relative;
	border-radius: 5px 5px 0 0;
}

h1.mail
{
	background-image: url("../images/mail.png");
}

h1.picture
{
	background-image: url("../images/picture.png");
}

h1.alt
{
	background-color: #f52626;
}

.sectionHeader
{
	position: relative;
}

.sectionHeader .subtext
{
	font-family: Open Sans;
	font-weight: bold;
	font-size: 13px;
	color: #9cd0e8;
	margin-left: 30px;
	position: absolute;
	right: 50px;
	width: 55%;
}

#sidebar h1
{
	text-transform: none;
}

#sidebar .entry.gallery
{
	padding: 0;
	margin-left: -17px;
	border-bottom: none;
	text-align: center;
}

#sidebar .lightbox
{
	display: inline-block;
	margin: 0 0 17px 17px;
	width: 140px;
	height: 140px;
	vertical-align: top;
}

#sidebar img
{
	width: 140px;
	height: 140px;
}

.leftColumn article
{
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.leftColumn article:not(:last-of-type)
{
	border-bottom: 2px solid #d5dae2;
}

.pagination a
{
	font-size: 15px;
	padding: 0.3em .8em;
	border: 1px solid #c6c9cd;
	background-color: #f0f3f7;
	color: #9097a3;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
}

.pagination .disabled
{
	border-color: #d4dae4;
	color: #c7cfdb;
}

.pagination .current, .pagination a:hover:not(.disabled)
{
	background-color: #0073d4;
	border-color: #0073d4;
	color: white;
}

.pagination span
{
	font-size: 14px;
	margin-left: 10px;
}

#secondaryFooter
{
	background-color: #3d4456;
	padding: 10px;
	margin-top: 20px;
}

#footer h2, #secondaryFooter h2
{
	color: white;
	font-size: 17px;
	margin-bottom: 10px;
}

#secondaryFooter h2
{
	padding: 10px 0;
	border-bottom: 2px dotted #1d253d;
}

#secondaryFooter .rightColumn p
{
	margin: 10px 0;
}

#secondaryFooter .media
{
	position: relative;
}

#secondaryFooter .media img
{
	width: 100%;
	height: 100%;
}

#secondaryFooter .media a
{
	display: block;
}

#secondaryFooter .media .left
{
	width: 65%;
}

#secondaryFooter .media a.right
{
	position: absolute;
	right: 0;
	top: 0;
	height: calc(50% - 5px);
	width: calc(100% - 65% - 10px);
}

#secondaryFooter .media a.right:last-child
{
	bottom: 0;
	top: auto;
}

#footer
{
	margin: 0 auto 35px;
	line-height: 25px;
	padding: 20px;
}

#footer .social
{
	margin-top: 10px;
}

#footer .social a
{
	display: block;
	line-height: 0;
}

#footer .social li
{
	display: inline-block;
}

#footer .leftColumn
{
	padding: 0;
}

#footer .info, #footer .about
{
	display: inline-block;
	width: 149%;
	vertical-align: top;
	line-height: 1.28;
}

#footer .about
{
	padding: 0 10px;
	font-size: 12px;
}

#footer .siteMap ul
{
	display: inline-block;
	width: 48%;
}

#footer .siteMap a
{
	text-transform: uppercase;
	color: inherit;
	font-weight: bold;
}

#footer .siteMap a:hover
{
	color: #37a8d2;
}

.material-scrolltop {
	background-image: none!important;
	box-shadow: 0 3px 10px rgba(0,0,0,.5)!important;
	background: rgba(255,255,255,0.05)!important;
}

.material-scrolltop:hover {
    background-color: rgba(255,255,255,0.05)!important;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,.5), 0 3px 15px rgba(0,0,0,.5);
}

.material-scrolltop::before {
    background: rgba(255,255,255,0.05)!important;
}

a.rss-item {
	display:none;
}
