﻿/*
    Jumpeye framework    
	Version: 1.0.0
	www.jumpeye.com
	
	Created by Jumpeye Components
 
 
    Menu style-3
*/

    .style-3 ul.main-level {
    	width: auto;
    	margin: 10px auto;
    	border: 1px solid #dcdcdc;
    	background: url(../../assets/ui/menus/style-003/texture.png);
    	-moz-border-radius: 10px;
    	-webkit-border-radius: 10px;
    	border-radius: 10px;
    }
    
	.style-3 ul.main-level li {
		float: left;
		border-right: 1px solid #dcdcdc;
		-moz-box-shadow: 1px 0 0 #fff;
		-webkit-box-shadow: 1px 0 0 #fff;
		box-shadow: 1px 0 0 #fff;
		position: relative;
	}
	
	.style-3 ul.main-level a {
		float: left;
		padding: 11px 36px;
		color: #666;
		font: 14px Arial, Helvetica;
		text-decoration: none;
		text-shadow: 0 1px 0 rgba(255, 255, 255, 0.68);
	}
          
	.style-3 ul.main-level li:hover > a { 
	    color: #000;
        background: rgba(255,255,255,0.6);  
     }

    /* menu arrow down */
    .style-3 ul.main-level > li.down > span.arrow-down {
        width: 0;
        border:  solid 4px; 
        border-color: #666 transparent  transparent  transparent; 
        position: absolute;
        right: 15px; top: 17px;
    }    
    
    .style-3 ul.main-level > li.down:hover > a+span.arrow-down,
    .style-3 ul.main-level > li.down:active > a+span.arrow-down { 
        border-color: #000 transparent transparent transparent; 
    }
    
    /* menu arrow layout (right) */
    .style-3 ul.sub-level > li.flyout > span.arrow-right {
        width: 0;
        border:  solid 4px; 
        border-color: transparent  transparent  transparent #666; 
        position: absolute;
        right: 11px; top: 16px;
    } 

    .style-3 ul.sub-level > li.flyout:hover > a+span.arrow-right,
    .style-3 ul.sub-level > li.flyout:active > a+span.arrow-right { 
        border-color: transparent transparent transparent #000; 
    }  
    
	.style-3 ul.main-level ul {
		margin: 20px 0 0 0;
		opacity: 0;
        display: none;
		position: absolute;
		top: 38px;
		left: -1px;
		z-index: 1;    
		background: url(../../assets/ui/menus/style-003/texture.png);
	}

	.style-3 ul.main-level li:hover > ul {
		opacity: 1;
        display: block;
		margin: 0;
	}
	
	.style-3 ul.main-level ul ul {
		top: 0;
		left: 100%; /* this arrange the submenu next to its parent menu */
		margin: 0 0 0 20px;
        z-index: 1;       
	}
	
	.style-3 ul.main-level ul li {
		float: none;
		display: block;
		border: 0;
		-moz-box-shadow: 0 1px 0 #dcdcdc, 0 2px 0 #fff;
		-webkit-box-shadow: 0 1px 0 #dcdcdc, 0 2px 0 #fff;
		box-shadow: 0 1px 0 #dcdcdc, 0 2px 0 #fff;
	}
	
	.style-3 ul.main-level ul li:last-child {  
		-moz-box-shadow: none;
		-webkit-box-shadow: none;
		box-shadow: none;    
	}
	
	.style-3 ul.main-level ul a {    
		padding: 11px 36px;
		min-width:  100px;
		display: block;
		white-space: nowrap;
		float: none;
		text-transform: none;
	}

    .style-3 ul.main-level > li:first-child > a:hover{
        border-top-left-radius: 10px;
        -moz-border-radius-topleft : 10px;
        -webkit-border-top-left-radius : 10px;
        border-bottom-left-radius: 10px;
        -moz-border-radius-bottomleft : 10px;
        -webkit-border-bottom-left-radius : 10px;        
    }
    
	.style-3 ul.main-level ul a:hover {
		background: rgba(255,255,255,0.6);
	}

    .style-3 ul.sub-level ul li:first-child {
        border-radius: 0;
    }
    
        
	.style-3 ul.main-level ul li:first-child > a {
        border: solid #dcdcdc;
        border-width: 1px 1px 0 1px;
	}

    .style-3 ul.main-level ul,
    .style-3 ul.main-level ul li:last-child,
    .style-3 ul.main-level ul li:last-child a {    
		-moz-border-radius: 0 0 10px 10px;
		-webkit-border-radius:0 0 10px 10px; 
        border-radius: 0 0 10px 10px;        
    }
    	   
    .style-3 ul.main-level ul li > a {
        border: solid #dcdcdc;
        border-width: 1px 1px 0 1px;        
    }

    .style-3 ul.sub-level ul,
    .style-3 ul.sub-level ul li:last-child a {
		-moz-border-radius: 0 0 10px 10px;
		-webkit-border-radius:0 0 10px 10px; 
        border-radius: 0 0 10px 10px;
    }    

	.style-3 ul.main-level ul li:last-child > a { border: 1px solid #dcdcdc; }    

	.style-3 ul.main-level ul ul li:first-child > a {
		-moz-border-radius: 10px 10px 0 0;
		-webkit-border-radius: 10px 10px 0 0; 
        border-radius: 0;
	}

    .style-3 ul.sub-level li:first-child > a { border-radius: 0 !important; }
    .style-3 ul.sub-level li > a { border-radius: 0 !important; }
    .style-3 ul.sub-level li:last-child > a { border-radius: 0 0 10px 10px !important; }
    
   
        
	/* style-3 Mobile */

	@media screen and (max-width: 767px) {

        .style-3 ul.main-level li:hover > ul,
        .style-3 ul.sub-level li:hover > ul { display: none; }

		.style-3.menu {	position: relative;	}

		.style-3.menu * {
			-moz-box-sizing: border-box;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;
		}

		/* menu icon */
		.style-3.menu-trigger {
			display: block; /* show menu icon */
            border: 1px solid #dcdcdc;
			height: 40px;
			line-height: 38px;
			cursor: pointer;		
			padding: 0 0 0 35px;
			color: #666;
            text-transform: uppercase;
            font-size: 14px;            
			background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAAPCAYAAADphp8SAAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAABAAAAAQBPJcTWAAAAB3RJTUUH3AcXCDMtaWGtPwAAACFJREFUeJxjTEtL+89ABcBEDUOoatAwBoyjsTYEwTCONQDytwajyt1MFAAAAABJRU5ErkJggg==) no-repeat 10px center, url(../../assets/ui/menus/style-003/texture.png); 
			-moz-border-radius: 10px;
			-webkit-border-radius: 10px;
			border-radius: 10px;
		}
		
        .style-3 ul.main-level * {
            color: #999 !important;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.68);
            box-shadow: none !important;
            border: 0 !important;
        }
     
		.style-3 ul.main-level {
			margin: 0; padding: 10px;
			position: absolute;
			top: 40px;
			width: 100%;
			z-index: 1;
            background: url(../../assets/ui/menus/style-003/texture.png);
			display: none;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;
		}

		.style-3 ul.main-level ul {
			position: static;
            display: none; /* hide submenus */
			opacity: 1;
			margin: 0;
			background: none;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;
		}

		.style-3 ul.main-level ul ul {
			margin: 0 0 0 0 !important;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;
		}

		.style-3 ul.main-level li {
			position: static;
			display: block;
			float: none;
			border: 0;
			margin: 5px;
            margin-right: 0px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;
		}

		.style-3 ul.main-level ul li{
			margin-left: 30px;
			-moz-box-shadow: none;
			-webkit-box-shadow: none;
			box-shadow: none;
		}

		.style-3 ul.main-level a{
			display: block;
			float: none;
			padding: 0;
        	-moz-border-radius: 0px !important;
        	-webkit-border-radius: 0px !important;
        	border-radius: 0px !important;
            padding: 5px !important;              
		}
        
	    .style-3 ul.main-level a:hover{
			color: #000 !important;
            text-shadow: none !important;
            background: none !important;
		}	

		.style-3 ul.main-level ul a{
			padding: 0;
			width: auto;
            margin-left: 0px;           
		}

		.style-3 ul.main-level ul a:hover{ background: none; color: #000; }
        
        .style-3 ul.main-level > li.down { position: relative; }
        .style-3 ul.sub-level > li.flyout { position: relative; }

        .style-3 ul.main-level > li.down > a > span.arrow-down,
        .style-3 ul.sub-level > li.flyout > a > span.arrow-right {
            width: 0 !important; height: 0 !important;
            border:  solid 4px !important;
            border-color: transparent transparent transparent #666 !important;
            position:  absolute;
            top: 9px;          
        }    

        .style-3 ul.main-level > li.down > a > span.down-active,
        .style-3 ul.sub-level > li.flyout > a > span.flyout-active {
            border-color: #000 transparent transparent transparent !important;
            top: 12px;  
        }
        
        .style-3 ul.main-level > li.down:hover > a > span.arrow-down {
            border-left-color:  #000 !important;
        }    
    
        .style-3 ul.main-level > li.down:hover > a > span.down-active {
            border-left-color: transparent !important;    
        }
               
	}


	/* iPad */
	.style-3.no-transition {
		-webkit-transition: none;
		-moz-transition: none;
		-ms-transition: none;
		-o-transition: none;
		transition: none;
		opacity: 1;
		visibility: visible;
		display: none;  		
	}

	.style-3 ul.main-level li:hover > .no-transition { display: block;	}



/* -- vertical -- */

    .style-3.vertical ul.main-level li:hover { background: #f7f7f7 !important; }
    .style-3.vertical ul.main-level li:hover > a { background: none !important; }
    
    .style-3.vertical ul.main-level > li.down:hover > a+span.arrow-down,
    .style-3.vertical ul.main-level > li.down:active > a+span.arrow-down,
    .style-3.vertical ul.sub-level > li.flyout:hover > a+span.arrow-right,
    .style-3.vertical ul.sub-level > li.flyout:active > a+span.arrow-right { border-color: transparent transparent transparent #000; } 

    .style-3.vertical ul.main-level ul li > a { box-shadow: none; }
    .style-3.vertical ul.main-level ul li:last-child a { box-shadow: none; } 
    .style-3.vertical ul.main-level ul li:first-child > a { box-shadow: none; border-top: none; }
       
	.style-3.menu.vertical ul li a { 
	   padding:10px !important;
       height: auto;
       display: block;
       float: none;
       white-space: normal;
    }
    
    .style-3.menu.vertical { height: auto; width: 100%; border: 0; }
    .style-3.menu.vertical ul.main-level { width: 100%; height: 100%; border: 1px solid #dcdcdc; }   


	.style-3.menu.vertical li{
    	list-style: none;
    	position: relative;
    	width:100%;
        height: auto;
    	background: url(../../assets/ui/menus/style-003/texture.png);
    	line-height: 30px;
    	cursor:pointer;
	}

    .style-3.vertical ul.sub-level { opacity: 1; display: block; }     
    
	.style-3.menu.vertical, .style-3.menu.vertical ul, .style-3.menu.vertical li{
	   padding:0;
	   margin:0;
	}
    
	.style-3.menu.vertical ul li.down:hover > ul.sub-level { display:block;	}
        
    .style-3.menu.vertical ul.sub-level,
    .style-3.menu.vertical ul.sub-level ul { 
        opacity: 1;
        display: none;
        position: absolute;
        width: 100%;
        top: -2px;
        left: 100%;
    }
    
    .style-3.menu.vertical ul.sub-level li:first-child { padding: 0 0 1px 0 !important; }
        
	.style-3.menu.vertical ul li.flyout:hover > ul.sub-level { display:block; }    
    
    .style-3.menu.vertical ul.sub-level > li.flyout > span.arrow-right,
    .style-3.menu.vertical ul.main-level > li.down > span.arrow-down {
        width: 0;
        border:  solid 4px; 
        border-color: transparent  transparent  transparent #666; 
        position: absolute;
        right: 11px; top: 14px;
    }

    .style-3.menu.vertical ul.sub-level > li.flyout:hover > span.arrow-right,
    .style-3.menu.vertical ul.main-level > li.down:hover > span.arrow-down {
        border-color: transparent  transparent  transparent #000; 
    } 
 
    .style-3.vertical ul.main-level > li:first-child { 
        border-top: 0 !important;
    }
 
    .style-3.vertical ul.sub-level > li:first-child,
    .style-3.vertical ul.main-level > li:first-child {
        border-top-left-radius : 10px;
        border-top-right-radius : 10px;
        border-right: 1px solid #dcdcdc;
        border-bottom: 1px solid #dcdcdc;
    } 
    
    .style-3.vertical ul.sub-level > li:first-child{
        border-top-left-radius : 0px;
        border-top-right-radius : 0px;
        border-left: 1px solid #dcdcdc;
        border-top: 1px solid #dcdcdc;
    }   
    
    .style-3.vertical ul.sub-level > li:last-child a{
        border: 0;
    }
    
    .style-3.vertical ul.sub-level > li,
    .style-3.vertical ul.sub-level > li:last-child { border-left: 1px solid #dcdcdc; }

    .style-3.vertical ul.sub-level > li,
    .style-3.vertical ul.main-level > li{
        border-right: 1px solid #dcdcdc;
        border-bottom: 1px solid #dcdcdc;
        border-top: 1px solid #fff;
    }

    .style-3.vertical ul.sub-level > li a,
    .style-3.vertical ul.sub-level > li a:last-child { border: 0; }
    
    .style-3.vertical ul.sub-level > li:last-child,
    .style-3.vertical ul.main-level > li:last-child {
        border-right: 1px solid #dcdcdc;
        border-bottom-left-radius : 10px;
        border-bottom-right-radius : 10px;
    }      
    
    
    /* active state */
    .style-3.menu.vertical li.active,
    .style-3.menu li.active > a {
		color: #9b9b9b;
        text-shadow: 0 1px 0 rgba(255, 255, 255, 1);
        background: rgba(0,0,0,0.05);
    } 
        
    .style-3.menu li.active:hover > a { background: rgba(255,255,255,0.6); }
    
    .style-3.menu.vertical li.active > a { background: none; }