.fixed-nav-bar {
	position: fixed;
	top: 50;
	left: 0;
	right: 0;
	z-index: 9999;
	width: 100%;
	height: 90px;
	background-color: #FFFFFF;
	min-width:960px;
}

/* The element at the top of the page right after the fixed navigation bar
   MUST have sufficient top margin or else it will be covered by the bar */
.content {
  margin-top: 20px;
}

.menu-items ul{
	max-width: 960px;
	position: relative;
	min-width:1200px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
  }

  .menu-items ul li{
    text-align: center;
	padding-right: 2%;
	padding-left: 2%;
	padding-top:2%;
	padding-bottom:9%;
	background-color: #111;
	border-left: thin solid #222;
  }
    .menu-items ul li:hover{
	background-color: #000;
  }

  .menu-items ul li a {
	height:100%;
	width:100%;
	border:none;
	text-align:center;
	padding-right: 2%;
	padding-left: 2%;

  }
  
/* Sub Menus */
  .menu-items li ul {
	position: absolute;
	top: 110;
	left: 0;
	right: 0;
	z-index: 9997;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 14px;
	margin-top: 33px;
	padding-left: 1%;
	display: none;
	background-color: #333;
  }

  .menu-items li:hover ul {
    display: block;
  }

  .menu-items li ul li {
    display: block;
	float:left;
  }
  

/* Example responsive navigation menu  */
.fixed-nav-bar li, .fixed-nav-bar a {
	height: 40px;
	line-height: 18px;
}
.menu {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.menu a, .menu a:visited {
	color: #666666;
}

.menu li.current a {
	color: #963;
}
.menu a:hover, .menu a:target {
color: #e0e0e0;

}
.menu-items {
  display: inline-block;
  height: 100%;
}

.sitename {
  display: inline-block;
  margin-right: 20px;
  margin-left: 10px;
}
a.sitename, a:visited.sitename {
  color: #e0e0e0;
}
.menu-items li {
	display: inline-block;
}

.menu-items a {
	text-decoration: none;
	height: 100%;
	width: 100%;  
	padding-right: 15px;
	padding-left: 10px;
	padding-bottom: 34px;
	padding-top: 39px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
}

.show, .hide {
  display: none;
  padding-left: 15px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center left;
  color: #dde1e2;
}
.show {
  background-image: url(assets/down-arrow-icon.png);
}
.hide {
  background-image: url(assets/up-arrow-icon.png);
}
