html, body
{
	padding: 0;
    margin: 0;
	height: 100%;
	min-height: 100%;
}

body
{
	background-color: #292939;
	background-image: url("bg.png");
	font-family: Arial, Helvetica, sans-serif;
	animation-name: bganim;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	background-position: 0px 0px;
	background-repeat: repeat;
	display: flex;
	flex-direction: column;
}

@keyframes bganim 
{
  0% {background-position: 0px 0px;}
  100% {background-position: -128px 128px;}
}

#main
{
	padding: 0;
    margin: 0;
	display: flex;
	flex: auto;
}

#header
{
	color: #fd2401;
	font-style: italic;
	font-size: 24px;
	text-shadow: -1px 1px #ac8cc7;
	margin-bottom: 24px;
	flex: none;
}

#content
{
}

#iframesidebar
{
	min-width: 320px;
	overflow: hidden;
}

#sidebar
{
	min-width: 320px;
	padding: 0;
    margin: 0;
	display: flex;
	align-items: center;
	flex-direction: column;
	flex-wrap: wrap;
	color: #fff;
	font-style: italic;
	font-size: 18px;
}

.system
{
	font-family: 'Russo One', Arial, Helvetica, sans-serif;
	margin-top: 10px;
	margin-bottom: 10px;
	margin-left: 10px;
	margin-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	min-width: 280px;
	max-width: 280px;
	text-align: center;
	background-color: #fd2401;
	border-radius: 10px;
	transition: margin-left 0.3s, margin-right 0.3s;
}

.system:hover
{
	margin-left: 20px;
	margin-right: 0px;
	transition: margin-left 0.3s, margin-right 0.3s;
}

#sidebar a
{
	text-decoration: none;
	color: #fff;
}

#entries
{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
    margin: 0;
	flex-direction: row;
	flex-wrap: wrap;
}

.entry
{
	text-align: center;
	background-color: #fd2401;
	padding: 10px 10px 10px 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 10px;
	color: #fff;
	font-size: 18px;
}

#welcome
{
	/*display: flex;
	flex-direction: row;*/
}

#welcomeText
{
}

.welcomeEntry
{
	width: 340px;
	height: 266px;
	text-align: center;
	background-color: #292939;
	padding: 10px 10px 10px 10px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 10px;
	color: #fff;
	font-size: 18px;
	float: right;
}

#welcomeEnd
{
	clear: both;
}

.info
{
	background-color: #515167;
	border-radius: 10px;
	padding: 20px 20px 20px 20px;
	margin: 10px 20px 10px 20px;
	color: #fff;
	font-size: 18px;
}

h2
{
}