﻿*{
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html { overflow-y: scroll; }
body {
  font-family: Helvetica, 'Trebuchet MS', Tahoma, sans-serif;
  font-size: 90%;
  line-height: 1;
  color: #414141;
  background: #fafafa;
}

br { display: block; line-height: 1.6em; } 

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
ol, ul { list-style: none; }

blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }
strong, b { font-weight: bold; }
em, i { font-style: italic; }

table { border-collapse: collapse; border-spacing: 0; }
img { border: 0; max-width: 100%; height: auto; width: 100%; }


/** page structure **/
nav {
  display: block;
  width: 100%;
  height: 70px;
  background: #001c4c;
}

.wrapper { 
  display: block;
  margin: 0 auto;
  width: 800px;
}

#menu {
  display: block;
  position: relative;
  z-index: 99;
}

#menu li {
  display: block;
  float: left;
  
}
#menu li a {
  display: block;
  position: relative;
  float: left;
  padding: 0 35px;
  font-size: 1.5em;
  line-height: 70px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}

#menu li a:hover, #menu li a.active {
  background: #fff;
  color: #2c343b;
}

#submenu {
  display: none;
  position: relative;
  overflow:hidden;
  top: 0px;
  width: 800px;
  background: #fff;
  z-index: 100;
  -webkit-box-shadow: 0 2px 7px rgba(0,0,0,0.45);
  -moz-box-shadow: 0 2px 7px rgba(0,0,0,0.45);
  box-shadow: 0 2px 7px rgba(0,0,0,0.45);
}


#submenu ul {
	float:left;
}
#submenu ul li {
  float: none;
  display: block;
  width: 160px;
}
#submenu ul li a {
  display: block;
  float: none;
  color: #001c4c;
  font-size: 1.35em;
  line-height: 50px;
  padding: 0 15px;
  text-decoration: none;
}

#submenu ul a:hover {
  background: #001c4c;
  color: #fff;
}

#submenu ul.expanded {
  width: 800px;
}

#submenu ul.expanded li { margin-right: 10px; }



/** clearfix **/
.cf:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.cf { display: inline-block; }
 
html[xm].cf { display: block; }
* html.cf { height: 1%; }
	</style>
</head>