strong {
  color: #434d57;
}

/* Apply styles
================================== */
.Rtable {
  display: flex;
  flex-wrap: wrap;
  position: relative;
	/*width: 100%;*/
  /*border: 2px solid green;*/
}

.Rtable_cell {
  box-sizing: border-box;
  flex-grow: 1;
  /*height: 450px;*/
	/*height: 100%;*/
  /*width: 100%;*/
  /*padding: 1.18em 0.12em;*/
	/*margin:  2% 2% 0% 0%;*/
  overflow: hidden;
  list-style: none;
	padding: 0px;
	/*border: 1px solid green;*/
  /*
	background-color: white;
	border: 1px solid red;
	*/
	z-index: 0;
}

.Rtable_cell:nth-of-type(2n+1) {
	padding-top: 1%;
}

/*
.Rtable_cell img {
  width: 100%;
}
*/

.Rtable_cell_alone {
  box-sizing: border-box;
  flex-grow: 1;
  overflow: hidden;
  list-style: none;
  background-color: white;
	padding: 0px;
	padding-top: 3%;
  /*border: 1px solid green;*/
}

.Rtable_cell_inside {
  /*padding: 0.18em 0.12em;*/
	/*padding-top: 15px;*/
	/*margin-top: 20px;*/
	/*margin-right: 4%;*/
  margin: 0% 4% 0% 0%;
	height: 95%;
	/*border: 2px solid green;*/
	/*z-index: 4;*/
	/*ackground: red;*/
	border: 2px solid #003366;
}

.Rtable_cell_inside img {
  width: 94%;
	margin: 3% 0px 3% 0px;
	margin-left: auto;
	margin-right: auto;
	/*border: 2px solid #003366;*/
	/*z-index: -1;*/
}

.Rtable_cell__head {
  /*background-color: slategrey;*/
	background-color: #003366;
  /*border-color: #5a6673;*/
  /*color: white;*/
	padding: 1% 2% 1% 2%;
}

.Rtable_cell_caption {
	/*width: 40%;*/
	/*min-width: 100%;*/
	/*display:block;*/
	/*display:inline-block;*/
	padding: 1% 2% 1% 2%;
	position:absolute;
	/*top: 0%;*/
  transform: translateY(-50%);
	background-color: #003366;
}

.Rtable_cell__head p {
	/*position: relative;*/
	/*position: absolute;*/
	/*height: 25px;*/
	/*padding: 0.4em 0.8em 0.4em 0.8em;*/
	padding: 1% 2% 1% 2%;
	color: white;
	font-weight:bold;
	font-size: 1.9vmin;
}

.Rtable_cell__head h2 {
	font-size: 1.0em;
	color: white;
}

.Rtable_cell_caption p {
	/*display:block;*/
	font-size: 1.0em;
	/*text-align: left;*/
	/*display:inline-block;*/
	color: white;
}

.Rtable_cell_caption h2 {
	color: white;
	font-size: 2.0em;
	/*padding: 2% 4% 2% 4%;*/
	/*padding: 2%;*/
	/*padding: 20px;*/
	/*padding: 2px 14px 2px 14px;*/
}

.Rtable_cell > h1,
.Rtable_cell > h2,
.Rtable_cell > h3,
.Rtable_cell > h4,
.Rtable_cell > h5,
.Rtable_cell > h6 {
  margin: 0;
}
/* Table column sizing
================================== */
.Rtable__1cols > .Rtable_cell {
  width: 100%;
}

.Rtable__1cols .Rtable_cell_inside {
	margin-right: 2%;
}

.Rtable__1cols .Rtable_cell__head {
	padding: 0.25% 2% 0.25% 0.25%;
}

.Rtable__2cols > .Rtable_cell {
  width: 50%;
}

.Rtable__2cols > .Rtable_cell_alone {
  width: 50%;
}

.Rtable__3cols > .Rtable_cell {
  width: 33.33%;
}
.Rtable__4cols > .Rtable_cell {
  width: 25%;
}
.Rtable__5cols > .Rtable_cell {
  width: 20%;
}
.Rtable__6cols > .Rtable_cell {
  width: 16.6%;
}

.Rtable_cell__head > h1,
.Rtable_cell__head > h2,
.Rtable_cell__head > h3,
.Rtable_cell__head > h4,
.Rtable_cell__head > h5,
.Rtable_cell__head > h6 {
  color: white;
}
.Rtable_cell__foot {
  background-color: #b8c0c8;
  border-color: #a9b3bc;
}

.Rtable_cell__alignTop, 
.Rtable_cell__alignMiddle, 
.Rtable_cell__alignBottom { display: flex; }

.Rtable_cell__alignTop { align-items: flex-start; }
.Rtable_cell__alignMiddle { align-items: center; }
.Rtable_cell__alignBottom { align-items: flex-end; }

.Rtable_cell__alignLeft { text-align: left; }
.Rtable_cell__alignCenter { text-align: center; } 
.Rtable_cell__alignRight { text-align: right; }

.Rtable_cell_alone img {
  width: 100%;
	/*border: 1px solid cyan;*/
	padding: 6% 2% 2% 2%;
}

.no-flexbox .Rtable {
  display: block;
}
.no-flexbox .Rtable > .Rtable_cell {
  width: 100%;
}
.no-flexbox .Rtable > .Rtable_cell__foot {
  margin-bottom: 1em;
}

/* Responsive
==================================== */
@media all and (max-width: 700px) {
  .Rtable__collapse { display: block; }
  .Rtable__collapse > .Rtable_cell { width: 100%;}
	.Rtable__collapse > .Rtable_cell_alone { width: 100%;/
	
  .Rtable__collapse > .Rtable_cell__foot {
    margin-bottom: 1em;
  }
	
	.Rtable_cell_caption {
	  padding: 2% 4% 2% 4%;
  }

  .Rtable_cell_alone {
	  padding-top: 5%;
  }
	
	.Rtable__1cols .Rtable_cell_inside {
	  margin-right: 4%;
  }
	
	.Rtable__1cols .Rtable_cell__head {
  	padding: 1.0% 2% 1.0% 1.0%;
  }
}


