/* Stylesheet */


/* Imports */

@import url(animate.css);
/* Selections */

::selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

::-moz-selection {
 	color: #fff;
 	text-shadow: none;
 	background: #444;
}

/* Basics */

#container {
	position: fixed;
	width: 344px;
	height: 634px;
	top: 50%;
	left: 50%;
	margin-top: -317px;
	margin-left: -172px;
	background: #DDD7B9;
	border-radius: 3px;
	border: 1px solid #ccc;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
	-webkit-animation-name: bounceIn;
	-webkit-animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-webkit-animation-iteration-count: 1;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: bounceIn;
	-moz-animation-fill-mode: both;
	-moz-animation-duration: 1s;
	-moz-animation-iteration-count: 1;
	-moz-animation-timing-function: linear;
	animation-name: bounceIn;
	animation-fill-mode: both;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: linear;
}

#no-flash-container {
	position: fixed;
	width: 600px;
	height: 468px;
	top: 50%;
	left: 50%;
	margin-top: -234px;
	margin-left: -300px;
	background: #DDD7B9;
	border-radius: 3px;
	border: 1px solid #ccc;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}

#no-flash-content {
	width: 570px;
	height: 370px;
	background: #f5f5f5;
	overflow: auto;
	padding: 15px;
	margin: 0;
}

#logo-cts {
	text-align: center;
	margin : 0 0 18px 0;
}

form {
	margin: 0 auto;
	margin-top: 20px;
}

label {
	color: #963;
	font-weight:bold;
	display: inline-block;
	margin-left: 18px;
	padding-top: 10px;
	font-size: 13px;
}

p a.bubble {
	font-size: 11px;
	color: #999;
	float: right;
	margin-top: -12px;
	margin-right: 20px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

h1 {
 margin:-10px 0 0 0;
 text-align: center;
 font-weight: bold;
 font-size: 16px;
}

/* For User (Alias only) */
u {
	text-transform : uppercase;
	text-decoration: none;
	font-style: normal;
	color: #C00;
}
.info{
 color: #996600;
 font-size: 12px;
 text-align:center;
}

p a.bubble:hover {
	color: #555;
}

input {
	font-family: "Helvetica Neue", Helvetica, sans-serif;
	font-size: 12px;
	outline: none;
}

input[type=alias],
input[type=email],
input[type=username],
input[type=password] {
	color: #777;
	padding-left: 10px;
	margin: 10px;
	margin-top: 12px;
	margin-left: 18px;
	width: 290px;
	height: 35px;
	border: 1px solid #c7d0d2;
	border-radius: 2px;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	transition: all .4s ease;
}

input[type=alias]:hover,
input[type=email]:hover,
input[type=username]:hover,
input[type=password]:hover {
	border: 1px solid #b6bfc0;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #f5f7f8;
}

input[type=alias]:focus,
input[type=email]:focus,
input[type=username]:focus,
input[type=password]:focus {
	border: 1px solid #a8c9e4;
	box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #fd0;
}

#lower {
	background: #E8E4D0;
	width: 100%;
	height: 69px;
	margin-top: 20px;
	box-shadow: inset 0 1px 1px #fffef0;
	border-top: 1px solid #adadad;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
}

.check {
	margin-left: 20px;
	margin-top: 20px;
	font-size: 11px;
	color: #ab0000;
	text-shadow: 0 1px 0 #fff;
}

input[type=submit] {
	float: right;
	margin-right: 20px;
	margin-top: 20px;
	width: 80px;
	height: 30px;
	font-size: 14px;
	font-weight: bold;
	color: #963;
	background-color: #EDDFAE; /* #acd6ef; IE fallback*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFEF0), to(#EDDFAE));
	background-image: -moz-linear-gradient(top left 90deg, #FFFEF0 0%, #EDDFAE 100%);
	background-image: linear-gradient(top left 90deg, #FFFEF0 0%, #EDDFAE 100%);
	border-radius: 30px;
	border: 1px solid #963;/*#66add6;*/
	box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
	cursor: pointer;
}

input[type=submit]:hover {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FD0), to(#EDDFAE));
	background-image: -moz-linear-gradient(top left 90deg, #EDDFAE 0%, #FD0 100%);
	background-image: linear-gradient(top left 90deg, #FD0 0%, #EDDFAE 100%);
}

input[type=submit]:active {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#EDDFAE), to(#FD0));
	background-image: -moz-linear-gradient(top left 90deg, #EDDFAE 0%, #FC0 100%);
	background-image: linear-gradient(top left 90deg, #EDDFAE 0%, #FD0 100%);
}
