/* Import "PT Sans Narrow" font from Google fonts */
@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700);
/*
---------------------------------------------------------------
  Note that styles you apply to the main menu items are inherited by the sub menus items too.
  If you'd like to avoid this, you could use child selectors (not supported by IE6) - for example:
  .sm-ppic > li > a { ... } instead of .sm-ppic a { ... }
---------------------------------------------------------------*/


/* Menu box
===================*/

.sm-ppic {
	background: #475153;
	z-index: 9999;
}
.sm-ppic-vertical {
}
.sm-ppic ul {
	padding-top: 11px;
	padding-right: 0;
	padding-left: 0;
	padding-bottom: 11px;
	background: #f7f7f7;
	zoom: 1;
	filter: alpha(opacity=95);
	opacity: 0.95;
	border-color: rgba(232,232,232,0.95);
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-right-style: solid;
	border-left-style: solid;
}
/* for vertical main menu subs and 2+ level horizontal main menu subs round all corners */
.sm-ppic-vertical ul, .sm-ppic ul ul {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}
/* Menu items
===================*/

.sm-ppic a {
	padding-top: 15px;
	color: #E6E6CD;
	font-size: 12px;
	height: 30px;
	font-family:"Trade Gothic W01";
	font-weight: 800;
	font-style: normal;
	text-decoration: none;
	text-transform: uppercase;
	padding-left: 18px;
	padding-right: 74px;
	letter-spacing: .8px;
}
.sm-ppic a:hover, .sm-ppic a:focus, .sm-ppic a:active, .sm-ppic a.highlighted {
	color: #fff;
}
.sm-ppic-vertical a {
}
.sm-ppic ul a {
	background: transparent;
	font-family:"Arial W01";
	font-weight: 900;
	font-style: normal;
	color: #475153;
	font-size: 12px;
	height: 22px;
	line-height: 22px;
	text-shadow: none;
	text-transform: uppercase;
	padding-top: 0px;
	padding-right: 22px;
	padding-left: 18px;
	padding-bottom: 0px;
	letter-spacing: 0px;
}
.sm-ppic ul a:hover, .sm-ppic ul a:focus, .sm-ppic ul a:active, .sm-ppic ul a.highlighted {
	color: #CD7100;
}
/* current items - add the class manually to some item or check the "markCurrentItem" script option */
.sm-ppic a.current, .sm-ppic a.current:hover, .sm-ppic a.current:focus, .sm-ppic a.current:active, .sm-ppic ul a.current, .sm-ppic ul a.current:hover, .sm-ppic ul a.current:focus, .sm-ppic ul a.current:active {
}
/* round the left corners of the first item for horizontal main menu */
.sm-ppic > li:first-child > a {
}
/* round the corners of the first and last items for vertical main menu */
.sm-ppic-vertical > li:first-child > a {
}
.sm-ppic-vertical > li:last-child > a {
}
.sm-ppic a.has-submenu {
}
.sm-ppic > li:last-child > a {
	padding-right: 0px;
	padding-left: 15px;
}
.sm-ppic > li + li + li + li +li > a 
{
	padding-right: 0px;
}
/* Sub menu indicators
===================*/

.sm-ppic a span.sub-arrow {
	position: absolute;
	bottom: 0px;
	left: 50%;
	margin-left: -25px;
	/* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
	overflow: hidden;
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 0 8px 6px 8px;
	border-color: transparent transparent transparent transparent;
}
.sm-ppic a:hover span.sub-arrow, .sm-ppic a:focus span.sub-arrow, .sm-ppic a:active span.sub-arrow, .sm-ppic a.highlighted span.sub-arrow {
	border-color: transparent transparent #f7f7f7 transparent;
}
.sm-ppic-vertical a span.sub-arrow, .sm-ppic ul a span.sub-arrow {
}
.sm-ppic > li:last-child > a span.sub-arrow {
	margin-left: 0px;
}
.sm-ppic > li + li + li + li +li > a span.sub-arrow {
	margin-left: 0px;
}
/* Items separators
===================*/

.sm-ppic li {
}
.sm-ppic li:first-child, .sm-ppic-vertical li, .sm-ppic ul li {
}
/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." -> "more..." in the default download package
===================*/

.sm-ppic span.scroll-up, .sm-ppic span.scroll-down {
	position: absolute;
	display: none;
	visibility: hidden;
	overflow: hidden;
	background: #ffffff;
	height: 20px;/* width and position will be automatically set by the script */
}
.sm-ppic span.scroll-up-arrow, .sm-ppic span.scroll-down-arrow {
	position: absolute;
	top: -2px;
	left: 50%;
	margin-left: -8px;
	/* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
	width: 0;
	height: 0;
	overflow: hidden;
	border-width: 8px; /* tweak size of the arrow */
	border-style: dashed dashed solid dashed;
	border-color: transparent transparent #247eab transparent;
}
.sm-ppic span.scroll-down-arrow {
	top: 6px;
	border-style: solid dashed dashed dashed;
	border-color: #247eab transparent transparent transparent;
}
