@charset "utf-8";
body  {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #112637;
	font-size: 12px;
	background-color:#D7E2E8;

}
#container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; 
	padding: 0;
	margin: 5px auto 50px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #112637; 
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
/*	border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
img.fltrt {
	margin: 0px 0px 0px 10px ;
}
img.fltlft {
	margin: 0px 10px 0px 0px;
}

/**********************************
 *      thrift store styles       *
 **********************************/
.store {
	margin: 20px 0 20px 0;	
}
.store .name {
	width: 100%;
	background-color: #CCCCCC;
	font-size: 12px;
	font-weight: bold;
	margin: 10px 0;
	padding: 10px 0 10px 20px;
}
.store .address {
	margin: 0 0 0 20px;
}
.store .citystatezip {
	margin: 0 0 0 20px;
}
.store .title-openhours {
	margin: 0 0 0 20px;
}
.store .openhours {
	margin: 0 0 0 20px;
}
.store .phone {
	margin: 0 0 0 20px;
}
.store .storemap {
	margin: 20px;
	width: 300px;
}
.store .openhours {
	margin-bottom: 20px;
}
#coupon {
	border: 1px solid #000000;
	width: 600px;
	height: 200px;
	margin: 15px;
}
#satellite {
	border: 1px solid #000000; 
}

.thrColFixHdr #sidebarcontent {
	float: right; /* since this element is floated, a width must be given */
	width: 320px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 15px 5px 5px 20px; /* padding keeps the content of the div away from the edges */
}

/**********************************
 *  home page content box styles  *
 **********************************/
#homeBoxContainer {
	background-color: #d7e2e8;
	background-image:url(../images/bluebg.gif);
	background-repeat: no-repeat;
	height: 280px;
	padding: 18px 0 0 27px;
} 
.homeBox {
	width: 200px;
	overflow: hidden; 
	padding: 0;
	margin: 0 0 0 12px;
	background-color: #ffffff;
	height: 270px;
	color: #101C29;
}
.homeBox hr {
	color: #C44F2F;
}
.homeBox h2 {
	font-size: 12px;
	margin: 0 0 0 10px;
}
.homeBox .boxBanner h1 {
	margin: 0px 0px 10px 0px;
	width: auto;
	font-size: 14px;
	color: #FFFFFF;
	padding: 8px 18px;
	font-weight:  bold;
	background-color: #112637;
	letter-spacing: 0.1em;
}
.homeBox .header {
	background-color: #C44F2F;
	color: #ffffff;
	width: auto;
	height: 80px;
	margin: 0 15px;
}
.homeBox .header h1 {
	padding-top: 10px;
	font-size: 14px;
	color: #ffffff;
}
.homeBox .header img {
	margin: 0 10px 0 0;
	padding: 0;
	float: left;
}
.homeBox .content {
	margin: 0 0 7px 0;
	height: 223px;
	overflow: hidden; 
}
.homeBox .content p {
	font-size: 10px;
	line-height: 11px;
	text-align:left;
	margin: 5px 18px;
	line-height: 13px;
}
.homeBox a {
	text-decoration: none;
	color: #c44f2f;
	cursor: pointer;
	font-weight: bold;
	font-size: 10px;
}
.homeBox .readMoreSmall {
	margin: 0px 5px;
}
.homeBox .readMoreLarge{
	height: 20px;
	padding: 4px 12px 4px 12px;
	margin: 0 0 5px 0;
}
.homeBox .readMoreLarge a {
	font-size: 12px;
	line-height: 15px;
}
/* end home page styles */

/**********************************
 *       site header styles       *
 **********************************/
.thrColFixHdr #header, .twoColFixRtHdr #header { 
	height:100px;  /* should this change for IE due to how it calculates box sizes */
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0 0 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.thrColFixHdr #header #logo, .twoColFixRtHdr #header #logo{
/*	padding: 5px 0 0 0; */
	padding: 0;
	margin: 0 9px; 
}
.thrColFixHdr #header img, .twoColFixRtHdr #header img { 
	border: 0px;
	}
.twoColFixRtHdr #header h1 {
	margin: 0;
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColFixHdr #header h1 {
	padding: 5px 0; 
}

/**********************************
 *   main horiz menu container    *
 **********************************/
