@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:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	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/
*/

body {
	background-color: #000000;
	color: #bfbfbf;
	font-family: Gill Sans MT,Calibri,sans-serif; 
	font-size: 24px; 
	font-style: normal; 
	font-variant: normal; 
	font-weight: 500; 
	line-height: 26.4px;
	text-align: center; 	
}

a {
	color: #bfbfbf;
	font-family: Gill Sans MT,Calibri,sans-serif;
	letter-spacing: 5px; 
	font-size: 24px; 
	font-style: normal; 
	font-variant: normal; 
	font-weight: 500; 
	line-height: 26.4px;
	text-decoration: none; 	
}

a:hover {
	opacity: 0.8;
}

#vcenter {
  width: 450px;
  height: 500px;

  position: absolute;
  top: 50%;
  left: 50%;

  margin: -250px 0 0 -225px;
}

.classic, .classic a {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 24px;
	width: 200px;
}

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 86.45%;
	padding-left: 2.275%;
	padding-right: 2.275%;
	clear: none;
	float: none;
}

.nonmobile {
    display: block;
}

.mobile {
    display: none;
}

/* Mobile Layout: 480px and below. */

@media only screen and (max-width: 481px) {

.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
	clear: none;
	float: none;
	margin-left: auto;
}

.nonmobile {
    display: none;
}

.mobile {
    display: block;
}

#vcenter {
  width: 450px;
  height: 500px;
	margin: auto;
  position: relative;
  left: auto;
  top: auto;
  margin-top: 40px;
  height: auto;
  width: auto;
}
}
