.mobile{
	display: none !important;
}
.mb100{
    margin-bottom:100px;
}
.mt100{
    margin-top:100px;
}
div#headerWrapper{
    width:100%;
    min-width: var(--min-width);
    height: var(--header-height);
    position: fixed;
    top:0;
   /* background:var(--green-color);*/
    background-image: linear-gradient(298deg, rgba(43, 43, 43, 0.04) 0%, rgba(43, 43, 43, 0.04) 74%,rgba(200, 200, 200, 0.04) 74%, rgba(200, 200, 200, 0.04) 100%),linear-gradient(346deg, rgba(237, 237, 237, 0.04) 0%, rgba(237, 237, 237, 0.04) 54%,rgba(150, 150, 150, 0.04) 54%, rgba(150, 150, 150, 0.04) 100%),linear-gradient(280deg, rgba(197, 197, 197, 0.04) 0%, rgba(197, 197, 197, 0.04) 64%,rgba(25, 25, 25, 0.04) 64%, rgba(25, 25, 25, 0.04) 100%),linear-gradient(285deg, rgba(74, 74, 74, 0.04) 0%, rgba(74, 74, 74, 0.04) 57%,rgba(244, 244, 244, 0.04) 57%, rgba(244, 244, 244, 0.04) 100%),linear-gradient(90deg, rgb(68, 148, 8),rgb(157, 199, 49));
    background: rgb(79,154,17);
    background: linear-gradient(90deg, rgba(79,154,17,1) 0%, rgba(157,197,52,1) 100%);
    background: #1C2D35;
    box-shadow: 0 3px 9px rgba(0,0,0,0.35);
    z-index: 2;
}
div#header{
    width:var(--min-width);
    height: var(--header-height);
    position: relative;
    margin:auto;
}
div#header h1{
    background:url("../images/logo.svg") no-repeat;
    width:171px;
    height: 40px;
    background-size:171px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top:0;
    left:20px;
    bottom:0;
    margin:auto;
    z-index: 2;
}
div#header h1 a{
    display: block;
    width:171px;
    height: 40px;
}
div#header p.catch{
    width:100%;
    height: 1.5em;
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    text-align: center;
    margin: auto;
    color:#fff;
    font-size:20px;
    z-index: 1;
}

ul.headerLink{
    width:220px;
    height: 60px;
    background:var(--red-color);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-left:5px solid #fff;
    border-right:5px solid #fff;
    border-bottom:5px solid #fff;
    position: absolute;
    top:0;
    right:20px;
    box-shadow: 3px 3px 9px rgba(0,0,0,0.35);
    box-sizing: border-box;
    padding-top:7px;
}
ul.headerLink a{
    color:#fff;
    line-height: 2em;
    margin-left:25px;
    font-size:22px;
}
ul.headerLink li:first-child a{
    background:url("../images/icon_traffic.svg") left center no-repeat;
    background-size:18px;
    padding-left:24px;
}
div#navWrapper{
    width:100%;
    min-width: var(--min-width);
    height: 60px;
    position: fixed;
    top:var(--header-height);
    background:#ACCED8;
    background:#324A5B;
    box-shadow: 3px 3px 9px rgba(0,0,0,0.35);
    z-index: 1;
}
ul#nav{
    width:var(--min-width);
    margin: auto;
    display: flex;
    justify-content: space-around;
    font-size: 18px;
}
ul#nav li{
    line-height: 60px;
    text-align: center;
    width:6em;
    position: relative;
}
ul#nav li::after{
    content: "";
    width:0;
    height: 1px;
    position: absolute;
    background:#fff;
    left:0;
    right:0;
    bottom:12px;
    margin: auto;
    transition: width 0.3s;
}
ul#nav li.active::after,
ul#nav li:hover::after{
    content: "";
    width:6em;
    height: 1px;
    position: absolute;
    background:#fff;
    left:0;
    right:0;
    bottom:12px;
    margin: auto;
    transition: width 0.3s;
}
ul#nav li a{
    color:#fff;
}

