html {
   background: #f0f0f0;
}

h4{
   margin-top:40px;
}

p{
   text-align: justify;
   hyphens: auto;
}

.pic_rounded {
   //border-radius: 5px; 
   box-shadow: rgb(204, 204, 204) 10px 10px 5px;
}

/* Fancy Table No. 1 */

.fancy_table_1 {
    border-collapse: separate;
    border-spacing: 6px 6px;
    border-radius: 5px;
	font-family: Arial;
    box-shadow: 0px 0px 10px 3px rgba(128, 128, 128, 0.7);
}

.fancy_table_1 th {
    color: white;
    font-weight: bold;
    font-size: medium;
    background-color: #1a51a3;
    padding-left: 10px;
	padding-right: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	text-align: left;
    border-bottom: 1pt solid rgb(121, 121, 121);
	height: 30px;
}

.fancy_table_1 th.banner {
    text-align: center;
    padding: 10px 0px 10px 0px;
}

.fancy_table_1 tr td {
    padding-left: 10px;
	padding-right: 10px;
	padding-top: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid #ddd;
}

.fancy_table_1 tr:hover td{
    background-color: #ffffff;
}

.fancy_table_1 tr td[valign] {
    vertical-align: top;
}

.fancy_table_1 tr td:first-child, .fancy_table_1 tr th:first-child {
    padding-left: 30px;
}

.fancy_table_1 tr td:last-child, .fancy_table_1 tr th:last-child {
    padding-right: 30px;
}

.fancy_table_1 tr:nth-child(even) {
    background-color: #eeeeee;
}
.fancy_table_1 tr:nth-child(odd){
    background-color: #e4e4e4;
}

/* top-left border-radius */
.fancy_table_1 tr:first-child th:first-child {
    border-radius: 5px 0px 0px 0px;
}
.fancy_table_1 tr:first-child th[colspan]:first-child {
    border-top-left-radius: 5px;
}
/* top-right border-radius */
.fancy_table_1 tr:first-child th:last-child {
    border-radius: 0px 5px 0px 0px;
}
/* bottom-left border-radius */
.fancy_table_1 tr:last-child td:first-child {
    border-radius: 0px 0px 0px 5px;
}
/* bottom-right border-radius */
.fancy_table_1 tr:last-child td:last-child {
    border-radius: 0px 0px 5px 0px;
}

.fancy_table_1 a {
    color: #1a51a3);
    text-decoration: none;
    display: inline-block;
    position: relative;
}
.fancy_table_1 a:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #1a51a3;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }

.fancy_table_1 a:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}