@charset "utf-8";
/* CSS Document */
/*Strip the ul of padding and list styling*/

#navigationNew{
	
	height: 50px;
	background-color:#2f3036; 
	
}


#navigationNew2{
	
	height: 50px;
	background-color:#2f3036; 
	padding-left:280px;
	
}



#navigationNew ul {
    list-style-type:none;
    margin:0;
    padding:0;
    /*position: absolute;*/

	
}



#navigationNew2 ul {
    list-style-type:none;
    margin:0;
    padding:0;
    /*position: absolute;*/

	
}


/*Create a horizontal list with spacing*/
#navigationNew2 li {
    display:inline-block;

	float:left;
	padding:0 26px 0 26px;


}

#navigationNew li {
    display:inline-block;

	float:left;
	padding:0 34px 0 34px;


}






/*Style for menu links*/
#navigationNew2 li a {
    display:block;

    height: 50px;
    text-align: center;
    line-height: 50px;
    font-family: Arial, Helvetica, sans-serif;
	font-weight:600;
    color: #ea851c;

    text-decoration: none;
	text-transform:uppercase;
	

}
/*Hover state for top level links*/
#navigationNew2 li:hover a {
   background:#585858;
	text-decoration:none;

}
/*Style for dropdown links*/
#navigationNew2 li:hover ul a {
    background: #f3f3f3;
    color: #2f3036;
    height: 40px;
    line-height: 40px;
}
/*Hover state for dropdown links*/
#navigationNew2 li:hover ul a:hover {
    background: #666666;
    color: #fff;
}

#navigationNew2 ul li.active a{text-decoration:none;color:#ffe0a0;}

/*Hide dropdown links until they are needed*/
#navigationNew2 li ul {
    display: none;
}
/*Make dropdown links vertical*/
#navigationNew2 li ul li {
    display: block;
    float: none;
}
/*Prevent text wrapping*/
#navigationNew2 li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
}
/*Display the dropdown on hover*/
#navigationNew2 ul li a:hover + .hidden, .hidden:hover {
    display: block;
}













/*Style for menu links*/
#navigationNew li a {
    display:block;

    height: 50px;
    text-align: center;
    line-height: 50px;
    font-family: Arial, Helvetica, sans-serif;
	font-weight:600;
    color: #ea851c;

    text-decoration: none;
	text-transform:uppercase;
	

}
/*Hover state for top level links*/
#navigationNew li:hover a {
   background:#585858;
	text-decoration:none;

}
/*Style for dropdown links*/
#navigationNew li:hover ul a {
    background: #f3f3f3;
    color: #2f3036;
    height: 40px;
    line-height: 40px;
}
/*Hover state for dropdown links*/
#navigationNew li:hover ul a:hover {
    background: #666666;
    color: #fff;
}

#navigationNew ul li.active a{text-decoration:none;color:#ffe0a0;}

/*Hide dropdown links until they are needed*/
#navigationNew li ul {
    display: none;
}
/*Make dropdown links vertical*/
#navigationNew li ul li {
    display: block;
    float: none;
}
/*Prevent text wrapping*/
#navigationNew li ul li a {
    width: auto;
    min-width: 100px;
    padding: 0 20px;
}
/*Display the dropdown on hover*/
#navigationNew ul li a:hover + .hidden, .hidden:hover {
    display: block;
}














/*Style 'show menu' label button and hide it by default*/
.show-menu {
    font-family: Arial, Helvetica, sans-serif;;
    text-decoration: none;
    color: #fff;
    background: #ff6600;
    text-align: center;
    padding: 10px 0;
    display: none;
	font-weight:600;
	cursor: pointer;
	
}
/*Hide checkbox*/
input[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
input[type=checkbox]:checked ~ #menu{
    display: block;
}



	
/*Responsive Styles*/
@media screen and (max-width : 980px){
	

	
#navigationNew{
	
	height: 40px;
	background-color:#2f3036;  
}
	
	#navigationNew li {
	padding:0;

}
	
	
	
	#navigationNew2{
		height: 40px;
	padding-left: 0px;
}
	
#navigationNew2 li {

	padding:0;


}
	
    /*Make dropdown links appear inline*/
    #navigationNew ul {
        position: static;
        display: none;
			
    }
    /*Create vertical spacing*/
    #navigationNew li {
        margin-bottom: 1px;
		background-color:#2f3036; 
		
		text-align: center;
		
		
    }
	

    /*Make all menu links full width*/
   #navigationNew ul li, li a {
        width: 100%;
		padding:0;
    }
    /*Display 'show menu' link*/
    .show-menu {
        display:block;
    }
	
	
	
	    /*Make dropdown links appear inline*/
    #navigationNew2 ul {
        position: static;
        display: none;
			
    }
    /*Create vertical spacing*/
    #navigationNew2 li {
        margin-bottom: 1px;
		background-color:#2f3036; 
		
		text-align: center;
		
		
    }
	

    /*Make all menu links full width*/
   #navigationNew2 ul li, li a {
        width: 100%;
		padding:0;
    }
    /*Display 'show menu' link*/
    .show-menu {
        display:block;
    }
}