div.slideWrapper{
	min-width:960px;
	margin: auto;
	height: 100%;
	overflow: hidden;
	position: relative;
    margin-top:var(--header-height);
}
 #slide_wrapp {
	position: relative;
	width:100vw;
	height: 60vh;
	overflow: hidden;
}
#slide_wrapp .slide_item {
	opacity: 0;
	transform: scale(1);
	transition: opacity 2s linear, transform 7.5s linear;
	position: relative;
}
#slide_wrapp .slide_item:not(:first-child) {
	position: absolute;
	top: 0;
	left: 0;
}
#slide_wrapp .slide_item.show_ {
	opacity: 1;
}
#slide_wrapp .slide_item.zoom_ {
	transform: scale(1.2);
}
#slide_wrapp .slide_item img {
	display: block;
	object-fit: cover;
    object-position: center center;
	width:100vw;
	height: 60vh;

}
p.text{
	width: 100%;
	height: 200px;
	text-align: center;
	color:#fff;
	font-size:5vw;
    font-size:min(5vw,80px);
	line-height: min(1.5em,120px);
    font-weight: bold;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	margin: auto;
    text-shadow: 3px 3px 9px rgba(0,0,0,0.3);
}
div.wrapper {
    width:100%;
    min-width:var(--min-width);
    overflow: hidden;
}
div.wrapper.padding{
    padding:100px 0;
}
div.wrapper.padding2{
    padding:50px 0;
}
div.wrapper.border{
    border-bottom:5px solid #ccc;
}
div.wrapper.navy{
    background:var(--navy-color);
    background:#ACCED8;
    margin-top:100px;
}
div.wrapper.color{
    background:var(--bg-color);
}
div.wrapper.greenCircle{
   background-image: radial-gradient(circle at 19% 90%, rgba(190, 190, 190,0.04) 0%, rgba(190, 190, 190,0.04) 17%,transparent 17%, transparent 100%),radial-gradient(circle at 73% 2%, rgba(78, 78, 78,0.04) 0%, rgba(78, 78, 78,0.04) 94%,transparent 94%, transparent 100%),radial-gradient(circle at 45% 2%, rgba(18, 18, 18,0.04) 0%, rgba(18, 18, 18,0.04) 55%,transparent 55%, transparent 100%),radial-gradient(circle at 76% 60%, rgba(110, 110, 110,0.04) 0%, rgba(110, 110, 110,0.04) 34%,transparent 34%, transparent 100%),radial-gradient(circle at 68% 56%, rgba(246, 246, 246,0.04) 0%, rgba(246, 246, 246,0.04) 16%,transparent 16%, transparent 100%),radial-gradient(circle at 71% 42%, rgba(156, 156, 156,0.04) 0%, rgba(156, 156, 156,0.04) 47%,transparent 47%, transparent 100%),radial-gradient(circle at 46% 82%, rgba(247, 247, 247,0.04) 0%, rgba(247, 247, 247,0.04) 39%,transparent 39%, transparent 100%),radial-gradient(circle at 50% 47%, rgba(209, 209, 209,0.04) 0%, rgba(209, 209, 209,0.04) 45%,transparent 45%, transparent 100%),linear-gradient(90deg, rgb(84, 36, 210),rgb(44, 27, 154));
}
div.wrapper.top1{
    background:url("../images/slide01.jpg") no-repeat center bottom;
    background-size:cover;
    filter: Saturate(10%);
    transition: filter 0.5s;
}
div.wrapper.top2{
    background:url("../images/slide02.jpg") center center no-repeat;
    /*transform: scale(-1,1);*/
    background-size:cover;
    filter: Saturate(10%);
    transition: filter 0.5s;
}
div.wrapper.top3{
    background:url("../images/slide06.jpg") center center no-repeat;
    background-size:cover;
    filter: Saturate(10%);
    transition: filter 0.5s;
}
div.wrapper.top4{
    background:url("../images/slide07.jpg") center center no-repeat;
    /*transform: scale(-1,1);*/
    background-size:cover;
    filter: Saturate(10%);
    transition: filter 0.5s;
}
.isActv.top1,
.isActv.top2,
.isActv.top3,
.isActv.top4{
    filter: Saturate(100%) !important;
    transition: filter 0.5s !important;
}
div.inner{
    width:var(--min-width);
    margin:auto;
}

