@charset "UTF-8";

/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	padding: 0px;
	float: left;
	clear: none;
	width: 725px; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	margin-top: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	background-color: #8DC63E;
	list-style: none;
	cursor: pointer;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #69942D;
	border-left-color: #BBF93D;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	height: 35px;
	text-align: center;
	margin: 0px;
	line-height: 35px;
	background-image: url(../assets/tab_bg.gif);
	background-position: left top;
	color: #FFF;
	background-repeat: repeat-x;
	border-bottom-width: 1px;
	border-bottom-color: #96C837;
	padding-right: 15px;
	padding-left: 15px;
}
#main_column .p_intro#contact {
	padding-left: 63px;
	background-image: url(../assets/contact.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
.collection {
	width: 690px;
	background-color: #F6F5F0;
	margin-bottom: 30px;
	margin-top: 20px;
}
.collection h3#mixedpaper {
	background-color: #0089d1;
	display: block;
	height: 35px;
	font-size: 1.4em;
	line-height: 35px;
	color: #FFF;
	padding-left: 50px;
	background-image: url(../assets/recycle_icon.png);
	background-repeat: no-repeat;
	background-position: left 50%;
}
.collection ul {
	float: left;
	text-align: left;
	margin-left: 30px;
	margin-top: 20px;
	font-weight: bold;
	font-size: 1.2em;
	width: 290px;
	list-style: url(none) none outside;
	color: #333;
}
.collection ul.no li {
	background-image: url(../assets/cross.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
	list-style: url(none) none outside;
	padding-left: 30px;
}
.collection ul.yes {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #333;
}
.collection li {
	background-image: url(../assets/tick.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
	padding-left: 30px;
	margin-bottom: 15px;
	line-height: 1.7em;
	list-style: url(none) none outside;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	text-decoration: underline;
	background: #78A735 url(../assets/tabhover_bg.gif) repeat-x top;
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	background-color: #FFF;
	background-image: url(../assets/tabselected_bg.gif);
	color: #6bb12f;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	background-repeat: repeat-x;
	background-position: left top;
	border-top-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-left-style: solid;
	border-top-color: #e9e9e9;
	border-left-color: #e9e9e9;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: #777;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	background-color: #FFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #e9e9e9;
	border-right-color: #e9e9e9;
	border-bottom-color: #e9e9e9;
	border-left-color: #e9e9e9;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	overflow: auto;
	padding: 30px 10px 10px 20px;
	width: 690px;
}
.TabbedPanelsContent h3 {
	margin-bottom: 0px;
	color: #006531;
	font-size: 1.3em;
	line-height: 2em;
}
.TabbedPanelsContent h5 {
	margin-bottom: 0px;
	color: #666;
	font-size: 1.6em;
	line-height: 2em;
	font-family: Helvetica, Arial, verdana, sans-serif;
	font-weight: bold;
	padding: 0px;
}
.TabbedPanelsContent h2 {
	margin-bottom: 0px;
	color: #006531;
	margin-top: 0px;
}
.TabbedPanelsContent.TabbedPanelsContentVisible h2 {
	margin-bottom: 5px;
	color: #006531;
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
	font-weight: normal;
}
.hrcs {
	background-color: #F6F5F0;
	padding: 20px;
	float: left;
	width: 650px;
	margin-bottom: 30px;
}
.hrcs ul {
	float: left;
	list-style-type: none;
	margin-top: 10px;
}
.hrcs h3 {
	padding-left: 0px;
	height: 30px;
	line-height: 30px;
	color: #006531;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 3px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #006531;
	margin-bottom: 10px;
	font-size: 1.4em;
}
.hrcs ul li {
	display: block;
	float: left;
	width: 160px;
	padding-left: 35px;
	font-size: 0.9em;
	line-height: 1.4em;
	color: #777;
	font-weight: bold;
	background-image: url(../assets/tick.gif);
	background-repeat: no-repeat;
	background-position: left 50%;
	vertical-align: middle;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-top: 0px;
	margin-bottom: 10px;
	padding-right: 10px;
}
.normal {
	font-weight: normal;
}
.hrcs ul li.cross {
	background-image: url(../assets/cross.gif);
}
.collection h3#food {
	background-color: #54656f;
	display: block;
	height: 35px;
	font-size: 1.4em;
	line-height: 35px;
	color: #FFF;
	padding-left: 50px;
	background-image: url(../assets/recycle_icon.png);
	background-repeat: no-repeat;
	background-position: left 50%;
}
.collection p {
	text-align: center;
}
.collection h3#glass {
	background-color: #5bc4b6;
	display: block;
	height: 35px;
	font-size: 1.4em;
	line-height: 35px;
	color: #FFF;
	padding-left: 50px;
	background-image: url(../assets/recycle_icon.png);
	background-repeat: no-repeat;
	background-position: left 50%;
}
.collection h3#carton {
	background-color: #F78F1E;
	display: block;
	height: 35px;
	font-size: 1.4em;
	line-height: 35px;
	color: #FFF;
	padding-left: 50px;
	background-image: url(../assets/recycle_icon.png);
	background-repeat: no-repeat;
	background-position: left 50%;
}
.collection h3#sack {
	display: block;
	height: 35px;
	font-size: 1.4em;
	line-height: 35px;
	color: #FFF;
	padding-left: 50px;
	background: #8DC63F url(../assets/recycle_icon.png) no-repeat left 50%;
}
.collection h3#sack2 {
	display: block;
	height: 35px;
	font-size: 1.4em;
	line-height: 35px;
	color: #FFF;
	padding-left: 50px;
	background: #009 url(../assets/recycle_icon.png) no-repeat left 50%;
}
.collection h3#textiles {
	display: block;
	height: 35px;
	font-size: 1.4em;
	line-height: 35px;
	color: #FFF;
	padding-left: 50px;
	background: #F78F1E url(../assets/recycle_icon.png) no-repeat left 50%;
}
.collection h3#plasticmilk {
	display: block;
	height: 35px;
	font-size: 1.4em;
	line-height: 35px;
	color: #FFF;
	padding-left: 50px;
	background: #EE3F22 url(../assets/recycle_icon.png) no-repeat left 50%;
}

