adient/*/* Import "PT Sans Narrow" font from Google fonts */
/*@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700);*/
/*@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700&subset=latin,latin-ext,cyrillic-ext);


/*
---------------------------------------------------------------
  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-orange > li > a { ... } instead of .sm-orange a { ... }
---------------------------------------------------------------*/


/* Menu box
===================*/

	.sm-orange {
		background-color: #c2a73b; /* Old browsers */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6a93d', endColorstr='#fa7816',GradientType=0 ); /* IE6-9 */
	}
	.sm-orange-vertical {
	}
	.sm-orange ul {
		padding:7px 0;
		background:#fff;
	}
	/* for vertical main menu subs and 2+ level horizontal main menu subs round all corners */
	.sm-orange-vertical ul,
	.sm-orange ul ul {
		-moz-border-radius:4px;
		-webkit-border-radius:4px;
		border-radius:4px;
	}


/* Menu items
===================*/

	.sm-orange a {
    color: #fff;
    font-size: 15px;
    line-height: 12px;
    margin-top: 11px;
    padding: 15px 25px;
    text-decoration: none;
	}
	.sm-orange a:hover, .sm-orange a:focus, .sm-orange a:active,
	.sm-orange a.highlighted {
		background-color:#bddff6;
		color:#1c8adc;
		-webkit-border-radius: 10px;
		-moz-border-radius: 10px;
		border-radius: 10px;
	}
	.sm-orange-vertical a {
		padding:9px 40px 8px 23px;
		background:#3193c0; /* Old browsers */
	}
	.sm-orange ul a {
		padding:10px;
		background:transparent;
		color:#0283da;
		font-size:13px;
		text-shadow:none;
	}
	.sm-orange ul a:hover, .sm-orange ul a:focus, .sm-orange ul a:active,
	.sm-orange ul a.highlighted {
		background:#bddff6; /* Old browsers */
		color:#fff;
		text-shadow:0 1px 0 rgba(0,0,0,0.3);
	}
	/* current items - add the class manually to some item or check the "markCurrentItem" script option */
	.sm-orange a.current, .sm-orange a.current:hover, .sm-orange a.current:focus, .sm-orange a.current:active,
	.sm-orange ul a.current, .sm-orange ul a.current:hover, .sm-orange ul a.current:focus, .sm-orange ul a.current:active {
		background:#006892;
		color:#fff;
		text-shadow:0 1px 0 rgba(0,0,0,0.3);
	}
	/* round the left corners of the first item for horizontal main menu */
	.sm-orange > li:first-child > a {
	}
	/* round the corners of the first and last items for vertical main menu */
	.sm-orange-vertical > li:first-child > a {
	}
	.sm-orange-vertical > li:last-child > a {
	}
	.sm-orange a.has-submenu {

	}


/* Sub menu indicators
===================*/

	.sm-orange a span.sub-arrow {
		position:absolute;
		bottom:2px;
		left:50%;
		margin-left:-5px;
		/* 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:5px; /* tweak size of the arrow */
		border-style:solid dashed dashed dashed;
		border-color:#fff transparent transparent transparent;
	}
	.sm-orange-vertical a span.sub-arrow,
 	.sm-orange ul a span.sub-arrow {
		bottom:auto;
		top:50%;
		margin-top:-5px;
		right:15px;
		left:auto;
		margin-left:0;
		border-style:dashed dashed dashed solid;
		border-color:transparent transparent transparent #ED4444;
	}


/* Items separators
===================*/

	.sm-orange li {
		/*border-left:1px solid #504413;*/
	}
	.sm-orange li:first-child,
	.sm-orange-vertical li,
	.sm-orange ul li {
		border-left:0;
		/*border-bottom:1px dashed #e2e2e2;*/
	}


/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." -> "more..." in the default download package
===================*/

	.sm-orange span.scroll-up, .sm-orange 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-orange span.scroll-up-arrow, .sm-orange 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-orange span.scroll-down-arrow {
		top:6px;
		border-style:solid dashed dashed dashed;
		border-color:#247eab transparent transparent transparent;
	}



/*
---------------------------------------------------------------
  Responsiveness
  These will make the sub menus collapsible when the screen width is too small.
---------------------------------------------------------------*/


/* decrease horizontal main menu items left/right padding to avoid wrapping */
@media screen and (max-width: 850px) {
	.sm-orange:not(.sm-orange-vertical) > li > a {
		padding-left:18px;
		padding-right:18px;
	}
}
@media screen and (max-width: 750px) {
	.sm-orange:not(.sm-orange-vertical) > li > a {
		padding-left:10px;
		padding-right:10px;
	}
}

