/*google web fonts*/

/* @TODO: This is a todo */
/* @NOTE: This is a note */
/* @FIXME: This is a fixme */
/* @CHANGES: This is a chages */
/* @FUTURE: This is a future */

@import url(http://fonts.googleapis.com/earlyaccess/notosanstc.css);/*繁中*/
@import url('https://fonts.googleapis.com/css?family=Raleway:100,200,300,400,500,600,700,800,900');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700,800,900');
html {min-height: 100%; font-size: 15px} /*16px x 93.75% = 15px 網站字型大小預設值*/
body {
	height: 100%;
	font-size: 1rem;
	font-weight: 400;
	color: hsl(0, 0%, 0%);
	letter-spacing: 0
}
* { /*使用邊框不影響 div or table 本身寬度設定*/
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box
}
a:link, a:visited {color: #000; text-decoration: none}
a:hover {color: #ff5400; text-decoration: none}
a, button, ul, li, dl, dt, dd, div, p, img {
	-webkit-transition: all 0.30s ease-in-out;
	-moz-transition: all 0.30s ease-in-out;
	-ms-transition: all 0.30s ease-in-out;
	-o-transition: all 0.30s ease-in-out;
	outline: none
}
.slide-left-right {
	text-decoration:none;
	display: inline-block
}
/* add a empty string after the elment with class .slide-left-right */
.slide-left-right:after {
	content: '';
	display: block;
	height: 2px;
	width: 0;
	background: transparent;
	transition: width .5s ease, background-color .5s ease; /* .5 seonds for changes to the width and background-color */
	-webkit-transition: width .5s ease, background-color .5s ease; /* Chrome and Safari */
	-moz-transition: width .5s ease, background-color .5s ease; /* FireFox */
}
/* Change the width and background on hover, aka sliding out */
.slide-left-right:hover:after {width: 100%; background: #f90}

img {
	width: 100%;
	max-width: 100%;
	height: auto!important;
	border: none
}

button {
	background: #000;
	border: none;
	color: #fff;
	padding: .25rem 1rem;
	cursor: pointer
}
button:hover {
	background: #f60;
	font-weight: 500;
	color: #000
}
/*font setting*/
h1, h2, h3, h4, p, ul, li, dl, dt, dd, button, input, textarea, select, option {font-family: 'Roboto', 'Noto Sans TC', MS UI Gothic, MS Gothic, sans-serif}

h1 {font-size: 1.73rem}
h2 {font-size: 1.5rem}
p, li {font-size: 1rem}
li {list-style: none}
div.clearfix {clear: both}

/*nav*/
.bg-faded {background: rgba(255, 255, 255, 0.84); padding: 1rem 2rem .75rem}

.navbar-light .navbar-brand {
	color: #000;
	letter-spacing: 0;
	text-align: center;
}
.navbar-light .navbar-brand p:nth-child(1) {
    font-size: 2rem;
    font-weight: 200;
    line-height: 2rem;
    margin-bottom: 0
    
}
.navbar-light .navbar-brand p:nth-child(1) span {font-weight: 500}
.navbar-light .navbar-brand p:nth-child(2) {
    letter-spacing: .0625rem;
    margin-bottom: 0
}
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {color: #000}

ul.navbar-nav {}
ul.navbar-nav>li.nav-item {
	background: url(../images/nav-line.gif) right 1.1rem no-repeat;
	font-size: 1.2rem;
    color: #fff;
	padding: 1rem 1.2rem
}
ul.navbar-nav>li.nav-item:last-child {background: none}
ul.navbar-nav>li.active {padding-top: 1rem}
ul.navbar-nav>li.nav-item>a.nav-link {color: #000; padding: 0}
.navbar-light .navbar-nav .active>.nav-link {
	color: #000;
	border-bottom: #f90 2px solid;
	padding: 0
}
.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {color: #f60}
*[onclick] {cursor: pointer}

/*moblie nav*/
div.slidebars {
	background: rgba(255, 255, 255, .9);
	box-shadow: rgba(0, 0, 0, .15) 1px 0 5px;
	padding: 1rem
}
div.slidebars>dl.m_nav {padding-top: 1rem}
div.slidebars>dl.m_nav>dd {
	border-bottom: #f7a11a 1px solid;
	font-size: 1.25rem;
	text-align: center;
	margin-bottom: .5rem;
	padding-bottom: .5rem
}
div.slidebars>dl.m_nav>dd:last-child {border-bottom: none}
div.slidebars>dl.m_contact {}
div.slidebars>dl.m_contact>dd>iframe {width: 100%; height: 300px}

/*footer*/
footer {}
/*copyright*/
div.copyright {
    background: #282828;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    padding: .5rem 0
}

/*section content*/
section.container {max-width: 1110px; padding: 1rem}