@import url(https://fonts.googleapis.com/css?family=Indie+Flower);


@media only screen and (min-width: 1026px) {
	.navOpenButton {
		display: none;
	}	
	.topbarLeft {
		margin-top: 7px;
		width: 60%;
	}
	.topbarLeft a:link {
		padding: 15px;
		border-left: 1px solid transparent;
		border-right: 1px solid transparent;
	}
	.topbarLeft a:hover {
		border-left: 1px solid #333333;
		border-right: 1px solid #333333;
		color: #00ff00;
	}
	.topbarLeft img {
		padding-right: 20px;
		/*filter:invert(100%);*/
		vertical-align: middle;
	}
	.topbarLeft a {
		color: #666666;
		font-size: 14px;
		text-decoration: none;
		padding: 10px;
		font-family: "Montserrat";
	}
	.topbarRight {
		float: right;
		margin-top: 7px;
		width: 40%;
		text-align: right;
		font-size: 20px;
		margin-right: 10px;
	}
	.topbarRight a {
		margin: 15px;
	}
	.topbarRight img {
		padding-right: 20px;
	}
}
@media only screen and (max-width: 1026px) {
	.topbarRight {
		visibility: visible;
		width: 99%;
		text-align: center;
		margin-top: 5px;
		font-size: 20px;
	}
	.topbarRight a {
		margin: 15px;
	}
	.topbarLeft {
		visibility: collapse;
		width: 1%;
	}
	.topbarRight img {
		padding-right: 25px;
	}
}
.navContainer {
	background: #151515;
	background: linear-gradient(180deg, rgba(225,237,254,1) 0%, rgba(244,244,244,1) 13%, rgba(205,205,205,1) 100%);
}
.topbar {
	height: 64px;
	z-index: 5;
	display: flex;
	position: fixed;
	background: #151515;
	width: 100%;
	-webkit-box-shadow: 0px 3px 32px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 3px 32px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 3px 32px 0px rgba(0,0,0,0.75);
	border-bottom: 1px solid #333333;
}
.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	background-color: #151515;
	overflow-x: hidden;
	transition: 0.5s;
}
.overlay-content {
	position: relative;
	/*top: 25%;*/
	width: 100%;
	text-align: center;
	margin-top: 30px;
}
.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 36px;
	color: #818181;
	display: block;
	transition: 0.3s;
	text-transform: uppercase;
}
.overlay a:hover, .overlay a:focus {
	color: #333333;
}
.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
	z-index: 9;
}
.overlay a {
	font-size: 20px
}
.overlay .closebtn {
	font-size: 40px;
	top: 15px;
	right: 35px;
}



/* Site Wrapper - Everything that isn't navigation */

.bluebox {
	min-width: 100%;
	min-height: calc(100% - 52px);
	background-color: #fff;
	position: relative;
	top: 0;
	bottom: 100%;
	left: 0;
	margin: auto auto;
	overflow: hidden;
	display: block;
	clear: both;
	-webkit-background-clip: padding;
	background-clip: padding-box;
	background-color: #fff;
	z-index: 1;
}
/* Nav Trigger */
.nav-trigger {
	/* critical styles - hide the checkbox input */
	position: absolute;
	clip: rect(0, 0, 0, 0);
}

label[for="nav-trigger"] {
	/* critical positioning styles */
	position: fixed;
	left: 15px;
	top: 15px;
	z-index: 2;

	/* non-critical apperance styles */
	height: 20px;
	width: 20px;
	cursor: pointer;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' x='0px' y='0px' width='30px' height='30px' viewBox='0 0 30 30' enable-background='new 0 0 30 30' xml:space='preserve'><rect width='30' height='6'/><rect y='24' width='30' height='6'/><rect y='12' width='30' height='6'/></svg>");
	background-size: contain;
	filter: invert(100%);
}

/* Make the Magic Happen */
.nav-trigger + label, .bluebox {
	transition: left 0.2s;
}

.nav-trigger:checked + label {
	left: 215px;
}

.nav-trigger:checked ~ .bluebox {
	left: 200px;
	box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
}


.background {
	background: rgb(85,94,112);
	background: linear-gradient(156deg, rgba(85,94,112,1) 0%, rgba(200,228,255,1) 100%);
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
}

/*
is there a better way than the absolute positioning and negative margin to center the div .content: div with background color a width and a hight?:
*/


