
.form_sign_in {
	padding: 20px 20px 0 20px;
	width: 400px;
	background: #fff;
	border-radius: 5px;
	margin: 0 auto;
	/*
	position: absolute;
	left: 50%;
	top: 0%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	*/
	box-shadow: 0 2px 5px rgba(105, 108, 109, 0.7), 0 0 8px 5px rgba(0,0,0,0.08) inset;
}

@media (max-width: 430px) {
	.form_sign_in {
		width: 95%;
	}
}

.form_sign_in h3 {
	/*font-family: Oswald, sans-serif;*/
	color: #436b95;
	font-size: 30px;
	font-weight: 900;
	text-align: center;
	line-height: 1.5em;
	margin: 0;
	margin-bottom: 30px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 480px) {
	.form_sign_in h3 {
		font-size: 28px;
	}
}

.form_sign_in h3:after {
	background: rgba(255,255,255,1);
	background: -moz-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(125,159,197,1) 50%, rgba(255,255,255,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(50%, rgba(125,159,197,1)), color-stop(100%, rgba(255,255,255,1)));
	background: -webkit-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(125,159,197,1) 50%, rgba(255,255,255,1) 100%);
	background: -o-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(125,159,197,1) 50%, rgba(255,255,255,1) 100%);
	background: -ms-linear-gradient(left, rgba(255,255,255,1) 0%, rgba(125,159,197,1) 50%, rgba(255,255,255,1) 100%);
	background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(125,159,197,1) 50%, rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff', GradientType=1 );
	content: " ";
	display: block;
	height: 2px;
	margin-top: 10px;
	width: 100%;
}

.form_link_small {
	font-size: 80%;
	padding-top: 7px;
}

#row_new_pass {
	display: none;
}

#form_sign_out {
	display: none;
}

.logout_message {
	margin: 30px 0;
}

.col_wrapper {
	/*outline: 1px solid red;*/
	min-height: 360px;
}

.sess_close_box {
	display: none;
	/*
	left: 50%;
	top: 50%;
	position: absolute;
	-webkit-transform: translate3d(-50%, -75%, 0);
	-moz-transform: translate3d(-50%, -75%, 0);
	transform: translate3d(-50%, -75%, 0);
	*/
	font-family: Oswald, sans-serif;
	margin: 0 auto;
	color: #436b95;
	text-align: center;
	text-transform: uppercase;
	font-size: 30px;
	text-shadow: 5px 5px 15px rgba(0,0,0,0.3);
}

.sess_close_box img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
}

.sess_close_box_msg {
	-webkit-animation: blinker 1.2s linear infinite;
	-moz-animation: blinker 1.2s linear infinite;
	animation: blinker 1.2s linear infinite;
}

@-webkit-keyframes blinker {50%{opacity: 0.0;}}
@-moz-keyframes blinker {50%{opacity: 0.0;}}
keyframes blinker {50%{opacity: 0.0;}}
