<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
	Juiz DropDown Menu 
	Plugin by Geoffrey Crofte
	http://jq.creativejuiz.fr
	Free for personal use (cc)
	
	More info about license : http://jq.creativejuiz.fr/plugins-jquery/dropdown-menu.php
*/


.juizdropdown {
	position: relative;
	height: 43px;
	padding:0;
	font-size: 15px;
	line-height: 42px;
	text-align: center;
	text-transform: uppercase;
	z-index:10;
	right:0px;
	width:600px;
	float:left;
	left:0px;
	top:45px;
}
.juizdropdown li {
	position: relative;
	display: inline-block;
	list-style: none;
	background: rgb(212,212,212);
}

.juizdropdown a {
	display: inline-block;
	padding: 0 20px 0 22px;
	color: #6D6D6D;
	border: 0 none;
	text-decoration: none;
	
	outline: 0 none;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px
	

}
.juizdropdown li:hover
{
	background:#313743;
	text-shadow:none
}
.juizdropdown a:hover
{
	
	text-shadow:none;
	color:#fff
}
.juizdropdown a:focus { text-decoration: underline; }


.juizdropdown .juizSub,
.juizdropdown .juizSubSub {
	position: absolute;
	padding:0;
	display: none;
	width: 150px;
	height: auto;
	background: rgb(212,212,212);
	background: rgba(212,212,212,0.95);
	background-image: none;
	border: 1px solid #c0c0c0;
	border-top: 0;
	
}
.juizdropdown .juiSub {
	top: 41px; left: 0;
}
.juizdropdown .juizSub li {
	position:relative;
	display: block;
	padding: 0;
	width: auto;
	line-height: 1.3em;
	text-align: left;
	background: none;
}
.juizdropdown .juizSub a {
	display: block;
	width: auto;
	padding: 0.4em 0.4em;
	margin: 0 1em;
	border-bottom: 1px solid #eee;
	border-top: 1px solid #bbb;
	background: transparent url(../images/hover.png) scroll -150px 0px no-repeat;
	color: .6d6d6d;
	text-shadow: 1px 1px 0 .fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
}
.juizdropdown .juizSub a:hover
{
	color:#000;
}
.juizdropdown .juizSub li.first a { border-top: 0; } 
.juizdropdown .juizSub li.last a { border-bottom: 0; }

.juizdropdown .juizSubSub {
	right: -150px; top:0;
	
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	border-radius: 10px;
}

.juizdropdown .hasSub &gt; a {
	background: url(../images/arrow_down.png) 96% 50% no-repeat;
}
.juizdropdown li.hasSubSub {
	background: transparent url(../images/arrow_right.png) 95% 50% no-repeat;
}

.juizClear { clear: left; height: 0; overflow: hidden; }

@media (max-width:640px) {
	.juisdropdown .juizSubSub {
		display:none;
	}
	.juizdropdown,
	.juizdropdown .juizSub,
	.juizdropdown .juizSub li,
	.juizdropdown .juizSub li a	{
		position:static;
		display: inline-block;
		width: auto;
		height:auto;
		text-align:left;
	}
	.juizdropdown {
		margin: 5px;
		padding: 12px;
	}
	.juizdropdown ul {
		box-shadow: 0 0 0 !important;
		background: none !important;
		border:0 !important;
		border-radius:0 !important;
	}
	.juizdropdown li {
		background-image: none;
	}
	.juizdropdown li a {
		border:0 !important;
		padding-left:0;
	}
	.juizdropdown .juizSub a {
		padding: 0;
		margin: 0;
	}
	.juizdropdown .juizSub li + li {
		padding-left: 12px;
	}
	.juizdropdown .juizSub li + li a:before {
		content: "|";
		position:relative;
		left:-8px;
	}
	.juizdropdown &gt; li {
		display: block;
	}
	.juizdropdown li.hasSubSub {
		background:none;
	}
	.juizdropdown .hasSub {
		line-height: 24px;
	}
	.juizdropdown li + .hasSub {
		margin-top: 12px;
	}
	.juizdropdown .hasSub &gt; a {
		background: transparent url(../img/arrow_right.png) 96% 50% no-repeat;
	}
</pre></body></html>