@charset "UTF-8";
/* CSS Document */

h1 {
	margin:0px;
	padding:5px;
}

a {
	outline:0px;
	border:none;	
}

img {
	outline:none;
	border:none;	
}

body {
	background-color:#000;
	margin:0;
	font-family:Helvetica, Arial, sans-serif;
	font-size: 14px;
}

div#Container {
	background-color:black;
	/* border-right-style:solid;
	border-right-width:thin;
	border-right-color:white;
	border-left-style:solid;
	border-left-width:thin;
	border-left-color:white; */
	position:relative;
	margin-left:auto;
	margin-right:auto;
	width:1000px;
}

div.SubContainer {
	position:relative;
	margin-left:auto;
	margin-right:auto;
	width:840px;
	min-height:470px;
	background:url(../images/bg.jpg) no-repeat;
}

div.Header {

}


div.CenterText {
	text-align:center;
}

div.AccountMenu {
	position:absolute;
	top:0px;
	left:700px;
	width:300px;
	height:50px;
}

.AccountMenu img {
	width:70%;
	height:70%;
}

a.AccountMenuItem {
	position:relative;
	float:left;
	width:125px;
	height:50px;
	/* margin-right:20px; */
}

a.Settings {
	position:absolute;
	top:50px;
	right:0px;
	background-color:gray;	
}

div.MainMenu {
	left: 190px;
    position: absolute;
    top: 100px;
    width: 800px;
}

.MainMenu img {
	height:14px;
}

a.MenuItem {
	padding: 0 3px;
}
a.MenuItem:hover img {
	/* margin-top:-50px;
	margin-bottom:50px; */
}

a {
	text-decoration:none;
	color:#DDD;	
	border:0px;
	outline:none;
}

div.Footer {
	position:relative;
	width:1000px;
	text-align:center;
	height:100px;
}	

div.Credits {
	position:relative;
	top:30px;
}

div.DesignedBy {
	position:absolute;
	float:left;
	color:white;
}

div.Copyright {
	position:absolute;
	left:830px;
	color:white;
}

div#Preload {
	display:none;	
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    left: 0;
    top: 10%;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	width: 80%; /* Could be more or less, depending on screen size */
	border-radius: 15px;
}

/* The Close Button */
.close {
    color: #FFF;
    float: right;
    font-size: 28px;
	font-weight: bold;
	margin-top: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Header */
.modal-header {
    padding: 2px 16px;
    background-color: #FF0000;
	color: white;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	font-family: Impact, sans-serif;
}

/* Modal Body */
.modal-body {
	padding: 2px 16px;
}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #FF0000;
	color: white;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	height: 54px;
}

.modal-footer a {
    padding: 2px 16px;
    background-color: #FF0000;
	color: white;
	margin: 10px;
	display: block;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.modal-footer a:hover,
.modal-footer a:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}