html, body { 
background-color: #004c99;
background-image: url("images/mobilebg.png");
background-repeat: no-repeat;
  background-position: 50% 50%;
  background-attachment: fixed;
 }

input[type=button], input[type=submit], input[type=reset] {
  background-color: #ffffff;
  border: 2px solid #ccc;
  border-radius: 8px;
  color: #000000;
  padding: 12px 20px 12px 20px;
  margin: 10px;
  cursor: pointer;
  font-size: 16px;}

input[type=text] {
 background-color: #ffffff;
 background-image: url('searchicon.png');
 background-position: 10px 10px;
 background-repeat: no-repeat;
 padding:10px;
 width: 100%;
 box-sizing: border-box;
 border: 2px solid #ccc;
 border-radius: 8px;
 font-size: 16px;
 background-color: white;
 background-image: url('searchicon.png');
 background-position: 10px 10px; 
 background-repeat: no-repeat;
 padding: 12px 20px 12px 40px;}


.mobile-menu {
display:block;
background-image: -webkit-linear-gradient(top, #004c99, #000000);
background-image: linear-gradient(to bottom, #004c99, #000000);
line-height: 1.6em;
font-weight: 400;
width:100%;
text-align:center;
position: fixed;
bottom:0px;
z-index:999;
left: 0px;

}
/*Strip the ul of padding and list styling*/
.mobile-menu ul {
list-style-type:none;
margin: 0 auto;
padding-left:0;
text-align:center;
width:100%;
position: absolute;
background: #ffffff;
}

/*Create a horizontal list with spacing*/
.mobile-menu li {
	display:inline-block;
	/*float: left;
	margin-right: 1px;*/
}

/*Style for menu links*/
.mobile-menu li a {
display:block;
min-width:140px;
text-align: left;
font-family: Verdana,Geneva,sans-serif; 
color: #000;
text-transform:uppercase;
background: #ffffff;
text-decoration: none;
margin-left:-5px;
padding: 10px 0;  
padding-left: 20px;
border-top: 1px solid #ffffff;
border-bottom: 1px solid #8f8f8f;
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-ms-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
}

/*Hover state for top level links*/
.mobile-menu li:hover a {
	color: #000000;
  background-color:#d2d5dc;
}

/*Style for dropdown links*/
.mobile-menu li:hover ul a {
	background: #f3f3f3;
	color: #2f3036;
	height: 40px;
	line-height: 40px;
}

/*Hover state for dropdown links*/
.mobile-menu li:hover .mobile-menu ul a:hover {
	color: #000000;
}

/*Hide dropdown links until they are needed*/
.mobile-menu li ul {
	display: none;
}

/*Make dropdown links vertical*/
.mobile-menu li ul li {
	display: block;
	float: none;
}

/*Prevent text wrapping*/
.mobile-menu li ul li a {
	width: auto;
	min-width: 100px;
	padding: 0 20px;
}


/*Style 'show menu' label button and hide it by default*/
.mobile-menu .show-menu {
	text-decoration: none;
	color: #fff;
	    background-image: -webkit-linear-gradient(top, #004c99, #000000);
    background-image: linear-gradient(to bottom, #004c99, #000000);
	text-align: center;
	padding: 10px 15px;
	display: none;
  cursor: pointer;
  text-transform: uppercase;
}

.mobile-menu .show-menu span{
   padding-left: 35px;
}

/*Hide checkbox*/
.mobile-menu input[type=checkbox]{
    display: none;
}

/*Show menu when invisible checkbox is checked*/
.mobile-menu input[type=checkbox]:checked ~ #menu{
    display: block;
}

/*Responsive Styles*/

@media screen and (max-width : 2222px){
  .mobile-menu .lines {
    border-bottom: 15px double #f8f8f8; 
    border-top: 5px solid #f8f8f8; 
    content:"";
    height: 5px; 
    width:20px;
    padding-right:15px;
  float: right;
}
	/*Make dropdown links appear inline*/
	.mobile-menu ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	.mobile-menu li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	.mobile-menu ul li, .mobile-menu li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.mobile-menu .show-menu {
		display:block;
	}
}