.navbar	{
	height: 40px;
    padding: 0;
	margin: 0;
	position: fixed; /* Ensures that the menu doesn’t affect other elements */
	top: 0;
	border-right: 1px solid #54879d; 
	}
	
.navbar li {
	height: 40px;
	width: 150px;  /* Each menu item is 150px wide */
	float: left;  /* This lines up the menu items horizontally */
	text-align: center;  /* All text is placed in the center of the box */
	list-style: none;  /* Removes the default styling (bullets) for the list */
	font: normal bold 16px Arial, Verdana, Helvetica;  
	padding: 0;
	margin: 0;
	background-color: #BF321D;
	}

.navbar a {							
	padding: 12px 0;  /* Adds a padding on the top and bottom so the text appears centered vertically */
	border-left: 1px solid #54879d; /* Creates a border in a slightly lighter shade of blue than the background. */
	border-right: 1px solid #1f5065; /* Creates a border in a slightly darker shade of blue than the background. */
	text-decoration: none;  /* Removes the default hyperlink styling. */
	color: white; /* Text color is white */
	display: block;
	}

.navbar li:hover, a:hover {
	background-color: #54879d;
	font-size: 16px;
	} 

.navbar li ul {
	display: none;  /* Hides the drop-down menu */
	height: auto;									
	margin: 0; /* Aligns drop-down box underneath the menu item */
	padding: 0; /* Aligns drop-down box underneath the menu item */			
	}				

.navbar li:hover ul {
	display: block; /* Displays the drop-down box when the menu item is hovered over */
	}

.navbar li ul li {
	background-color: #54879d;
	} 

.navbar li ul li a {
	border-left: 1px solid #1f5065; 
	border-right: 1px solid #1f5065; 
	border-top: 1px solid #74a3b7; 
	border-bottom: 1px solid #1f5065; 
	}
				
.navbar li ul li a:hover {
        background-color: #366b82;
}

/* phone menu */

#phonenav {
    width:150px; 
}

#phonenav ul {
    margin:0px; padding:0px; 
	}

#phonenav > ul > li:hover a {
	background: #54879d; /*  submenu & Hover on main */
	}

#phonenav ul ul li:hover > a {
  	background: #366b82;  /* submenu Hover*/
  	color: #ffffff;
}

#phonenav li {
	height: 40px;
	list-style: none;  /* Removes the default styling (bullets) for the list */
	font: normal bold 16px Arial, Verdana, Helvetica;  
	padding: 0;
	margin: 0;
	background-color: #BF321D;
	list-style: none;
} 

#phonenav a {
	color: #fff;
 	cursor: pointer;
 	display:block;
 	height:40px;
 	line-height: 40px;
 	text-indent: 10px;
 	text-decoration:none;
 	width:100%;
}

#phonenav a:hover{
	background-color: #54879d;
}
 
#phonenav li:hover {
 	background: #366b82;
 	position: relative;
}
 
ul.top-level { 
    background: #BF321D;
}

ul.top-level li {
 	border-bottom: #fff solid;
 	border-top: #fff solid;
 	border-width: 1px;
}

ul.sub-level {
    display: none;
	background: #BF321D;
}
 
li:hover .sub-level {
    background: #999;
    border: #fff solid;
    border-width: 1px;
    display: block;
    position: absolute;
    left: 150px;
    top: 5px;
}
 
ul.sub-level li {
    border: none;
    float:left;
    width:150px;
    border-bottom: #fff solid;
    border-top: #fff solid;
    border-width: 1px;
    background-color: #366b82;
}

/* Mobile Layout: 480px and below. */	

#navigation { display: none }
	

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

#navigation { display: block }
#phonenav { display: none }

}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
  
}
/* END NAVIGATION */
