
     
.table {
    display: table;
   margin: 0 auto;
}


/* Menu */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	####	Header Menu #####
	#######################

	Horizontal Drop-Down Menu based off :
	http://www.tanfa.co.uk/css/examples/menu/tutorial-h.asp*/

#navcontainer {
	display:block;
	clear:both;
	padding:0px;
	z-index:100;
	position:relative;
	height: 75px;
	width: 1100px;
	color: #fff;
	margin: 0 auto;
}

/* Remove List Formattings
~~~~~~~~~~~~~~~~~~~~  */
 ul.menu, li.menu {
	list-style-type: none;
	list-style-image: none;
	margin: 0px;
}

/* Header menu */
#header_menu {position: absolute;}
#header_menu li {line-height: normal;}
ul#header_menu  {
    z-index: 10; 
    clear: both;
}

#nav {
	border: 0 none;
    height: 75px;
    /*width: 1100px;*/
    width:100%;
	position: relative;
	float: left;
}

#nav ul {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	width: auto;
	/*
	(Disappearing List-Background)
	http://www.positioniseverything.net/explorer/ie-listbug.html
	*/
	position: relative; /* Fix the Stupid IE6 Bug */
}

/* Root Level Link Formatting */
#nav ul li {
    color: #FFFFFF;
    float: left;
	font-family: 'Lato', sans-serif;    font-weight: 400;
    font-size: 24px;
    
    text-align: center;
}

#nav ul li a {
  color: #ffffff;
  display: block;
  font-family: "Rubik",sans-serif;
  font-size: 15px;
  font-weight: 400;
  height: 44px;
  letter-spacing: 1px;
  outline: medium none;
  padding: 31px 15px 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
}

@media screen and (max-width: 1100px){
	
	
#nav ul li a {
font-size: 15px;
    padding: 28px 12px 7px;
}

}

@media screen and (max-width: 1000px){
	
	
#nav ul li a {
font-size: 13px;
    padding: 34px 12px 1px;
}

}

@media screen and (max-width: 900px){
	
	
#nav ul li a {
font-size: 10px;
    padding: 34px 12px 1px;
}

}



/* Root Level link hover */
#nav ul li a:hover {
    color: #284493;
    background: #fff300;
}

#nav ul li a.menu-current {
    color: #ffffff;
    background: #284493;
}

#nav a.menu-parent {
    color: #ffffff;    
    background: #284493;
}

#nav a.menu-parent:hover {
    color: #ffffff;    
    background: #284493;
}
#nav a.menu-last {

}


/* 2nd Child menu */
#nav .menu li ul {
    border: medium none;
    background:#cc0c19;
    color: #ffffff;
    display: none;
font-family: 'Rubik', sans-serif;
    letter-spacing: 0.02em;
    outline: medium none;
    position: absolute;
    text-decoration: none;
    width: 300px;
    z-index: 9999;
}
#nav .menu li ul li {
  border: medium none;
  font-weight: bold;
  height: 23px;
  padding: 10px 0;
  text-align: left;
  width: 300px;
}
#nav .menu li ul li a {
  border: medium none;
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  height: 18px;
  line-height: 15px;
  padding: 15px 15px 10px;
  margin: 0 10px;
}
#nav .menu li ul .ultop {
    height: 0;
    padding:0;
    margin:0;

}
#nav .menu li ul .ulbot {
  height: 24px;
  margin: 0;
  padding: 0;
}

/* 3 up Child menu  */
#nav .menu li ul li ul {
    margin: -1px 0 0 -1px;
    z-index: 9999;
    
}
#nav .menu li ul li ul .ultop {
    height: 0;
}

/* 2nd Child link hover */

#nav .menu li ul a:hover {
    color: #284493; 
    background: #fff300;
}


#nav .menu li ul a.menu-parent {
    color: #cc0c19;
    background: #4e94bf;
}
#nav .menu li ul a.menu-parent:hover {
    color: #cc0c19;
    background: #4e94bf;
}
#nav .menu li ul a.menu-current {
    color: #ffffff;
    background: #284493;

}

/* Show and hide */
#nav .menu li:hover ul, #nav .menu li a:focus ul, #nav .menu li.subMenu ul {
    display: block;
}
#nav .menu li ul ul {
    display: none;
}
#nav .menu li:hover ul ul, #nav .menu li.subMenu ul ul {
    display: none;
}
#nav .menu li:hover > ul, #nav .menu li li:hover > ul, #nav .menu li.subMenu > ul, #nav .menu li li.subMenu > ul {
    display: block;
    z-index: 1000;
}

/* Positioning the Pop-out Drops */
#nav li {
    position: relative;
}
#nav ul ul ul {
    left: 100%;
    position: absolute;
    top: 1px;
}
#nav li:hover {
    white-space: normal;
    z-index: 10000;
}








 