*
{
	margin: 0px auto;
	padding: 0px;
	
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	
	font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	
	cursor: default;
}

html
{
	position: relative;
	height: 100%;
	
	background-color: #333333;
	background-image: url("noise.jpg");
	background-repeat: repeat;
	background-position: center center;
	background-size: 256px 256px;
	
	color: #333333;
	font-size: 14px;
	
	-webkit-font-smoothing: antialiased;
}

body
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	overflow: hidden;
}

a
{
	line-height: 20px;
	font-size: 15px;
	color: #AAAAAA;
	text-decoration: none;
	font-weight: normal;
	text-shadow: 0px 1px 0px rgba(0,0,0,1);
	
	cursor: pointer;
}

a:active,
a:hover
{
	color: #FFFFFF;
}

.Background
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	background-color: #333333;
	background-image: url("noise.jpg");
	background-repeat: repeat;
	background-position: center center;
	background-size: 256px 256px;
}

.Viewport
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	overflow: hidden;
	
	/*
	overflow-y: scroll;
	
	-webkit-overflow-scrolling: touch;
	*/
}

.Cover
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	overflow: hidden;
	
	display: none;
}

.Cover.On
{
	display: block;
}

.Page
{
	position: relative;
	
	height: 100%;
	
	/*
	box-shadow: inset 0px 1px 0px rgba(255,255,255,0.1), inset 0px -1px 0px rgba(0,0,0,0.5);
	*/
	
	overflow: hidden;
}

.PageSpacer
{
	position: relative;
	
	height: 0px;
}

.Dots
{
	position: absolute;
	
	width: 12px;
	height: 48px;
	
	left: 50%;
	margin-left: -6px;
	
	bottom: 9px;
}

.Dot
{
	position: relative;
	
	width: 12px;
	height: 12px;
	
	background-image: url("sprite.png");
	background-repeat: no-repeat;
	background-position: 0px -12px;
	background-size: 12px 24px;
}

.Dot.On
{
	background-position: 0px -0px;
}

.Logo
{
	position: absolute;
	
	width: 640px;
	height: 400px;
	
	left: 50%;
	top: 50%;
	
	margin-left: -320px;
	margin-top: -200px;
	
	overflow: hidden;
}

.Ravens,
.LogoColor,
.LogoTop
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	top: 0px;
	bottom: 0px;
	
	background-position: center center;
	background-repeat: no-repeat;
	
	overflow: hidden;
}

.Ravens
{
    background-image: url("ravens.png");
    background-size: 640px 400px;
}

.LogoColor
{
    background-image: url("color.png");
    background-size: 320px 150px;
    
    -webkit-animation-duration: 30s;
	-webkit-animation-name: ColorRotation;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	
	opacity: 0.5;
}

.LogoTop
{
    background-image: url("logo.png");
    background-size: 320px 150px;
}

.Tag
{
	position: absolute;
	
	width: 100%;
	height: 100px;
	
	top: 50%;
	
	margin-top: 40px;
	
	color: #AAAAAA;
	text-shadow: 0px 1px 0px #000000;
	font-size: 15px;
	line-height: 20px;
	text-align: center;
}

h2
{
	text-align: center;
	
	font-size: 24px;
	color: rgba(0,0,0,0.5);
	text-shadow: 0px 1px 0px rgba(255,255,255,0.1);
	font-weight: normal;
	line-height: 44px;
}

.Footer
{
	position: absolute;
	
	left: 0px;
	right: 0px;
	bottom: 10px;
	
	height: 40px;
	
	line-height: 20px;
	font-size: 15px;
	color: #000000;
	color: rgba(0,0,0,0.65);
	text-shadow: 0px 1px 0px rgba(255,255,255,0.1);
	
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	
	text-align: center;
}

@-webkit-keyframes ColorRotation
{
	0%
	{
		-webkit-filter: hue-rotate(0deg);
	}
	10%
	{
		-webkit-filter: hue-rotate(0deg);
	}
	40%
	{
		-webkit-filter: hue-rotate(-120deg);
	}
	60%
	{
		-webkit-filter: hue-rotate(-120deg);
	}
	90%
	{
		-webkit-filter: hue-rotate(0deg);
	}
	100%
	{
		-webkit-filter: hue-rotate(0deg);
	}
}

@-webkit-keyframes FullColorRotation
{
	0%
	{
		-webkit-filter: hue-rotate(0deg);
	}
	100%
	{
		-webkit-filter: hue-rotate(360deg);
	}
}

/* Retina Devices */
@media only screen
and (-webkit-min-device-pixel-ratio: 2),
only screen
and (min-device-pixel-ratio: 2)
{
	html,
	.Background
	{
		background-image: url("noise@2x.jpg");
	}
	
	.Dot
	{
		background-image: url("sprite@2x.png");
	}
	
	.Ravens
	{
		background-image: url("ravens@2x.png");
	}
	
	.LogoColor
	{
		background-image: url("color@2x.png");
	}
	
	.LogoTop
	{
		background-image: url("logo@2x.png");
	}
}

/* iPhone */
@media only screen 
and (device-width : 320px)
and (device-height : 480px)
{
	
}

/* iPhone Portrait */
@media only screen 
and (device-width : 320px)
and (device-height : 480px)
and (orientation : portrait)
{

}

/* iPhone Landscape */
@media only screen 
and (device-width : 320px)
and (device-height : 480px)
and (orientation : landscape)
{

}

/* New iPhone */
@media only screen 
and (device-width : 320px)
and (device-height : 568px)
{

}

/* New iPhone Portrait */
@media only screen 
and (device-width : 320px)
and (device-height : 568px)
and (orientation : portrait)
{

}

/* New iPhone Landscape */
@media only screen 
and (device-width : 320px)
and (device-height : 568px)
and (orientation : landscape)
{

}

/* iPad */
@media only screen 
and (device-width : 768px)
and (device-height : 1024px)
{	

}

/* iPad Portrait */
@media only screen 
and (device-width : 768px)
and (device-height : 1024px)
and (orientation : portrait)
{
	
}

/* iPad Landscape */
@media only screen 
and (device-width : 768px)
and (device-height : 1024px)
and (orientation : landscape)
{
	
}

/* Desktop */
@media only screen
and (min-device-width : 1025px)
{	

}

.Visible
{
	display: block;
}

.Hidden
{
	display: none;
}