
body {
	width:100%;
	padding:0px;
	margin:0px;
	overflow-x:hidden;
	position:relative;
	
	background-color: #ededed;
	font-size: 14px;
	color: #464646;
	
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
}

html
{
	width:100%;
	padding:0px;
	margin:0px;
	overflow-y:auto;
}

*
{
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

#container {
	
	max-width: 1400px;
	margin: auto;
	text-align: center;
	padding-left: 30px;
	padding-right: 30px;
}

#menu ul {
	margin: 0;
	padding: 0;
}

#menu li {
	list-style: none;
	display: inline-block;
	font-size: 18px;
}

a {
	text-decoration: none;
	color: black;
}

a:hover {
	color: #910118;
}

h1 {
	margin-bottom: 40px;
}

h2 {
	font-size: 70px;
}

h3 {
	font-size: 26px;
	color: #910118;
	margin-top: 6%;
	text-transform: uppercase;
}

p {
	font-size: 18px;
	line-height: 26px;
	margin-top: 20px;
}

table {
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
	border-spacing: 0 20px;
}

table h3, .table h3 {
	font-size: 22px;
}

td {
	padding: 10px;
}

.table {
	display: flex;
	flex-wrap: wrap;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.cell {
	flex: 1;
	padding: 5px;
	align-self: flex-start;
}

footer {
	margin-top: 12%;
	text-transform: uppercase;
	border-top: 1px solid #000;
}



.person_full
{
	display: flex;
	max-width: 1100px;
	margin: auto;
	
}



.person_full > div:first-child
{
	flex-shrink: 0;
	padding-right: 10%;
	margin-bottom: 40px;
}

.person_full > div:last-child
{
	flex-grow: 1;
	margin-bottom: 40px;
}


.person_double
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.person_double > div
{
	width: 45%;
	display: flex;
	margin-bottom: 40px;
}

.person_double > div > div:first-child
{
	padding-right: 30px;
}

.person_double > div > div:last-child
{
	flex-grow: 1;
}

.title-h3
{
	margin-top: 10%;
}



@media screen and (max-width: 1200px) {
	.person_double > div
	{
		width: 100%;
	}
}
@media screen and (max-width: 800px) {
	.person_full
	{
		flex-wrap: wrap;
	}
	.person_full > div
	{
		width: 100%;
	}
	.person_full > div:first-child
	{
		padding-right: 0px;
	}
	
	.person_double > div
	{
		flex-wrap: wrap;
	}
	.person_double > div > div
	{
		width: 100%;
	}
	.person_double > div > div:first-child
	{
		padding-right: 0px;
	}
}

