/*begin stylings on both the nav id and embedded ul elements*/
#nav , nav ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	float: left;
}

/*nav li and nav li ul are 127 px nav a is 125px to accomodate border*/
/*nav li have width specified for Opera*/
#nav li {
	float: left;
	width: 127px;
}


/*regular pseudo box stylings*/
#nav a:link , #nav a:visited{
	color: #FFF;
	text-decoration: none;
	display: block;
	width: 125px;
	background-color: #0C6BA3;
	text-align: center;
	font-size: 12px;
	font-family: Verdana, Geneva, sans-serif;
	border: 1px solid #CCC;
	height: 30px;
}
#nav a:hover {
	background-color: #A1CD43;
}
#home #nav_home a, #trip_schedule #nav_trip_schedule a, #about_us #nav_about_us a, #gallery #nav_gallery a,#useful_info #nav_useful_info a, #faq #subnav_faq a, #cloth_equip #subnav_cloth_equip a, #watercolour #subnav_watercolour a, #sample_menu #subnav_sample_menu a, #contact #nav_contact a {
	background-color: #A1CD43;
}

#nav a:active{
	background-color: #A1CD43;
}


/*Below are stylings to help cure the parent/child stylings that occur when the useful info page is active*/
#useful_info #subnav_faq a:link,#useful_info #subnav_cloth_equip a:link,#useful_info #subnav_watercolour a:link,#useful_info #subnav_sample_menu a:link,#useful_info #subnav_faq a:visited,#useful_info #subnav_cloth_equip a:visited,#useful_info #subnav_watercolour a:visited,#useful_info #subnav_sample_menu a:visited  {
	background-color: #0C6BA3;
}
#useful_info #subnav_faq a:hover,#useful_info #subnav_cloth_equip a:hover, #useful_info #subnav_watercolour a:hover,#useful_info #subnav_sample_menu a:hover {
	background-color: #A1CD43;
}


/*Below are stylings to help vertically centre the one-line navigation links*/
#nav_home a:link, #nav_about_us a:link, #nav_gallery a:link, #nav_useful_info a:link, #nav_home a:visited, #nav_about_us a:visited, #nav_gallery a:visited, #nav_useful_info a:visited {
	padding-top: 7px;
	height: 23px;
}

/*Below are height stylings for drop down menu links*/


#nav ul a:link , #nav ul a:visited{
	height: auto;
	padding-top: 2px;
	padding-bottom: 2px;
	
}
 
 
 

/*begin positioning of drop down menu elements (off screen)*/
#nav li ul{
	width: 127px;
	position: absolute;
	left: -999px;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
/*allows object to be viewed (brought back to screen) when hovered*/
#nav li: hover ul {
	left: auto;
}
#nav li:hover ul, #nav li.sfhover ul {
	left: auto;
}
/*allows IE7 hovered object to clear when not hovered over*/
#nav li:hover, #nav li.hover {
    position: static;
}
/*provides stylings to content links*/
#content a:link, #content a:visited {
	font-family: Verdana, Geneva, sans-serif;
	color: #000;
	text-decoration: none;
}
#content a:hover, #content a:active {
	text-decoration: underline;
}

#footer a:link, #footer a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8px;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
}
#footer a:hover, #footer a:visited {
	text-decoration: underline;
}

/* hovering effect for menu table*/

#table_hold tr:hover {
	color: #000;
	background-color: #A1CD43;
}
