/* MJK LEATHERS */

/* VERTICAL NAVIGATION */

#navigator {

}

.housebutton {
}

.housebutton a {
font-size: 120%;
}

.housebutton a:hover {
font-size: 120%;
}


/* 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, dotted, or none for different border styles*/

#navigator {

background-color: #fff;
border: 0px #fff solid;
width: 120px;
margin-top: auto;
margin-left: auto;
margin-right: auto;
padding: 5px;
text-align: center;
}

/* want more space between your buttons? just increase the margins
from 1px. Font weight can be bold or normal which you prefer.*/

.housebutton {

font-weight: bold;
text-align: center;
text-align: left;
margin-bottom: 1px;
margin-top: 1px;
}


/* this part is for the colors of your buttons "at rest" */

.housebutton a {

padding: 4px;
text-decoration: underline;
display: block;
color: #003399; /* button in normal state */
background-color: #fff;
border-top: 0px #969696 solid;
border-left: 0px #969696 solid;
border-bottom: 0px #696969 solid;
border-right: 0px #696969 solid;
}

/*this part is how the buttons look, once the pointer passes over them */

.housebutton a:hover {

color: #fff; /* button upon mouse over event, */
text-decoration: none;
background-color: #003399; 
border-top: 0px #696969 solid;
border-left: 0px #696969 solid;
border-bottom: 0px #969696 solid;
border-right: 0px #969696 solid;

}

/* ##################################################################################################### */
/* HORIZONTAL NAVIGATION */
#nav ul {
 float: left; 
 list-style: none; 
 /*background-image:url(../image-files/header-tile.gif) left top repeat-x;*/
 width: 100%; 
 padding: 0; 
 margin: 0 0 0 0px; 
 height: 30px; 
 display: inline; 
 text-transform: uppercase;  
 } 
 
 #nav ul li {
  display: inline; 
  margin: 0; padding: 0; 
  } 
  
  #nav ul li a { 
  display: block; 
  background:url(../image-files/divider.png) no-repeat left 3px;
  float: left; 
  width: auto; 
  margin: 0; 
  padding: 0 15px;   /*this is the gap between the text, and the border*/ 
  border-top: none; 
  border-right: 0px solid #fff;   
  border-left: 0px solid #fff; 
  border-bottom: none; 
  color: #fff;  
  font: bold 10px/30px Arial, Geneva, sans-serif;  
  text-transform: uppercase; 
  text-decoration: none; 
  letter-spacing: 1px; 
  } 
  
  #nav ul li a:hover, 
  
  #nav ul li a:active {
   color: #fff; 
   /* background-color: #003399;  */
   font: bold; 
   text-decoration:underline;
   } 

/* end of horizontal navigation */