
/* Horizontal Dropdown Menu
-----------------------------------*/
.horizontal, .horizontal ul {
    list-style: none;
	margin: 0;
	padding: 0;
}
.horizontal {
	font-size: 12px;
	width: 100%;
	float: right;
	margin-bottom: 20px;
}
.horizontal li {
	float: right;
	position: relative;
}
.horizontal li a {
	display: block;
	height: 2.9em;
	line-height: 2.9em;
	padding: 0 1.4em;
}
.horizontal ul {
	position: absolute;
	right: 0;
	top: 2.9em;
	display: none;
	z-index: 999;
	width: 160px;
}
.horizontal ul ul {
	top: 0;
	right: 160px;
}
.horizontal ul li {
	width: 100%;
}
.horizontal ul li a {
	overflow: hidden;
}
.horizontal li:hover > ul {
	display: block;
}
.horizontal li.parent > a {
	background-image: url(../images/arrow-left2.gif);
	background-position: left center;
	background-repeat: no-repeat;
	margin-left: 1em;
}
.horizontal > li.parent > a {
	background-image: url(../images/arrow-down2.gif);
}


.horizontal, .horizontal ul {
	-webkit-box-shadow: 2px 3px 0 rgba(150, 150, 150, 0.1);
	-moz-box-shadow: 2px 3px 0 rgba(150, 150, 150, 0.1);
	box-shadow: 2px 3px 0 rgba(150, 150, 150, 0.1);
}
.horizontal > li > ul {
	margin-right: -1px;
}
.horizontal ul ul {
	margin-top: -1px;
}
.horizontal li ul li:last-child {
	border-bottom: none;
}

