@import url('reset.css');

/* General Demo Style */
body{
	background: #ddd;
	color: rgba(255,255,255,1);
	font-family:'Myriad Pro', Arial, sans-serif;
	font-size: 15px;
}
a{
	color: #fff;
	text-decoration: none;
}
.container{
	width: 100%;
	position: relative;
	overflow:hidden;
}
.clr{
	clear: both;
}
h1.main{
	font-size: 30px;
	position:relative;
	font-weight: 400;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.2);
    padding: 10px;
	text-align: center;
	z-index: 1000;
	-webkit-animation: appear 0.6s ease-in-out 6s backwards;
	-moz-animation: appear 0.6s ease-in-out 6s backwards;
}
h2.main {
	font-size: 18px;
	position: relative;
	font-weight: 400;
	text-shadow: 0px 1px 1px rgba(0,0,0,0.2);
	padding: 10px;
	text-align: center;
	z-index: 1000;
	-webkit-animation: appear 0.6s ease-in-out 6s backwards;
	-moz-animation: appear 0.6s ease-in-out 6s backwards;
}

/* Header Style */
.header{
	font-family:'Arial Narrow', Arial, sans-serif;
	line-height: 32px;
	font-size: 11px;
	background: #20d5db; /* Old browsers */
background: -moz-linear-gradient(top,  #20d5db 0%, #23e7ee 50%, #20d0d6 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#20d5db), color-stop(50%,#23e7ee), color-stop(100%,#20d0d6)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top,  #20d5db 0%,#23e7ee 50%,#20d0d6 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top,  #20d5db 0%,#23e7ee 50%,#20d0d6 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top,  #20d5db 0%,#23e7ee 50%,#20d0d6 100%); /* IE10+ */
background: linear-gradient(to bottom,  #20d5db 0%,#23e7ee 50%,#20d0d6 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#20d5db', endColorstr='#20d0d6',GradientType=0 ); /* IE6-9 */

	opacity: 0.9;
	text-transform: uppercase;
	z-index: 9999;
	position: relative;
	-moz-box-shadow: 1px 0px 2px #000;
	-webkit-box-shadow: 1px 0px 2px #000;
	box-shadow: 1px 0px 2px #000;
}
.header a{
	padding: 0px 10px;
	letter-spacing: 1px;
	color: #000;
	display: block;
	float: left;
}
.header a:hover{
	color: #FFF;
}
.header span.right{
	float: right;
}
.header span.right a{
	float: none;
	display: inline;
}

@-webkit-keyframes appear{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@-moz-keyframes appear{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
