@charset "UTF-8";
/* 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%;
}
/* 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 {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 150%;
	margin: 10px 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0px 0px 10px;
	text-align: center;
	background: #10517D url(../images/bkg_page.jpg) repeat-x fixed center top;
}
/* Commonly used to style page titles. */
h1 {
	color: #FFF;
	font-size: 46px;
	font-weight: normal;
	line-height: 120%;
	margin: 0px 0px 10px;
	font-family: "Times New Roman", Times, serif;
	text-transform: capitalize;
	background-image: url(../images/bkg_header1.jpg);
	background-repeat: no-repeat;
	height: 120px;
	padding-left: 10px;
	letter-spacing: -1px;
	position: relative;
	font-variant: small-caps;
}
/* Commonly used to style section titles. */
h2 {
	color: #1B6596;
	font-size: 200%;
	font-weight: bold;
	line-height: 120%;
	margin-bottom: 10px;
	margin-top: 0px;
	text-transform: capitalize;
}
h3 {
	font-size: 150%;
	color: #92A630;
	font-weight: normal;
	line-height: 120%;
	margin-bottom: 10px;
	margin-top: 0px;
	text-transform: capitalize;
}
h4 {
	font-size: 125%;
	color: #1B6596;
	font-weight: normal;
	line-height: 120%;
	margin-bottom: 10px;
	margin-top: 0px;
}
img {
	border-width: 0px;
	border-style: none;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: blue;
	font-weight: normal;
	text-decoration: none;
}

