html {
  scroll-behavior: smooth;
  align-items: center;
  display: flex;
  justify-content: center;
}
.card-inner {
  margin-top: 10px;
  border: 1px solid #A1A1A1;
  border-radius: 10px;
  background: #F2F2F2;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  min-width: 320px;
  max-width: 500px;
}
.cards {
  position: relative;
  left: -5px;
}
[class*="mySlides"] {
  display: none;
}
.cards::before,
.cards::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cards::before,
.cards::after,
.cards .cards-inner {
  background-color: #F2F2F2;
  border: 1px solid #A1A1A1;
  border-radius: 10px;
  transition: transform 0.3s;
}
.cards::before,
.cards-inner {
  z-index: 1;
}
.cards-inner {
  position: relative;
  margin-top: 10px;
  border: 1px solid #A1A1A1;
  border-radius: 10px;
  background: #F2F2F2;
  transition: 0.3s;
  min-width: 320px;
  max-width: 500px;
}
.cards-bottom-right::before {
  transform: translate(1px, 1px);
}
.cards-bottom-right::after {
  transform: translate(4px, 4px);
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
body {
  background: #E7E7E7;
}
* {
  box-sizing: border-box;
}
.h_column_ttl {
  float: right;
  text-align: right;
  width: auto;
}
.column_read {
  float: left;
  width: auto;
}
.column_source {
  float: right;
  text-align: right;
  width: auto;
  padding: 10px;
}
.row:after {
  content: "";
  display: table;
  clear: both;
}
h2 {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 22px;
  margin: 10px;
  color: #293134;
}
h6 {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 8px;
  margin: 4px;
  color: #9A9A9A;
  text-align: right;
}
p {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin: 10px;
  color: #2F2F2F;
}
A {
  color: #FD8B55;
}
A:visited {
  color: #6F75A9;
}
A:active {
  color: #FD8B55;
}
.letter {
  color: #FC5100;
}
.top-div {
  height: 140px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bottom-div {
  overflow-wrap: anywhere;
  word-break: break-word;
}
a.btn {
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 10px;
  border: none;
  cursor: pointer;
  display: inline-block;
  color: #F2F2F2;
  border-radius: 4px;
  padding: 2px;
}
.tg {
  background-color: #28A7E8;
}
.wp {
  background-color: #25D366;
}
.src {
  background-color: #FC5100;
}
.label-container{
	position:fixed;
	bottom:48px;
	right:105px;
	display:table;
	visibility: hidden;
}
.label-text{
	color:#FFF;
	background:rgba(51,51,51,0.5);
	display:table-cell;
	vertical-align:middle;
	padding:10px;
	border-radius:3px;
}
.label-arrow{
	display:table-cell;
	vertical-align:middle;
	color:#333;
	opacity:0.5;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:20px;
	right:20px;
	background-color:#FD8B55;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
  z-index: 100;
}
ul{
	position:fixed;
	right:20px;
	padding-bottom:20px;
	bottom:40px;
	z-index:100;
}
ul li{
	list-style:none;
	margin-bottom:10px;
}
ul li a{
	background-color:#FD8B55;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #999;
	width:60px;
	height:60px;
	display:block;
}
ul:hover{
	visibility:visible!important;
	opacity:1!important;
}
.up-float{
	margin-top:22px;
}
a.float {
  color: #F2F2F2;
}
a#menu-share + ul{
  visibility: hidden;
}
a#menu-share:hover + ul{
  visibility: visible;
  animation: scale-in 0.5s;
}
a#menu-share i{
	animation: rotate-in 0.5s;
}
a#menu-share:hover > i{
	animation: rotate-out 0.5s;
}
@keyframes bot-to-top {
    0%   {bottom:-40px}
    50%  {bottom:40px}
}
@keyframes scale-in {
    from {transform: scale(0);opacity: 0;}
    to {transform: scale(1);opacity: 1;}
}
@keyframes rotate-in {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
@keyframes rotate-out {
    from {transform: rotate(360deg);}
    to {transform: rotate(0deg);}
}