/*this stylesheet is for you navigation panel*/

#navigator {
  
}

.housebutton {
line-height: 93%;
}

.housebutton a {
font-size: 93%;
font-family:  Verdana, Arial, sans-serif;
text-decoration: none; 
}

.housebutton a:hover {
font-size: 93%;
font-family: Verdana, Arial, sans-serif;
text-decoration: none; 
}


/* 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: 2px;
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 {
text-align: left;
margin-bottom: 10px;
margin-top: 10px;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/

.housebutton a {
padding: 4px;
text-decoration: none;
display: block;
color: #336699; /*this is where you change the button font color*/
background-color: transparent;
border-top: none;
border-left: none;
border-bottom: none;
border-right: none;
font-weight: bold;  
}


/*this part is how the buttons look, once the pointer passes over them. */

.housebutton a:hover { 

color: #ffffff;  /*-----this is where you change the button font color, when the button is hovered over*/
font: bold; /* sets the font type and size*/ 
background-color: #336699;
border-top:  none;
border-left: none;
border-bottom:  none;
border-right: none;
font-weight: bold;
}


/*Below is the left aligned Horizontal Navigation. */

#nav ul { 
float: left; 
list-style: none; 
background-image: 
url('http://www.okanaganvacationguide.com/images/horizontalnavimg.png');
background-repeat: repeat;
width: 100%; 
padding: 0; margin: 0 0 0 0px; 
height: 30px; 
display: inline; 
text-transform: uppercase;/*delete this entire line if you DONT want uppercase*/
} 


#nav ul li { 
display: inline; 
margin: 0; 
padding: 0; 
} 



#nav ul li a { 
display: block; 
float: left; 
width: auto; 
margin: 2; 
padding: 0 5px;/*this is the gap between the text, and the border*/ 
background: #transparent;
border-top: none; 
border-right: none;
border-left: none;
border-bottom: none; 
color: #ffffff; /* text color*/ 
font: bold 11px/30px Verdana, Arial, sans-serif; /* sets the font type and size*/ 
text-transform: uppercase; /*delete if you dont want uppercase*/ 
text-decoration: none; 
letter-spacing: 1px; 
} 




#nav ul li a:hover, 
#nav ul li a:active { 
color: #336699; 
background-color: transparent; 
font: bold;
} 

/*This is the end of the Horizontal Navigation. */





/*Below is the horizontal left aligned Extra Navigation. */

#extranav ul { 
float: right; 
list-style: none; 
background: #ccccff;/* this sets the background color of the nav, grey by default*/ 
width: 100%; 
padding: 0; 
margin: 5 0 0 0px; 
height: 35px; 
display: inline; 
} 



#extranav ul li { 
display: inline; 
margin: 0; 
padding: 0; 
} 



#extranav ul li a { 
display: block; 
float: right; 
width: auto; 
margin: 0; 
padding: 0 5px;/*this is the gap between the text, and the border*/ 
background: #ccccff;
border-top: none; 
border-right: none;
border-left: none;
border-bottom: none; 
color: #336699; /* text color*/ 
font: bold 11px/30px Verdana, Arial, sans-serif; /* sets the font type and size*/ 
text-decoration: none; 
letter-spacing: 1px; 
} 

#extranav ul li a:hover, 
#extranav ul li a:active { 
color: #ccccff; 
background-color: #ccccff; 
font: bold;
} 

/*This is the end of the Extra Navigation. */







