/*central do assinante*/
.central {
	font-family: 'open_sansregular';
	background: #FF6600;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 13px;
	padding: 12px 20px;
	border: none;
	cursor: pointer;
	width: 100%;
	position: relative;
	line-height: 1.5em;
	outline: none;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	-o-border-radius: 15px;
	-ms-border-radius:15px;
	text-align: center;
	
}
.central:hover {
	background: #353535;

}

/*janela flutuante*/
#mask {
	display: none;
	background: #000; 
	position: fixed; left: 0; top: 0; 
	z-index: 10;
	width: 100%; height: 100%;
	opacity: 0.8;
	z-index: 999;
}

.login-popup{
	display:none;
	padding: 10px;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 9999;
}

img.btn_close {
	float: right; 
	margin: -30px -30px 0 20px;
}

.form {
	background: #fff;
	width: 300px;
	padding: 40px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.form h2 {
	margin: 0 0 20px;
	line-height: 1;
	color: #FF9900;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
}
.form input {
  outline: none;
  display: block;
  width: 100%;
  margin: 0 0 20px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  color: #ccc;
  font-family: "Roboto";
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
  font-wieght: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.form input:focus {
	color: #333;
	border: 1px solid #FF9900;
}
.form button {
	cursor: pointer;
	background: #FF9900;
	width: 100%;
	padding: 10px 15px;
	border: 0;
	color: #fff;
	font-family: "Roboto";
	font-size: 14px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-transition: 0.2s linear;
	-moz-transition: 0.2s linear;
	-ms-transition: 0.2s linear;
	-o-transition: 0.2s linear;
	transition: 0.2s linear;
}
.form button:hover {
	background: #353535;
}

@media only screen and (max-width: 768px) {

.form {
	width: 300px;
}

}
@media only screen and (max-width: 640px){
}
@media only screen and (max-width: 480px) {
}
@media only screen and (max-width: 320px) {
}