
/* ----------------------------------------------------------------------------------------------------

CSSGrid is a Responsive CSS Grid designed to work on web and mobile devices. (www.cssgrid.co)
Please don't steal. Support this grid and buy a license from: http://codecanyon.net/item/responsive-html5-css-grid/4928861?ref=human1nt

---------------------------------------------------------------------------------------------------- */

/*
	The following styles are used on the top navigation only.
	You do not need to use this CSS as part of the CSSGrid.
*/

.wrapper {
}
.wrapper-push {
	margin-left:0%;
}
.space-top {
	width:100%;
	height:75px;
}

.header {
	background-color:#fff;
	width:100%;
	height:50px;
	padding:0px;
	margin:0px;
	margin-bottom:10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #e4e4e4;
}
.logo {
	float:left;
	position:absolute;
	padding-top:1px;
	padding-left:10px;
	font-size:20px;
	line-height:50px;
}
.logo strong {
	color:#ffcb00;
	font-weight:normal;
}
.logo a {
	color:#111;
}

.navigation {
	height:50px;
	right:0;
	position:absolute;
}
.navigation.fixed {
	z-index:3;
	right:0;
	position:fixed;
}
.fixed {
	position:fixed;
	z-index:1;
	right:0;
}
.navclosed,
.navclicked {
	display:none;
}
ul.navig {
	margin:0px;
	padding:0px;
	position:relative;
	z-index:2;
	list-style:none;
	float:right;
	height:50px;
}
ul.navig li {
	margin:0px;
	padding:0px;
	height:50px;
	float:left;
	position:relative;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #e4e4e4;
	background-color:#555;
}
ul.navig li a {
	font-family:'avenir_lt_45_bookregular', Arial, Helvetica, sans-serif;
	font-size:15px;
	background-color:#fff;
	margin:0px;
	padding-left:10px;
	padding-right:10px;
	line-height:50px;
	display:block;
	color:#252525;
	text-decoration:none;
}
ul.navig li a.buy {
	background-color:#f1844d;
	color:#fff;
}
ul.navig li a:hover {
	background-color:#666;
	font-size:15px;
	color:#fff;
	text-decoration:none;
	opacity: 1.0;
}
ul.navig li a.selected
{
	background-color:#444;
	font-size:16px;
	color:#fff;
	text-decoration:none;
	opacity: 1.0;
}
ul.navig li a.dropdown
{
	background-color:#fff;
	font-size:16px;
	color:#252525;
	padding-left:40px;
	text-decoration:none;
	opacity: 1.0;
	background-image: url(../images/navgrey.png);
	background-repeat: no-repeat;
	background-position: left center;
}
ul.navig li a.dropdown:hover,
ul.navig li:hover a.dropdown
{
	background-color:#ffcb00;
	font-size:16px;
	color:#fff;
	padding-left:40px;
	text-decoration:none;
	opacity: 1.0;
	background-image: url(../images/navgrey.png);
	background-repeat: no-repeat;
	background-position: left center;
}


