/*This stylesheet is created by Adam Woods 2008. Notice here the nature of this comment, it takes the form of a Java code multiline comment as this stylesheet uses CSS scripting language,and so must adhere to the associated rules */

/* #######################========Extended element in inherited from base================########################### */
.secNav {
	height: 400px;
}

/* ####################################=====table formatting unique elements================########################### */
/* note the order, border width then border style then border colour (for firfox compatibility) */
table#links
{
	width: 100%;
}

/* applying borders, colours to tr and td only looks groovy.... */
table#links tr, td
{
	border: 1px;
	border-style: solid;
	border-color: #000000;
}


#links tr#one
{
	background-color: #b5bcde;
}

#links tr#two
{
	background-color: #ebecf6;
}