a {
	/* Fix outline of hyperlink */
	outline: none;                                  /* for Firefox Google Chrome  */
	behavior:expression(this.onFocus=this.blur());  /* for IE */
}
img {
	border:0px;
}
html{
	/* Fix : Chrome font-size > 12 Only */
	-webkit-text-size-adjust:none;
}
body{
	/* Fix : For .fixPosition class, preDefine the background of Page */
	background:transparent fixed;
}
html, body {
	width: 100%;
	height: auto !important; /* FF and compliant browsers should automatically size the body/html */
	height: 100%; /* ie will set the body/html to 100%, anything overflowing that will (incorrectly) resize it. go IE */
	min-height: 100%; /* when FF/etc automatically size the body/html it should be AT LEAST the height of the entire browser window, but can expand based on content. */
	margin: 0px;
	padding: 0px;
}
/******************************
Hack to fix DIV.table
Usage:
	<div class="table" style="position: absolute; width: 100%;">
		<div class="center middle">
			<div class="middle-fix">我在畫面正中間.</div>
		</div>
	</div>
*******************************/
.table{
	#position: relative;
	/*
	position: absolute;
	width: 100%;
	*/
	/* You may not want object as big as it's window */
	height: 100%;
	display: table;
	overflow: hidden;
}
.left{
	text-align: left;
}
.center{
	text-align: center;
}
.right{
	text-align: right;
}
.middle{
	#position: absolute;
	#top: 50%;
	display: table-cell;
	vertical-align: middle;
}
.top{
	vertical-align: top;
}
.bottom{
	vertical-align: bottom;
}
.middle-fix{
	#position: relative;
	#top: -50%
}


.tr{
	display: table-row;
}
.th{
	display: table-cell;
	font-weight: bold;
}
.td{
	display: table-cell;
}
/***
End DIV.table
***/

/******************************
Hack to DIV's float:left.
*******************************/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */
/***
End DIV's float:left
***/

/******************************
Hack to fixPosition packet
*******************************/
.fixPosition {
 	position:fixed;
 	_position:absolute;
	/* Override the Left & Top position on Node */
	left:0;
	top:0;
	_top:expression(eval(document.body.scrollTop));
	margin:0px;
	padding:0px;
	width:100%;
	height:100%;
}/***
End .fixPosition
***/