/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
}

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

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


/* 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: #fff;

border: none;

width: auto;

margin-top: auto;

margin-left: auto;

margin-right: auto;

padding: 0px;

text-align: center;


}

/* 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: 5px;
margin-top: 5px;
}


/* this part is for the colors of your buttons "at rest" so to speak. Notice the
top/left, and the bottom/right are colored in pairs? If you change the colors, you will need to do the same, to
maintain the illusion of 3D buttons. Make one set of sides a slightly darker shade than the other pair.
This will give the button a 3D look*/

.housebutton a {

padding: 4px;

text-decoration: none;

display: block;

color: #000000; /*this is where you change the button font color*/

background-color: #cccccc;

border-top: 1px #999999 solid;

border-left: 1px #999999 solid;

border-bottom: 1px #666666 solid;

border-right: 1px #666666 solid;

}

/*this part is how the buttons look, once the pointer passes over them. Same thing as above, but this time
the top/left colors should SWAP with the bottom/right, to give the correct effect.
Also the background color should go a shade darker, to make it seem as if it were now below the 
level of the page, and is not getting any light on it*/

.housebutton a:hover {

color: #ffffff; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #333333;

border-top: 1px #000 solid;

border-left: 1px #000 solid;

border-bottom: 1px #000 solid;

border-right: 1px #000 solid;

}


/* this is for the horizontal nav*/


#center-nav {
  display:table;
  padding:0; 
  margin:0 auto; 
  list-style-type:none;
  white-space:nowrap;
  text-align:center;

}

#center-nav li {
  display:table-cell;
  }
* html #center-nav li {
  float:left;
  }
#center-nav a {
  width: auto;
  display:block;
  padding:2px 10px;
  color:#000000; 
  height: 12px; 
  border-left:none;
  border-right:none;
  border-top:none;
  border-bottom: none;
  text-decoration:none;
  font: bold 112% Arial, Verdana, sans-serif;
  }
* html #center-nav a {
  float:left;
  }
#center-nav a:hover {
  color:#fff; 
  font-weight: bold;
background: #333333;
  }
  .container {clear:both; text-decoration:none;}
* html .container {display:inline-block;}
 



/* Begining of Dropdown code */
#topnav {
background: #3D3E3F;
width: 100%;
}

ul#dropdown {
margin: 0;
}
ul#dropdown,ul#dropdown ul{
	margin:0;list-style:none;font-weight: bold;}
ul#dropdown,ul#dropdown .submenu{
	background-color:#3D3E3F;border-width:1px;border-style:solid;border-color:#0055A5 #3D3E3F #2B2B2C #3D3E3F;}
ul#dropdown .submenu{
	display:none;position:absolute;left:0;top:97%;-moz-box-shadow:3.5px 3.5px 3px #333;-webkit-box-shadow:3.5px 3.5px 3px #333;box-shadow:3.5px 3.5px 3px #333;float:left;background-color:#0055A5;padding:0px;}
ul#dropdown li:hover>*{
	display:block;}
ul#dropdown li:hover{
	position:relative;}
ul#dropdown ul .submenu{
	position:absolute;left:100%;top:-1px;}
ul#dropdown{
	display:block;font-size:0;float:left;}

ul#dropdown .column{
	float:left;}
ul#dropdown li{
	display:block;white-space:nowrap;font-size:0;float:left;margin:5px 0 0;}
ul#dropdown > li, ul#dropdown li{
	margin:0; z-index:1;position:relative;}
ul#dropdown ul>li{
	margin:5px 0 0;}
ul#dropdown a:active, ul#dropdown a:focus{
	outline-style:none;}
ul#dropdown a{
	display:block;vertical-align:middle;text-align:left;text-decoration:none;font-size:13px;color:#FFFFFF;text-shadow:#1E4460 0px -1px 1px;cursor:pointer;padding:10px;background-color:#3D3E3F; text-transform:uppercase;}
ul#dropdown ul a {
padding: 5px;
}
ul#dropdown ul li{
	float:none;margin:5px 0 0; font-size: 14px;}
ul#dropdown ul a{
	text-align:left;padding:5px 7px;background-color:#0055A5; font-size:13px;color:#FFFFFF;text-decoration:none;}
ul#dropdown li:hover>a{
	background-color:#0055A5;font-size:13px;color:#FFFFFF;text-decoration:none;}

ul#dropdown span{
	display:block;overflow:visible;background-position:right center;background-repeat:no-repeat;padding-right:0px;}
ul#dropdown ul span{
	}
ul#dropdown ul li:hover>a{
	font-size:13px;color:#FFFFFF;text-decoration:underline;}
ul#dropdown li.topmenu>a{
	height:13px;line-height:13px;}
ul#dropdown li.topmenu:hover>a{
	line-height:13px;}

