@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:	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: 449px and below. */


.gridContainer {}
#wrapper {}
#content {
	padding: 0;
	min-width:300px;
}
#mini-menu li{list-style-type:none; display:block; width:100%; padding:15px 0 15px 0; text-align:left;}
#left-side {
	clear: both;
	float: left;
	width: 90%;
	display: block;
}
#right-side {
	clear: both;
	float: left;
	margin-left: 4.1666%;
	width: 90%;
	display: block;
}
nav ul li{display:block; text-align:left;}
footer {}

/* Tablet Layout: 450px to 749px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 450px) {
.gridContainer {}
#wrapper {}
#content {
	min-width:400px;
}
#mini-menu li{list-style-type:none; display:block; width:100%;  padding:15px 0 15px 0; text-align:left;}
#left-side {
	clear: none;
	float: left;
	width: 90%;
	display: block;
}
#right-side {
	clear: none;
	float: left;
	margin-left: 4.1666%;
	width: 90%;
	display: block;
}

nav ul li{display:block; text-align:left;}
footer {}

}

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

@media only screen and (min-width: 750px) {
.gridContainer {}
#wrapper {}
#content {
	padding:0;
	min-width:700px;
}
#mini-menu li{list-style-type:none; display:inline; width:100%; padding:.05%;}
#left-side {
	clear: none;
	float: left;
	width: 60%;
	display: block;
}
#right-side {
	clear: none;
	float: left;
	width: 30%;
	display: block;
	margin-left: 4.1666%;
}
nav ul li{display:inline;}
footer {}
}