/*-------------------------------------------
Project: Resonate Widgets {Hero}
Style: style.css
Author: Kevin Mooney Jr
Company: Duarte Design, Inc.
Version: 1.0
-------------------------------------------- -*/

/*-------------------------------------------
HTML ELEMENTS
---------------------------------------------*/

body,
html {
	background: #ffffff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body:after {
	content: url('../img/audience-content.png') url('../img/audience-wheel.png');
	display: none;
}

/* PARAGRAPHS */


/* HEADERS */



/*-------------------------------------------
NAVIGATION
---------------------------------------------*/

/* LINKS */


/* IMAGES */
img {
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/*-------------------------------------------
LAYOUT
---------------------------------------------*/

/* PAGE */
.wrapper{
	width: 1024px;
	height: 768px;
}

#container {
	overflow: hidden;
	position: relative;
}

#hero-wrap {
	position: relative;
}

#hero {
	width: 1400px;
	height: 1400px;
	position: absolute;
}

.transform {
	-webkit-transition: all 1s ease-in-out;
}

#hero-wheel {
	background: transparent url('../img/audience-wheel.png') no-repeat center center;
	width: 1400px;
	height: 1400px;
	position: absolute;
}

#hero-content {
	background: transparent url('../img/audience-content.png') no-repeat center center;
	width: 1400px;
	height: 1400px;
	position: absolute;
}

#nav {
	position: absolute;
	right: 20px;
	top: 20px;
}

#nav > li {
	position: relative;
	color: #636466;
	font-size: 24px;
	text-align: center;
	line-height: 60px;
	width: 120px;
	height: 60px;
	-webkit-border-radius: 4px;
	border: 1px solid #cccccc;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#ededed));
	cursor: pointer;
	z-index: 999;
	margin-bottom: 4px;
}

#nav > li.toggle {
	cursor: pointer;
	color: #ffffff;
	background: #0E6090;
}


/*-------------------------------------------
ANIMATIONS
---------------------------------------------*/

.hidden {
	opacity: 0;
}

/* TRANSITIONS */
.fadein {
	-webkit-animation-delay: 0s;
	-webkit-animation-duration: 1s;
	-webkit-animation-name: fadein;
	opacity: 0;
	-webkit-animation-fill-mode: forwards;
}

.fadeout {
	-webkit-animation-delay: 0s;
	-webkit-animation-duration: 1s;
	-webkit-animation-name: fadeout;
	opacity: 1;
	-webkit-animation-fill-mode: forwards;
}

@-webkit-keyframes fadein {
  from {
  	opacity: 0;
    -webkit-animation-timing-function: ease;
  }
  
  to {
  	opacity: 1;
    -webkit-animation-timing-function: ease;
  }
}

@-webkit-keyframes fadeout {
  from {
  	opacity: 1;
    -webkit-animation-timing-function: ease;
  }
  
  to {
  	opacity: 0;
    -webkit-animation-timing-function: ease;
  }
}

/*-------------------------------------------
RESET
---------------------------------------------*/

html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,select,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,button,caption,cite,code,dfn,em,input,optgroup,option,select,strong,textarea,th,var{font:inherit}del,ins{text-decoration:none}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:baseline}sub{vertical-align:baseline}legend{color:#000}body{font:13px/1.231 arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small}select,input,textarea,button{font:99% arial,helvetica,clean,sans-serif}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}


/*-------------------------------------------
CLEAR
---------------------------------------------*/

.clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix:after {
	clear: both;
	content: ' ';
	display: block;
	font-size: 0;
	line-height: 0;
	visibility: hidden;
	width: 0;
	height: 0;
}

.clearfix {
	display: inline-block;
}

* html .clearfix {
	height: 1%;
}

.clearfix {
	display: block;
}