h2.topCatch {
    font-size:48px;
    font-weight: bold;
    text-align: center;
    margin-bottom:50px;
    color:var(--green-color);
    color:#fff;
}
p.topCatch{
    margin:0 200px;
    font-size:20px;
    color:#fff;
}

div.feature {
    width:300px;
    height: 550px;
    overflow: hidden;
}
div.feature h2{
    margin:110px 20px 20px;
    font-size:20px;
    font-weight: bold;
    color:#fff;
    border-bottom:1px solid #fff;
}
div.feature p{
    margin:20px;
    color:#fff;
}
div.feature1{
    background-image:
        url("../images/jPattern.svg"),
        linear-gradient(90deg, rgba(105,73,43,1) 0%, rgba(171,120,52,1) 100%);
        float: left;
}
div.feature2{
    background-image:
        url("../images/jPattern.svg"),
        linear-gradient(90deg, rgba(34,41,20,1) 0%, rgba(72,85,42,1) 100%); 
    /*transform: scale(-1,1)*/
    float: right;
}
div.feature3{
    background-image:
        url("../images/jPattern.svg"),
        linear-gradient(90deg, rgba(79,43,19,1) 0%, rgba(130,72,31,1) 100%);
    float: left;
}
div.feature4{
    background-image:
        url("../images/jPattern.svg"),
        linear-gradient(90deg, rgba(36,18,17,1) 0%, rgba(80,40,37,1) 100%);
    /*transform: scale(-1,1)*/
    float: right;
}



