body{  
    margin: 0;  
    padding: 0;  
}  
* html body{  
    overflow: hidden;  
    text-align: center; 
}   
div#headerArea {  
    position: fixed !important;  
    position: absolute;  
    top: 0;  
    left: 0;  
    width: 100%;  
    height: 151px;  
    background-color: #ffffff;  
    color: #fff;  
	z-index: 9999;
}  

/*大きいモニタの場合非表示にする*/
 @media screen and (min-width: 1024px) {
div#headerArea {
	visibility: hidden;
}
}