.content {
	border-radius: 12px;
	border: 1px solid #423f3f;
	padding: 50px;
	background-color: #252525;
	width: 300px;
	height: 150px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -201px;
	margin-top: -120px;
}
 
.nav ul {
  list-style: none;
  background-color: #333;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav li {
  font-family: 'Oswald', sans-serif;
  font-size: 1.0em;
  line-height: 40px;
  height: 40px;
  border-bottom: 1px solid #888;
}
 
.nav a {
  text-decoration: none;
  color: #fff;
  display: block;
  transition: .3s background-color;
  text-transform: uppercase;
}
 
.nav a:hover {
  background-color: #369;
}
 
.nav a.active {
  background-color: #fff;
  color: #444;
  cursor: default;
}
 
@media screen and (min-width: 600px) {
  .nav li {
    width: 100px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.0em;
  }
 
  /* Option 1 - Display Inline */
  .nav li {
    display: inline-block;
    margin-right: -4px;
  }
 
  /* Options 2 - Float
  .nav li {
    float: left;
  }
  .nav ul {
    overflow: auto;
    width: 600px;
    margin: 0 auto;
  }
  .nav {
    background-color: #444;
  }
  */
}
/*SECTOR TABLE STYLE ################*/
progress {
	height: 25px;
	width: 100%;
	color: #00ff00;
	font-size: .6em;
	line-height: 1.5em;
	text-indent: .5em;
	border: 1px solid #666666;
}
progress::-webkit-progress-bar { background: #111; }
progress::-webkit-progress-value { background: #00ff00; }

table#sectorTable {
	width: 100%;
	background-color: #000;
	border: 1px solid #333;
	margin: 5px 0px 5px 0px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
table#sectorTable td {
	height: 125px;
	border: 1px solid #666;
	text-align: center;
}

table#sectorTable td:hover {
	text-align: center;
	background-color: #00B4FF;
	opacity: 0.8;
	border: solid 1px #FFF;
	box-shadow: 0 0 5px 1px #99CCFF;
}
table#sectorTable a:link, table#sectorTable a:visited {
	color: red;
	margin: 3px;
	padding: 3px;
	text-decoration: none;
	text-transform: uppercase;
}



.chatwall {
    font-family: "Segoe UI",Frutiger,"Frutiger Linotype","Dejavu Sans","Helvetica Neue",Arial,sans-serif!important;
    font-weight: normal!important;
	font-size: 2.0em;
	line-height: 25px;
    text-align: center;
    margin: 0px auto;
    width: 100%;
}
#chat-area span { 
	color: white; 
	background: #00B4FF; 
	padding: 4px 8px; 
	-moz-border-radius: 5px; 
	-webkit-border-radius: 8px; 
	margin: 0 5px 0 0; 
}
#chat-area p { 
	padding: 8px 0; 
}
#chat-area { 
    font-family: "Segoe UI",Frutiger,"Frutiger Linotype","Dejavu Sans","Helvetica Neue",Arial,sans-serif!important;
    font-weight: normal!important;
	font-size: 1.2em;
	height: 300px; 
	overflow: auto; 
	border: 1px solid #666; 
	padding: 10px;
	background: #111; 
}
#name-area { 
	position: absolute; 
	top: 12px; 
	right: 0; 
	left: 5px;
	color: white; 
	font: bold 1.8em "Lucida Grande", Sans-Serif; 
	text-align: right; 

	
}   
#name-area span { 
	color: #fa9f00; 
}
/*END CHAT WALL SETTINGS ################################################*/

#txtHint {
    font-size: 2em;
    margin-top: 25px;
    padding: 20px;
	line-height: 25px;
}
.wrapper {
  margin: auto;
  padding: 1em;
  width: 100%;
}

