#navigation {
	width: 1000px;
}
/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	list-style: none;
	font-weight: bold;
	width: 1000px;
	text-align: center;
	position: absolute;
}

#nav li{
	float: left;
}
#nav a{
	text-indent: -9999px;
	display: block;
	text-decoration: none;
	font-family: Helvetica;
	font-weight: bold;
	text-transform: uppercase;
	width: 130px;
	text-align: center;
	height: 35px;
	font-size: 16px;
	line-height: 35px;
	color: #FFF;
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ie-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

#nav a:hover {
	color:#FFF;
}

#nav a.n_logo{
	width: 220px;
	text-indent: -9999px;
	height: 100px;
}


/*--- Navigation Sprites ---*/

#nav a.news{
	background-image: url(../images/nav_sprite.png);
	background-repeat:no-repeat;
	background-position: left top;
}

#nav a.store{
	background-image: url(../images/nav_sprite.png);
	background-repeat:no-repeat;
	background-position: -130px 0px;
}

#nav a.community{
	background-image: url(../images/nav_sprite.png);
	background-repeat:no-repeat;
	background-position: -260px 0px;
}
#nav a.game_info{
	background-image: url(../images/nav_sprite.png);
	background-repeat:no-repeat;
	background-position: -390px 0px;
}
#nav a.media{
	background-image: url(../images/nav_sprite.png);
	background-repeat:no-repeat;
	background-position: -520px 0px;
}
#nav a.support{
	background-image: url(../images/nav_sprite.png);
	background-repeat:no-repeat;
	background-position: -650px 0px;
}

/*--- DROPDOWN ---*/
#nav:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
	text-decoration: none;
	opacity : 1;
}

#nav:hover {
	background-image: url(../images/main_navigation.png);
}

#nav ul{
	background: #fff;
	background: rgba(255,255,255,0);
	list-style: none;
	position: relative;
	opacity: 0;
	-webkit-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-ie-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

#nav ul li{
	float: none;
	clear: both;
}

#nav ul a{
	text-align: center;
	white-space: nowrap;
	width: 130px;
	height: 15px;
	font-family: "Bebas Neue";
	color: #f5f5f5;
	font-size: 13px;
	letter-spacing: 0.5px;
	font-weight: normal;
	line-height: 15px;
	text-decoration: none;
	text-shadow: #000 0px 1px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-ie-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
	text-indent: 0px;
	text-shadow: #000 0px 1px;
}

#nav li:hover a{ 
	text-decoration: none;
	color: #77818e;
}

#nav li:hover ul a{ 
	text-decoration:none;
}

#nav li:hover ul li a {
	color: #ededed;
	text-shadow: #000 0px 1px;
	text-decoration: none;
	text-align: center;
	width: 130px;
	text-indent:0px;
}

#nav li:hover ul li a:hover{ 
	color: #FFF;
	background-color: #000;
	text-align: center;
}
