body, html {
	width: 100%;
	min-width: 550px;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	font-family: 'Roboto', sans-serif;
}
a {
	margin: 0;
	padding: 0;
	border: 0;
}
a:hover {
	cursor: pointer;
}
.makeavoice {
	color: #666;
	font-size:40px;
	letter-spacing:1px;
}
.title {
	color: #fff;
	font-size:60px;
	letter-spacing:1px;
}
.barfont {
	font-size:12px;
	opacity:0.5;
}
a.barfont:hover {
	opacity:1.0;
}
.subtitle {
	color: #fff;
	font-size:40px;
	letter-spacing:1px;
}
.blacktitle {
	color: #000;
	font-size:60px;
	letter-spacing:1px;
}
.whitetext {
	color: #fff;
	font-size:26px;
	letter-spacing:1px;
}
.smalltext {
	font-size:18px;
	letter-spacing:1px;
}
.button {
  padding: 13px 23px 13px;
  border-radius: 5px;
  background-color: #ffcc33;
  -webkit-transition: all 350ms ease;
  -o-transition: all 350ms ease;
  transition: all 350ms ease;
  color: #585453;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  background-color: rgba(88, 84, 83, 0.29);
  opacity: 1;
  color: white;
}
.button.begin {
  background-color: #66cc66;
  color: white;
}
.button.begin:hover {
  background-color: rgba(88, 84, 83, 0.90);
}
.button.login {
}
.button.login:hover {
  background-color: rgba(102, 153, 204, 1.0);
}
.button.tunein {
}
.button.tunein:hover {
  background-color: rgba(88, 84, 83, 0.90););
}
.button.choose {
  background-color: #6699cc;
  color: white;
}
.button.choose:hover {
  background-color: rgba(102, 204, 102, 1.0);
}
.button.chooseselected {
  background-color: rgba(102, 204, 102, 1.0);
  color: white;
}
.button.chooseselected:hover {
  background-color: rgba(102, 204, 102, 1.0);
}
.fadeOut {
	-webkit-animation: fadeout 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation: fadeout 0.5s;
	animation-fill-mode: forwards;
}
@-webkit-keyframes fadeout {
    from {
		-webkit-transform: scale(1.0);
		-webkit-opacity: 1.0;
	}
    to {
		-webkit-transform: scale(0.0);
		-webkit-opacity: 0.0;
	}
}

@keyframes fadeout {
    from {
		-webkit-transform: scale(1.0);
		-webkit-opacity: 1.0;
	}
    to {
		-webkit-transform: scale(0.0);
		-webkit-opacity: 0.0;
	}
}
.fadeIn {
	-webkit-animation: fadein 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation: fadein 0.5s;
	animation-fill-mode: forwards;
}
@-webkit-keyframes fadein {
    from {
		-webkit-transform: scale(0.0);
		-webkit-opacity: 0.0;
	}
    to {
		-webkit-transform: scale(1.0);
		-webkit-opacity: 1.0;
	}
}

@keyframes fadein {
    from {
		-webkit-transform: scale(0.0);
		-webkit-opacity: 0.0;
	}
    to {
		-webkit-transform: scale(1.0);
		-webkit-opacity: 1.0;
	}
}