@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. */
.logo{
	margin-left:5%;
}
.transparent {
	clear: both;
	display: block;
	padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto;
	background-image: url(images/transparent.png);
	background-repeat:repeat;
	position:relative;
	z-index:-1;
	max-width:100%;
	min-width:100%;
}

.ContentContainer {
	clear:both;
	width:70%;
	height:500px;
	overflow-y: scroll;
	margin-bottom:5%;
	margin-left:auto;
	margin-right: auto;
	margin-top:5%;
	padding:5%;
	display:block;
	background-color: #000;
}
.Content1 {
	padding-right: 10px;
	margin: 0px;
	width:70%;
	display: inline-block;
	background-color: #000;
}
.Content2 {
	text-align:left;
	margin: 0px;
	width:20%;
	display: inline-block;
	background-color: #000;
}
.Content3 {
	padding:1%;
	margin: 0px;
	width:100%;
	display:block;
	background-color: #000;
}
.Content3 img{
	margin:1%;
}
.footer {
	clear: both;
	float: left;
	width: 100%;
	display: block;	
	background-color:#000;
	min-height:50px;
	margin: 0;
	list-style: none;
	line-height: 30px;
	text-align: left;
	color:#EAB76C;
	border: 0;
}
.footer li{
	padding-left:10px;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
 @media (min-width:768px){.container{width:90%}}
 @media (min-width:992px){.container{width:90%}}
 @media (min-width:1200px){.container{width:90%}}
 .container{max-width:100%}

@media only screen and (min-width: 481px) {
.transparent {
	clear: both;
	float: left;
	margin-left: 0;
	max-width:100%;
	display: block;
}
}

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

@media only screen and (min-width: 769px) {
.transparent {
	clear: both;
	float: left;
	margin-left: 0px;
	max-width:100%;
	display: block;
}
}
