/*****************************************************************/
/* NAVIGATION DD MENU v2                                         */
/*                                                               */
/* Designed and Coded By: The Mortal                             */
/* Copyright © 2013 RealmDesignz.com All Rights Reserved         */
/*                                                               */
/* DO NOT STEAL AND/OR USE THIS NAVIGATIONS CSS CODE             */
/* WITHOUT WRITTEN PERMISSION FROM The Mortal @ RealmDesignz.com */
/*****************************************************************/

/*************/
/* CSS RESET */
/*************/
ol, ul {
	list-style: none;
}

/***************/
/* MAIN STYLES */
/***************/
#wrapper {
	width: 746px;
	margin: 0 auto;
	top: -2px;
}

#nav {
	position:relative;
	width: 746px;
	margin: 0 auto;
	top: -2px;
}

ul#navigation {
	margin: 0px auto;
	left: 49px; /* Code Line To Make Centered */
	position: relative;
	border-left: 1px solid #2c2c2c;
	border-right: 1px solid #2c2c2c;
}

ul#navigation li {
	display: inline;
	font-size: 13px; /* Changes Buttons Font Size */
	font-weight: bold;
	margin: 0;
	padding: 0;
	float: left;
	position: relative;
}

ul#navigation li a {
	padding: 1px 15px; /* 1st Setting Changes Button Height */
	font-size: 13px; /* Changes Buttons Font Size */
	color: #a1a1a1; /* Changes Button Text */
	text-shadow: 1px 1px 0px #000;
	text-decoration: none;
	display: inline-block;
	border-right: 1px solid #2c2c2c;
	-webkit-transition: color 0.2s linear, background 0.2s linear;
	-moz-transition: color 0.2s linear, background 0.2s linear;
	-o-transition: color 0.2s linear, background 0.2s linear;
	transition: color 0.2s linear, background 0.2s linear;
}

ul#navigation li a:hover {
	background: #f8f8f8;
	color: #c4a663;
}

ul#navigation li:hover > a {
	background: #191919;
	background-image: -moz-linear-gradient(top, #090909, #191919);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#090909), to(#191919));
	background-image: -webkit-linear-gradient(top, #090909, #191919);
	background-image: -o-linear-gradient(top, #090909, #191919);
	background-image: linear-gradient(to bottom, #090909, #191919);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#090909', endColorstr='#191919', GradientType=1);
}

/************************/
/* DROP-DOWN NAVIGATION */
/************************/
ul#navigation li:hover > ul {
	visibility: visible;
	opacity: 1;
}

ul#navigation ul, ul#navigation ul li ul {
	list-style: none;
	margin: 0;
	padding: 0;    
	visibility: hidden;
	position: absolute;
	z-index: 99999;
	width: 160px;
	background: #080808;
	box-shadow: 1px 1px 2px #151515;
	opacity: 0;
	-webkit-transition: opacity 0.2s linear, visibility 0.2s linear;
	-moz-transition: opacity 0.2s linear, visibility 0.2s linear;
	-o-transition: opacity 0.2s linear, visibility 0.2s linear;
	transition: opacity 0.2s linear, visibility 0.2s linear;
}

ul#navigation ul {
    top: 22px; /* Changes Drop-Down Top Space */
    left: 1px;
}

ul#navigation ul li ul {
    top: 0;
    left: 181px;
}

ul#navigation ul li {
	clear: both;
	width: 100%;
	border: 0 none;
	border-bottom: 1px solid #2c2c2c;
}

ul#navigation ul li a {
	background: none;
	padding: 7px 5px;
	color: #a1a1a1; /* Changes Button Text for Drop-Down */
	text-shadow: 1px 1px 2px #151515;
	text-decoration: none;
	display: inline-block;
	border: 0 none;
	float: left;
	clear: both;
	width: 150px;
}

ul#navigation li a.first {
	border-left: 1px solid #2c2c2c;
}

ul#navigation li a.last {
	border-right: 1px solid #2c2c2c;
}