/****************************************************************/
/*                           style.css                          */
/****************************************************************/
.clear { clear: both; }
html, body
{
	font-family: 'Quicksand', sans-serif;
	color: #070707;
	font-size: 11pt;
	background: #fff;
	padding: 0;
	margin: 0;
}

.template { display: none !important; }

a,
a:visited,
a:active
{
	text-decoration: none;
	color: #d70000;
}

a:hover, #header .menu a.active
{
	font-weight:bold;
	/*text-decoration: underline;*/
}

.main-container {
	position: relative;
	box-sizing: border-box;
	max-width: 1400px;
	margin: 0 auto;
}

.animation-paused *,
.animation-paused *:before,
.animation-paused *:after {
  animation-play-state: paused !important;
}

/****************************************************************/
/*                            menu                              */
/****************************************************************/

#header .main-container
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 50px;
}

#header .logo {
	font-size: 140%;
	text-align: center;
}
#header .logo a {
	color: #070707;
}
#header .logo a:hover {
	text-decoration: none;
}
#header .logo img {
	width: 160px;
}

#header .menu {
}

#header .menu > * {
	display: inline-box;
	margin: 0 15px;
	font-size: 140%;
	text-transform : uppercase;
}

/****************************************************************/
/*                            body                              */
/****************************************************************/

.front-layer {
	position: relative;
	z-index: 1000;
	background: #fff;
	/*box-shadow: 0 0 20px rgb(0,0,0,0.1);*/
}

.back-layer {
	position: relative;
	z-index: 500;
}

p {
	text-align: justify;
}


h1,h2,h3 {
	font-weight: normal;
}

.background.lowres {
	filter: blur(10px);
}
.background.hires {
	animation-name: background-blur;
	animation-duration: 1s;
}
@keyframes background-blur {
	0% { filter: blur(10px); }
	100% { filter: blur(0px); }
}


/****************************************************************/
/*                            footer                            */
/****************************************************************/

#footer
{
	background: #070707;
	color: #dadada;
}

#footer .main-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 50px 100px;
}

#footer .left {
	width: 50%;
}

#footer .right {
	width: 50%;
}

#footer .center {
	width: 100%;
	padding: 20px 0;
	text-align: center;
}

#footer .links > * {
	margin: 0 10px;
}

/****************************************************************/
/*                         edit_panel                           */
/****************************************************************/

#edit_panel
{
	padding: 5px;
	background: #2d2d38;
	color: #c4d0d7;
	font-size: 8pt;
	font-weight: bold;
	box-shadow: 0px 1px 6px #000;
	-moz-box-shadow: 0px 1px 6px #000;
	-webkit-box-shadow: 0px 1px 6px #000;
}

#edit_panel input,
#edit_panel a
{
	font-family: Verdana, sans-serif;
	border: 1px solid #c4d0d7;
	background: #2d2d38;
	color: #c4d0d7;
	font-size: 8pt;
	font-weight: bold;
	text-decoration: none;
}

#edit_panel input:hover,
#edit_panel a:hover
{
	border: 1px solid #ffc120;
	color: #ffc120;
}

#edit_panel .yellow
{
	color: #ffc120;
}

#edit_panel .red
{
	color: #ff5535;
}