Vete a la hoja de estilo llamada global.css y busca esto:
#panel {
width: 100%;
margin: 0 auto;
height: 25px;
line-height: 25px;
background: #000000 url(../../../images/bluesteel/panel.png) top left repeat-x;;
color: #797979;
font-size: 11px;
border-top: 1px solid #FFFFFF;
position: fixed;
bottom: 0px;
left: 0px;
right: 0px;
text-align: left;
}
Quita el position: fixed; dejándolo así:
#panel {
width: 100%;
margin: 0 auto;
height: 25px;
line-height: 25px;
background: #000000 url(../../../images/bluesteel/panel.png) top left repeat-x;;
color: #797979;
font-size: 11px;
border-top: 1px solid #FFFFFF;
bottom: 0px;
left: 0px;
right: 0px;
text-align: left;
}