/* ------------------------------- Formatting ----------------------------- */

body {
	margin: 0;
	padding: 0;
	}	
	
a img {
	border: 0px none;
	display: block;			/* removes extra space underneath caused by default text-alignment */
	}
	
p {
	font-style: normal;
	color: #000;
	font-size: 12px;
	margin-top: 2px;
	margin-left: 6px;
	margin-right: 6px;
	margin-bottom: 10px;
	font-family: verdana, arial, helvetica, sans-serif;
	}
	
li {
	font-style: normal;
	color: #000;
	font-size: 12px;
	font-family: verdana, arial, helvetica, sans-serif;
	}
	
h3 {
	font: bold 14px Verdana, sans-serif;
	display: block;
	background-color: #464469;
	text-align: center;
	color: #fff;
	}

h4 {
	font: bold 16px Verdana, sans-serif;
	text-align: center;
	color: #000;
	border-bottom: 1px solid #5C6F90;
	}

#footer {
	clear: both;
	border-top: 1px solid #464469;
	border-bottom: 1px solid #464469;
	background-color: #D6D6D6;
	color: #000;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 14px;
	text-align: center;
	}

/* ------------------------------- Layout for Navigation ----------------------------- */

#left {
	position: absolute;
	padding: 0px;
	top: 203px;
	width: 111px;
	color: #000;
	}
	
/* -------------------------------- Navigation ------------------------------ */

ul#mainnav {
	list-style: none;
	margin: 0px;
	padding: 0px;
	background-color: #464469;
	}
		
ul#mainnav li {
	display: block;
	border-top: 1px solid #fff;
	}

ul#mainnav li a {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 6px 6%;
	background-color: #464469;
	font: bold 11px verdana, sans-serif;
	color: #fff;
	text-decoration: none;
    width: 100%;
	}
/*------ List tips courtesy of A List Apart: http://www.alistapart.com/stories/taminglists/
There is one workaround in this part of the style sheet. To make the links active for the full width of the DIV, 
I made them display: block;. This works for everything but IE/Windows. If you give the block an explicit width of 100%,
then IE/Windows plays along. But doing this creates problems with IE5/Mac and Netscape/Mozilla. So I used the child
selector“>” to redefine the width to auto. Since IE/Windows doesn’t understand child selectors, it ignores the rule.
IE5/Mac, Opera and Netscape/Mozilla follow the rule, and everyone is happy. ------*/

html>body #mainnav li a {
	width: auto;
	}

ul#mainnav li a:hover {
	background-color: #777049;
	color: #464469;
	}

/* -------------------------------- www.TheWebShop.co.nz ------------------------------ */

.thewebshop {
	font: normal 10px verdana, arial, helvetica, sans-serif;
	color: #666;
	text-align: center;
	padding: 10px;
}

.thewebshop a {
	font: 10px verdana, arial, helvetica, sans-serif;
	color: #ff6600;
	text-decoration: none;
	}
	
.thewebshop a:hover {
	color: #1936AE;
	}