body
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #666666;
	margin: 40px;
	padding: 0;
	background: #1a345b;
	background: linear-gradient(#1a346b 10%, #3071BC 25%, #1a346b);
	background-repeat: no-repeat;
    background-attachment: fixed;
}

hr
{
	border: none;
	height: 1px;
	background-color: #12283c;
}

.main_body
{
	margin: auto;
	width: 100%;
	max-width: 960px;
	min-width: 180px;
	top: 45px;
}

.frame
{
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	position: relative;
	border: 1px solid #12283c;
	border-radius: 8px;
}

.header
{
	border-radius: 8px 8px 0px 0px;
	box-shadow: inset 0 0 4px #12283c;
	background-image: url('header.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 0;
	padding-top: calc(214/960*100%);
}

.header img
{
	border-radius: 8px 8px 0px 0px;
	max-width: 100%;
	height: 100%;
}

.navbar
{
	background-color: #12283c;
	width: 100%;
}

.navbar a
{
	position: relative;
}

.navbar a:link,
.navbar a:visited
{
	background-color: #12283c;
	color: white;
	padding: 14px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.navbar a:hover,
.navbar a:active
{
	background-color: #1a344b;
}

.navbar a:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #FFF;
	visibility: hidden;
	transform: scaleX(0);
	transition: all 0.3s ease-in-out;
}

.navbar a:hover:before
{
	visibility: visible;
	transform: scaleX(1);
}

.container
{
	position: relative;
	margin: 0px 5px 5px 5px;
}

.content
{
	font-size: 18px;
	width: 100%;
	color: #12288F;
	border-radius: 0px 0px 8px 8px;
	box-shadow: inset 0 0 4px #12283c;
	min-height: 600px;
}

.content a:link,
.content a:visited,
.content a:hover,
.content a:active
{
	text-decoration: none;
	color: #1228FF;
}

.content p
{
	margin: 15px;
}

.fit_img
{
	max-height: 100%;
	max-width: 100%;
}

@media only screen and (max-width: 460px)
{
	body
	{
		margin: 0px;
	}

	.navbar
	{
		text-align: center;
	}
}