/* CSS Document - Event Redirect */


* {
font-family: Arial, sans-serif;
color: #555;
}

body {
	margin: 0;
}

img, a {
border: none;	
outline: none;
}

a {
color: #0084e6;
text-decoration: none;	
}

a:hover {
color: #0084e6;
text-decoration: underline;
}

.container {
margin: 0 auto;
}

.org_logo {
	box-sizing: border-box;
	width: 225px;
	height: 150px;
	margin: 0 auto 40px auto;
	padding: 5px;
	border: 0;
}
.org_logo img {
	width: 215px;
	max-height: 150px;
}

.ms_logo {
	width: 120px;
	height: auto;
}




/* 404 Page Layout */

.tab_window_divider {
	height: 1px;
	width: 100%;
	background: #ccc;
	margin: 10px 0;
}

h1, h2 {
	margin: 0;
}
.missingPage-text {
	padding-top: 5px;
	display: inline-block;
	font-size: 15px;
	color: #999;
	line-height: 1.4;
}

.missingPage-container {
	max-width: 380px;
	margin: 0 auto;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	    -ms-flex-align: center;
	        align-items: center;
	text-align: center;
	padding: 30px 15px 20px;
}
.missingPage-img {
	margin-bottom: 10px;
	width: 92px;
	height: 81px;
}
.missingPage-title {
	font-size: 60px; 
	font-weight: bold;
}
.missingPage-subtitle {
	font-size: 24px; 
	font-weight: normal;
	margin-bottom: 10px;
}

@media only screen and (min-width: 600px) {
	.missingPage-container {
		padding: 40px;
	}
}

