/* -------------------------------- 

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;
}

body, html {
  /* important */
  height: 100%;
}

a {
  color: #b4d7a8;
  text-decoration: none;
}

/* -------------------------------- 

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:90%;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
.cd-container2 {
  /* 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:100%;
  margin: 0 auto;
}
.cd-container2::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
/* -------------------------------- 

Main components 

-------------------------------- */
.cd-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 2;
  min-width:1000px;
}
.cd-header:after {
  content: "";
  display: table;
  clear: both;
}
.cd-header #cd-logo {
  float: left;
  margin: 13px 0 0 5%;
}
.cd-header #cd-logo img {
  display: block;
}
@media only screen and (min-width: 768px) {
  .cd-header {
    height: 60px;
  }
  .cd-header #cd-logo {
    margin: 23px 0 0 5%;
  }
}

.cd-main-nav {
  float: right;
  margin-right: 5%;
 
  height: 100%;
  cursor: pointer;
}
.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%);
}
.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: #2e353c;
   text-transform: uppercase;
  font-weight: bold;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 16px;


}
@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;
  }
  .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);
  }
  .cd-main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  .cd-main-nav a {
    display: inline-block;
    height: auto;
    line-height: normal;
    background: transparent;
    padding: .6em 1em;
    border-top: none;
    color: #3d3536;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
  }
  .no-touch .cd-main-nav a:hover {
    color: #54bcbd;
  }
}

.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: top center;
  z-index: 1;  
  overflow: hidden;
}

.intro-bg {
min-height:825px;
height:100%;
}
 
 
 
.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-bg3 {
    background-attachment: fixed;
  }
  .cd-fixed-bg h1, .cd-fixed-bg h2 {
    font-size: 48px;
    font-weight: 300;
  }
}

.cd-scrolling-bg {
  position: relative;
  line-height: 1.6;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.cd-scrolling-bg2 {
 
  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: #54bcbd;
  color: #e2eff2;
}
.cd-scrolling-bg.cd-color-2 {
  background-color: #54bcbd;
  padding:0px;
  margin:0px;
  
}
.cd-scrolling-bg2.cd-color-2 {
	background-color: #54bcbd;
	padding: 0px;
	margin: 0px;
	min-height: 670px;
	overflow: auto;
}
.cd-scrolling-bg.cd-color-3 {
  background-color: #a8d1d7;
  color: #2e353c;
}

.cd-fixed-bg3 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
  z-index:2;
  overflow:auto;
  background-color:#ffffff;
 
}



.cd-fixed-bg3.cd-bg-3 {
 background-image: url("../img/cd-background-3.jpg");

}

.introduction{
	float:left;
	width:58%;
	margin: 0 0 0 7%;
	background-image:url(../img/introduction-title.jpg);
	background-repeat:no-repeat;
	padding: 430px 0 50px 75px;
	}
	
.introduction p{
	color: #fff;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 17px;
	line-height:35px;
	margin-bottom:10px;
	font-weight:500; 
	float:LEFT;
	min-width:55%;
    }
.introduction-img{
	width:21%;
	float:RIGHT;
	margin: 90px 9% 0 0;	
	height:auto;
	text-align:right;	
	}	
.introduction2{
	float:left;
	width:44%;
	margin:0 0 0px 8%;	
	padding:120px 0 50px 75px;
	min-width:670px;
	min-height:100%;
	}
.introduction2-table{
	text-align:left;
	margin:30px 0 40px 0;
	}
.introduction2-table img{
	height:auto;
	max-width:95%;
	}
.introduction2-title{
	background-image:url(../img/title2-bg.gif);
	width:97%;
	background-repeat:repeat-x;
	margin-bottom:40px;
	text-align:center;	
	}
.introduction2 p{
	color: #023344;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 17px;
	line-height:35px;
	margin-bottom:10px;
	font-weight:500;
    }	
.introduction2 ul{
	margin:0 0 0 0 ;
	padding:0px 10px 0 0px;
	}
.introduction2 li{
	color: #023344;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 17px;
	line-height:30px;
	margin-bottom:10px;
	font-weight:500;
	background-image: url(../img/icon.png);
	background-repeat:no-repeat;
	background-position:left 13px;
	padding:0px 0 0 10px;
	list-style-position: outside;
	text-shadow:1px 1px 5px #ffffff;
    }	
.introduction3{
	float:right;
	width:63%;
	margin: 0 0% 0 0;
	background-image: url(../img/title3.png);
	background-repeat:no-repeat;
	padding:160px 9% 0 75px;
	background-position:75px 110px;	
	}
