/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background: #FFFFFF;
	margin: 0px; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
	text-align: center; /* Equivalent to <center> tag for older IE browsers. Remove if you do not want to center page. */
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

h3, h4, h5, a, ul, li, lo, td {
	font-family: Verdana, Arial, sans-serif;
	text-align: left;
	font-size: 12px;
	color: #000000;
}

/* Redefines the p tag */
p {
	font-family: Verdana, Arial, sans-serif;
	text-align: left;
	font-size: 12px;
	color: #000000;
	margin: 17px;
}

h1 {
	font-family: Verdana, Arial, sans-serif;
	font-size: 14px;
	color: #000000;
	font-weight: bold;
	margin-left: 17px;
	margin-bottom: -12px;
	margin-top: 10px;
	text-align: left;
}

h2 {
	font-family: Verdana, Arial, sans-serif;
	text-align: left;
	font-size: 12px;
	color: #000000;
	margin-left: 17px;
	margin-bottom: -17px;
}

ul {
	list-style-type: square
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
}


/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	font-size: 12px;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-decoration: none;
}
a:visited {
	color: #000000;
	text-decoration: none;
}
a:hover {
	font-weight: bold;
	text-decoration: none;
}
a:active {	
	text-decoration: none;
}



/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {	
	border-collapse: collapse;
}

/* Creates the div container for the footer. */

div#container {
	border: 1px solid #000000;
	width: 750px;
	margin-left: auto;
	margin-right: auto;
}

div#nav_pallet {
	width: 730px;
	background-image:url(images/nav_pallet.jpg);
	background-repeat:no-repeat;
	height: 37px;
	margin-right: auto;
	text-align:left;
	padding-left: 20px;
}

div#nav_mulch {
	width: 730px;
	background-image:url(images/nav_mulch.jpg);
	background-repeat:no-repeat;
	height: 37px;
	margin-right: auto;
	text-align:left;
	padding-left: 20px;
}


div#nav_welcome {
	width: 730px;
	background-image:url(images/nav_welcome.jpg);
	background-repeat:no-repeat;
	height: 37px;
	margin-right: auto;
	text-align:left;
	padding-left: 20px;
}


div#footer {
	clear:both;
}

div#copyright {
	color: #000000;
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
}

div#body {
	width: 437px;
	background-image:url(images/body_bg.gif);
	background-repeat: repeat-y;
	height: 429px;
	float:left;
}

div#right_welcome {
	width: 313px;
	background-image:url(images/welcome_right.jpg);
	background-repeat: no-repeat;
	height: 429px;
	float:right;
}

div#right_pallet {
	width: 313px;
	background-image:url(images/pallets_right.jpg);
	background-repeat: no-repeat;
	height: 429px;
	float:right;
}

div#right_mulch {
	width: 313px;
	background-image:url(images/mulch_right.jpg);
	background-repeat: no-repeat;
	height: 429px;
	float:right;
}

/* Removes the bullet from the list. The inline style here keeps the bulleted items tightened up and removes any stray padding.*/

ul#mainnav {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

ul#mainnav li {
	display: inline;
	float: left; 
	margin: 0px;
	padding: 0px;
}

/* Although we have redefined the li style as an inline element, we need to make the actual links block level elements so we can give them widths and have them display properly as "buttons." */
ul#mainnav li a {
	font-size: 12px;
	text-align: center;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
	display: block;
	padding: 11px 0px;
	width: 90px;
}

ul#mainnav li a:hover {
	color: #FFFFFF;
	background: none;
	text-decoration: underline;
}


ul#mainnav li a.active {
	color: #FFFFFF;
	background: none;
	text-decoration: underline;
}