-/**
 * IceMegaMenu Extension for Joomla 3.0 By IceTheme
 * 
 * 
 * @copyright	Copyright (C) 2012 IceTheme.com. All rights reserved.
 * @license		GNU General Public License version 2
 * 
 * @Website 	http://www.icetheme.com/Joomla-Extensions/icemegamenu.html
 *
 */
.collapse {
  overflow: visible;}
 
/* clear some styles */
.icemegamenu ul,
.icemegamenu li {
	list-style-type:none;
	padding:0;
	margin:0} 
 
 
/* begin mainmenu */ 
.icemegamenu > ul {
	position: relative;
	margin:0;
	padding:0;
	z-index: 999;
	clear: both;
	height:auto;}
	
	.icemegamenu > ul > li {
		display: block;
		float:left;
		margin: 0;
		border-right:7px solid transparent;
		padding:0;
		position:relative;
		z-index:699;}
		
		.icemegamenu > ul > li a.iceMenuTitle {
			position: relative;
			z-index: 90;
			display: block;
			/*font-family:"Crimson Text", Georgia, "Times New Roman", Times, serif;*/
			padding:0;
			font-size: 14px;
			color: #06c;
			/*text-shadow: 1px 1px 1px rgba(0,0,0,.25);*/
			text-decoration:none}
			
			.icemegamenu > ul > li  a.iceMenuTitle > span.icemega_title {
				padding:15px 12px;
				display: block; }		
		
				
			/* subtitles */
			.icemegamenu > ul > li span.icemega_desc {
				display:none;
				font-size:12px;
				font-family:Verdana, Geneva, sans-serif;
				padding:0;
				line-height:1.25em;
				color:rgba(255,255,255,.6)!important;
				margin-bottom: 0;
				margin-top: -9px;
				margin-left: 20px;
				text-shadow:none!important}

 				/* when dont have subtitle */
				.icemegamenu > ul > li >  a.iceMenuTitle > span.icemega_nosubtitle {}
					
					
				/* when is current and hover */	
				.icemegamenu > ul > li:hover > a.iceMenuTitle span.icemega_title,
				.icemegamenu > ul > li.active > a.iceMenuTitle span.icemega_title {
					background:#38698E;
					position:relative;}
				
				.icemegamenu > ul > li.active > a.iceMenuTitle span.icemega_title {
					color:#fff;}
				
				.icemegamenu > ul > li.active > a.iceMenuTitle span.icemega_title:after {
					content:"";
					position:absolute;
					background-image:url(../images/arrow_menu.png);
					width:30px;
					z-index:9;
					height:11px;
					left:50%;
					margin-left:-15px;
					top:0;}
					
 /* Submenu */
ul.icesubMenu {
    position: absolute;
    z-index: 600;
    padding: 0;
	margin:0 0 0 0;
    top:50px;
	opacity:0;
	left:0;
    visibility: hidden;
	background:#f0f0f0;
	/*background:rgba(56,105,142,.94);*/
    border: 1px solid rgba(255,255,255,.1);
	
	border-color: #999999;
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .5s ease-out;
	-ms-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
	transition: all .2s ease-out;}
			
	#icemegamenu > li:hover > ul.icesubMenu {
		visibility: visible;
		overflow:visible;
		margin-top:0;
		opacity:1;
		margin:0;}
			
		ul.icesubMenu ul > li {
			position:relative;
			z-index:599;}
			
			ul.icesubMenu > li a.iceMenuTitle {
				height: auto;
				display: block;
				font-size: 14px;
				
				padding: 0 14px 0 26px;
				margin:0;
				line-height: 25px;
				border-radius: 0;
				background: url(../images/point.png) no-repeat 10px 10px;
				border-bottom: 1px dotted rgba(255, 255, 255, .2)!important;
				-webkit-transition: all .2 ease-out;
				-moz-transition: all .2s ease-out;
				-ms-transition: all .2s ease-out;
				-o-transition: all .2s ease-out;
				transition: all .2s ease-out;}
				
				#icemegamenu > li:hover > ul.icesubMenu > li a.iceMenuTitle {
					padding-top:5px;
					padding-bottom:5px}
				
				
				@media (min-width: 979px) {
				ul.icesubMenu > li ul li:last-child > a.iceMenuTitle {
					border-bottom:none!important}
				}
				
				ul.icesubMenu > li a.iceMenuTitle span {
					padding:0!important;
					margin:0!important;}
					
				ul.icesubMenu > li li.parent:hover > a.iceMenuTitle,
				ul.icesubMenu > li a.iceMenuTitle:hover {
					background-color:rgba(0,0,0,.15);}
				
				 ul.icesubMenu li.active a.iceMenuTitle  {
					 background-color:rgba(0,0,0,.15); 
					 color: #ED7B23 }
 
				/* when is parent */
				ul.icesubMenu li.parent {
					background: url(../images/arrow.png) no-repeat 93% 45%;}
					
						
						.icemegamenu > ul ul li span.icemega_desc {
							display:block;
							margin-top:-5px!important;
							margin-bottom: 5px!important;}
				
				
				
				

 
/* Second Level Dropdown */
ul.icesubMenu ul > li > ul {
	top: -1px;
	left: 250px;
	z-index:99999;
	opacity: 0;
	visibility: hidden;
	box-shadow:none;
	transform: rotate(10deg);
	-ms-transform: rotate(10deg); /* IE 9 */
	-webkit-transform: rotate(10deg); /* Safari and Chrome */
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-ms-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out;
	border-top: 1px solid rgba(255,255,255,.1);
	margin: 0 0 0 20px;}
	
	
	ul.icesubMenu ul > li:hover > ul {
		opacity: 1;
		visibility: visible;
		transform: rotate(0deg);
		-ms-transform: rotate(0deg); /* IE 9 */
		-webkit-transform: rotate(0deg); /* Safari and Chrome */
		left: 230px;}
	
 
 
 
 
 /* Toggle for responsive */					
.ice-megamenu-toggle {
	 display: none;
	 margin: 0;}

.ice-megamenu-toggle a {
	display: block;
	width: 40px;
	height: 35px;
	text-indent:-9999em;
	font-size:18px;
	background-color:rgba(255,255,255,.15);
	background-image:url(../images/mobile_menu_btn.png);
	background-repeat:no-repeat;
	background-position:center;
	color:#fff;
	text-shadow:1px 1px 1px rgba(0,0,0,.25);
	text-align:center;
	opacity:1;
	margin-top:0;
	float: right;
	margin: 13px 0 12px;
	-webkit-transition:all .25s ease-out;
	-moz-transition:all .25s ease-out;
	-o-transition:all .25s ease-out; 
	transition:all .25s ease-out;} 
	
	.ice-megamenu-toggle a:hover {
		background-color:rgba(255,255,255,.3);
		text-decoration:none;
		opacity:1}		

		

 
/* Modules inside dropdown */
.icesubMenu .icemega_cover_module {
    padding: 0 15px;
	width:auto!important;
	color:#fff;
	color:rgba(255,255,255,.7);
	margin: 10px 10px 0px;
	-webkit-transition:all .25s ease-out;
	-moz-transition:all .25s ease-out;
	-o-transition:all .25s ease-out; 
	transition:all .25s ease-out;}
	
	#icemegamenu > li:hover > ul.icesubMenu .icemega_cover_module {
		padding-top:10px;
		padding-bottom:10px;}

	.icesubMenu .icemega_cover_module span.iceModuleTile {
		color:#fff;
		
		font-size:22px;
		text-shadow: 1px 1px 1px rgba(0,0,0,.3);
		margin-bottom:12px;
		display:block;}