#menuwrapper {
	background-color: #112637;
	padding: 0 0 0 75px;
	height: 50px;  /* added per Jen's Style Guide */
}
.clearit {
	clear: both;
	height: 0;
	line-height: 0.0;
	font-size: 0;
}
#mainmenu {
	background: #112637; 
	text-align: center;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

/**********************************
 *      drop-down menu styles     *
 **********************************/

#p7menubar {
	width: 825px;
}
#p7menubar {
	padding: 10px 7px 0px 0px;
	margin: 0;
	list-style: none;
	font-family: Arial, Helvetica, sans-serif;
}
#p7menubar ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
#p7menubar a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	padding: 5px 10px 5px 10px;
	border-right: 1px solid #333;
	font-size: 1em;
	color: #112637;
}
#p7menubar a img{
	border: 0;
}
#p7menubar a.trigger2  {
	border: #112637;
	padding: 0;
}
#p7menubar li {
	float: left;
	position: relative;
}

/* hide from IE mac \*/
#p7menubar li {position: static; width: auto;}
/* end hiding from IE5 mac */

#p7menubar li ul, #p7menubar ul li  {
	width: 20em;
}
#p7menubar ul li a  {
	color: #d7e2e8;
	border-right: 0;
	padding: 3px 12px 3px 16px;
}
#p7menubar li ul {
	position: absolute;
	margin-left: 5px;
	display: none;
	background-color: #112637;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	filter:alpha(opacity=90);-moz-opacity:.90;opacity:.90;
}
#p7menubar li:hover a, #p7menubar a:focus,
#p7menubar a:active, #p7menubar li.p7hvr a {
	color: #112637;
	background-color: #CCCCCC;
}
#p7menubar li:hover ul, #p7menubar li.p7hvr ul {
	display: block;
}
#p7menubar li:hover ul a, #p7menubar li.p7hvr ul a {
	color: #112637;
	background-color: #d7e2e8;
}
#p7menubar ul a:hover {
	text-decoration: underline!important;
}
/* end drop-down menu style settings */


/**********************************
 *    main rotating image region  *
 **********************************/

.twoColFixRtHdr #mainImageRegion {
	margin: 10px 0 0 0px;
	color: #666666;
	height: 270px;
/*	width: 620px; */
}
.twoColFixRtHdr #mainImageRegion img {
	/* home page area for main image(s) on page */
	border: 1px solid #112637;
	height: 270px;
	width: 600px;
}
.twoColFixRtHdr #mainImageRegion a {
	border: none;
}
.twoColFixRtHdr #mainImageRegion li {
	list-style: none;
}

/**********************************
 *  home page right-hand column   *
 **********************************/
.twoColFixRtHdr #sidebar1 {
/* for the home page right-hand sidebar */
	float: right; /* since this element is floated, a width must be given */
	width: 200px; 
	padding: 0;
	margin: 0;
	color: #cd5a13;
/*	margin: 10px;   */ /* remove because of 240 px style guide spec for gold buttons add margin to sidebar text div */
	text-align: left;
}
#rightColContent p {
	font-size: 10px;
	margin: 5px 10px 0px 10px;
	line-height: 14px;
}
#rightColContent h2 {
	font-size: 12px;
	margin: 20px 10px 0px 10px;
	font-weight: bold;
}
.twoColFixRtHdr #sidebar1 {
/* for the home page right-hand sidebar */
	float: right; /* since this element is floated, a width must be given */
	width: 240px; 
	padding: 0;
	color: #cd5a13;
	margin: 10px;
	text-align: left;
}

/**********************************
 * content page left-hand column  *
 **********************************/

