@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/ 
*/

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

#nav {
	width: 100%;
	display: block;
	clear: both;
	margin-bottom: 8px;
	border-radius: 10px;
	/* [disabled]margin-top: 8px; */
}
#menu {
	display: none;
	clear: both;
	margin-left: 0;
}


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

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

#nav {
	display: none;
	margin-left: 0.7633%;
	clear: none;
}
#menu {
	display: block !important;
	width: 100%;
	clear: none;
}

}

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

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

#nav {
	width: 100%;
	display: none;
	clear: both;
	margin-left: 0;
}
#menu {
	display: block !important;
	clear: none;
}

}
