/*声明 WebFont*/
            @font-face {
            font-family: 'Microsoft Jhenghei web';
            src: url('font/jhenghei.eot');
            src:
                url('font/jhenghei?#font-spider') format('embedded-opentype'),
                url('font/jhenghei.woff') format('woff'),
                url('font/jhenghei.ttf') format('truetype'),
                url('font/jhenghei.svg') format('svg');
            font-weight: normal;
            font-style: normal;
            }
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	font-family: "Microsoft JhengHei", "Microsoft Jhenghei web" ,"Sans-Serif", "黑体","宋体"; 
	font-size:20px;
	background-color:#e8f5fe;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*All really starts from here*/
a {
	color:#010101;
	text-decoration:none;
	padding-top:1px;
	padding-bottom:1px;
	padding-left:8px;
	padding-right:8px;
}
a:hover {
	background-color:#ADD8E6;
	border-radius:5px;
	color: #000;
}
.wrapper {
	width: 1100px;
	margin:auto;
	border-radius: 15px;
	border:#EEEEEE solid 1px;
	background:#FDFDFD;
	padding:15px;
	margin:15px auto 15px auto;
}
.footer {
	text-align:center;
	margin-top:20px;
}
.title h1 {
	text-align:center;
	margin-top:10px;
	margin-bottom:20px;
	font-size:200%;
	font-weight:bold;
}
h2 {
	font-size:160%;
}
h3 {
	font-size: 140%;
}
.title {
	text-align:center;
	margin-bottom:20px;
}
.chapter{
	border-bottom:#DDD 2px solid;
	padding:3px;
	font-weight:bold;
	position:relative;
}
.chapter .title-alt {
	font-weight:normal;
	/*display:none;*/
	position:absolute;
	left:0px;
	top:28px;
	width:60%;
	opacity:0;
	background:#BCDBEA;
	border-radius:5px;
	color:#FEFEFE;
	/*height:0px;*/
	padding:0px;
}
.chapter sup:hover + .title-alt{
	display:block;
	padding:8px;
	height:auto;
	opacity:1;
	-webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
}
.sidebar {
	width:450px;
	float:left;
	text-align:right;
	color:#666666;
	line-height:1.1em;
}
.content {
	width:375px;
	float:left;
	margin-left:20px;
}
.content .menu{
	list-style:none;
	text-align:right;
	font-size:1.5em;
	line-height:1.15em;
}
.content .menu li{
	padding-top:1px;
	padding-bottom:1px;
	padding-left:8px;
	position:relative;
	vertical-align:center;
	display:list-item;
}
.content .menu .alt{
	position:absolute;
	left:100%;
	top:0%;
	opacity:0;
	-webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
	/*display:none;*/
	/*background-color:#BCDBEA;*/

}
.content .menu li a:hover + .alt{ 
	/*display:block; */
	-webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
     opacity: 1;
} 
.content .menu li .alt .arraw {
	width:0;
	height:0;
	border-width:8px;
	border-style:solid dashed dashed dashed;
	border-color:transparent #CCC transparent transparent ;
	line-height:0;font-size:0;
	position:relative;
	top:-7px;
}
.content .menu .alt .text{
	position:absolute;
	left:100%;
	top:0%;
	background-color:#CCC;
	padding:10px;
	border-radius:5px;
	font-size:60%;
	font-weight:normal;
	text-align:justify;
	min-width:200px;
	color:#FFF;
	line-height:1.2em;
}
.footer p {
	line-height:1.5em;
	font-size:80%;
}
.sup {
	font-size:50%;
	vertical-align:super;
	font-weight:bold;
}

@-webkit-keyframes fadeIn { 
	0% {  
		opacity:0;  
		transform: scale(0.6); 
	} 
 
	100% { 
		opacity:1; 
		transform: scale(1); 
	} 
} 
 /*Thanks http://www.helloweba.com/view-blog-269.html !*/
@keyframes fadeIn { 
	0% { opacity:0;} 
	100% { opacity:1; } 
} 
@-webkit-keyframes fadeIn-item { 
	0% { opacity:0; } 
	100% {opacity:1; } 
} 
 
@keyframes fadeIn-item { 
	0% { opacity:0; } 
	100% {opacity:1; } 
} 