@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width: 100%;
}
/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}
.fluidList {
	list-style: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
}
/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 86.45%;
	padding-left: 2.275%;
	padding-right: 2.275%;
	clear: none;
	float: none;
}
.dna-nav {
	display: none;
}
.zeroMargin_mobile {
	margin-left: 0;
}
.hide_mobile {
	display: none;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
	clear: none;
	float: none;
	margin-left: auto;
}
.dna-nav {
	display: none;
}
.zeroMargin_tablet {
	margin-left: 0;
}
.hide_tablet {
	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) {
.gridContainer {
	width: 88.5%;
	max-width: 1232px;
	padding-left: 0.75%;
	padding-right: 0.75%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
.dna-nav {
	max-width: 1200px;
	position: relative;
	margin: 0 auto 0 auto;
	padding: 0 0 0 0;
	display: block;
	z-index: 300;
}
.dna-nav ul {
	list-style: none;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
.dna-nav ul::after {
	content: '';
	display: block;
	clear: both;
}
.dna-nav ul li:hover > ul {
	display: block;
}
.dna-nav ul li:hover {
	background-color: rgba(0,0,0,0.2);
}
.dna-nav ul li a {
	font-family: "proxima-nova", sans-serif;
	font-style: normal;
	font-size: 14px;
	text-align: left;
	font-weight: 400;
	text-decoration: none;
	color: #ffffff;
	display: inline-block;
	padding: 10px 15px;
	width: 200px;
}
.dna-nav ul li a:hover {
	background-color: rgba(0,0,0,0.1);
}
.dna-nav ul ul {
	display: none;
	position: absolute;
	top: 100%;
	background-color: rgba(255,255,255,1.0);
}
.dna-nav ul li ul {
	background-color: rgba(255,255,255,1.0);
	opacity: 1.0;
	border-left: 1px solid #999999;
	border-bottom: 1px solid #999999;
	border-right: 1px solid #999999;
}
.dna-nav ul li ul {
	font-family: "proxima-nova", sans-serif;
	font-style: normal;
	font-size: 13px;
	text-align: left;
	font-weight: 400;
	text-decoration: none;
	color: #444444;
}
.dna-nav ul li ul a:hover {
	background-color: rgba(204,204,204,0.3);
}
.dna-nav ul li ul li a {
	font-family: "proxima-nova", sans-serif;
	font-style: normal;
	font-size: 13px;
	text-align: left;
	font-weight: 400;
	text-decoration: none;
	color: #444444;
	padding: 8px 15px;
}
.dna-nav ul li ul p {
	font-family: "proxima-nova", sans-serif;
	font-style: normal;
	font-size: 11px;
	text-align: left;
	font-weight: 400;
	line-height: 0.7em;
	text-decoration: none;
	color: #888888;
	padding: 5px 15px 0px 15px;
}
.dna-nav ul ul li {
	position: relative;
}
.dna-nav ul ul li a:hover {
	position: relative;
	background-color: rgba(204,204,204,0.3);
}
.dna-nav ul ul ul {
	left: 100%;
	top: 0;
	background-color: rgba(240,240,240,1.0);
	border-left: none;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	border-right: 1px solid #ffffff;
	border-left: 1px solid #ffffff;
}
/*top level*/
.dna-nav > ul {
	padding-left: 0;
}
.dna-nav > ul > li {
	float: left;
}
.dna-nav > ul > li > a {
	padding: 20px 15px 20px 15px;
	width: auto;
}
.zeroMargin_desktop {
	margin-left: 0;
}
.hide_desktop {
	display: none;
}
}
