/* CSSTerm.com Horizontal Easy DropDown CSS menu */

 

.drop_menu {

background:red;

padding:0;

margin:0;

list-style-type:none;

height:40px;

background-image:url('bg.jpg');
text-align:center;


}

.drop_menu li { float:left; }

.drop_menu li a {

padding:12px 55px;

display:block;

color:#fff;

text-decoration:none;

font:12px arial, verdana, sans-serif;

border-right:1px solid #75809a;
font-weight:bold;

}

 

/* Submenu */

.drop_menu ul {

position:absolute;

left:-9999px;

top:-9999px;

list-style-type:none;

}

.drop_menu li:hover { position:relative; background:#75809a;  }

.drop_menu li:hover ul {

left:0px;

top:38px;

background:#75809a;

padding:0px;

}


.drop_menu li:hover ul li a {

padding:10px;

display:block;

width:178px;

text-indent:15px;

background-color:#75809a;

}

.drop_menu li:hover ul li a:hover { background:#005555;  }


form.example input[type=text] {
    padding: 10px;
    font-size: 17px;
    border: 1px solid grey;
    float: left;
    width: 80%;
    background: #f1f1f1;
}

form.example button {
    float: left;
    width: 20%;
    padding: 10px;
    background: #2196F3;
    color: white;
    font-size: 17px;
    border: 1px solid grey;
    border-left: none;
    cursor: pointer;
}

form.example button:hover {
    background: #0b7dda;
}

form.example::after {
    content: "";
    clear: both;
    display: table;
}