* {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@font-face {
	font-family: 'icomoon';
	src:url('http://treehouse-code-samples.s3.amazonaws.com/CSS-DD/codepen/stage-13/fonts/icomoon.eot');
	src:url('http://treehouse-code-samples.s3.amazonaws.com/CSS-DD/codepen/stage-13/fonts/icomoon.eot?#iefix') format('embedded-opentype'),
		url('http://treehouse-code-samples.s3.amazonaws.com/CSS-DD/codepen/stage-13/fonts/icomoon.woff') format('woff'),
		url('http://treehouse-code-samples.s3.amazonaws.com/CSS-DD/codepen/stage-13/fonts/icomoon.ttf') format('truetype'),
		url('http://treehouse-code-samples.s3.amazonaws.com/CSS-DD/codepen/stage-13/fonts/icomoon.svg#icomoon') format('svg');
}

/*to solve thead menu issue with disabled dropdownlist*/
select:disabled {
    opacity: 10;
}



body {
    margin: 0;
    background: #ecf0f1;
    /*color: #fff;*/
    font-family: sans-serif;
    line-height: 1.5;
   

}
ul {
  list-style: none;
  padding: 0;
  margin: 0; 
  opacity:10;
 
}
.main-header {
  margin: auto;
  /*width: 90%;
  min-height: 90px;
  padding: 1em 2em;
  border: 2px solid #2675a9;
  border-top: none;
  border-radius: 0 0 5px 5px;
	background: #2980b9;*/
}
  .main-header:after {
    content: " ";
    display: table;
    clear: both;
  }
.logo {
	display: block;
	text-decoration: none;
  float: left;
  margin-top: 5px;
}
  .logo::before {
    color: #fff;
    content: "\e001";
    font-weight: normal;
    font-style: normal;
    font-size: 2.5em;
    font-family: "icomoon";
    -webkit-font-smoothing: antialiased;
  }

/* Nav Demo Styles -------------------- */

.main-nav,
.drop-nav {
    /*background: #2c3e50;*/
    /*background: #f7d7ab;*/
    background-color: rgba(247, 215, 171,1000);
    z-index:50;
    display: block;

 
}
.main-nav {
  float: right;
  border-radius: 4px;
  margin-top: 0px;
  border: solid 1px #1e2a36;
 

}
  .main-nav > li {
    float: left;
    border-left: solid 1px #1e2a36;
  }
  .main-nav li:first-child {
    border-left: none;
  }
    .main-nav a {
        /*color: #fff;*/
        color: yellow;
        display: block;
        padding: 10px 30px;
        text-decoration: none;
       
        /*color: black;*/
    }
.dropdown,
.flyout {
  position: relative;
  
}
.dropdown:after {
  content: "\25BC";
  font-size: .5em;
  display: block;
  position: absolute;
  top: 38%;
  right: 12%;
 
}
.drop-nav,
.flyout-nav {
    position: absolute;
    display: none;
    width: 200px;
    /*background-color:aliceblue;*/

}
    .drop-nav li {
        /*border-bottom: 1px solid rgba(255,255,255,.2);*/
        border-bottom: 1px solid rgba(0,0,0,.5);
    }
.dropdown:hover > .drop-nav,
.flyout:hover > .flyout-nav {
  display: block;
}
.flyout-nav {
  left: 100%;
  top: 0;
}
.flyout:hover a,
.flyout-nav {
  background: #395066;
}

/*Hovering colour__________________________________________________________*/
a:hover {
    background-color: #F4C257;
    color: black;
}

/* Add a color to the active/current link */
a.active {
    background-color: #4CAF50;
    color: white;
}