h2.general {
    font-size:36px;
    font-weight: bold;
    text-align: center;
    position: relative;
    border-bottom:1px solid var(--navy-color);
    margin-bottom: 30px;
    color:var(--navy-color);
}
ul.news{
    width:640px;
    margin:auto;
}
ul.news li span{
    display: block;
    font-size:14px;
}
ul.news li{
    margin-bottom: 15px;
    border-bottom:1px solid #ccc;
    padding-bottom:10px;
}
ul.news a{
    color:#000;
    padding-left:50px;
}
p.more {
    
}
p.more{
  text-align: center;
  width:300px;
  padding: 15px 30px;
  border: solid 6px var(--navy-color);
  position: relative;
  margin:50px auto 0;
}
p.more:after{
    content: "";
    border: solid 3px var(--navy-color);
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    cursor: pointer;
}
p.more a{
    display: block;
    font-weight: bold;
    width:100%;
    height: 100%;
    color:var(--navy-color);
}
p.more:hover{
    background:var(--navy-color);
}
p.more:hover a{
    color:#fff;
}
div.facilityWrapper {
    width:100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
div.facility{
    width:calc(50% - 20px);
    position: relative;
    background:var(--bg-color);
    margin-bottom:30px;
}
div.facility img{
    width:100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
}
div.facility h3{
    font-size:18px;
    font-weight: bold;
    margin:20px;
    border-bottom:1px solid var(--navy-color);
}
div.facility p{
    margin:20px;
}

div.grave {
    box-sizing: border-box;
    padding:20px;
    padding-bottom: 30px;
    border:1px solid var(--navy-color);
    background:#fff;
    margin-bottom:30px;
    display: flex;
    justify-content: space-between;
    position: relative;
}
div.graveImgWrapper{
    width:400px;
    float:left;
}
div.graveImg img{
    width:400px;
    height: auto;
}
div.graveImg.half img{
    width:300px;
    height: auto;
    margin:0 50px;
}
div.graveImg img{
    width:400px;
    height: auto;
}
div.grave div.desc{
    width:calc(100% - 430px);
    float: right;
}
div.grave p.desc2{
    width:calc(100% - 20px);
    margin:20px;
    padding:20px;
    box-sizing: border-box;
    float: right;
    background:#efefef;
    color:#000;
}
div.grave h3{
    font-size: 24px;
    font-weight: bold;
    background: url("../images/JPattern2.svg"),linear-gradient(90deg, rgba(218,165,32) 0%, rgba(218,165,32) 50%, rgba(184,134,11,1) 100%);
    color:#fff;
    padding:5px 20px;
    margin-bottom:30px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}
div.grave h3.red{
    font-size: 24px;
    font-weight: bold;
    background: url("../images/JPattern3.svg"),linear-gradient(90deg, rgba(129,50,81,1) 0%, rgba(129,50,81,1) 50%, rgba(166,109,131,1) 100%);
    color:#fff;
    padding:5px 20px;
    margin-bottom:30px;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
}
div.grave h4{
    color:var(--navy-color);
    font-size:22px;
    font-weight: bold;
    margin:10px 0;
    border-bottom:2px solid var(--navy-color);
    display: inline-block;
    padding-right: 120px;
}

div.grave p.desc{
    margin-left:50px;
}
div.grave p.price{
    font-size: 24px;
    position: absolute;
    right:50px;
    bottom:40px;
}
div.grave p.notice{
    position: absolute;
    bottom:20px;
    text-align: right;
    right:50px;
}
div.grave p.price span{
    font-size:72px;
}
div.grave div.entry{
    width:140px;
    height: 140px;
    text-align: center;
    border-radius: 50%;
    background:var(--navy-color);
    background: linear-gradient(45deg, rgba(218,165,32) 0%, rgba(184,134,11,1) 100%);
   line-height: 1.2em;
    align-items: center;
    position: absolute;
    left:-50px;
    top:-20px;
    box-shadow: 3px 3px 9px rgba(0,0,0,0.35);
}
div.grave div.entry p{
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    color:#fff;
    font-size:14px;
    font-weight: bold;
}
div.grave ul{
    margin-left:20px;
}
div.grave ul li{
    background:url("../images/icon_dot_navy.svg") left 0.3em no-repeat;
    background-size:14px;
    padding-left:21px;
}
dl.access {
    border-bottom:1px solid #ccc;
    overflow: hidden;
}
dl.access dt,
dl.access dd{
    padding:20px 0;
    border-top:1px solid #ccc
}
dl.access dt{
    width:200px;
    float: left;
    clear: both;
    font-weight: bold;
    text-indent: 1em;
}
dl.access dd{
    width:calc(100% - 220px);
    float: right;
    padding-left:20px;
}
dl.access div.map{
    width:100%;
    height: 400px;
}
dl.access li{
    position: relative;
    padding-left:21px;
    background:url("../images/icon_dot_navy.svg") left 0.3em no-repeat;
    background-size:14px;
}

div.reserveLink {
    box-sizing: border-box;
    background-image: repeating-radial-gradient(circle at center center, transparent 0px, transparent 2px,rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 3px,transparent 3px, transparent 5px,rgba(0,0,0,0.03) 5px, rgba(0,0,0,0.03) 7px),repeating-radial-gradient(circle at center center, rgb(255,255,255) 0px, rgb(255,255,255) 9px,rgb(255,255,255) 9px, rgb(255,255,255) 21px,rgb(255,255,255) 21px, rgb(255,255,255) 31px,rgb(255,255,255) 31px, rgb(255,255,255) 40px); 
    background-size: 20px 20px;
    padding:10px;
    text-align: center;
    margin:auto;
    width:480px;
}
p.document a{
    width:300px;
    height: 60px;
    line-height: 60px;
    background:var(--blue-color);
    display: block;
    margin:auto;
    font-size:20px;
    color:#fff;
    box-shadow: 3px 3px 9px rgba(0,0,0,0.35);
}
p.reserve a{
    width:300px;
    height: 60px;
    line-height: 60px;
    background:var(--red-color);
    display: block;
    margin:auto;
    font-size:20px;
    color:#fff;
    box-shadow: 3px 3px 9px rgba(0,0,0,0.35);
}
span.totelLarge{
    font-size: 48px;
    font-weight: bold;
    color:var(--green-color);
    background:url("../images/icon_tel.svg") left center no-repeat;
    background-size:50px;
    padding-left:60px;
}

div#footerWrapper{
    width:100%;
    min-width: var(--min-width);
    background: #1C2D35;
    box-shadow: 0 -3px 9px rgba(0,0,0,0.35);
    z-index: 1;
}
div#footer{
    width:var(--min-width);
    margin:auto;
    position: relative;
    overflow: hidden;
}

div#footer h1 {
    background:url("../images/logo.svg") no-repeat;
    width:188px;
    height: 44px;
    background-size:184px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top:40px;
    left:0;
    right:0;
    margin:auto;
}