/* Sets the style for external links that start with 'http://'. */
a[href^="http://"] {
 background: url(../images_2010/enlarge.png) no-repeat right top;
 padding-right: 18px;
 height: 13px;
}
 body#home a[href^="http://"], a#wdtp[href^="http://"] {
 background: none;
 padding-right: 0px;
 height: auto;
}
/* Sets the style for visited links. */
a:visited {
	color: #5A92E7;
	font-weight: normal;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: red;
	text-decoration: underline !important;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: red;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: red;
}
a.snapback {
	background: url(../images_2010/snapback.png) no-repeat left center;
	height: 16px;
	width: auto;
	padding-left: 16px;
}
a.button {
	background: url(../images/bkg_button.png);
	height: 37px;
	width: 190px;
	display: block;
	line-height: 37px;
	text-align: center;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
}
a:hover.button {
	color: #87DB3F;
	text-decoration: underline;
}
li {
	margin-bottom: 2px;
}
td {
	text-align: left;
}
th {
	font-weight: bold;
	text-align: left;
	background-color: #90CA40;
	color: #FFF;
	padding: 4px;
	white-space: nowrap;
}
.alt {
	background-color: transparent;
}
.callout1 {
	padding: 20px;
	border: 1px solid #85B340;
	background: #EBF3FA;
}
.callout2 {
	background-color: #f5f5f5;
	padding: 8px;
	border: solid 1px #ccc
}
.callout_body {
	color: #854608;
	font-size: 11px;
	background-color: #f6ead2;
	padding: 8px;
	border-style: solid;
	border-width: 2px 2px 8px 2px;
	border-color: #a68166
}
.callout_body ul {
	margin-left: 0px;
	padding-left: 20px
}
.callout_title {
	color: #f6ead2;
	font-weight: normal;
	font-size: 18px !important;
	font-family: Times, "Times New Roman", Georgia !important;
	background-color: #a68166;
	padding: 4px;
	border-right: 4px solid #a68166;
	border-left: 4px solid #a68166
}
.clear_both {
	clear: both;
}
.columns_three {
	/* CSS Column code for webkit */
	-webkit-column-count: 3;
	-webkit-column-gap: 20px;
	-webkit-column-rule-color: #EEEEEE;
	-webkit-column-rule-style: none;
	-webkit-column-rule-width: 1px;
	/* CSS Column code for mozilla */
	-moz-column-count: 3;
	-moz-column-gap: 20px;
	-moz-column-rule-color: #EEEEEE;
	-moz-column-rule-style: none;
	-moz-column-rule-width: 1px;
	/* CSS3 Column code  */
	column-count: 3;
	column-gap: 20px;
	column-rule-color: #EEEEEE;
	column-rule-style: none;
	column-rule-width: 1px;
}
.columns_two {
	/* CSS Column code for webkit */
	-webkit-column-count: 2;
	-webkit-column-gap: 20px;
	-webkit-column-rule-color: #000066;
	-webkit-column-rule-style: none;
	-webkit-column-rule-width: 1px;
	/* CSS Column code for mozilla */
	-moz-column-count: 2;
	-moz-column-gap: 20px;
	-moz-column-rule-color: #000066;
	-moz-column-rule-style: none;
	-moz-column-rule-width: 1px;
	/* CSS3 Column code  */
	column-count: 2;
	column-gap: 20px;
	column-rule-color: #000066;
	column-rule-style: none;
	column-rule-width: 1px;
}
.e2ma_signup_form {
	background-color: #f5f5f5 !important;
	padding: 8px !important;
	border: solid 1px #ccc !important;
	width: auto !important;
	overflow: hidden !important;
}
.e2ma_signup_message:before {
	content: "Stay Informed!" !important;
	font-weight: bold !important;
	font-size: 14px !important;
	display: block !important;
}
.e2ma_signup_message {
	color: #000000 !important;
	font-size: 12px !important;
	font-weight: normal !important;
	font-family: Arial, Helvetica, sans-serif !important;
}
.e2ma_signup_form_row {
	border-style: none !important;
	padding: 2px !important;
	margin-bottom: 0px !important;
}
.e2ma_signup_form_required_footnote {
	border-style: none !important;
}
.explain_text {
	font-size: 10px;
	font-style: italic;
	line-height: 100%;
	font-weight: normal;
	color: #999;
}
.float_left {
	float: left;
	padding-right: 10px;
}
.float_right {
	float: right;
	margin-left: 20px;
}
.header_caption {
	font-size: 50%;
	color: #9BD946;
	display: block;
	font-weight: normal;
	line-height: 100%;
	font-style: italic;
	margin-top: 20px;
	font-variant: normal;
	text-transform: none;
	position: absolute;
	left: 10px;
	bottom: 10px;
}
.img_border {
	padding: 4px;
	border: 1px solid #97D251;
	background: #FFF;
}
.img_border_right {
	padding: 5px;
	border: 1px solid #97D251;
	float: right;
	margin-bottom: 20px;
	margin-left: 20px;
	margin-right: 5px;
	background: #FFF;
}
.img_border_left {
	padding: 4px;
	border: 1px solid #97D251;
	float: left;
	margin-bottom: 20px;
	margin-left: 5px;
	margin-right: 20px;
}
.img_grid img {
	padding: 4px;
	border: 1px solid #97D251;
	margin: 0px 10px 10px 0px;
}
.results td {
	padding: 2px 0px;
}
.results td a {
	color: #2771B0;
	text-decoration: none;
}
.results h3 {
	padding: 0px;
	background-color: transparent;
	margin-bottom: 5px;
	margin-top: 10px;
	font-weight: bold;
}
table#results h2 {
	margin-top: 20px;
	margin-bottom: 5px;
}
/* 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 {
	margin: 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: 954px;
	border: 1px solid #CCC;
	padding: 5px;
	background-color: #E0ECFF;
}
#outerWrapper #header {
	background-color: #FFF;
	margin: 0px;
	padding: 0px;
	height: 122px;
}
#outerWrapper #topNav {
	padding: 10px;
	font-size: 13px;
	text-align: center;
	color: #1D329E;
	border-top: 1px none #1D329E;
	border-bottom: 1px none #1D329E;
	background: #8CC63E url(../images/bkg_nav.jpg) repeat-y;
	line-height: 100%;
	text-transform: uppercase;
}
#outerWrapper #topNav a {
	color: #16517D;
	text-decoration: none;
	margin-right: 5px;
	margin-left: 5px;
	font-weight: bold;
}
body#home #nav_home, body#shopping #nav_shopping, body#events #nav_events, body#marriott #nav_marriott, body#residential #nav_residential, body#offices #nav_offices, body#directions #nav_directions {
	text-decoration: underline;
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	background: #FFF url(../images/bkg_watermark.gif) no-repeat right top;
}
#home #outerWrapper #contentWrapper {
	overflow: hidden;
	background: #FFF none no-repeat right top;
}
#outerWrapper #contentWrapper #leftColumn1 {
	float: left;
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
}
#outerWrapper #contentWrapper #leftColumn1 > p {
	margin-top: 1px;
}
body.no_col #outerWrapper #contentWrapper #leftColumn1 {
	display: none;
}
#outerWrapper #contentWrapper #leftColumn1 #subnav {
	color: #22622A;
	margin-bottom: 10px;
	border: 1px solid #B3CCB9;
	background-color: #eaf7ee;
}
#outerWrapper #contentWrapper #leftColumn1 #subnav h3 {
	background: url(../images/bkg_subnav_header.jpg) repeat-x;
	color: #22622A;
	padding: 5px;
	font-size: 16px;
}
#outerWrapper #contentWrapper #leftColumn1 #subnav ul {
	margin: 10px 0px 10px 30px;
	padding: 0px;
}
#outerWrapper #contentWrapper #leftColumn1 #subnav ul li {
	margin-bottom: 2px;
	list-style: square;
}
#outerWrapper #contentWrapper #leftColumn1 #subnav a {
	color: #22622A;
}
/* 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 0 0 220px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px 10px 10px 10px;
}
#outerWrapper #contentWrapper #content object {
	background: #FFF;
}
body.no_col #outerWrapper #contentWrapper #content {
	margin: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
body#home #outerWrapper #contentWrapper #content {
	margin: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 6px;
	text-align: center;
}
#outerWrapper #footer {
	border-top: 30px solid #7CAD38; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	color: #4373BB;
	background: #FFF url(../images/bkg_watermark.gif) no-repeat right bottom;
}
#home #outerWrapper #footer {
	border-top: 30px solid #7CAD38; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	color: #4373BB;
	background: #FFF url(../images/bkg_watermark.gif) no-repeat right bottom;
}
#outerWrapper #footer a {
	color: #4373BB;
	text-decoration: none;
}
#wdtp {
	color: #7CAD38 !important;
}
#savings_sidebar {
	background: url(../images_2010/bkg_savings_sidebar.gif) no-repeat;
	height: 108px;
	width: 120px;
	display: block;
	color: #FFF;
	margin: 0;
	padding: 80px 70px 10px 10px;
	text-align: left;
}
#hours_sidebar {
	background: url(../images_2010/bkg_hours_parking.gif) no-repeat;
	height: 50px;
	width: 140px;
	display: block;
	color: #FFF;
	margin: 0;
	padding: 118px 50px 0px 10px;
	text-align: left;
	line-height: 150%;
	font-weight: normal;
}
#careers_sidebar {
	height: 60px;
	width: 130px;
	display: block;
	color: #FFF;
	margin: 0;
	padding: 108px 60px 0px 10px;
	text-align: left;
	line-height: 150%;
	font-weight: normal;
	background-image: url(../images_2010/bkg_careers.gif);
	background-repeat: no-repeat;
}
#hours #hours_sidebar, #careers #careers_sidebar, #coupons #savings_sidebar {
	display: none;
}