/* horizontal white
-----------------------------------*/
.horizontal.white, .horizontal.white ul {
	border: 1px solid #ccc;
}
.horizontal.white, .horizontal.white li {
	background: #fff;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#fff), to(#f1f1f1));
	background: -moz-linear-gradient(#fff, #f1f1f1);
	background: linear-gradient(#fff, #f1f1f1);
}
.horizontal.white > li {
	border-left: 1px solid #ccc;
}
.horizontal.white li a {
	color: #444;
}
.horizontal.white li:hover {
	background: #fff;
}
.horizontal.white li:hover > a {
	color: #902452;
}
.horizontal.white ul li {
	border-bottom: 1px solid #ddd;
}
.horizontal.white li.parent > a {
	background-image: url(../images/arrow-left1.gif);
}
.horizontal.white > li.parent > a {
	background-image: url(../images/arrow-down1.gif);
}

/* horizontal black
-----------------------------------*/
.horizontal.black, .horizontal.black ul {
	border: 1px solid #555;
}
.horizontal.black, .horizontal.black li {
	background: #818181;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#818181), to(#676767));
	background: -moz-linear-gradient(#818181, #676767);
	background: linear-gradient(#818181, #676767);
}
.horizontal.black > li {
	border-left: 1px solid #555;
}
.horizontal.black li a {
	color: #fff;
}
.horizontal.black li:hover {
	background: #676767;
}
.horizontal.black ul li {
	border-bottom: 1px solid #555;
}

/* horizontal red
-----------------------------------*/
.horizontal.red, .horizontal.red ul {
	border: 1px solid #A55555;
}
.horizontal.red, .horizontal.red li {
	background: #E86F6F;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#E86F6F), to(#D16767));
	background: -moz-linear-gradient(#E86F6F, #D16767);
	background: linear-gradient(#E86F6F, #D16767);
}
.horizontal.red > li {
	border-left: 1px solid #A55555;
}
.horizontal.red li a {
	color: #fff;
}
.horizontal.red li:hover {
	background: #D16767;
}
.horizontal.red ul li {
	border-bottom: 1px solid #A55555;
}

/* horizontal green
-----------------------------------*/
.horizontal.green, .horizontal.green ul {
	border: 1px solid #AABF5D;
}
.horizontal.green, .horizontal.green li {
	background: #CBE86B;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#CBE86B), to(#B9D164));
	background: -moz-linear-gradient(#CBE86B, #B9D164);
	background: linear-gradient(#CBE86B, #B9D164);
}
.horizontal.green > li {
	border-left: 1px solid #AABF5D;
}
.horizontal.green li a {
	color: #444;
}
.horizontal.green li:hover {
	background: #B9D164;
}
.horizontal.green ul li {
	border-bottom: 1px solid #AABF5D;
}
.horizontal.green li.parent > a {
	background-image: url(../images/arrow-left1.gif);
}
.horizontal.green > li.parent > a {
	background-image: url(../images/arrow-down1.gif);
}

/* horizontal blue
-----------------------------------*/
.horizontal.blue, .horizontal.blue ul {
	border: 1px solid #588BAD;
}
.horizontal.blue, .horizontal.blue li {
	background: #6FB9E8;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#6FB9E8), to(#6AAAD6));
	background: -moz-linear-gradient(#6FB9E8, #6AAAD6);
	background: linear-gradient(#6FB9E8, #6AAAD6);
}
.horizontal.blue > li {
	border-left: 1px solid #588BAD;
}
.horizontal.blue li a {
	color: #fff;
}
.horizontal.blue li:hover {
	background: #6AAAD6;
}
.horizontal.blue ul li {
	border-bottom: 1px solid #588BAD;
}


/* Vertical Dropdown Menu
-----------------------------------*/
.vertical, .vertical ul {
    list-style: none;
	width: 246px;
	margin: -3px -3px 0 0;
	padding: 0;

}
.vertical {
	
}
.vertical li {
	position: relative;
}
.vertical ul {
	position: absolute;
	top: 0;
	right: 245px;
	width: 246px;
	display: none;
	z-index: 999;
	margin: 0;
		border: 1px solid #ccc;



}
.vertical a {
	display: block;
	height: 2.9em;
	line-height: 2.9em;
	padding: 0 1.4em;
}
.vertical ul li a {
	overflow: hidden;
}
.vertical li:hover > ul {
	display: block;
}
.vertical li.parent > a {
	background-image: url(../images/arrow-left1.gif);
	background-position: 240px center;
	background-repeat: no-repeat;
}



/* vertical white
-----------------------------------*/

.vertical.white li {
	background: #E0E0E0;
}
.vertical.white a {
	color: #3F3F3F;
	border: 0px solid #ccc;
	border-bottom: none;
}
.vertical.white li:hover {
	text-decoration : none;
     background: #1491FF; /* Old browsers */
     
        }
.vertical.white li:hover > a {
		color: #000;
}
.vertical.white li.parent > a {
	background-image: url(../images/arrow-left1.gif);
}

/* vertical black
-----------------------------------*/
.vertical.black, .vertical.black ul {
	border-bottom: 1px solid #555;
}
.vertical.black li {
	background: #818181;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#818181), to(#676767));
	background: -moz-linear-gradient(#818181, #676767);
	background: linear-gradient(#818181, #676767);
}
.vertical.black li a {
	color: #fff;
	border: 1px solid #555;
	border-bottom: none;
}
.vertical.black li:hover {
	background: #676767;
}

/* vertical red
-----------------------------------*/
.vertical.red, .vertical.red ul {
	border-bottom: 1px solid #A55555;
}
.vertical.red li {
	background: #E86F6F;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#E86F6F), to(#D16767));
	background: -moz-linear-gradient(#E86F6F, #D16767);
	background: linear-gradient(#E86F6F, #D16767);
}
.vertical.red li a {
	color: #fff;
	border: 1px solid #A55555;
	border-bottom: none;
}
.vertical.red li:hover {
	background: #D16767;
}

/* vertical green
-----------------------------------*/
.vertical.green, .vertical.green ul {
	border-bottom: 1px solid #AABF5D;
}
.vertical.green li {
	background: #CBE86B;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#CBE86B), to(#B9D164));
	background: -moz-linear-gradient(#CBE86B, #B9D164);
	background: linear-gradient(#CBE86B, #B9D164);
}
.vertical.green li a {
	color: #444;
	border: 1px solid #AABF5D;
	border-bottom: none;
}
.vertical.green li:hover {
	background: #B9D164;
}
.vertical.green li.parent > a {
	background-image: url(../images/arrow-left1.gif);
}

/* vertical blue
-----------------------------------*/
.vertical.blue, .vertical.blue ul {
	border-bottom: 1px solid #588BAD;
}
.vertical.blue li {
	background: #6FB9E8;
	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#6FB9E8), to(#6AAAD6));
	background: -moz-linear-gradient(#6FB9E8, #6AAAD6);
	background: linear-gradient(#6FB9E8, #6AAAD6);
}
.vertical.blue li a {
	color: #fff;
	border: 1px solid #588BAD;
	border-bottom: none;
}
.vertical.blue li:hover {
	background: #6AAAD6;
}