ul.tabs {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul.tabs li {
  border: gray solid 1px;
  border-bottom: none;
  float: left;
  margin: 0 .25em 0 0;
  padding: .25em .5em;
}
ul.tabs li a {
  color: gray;
  font-weight: bold;
  text-decoration: none;
}
ul.tabs li.active {
  background: maroon;
}
ul.tabs li.active a {
  color: white;
}
.clr {
  clear: both;
}
article {
  border-top: gray solid 1px;

}

nav {
  width: 100%;
  background: #1f1f1f;
  border: 1px solid #404040;
  border-right: none;
}

nav ul {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

nav ul li {
  list-style: none;
  float: left;
  text-align: center;
  border-left: 1px solid #404040;
  border-right: 1px solid #404040;
  width: 16.6667%; /* fallback for non-calc() browsers */
  width: calc(100% / 6);
  box-sizing: border-box;
}

nav ul li:first-child {
  border-left: none;
}

nav ul li a {
  display: block;
  text-decoration: none;
  color: #616161;
  padding: 10px 0;
}

.p {
  text-align: center;
  font-size: 2em;
  margin-top: 80px;
}
/*CUSTOM CSS CLASSES*/
.specs {
	clear: both;
}
.navbar {
    width: 100%;
    margin-left: auto ;
    margin-right: auto ;
    border-bottom:1px solid #4C4C4C;
}
.navbar ul {
    list-style-type: none; /*to remove bullets*/
    margin: 0 auto;
    padding: 0px;
    display:table;
    overflow: hidden;
}
.navbar li{
    float: left;
    padding: 3px;
    margin-left: auto ;
    margin-right: auto ;
	font-family: "Segoe UI",Frutiger,"Frutiger Linotype","Dejavu Sans","Helvetica Neue",Arial,sans-serif!important;
	font-size: 1.2em;
	line-height: 14px;
	color: #FFF;
}
.copyright {
	font-family: "Segoe UI",Frutiger,"Frutiger Linotype","Dejavu Sans","Helvetica Neue",Arial,sans-serif!important;
	font-size: 1.0em;
	color: #666;
	text-align: center;
	text-transform: uppercase;
	margin-top: 25px;
}
.copyright a, .copyright a:link, .copyright a:visited {
	color: #666;
	text-decoration: none;
	text-transform: uppercase;
}
.copyright a:hover {
	color: red;
}
/*COMBAT STYLING ################################################*/
#combat_defender, #combat_attacker {
    width:480px;
    margin: auto;
    float:left;
}
#combat_attacker {
	color: red;
}
#combat_defender {
    color: lime;
}
#combat_defender h2, #combat_attacker h2 {
	position: relative;
}
.attacker p {
	font-size: 16px;
	color: lime;
    line-height: 3px;
	clear: both;
}
.defender p {
	font-size: 16px;
	color: red;
    line-height: 3px;
	clear: both;
}


/*################################################*/
.newsbox {
	background-color: #222;
	margin: auto auto;
	margin-top: 25px;
	padding: 15px;
	text-align: center;
	color: #FFF;
}
.roundbox {
	border-radius: 5px;
	margin: auto auto;
	margin-top: 25px;
	width: 98%;
	padding: 10px;
	text-align: center;
	clear: both;
}
.chatbubble {
	font-family: 'Indie Flower', cursive;
	font-size: 2.0em;
	text-align: center;
	line-height: 25px;
	padding: 10px;
}
.infobubble {
	font-family: "Segoe UI",Frutiger,"Frutiger Linotype","Dejavu Sans","Helvetica Neue",Arial,sans-serif;
	font-size: 2.0em;
	text-align: center;
	line-height: 25px;
	padding: 10px;
}
/*###########COLORED TEXT START#############*/
.greentxt {
	color: #00ff00;
}
.bluetxt {
	color: #3333ff;
}
.redtxt {
	color: #ff0000;
}
.yellowtxt {
	color: #ffff00;
}
/*###########COLORED TEXT END#############*/
.noticebox {
	border: 1px solid red;
	background-color: green;
}

.roundbox h2 {
	font-size: 1.5em;
	color: #FFF;
	padding: 0px;
    line-height: 0px;
	text-transform: uppercase;
	text-align: center;
}
.roundbox p {
	font-size: 1.2em;
	color: red;
    line-height: 40px;
	text-align: center;
}
.price {
	color: lime;
}
td.price {
	text-align: center;
}


.data {
	color: #00B4FF;
}
.noticetext {
	text-transform: uppercase;
	margin: 25px 0 25px 0;
	font-size: 0.7em;
}
.no {
	color: red;
}
.yes {
	color: green;
}
.MessageBox {
	position:absolute;
	left:50%;
	top:50%;
}
.MessageBox1 {
	width:400px;
	height:200px;
	margin:-100px 0 0 -200px;
	text-align: center;
	border: 1px solid #373C42;
	border-radius: 10px;
	background-color: #222;
	box-shadow: 0 0px 0px 0 #99ccff, 0 0px 15px 0 #99ccff;
}
.MessageBox2 {
	width:600px;
	height:300px;
	margin:-150px 0 0 -300px;
	text-align: center;
	border: 1px solid #E01818;
	border-radius: 10px;
	background-color: #1B1B1B;
	box-shadow: 0 0px 0px 0 #E01818, 0 0px 15px 0 #E01818;
}
.MessageBox p {
    color: #F9F9F9;
    font-size: 1em;
    margin-top: 70px;
    font-family: courier;
}
.Absolute-Center {
	background: url('login.jpg') center center;
	background-size: 800px 600px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	width:800px;
	height:400px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-200px 0 0 -400px;
	text-align: center;
}

