
.subheader
{
	width: 100%;
	height: 60px;
	position: relative;
	display: none;
	background-color: #202123;
}

.subheader h2
{
	margin: 0;
	padding: 0;
	position: absolute;
	top: 20px;
	left: 40px;
	color: white;
    font-size: 20px;
    line-height: 20px;
    font-size: 2rem;
    line-height: 2rem;
    font-family: 'FuturaLT-Book', Arial, Verdana;
}

.subheader h2 a
{
	color: white;
}

.subheader h2 a:hover
{
    color: #896253;
}

.subheader #searchform
{
	width: 25%;
	min-width: 200px;
    position: absolute;
    top: 0;
    right: 40px;
}

.subheader #searchform input[type='text']
{
    width: 82%;
    height: 60px;
    padding: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 16px;
    font-size: 1.8rem;
    line-height: 1.6rem;
    font-family: Verdana, Arial;
    background-color: #2e2f32;
    border: none;
    vertical-align: middle;
    float: left;
}

.subheader #searchform input[type='text']:focus
{
    background-color: #4d4f54;
}

.subheader #searchform button
{
    width: 18%;
    height: 60px;
    vertical-align: middle;
    float: left;
    color: #fff;
    font-size: 20px;
    line-height: 16px;
    font-size: 2rem;
    line-height: 1.6rem;
    text-align: center;
    background-color: #2e2f32;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.subheader #searchform button:hover 
{ 
    font-size: 24px;
    line-height: 16px;
    font-size: 2.4rem;
    line-height: 1.6rem;
}


.mobile-subheader
{
    width: 100%;
    min-height: 70px;
    position: relative;
    background-color: #202123;
    text-align: center;
}

.mobile-subheader a
{
    display: inline-block;
    margin: 0;
    padding: 20px 40px 15px;
    color: white;
    font-size: 28px;
    line-height: 28px;
    font-size: 2.8rem;
    line-height: 2.8rem;
    font-family: 'FuturaLT-Book', Arial, Verdana;
}

.mobile-subheader a:hover
{
    color: #896253;
}



@media all and (min-width: 1025px) {

	.subheader
	{
		display: block;
	}

    .mobile-subheader
    {
        display: none;
    }
}