<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url(core.css);
/*
---------------------------------------------------------------
  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-clean &gt; li &gt; a { ... } instead of .sm-clean a { ... }
---------------------------------------------------------------*/
.navbar-default .navbar-nav&gt;.active&gt;a, .navbar-default .navbar-nav&gt;.active&gt;a:focus, .navbar-default .navbar-nav&gt;.active&gt;a:hover {
    color: white;
    background: #EC008C;
}

.nav.navbar-nav, .ddmenu {
    color: white;
    background: #EC008C;
}
.nav.navbar-nav {
    width: 100%;
}
.ddmenu_wrap {
    padding-left: 0px !important;
}

.navbar-default .navbar-nav&gt;li&gt;a {
    color: white;
    font-size:14px;
    text-transform: uppercase;
}
/* Menu box
===================*/
	.menu-top {
		background-color: #0096e1;
		min-height: 40px;
		width: 100%;
		float: left;
	}
	#menu-button {
		display: none;
		color: #FFF;
		padding: 10px;
		float: left;
		font-size: 20px;
		cursor: pointer;
		width: 100%;
		border-bottom:1px solid rgba(0,0,0,0.05);
		height: 40px;
	}
	.sm-clean {
		padding:0 10px;
	}
	.sm-clean-vertical {
		padding:0px;
		-moz-border-radius:5px;
		-webkit-border-radius:5px;
		border-radius:5px;
	}
	.sm-clean ul {
		background:#fff;
		-moz-box-shadow:0 5px 9px rgba(0,0,0,0.2);
		-webkit-box-shadow:0 5px 9px rgba(0,0,0,0.2);
		box-shadow:0 5px 9px rgba(0,0,0,0.2);
	}
	/* first sub level carets */
	.sm-clean &gt; li &gt; ul:before {
		content:'';
		position:absolute;
		top:-14px;
		left:30px;
		width:0;
		height:0;
		overflow:hidden;
		border-width:7px; /* tweak size of the arrow */
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #FFF transparent;
	}
	.sm-clean &gt; li &gt; ul:after {
		content:'';
		position:absolute;
		top:-14px;
		left:30px;
		width:0;
		height:0;
		overflow:hidden;
		border-width:7px;
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #fff transparent;
	}
	/* no carets for vertical main */
	.sm-clean-vertical &gt; li &gt; ul:before, .sm-clean-vertical &gt; li &gt; ul:after {
		display:none;
	}


/* Menu items
===================*/

	.sm-clean a {
		padding:0px 15px;
		color:#FFF;
		font-size: 14px;
	}
	.sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active,
	.sm-clean a.highlighted {
		background-color: #008DD3;
		color: #FFF;
	}
	.sm-clean-vertical a:hover, .sm-clean-vertical a:focus, .sm-clean-vertical a:active,
	.sm-clean-vertical a.highlighted {
		background:#fff;
		color: #111;
	}
	.sm-clean a.has-submenu {
		padding-right: 15px;
	}
	.sm-clean-vertical a,
 	.sm-clean ul a {
		padding:0px 15px;
	}
	.sm-clean-vertical a.has-submenu,
 	.sm-clean ul a.has-submenu {
		padding-right:35px;
	}
	.sm-clean ul a {
		color: #111;
	}
	.sm-clean ul a:hover, .sm-clean ul a:focus, .sm-clean ul a:active,
	.sm-clean ul a.highlighted {
		color:#008DD3;
		background:#eee;
	}
	/* current items - add the class manually to some item or check the "markCurrentItem" script option */
	.sm-clean a.active, .sm-clean a.active:hover, .sm-clean a.active:focus, .sm-clean a.active:active {
		background-color:#008DD3;
	}

	ul.sm-vertical a {
		color: #111;
	}

/* Sub menu indicators
===================*/

	.sm-clean a span.sub-arrow {
		position:absolute;
		right:12px;
		top:50%;
		margin-top:-2px;
		/* 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:4px; /* tweak size of the arrow */
		border-style:solid dashed dashed dashed;
		border-color:#FFF transparent transparent transparent;
	}
	.sm-clean &gt; li &gt; a &gt; span.sub-arrow {
		display: none;
	}
	.sm-vertical &gt; li &gt; a &gt; span.sub-arrow {
		display: block;
	}
	.sm-clean-vertical a span.sub-arrow,
 	.sm-clean ul a span.sub-arrow {
		right:10px;
		top:50%;
		margin-top:-5px;
		border-width:5px;
		border-style:dashed dashed dashed solid;
		border-color:transparent transparent transparent #555;
	}


