@import url('reset.css');
/*==================================================================*/
/* General  Style */
html {
    height: 100%;
}

body{
	background: #494949; /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover,  #494949 0%, #0c0304 80%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 80%, color-stop(0%,#494949), color-stop(80%,#0c0304)); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover,  #494949 0%,#0c0304 80%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover,  #494949 0%,#0c0304 80%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover,  #494949 0%,#0c0304 80%); /* IE10+ */
	background: radial-gradient(ellipse at center,  #494949 0%,#0c0304 80%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#494949', endColorstr='#0c0304',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

body{
	position:absolute;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	margin: auto; 
	overflow: :hidden;
	color: rgba(255,255,255,1);
}
body:after{
    position:absolute;
    z-index: 10;
    top:0;
    left:0;
    right:0;
    display:block;
	content:'';
	width: 100%;
	height: 100%;
	background: url(bg-fx.jpg)no-repeat center center fixed; 
	background-size: cover;
    background-repeat: no-repeat;
    -webkit-animation: appear 0.6s ease-in-out .5s backwards;
	-moz-animation: appear 0.6s ease-in-out .5s backwards;
	-ms-animation: appear 0.6s ease-in-out .5s backwards;
	animation: appear 0.6s ease-in-out .5s backwards;
}

a{
	color: #fff;
	text-decoration: none;
}
/*==================================================================*/
.container{
	width: 100%;
	height: 100%;
	position: absolute;
	overflow:hidden;
}
.container:after{
	position:absolute;
    z-index: 10;
    top:0;
    left:0;
    right:0;
    display:block;
	content:'';
	width: 100%;
	height: 100%; 
	z-index: 200;
    opacity: .02;
	background-size: 20px 20px; /* Controls the size of the stripes repeating-*/
	background-color: #000;
	background: repeating-linear-gradient(45deg,white 1px, #0c0304 20px);
}
/*==================================================================*/
.clr{
	clear: both;
}
/*==================================================================*/
/* Header Style */
.header{
	font-family:'Arial Narrow', Arial, sans-serif;
	line-height: 35px;
	font-size: 11px;
	background: #000;
	opacity: 0.8;
	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: #ddd;
	display: block;
	float: left;
}
.header a:hover{
	color: #fff;
}
.header span.right{
	float: right;
}
.header span.right a{
	float: none;
	display: inline;
}
/*==================================================================*/
/* Logo Style */
#logo{
    position:relative;
	opacity:0;
	z-index: 1000;
	margin:10%;
	-webkit-animation: breathe 1.6s ease-in-out 2s forwards;
	-moz-animation: breathe 1.6s ease-in-out 2s forwards;
	-ms-animation: breathe 1.6s ease-in-out 2s forwards;
	animation: breathe 1.6s ease-in-out 2s forwards;
}

#logo img{
	max-width: 100%;
    height: auto;
    width: auto\9; /* ie8 */
}
/*==================================================================*/
@-webkit-keyframes appear{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
@-moz-keyframes appear{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}

@-webkit-keyframes breathe{
	0%{
		opacity: 0;
	}
	50%{
		opacity: .9;
	}
	100%{
		opacity: .4;
		//-webkit-filter: invert(100%);
	}
}
@-moz-keyframes breathe{
	0%{
		opacity: 0;
	}
	50%{
		opacity: .9;
	}
	100%{
		opacity: .4;
		//-webkit-filter: invert(100%);
	}
}
