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

border: 1px #ffffff 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 if you prefer.*/

.housebutton {

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


/* 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: #663300; /*this is where you change the button font color*/

background-color: #e4f7fc;

border-top: 1px #fff solid;

border-left: 1px #fff solid;

border-bottom: 1px #fff solid;

border-right: 1px #fff 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: #000000; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #72e3fe;


}

#nav {
    width:992px;
    height:48px;
    background-color:#ccc;
    background: url("http://www.planeteenfants.com.my/pe/images/header-background.JPG") repeat-x;
    padding:0;
    margin:0;
    text-align:left;
    font-size:1.1em;    
}


 #nav ul {
	float: left;
	list-style: none;
	background: #d6eaff;
	width: 100%;
	background-image: 
url('http://www.planeteenfants.com.my/pe/images/header-background.JPG');
background-repeat: repeat;
		
	display: inline;
	text-transform: none;
}
#nav ul li {
	display: block;
	margin: 0; 
}
#nav ul li a {
	
	float: left;

width: auto;
	margin: 0;
	
	border-top: none;
	border-bottom: none;
	
	background-image: 
url('http://www.planeteenfants.com.my/pe/images/header-background.JPG');
background-repeat: repeat;
	color: #000099;
	font: normal 10px/15px  Arial, Geneva, sans-serif;
	text-transform: uppercase;
	text-decoration: none;	
	
}
#nav ul li a:hover, 
#nav ul li a:active {
	color: #ffffff; 
	background-color: #996699;
	font: bold;
}

/* THIS DEFINES THE SIZE AND STYLE THE FONT AT THE MAIN TITLES IN THR DROP DOWN MENUS*/

#nav li div dl dt{
    font: bold 10px/15px  Arial, Geneva, sans-serif; 
font-size:0.9em;
}

/* THIS DEFINES THE SHAPE OF THE DROP DOWN MENU, THE SIZE AND STYLE*/


#nav li div dl {   
    float:left;  
    line-height: 1.3em;
    margin-top: 0px;
    font-size:1em;
    padding:10px;
    margin:0;
    z-index:100; 
    /*width:150px;*/ /* Use this if you want fixed width DLs */
}

/* THIS DEFINES THE POSITION OF THE LAST COLUMN OF NAV BAR DD12*/

#nav li.sfhover div.dd12, #nav li li.sfhover div.dd12 { 
    right:0px;     
}



/* THIS DEFINES HOW FAR THE DROP DOWN MENU CAN EXTEND DOWNWARDS*/


#nav li div dl dd a{
    width:95%; /* To pad out link */
    height:auto; /*Override height set for top nav*/
    font-weight:normal;
    margin:0; 
    padding:3px 0px 3px 3px; /* Too much left/right padding causes spacing issues in FF3 */ 
}