/*
	Drop Down Menu
*/
ul.navig ul {
	background-color:#666;
	list-style:none;
	position:absolute;
	padding:0px;
	width:auto;
	height:auto;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
ul.navig ul li {
	float:none;
	height:50px;
	border:0px;
}
ul.navig ul a {
	width:190px;
	display:block;
	margin:0px;
	padding-left:10px;
	background-color:#666;
	color:#fff;
}
ul.navig ul a:hover {
	background-color:#ffcb00;
	color:#fff;
}
ul.navig li:hover ul {
	left:0; /* Display the dropdown on hover */
}


/* Browsers from 0 up to 767 iPhone Portrait + Landscape (iPad Portrait width is 768) */
@media screen and (min-width: 0px) and (max-width: 767px) {

/*.menu-label {
	position: fixed;
	top: 12px;
	right: 40px;
	color: #fff;
}*/

.space-top {
	width:100%;
	height:60px;
}
.clear {
	clear:both;
	height:0px;
}
.wrapper {
	right:0px;
	width:100%;
	position:absolute;
	z-index:1;
	transition-property: right; /* Timers for sliding in the wrapper, when closing the navigation */
	-moz-transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
	-moz-transition-timing-function: ease;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function:ease;
}
.wrapper-push {		
	right:270px;
	top:0;
	position:absolute;
	transition-property: right;	/* Timers for sliding out the wrapper, when opening the navigation */
	-moz-transition-duration: 0.2s;
	-webkit-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-moz-transition-timing-function: ease;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function:ease;
}
.header {
	border-bottom-width: 0px;
	background-color:#ffcb00;
	height:50px;
}
.logo {
	font-size:20px;
	padding-top:1px;
	line-height:50px;
	float:left;
	position:absolute;
}
.logo strong {
	color:#fff;
	font-weight:normal;
}

.navigation {
	display:none;
	z-index:2;
	background-color:#333;
	width:270px;
	min-height:110%;
	height:auto;
	max-height:999px;
	position:absolute;
	right:0;
}
.navclosed.fixed {
	position:fixed;
	top:5px;
	z-index:3;
}
.navigation.fixed {
	position:absolute;
	min-height:110%;
	height:auto;
}
.navclosed {
	z-index:2;
	color:#fff;
	margin:0px;
	padding:0px;
	list-style:none;
	background-color:#ffcb00;
	transition: background-color .70s ease;
	-moz-transition: background-color .70s ease;
	-webkit-transition: background-color .70s ease;
	opacity:1;
	width:50px;
	height:45px;
	position:absolute;
	right:0;
	display:block;
	text-decoration:none;
	background-image: url(../images/nav.png);
	background-repeat: no-repeat;
	background-position: left top; /* Timers for returning the X (close button) back to it's original position */
	transition-property: right, width;
	-moz-transition-duration: 0.8s;
	-webkit-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
	-moz-transition-timing-function: ease;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function:ease;
}
.navclosed.slide + .navigation {
	display:block;
	overflow: hidden;
	max-width:0;
	padding-top:0;
	padding-bottom:0;
	margin-top:0;
	margin-bottom:0;
	-moz-transition-duration: 0.1s; /* Timers for closing the navigation panel */
	-webkit-transition-duration: 0.1s;
	-o-transition-duration: 0.1s;
	transition-duration: 0.1s;
	-moz-transition-timing-function: ease;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
}
.navclicked {
	color:#fff;
	margin:0px;
	padding:0px;
	list-style:none;
	width:40px;
	height:40px;
	right:270px;
	position:absolute;
	background-color:#ffcb00;
	text-decoration:none;
	background-image: url(../images/nav.png);
	background-repeat: no-repeat;
	background-position: right -40px;
	z-index:100;
}
.navclicked.slide {
	transition-property: right; /* Timers for sliding out the X button */
	-moz-transition-duration: 0.2s;
	-webkit-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-moz-transition-timing-function: ease;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
}
.navclicked.slide + .navigation {
	-moz-transition-duration: 0.2s; /* Timers for sliding out the navigation panel */
	-webkit-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-moz-transition-timing-function: ease;
	-webkit-transition-timing-function: ease;
	-o-transition-timing-function: ease;
	transition-timing-function: ease;
	max-width: 270px;
	overflow: hidden;
}
.navclosed a {
	color:transparent;
	margin:0px;
	padding:0px;
	width:100%;
	height:50px;
	display:block;
	float:right;
}
.navclicked a {
	color:transparent;
	margin:0px;
	padding:0px;
	width:100%;
	height:362px;
	display:block;
	float:right;
}
ul.navig {
	float:none;
	width:100%;
	padding:0px;
	clear:both;
	position:static;
}
ul.navig li {
	background-color:transparent;
	color:#fff;
	width:100%;
	height:auto;
	margin-right:0px;
	float:left;
	border:0px;
}
ul.navig li a {
	font-family:'avenir_lt_45_bookregular', Arial, Helvetica, sans-serif;
	color:#fff;
	font-size:15px;
	display:block;
	padding-top:0px;
	padding-left:10px;
	padding-right:0px;
	padding-bottom:0px;
	line-height:50px;
	background-image:none;
	text-decoration:none;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
	background-color:#252525;
}
ul.navig li a:hover,
ul.navig li a.selected
{
	background-color:#101010;
	color:#fff;
	padding-top:0px;
	padding-left:10px;
	padding-right:0px;
	padding-bottom:0px;
	line-height:40px;
}

/*
	Drop Down Menu
*/
ul.navig li a.dropdown {
	color:#ccc;
	background-color:#444;
	background-image:none !important;
	padding-left:10px !important;
}
ul.navig ul {
	background-color:#666;
	list-style:none;
	padding:0px;
	width:auto;
	float:none;
	left:0px;
	top:0px;
	position:relative;
}
ul.navig ul li {
	color:#fff;
	float:none;
	height:40px;
	width:100%;
	border:0px;
}
ul.navig ul a {
	font-family:'avenir_lt_45_bookregular', Arial, Helvetica, sans-serif;
	color:#999;
	font-size:15px;
	display:block;
	margin:0px;
	padding-top:0px;
	padding-left:10px;
	padding-right:0px;
	padding-bottom:0px;
	line-height:40px;
	background-image:none;
	text-decoration:none;
	-webkit-border-radius:0px;
	-moz-border-radius:0px;
	border-radius:0px;
	background-color:#333;
	width:auto;
}
ul.navig ul a:hover {
	background-color:#1f1f1f;
}

}


/* Change images to higher res versions, if screen resolution is high, such as Retina on Apple devices. */
@media
screen and (-webkit-min-device-pixel-ratio: 1.5),
screen and (-moz-min-device-pixel-ratio: 1.5),
screen and (min-device-pixel-ratio: 1.5) { 

.navclosed {
	background-image: url(../images/nav2x.png);
	background-repeat: no-repeat;
	background-position: left top;	
	background-size:40px;
	-moz-background-size:40px;
}
.navclicked {
	background-image: url(../images/nav2x.png);
	background-repeat: no-repeat;
	background-position: left -40px;
	background-size:40px;
	-moz-background-size:40px;
}
ul.navig li a.dropdown,
ul.navig li a.dropdown:hover,
ul.navig li:hover a.dropdown
{
	background-image: url(../images/navgrey2x.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size:40px;
	-moz-background-size:40px;
}

}