@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/
*/
body {
	background-color: #FFFFFF;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	font-family: "azo-sans-web",sans-serif;
}
.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

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

.header-bg{
	width:100%;
	height:65px;
	background-image:url(../images/design/header-bg.jpg)
}

a{ text-decoration: none; }

ul{ list-style: none; }

/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 95%;
	padding-left: 2.5%;
	padding-right: 2.5%;
	clear: none;
	float: none;
}
#div1 {
}
.zeroMargin_mobile {
    margin-left: 0;
}
.hide_mobile {
    display: none;
}
.sandwich-container{
	width:94%;
	padding-top:13px;
}

.logo{
	width:90%;
	height:auto;
	max-width:715px;
	max-height:359px;
}

.footer{
	width:100%;
	height:62px;
	background-image:url(../images/design/footer-bg.jpg)
}

.footer-text{
	color:white;
	font-size:14px;
	padding-top:17px;
}

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

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

.gridContainer {
	width: 97.5%;
	padding-left: 1.25%;
	padding-right: 1.25%;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.zeroMargin_tablet {
    margin-left: 0;
}
.hide_tablet {
    display: none;
}

a { 
	color:#ba131a;
}
a:hover {
	text-decoration:underline;
	color:#ba131a;
}

a:visited {
	color:#ba131a;
}

.body-text {
	width:96%;
	max-width: 800px;
	color:#636466;
	font-size:16px;
	font-family: "azo-sans-web",sans-serif;
}

h1 {
	font-size:24px;
	color:#ba131a;
	font-family: "azo-sans-web",sans-serif;
}
}
/* 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: 98.3333%;
	padding-left: 0.8333%;
	padding-right: 0.8333%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.zeroMargin_desktop {
    margin-left: 0;
}
.hide_desktop {
    display: none;
}

.nav-bg{
	width:100%;
	height:62px;
	background-image:url(../images/design/nav-bg.jpg);
}

.nav-text{
	display:block;
	width:800px;
	padding-left:120px;
	
}

/*Navigation New */

/* 
	LEVEL ONE
*/
ul.dropdown                         { position: relative; display:block; padding-top:16px; }
ul.dropdown li                      { font-weight: bold; float: left; zoom: 1; }
ul.dropdown a:hover		            { color: #fff; }
ul.dropdown a:active                { color: #fff; }
ul.dropdown li a                    { display: block; padding: 4px 8px; border-right: 0px solid #333;
	 								  color: #fff; letter-spacing:2.5px; }
ul.dropdown li:last-child a         { border-right: none; } /* Doesn't work in IE */
ul.dropdown li.hover,
ul.dropdown li:hover                { color: #000; position: relative; }
ul.dropdown li.hover a              { color: #fff; }


/* 
	LEVEL TWO
*/
ul.dropdown ul 						{ width: 200px; visibility: hidden; position: absolute; top: 8px; left: 0; }
ul.dropdown ul li 					{ font-weight: normal; background: #404b9f; color: #000; 
									  border-bottom: 1px solid #fff; float: none; }
									  
                                    /* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a					{ border-right: none; width: 100%; display: inline-block; } 

/* 
	LEVEL THREE
*/
ul.dropdown ul ul 					{ position: absolute; left: 100%; top: 0; }
ul.dropdown li:hover > ul 			{ visibility: visible; }
}