.toggleButton {
	margin-top: 5px;
}
.thrColFixHdr #sidebarContent {   /* content section underneath navigation region */
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 25px 0px 15px 0px; /* padding keeps the content of the div away from the edges */
	font-size: 9px;
	color: #112637;
}
.thrColFixHdr #sidebar1 a:link {
	text-decoration: none;
	color: #112637;
}
.thrColFixHdr #sidebar1 a:visited {
	text-decoration: none;
	color: #112637;
}
.thrColFixHdr #sidebar1 a:active {
	text-decoration: none;
	color: #112637;
}
.thrColFixHdr #sidebar1 a:hover {
	text-decoration: none;
	color: #112637;
}
.thrColFixHdr #sidebar1 #menutitle {
	background-color: #112637;
	height: 18px;
	width: auto;
	text-align: center;
	padding: 5px 0 0 0;
	color: #ffffff;
}
.thrColFixHdr #sidebar1 .menuitem {
	padding: 5px 0 2px 10px;
	margin: 5px 5px 0 15px;
	font-size: 12px;
}
.thrColFixHdr #sidebar1 #activemenu {
	background-color: #d7e2e8;
	font-weight: bold;
	width: auto;
	margin: 5px 0;
	padding: 2px 0 0 25px;
}
.thrColFixHdr #sidebar1 .submenuitem {
	padding: 3px 0 0 10px;
	margin: 0 0 0 25px;
	font-size: 12px;
}
.thrColFixHdr #sidebar1 #activeitem {
	color: #c25035;
	width: 300px;
}
.thrColFixHdr #sidebar1 #activeitem a:link {
	text-decoration: none;
	color: #c25035;
}
.thrColFixHdr #sidebar1 #activeitem a:visited {
	text-decoration: none;
	color: #c25035;
}
.thrColFixHdr #sidebar1 #activeitem a:active {
	text-decoration: none;
	color: #c25035;
}
.thrColFixHdr #sidebar1 #activeitem a:hover {
	text-decoration: none;
	color: #c25035;
}

/**********************************
 *        story box styles        *
 **********************************/

.storybox {
	border: 1px solid #000000;
	overflow: hidden; 
	padding: 15px;
	margin: 10px 0 10px 15px;
}
#sidebarcontent .storybox {
	margin: 20px 0 10px 12px;
	width: 100px;
}
#mainContent .storybox {
	width: 200px;
	height: auto;
}
#mainContent .storybox.fltlft {
	margin-right: 20px;
}
#mainContent .storybox.fltrt {
	margin-left: 20px;
}
.storybox h2 {
	font-size: 12px;
}

/**********************************
 *      utility menu styles       *
 **********************************/

#utilitymenu {
	font-size: 10px;
	font-weight: bold;
	line-height: 20px;
	text-align: right;
	width: 200px;
	margin: 0 0 15px 0;
	padding: 10px 0 0 0;
	background-color: #112637;
	color: #ffffff;
	height: 20px;
}
#utilitymenu a {
	text-decoration: none;
	color: #ffffff;
	margin: 0 8px;
}
#utilitymenu a:hover {
	text-decoration: underline;
	cursor: pointer;
}
#utilitymenu #searchBox {
	background-color: #ffffff;
	color: #112637;
	float: right;
	width: 200px;
	margin: 0;
	padding: 5px 0 0 0;
}
#utilitymenu #utilitytextbox {
	font-size: 10px;
	margin-left: 5px;
	width: 90px;
}
#utilitymenu #searchbutton {
	font-size: 8px;
}

/**********************************
 *       breadcrumb styles        *
 **********************************/

#breadcrumbs {
	color: #040404;
	font-size: 10px;
}
#breadcrumbs a {
	text-decoration: none;
	color: #040404;
	margin: 0 4px;
}
#breadcrumbs a:hover {
	text-decoration: underline;
	cursor: pointer;
}


/**********************************
 *          footer styles         *
 **********************************/

#footer {
	text-align: center;
	background-color: #b7c0c5;  
	background-image: url(../images/footerbg.gif);
	background-repeat: no-repeat;
	color: #FFFFFF;
	font-size: 10px;
	font-weight: normal;
	letter-spacing: 1px;
} 
#footer p {
	margin: 0; 
	padding: 0 0 2px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue  */
}
#footer br {
	line-height: 3px;
}
#footer a {
	text-decoration: none;
	color: #FFFFFF;
	margin: 0 4px;
}
#footer a:hover {
	text-decoration: underline;
	cursor: pointer;
}


/**********************************
 *        home page styles        *
 **********************************/
/*  twoColFixRtHdr is the classed used for the site index page */

.twoColFixRtHdr #mainContent {
	vertical-align: top;
	margin: 0 300px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
