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

.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. */
  
.gridContainer {
	border-radius:1em;
	margin-left: auto;
	margin-right: auto;
	padding-bottom:1em;
	width: 86.45%;
	padding-left: 2.275%;
	padding-right: 2.275%;
	clear: none;
	float: none;
	background:url(../images/backgrounds/bkg_light30.png)repeat;
}
#div1 img {
	max-width:25%;
}
#div1, .header, .navigation, .footer {
	background:url(../images/backgrounds/bkg_light70.png)repeat;
	border-radius:1ex;
	padding:1ex 2%;
	margin:1ex 2% 0 2%;
	width:92%;
}
.header {
}
.header h1 {
	line-height:0.75em;
	font-family:alex-brush;
	letter-spacing:1px;
	font-size:2.25em;
}
h1 span, h2 span {
	text-shadow:none;
	letter-spacing:1px;
	color:#666;
	font-weight:600;
	font-family:alexa-std;
	display:block;
}
h1 span {
	font-size:0.5em;
}
h2 span {
	font-size:0.9375em;
}
.navigation {
	padding-left:2%;
	background:none;
}
.navigation ul {
	display:none;
	margin:0;
	padding-left:0;
}
.navigation p {
	text-align:center;
	padding:3px 1ex;
	background-color:#fff;
	border:solid 2px #BAE5FF;
	border-radius:1ex;
	color:#000;
	width:4em;
	margin:0 auto;
	display: block;
}
.navigation ul li {
	display:inline;
	padding:3px 1ex;
	background-color:#fff;
	border:solid 2px #BAE5FF;
	border-radius:1ex;
	color:#000;
	box-shadow:#333 3px 2px 3px;
}
.navigation ul li.current {
	border-color:#00f;
	font-weight:bold;
}
.AltMenu ul li.current_alt a {
	font-weight:bold!important;
	text-decoration:none!important;
}
.AltMenu {
	display:block;
	text-align:center;
	width:10em;
	margin:auto;
}
.AltMenu ul {
	margin-top:0;
	text-align:left;
}
.extraMargins {
	margin: 1em auto 1em 1em;
	text-indent:-1em;
}
.semiBold {
	font-weight:600;
}
div.iframeholder {
	float:none;
	border:solid 1px #666;
	padding:4px;
	box-shadow:#333 3px 2px 3px;
	margin-bottom:1ex;
	max-width:95%;
}
div.iframeholder iframe {
	width:425px;
	max-width:100%;
	min-height:300px;
	border:none;
	margin:0;
}
.footer {
	background:none;
	padding:0 2%;
	color:#00f;
}
.footer span {
	font-size:0.875em;
	float:right;
}
.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;
}
#div1 {
}
.header {
}
.header h1 {
	line-height:0.625em;
}
h1 span, h2 span {
	display:block;
}
.navigation {
}
.navigation ul {
	display:none;
}
.navigation p {
	display: block;
}

.footer {
}
.AltMenu {
	display:block;
}
.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.5%;
	max-width: 1024px;
	padding-left: 0.75%;
	padding-right: 0.75%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.header {
}
.header h1 {
	line-height:0.625em;
}
h1 span, h2 span {
	display:inline;
}
.navigation {
}
.navigation ul {
	display:block;
}
.navigation p {
	display: none;
}
.footer {
}
.AltMenu {
	display:none;
}
div.iframeholder {
	float:right;
	max-width:60%;
}
div.iframeholder iframe {
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}