@charset "utf-8";
/* CSS Document */

body {
	background-color:#FFFFFF;
	margin:0px;
	padding:0px;
	font-family: verdana;
	font-size:16px;
}
.header {
	background-color: #CDDEB166;
	width: 100%;
}
.logo {
	top: 15px;
	position: relative;
	z-index: 999;
	padding:0 0 0 16px;
	display:inline-block;
	margin-bottom: -25px;
}
.navbar-default {
	background-color:#128673;
	border-color: #128673;
	border-radius:0;
	border-bottom: 3px solid #0a6858;
}
.navbar-default .navbar-nav > li > a {
	color: #fff;
	background-color: transparent;
}
.navbar-default .navbar-nav > li > a:hover {
	color: #128673;
	background-color:#EBE3B2;
}
.container {
	-webkit-box-shadow: 0px -11px 34px 3px rgba(0, 0, 0, 0.58);
	-moz-box-shadow: 0px -11px 34px 3px rgba(0, 0, 0, 0.58);
	box-shadow: 0px -11px 34px 3px rgba(0, 0, 0, 0.58);
	width:64%;
	padding:0;
}
.ttl {
	color: #000000;
	font-size: 28px;
	text-align: center;
	font-weight: bold;
	margin: 0;
	margin-top: 0px;
	padding: 0 0 20px;
	line-height: 150%;
}
p {
	line-height: 150%;
	padding: 0 0 20px 0;
	text-align: justify;
}
@media(max-width:768px){
	.container {
	width:90%;
}
}

.active{
	color: #128673 !important;
    background-color: #EBE3B2 !important;
}

#article{padding:0;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 50px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* The Close Button */
.close {
    color: #000;
    float: right;
    font-size: 22px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #aaaaaa;
    text-decoration: none;
    cursor: pointer;
}
/* Modal Header */
.modal-header {
    padding: 10px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Modal Body */
.modal-body {padding: 2px 16px; max-height:500px; overflow-y:scroll;}

/* Modal Footer */
.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 800px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {top: -300px; opacity: 0} 
    to {top: 0; opacity: 1}
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}