html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html body{
	font-family: 'Open Sans', sans-serif;
}

img:focus, a:focus{
	outline: 0;
}


.left{float: left;}
.right{float: right;}
.clear{clear: both;}

.bold{
	font-weight: bold;
}

/* Custom Classes */

header{
	height: 53px;
	background: rgba(0,0,0,.8);
	border-bottom:1px solid rgba(255,255,255,0.7);
}

header ul{
	/*
	width: 600px;
	margin: 0 auto;
	*/
	text-align: center;
}

header li {
	display: inline-block;
}
header a{
	font-size: 15px;
	font-weight: bold;
	color:#fff;
	height: 53px;
	line-height: 53px;
	display: inline-block;
	min-width: 90px;
	text-decoration: none;
	text-align: center;
}
header a:hover{
	color:#339dd6;
}

header .menu{
	display: none;
}
header .home{
	width: 70px;
	text-indent: -9999px;
	background: url(images/logo.png) no-repeat center center;
}
header .home:hover{
	background: url(images/logo-on.png) no-repeat center center;
}
.regbox{
	margin: 30px auto 0;
	background: rgba(255,255,255,.65);
	box-shadow: 0px 0px 15px 0px rgba( 0, 0, 0,.5 );
	padding: 30px;
	width: 350px;
	border-radius: 20px;
	box-sizing:border-box;
	margin-bottom: 15px;
}
.regbox .logo{
	background: url(images/Syntext-logo.png) no-repeat top center;
	height: 52px;
	margin-bottom: 15px;
}
.regbox p{
	font-size: 15px;
	color:#636363;
	margin-bottom: 20px;
}

.regbox input{
	display: block;
	font-size: 18px;
}
.regbox input[type=text]{
	background: rgba(255,255,255,0.8);
	border:1px solid #b1b1b1;
	padding: 15px;
	border-radius: 5px;
	width: 290px;
	box-sizing:border-box;
	margin-bottom: 20px;
	box-shadow: inset 0 0 5px rgba(0,0,0,0.12);
}
.regbox input[type=submit]{
	font-size: 18px;
	font-weight: normal;
	padding: 15px 30px;
}

.social{
	text-align: center;
}
.social a{
	width: 40px;
	height: 45px;
	display: inline-block;
	background: url(images/social.png) no-repeat;
	border-bottom:2px solid rgba(255,255,255,0);
}
.social a:hover{	
	border-bottom:2px solid #339dd6;
}

.social .instargam{background-position: 0 0;}
.social .facebook{background-position:-52px 0;}
.social .twitter{background-position:-105px 0; width: 39px;}
.social .pintrest{background-position:-156px 0;}
.social .linkedin{background-position:-208px 0;}

/* input buttons */
button,input[type=submit] {
    font-size:11px;
    font-weight:bold;
    padding:5px 10px;
    border:1px solid;
    box-sizing:border-box;
    min-width:80px;
    
    color:#3e4148;
    border-color:#afb1b0 #96999b #808588;
    text-shadow:0 1px 1px rgba(255,255,255,.75);
    border-radius:4px;
    box-shadow:0 1px 3px rgba(0,0,0,.25) ,inset 0 1px 1px rgba(255,255,255,.6);
    
    -webkit-transition: box-shadow linear 0.2s;

    background: #eef2f3;
    background: -moz-linear-gradient(top,  #eef2f3 0%, #d0d5d8 100%);
    background: -webkit-linear-gradient(top,  #eef2f3 0%,#d0d5d8 100%);
    background: -o-linear-gradient(top,  #eef2f3 0%,#d0d5d8 100%);
    background: -ms-linear-gradient(top,  #eef2f3 0%,#d0d5d8 100%);
    background: linear-gradient(to bottom,  #eef2f3 0%,#d0d5d8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eef2f3', endColorstr='#d0d5d8',GradientType=0 ); 
}
textarea{
	width: 290px;
	outline:none;
	color:#3e4148;
    border:1px solid;
    padding:10px;
    box-sizing:border-box;
    border-color:#afb1b0 #96999b #808588;
	border-radius:4px;
    box-shadow:inset 0 1px 1px rgba(255,255,255,.6);
    margin-bottom: 15px;
    resize: none;
    font-size: 14px;
    font-family: arial;
}
input[type=submit].btn-blue 
{	
	outline:none;
    color: #fff;
    text-shadow:none;
    border-color:#419db7 #3d94ad #3d94ad;
    background: #0083cc;
    background: -moz-linear-gradient(top,  #0083cc 0%, #0058cc 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0083cc), color-stop(100%,#0058cc));
    background: -webkit-linear-gradient(top,  #0083cc 0%,#0058cc 100%);
    background: -o-linear-gradient(top,  #0083cc 0%,#0058cc 100%);
    background: -ms-linear-gradient(top,  #0083cc 0%,#0058cc 100%);
    background: linear-gradient(to bottom,  #0083cc 0%,#0058cc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0083cc', endColorstr='#0058cc',GradientType=0 );
}
button.btn-blue:hover,
input[type=submit].btn-blue:hover {background: #0083cc;}

input[type=text].invalid,
input[type=text]:focus.invalid,
textarea.invalid,
textarea:focus.invalid {
border-color: rgba(238, 31, 40,1.0);
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 31, 40, 0.6);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 31, 40, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(238, 31, 40, 0.6);
}
input[type=radio]:hover,
input[type=radio]:focus, 
input[type=checkbox]:focus,
input[type=checkbox]:hover,
input[type=text]:focus,
textarea:focus,
select:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

.overlay{
	position: absolute;
	background: rgba(255,255,255,.8);
}

.overlay iframe{
	display: block;
	margin-top:50px;
	margin-left: auto;
	margin-right: auto;
}
#DIV_TO_PLACE_COUNTDOWN{
	text-align: center;
	margin-top: 20px;
}

body{
	background: url(images/chat2.jpg)repeat-y center;
	animation: scrollchat 20s infinite;
	-webkit-animation: scrollchat 20s infinite; 
}

@keyframes scrollchat {
	 0% {background-position: center 0px;}
	 10%{background-position: center -200px;}
	 35%{background-position: center -400px;}
	 50% {background-position: center -700px;}
	 90% {background-position: center -1500px;}
	 100% {background-position: center -1736px;}
}

@-webkit-keyframes scrollchat {
	 0% {background-position: center 0px;}
	 10%{background-position: center -200px;}
	 35%{background-position: center -400px;}
	 50% {background-position: center -700px;}
	 90% {background-position: center -1500px;}
	 100% {background-position: center -1736px;}
}



@media screen and (max-width: 500px){
	.regbox{
		margin: 20px auto;
		padding: 20px;
		width: 330px;
	}
	body{
		background-size:120%;
	}
	/*
	header .menu{
		display: block;
		clear: both;
		width: 53px;
		height: 53px;
		background: url(images/menu-bg.png) no-repeat;
		opacity: .5;
		float: right;
		border-left: 1px solid rgba(255,255,255,.5);
		-webkit-transition: background ease-out .4s;
		-moz-transition: background ease-out .4s;
		-ms-transition: background ease-out .4s;
		-o-transition: background ease-out .4s;
		transition: background ease-out .4s;
	}

	header .menu:hover{
		background: url(images/menu-bg-on.png)no-repeat;
		opacity:.7;
		border-left: 1px solid rgba(255,255,255,.4);
	}

	header nav ul > li{
		display: none;
	}
	*/
}