/* -------------------------------- 

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
	font-size: 100%;
	font-family: "Roboto", sans-serif;
	color: #3d3536;
	background-color: white;
	margin: 0;
	padding: 0;
}

body, html {
  /* important */
  height: 100%;
}
h1 {
	font-family: "華康中圓體";
	font-size: 2em;
	color: #33CCFF;
	font-weight: normal;
	line-height: 1em;
	text-align: left;
	border-left-width: 4px;
	border-left-style: double;
	text-indent: 0.75em;
	padding-top: 0.7em;
	margin-bottom: 1em;
	margin-top: 5em;
}
.dd-txt {
	background-image: url(../img/right-arrow.png);
	background-repeat: no-repeat;
	background-position: 0 2px;	
	padding-left: 30px;
	margin-top: 15px;
	margin-bottom: 15px;	
	}
body dl dd{
	line-height: 1.25em;

}

h2 {
	font-family: Arial, "微軟正黑體", "Arial Unicode MS", "Myriad Pro";
	font-size: 1.75em;
	font-weight: bold;
	color: #36F;
	line-height: 2em;
}

p, dd {
	font-family: Arial, "微軟正黑體", "Arial Unicode MS", "Myriad Pro";
	font-size: 1.8em;
	line-height: 2em;
	text-align: justify;
	margin-top: 10px;
	margin-bottom: 10px;
}
dt {
	font-family: Arial, "微軟正黑體", "Arial Unicode MS", "Myriad Pro";
	font-size: 18px;
}
h3 {
	font-family: Arial, "微軟正黑體", "Arial Unicode MS", "Myriad Pro";
	font-size: 22px;
	color: #15AA80;
}

.pink {
	font-family: Arial, "微軟正黑體", "Arial Unicode MS", "Myriad Pro";
	font-size: 20px;
	color: #FF80C0;
}





a {
	color: #E06;
	text-decoration: none;
	font-family: Arial, "微軟正黑體", "Arial Unicode MS", "Myriad Pro";
	font-size: 1.1em;
	line-height: 60px;
	clip: rect(auto,auto,auto,10px);
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
	/* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
	width: 90em;
	max-width: 768px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	clear: none;
	float: none;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;

}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px; /*header高度設定*/
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
	float: left;
	margin: 13px 0 0 5%;
	text-align: justify;
}
.cd-header #cd-logo img {
	display: block;
	text-align: center;
	background-repeat: no-repeat;
	background-position: center;
}
@media only screen and (min-width: 768px) {
  .cd-header {
	height: 70px;
	color: #FFF;
  }
  .cd-header #cd-logo {
	smargin: 23px 0 0 5%;
  }
}

.cd-main-nav {
	float: right;
	margin-right: 3%;
	width: 44px;
	height: 100%;
	background-size: 44px 44px;
	cursor: pointer;
	background-image: url(../img/cd-icon-menu.svg);
	background-repeat: no-repeat;
	background-position: center center;
	color: #FFF;
}
.cd-main-nav ul {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	font-family: Arial, "微軟正黑體", "Arial Unicode MS", "Myriad Pro";
/*	background-color: #000;*/
	color: #FFF;
}
.cd-main-nav ul.is-visible {
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}
.cd-main-nav a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding-left: 5%;
  background: #2f292a;
  border-top: 1px solid #453c3d;
  color: #8e7d7f;
}
@media only screen and (min-width: 768px) {
	
  .cd-main-nav {
    width: auto;
    height: auto;
    background: none;
    cursor: auto;
  }
  .cd-main-nav ul {
	position: static;
	width: auto;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	line-height: 70px;
/*	background: rgba(255, 255, 255, 0.75);/*nav背景顏色*/
  }
  .cd-main-nav ul.is-visible {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	color: #FFF;
	background-color: #FFF;
  }
  .cd-main-nav li {
	display: inline-block;
	margin-left: 1em;
	font-family: Arial, "微軟正黑體", "Arial Unicode MS", "Myriad Pro";
  }
  .cd-main-nav a {
	display: inline-block;
	height: auto;
	line-height: normal;
	padding: .6em 1em;
	border-top: none;
	color: #666666;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	font-size: 1.3rem;
	background: rgba(255, 255, 255, 0.75);
  }
  .no-touch .cd-main-nav a:hover {
	color: #FFFFFF;
	background-color: #666;
	background-position: center center;
  }
}

.cd-main-content {
  /* you need to assign a min-height to the main content so that the children can inherit it*/
  height: 100%;
  position: relative;
  z-index: 1;
}

.cd-fixed-bg {
  position: relative;
  min-height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}
.cd-fixed-bg h1, .cd-fixed-bg h2 {
	position: absolute;
	left: 50%;
	top: 50%;
	bottom: auto;
	right: auto;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	width: 90%;
	max-width: 1170px;
	text-align: center;
	font-size: 30px;
	font-size: 1.875rem;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	color: white;
	font-family: Arial, "微軟正黑體", "Arial Unicode MS", "Myriad Pro";
}
.cd-fixed-bg.cd-bg-1 {
  background-image: url("../img/cd-background-1.jpg");
}
.cd-fixed-bg.cd-bg-2 {
  background-image: url("../img/cd-background-2.jpg");
}
.cd-fixed-bg.cd-bg-3 {
  background-image: url("../img/cd-background-3.jpg");
}
.cd-fixed-bg.cd-bg-4 {
  background-image: url("../img/cd-background-4.jpg");
}
@media only screen and (min-width: 768px) {
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-fixed-bg {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {

  min-height: 100%;
  position: relative;
  padding: 4em 0;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg.cd-color-1 {
  background-color: #3d3536;
  color: #a6989a;
}

.cd-scrolling-bg.cd-color-2 {
	background-color: #2e3f6d;
	color: #FFFFFF;
}
.cd-scrolling-bg.cd-color-3 {
	SSbackground-color: #bdcef9;
	background-color: #bc9d45;
}
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding: 8em 0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}

footer {
	width: 100%;
	background-color: #000;
	position: fixed;
	bottom: 0px;
	z-index: 9;
}
footer p {
	color: #FFF;
	font-size: 1.25em;
	text-align: center;
	margin: 0px;
	padding: 0px;	
}
footer p a {
	font-size: 1em;
	color: #FFF;
	text-decoration: none;
}
footer p a:hover {
	font-size: 1em;
	color: #F30;
	text-decoration: none;
}
.red125em {
	color: red;
	font-size: 1.5em;	
	}
.panel-body {
	text-align: center;
	display: block;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	SSbackground-color: #bdcef9;
	background-color: #bc9d45;
	height: auto;
	margin-bottom: 61px;
}

.cd-txt {
	width: 100%;
	}
.jumbotron{
  background-image: url(../img/cd-background-2.jpg);
}
.jumbotron h1{
	color: #BC3;

}
.body{
	background-color: #eee;
}
.painting h2{
	font-size: 3em;
	color: #bc3ddd}