@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%;
	margin-top: 5px;
}
/* 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/
*/

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

body {
		//background-color:#ebfffd;

}

.gridContainer {

	width: 100%;

}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	height: 210px;
	text-align: center;
background: rgba(0,0,94,1);
background: -moz-linear-gradient(top, rgba(0,0,94,1) 0%, rgba(0,16,5,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0,0,94,1)), color-stop(100%, rgba(0,16,5,1)));
background: -webkit-linear-gradient(top, rgba(0,0,94,1) 0%, rgba(0,16,5,1) 100%);
background: -o-linear-gradient(top, rgba(0,0,94,1) 0%, rgba(0,16,5,1) 100%);
background: -ms-linear-gradient(top, rgba(0,0,94,1) 0%, rgba(0,16,5,1) 100%);
background: linear-gradient(to bottom, rgba(0,0,94,1) 0%, rgba(0,16,5,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00005e', endColorstr='#001005', GradientType=0 );
}

#LayoutFooter1 {
	float:left;
	width: 100%;
	height:50px;
	line-height:50px;
	text-align:center;
	vertical-align:middle;
	display: block;
	margin-top:30px;
	background-color: #e6ebef;
}

#LineText1 {
	float:left;
	width:100%;
	font-size: 20pt;
	padding-top:5px;
}

#LineText2 {
	margin-top: 15px;
}



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

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 100%;
	
}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	height: 250px;
	text-align: center;
	background-color: #000000;
}

#LayoutFooter1 {
	float:left;
	width: 100%;
	height:50px;
	line-height:50px;
	text-align:center;
	vertical-align:middle;
	display: block;
	margin-top:30px;
	background-color: #e6ebef;
}

#LineText1 {
	float:left;
	width:100%;
	padding-top:25px;
	font-size: 30pt;
}
#LineText2 {
	margin-top: 20px;
}


}*/

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

@media only screen and (min-width: 700px) {
.gridContainer {
	width: 100%;
	max-width: 4000px;

}
#LayoutDiv1 {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	height: 210px;
	text-align: center;
}

#LayoutFooter1 {
	position: absolute;
	width: 100%;
	height:50px;
	line-height:50px;
	text-align:center;
	vertical-align:middle;
	display: block;
	bottom: 0px;
	background-color: #e6ebef;
}



#LineText1 {
	font-size: 30pt;
	float:left;
	width:100%;
	padding-top:50px;
}
#LineText2 {
	margin-top: 30px;
}

}
