/* Artfully masterminded by ZURB  */

/* -------------------------------------------------- 
   Table of Contents
-----------------------------------------------------
:: Shared Styles
:: Page Name 1
:: Page Name 2
*/


/* -----------------------------------------
   Shared Styles
----------------------------------------- */

@font-face {
    font-family: 'PusabRegular';
    src: url('type/PUSAB___-webfont.eot');
    src: url('type/PUSAB___-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/PUSAB___-webfont.woff') format('woff'),
         url('type/PUSAB___-webfont.ttf') format('truetype'),
         url('type/PUSAB___-webfont.svg#PusabRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
	background: url(../images/bg.jpg) top center repeat #131313;
	color: #ddd;
	font-family: 'PT Sans Narrow', Arial, Helvetica, sans-serif;
}

section#top_nav_wrapper {
	z-index: 20;
	position: fixed;
	top: 0;
	background: rgba(0,0,0,0.5);
	/*border-bottom: 1px solid rgba(255,255,255,0.25);*/
	display: block;
	width: 100%;
	height: 80px;
	
	transition:			all 1s ease-out;
	-moz-transition:	all 1s ease-out;
	-webkit-transition:	all 1s ease-out;
	-o-transition:		all 1s ease-out;
}

section#top_nav_wrapper.small {
	background: rgba(0,0,0,0.8);
	/*border-bottom: 0px solid rgba(0,0,0,0.8);*/
	height: 60px;
}

section#top_nav_wrapper > .row {
	margin: 0 auto;
	/*
	border: 1px solid red;*/
}

a#nav_logo {
	display: inline-block;
	overflow: hidden;
	float: left;
	width: 60px;
	height: 60px;
	background: #fff;
	text-align: center;
	margin-top: 10px;
	
	-moz-border-radius:		18%;
	-webkit-border-radius:	18%;
	-khtml-border-radius:	18%;
	border-radius:			18%;
	/*
	-moz-box-shadow:	0px 3px 5px rgba(0,0,0,0.2);
	-webkit-box-shadow:	0px 3px 5px rgba(0,0,0,0.2);
	box-shadow:			0px 3px 5px rgba(0,0,0,0.2);
	*/
	transition:			transform 0.2s ease-out, width 1s ease-out, height 1s ease-out, border-radius 1s ease-out;
	-moz-transition:	-moz-transform 0.2s ease-out, width 1s ease-out, height 1s ease-out, border-radius 1s ease-out;
	-webkit-transition:	-webkit-transform 0.2s ease-out, width 1s ease-out, height 1s ease-out, border-radius 1s ease-out;
	-o-transition:		-o-transform 0.2s ease-out, width 1s ease-out, height 1s ease-out, border-radius 1s ease-out;
}

a#nav_logo:hover {
	-moz-transform: scale(1.1) rotate(-2deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	-webkit-transform: scale(1.1) rotate(-2deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	-o-transform: scale(1.1) rotate(-2deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	-ms-transform: scale(1.1) rotate(-2deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg);
	transform: scale(1.1) rotate(-2deg) translateX(0px) translateY(0px) skewX(0deg) skewY(0deg); 
}

section#top_nav_wrapper.small a#nav_logo {
	width: 40px;
	height: 40px;
	margin-top: 10px;
	-moz-border-radius:		18%;
	-webkit-border-radius:	18%;
	-khtml-border-radius:	18%;
	border-radius:			18%;
}

a#nav_logo > #logo_image {
	display: block;
	width: 30px;
	height: 33px;
	margin: 5px auto 0 auto;
	background: url(../images/nav_rad_rattle_logo.gif) top center no-repeat transparent;
	
	transition:			all 0.2s ease-out;
	-moz-transition:	all 0.2s ease-out;
	-webkit-transition:	all 0.2s ease-out;
	-o-transition:		all 0.2s ease-out;
}

section#top_nav_wrapper.small a#nav_logo > #logo_image {
	margin: 3px auto 0 auto;
}

a#nav_logo > #logo_text {
	display: block;
	width: 28px;
	height: 15px;
	margin: 0 auto;
	background: url(../images/nav_rad_rattle_text.gif) top center no-repeat transparent;
	
	transition:			all 0.5s ease-out;
	-moz-transition:	all 0.5s ease-out;
	-webkit-transition:	all 0.5s ease-out;
	-o-transition:		all 0.5s ease-out;
}

section#top_nav_wrapper.small a#nav_logo > #logo_text {
	filter:alpha(opacity=0);
	opacity:			0;
	-moz-opacity:		0;
	-webkit-opacity:	0;
	-khtml-opacity:		0;
}

