/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
#printLogo {
	display: none;	
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #666;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  line-height: normal;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
* html body {
	font-size: x-small; /* for IE5/Win */
	font-family: Arial, Helvetica, sans-serif;  /* for IE5/Win */
	f\ont-size: small; /* for other IE versions */
	f\ont-family: Arial, Helvetica, sans-serif; /* for other IE versions */
}
/* Commonly used to style page titles. */
h1 {
  color: #00529b;
  font-size: 150%;
  font-weight: bold;
  line-height: normal;
  padding-bottom: 20px;
}
/* Commonly used to style section titles. */
h2 {
  color: #bb333a;
  font-size: 130%;
  font-weight: bold;
  line-height: normal;
}
/* Commonly used to style section titles. */
h3 {
  color: #000;
  font-size: 120%;
  font-weight: bold;
  line-height: normal;
}
/* Commonly used to style section titles. */
h4 {
  color: #000;
  font-size: 110%;
  font-weight: bold;
  line-height: normal;
}
/* Commonly used to style section titles. */
h5 {
  color: #000;
  font-size: 100%;
  font-weight: bold;
  line-height: normal;
}
/* Commonly used to style section titles. */
h6 {
  color: #000;
  font-size: 100%;
  font-weight: bold;
  line-height: normal;
  font-style: italic;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #00529b;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #00529b;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #bb333a;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #bb333a;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #bb333a;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 840px;
}
#outerWrapper #header {
  background-color: #ddd;
  background-image: url("../images/bg_header2.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  font-size: 18px;
  font-weight: bold;
  height: 225px;
}
#outerWrapper #header .logoLink {
	float: left;
	margin-left: 320px;
}

#outerWrapper #header .flashHeaderPosition {
	float: left;
}

#outerWrapper #header #schedule {
/*	background-image: url(../images/date-time_preferences.png);
	background-repeat: no-repeat;
	background-position: left;
	padding: 30px 0 10px 35px;
	width: 250px;
	height: 32px;
	margin-left: 540px;
	margin-top: 30px; !important*/
	display: none;
}
#outerWrapper #topNavigation {
  background-image: url("../images/bg_mainnav.jpg");
  background-position: top left;
  background-repeat: no-repeat;
  height: 27px;
}
#outerWrapper #topNavigation #topNavigationContainer {
	margin: 0 auto 0 auto;
	width: 690px;
}

#outerWrapper #contentWrapper {
  background-image: url("../images/bg_body.jpg");
  background-position: left;
  background-repeat: repeat-y;
  height: 100%;
}
#outerWrapper #contentWrapper #blueman {
	background-image: url("../images/bg_blueman2.jpg");
	background-position: bottom right;
	background-repeat: no-repeat;
	height: 100%;
}
#outerWrapper #contentWrapper #leftColumn1 {
  border-right: solid 1px #666; /* Sets the right border properties for an element using shorthand notation */
  float: left;
  padding: 10px 10px 10px 70px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 200px;
}
#outerWrapper #contentWrapper #rightColumn1 {
  /*border-left: solid 1px #666;  Sets the left border properties for an element using shorthand notation */
  float: right;
  padding: 10px 75px 10px 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
#outerWrapper #contentWrapper #rightColumn1 #sidebarContent {
  margin-left: 10px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
  margin: 0 350px 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 10px 0px 10px 70px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
    width: 420px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */


/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
#outerWrapper #pgBottom {
  background-image: url("../images/bg_footer3.jpg");
  background-repeat: no-repeat;
  height: 118px;
}
#outerWrapper #footer {
  background-color: #666;
  text-align: center;
}

/*TOP MENU*/
#topMenuContainer {
	margin: 0 0 0 550px;
	padding-top: 40px;
}

#topMenu {
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}

#topMenu ul {
	display: inline;
	list-style-type: none;
}

#topMenu li {
	padding: 0 40px 0 8px;
	display: inline;
	margin-right: 20px;
}

