.header {
	height: 200px;
}

.header .fixbar {
	width: 100%;
	padding-top: 0px;
	padding-bottom: 200px;
	position: absolute; 
	transition:padding-bottom 0.2s;
        box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.2), inset 0px -1px 5px 1px rgba(255,255,255,1);
	background-image : url(bg01.png);
}

.fixed.header .fixbar {
	padding-bottom: 0px;
	margin-top: -0px;
	position: fixed;
}

.header .header_bottom {
	transition:margin-top 0.4s, opacity 0.4s 0.2s;
	opacity: 1;
}

.fixed.header .header_bottom {
	margin-top: -200px;
	transition:margin-top, opacity 0.4s;
	opacity: 0;
}
