@charset "UTF-8";

/* @group Layout Sytles */

#printMaterial {
	text-align: center;
}

body  {
	background: #38580b;
	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: #000000;
	font: 100% "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
}
/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.thrColElsHdr #container { 
	width: inherit;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left;
	margin: 10px 10px 0;
} 
.thrColElsHdr #header { 
	background: #88c43f url(Images/MastheadBackgound.png);
	padding: 0;
} 
.thrColElsHdr #header h1 {
	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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColElsHdr #sidebar1 p" rule.
*/
.thrColElsHdr #sidebar1 {
	float: left; 
	width: 188px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0 15px 5px;
	height: 545px;
	background-image: url(Images/SideBar-Backroung.png);
}
.thrColElsHdr #sidebar2 {
	float: right;
	width: 191	px; /* top and bottom padding create visual space within this div */
	height: 600px;
	padding: 0px;
	margin: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
.thrColElsHdr #sidebar1 h3, .thrColElsHdr #sidebar1 p, .thrColElsHdr #sidebar2 p, .thrColElsHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColElsHdr #mainContent {
 	margin: 0 12em 0 13em;
	padding: 10px;
} 
.thrColElsHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align: center;
	font-size: .85em;
	color: #3e3e3e;
} 
.thrColElsHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

/* Miscellaneous classes for reuse */
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}

img.floatRight {
	float: right;
	margin-left: 13px;
}

img.floatleft {
	float: left;
	margin-left: 13px;
}

#Frameheader {
	text-align: left;
	background-image: url(Images/MastheadBackgound.png);
}
/* @end */

/* @group Font Syltes */

#mainContent p {
	line-height: 2em;
	color: #4b4b4b;
	font-size: .9em;
	text-align: justify;
}

#mainContent ul li {
	list-style-image: url(Images/TargetBullet.png);
	font-weight: bold;
	font-size: .9em;
	color: #4b4b4b;
}

u {
	text-decoration: underline;
}

H1 {
	font-weight: bold;
	font-size: 1.4em;
	color: #049545;
	background-color: #cfee29;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
	margin-top: 49px;
	margin-bottom: 25px;
}

#mainContent h2 {
	color: #89c43f;
	font-size: 1.1em;
	padding: 0 0 4px;
	margin: 0;
}

#mainContent h3 {
	font-size: 2em;
	text-align: center;
	color: #f7831e;
}



/* @end */

/* @group Navigation */

/* SpryMenuBarVertical.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
ul.MenuBarVertical
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: 11em;
	font-weight: bold;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are same fixed width as parent */
ul.MenuBarVertical li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: relative;
	text-align: left;
	cursor: pointer;
	width: 11em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarVertical ul
{
	margin: -5% 0 0 95%;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	position: absolute;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	left: -1000em;
	top: 0;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarVertical ul.MenuBarSubmenuVisible
{
	left: 0;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarVertical ul li
{
	width: 10em;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Outermost menu container has borders on all sides */
ul.MenuBarVertical
{
}
/* Submenu containers have borders on all sides */
ul.MenuBarVertical ul
{
}
/* Menu items are a light green block with padding and no text decoration */
ul.MenuBarVertical a
{
	display: block;
	cursor: pointer;
	background-color: #cfee29;
	padding: 0.5em 0.75em;
	color: #333;
	text-decoration: none;
	border-top: 2px solid #9cff5f;
	border-right: 2px solid #448717;
	border-bottom: 2px solid #71a719;
	border-left: 2px solid #b1ff9f;
	margin-bottom: 10px;
}
/* Menu items that have mouse over or focus have a dark green background and white text */
ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
{
	background-color: #24ce1c;
	color: #FFF;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
{
	background-color: #70ac16;
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenu
{
	background-image: url(SpryAssets/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarVertical a.MenuBarItemSubmenuHover
{
	background-image: url(SpryAssets/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarVertical iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarVertical li.MenuBarItemIE
	{
		display: inline;
		float: left;
		background: #FFF;
	}
}

/* @end */

/* @group Tables */

table.ContactUsTable {
	width: 100%;
	border-collapse: collapse;
}

table.productTable {
	width: 100%;
	border-collapse: collapse;
}

img.PictureLeft {
	float: left;
	padding-right: 13px;
	padding-left: 27px;
}
tbody.productTable {
	text-align: left;
	color: #004600;
	vertical-align: middle;
	font-weight: bold;
}
table.productTable th {
	background-color: #25a043;
	font-size: 1em;
	color: #b2fa3c;
	width: 30%;
	height: 33px;
	text-align: center;
}
table.productTable td {
	padding: 7px;
	border-top: 2px solid #7ece5d;
	border-bottom-width: 8px;
	border-bottom-color: #ddd;
	text-align: center;
}

#productTable tbody tr td a {
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	color: #4bb51a;
	font-size: 1.1em;
}


#productTable tbody tr td a:hover {
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	color: #f96e19;
	font-size: 1.1em;
}

table#prodoctNavigation {
	background-color: #f98e1b;
	text-align: center;
	font-size: .75em;
	font-weight: bold;
	vertical-align: middle;
	height: 135px;
	width: 100%;
}

#prodoctNavigation tbody tr td {
	padding: 5px;
	border: 1px solid #29841b;
}

#prodoctNavigation tbody tr td a {
	text-decoration: none;
	color: #fcee23;
}
#prodoctNavigation tbody tr td a:hover {
	text-decoration: none;
	color: #f80d16;
}
/* @end */

/* @group Contact Form */

#ContactUs table.ContactUsTable tbody tr td label {
	color: #449a19;
	font-size: .85em;
	line-height: 2em;
}

table.ContactUsTable td{
	padding: 10px 5px 0;
}

input {
	background-color: #caffae;
	border-left-style: none;
	border-style: none;
	height: 25px;
}

input#name, input#address, input#zipcode, input#phoneNumber, input#faxNumber, input#email {
	width: 100%;
}

textarea#comments {
	width: 100%;
}

input#Submit {
	width: 112px;
	font-weight: bold;
	color: #cef3bd;
	text-align: center;
	font-size: .85em;
	background-color: #66b029;
}



/* @end */

/* @group Widgets */

#map {
	width: 328px;
	float: left;
}

div#wheather {
	width: 364px;
	float: left;
	padding-right: 10px;
}



/* @end */
