You can try changing this:
#header {
clear: both;
padding: 5px 0pt 80px;
position: relative;
}
to this;
#header {
clear: both;
padding: 5px 0pt 10px;
position: relative;
}
and this:
#breadcrumb {
background: url(“images/bg-breadcrumb.png”) repeat-x scroll 0% 0% transparent;
border-bottom: 1px solid #FFFFFF;
color: #666666;
height: 50px;
line-height: 50px;
}
#breadcrumb .subscribe img {
padding: 13px 0pt 0pt 10px;
}
to this:
#breadcrumb {
background: url(“images/bg-breadcrumb.png”) repeat-x scroll 0% 0% transparent;
border-bottom: 1px solid #FFFFFF;
color: #666666;
height: 27px;
line-height: 27px;
}
#breadcrumb .subscribe img {
padding: 2px 0pt 0pt 10px;
}
It’s just a guess, so be sure to make a backup copy before you test to see if it works the way you want it to.