nav#top_nav a.menu_item {
	display: inline-block;
	float: left;
	margin: 15px 0 0 30px;
	color: #fff;
	font-family: "PusabRegular", Arial, Helvetica, sans-serif;
	font-size: 32px;
	text-transform: capitalize;
	
	transition:			margin-top 0.2s ease-out, color 0.2s ease-out;
	-moz-transition:	margin-top 0.2s ease-out, color 0.2s ease-out;
	-webkit-transition:	margin-top 0.2s ease-out, color 0.2s ease-out;
	-o-transition:		margin-top 0.2s ease-out, color 0.2s ease-out;
}

nav#top_nav a.menu_item span {
	display: block;
	font-family: 'PT Sans Narrow', Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #999;
	font-weight: 700;
	text-transform: uppercase;
	
	transition:			opacity 0.5s ease-out, color 0.2s ease-out;
	-moz-transition:	opacity 0.5s ease-out, color 0.2s ease-out;
	-webkit-transition:	opacity 0.5s ease-out, color 0.2s ease-out;
	-o-transition:		opacity 0.5s ease-out, color 0.2s ease-out:
}

nav#top_nav a.menu_item:hover {
	color: #ddd;
	margin-top: 12px;
	
}

nav#top_nav a.menu_item:hover span {
	color: #ec008c;
}

section#top_nav_wrapper.small nav#top_nav a.menu_item span {
	filter:alpha(opacity=0);
	opacity:			0;
	-moz-opacity:		0;
	-webkit-opacity:	0;
	-khtml-opacity:		0;
}

a.mobileNav {
	display: none;
}

div#addthis {
	text-align: right;
	line-height: 70px;
}

header {
	position: relative;
	background: url(../images/bg_top.jpg) bottom center repeat-x;
	/*background: url(../images/bg_top_light.jpg) top center no-repeat;*/
	z-index:0;
	
}

header div#particle_holder {
	z-index: 8;
	position: absolute;
	top: 50px;
	width: 100%;
	margin: 0 auto;
	height: 590px;
	overflow: hidden;
}

header #slider {
	position: absolute;
	z-index:10;
	width: 100%;
	height: 540px;
	text-align: center;
	margin: 0;
	padding: 0;
}

#slider_holder {
	background: url(../images/bg_top_light.jpg) top center no-repeat;
	height: 640px;
	padding-top: 100px;
	position: relative;
	
}

.slide_holder {
	position: absolute;
	z-index:10;
	text-align: center;
	margin: 0;
	padding: 0;
	/*position: relative;*/
	
	left: 50%;
	margin-left: -150px;
}

.icon_holder {
	display: block;
	width: 300px;
	height: 300px;
	margin: 50px auto 0 auto;
	
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	-o-perspective: 600px;
	perspective: 600px;
	
}

.icon {
	-webkit-transform-style:preserve-3d;
	-moz-transform-style:	preserve-3d;
	-o-transform-style:		preserve-3d;
	transform-style:		preserve-3d;
	-webkit-transition: 1s;
	-moz-transition:	1s;
	-o-transition:		1s;
	transition:			1s;
}

.icon_holder:hover .icon {
	-webkit-transform:	rotateY( 180deg );
	-moz-transform:		rotateY( 180deg );
	-o-transform:		rotateY( 180deg );
	transform:			rotateY( 180deg );				
}

.side {
	position: absolute;
	margin: 0 auto;
	width: 300px;
	height: 300px;
	padding: 20px;
	background: url(../images/icon_big_bg.jpg) top center repeat-y #eee;
	
	-moz-border-radius:		18%;
	-webkit-border-radius:	18%;
	-khtml-border-radius:	18%;
	border-radius:			18%;
	
	-moz-box-shadow:	0px 10px 25px rgba(0,0,0,0.25);
	-webkit-box-shadow:	0px 10px 25px rgba(0,0,0,0.25);
	box-shadow:			0px 10px 25px rgba(0,0,0,0.25);
	
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:	hidden;
	-o-backface-visibility:		hidden;
	backface-visibility:		hidden;
}

.icon_holder .back {
	font-family: 'PT Sans Narrow', Arial, Helvetica, sans-serif;
	color: #333;
	
	-webkit-transform:	rotateY( 180deg );
	-moz-transform:		rotateY( 180deg );
	-o-transform:		rotateY( 180deg );
	transform:			rotateY( 180deg );
}

.icon_holder .back h3 {
	font-family: "PusabRegular", Arial, Helvetica, sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	margin-top: 25px;
	color: #000;
}

.front {
	z-index: 10;
	padding-top: 30px;
	cursor: pointer;
}

.ribbon_holder {
	position: absolute;
	overflow: hidden;
	left: -2px;
	top:-2px;
	display: block;
	width: 100px;
	height: 100px;
	/*
	-webkit-border-radius: 55px 0px 0px 0px;
	border-radius: 55px 0px 0px 0px;*/
	-moz-border-radius-topleft:			55px;
	-webkit-border-radius-topleft:		55px;
	-khtml-border-radius-topleft:		55px;
	border-top-left-radius:				55px; 
}