/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -&gt; "more..." -&gt; "more..." in the default download package
===================*/

	.sm-clean span.scroll-up, .sm-clean span.scroll-down {
		position:absolute;
		display:none;
		visibility:hidden;
		overflow:hidden;
		background:#fff;
		height:20px;
		/* width and position will be automatically set by the script */
	}
	.sm-clean span.scroll-up:hover, .sm-clean span.scroll-down:hover {
		background:#eee;
	}
	.sm-clean span.scroll-up-arrow, .sm-clean span.scroll-down-arrow {
		position:absolute;
		top:0;
		left:50%;
		margin-left:-6px;
		/* 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:6px; /* tweak size of the arrow */
		border-style:dashed dashed solid dashed;
		border-color:transparent transparent #555 transparent;
	}
	.sm-clean span.scroll-up:hover span.scroll-up-arrow {
		border-color:transparent transparent #D23600 transparent;
	}
	.sm-clean span.scroll-down-arrow {
		top:8px;
		border-style:solid dashed dashed dashed;
		border-color:#555 transparent transparent transparent;
	}
	.sm-clean span.scroll-down:hover span.scroll-down-arrow {
		border-color:#D23600 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-clean:not(.sm-clean-vertical) &gt; li &gt; a {
		padding-left:8px;
		padding-right:8px;
	}
	.sm-clean:not(.sm-clean-vertical) &gt; li &gt; a.has-submenu {
		padding-right:25px;
	}
}
@media screen and (max-width: 750px) {
	.sm-clean:not(.sm-clean-vertical) &gt; li &gt; a {
		padding-left:3px;
		padding-right:3px;
	}
	.sm-clean:not(.sm-clean-vertical) &gt; li &gt; a.has-submenu {
		padding-right:25px;
	}
}*/


@media screen and (max-width: 700px) {

	/* The following will make the sub menus collapsible for small screen devices (it's not recommended editing these) */
	ul.sm-clean{width:100% !important;display: none;float: left;}
	#menu-button{display: block;}
	ul.sm-clean ul{display:none;position:static !important;top:auto !important;left:auto !important;margin-left:0 !important;margin-top:0 !important;width:auto !important;min-width:0 !important;max-width:none !important;}
	ul.sm-clean&gt;li{float:none;}
	ul.sm-clean&gt;li&gt;a,ul.sm-clean ul.sm-nowrap&gt;li&gt;a{white-space:normal;}
	ul.sm-clean iframe{display:none;}

	/* Uncomment this rule to disable completely the sub menus for small screen devices */
	/*.sm-clean ul, .sm-clean span.sub-arrow, .sm-clean iframe {
		display:none !important;
	}*/


/* Menu box
===================*/

	.sm-clean {
		padding:0;
	}
	.sm-clean ul {
		border:0;
		padding:0;
		-moz-border-radius:0;
		-webkit-border-radius:0;
		border-radius:0;
		-moz-box-shadow:none;
		-webkit-box-shadow:none;
		box-shadow:none;
	}
	/* no carets */
	.sm-clean &gt; li &gt; ul:before, .sm-clean &gt; li &gt; ul:after {
		display:none;
	}


/* Menu items
===================*/

	.sm-clean a {
		color:#FFF;
		background:transparent;
	}
	.sm-clean a.current {
		background-color:#008DD3;
		color:#FFF;
	}
	/* add some text indentation for the 2+ level sub menu items */
	.sm-clean ul a {
		border-left:15px solid transparent;
	}
	.sm-clean ul ul a {
		border-left:30px solid transparent;
	}
	.sm-clean ul ul ul a {
		border-left:45px solid transparent;
	}
	.sm-clean ul ul ul ul a {
		border-left:60px solid transparent;
	}
	.sm-clean ul ul ul ul ul a {
		border-left:75px solid transparent;
	}


/* Sub menu indicators
===================*/

	.sm-clean a span.sub-arrow,
	.sm-clean ul a span.sub-arrow {
		top:50%;
		margin-top:-8px;
		right:auto;
		left:15px;
		margin-left:0;
		width:16px;
		height:16px;
		font:normal 16px/18px monospace !important;
		text-align:center;
		border:0;
		text-shadow:none;
		background:#89BDEA;
		color: #FFF;
		-moz-border-radius:50px;
		-webkit-border-radius:50px;
		border-radius:50px;
		display: none;
	}
	.sm-clean-vertical a.has-submenu, .sm-clean ul a.has-submenu {
		padding-right: 15px;
		padding-left: 15px;
	}
	/* Hide sub indicator when item is expanded - we enable the item link when it's expanded */
	.sm-clean a.highlighted span.sub-arrow {
		display:none !important;
	}


/* Items separators
===================*/

	.sm-clean li {
		border-top:1px solid rgba(0,0,0,0.05);
	}
	.sm-clean &gt; li:first-child {
		border-top:0;
	}

}</pre></body></html>