﻿
/* 修正IE 6下position: fixed會失效的調整 */
#DivDiog /* #後面填入要固定住的div id */
{
	position: fixed;
	right: 0px;
	Top: 0px;
	z-index: 10;
	margin: "10px"; 
	padding: "10px";
	border: "1px solid #cccccc";
}

* html {
	overflow: hidden;
}
* html body,
* html #mainDiv { /* #後面填入要捲動的div id */
	position:relative;
	width:100%;
	height:100%;
	overflow:auto;
}
* html #DivDiog { /* #後面填入要固定住的div id */
	position: absolute;
	right: 17px;
	Top: 0px;
}
