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

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

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

.header{
	background-image:url(img/header_top_bg.jpg);
	background-repeat:repeat-x;
	background-size:contain;
}
.header img{
	padding-left:3%;
	max-width:60%;
}
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 86.45%;
	padding-left: 2.275%;
	padding-right: 2.275%;
	clear: none;
	float: none;
}

.show {
	background-image:url(img/show_bg.gif);
	background-repeat:no-repeat;
	background-size:100% 100%;
	box-shadow: 6px 6px 6px 6px rgba(86,87,81,0.5);
	float:left;

	width:100%;
	height:auto;
	margin-right:0;
	margin-bottom:2em;
}
.show img{
	box-sizing: border-box;
	width:100%;
	height:auto;
	padding-left:1.5em;
	padding-right:1.5em;
}
.subtitle{
	font-size:0.8em;
	padding: 3em 3em 0;
}
.show h2{
	padding: 0 2em;
	margin:0 0 0.5em 0;
}
.show p{
	padding-left:2em;
	padding-right:2em;
	/*padding-bottom:2em;*/
}
.new {
	box-sizing:border-box;
	background-image:url(img/bg02.gif);
	background-repeat:repeat;
	color:#FFFFFF;
	padding:0.5em 1em;
	font-weight:bold;
}
.new_list {
	background-color:#FFF;
}
.new_list ul{
	margin-bottom:0.5em;
}
.new_list li{
	list-style-type:circle;
	padding-bottom:0.5em;
}
.new_contents {
	box-sizing: border-box;
	background-color:#FFF;
	padding:1em;
}
.footer {
	background-color:#411002;
	color:#FFF;
	text-align:center;
	font-size:0.8em;
	padding:1em 0 3em 0;
	margin-top:2em;
}
.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}

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

@media only screen and (min-width: 481px) {

.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
	clear: none;
	float: none;
	margin-left: auto;
}
.show {
	width:45%;
	height:28em;
	margin-right:1.3em;
	margin-bottom:2em;
}
.show img{
	padding-left:1em;
	padding-right:1em;
}
.new {
}
.new_list {
}
.footer {
}
.hide_tablet {
display: none;
}
.zeroMargin_tablet {
margin-left: 0;
}
}

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

@media only screen and (min-width: 769px) {

.gridContainer {
	width: 88.2%;
	max-width: 1232px;
	padding-left: 0.9%;
	padding-right: 0.9%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
.show {
	width:30%;
	height:28em;
	margin-right:1.3em;
	margin-bottom:2em;
}
.show img{
	padding-left:1.5em;
	padding-right:1.5em;
}
.new {
}
.new_list {
}
.footer {
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}