@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
body, html{
	min-height:100%;
	height:100%;
	overflow:auto;
}
#container{
	min-height:100%;
	height:100%;
	width:100%;
	
	
	background-image: radial-gradient(center center, circle cover, #0a67b2, #323472);
	background-image: -o-radial-gradient(center center, circle cover, #0a67b2, #323472);
	background-image: -ms-radial-gradient(center center, circle cover, #0a67b2, #323472);
	background-image: -moz-radial-gradient(center center, circle cover, #0a67b2, #323472);
	background-image: -webkit-radial-gradient(center center, circle cover, #0a67b2, #323472);
	
	background-color:#323472;
	position:fixed;

}
#bg-r{
	min-height:100%;
	height:100%;
	width:100%;
	background:url(../img/bg-r.png) repeat;
	position:fixed;
}

/*#logo{
	position:absolute;
	right:0;
	top:40px;
	width:50%;
	max-width:230px;
}*/
/*#r-graphics{
	width:80%;
	max-width:351px;
	margin:0px auto;
	padding-top:140px;
}*/
#comingsoon{
	width:94%;
	max-width:753px;
	margin:0px auto;
	padding-top:30px;
	position:relative;
}
#main{
	overflow-y:scroll;
        position:relative;
        min-height: 100%;
}
/*#soon{
	position:absolute;
	top:70px;
	right:-98px;
	width:30%;
	max-width:200px;
}*/
@media only screen and (min-width: 221px) {
	#logo{
	position:absolute;
	right:0;
	top:40px;
	width:150px;
	max-width:230px;
}
	#r-graphics{
	width:220px;
	max-width:351px;
	margin:0px auto;
	padding-top:140px;
}
	#comingsoon{
	width:220px;
	max-width:753px;
	margin:0px auto;
	padding-top:30px;
	position:relative;
}
   #soon{
	position:absolute;
	top:47px;
	right:47px;
	width:100px;
	max-width:200px;
        height: 400px;
}

}
@media only screen and (min-width: 481px) {
   #logo{
	position:absolute;
	right:0;
	top:40px;
	width:180px;
	max-width:230px;
}
	#r-graphics{
	width:300px;
	max-width:351px;
	margin:0px auto;
	padding-top:140px;
}
	#comingsoon{
	width:480px;
	max-width:753px;
	margin:0px auto;
	padding-top:30px;
	position:relative;
}
   #soon{
	position:absolute;
	top:67px;
	right:33px;
	width:150px;
	max-width:200px;
}
   
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
   #logo{
	position:absolute;
	right:0;
	top:40px;
	width:220px;
	max-width:230px;
}
	#r-graphics{
	width:350px;
	max-width:351px;
	margin:0px auto;
	padding-top:120px;
	padding-left:160px;
}
	#comingsoon{
	width:750px;
	max-width:753px;
	margin:0px auto;
	padding-top:30px;
	position:relative;
}
   #soon{
	position:absolute;
	top:67px;
	right:-94px;
	width:190px;
	max-width:200px;
        height:auto;
}
}