/*
	Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	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/
*/

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

#Navigation-container {
	position: fixed;
	border-bottom: rgba(25, 28, 35, 0.7);
	bottom:0px;
	min-height:50px;
	width:100%;
	background-color: rgba(25, 28, 35, 0.7);
	text-align:center;
	font-family: 'ExpressLightSSiLight', Arial, Helvetica, sans-serif;
	font-size:12px;
	z-index:100;
	color:white;
}

#nav-list ul {
	top:0;
	margin:0;
}
#nav-list ul.css-tabs li { 
	float:left;	
	list-style-type:none;
	position:relative;
}
#nav-list ul.css-tabs a {
	position:relative;
	text-align:center;
	font-size:17px;
	letter-spacing:1.5px;
	font-family: 'ExpressLightSSiLight', Arial, Helvetica, sans-serif;
	display:block;
	color: white;
	cursor:default;
	font-size:11px;
	padding:10px 5px 8px 5px;
	border-right:solid 1px rgba(255,255,255,0.5);
}
#nav-list ul.css-tabs a:hover {
	color: #3fc6ff;
}
#nav-list ul.css-tabs a.current {
	color:#27a9e1;
}

#nav-social {
	clear: none;
	float: left;
	margin-left: 3%;
	width: 33%;
	height:100%;
	display: block;
	text-align:left;
	font-size:12px;
	padding: 8px 0 8px 0;
	border-left:solid 1px rgba(255,255,255,0.5);
}
#nav-social-cont {
	margin-left:20px;
	float:left;
}
#nav-social ul{
	margin:0;
	padding:0;
}
#nav-social ul li{
	display:inline;
	list-style-type:none;
}
#nav-contact {
	clear: none;
	float: left;
	margin-left: 0%;
	width: 60%;
	display: block;
	text-align:left;
	padding: 8px 0 8px 8px;
}
#nav-contact-cont {
	padding-right:10px;
	float:right;
	display: inline-block;
}
#nav-menu {
	clear: none;
	float: left;
	left:0px;
	padding-left:0;
	margin-left: 0%;
	width: 100%;
	display: block;
	text-align:center;
	border-bottom:solid 1px rgba(255,255,255,0.5);
}

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

@media only screen and (min-width: 481px) {
#Navigation-container {
	position: fixed;
	border-bottom: rgba(25, 28, 35, 0.7);
	bottom:0px;
	min-height:50px;
	width:100%;
	background-color: rgba(25, 28, 35, 0.7);
	text-align:center;
	font-family: 'ExpressLightSSiLight', Arial, Helvetica, sans-serif;
	z-index:100;
	color:white;
}
#nav-list ul.css-tabs a {
	font-size:15px;
	padding:10px 15px 10px 15px;
}
#nav-social {
	clear: none;
	float: left;
	margin-left: 1%;
	width: 35.8974%;
	height:100%;
	display: block;
	padding:10px 0 10px 0;
	line-height:1.5em;
	border-left:solid 1px rgba(255,255,255,0.5);
	border-right:none;	
}
#nav-social-cont {
	margin-left:20px;
	float:left;
}
#nav-contact {
	clear: none;
	float: left;
	margin-left: 1%;
	width: 47.7179%;
	height:100%;
	display: block;
	padding:10px 0 10px 0;
	line-height:1.5em;
	/*background-color:red;	*/
}
#nav-contact-cont {
	padding-right:10px;
	float:right;
	display: inline-block;
}
#nav-menu {
	clear: none;
	float: left;
	margin-left: 1%;
	width: 100%;
	display: block;
	border-bottom:solid 1px rgba(255,255,255,0.5);	
}
}

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

@media only screen and (min-width: 769px) {
	#nav-list ul{
		position:relative;
		height:100%;
		width:100%%;
		right:0px;
		float:right;
		/*border-right:solid 1px rgba(255,255,255,0.5);*/
	}
	
	#nav-list ul.css-tabs {
		right:0px;
		float:right;
		margin-right:5px;
		padding:0;
	}
	
	#nav-list ul.css-tabs a {
		position:relative;
		text-align:center;
		font-size:17px;
		letter-spacing:1.5px;
		font-family: 'ExpressLightSSiLight', Arial, Helvetica, sans-serif;
		display:block;
		color: white;
		cursor:default;
		padding:20px 15px 20px 15px;
		line-height:1.5em;
	}
	#nav-list ul.css-tabs a:hover {
		color: #3fc6ff;
	}
	#nav-list ul.css-tabs a.current {
		color:#27a9e1;
	}
	
	#Navigation-container {
		width:100%;
		text-align:center;
	}
	
#nav-social {
	position:relative;
	clear: none;
	float: left;
	margin-left: 1%;
	width: 12%;
	height:100%;
	display: block;
	line-height:1.5em;
	padding:14px 0px 14px 0px;
	border-right:none;
	border-left:solid 1px rgba(255,255,255,0.5);
	
}
#nav-social-cont {
	float:left;
	display: inline-block;
}
#nav-contact {
	position:relative;
	clear: none;
	margin-left: 0%;
	width: 16%;
	display: block;
	padding:14px 0px 0px 0px;
	height:100%;
	line-height:1.5em;
	
}
#nav-contact-cont {
	padding-right:0px;
	float:right;
	display: inline-block;
}
#nav-menu {
	position:relative;
	clear: none;
	float: left;
	margin-left: 0%;
	height:100%;
	width: 68%;
	display: block;
	border-bottom:none;
	border-right:none;
}
#nav-menu-cont {
	padding-right:0px;
	float:right;
	display: inline-block;
}
}