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

body {
	background: #000;
	font-family: 'Assistant', sans-serif;
  color: #FFF;
}
.webFontFix {
  font-size: 0.8em;
}

h1 {
	font-size: 2.5em;
	font-weight: 700;
  color:#FFcc00;
}

h2 {
color:#ffcc00;
}


.container {
	width: 1020px;
	margin: auto;
	background: #000;
	text-align: center;
}

a:link {
  color: #6699CC;
}

/* visited link */
a:visited {
  color: #CC99FF;
}

/* mouse over link */
a:hover {
  color: #99CCFF;
}

/* selected link */
a:active {
  color: #ffcc00;
}

/* 2 column layout */

* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column1 {
  float: left;
  width: 300px;
  padding: 20px;
  }

  /* Create two equal columns that floats next to each other */
.column2 {
  float: left;
  width: 460px;
  padding: 20px;
  }

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


.content {
	padding: 40px;
	text-align: left;
	font-size: 1em;
}

.button {
  background-color: #ffcc00;
  border: 1px solid #ffcc00;  
  color: #000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1em;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
}

a.button {
  color: #000;
}

.button:hover {
  background-color: #FFF;
  border: 1px solid #ffcc00;  
  color: #000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1em;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 8px;
}

.btnActivePg {
  background-color: #000;
  border: 1px solid #FFF;  
  color: #FFF;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.1em;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
}

.buttonVote {
  background-color: #a33b00;
  border: 1px solid #a33b00;
  color: white;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
}

.buttonVote:hover {
  background-color: #FFF;
  border: 1px solid #a33b00;
  color: #a33b00;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 8px;
}


td, th {
	border: none;
  	padding: 8px;
	vertical-align:top;
}

tr:nth-child(even){background-color: #333333;}

.checkboxContainer {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 70px;
  width: 70px;
  background-color: #eee
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxContainer .checkmark:after {
  left: 20px;
  top: 5px;
  width: 20px;
  height: 40px;
  border: solid white;
  border-width: 0 10px 10px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkSpacer {
	height: 70px;
	width: 70px;
}

.centeredText {
	text-align: center;
}

.contentBigBold {
	font-size: 1.7em;
	font-weight: 700;
	line-height: 1em;
}