/* $Id: example.css,v 1.5 2006/03/27 02:44:36 pat Exp $ */

/*--------------------------------------------------
  REQUIRED to hide the non-active tab content.
  But do not hide them in the print stylesheet!
  --------------------------------------------------*/
.tabber {
	display:none;
}
.tabberlive .tabbertabhide {
 display:none;
}

/*--------------------------------------------------
  ul.tabbernav = the tab navigation list
  li.tabberactive = the active tab
  --------------------------------------------------*/
ul.tabbernav
{
 margin:0px;
 padding: 5px 0px 0px 0px;
 border-bottom: 1px solid #d9d9d9;
}

ul.tabbernav li
{
 white-space:nowrap;
 list-style: none;
 margin: 0px;
 padding:0px 5px 0px 0px;
 display: inline;
 font-size:11px;
}

ul.tabbernav li a
{
 color: #000000;
 font-size:12px;
 font-weight:bold;
 padding: 4px 8px 2px 8px;
 margin: 0px;
 border: 1px solid #d9d9d9;
 border-bottom: none;
 background: #e0e0e0;
 text-decoration: none;
}

ul.tabbernav li a:link { color: #000000; }
ul.tabbernav li a:visited { color: #000000; }

ul.tabbernav li a:hover
{
 color: #fff;
 background:#abadb3;
 border-color: #d9d9d9;
}

ul.tabbernav li.tabberactive a
{
 background-color: #fff;
 border-bottom: 1px solid #fff;
}

ul.tabbernav li.tabberactive a:hover
{
 color: #000;
 background: white;
 border-bottom: 1px solid white;
}

/*--------------------------------------------------
  .tabbertab = the tab content
  Add style only after the tabber interface is set up (.tabberlive)
  --------------------------------------------------*/
.tabberlive .tabbertab {
 margin:0;
 padding:12px 0;
 border:1px solid #d9d9d9;
 border-top:0px;
 text-align: left;

 /* If you don't want the tab size changing whenever a tab is changed
    you can set a fixed height */

 height:65px;

 /* If you set a fix height set overflow to auto and you will get a
    scrollbar when necessary */

 /* overflow:auto; */
}

/* If desired, hide the heading since a heading is provided by the tab */
.tabberlive .tabbertab h2 {
	display:none;
}

.tabberlive .tabbertab p {
	margin:0px;
	padding:0px;
}
.tabberlive .tabbertab p form {
 margin:0px;
 padding:0px;
}

.top-tab-logo {
	float:left; 
	width:130px;
	text-align:center;
}
.top-tab-logo img {
	max-width:90px;
	margin-top: 10px;
	
}
.top-tab-search {
	float:left; 
	display: block;
	width: 70%;
}

@media screen and (max-width:632px) {
  /* For mobile phones: */
.tabbertab-top {
    height:100px !important;
  }
.top-tab-logo {; 
	width:100%;
	text-align: center;
	height: 30px;
}
.top-tab-logo img {
	margin: 5px !important; 
	max-height: 100%;
}
.top-tab-search {
	width:100%;
	text-align: center;
	display: block;
}
#___gcse_0 {
    width: 100% !important;
	margin: 0 !important;
    padding: 5px 15px;
}
.gsc-search-button button {
height: 32px !important;
padding: 0 15px !important;
margin: 0 !important;
}


}  