.container {
    max-width: 1000px;
    margin: auto auto;
    clear: both;
    color: #999;
}
.contentbox {

}
img.planets {
	width: 350px;
	height: 350px;
	border: 0px;
}
.tdblack {
	background-color: #000;
}
/* BUTTONS// */
button a {
	text-decoration: none;
	letter-spacing: 1px;
}
button, input[type=submit].style-1  {
	font-family: "Segoe UI",Frutiger,"Frutiger Linotype","Dejavu Sans","Helvetica Neue",Arial,sans-serif;
	font-size: 16px;
    margin: .5em 0;
	color: #FFF;
    padding: .7em 1em;
    display: block;
    position: relative;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
	border: 1px solid #333;
	background-color: #151515;
	border-radius: .3125em;
	width: 100%;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	webkit-box-shadow: 0 1px 3px rgba(0,0,0,.15);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,.15);
/*    box-shadow: 0 1px 3px rgba(0,0,0,.15); */
	cursor: pointer;
}
button:hover, input[type=submit].style-1:hover {
    background-color: #00B4FF;
	border: solid 1px #FFF;
	box-shadow: 0 0 5px 1px #99CCFF;

}
/*STANDARD HTML TAGS STYLING*/

a:link, a:visited {
	color: #FFF;
}
a:hover {
    color: #000;
}

a:active {
	background-color:#4CAF50;
}

input[type="text"], 
input[type="password"], 
textarea, 
select.style-1  {
  margin: 0;
  font-family: "Segoe UI",Frutiger,"Frutiger Linotype","Dejavu Sans","Helvetica Neue",Arial,sans-serif!important;
  font-size: 18px;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  background-color: #333333;
  color: #FFF;
  
  padding: 10px;
  border: inset 1px #424242;
  transition: box-shadow 0.3s, border 0.3s;
  width: calc(100% - 10px);
  margin: 5px;
}

textarea:focus.style-1, 
input[type="text"]:focus.style-1 {
	border: solid 1px #707070;
	box-shadow: 0 0 5px 1px #99CCFF;
}

.style-1 input[type="password"], 
.style-1 input[type="text"], 
.style-1 textarea, select.style-1  {
  padding: 10px;
  border: inset 1px #424242;
  transition: box-shadow 0.3s, border 0.3s;
}

.style-1 textarea:focus, 
.style-1 input[type="text"]:focus {
  border: solid 1px #707070;
  box-shadow: 0 0 5px 1px #99CCFF;
}

fieldset {
	padding: 10px;
	border: 1px solid #333;
}
body {
	background-color: #000000;
	margin: 0;
	padding: 0;
    font-family: "Segoe UI",Frutiger,"Frutiger Linotype","Dejavu Sans","Helvetica Neue",Arial,sans-serif!important;
    font-weight: normal!important;
	font-size: 75%;
	letter-spacing: 1px;
}
img {
	margin: 10px;
}
p, span {
	color: #FFF;
}
h1 {
	text-transform: uppercase;
	font-size: 3.0em;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
}
h2 {
	text-transform: uppercase;
	font-size: 1.0em;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
}
/*TABLE STYLING*/
#trc1 {
	background-color: #0A0A0A !important;
}
.gradTable {
	width: 100%;
	border: 1px solid #333;
	margin: 5px 0px 5px 0px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	background-color: #151515;
}
.gradTable td {
	font-size: 1.3em;
	border-bottom: 1px solid #333;
	border-top: 1px solid #000;
	border-left-side: 1px solid #666;
	text-align: left;
	padding: 10px;

}
.gradTable th {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0a0a0a+0,1c1919+99 */
	background: #0a0a0a; /* Old browsers */
	background: -moz-linear-gradient(top,  #0a0a0a 0%, #1c1919 99%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #0a0a0a 0%,#1c1919 99%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #0a0a0a 0%,#1c1919 99%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a0a0a', endColorstr='#1c1919',GradientType=0 ); /* IE6-9 */
	color: #666;
	text-transform: uppercase;
	font-weight: bold;
	text-align: left;
}