#topMenu ul li.home {
	margin-left: 0;
	list-style: none;
	display: inline;
	background-image: url(../images/home.gif);
	background-repeat: no-repeat;
	background-position: left;
	padding: 15px 0 17px 20px;
	}
	
#topMenu ul li.contact {
	margin-left: 0;
	list-style: none;
	display: inline;
	background-image: url(../images/email.gif);
	background-repeat: no-repeat;
	background-position: left;
	padding: 15px 0 18px 20px;
	}

#topMenu a:link, #topMenu a:visited, #topMenu a:active {
	color: #f6ce79;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
}
#topMenu a:hover {
	color:#fff;
	text-decoration: none;
}

/*FOOTER MENU*/
#footerMenu {
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  padding-bottom: 10px;
}
#footerMenu ul {
	display: inline;
	list-style-type: none;
}

#footerMenu li {
	padding: 0 0 0 4px;
	display: inline;
	border-left: 1px solid #fcb827;
}

#footerMenu ul li.first {
	margin-left: 0;
	border-left: none;
	list-style: none;
	display: inline;
	}

#footerMenu a:link, #footerMenu a:visited, #footerMenu a:active {
	color: #f6ce79;
	font-size: 100%;
	text-decoration: none;
}
#footerMenu a:hover {
	color:#fff;
	text-decoration: none;
}

/* FOOTER ADDRESSES */
#footerAddressMenu {
  padding-bottom: 10px;
}
#footerAddressMenu ul {
	display: inline;
	list-style-type: none;
}

#footerAddressMenu li {
	padding: 5px;
	display: inline;
	border: 1px solid #fff;
	width: 100px;
}

#footerAddressMenu a:link, #footerAddressMenu a:visited, #footerAddressMenu a:active {
	color: #FFF9EE;
	font-size: 100%;
	text-decoration: none;
}
#footerAddressMenu a:hover {
	color:#ccc;
	text-decoration: underline;
}

#footer #copyright {
  text-align: center; /* Centers the page content container in IE 5 browsers. */
  font-size: 90%;
  color:#f6ce79;
}

/*------------- LOCATIONS FOOTER STYLES Makes rounded css corners -------------------*/
#outerWrapper #pgBottom #locationsContainer {
  margin: 0 1px 0 5px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding-top: 40px;
}
#outerWrapper #pgBottom #locationsContainer h2 {
  padding-left: 30px;
}
.locations{
	display:block;
}
.locations *{
  display:block;
  height:1px;
  overflow:hidden;
  font-size:.01em;
  }
.locations1{
  margin-left:3px;
  margin-right:3px;
  padding-left:1px;
  padding-right:1px;
  }
.locations2{
  margin-left:1px;
  margin-right:1px;
  padding-right:1px;
  padding-left:1px;}
.locations3{
  margin-left:1px;
  margin-right:1px;
}
.locations4{
}
.locations5{
}
.locationsfg{
  padding: 2px;
  font-size:10px;
	border-right: #fdb827 1px solid;
  }
.locationsfg2{
  padding: 2px;
  font-size:10px;
	border-right: none;
  }
/*------------- END LOCATIONS FOOTER STYLES -------------------*/
  
/*-------------- COUPON STYLES -------------------------*/

#coupon {
	border: thin dashed #000;
	padding: 10px;
	margin-top: 20px;
	width: 500px;
	text-align: center;
	margin: 20px auto 0 auto;
}

/* ////////////////// HOME PAGE BUTTON SPRITES /////////////////// */

#hmButtons {
		
}

#hmBtn1 a:link.sprite, #hmBtn1 a:visited.sprite{
background:url(../images/hm_button_bg.gif) no-repeat top left;
background-position:0px 0px;
width:249px;
height:28px;
display:block;
text-align: center;
margin: 10px 0 10px 0;
padding-top: 12px;
font-size:13px;
}

#hmBtn1 a:hover.sprite{
background-position:0px -40px;
text-decoration: none;
}


