﻿@charset "UTF-8";

body {
	margin: 0px;
	padding: 0px;
	position: relative;
	display: block;
	font-family:"微軟正黑體", "Microsoft JhengHei";
}

.pointer {
	cursor: pointer;
}

.center {
	margin: 0 auto;
}

.border {
	border: 1px solid #ccc;
}

.hide-overflow{
	overflow:hidden;
}

.inline-block {
	display: inline-block;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.fixed{
	position:fixed;
}

.absolute-left-top {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
}

.absolute-right-top {
	display: block;
	position: absolute;
	right: 0px;
	top: 0px;
}

.absolute-right-bottom {
	display: block;
	position: absolute;
	right: 0px;
	bottom: 0px;
}

.absolute-left {
	display: block;
	position: absolute;
	left: 0px;
}

.absolute-left-bottom {
	display: block;
	position: absolute;
	left: 0px;
	bottom:0px;
}

.absolute-right {
	display: block;
	position: absolute;
	right: 0px;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.clear {
	clear: both;
}

.finish-show, .hide {
	display: none;
}

.block {
	display: block;
}

.article-block {
	width: 950px;
	position: relative;
	overflow: hidden;
}

.black, .black:hover {
	color: black;
}

.fill-width {
	width: 100%;
}

.width-10{
	width:10px;
}

.height-1000{
	height:1000px;
}

.font-18-b{
	font-size:18px;
	font-weight:bolder;
}

.font-12{
	font-size:12px;
}

.v-top{
	vertical-align:top;
}

.text-right{
	text-align:right;
}

.text-center{
	text-align:center;
}

.hover-opacity:hover{
	opacity:0.5;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}

.level1 {
	z-index: 1;
}

.level2 {
	z-index: 2;
}

.level3 {
	z-index: 3;
}

.level4 {
	z-index: 4;
}

.level5 {
	z-index: 5;
}

.width-50p{
	width:50%;
}

.margin-left-20{
	margin-left:20px;
}