
/* GENERAL ------------------------------------------------------------------ */

/* Zero default margin & padding around common elements */
body, dd, dl, dt, fieldset, form, h1, h2, h3, h4, h5, h6, li, ol, p, ul
{
	margin: 0;
	border: 0 none #FFFFFF;
	padding: 0;
}

html {
	height: 100%;
}

body
{
	height: 100%;
	overflow: hidden;
	background-color: #000000;
	color: #ffffff;
	line-height: 1.4;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 15px;
	text-align: center;
}

a
{
	color: #ffffff;
	text-decoration: underline;
}

a:visited
{
	color: #ffffff;
}

a:hover
{
	text-decoration: none;
}

img
{
	border: 0 none transparent;
}

input, select, table, textarea
{
	font-size: 100%;
	font-family: Arial, Helvetica, sans-serif;
}




/* MAIN --------------------------------------------------------------------- */

#globe {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-perspective: 500;
	-moz-perspective: 500;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
}

#curtain {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	-webkit-transform: translateZ(150px);
	-moz-transform: translateZ(150px);
}

.sphere {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
}

.particle {
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 100px;
/*	background-color: rgba(0,255,255,0.67);*/
	background-image: url(../images/pattern1.gif);
	background-size: 100%;
	-webkit-box-shadow: 0 0 50px rgba(0,255,255,0.5);
	-moz-box-shadow: 0 0 50px rgba(0,255,255,0.5);
}

#sphere2 .particle {
/*	background-color: rgba(255,0,255,0.67);*/
	background-image: url(../images/pattern2.gif);
	-webkit-box-shadow: 0 0 50px rgba(255,0,255,0.5);
	-moz-box-shadow: 0 0 50px rgba(255,0,255,0.5);
}

#sphere3 .particle {
/*	background-color: rgba(255,220,0,0.67);*/
	background-image: url(../images/pattern3.gif);
	-webkit-box-shadow: 0 0 50px rgba(255,220,0,0.5);
	-moz-box-shadow: 0 0 50px rgba(255,220,0,0.5);
}

.particle.animating {
	-webkit-transition: -webkit-transform 20s linear;
	-moz-transition: -moz-transform 20s linear;
}

p {
	margin: 1em 0 0 0;
	-webkit-transform: translateZ(9999px);
	-moz-transform: translateZ(9999px);
	text-align: center;
}

p a:last-child {
	margin-left: 1em;
	border-left: 1px solid #4c4c4c;
	padding-left: 1em;
}

#instructions {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 308px;
	height: 308px;
	margin: -154px 0 0 -154px;
	background-image: url(../images/arrow.png);
	background-repeat: no-repeat;
	text-indent: -9999px;
	-webkit-transform: translateZ(9999px);
	-moz-transform: translateZ(9999px);
}