.icesubMenu .icemega_cover_module a {
	color:#F0C237}
	
	
	.icesubMenu .icemega_cover_module .btn { 
		background:rgba(0,0,0,.15); 
		border:none; 
		color:#fff; 
		box-shadow:none;
		-webkit-transition:all .2s ease-out;
		-moz-transition:all .2s ease-out;
		-o-transition:all .2s ease-out; 
		transition:all .2s ease-out;
		border-radius:0}
		
		.icesubMenu .icemega_cover_module .btn:hover {
			background:rgba(255,255,255,.25);}
	
		
	.icesubMenu .icemega_cover_module form#login-form { margin:0}
	
	.icesubMenu .icemega_cover_module form#login-form .input-small { width:100%; border:none;}
		
		.icesubMenu .icemega_cover_module form#login-form .input-small:focus { box-shadow:none;}
	
	.icesubMenu .icemega_cover_module form#login-form .control-group { margin-bottom:12px;}
	
	.icesubMenu .icemega_cover_module form#login-form .input-prepend .add-on {
		border:none; 
		margin:0; 
		background:#72A2C2;
		border-radius: 0;}
		
	.icesubMenu .icemega_cover_module form#login-form ul.unstyled li a { 
		color:#fff}
	
	.ice_righttoleft{
		left:auto!important;
		margin-right:30px!important;
		margin-left:0!important;
		right:0!important;}
		
		#icemegamenu > li:hover > ul.ice_righttoleft {
			margin-right:0!important}
	