p.footerAddress {
    text-align: center;
    margin-top:100px;
    color:#fff;
}

ul.footerNav {
    width:100%;
    display: flex;
    justify-content: space-between;
    margin:50px auto;
    padding:15px 0;
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
}
ul.footerNav a{
    color: #fff;
}
ul.footerNav a:hover{
    color:#000;
}

div.footerMap {
    width:100%;
    height: 350px;
}
p.copy{
    margin:30px auto 10px;
    font-size:12px;
    text-align: center;
    color:#fff;
}
p.totop{
    width:50px;
    height: 43px;
    position: fixed;
    right:20px;
    bottom:20px;
    background:url(../images/totop.svg) center top no-repeat;
    background-size:50px;
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 1000;
}
p.totop:hover{
    background:url(../images/totop.svg) center bottom no-repeat;
}
p.totop a{
    display: block;
    width:100%;
    height: 100%;
}

p.attention {
    background-color:var(--red-color);
    font-weight: bold;
    color:#fff;
    padding:20px;
    margin:10px 0;

}
p.carMap{
    width:100%;
}
p.carMap img{
    width:100%;
    height: 100%;
    object-fit: cover;
}

div.h2Wrapper {
    margin-top:calc(var(--header-height) + 100px);
    width:100%;
    min-width: var(--min-width);
    height: 80px;
    border-top:4px solid var(--green-color);
    border-bottom:4px solid var(--green-color);
    margin-bottom: 100px;
    background-image: repeating-linear-gradient(225deg, hsla(64,83%,54%,0.05) 0px, hsla(64,83%,54%,0.05) 1px,transparent 1px, transparent 11px,hsla(64,83%,54%,0.05) 11px, hsla(64,83%,54%,0.05) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(270deg, hsla(64,83%,54%,0.05) 0px, hsla(64,83%,54%,0.05) 1px,transparent 1px, transparent 11px,hsla(64,83%,54%,0.05) 11px, hsla(64,83%,54%,0.05) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(180deg, hsla(64,83%,54%,0.05) 0px, hsla(64,83%,54%,0.05) 1px,transparent 1px, transparent 11px,hsla(64,83%,54%,0.05) 11px, hsla(64,83%,54%,0.05) 12px,transparent 12px, transparent 32px),repeating-linear-gradient(315deg, hsla(64,83%,54%,0.05) 0px, hsla(64,83%,54%,0.05) 1px,transparent 1px, transparent 11px,hsla(64,83%,54%,0.05) 11px, hsla(64,83%,54%,0.05) 12px,transparent 12px, transparent 32px),linear-gradient(270deg, rgb(28,45,53),rgb(48,66,140));
}
div.h2Wrapper h2{
    width:var(--min-width);
    margin:auto;
    line-height: 80px;
    font-size:32px;
    font-weight: bold;
    color:#fff;
    position: relative;
    text-indent: 30px;
}
div.h2Wrapper h2::before{
    content: "";
    width:4px;
    height: 48px;
    background:#fff;
    position: absolute;
    top:0;
    bottom:0;
    left:10px;
    margin: auto;
}
div.contentsWrapper {
    width:var(--min-width);
    box-sizing: border-box;
    margin:auto;
    padding:50px;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
    background-image: radial-gradient(circle at 13% 47%, rgba(140, 140, 140,0.03) 0%, rgba(140, 140, 140,0.03) 25%,transparent 25%, transparent 100%),radial-gradient(circle at 28% 63%, rgba(143, 143, 143,0.03) 0%, rgba(143, 143, 143,0.03) 16%,transparent 16%, transparent 100%),radial-gradient(circle at 81% 56%, rgba(65, 65, 65,0.03) 0%, rgba(65, 65, 65,0.03) 12%,transparent 12%, transparent 100%),radial-gradient(circle at 26% 48%, rgba(60, 60, 60,0.03) 0%, rgba(60, 60, 60,0.03) 6%,transparent 6%, transparent 100%),radial-gradient(circle at 97% 17%, rgba(150, 150, 150,0.03) 0%, rgba(150, 150, 150,0.03) 56%,transparent 56%, transparent 100%),radial-gradient(circle at 50% 100%, rgba(25, 25, 25,0.03) 0%, rgba(25, 25, 25,0.03) 36%,transparent 36%, transparent 100%),radial-gradient(circle at 55% 52%, rgba(69, 69, 69,0.03) 0%, rgba(69, 69, 69,0.03) 6%,transparent 6%, transparent 100%),linear-gradient(90deg, rgb(255,255,255),rgb(255,255,255));
}
h3.catch{
    text-align: center;
    font-size:32px;
    font-weight: bold;
    margin-bottom:50px;
}
h3.catch2{
    text-align: center;
    font-size:28px;
    font-weight: bold;
    margin-bottom:50px;
}
div.cemetery{
    width:100%;
    overflow: hidden;
    margin-bottom:50px;
}
div.cemetery img{
    width:50%;
    height: auto;
    display: block;
}
div.cemetery img.left{
    float: left;
}
div.cemetery img.right{
    float: right;
}
div.cemetery div{
    width:50%;
}
div.cemetery div.left{
    float: left;
}
div.cemetery div.right{
    float: right;
}
h4.feature{
    color:var(--blue-color);
    font-size:24px;
    font-weight: bold;
    margin:0 20px 40px;
    border-bottom: 3px solid currentColor;
}
div.cemetery p{
    margin:0 20px;
    text-align: justify;
}

p.general {
    margin:0 100px 50px;
    font-size:18px;
}

div.memorialPhoto {
    display: flex;
    justify-content: space-between;
    margin-bottom:50px;
}
div.memorialPhoto img{
    width:calc(100% - 20px);
}

dl.price {
    margin:50px 100px;
    overflow: hidden;
    border-bottom:1px solid #333;
}
dl.price dt,
dl.price dd{
    padding:10px;
    width:calc(50% - 20px);
    border-top:1px solid #333;
}
dl.price dt{
    float: left;
    clear: both;
}
dl.price dd{
    float: right;
}
dl.price h5{
    padding:10px;
    background:var(--navy-color);
    color:#fff;
}

div.imgWrapper img{
    width:100%;
    margin-bottom: 50px;
}

ul.reburial {
    width:640px;
    margin:30px auto;
    font-size:24px;
    padding:30px 30px 20px;
    background:#efefef;
    box-shadow: 3px 3px 12px rgba(0,0,0,0.35);
}
ul.reburial li{
    margin-bottom:10px;
    margin-left:30px;
    position: relative;
}
ul.reburial li::before{
    content: "";
    width:10px;
    height: 10px;
    border-radius: 10px;
    position: absolute;
    background:var(--navy-color);
    margin:auto;
    top:0;
    bottom:0;
    left:-20px;
}
button.slick-prev {
	background: url("../images/arrow_prev.svg") no-repeat;
	background-size: 30px;
	left: 60px;
}
div.presenWrapper button.slick-prev{
	left: 60px;
}
button.slick-prev:hover {
	background-image: url(../images/arrow_prev_on.svg) !important;
}
button.slick-next {
	background: url("../images/arrow_next.svg") no-repeat;
	background-size: 30px;
	right: 60px;
}
div.presenWrapper button.slick-next{
	right: 60px;
}
button.slick-next:hover {
	background-image: url(../images/arrow_next_on.svg) !important;
}
button.slick-arrow {
	text-indent: -9999px;
	position: absolute;
	width: 30px;
	height: 50px;
	top: 130px;
	z-index: 1;
	border: none;
	cursor: pointer;
}
div.presenWrapper button.slick-arrow{
    top:280px;
}
ul.slick-dots {
	width: 100%;
	height: 20px;
	text-align: center;
	overflow: hidden;
	position: absolute;
	bottom: 1px;
}
div.presenWrapper ul.slick-dots{
    bottom:-20px;
}
ul.slick-dots li {
	text-indent: -9999px;
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #00cddc;
	border-radius: 10px;
	margin: 5px;
}
li.slick-active {
	background-color: #b2f0f4 !important;
}
div.entryBody {
    width:720px;
    margin:auto;
}
div.entryBody h3{
    font-size:24px;
    font-weight: bold;
    border-bottom:2px solid #000;
    margin-bottom:20px;
}
div.entryBody p{
    margin:10px;
}
