﻿#topnav {
  display: block;
  float: right;
}

#topnav  a {
  display: block;
  float: left;
  font-size: 14px;
  line-height: 80px;
  padding: 0 8px;
  margin-right: 8px;
  color: #363a3c;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
#topnav  a:hover {
  color: #458ba7;
}

#topnav a#searchtoggl {
  line-height: 73px;
  margin-right: 0;
  padding: 0 0px;
  width:32px;
  height:32px;
  background:url(../images/SearchIcon_InnerPage_32x32.png) no-repeat;
  text-align:center
}


/** hidden search field **/
#searchbar {
  display: none;
  float: left;
  width: 98%;
  height:32px;
  border-top: 1px solid #d8d8d8;
  padding-left: 1%;
  padding-right: 1%;
  z-index: 9999;
  background: #fff;
  -webkit-box-shadow: -1px 2px 2px rgba(0,0,0,0.2);
  -moz-box-shadow: -1px 2px 2px rgba(0,0,0,0.2);
  box-shadow: -1px 2px 2px rgba(0,0,0,0.2);
}

#s {
  display: block;
  width: 88%;
  border: 0;
  outline: none;
  padding: 0;
  height:32px;
  line-height: 32px;
  font-size:14px;
  font-weight: bold;
  color: #676767;
}

#searchsubmit {
  display: block;
  float: right;
  margin-top: 2px;
  background: none;
  color: #717171;
  border: 0;
  outline: none;
  cursor: pointer;
   width:32px;
  height:32px;
  background:url(../images/Search_Icon_red_32x32.png) no-repeat;
}

/** clearfix **/
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
 