.beta {
	position: absolute;
	left: -50px;
	top: -50px;
	display: block;
	width: 100px;
	height: 100px;
	background: url(../images/icon_beta.png) top left no-repeat transparent;
	
	filter:alpha(opacity=0);
	opacity:			0;
	-moz-opacity:		0;
	-webkit-opacity:	0;
	-khtml-opacity:		0;
}

.ribbon_back {
	position: absolute;
	right: -2px;
	top:-2px;
	display: block;
	width: 100px;
	height: 100px;
	background: url(../images/icon_beta_back.png) top left no-repeat transparent;
}

.icon_holder:hover .front {
	z-index: 0;
}

.front:hover .icon_i {
	background-color: #666;
	color: #fff;
}

.front img {
	margin-top: 20px;
}

.front .icon_i {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: block;
	/*background: url(../images/icon_i.png) 9px 5px no-repeat #ccc;*/
	background: #ccc;
	width: 26px;
	height: 26px;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-style: oblique;
	font-weight: bolder;
	text-align: center;
	line-height: 26px;
	color: #999;
	
	-moz-box-shadow:	inset 1px 1px 1px rgba(0,0,0,0.25), inset -1px -1px 1px rgba(255,255,255,0.85);
	-webkit-box-shadow:	inset 1px 1px 1px rgba(0,0,0,0.25), inset -1px -1px 1px rgba(255,255,255,0.85);
	box-shadow:			inset 1px 1px 1px rgba(0,0,0,0.25), inset -1px -1px 1px rgba(255,255,255,0.85);
	
	-moz-border-radius:		50%;
	-webkit-border-radius:	50%;
	-khtml-border-radius:	50%;
	border-radius:			50%;
	
	transition:			all 0.2s ease-out;
	-moz-transition:	all 0.2s ease-out;
	-webkit-transition:	all 0.2s ease-out;
	-o-transition:		all 0.2s ease-out;
}

.content_wrapper {
	background: url(../images/bg_light.jpg) top center repeat #262626;
}

footer {
	background: url(../images/bg_bottom.jpg) top center repeat-x;
	min-height: 160px;
	padding-top: 160px;
	padding-bottom: 20px;
}

#footer_qr {
	border: 2px solid #fff;
	float: right;
}

/* -----------------------------------------
   Page Name 1
----------------------------------------- */




/* -----------------------------------------
   Page Name 2
----------------------------------------- */


/*	----------------------------------------
	Mobile
----------------------------------------- */

/** mobile changes **/
@media all and (max-width: 767px) {
	
	section#top_nav_wrapper, section#top_nav_wrapper.small {
		z-index: 20;
		position: absolute;
		top: 0;
		background: rgba(0,0,0,0.5);
		display: block;
		width: 100%;
		height: auto;
	}
	
	section#top_nav_wrapper a#nav_logo {
		width: 40px;
		height: 40px;
		margin-top: 10px;
		-moz-border-radius:		18%;
		-webkit-border-radius:	18%;
		-khtml-border-radius:	18%;
		border-radius:			18%;
		margin-bottom: 10px;
	}
	
	section#top_nav_wrapper a#nav_logo > #logo_image {
		margin: 3px auto 0 auto;
	}
	
	a#nav_logo > #logo_text {
		display: none;
	}
	
	section#top_nav_wrapper.small a#nav_logo > #logo_text {}
	
	nav#top_nav a.menu_item {
		display: block;
		float: left;
		margin: 15px 0 0 15px;
		font-size: 20px;
		
		transition:			margin-top 0.2s ease-out, color 0.2s ease-out;
		-moz-transition:	margin-top 0.2s ease-out, color 0.2s ease-out;
		-webkit-transition:	margin-top 0.2s ease-out, color 0.2s ease-out;
		-o-transition:		margin-top 0.2s ease-out, color 0.2s ease-out;
		
		display: none;
	}
	
	nav#top_nav a.menu_item span {
		display: none;
	}
	
	a.mobileNav {
		position: absolute;
		top: 10px;
		right: 10px;
		display: inline-block;
		float: right;
		width: 20%;
		height: 40px;
		line-height: 40px;
		text-align: center;
		background: #fff;
		
		-moz-border-radius:		10px;
		-webkit-border-radius:	10px;
		-khtml-border-radius:	10px;
		border-radius:			10px;
	}
	
	a.mobileNav:after {
		content: " >>"
	}
	
	div#addthis {
		text-align: center;
		height: 30px;
		line-height: 30px;
		padding-top: 2px;
		background: rgba(0,0,0,0.5);
		/*
		border: 1px solid red;*/
		
		display: none;
	}
	
	div#addthis img {
		/*
		border: 1px solid white;*/
	}
	
	#slider_holder {
		background: url(../images/bg_top_light_sparks.jpg) bottom center no-repeat;
		height: 560px;
		padding-top: 40px;
		
	}
	
	#particle_holder {
		display: none;
	}
	
	#footer_qr {
		display: none;
	}
}