/*	padding: 10px 10px 30px 10px; *//* remember that padding is the space inside the div box and margin is the space outside the div box */
	padding: 10px 0px 30px 0; /* removed to conform to Visual Style Guide */
	height: 272px;
	overflow: hidden; 
} 


/**********************************
 *       content page styles      *
 **********************************/

.thrColFixHdr #mainContent { 
	margin: 0 0 0 220px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	width: 600px;
	padding: 0 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left: 1px solid #d7e2e8;
	font-size: 12px;
	color: #112637;
} 
.thrColFixHdr #mainContent h1{
	font-size: 22px;
	margin: 20px 0 10px 0;
}
.thrColFixHdr #mainContent h2{
	font-size: 22px;
	margin: 20px 0 10px 0;
}
.thrColFixHdr #mainContent p {
	line-height: 16px; 
	padding-bottom: 5px;
}
.thrColFixHdr #mainContent p a {
	color: #c44f2f;
	text-decoration: none;
}
.thrColFixHdr #mainContent p a.hover {
	text-decoration: underline;
}
.thrColFixHdr #mainContent #breadcrumbs, .thrColFixHdr #mainContent #breadcrumbs a{
	font-size: 10px;
	color: #040404;
	padding: 5px 0 10px 0;
}


/**********************************
 *   landing page header styles   *
 **********************************/

.landingPageHeader {
	background-color: #eba246; 
	color: #FFFFFF;
	height: 100px;  
	width: 600px;
	padding-right: 0px;
	margin-bottom: 10px;
}
.landingPageHeaderGraphic {
	float: right;
}
.headerText {
	font-weight: 500;
	font-stretch: semi-condensed;
	width: 400px;
	float: left;
	margin: 0px 0 0 20px;
}
.headerText.nographic {
	width: 550px;
}
#mainContent .belowHeader {
	margin-top: -80px;
}
#mainContent .headerText h1 {
	font-size: 24px;
	margin-bottom: 5px;
}
#mainContent .headerText h2 {
	font-size: 16px;
	margin-top: 0px;
}

/**********************************
 *          footer styles         *
 **********************************/
#footer { 
	text-align: center;
	background-image: url(../images/footerbg.gif); 
	padding: 18px 10px 8px 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	color: #d7e2e8;
	font-size: 10px;		/* Jen wants 12px but 12px and bold makes links wrap.  Ask her about this */
	font-weight: bold;
	height: 30px;
} 
.thrColFixHdr #footer { 
	background-color:#FFFFFF;
	margin-top: 20px;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 0 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/**********************************
 *    "floating" object styles    *
 **********************************/

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	margin: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/**********************************
 *  gold donate/volunteer buttons *
 **********************************/

.goldbutton {
	text-align: left;
	padding: 5px 0 5px 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 500;
	font-stretch: semi-condensed;
	height: 20px;
	margin: 10px 15px 0 40px;
	background-color: #eba146;
	color: #FFFFFF;
	cursor: pointer;
}
#sidebar1 .goldbutton {
	padding: 5px 0 5px 15px;
	margin: 10px 0px;
	width: 225px;  /* 225px width + 15px left padding = 240px button */
	font-size: 24px;
	font-weight: 700;
	height: 25px;
	background-color: #eba146;
	color: #FFFFFF;
	cursor: pointer;
}

/**********************************
 *     browser-specific styles    *
 **********************************/

.safari #mainImageRegion img {
	margin: 0px;
}
.safari .twoColFixRtHdr #mainContent, .gecko .twoColFixRtHdr #mainContent {
	margin: 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
}


/* 
.ie5 #homeBoxContainer { padding-left: 5px; }
.ie .twoColFixRtHdr #sidebar1 { width: 200px; }
.ie #maincontent {
	width: 250px;
}
.ie .twoColFixRtHdr #sidebar1 { }
.ie .twoColFixRtHdr #mainContent { 
	zoom: 1; 
	margin-right: 0px;
}
.ie5 #homeBoxContainer { padding-left: 0px; }
/*  tweak the right-hand margins for the main graphic -- some browsers add it to the graphic 
   	container size, some include it in the container size so we see unexpected truncated graphics.
	Margins are customized in this region to accomodate this difference
	*/
/*
.webkit .twoColFixRtHdr #mainContent {
	margin: 0 0 0 0;
} 
*/
