@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. */

body{
	background: url(images/background.png);
	background-size:cover;
	cursor:url(images/cursor.jpg), default;
}
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#Content{
	top:40px;
	left:15px;
	right:15px;
	bottom:40px;
	position:fixed;
	overflow:auto;
	z-index:2;
	color:rgba(255,255,255,1);
}
#boxscroll {
	position:fixed;
	overflow:auto;
	margin-bottom:5px;
}
#TopBar{
	top:0px;
	left:0px;
	right:0px;
	position:fixed;
	height:30px;
	background-color: rgba(0,0,0,.8)
	-webkit-box-shadow: 0 8px 6px -6px rgba(255,0,255,.5);
	   -moz-box-shadow: 0 8px 6px -6px rgba(255,0,255,.5);
	        box-shadow: 0 8px 6px -6px rgba(255,0,255,.5);
	color:rgba(255,255,255,1);
	font-weight:bolder;
	line-height:30px;
	font-size:25px;
	z-index:1000;
}
#BottomBar{
	bottom:0px;
	left:0px;
	right:0px;
	position:fixed;
	height:30px;
	-webkit-box-shadow: 0 -8px 6px -6px rgba(255,0,255,.5);
	   -moz-box-shadow: 0 -8px 6px -6px rgba(255,0,255,.5);
	        box-shadow: 0 -8px 6px -6px rgba(255,0,255,.5);
	color:rgba(255,255,255,1);
	font-weight:bolder;
	line-height:30px;
	font-size:15px;
	z-index:1000;
}
#button{
	background:-webkit-linear-gradient(#06F,#fff,#fff,#fff,#06F);	
	background:-o-linear-gradient(#06F,#fff,#fff,#fff,#06F);
	background:-moz-linear-gradient(#06F,#fff,#fff,#fff,#06F);
	background:linear-gradient(#06F,#fff,#fff,#fff,#06F);
	-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px; padding:5px;
	font-weight:bolder;
	font-size:20px;
}
#button:hover{	background:-webkit-linear-gradient(#F0F,#fff,#fff,#fff,#F0F);	
	background:-o-linear-gradient(#F0F,#fff,#fff,#fff,#F0F);
	background:-moz-linear-gradient(#F0F,#fff,#fff,#fff,#F0F);
	background:linear-gradient(#F0F,#fff,#fff,#fff,#F0F);)}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 800px) {
.gridContainer {
}
#LayoutDiv1 {
}
}

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

@media only screen and (min-width: 1080px) {
.gridContainer {
}
#LayoutDiv1 {
}
}