/* @override http://cameraarts.c5themepark.com/packages/pc5_custom_templates/blocks/autonav/templates/pc5_dropdowns/css/pc5_dd_styles.css?v=7dba172031b5da14a5d11a9c69cf1c4e */


#navigation ul.dropdown li ul li a {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
  background-color: #497888;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#497888), to(#497888));
  background-image: -webkit-linear-gradient(top, #497888, #497888);
  background-image:    -moz-linear-gradient(top, #497888, #497888);
  background-image:     -ms-linear-gradient(top, #497888, #497888);
  background-image:      -o-linear-gradient(top, #497888, #497888);
  background-image:         linear-gradient(top, #497888, #497888);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#497888', EndColorStr='#497888');
	position: relative;
	-webkit-box-shadow: 0px 0px 15px #111;
	-moz-box-shadow: 0px 0px 15px #111;
	box-shadow: 0px 0px 15px #111;
	text-transform: uppercase;
}

#navigation ul {
	list-style: none;
}

/*
	LEVEL ONE
*/

ul.dropdown {
	position: relative;

}

ul.dropdown li {
	float: left;
	zoom: 1;
 	background: unchanged; /*this is the color of the first level menu items */
}

ul.dropdown a:hover {
	color: #000;
}

ul.dropdown a:active {
	color: #ffa500;
}

ul.dropdown li a {
	display: block; /*this is the size of the links on all levels*/
	text-decoration: none;
	padding: 12px;
}

ul.dropdown li:last-child a {
	border-right: none;
}

/* Doesn't work in IE */

ul.dropdown li.hover,
ul.dropdown li:hover {
	color: #ff0000; /*text color of dropdown links*/
	position: relative;
}

ul.dropdown li.hover a {

}
ul.dropdown li ul a{
	margin-bottom: 3px;
	margin-left: -3px;
}
ul.dropdown li ul li {
}

/* LEVEL TWO*/

ul.dropdown ul {
	width: 250px; /* the length of the subnav elements set directly*/
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 90;
	padding-top: 3px;
}

ul.dropdown ul li {
	font-weight: normal;
	background: unchanged; /*this is the color of the sub items and if not set the top color is inherited*/
	color: #fff;
	float: none;
	position: relative;
}



/* IE 6 & 7 Needs Inline Block */

ul.dropdown ul li a {
	border-right: none;
	width: 100%;
	display: inline-block;
}

/* LEVEL THREE*/

ul.dropdown ul ul {
	left: 100%;
	top: 0;
	padding-left: 3px;
}

ul.dropdown li:hover > ul {
	visibility: visible;
}