.recommend{
	margin-bottom:14px;
    border-bottom:#b5e7e5 1px dotted;
	padding-bottom:8px;
	}	
.recommend p{
	color: #5e5e5e;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 16px;
	line-height:38px;
	margin-bottom:0px;
	font-weight:500;
	margin-top:00px;
    }
.recommend h{
	color: #54bcbd;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 16px;
	line-height:24px;
	margin:-38px 0  0 0;
	padding:0px 0 3px 0;
	font-weight:600;
	float:right;
	width:100%;	
	text-align:right;
	}
.recommend h2{
	color: #54bcbd;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 16px;
	line-height:24px;
	margin:-5px 0  0 0;
	padding:0px 0 3px 0;
	font-weight:600;
	clear:both;
	width:100%;	
	text-align:right;
	}
.intro{
	position:absolute !important;
	top:20%; 
	right:5%;
	width:576PX;
	height:270PX;
	padding:320px 0 0 47px;
	background-image:url(../img/intro.png);
	background-repeat:no-repeat;
	}
/*
.intro img{
    position:static !important;
	position:relative;
	top:-50%;
	}
*/
@media only screen and (min-width: 768px) {
  .cd-scrolling-bg {
    padding:  0;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 300;
  }
}
.data-table { width:100%;}
.data-table th { padding:10px; border:1px solid #3dbfbb; font-weight:bold; white-space:nowrap; color:#333333; text-align:center;	font-family: \5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4; font-size:14px;}
.data-table td { padding:10px; border:1px solid #3dbfbb; text-align:center;		font-family: \5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4; vertical-align:middle; color: #333333;font-size:14px;}

.font-a1{
	color:#3dbfbb;
	font-weight:600;
	}
.title3{	
	width:100%;
	padding:110px 0 0  0;
	text-align:center;
	margin-bottom:60px;
	}
.heathier{
	
	text-align:center;
	margin-bottom:110px;
	}
.heathier img{
	width:26%;
	height:auto;
	border:none;
	display: inherit;
	}
.recommend2{
	margin:0px 0 40px 0;
	padding:0px 0 0  0;	
	}
.recommend2 ul{
	margin:0px 0 0 0 ;padding:10px 0 0  0;}
.recommend2 li{
	color: #54bcbd;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 16px;
	line-height:24px;
	font-weight:600;
	display:inline-block;
	list-style-type:square;
	margin:0 30px 10px 0;
	width:280px;
	padding-left:0px;
	}
	
#j1{
	position:relative;
	vertical-align:middle;
}
#jm5{
	PADDING:0 8% 50PX 5%;
	}
#about-left{
	float:left;
	width: auto;
	width:56%;
	background-image:url(../img/title4.png);
	background-repeat:no-repeat;
	padding:245px 0% 0 73px;
	background-position:left  100px ;
	}

#about-left p{
	color: #fff;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 18px;
	line-height:40px;
	margin-bottom:35px;
	font-weight:500;
}	
#about-right{
	float:right;
	width:38%;
	margin: 0px;
	padding:210px 0 0 0 ;
	
	}

	
#about-right p{
	color: #fff;
	font-family: \5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
	font-size: 15px;
	line-height: 28px;
	font-weight: 300;
	padding: 0px 0 0px 25px;
	opacity: 0.8;
	border-left: #d2eded solid 1px;
	margin: 11px 0px 35px 20px;
	}

#about-right h{
	color: #fff;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 17px;
	line-height:30px;
	margin-bottom:35px;
	font-weight:600;
	opacity: 0.9;
	
}
#copyright{
	width:100%;
	background-color:#2e353c;
	text-align:center;
	padding: 8px 0 5px 0;
	}
#copyright p{
	color: #fff;
	font-family:\5FAE\8EDF\6B63\9ED1\9AD4,\65B0\7D30\660E\9AD4;
    font-size: 15px;line-height:25px;
     }
.read{
	margin:5% 0 50px 4%;
	background-image: url(../img/books_01.png);
	background-repeat: no-repeat;
	height:580px;
	padding:70px 0 0 48px;
	background-position:88px 25px ;
	}
.books{
	background-image: url(../img/books_02.png);
	background-repeat: no-repeat;
	margin:0 0 80px 4%;
	padding-top:60px;
	background-position:88px 0px ;
	}
.books img{
	border:none;
	margin:0;
	padding:0;
	}
#gotop { 
    display: none; position: fixed; right: 20px; bottom: 20px; padding: 10px 15px; cursor: pointer;}