body {
	position: absolute;
	top: 0px;
	left: 0px;
	margin: 0px;
	padding: 0px;
	height: 100%;
	width: 100%;
	background-color: #888;
	font-family: Arial;
}

#pagewrapper {
	width: 80%;
	min-width: 800px;
	height: 100%;
	position: relative;
	left: 10%;
}

.tile {
	width: 21%;
	height: 200px;
	margin: 1% 0px 1% 1%;
	padding: 10px;
	border: 1px solid #666;
	border-radius: 10px;
	background-color: #777;
	float: left;
	box-shadow: 2px 2px 3px 2px #555;
	transition: background-color .5s ease-out 0ms;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	
}

.tile:hover {
	background-color: #aaa;
}

.tilecontent {
	text-align: center;
	color: #fff;
	font-size: 32px;
	text-shadow: 3px 3px 5px #666;
}

.ultileflag {
	position: absolute;
	top: 15px;
	left: 15px;
	font-size: 16px;
	color: #444;
	background-color: #999;
	padding: 5px 20px;
	border-radius: 10px;
	box-shadow: 1px 1px 3px #444;
	font-weight: bold;
}

.localorinternetlinks {
	font-size: 24px;
	color: #ddd;
	background-color: #888;
	padding: 5px 20px;
	margin: 0px 5px;
	border-radius: 10px;
	box-shadow: 1px 1px 3px #444;
	font-weight: bold;
}

a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #aaa;
	transition: color .1s ease-out 0ms;
}

a:hover {
	color: #444;
}

p {
	padding: 0px;
	margin: 0px;
}