/**
 * ---------------------------------------------
 * Best result is on FireFox ( of course! :D )
 * ---------------------------------------------
 */
 .article-font {
 font-family:"標楷體","Times New Roman",Georgia,Serif;

 }
@font-face {
  font-family: 'Merriweather Sans';
  font-style: italic;
  font-weight: 800;
  src: local('Merriweather Sans ExtraBold Italic'), local('MerriweatherSans-ExtraBldItalic'), url(http://fonts.gstatic.com/s/merriweathersans/v5/nAqt4hiqwq3tzCecpgPmVfrUSW10CwTuVx9PepRx9ls.woff2) format('woff2'), url(http://fonts.gstatic.com/s/merriweathersans/v5/nAqt4hiqwq3tzCecpgPmVW2xy75WLVt7UI7Cycabsy8.woff) format('woff');
}

@font-face {
	font-family: "open";
	font-style: normal;
	font-weight: 300;
	src: local( "Open Sans Light" ), local( "OpenSans-Light" ),
		url( https://themes.googleusercontent.com/static/fonts/opensans/v6/DXI1ORHCpsQm3Vp6mXoaTZ1r3JsPcQLi8jytr04NNhU.woff ) format( 'woff' );
}

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: none;
}

h1, h2, h3 {
	margin: 0;
	font-weight: normal;
}

html, body {
	padding: 0;
	margin: 0;
	background: #eee;
}

body {
	padding-top: 80px;
  font-family:"新細明體";
  font-weight:bolder;
}

.section {
	width: 400px;
	margin: 7px auto;
	height: 69px;
	box-shadow: 0 1px 2px rgba( 0, 0, 0, .2 );
	overflow: hidden;
	-webkit-transition: .35s;
	transition: .35s;
}

.title {
	padding: 20px;
	padding-top: 24px;
	background: #00BFFF;
	color: #FFF;
	cursor: pointer;
	text-shadow: 0 1px 0 #666;
	width: 100%;
	text-transform: capitalize;
	font-family:"標楷體";

	position: relative;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	z-index: 10;
}

.title:before, .title:after {
	content: "";
	display: block;
	position: absolute;
	right: 20px;
	top: 21px;
  font-style: normal;
	height: 21px;
  line-height: 1;
	overflow: hidden;
	font-family: FontAwesome;
	font-size: 20px;
	background:#00BFFF;
	-webkit-transition: .35s;
	transition: .35s;
}

.title:before {
	z-index: 2;
}
.title:after {
	top: 25px;
	-webkit-transform: rotate( 180deg );
	-ms-transform: rotate( 180deg );
	-moz-transform: rotate( 180deg );
	transform: rotate( 180deg );
}

.open .title:before {
	height: 0;
}

.body {
	font: 16px open, sans-serif;
	background: #fff;
	padding: 20px 20px 40px;
	color: #777;
	-moz-transform: translateY( -100% );
	-ms-transform: translateY( -100% );
	-webkit-transform: translateY( -100% );
	transform: translateY( -100% );
	overflow: hidden;
	-webkit-transition: .35s;
	transition: .35s;
}
	.body h2 {
		color: #333;
		font-size: 22px;
		margin-bottom: 10px;
	}
	.body h2:before {
		content: '▪';
		padding-right: 7px;
		color: #00C37E;
	}
	.body a {
		color: #00C37E;
	}
	.body span {
		font-size: 12px;
	}

.section.open {
	height: 288px;
}
.open .body {
	-webkit-transform: none;
	-ms-transform: none;
	-moz-transform: none;
	transform: none;
}
