#topbar {
  display: block;
  height: 80px;
  padding: 0 15px;
  background: #fff;
}

#fullimg {
  display: block;
  width: 100%;
  height: 360px;
  background: url('../images/fullscreen-nintendo-building.jpg') no-repeat;
  background-size: 100%;
}




/** hidden search field **/
#searchbar {
  display: none;
  float: left;
  width: 100%;
  height: 62px;
  margin-top: 75px;
  /* border-top: 1px solid #319bd6; */
  border-bottom: 1px solid #ddd;
  padding-left: 25px;
  padding-right: 10px;
  z-index: 9999;
  background: #fff;
}

#gsearchbar {
    display: none;
    float: left;
    width: 98%;
    height: 62px;
    margin-top: 100px;
    /* border-top: 1px solid #319bd6; */
    border-bottom: 1px solid #ddd;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 9999;
    background: #fff;
}

#s {
  display: block;
  width: 88%;
  outline: none;
  padding: 0 0 0 40px;
  margin-top: 10px;
  height: 40px;
  line-height: 40px;
  font-size: 1.0em;
  font-weight: bold;
  color: #666;
}

#searchsubmit {
  display: block;
  float: left;
  margin-top: 10px;
  padding-right: 10px;
  background: none;
  color: #319bd6;
  border: 0;
  outline: none;
  cursor: pointer;
}

/** clearfix **/
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
 
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }


input {
	outline: none;
}
input[type=search] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	font-family: inherit;
	font-size: 100%;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button {
	display: none; 
}

input[type=search] {
	background: #fff;
	border: solid 1px #fbc619;
	padding: 7px 10px 7px 10px;
	width: 55px;
	
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
	border-radius: 0.5em;
	
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
}
input[type=search]:focus {
	width: 130px;
	background: #fff;
	border-color: #fbc619;
}


input:-moz-placeholder {
	color: #333;
}
input::-webkit-input-placeholder {
	color: #333;
}