nav {   
    display: block;
    text-align: center;
	margin-left:0;
  }
  nav ul {
    margin: 0;
    padding:0;
    list-style: none;
  }
  .nav a {
    display:block; 
    background: #AA151B;/*#111; NAV BUTTON ORIGINAL COLOR*/
    color:#fff; 
    text-decoration: none;
	padding: .8em 1.8em;
    text-transform: uppercase;
    font-size: 11px /*100%*/;letter-spacing: 2px;
	height:25px; /* Menu height */
    text-shadow: 0 -1px 0 #000;
    position: relative;
  }
  .nav{  
    vertical-align: top; 
    display: inline-block;
    box-shadow: 1px -1px -1px 1px #000, -1px 1px -1px 1px #fff, 0 0 6px 3px #fff;
    border-radius:6px;
  }
  .nav li{position: relative;}
  .nav > li { 
    float:left; 
    border-bottom: 4px orange /*#CC0033*/ solid; /*#aaa; NAV BUTTON ORIGINAL COLOR*/
	border-top: 4px orange /*#CC0033*/ solid;/*#aaa; NAV BUTTON ORIGINAL COLOR*/
    margin-right: 1px; 
  } 
  .nav > li > a {
	width:116px; /* Menu Width */

	margin-bottom:1px;
    box-shadow:inset 0 2em .33em -.5em #AA151B; /*#555; NAV BUTTON ORIGINAL COLOR*/

  }
  .nav > li:hover , .nav > li:hover >a{  /*border-bottom-color:orange;*/ border-top-color:orange;}
  .nav li:hover > a { color:orange; }
  .nav > li:first-child  { border-radius: 4px 0 0 4px;} 
  .nav > li:first-child>a{border-radius: 4px 0 0 0;}
  .nav > li:last-child  { 
  	border-radius: 0 0 4px 0; 
  	margin-right: 0;
  } 
  .nav > li:last-child >a{border-radius: 0 4px 0 0; }
  .nav li li a { margin-top:1px}
  
  
  /* arrow */
    .nav li a:first-child:nth-last-child(2):before { 
     content:""; 
     position: absolute; 
     height:0; 
     width: 0; 
     border: 5px solid transparent; 
     top: 50% ;
     right:5px;  
   }
   
   
   
   
   
   /* submenu positioning*/
.nav ul {
  position: absolute;
  white-space: nowrap;
  border-bottom: 5px solid  orange;
  z-index: 1;
  left: -99999em;
}
.nav > li:hover > ul {
  left: auto;
  padding-top: 5px  ;
  min-width: 100%;
}
.nav > li li ul {  border-left:1px solid #fff;}


.nav > li li:hover > ul { 
 /* margin-left: 1px */
  left: 100%;
  top: -1px;
}
/* arrow hover styling */
.nav > li > a:first-child:nth-last-child(2):before { 
  border-top-color: #aaa; 
}
.nav > li:hover > a:first-child:nth-last-child(2):before {
  border: 5px solid transparent; 
  border-bottom-color: orange; 
  margin-top:-5px
}
.nav li li > a:first-child:nth-last-child(2):before {  
  border-left-color: #aaa; 
  margin-top: -5px
}
.nav li li:hover > a:first-child:nth-last-child(2):before {
  border: 5px solid transparent; 
  border-right-color: orange;
  right: 10px; 
}



[class*="icon-"] {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: text-top;
  background-image: url("../img/icons.png");
  background-repeat: no-repeat;
  background-color: transparent;
  font: 0/0 serif;
  text-shadow: none;
  color: transparent;
}

.icon-home {
  background-position: 0 0;
}

.glass{
	/* background styles */
	position: relative;
	display: inline-block;
	padding: 15px 25px;
	background-color: red; /*for compatibility with older browsers*/
	background-image: linear-gradient(red,lightred);

	/* text styles */
	text-decoration: none;
	color: #fff;
	font-size: 25px;
	font-family: sans-serif;
	font-weight: 100%;
}

.glass:after{
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: calc(100% - 0px);
	height: 50%;
	background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2)50%);
}

.glass:hover{
	background: linear-gradient(#CC0033,#CC0033);
}