* { 
    -webkit-font-smoothing: antialiased; 
} 

/* GLOBALS */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

::selection {
    background: transparent; 
}

::-moz-selection {
    background: transparent; 
}

.wrapper-demo {
    margin: 0px 0 0 0;
    *zoom: 1;
    font-weight: 400;
    padding-top:15px;
    padding-bottom:20px;
}

.wrapper-demo:after {
    clear: both;
    content: "";
    display: table;
}

.txtbox
{
    height:27px;
    line-height:27px;
    padding-left:10px;
    padding-right:10px;
    border:1px solid #ccc;
    margin-left:15px;
    float:left;
    width:160px;
}

a.btnSubmit
{
	font-family: 'Exo', sans-serif;
	text-transform:uppercase;
	font-weight: 400;
    width:116px;
    height:27px;
    color:#FFF;
    line-height:27px;
    text-align:center;
    background-color: #ce2008;
    background-image: -webkit-linear-gradient(bottom, #a51900, #fb2810);
    background-image: -moz-linear-gradient(bottom, #a51900, #fb2810);
    background-image: -o-linear-gradient(bottom, #a51900, #fb2810);
    background-image: linear-gradient(to top, #a51900, #fb2810);
    border: 0px solid #006699;
    display:block;   
    float:right; 
    margin-right:15px;
        text-decoration:none;
}


a.btnSubmit:hover
{
    background-color: #fc2c16;
    background-image: -webkit-linear-gradient(bottom, #e41a03, #fb2810 52%, #ff7b7b);
    background-image: -moz-linear-gradient(bottom, #e41a03, #fb2810 52%, #ff7b7b);
    background-image: -o-linear-gradient(bottom, #e41a03, #fb2810 52%, #ff7b7b);
    background-image: linear-gradient(to top, #e41a03, #fb2810 52%, #ff7b7b);

}

.hidden
{
    display:none;
}


/* DEMO 1 */

.wrapper-dropdown-1 {
    /* Size and position */
    position: relative; /* Enable absolute positionning for children and pseudo elements */
    width: 290px;
    padding-left: 10px;
    margin: 0 auto;
    height:27px;
    line-height:27px;
    border:1px solid #ccc;

    /* Styles */
    background: #fff;
    color: #515151;
    outline: none;
    cursor: pointer;

    /* Font settings */
    font-weight: normal;
    margin-bottom:12px;
    font-size:13px;
    background-image:url(../cna_flightview_menu-pointer_down.png);
    background-position:right center;
    background-repeat:no-repeat;
}

.wrapper-dropdown-1:after {
    /*content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -6px;
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent #f00;*/    
}

.wrapper-dropdown-1 .dropdown {
    /* Size & position */
    position: absolute;
    top: -10px;
    left: -1px;
    right: 0;
    width:290px;

    /* Styles */
    background: #fff;
    list-style: none;
    font-weight: normal; /* Cancels previous font-weight: bold; */

    /* Hiding */
    opacity: 0;
    pointer-events: none;
    z-index:1000;
    border:1px solid #ccc;
    max-height:120px;
    overflow:auto;
}

.wrapper-dropdown-1 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #9e9e9e;
    line-height:27px;
    padding-left:10px;
}

/* Hover state */
.wrapper-dropdown-1 .dropdown li:hover a {
    background: #eeeeee;
}

/* Active state */
.wrapper-dropdown-1.active .dropdown {
    opacity: 1;
    pointer-events: auto;
}

.wrapper-dropdown-1.active:after {
    border-color: #9bc7de transparent;
    border-width: 6px 6px 0 6px ;
    margin-top: -3px;
}

.wrapper-dropdown-1.active {
    background-image:url(../cna_flightview_menu-pointer_up.png);
    background-position:right center;
    background-repeat:no-repeat;
  /*
background: #9bc7de;
  background: -moz-linear-gradient(left,  #9bc7de 0%, #9bc7de 78%, #ffffff 78%, #ffffff 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,#9bc7de), color-stop(78%,#9bc7de), color-stop(78%,#ffffff), color-stop(100%,#ffffff));
  background: -webkit-linear-gradient(left,  #9bc7de 0%,#9bc7de 78%,#ffffff 78%,#ffffff 100%);
  background: -o-linear-gradient(left,  #9bc7de 0%,#9bc7de 78%,#ffffff 78%,#ffffff 100%);
  background: -ms-linear-gradient(left,  #9bc7de 0%,#9bc7de 78%,#ffffff 78%,#ffffff 100%);
  background: linear-gradient(to right,  #9bc7de 0%,#9bc7de 78%,#ffffff 78%,#ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bc7de', endColorstr='#ffffff',GradientType=1 );
*/
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-1 .dropdown,
.no-pointerevents .wrapper-dropdown-1 .dropdown {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown-1.active .dropdown,
.no-pointerevents .wrapper-dropdown-1.active .dropdown {
    display: block;
}

