/*this stylesheet is for your navigation panel*/

.navlink {
font-weight: bold;
font-family:  Verdana, sans-serif;
line-height: 90%;
margin-top:5px; /*sets the gap between your nav panel links. This needs to be the same value as the margin below*/
}

.navlink a {

font-family:  Verdana, sans-serif;
line-height: 90%;
margin-top:5px; /*sets the gap between your nav panel links. This needs to be the same value as the margin above*/
}

.navlink a:hover {

font-family:  Verdana, sans-serif;
line-height: 90%;
}


/* this part below is for the color on the background, surrounding the buttons. Change the color, and the 
border, if you like. For the border, you can use solid, dashed, or dotted, for different border styles*/


 Font weight can be bold, normal, or italics, you prefer.*/

.navlink {
font-weight: bold;
text-align: left;
margin-bottom:3px;
margin-top: 0px;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/

.navlink a {
padding: 4px;
text-decoration: none;
display: block;
color: #407495; /*this is where you change the button font color*/
}

/*this part is how the links look, once the pointer passes over them. */

.navlink a:hover {
color: #333300; /*-----this is where you change the button font color, when the button is hovered over*/
background-color: #ccc;
}

 
/* this part below is for the color on the background, surrounding the buttons. Change the color, and the 
border, if you like. For the border, you can use solid, dashed, or dotted, for different border styles*/

#navigator {
	background-color: transparent;
	border:  transparent;
	width: auto;
	margin-top: auto;
	margin-left: 5px;
	margin-right: auto;
	padding: 2px;
	text-align: left;
}

/* want more space between your buttons? just increase the margins
from 1px. Font weight can be bold if you prefer.*/

.housebutton {

font-weight: bold;
text-align: left;
margin-bottom: 0px;
margin-top: 0px;
font-size:90%;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/


.housebutton a {

padding: 5px;

text-decoration: none;

display: block;

color: #00008C; /*this is where you change the button font color*/

background-color: transparent;

border-top: none;

border-left: none;

border-bottom: none;

border-right: none;

}

/*this part is how the buttons look, once the pointer passes over them. */



.housebutton a:hover {

color: #333300; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #ccc;

border-top:  none;

border-left: none;

border-bottom:  none;

border-right: none;

}

  
/********************************/
 #nav {margin-top:0; padding-top:0; height:32px }

#navcontainer {
	height: 28px;
	background-color: transparent;
	background-image: url(../image-files/bg_nav_dots.gif);
	background-repeat: repeat-x;
	background-position: 0 0;
}


#nav ul { 
float: left; list-style: none; background: transparent;/* this sets the background color of the nav*/ 
width: 100%; padding: 0; margin: 0 0 0 0px; 
height: auto; display: inline; 
} 

#nav ul li { 
display: inline; margin: 0; padding: 0; 
} 

#nav ul li a {
	display: block;
	float: left;
	width: auto;
	margin: 0;
	padding: 0 8px;/*this is the gap between the text, and the border*/
	padding-left:16px;
	border-top: none;
	border-right: none;/*this gives a white border, change as required*/
	border-left: none; /*this gives a white border, change as required*/
	border-bottom: none;
	color: #000; /* text color*/
	font: bold 11px/30px Arial,sans-serif; /* sets the font type and size*/
	text-decoration: none;}
	
	
	
#nav ul li a:hover, #nav ul li a:active {
	color: #3b73b9;
	background-color: #ccc;
	font: bold;
	text-decoration:underline;
	display:block
} 
