body {    
    margin: 0 0;
    padding: 0 0;
	background-color: rgb(255,255,255);
	font-family: 'Roboto', sans-serif;
}

a {
    color: rgb(32, 33, 36);
    text-decoration: none;
}

.content {
	display: grid;
	display: -ms-grid;
  	grid-template-columns: 1fr 375px 375px 1fr;
	-ms-grid-columns: 1fr 375px 375px 1fr;
	grid-gap: 10px;
}

.header {
	display: flex;
	height: 64px;
	grid-column: 1 / 5;
	-ms-grid-column: 1;	
	-ms-grid-column-span: 4;
	-ms-grid-row: 1;

	border-bottom-color: rgb(218, 220, 224);
	border-bottom-style: solid;
	border-bottom-width: 1px;
	justify-content: center;
}

.header-title-icon {
	display: flex;
	align-items: center;
}

.header-title-text {
	display: flex;
	align-self: center;
    align-items: center;
    justify-content: center;
	color: rgb(32, 33, 36);
	font-family: Montserrat, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 16px;
	padding-left: 10px;
	padding-right: 10px;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	cursor: pointer;
}

.header-subtitle-text {
	display: flex;
	align-self: center;
    align-items: center;
    justify-content: center;
	color: rgb(32, 33, 36);
	font-family: Montserrat, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	height: 28px;
	line-height: 16px;
	padding-left: 10px;
	padding-right: 10px;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	cursor: pointer;
}

.header-subtitle-text:hover {
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  -moz-border-radius-bottomright: 20px;
  -moz-border-radius-bottomleft: 20px;
  -webkit-border-radius: 20px 20px 20px 20px;
  border-radius: 20px 20px 20px 20px;
  border-color: rgb(108, 120, 124);
  background-color: rgba(218, 220, 224, 0.5);
  font-weight: 600;
}

.header-subtitle-item {
	display: flex;
	align-self: center;
    align-items: center;
    justify-content: center;
	color: rgb(32, 33, 36);
	font-family: Montserrat, Roboto, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	height: 28px;
	width: 28px;
  	line-height: 16px;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;
	cursor: pointer;
}

.header-subtitle-item:hover {
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	-moz-border-radius-bottomright: 20px;
	-moz-border-radius-bottomleft: 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	border-radius: 20px 20px 20px 20px;
	border-color: rgb(88, 100, 104);
	border-width: 1px;
	background-color: rgba(218, 220, 224, 0.5);
	font-weight: 600;
}


.header-vertical-divider {
	display: flex;
	align-self: center;
	height: 40px;
	border-right-color: rgb(218, 220, 224);
	border-right-style: solid;
	border-right-width: 1px;
}

.header-spacer-40px {
	display: flex;
	align-self: center;
	height: 40px;
	width: 45px;
}

.header-spacer-20px {
	display: flex;
	align-self: center;
	height: 40px;
	width: 20px;
}

.content-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	grid-column: 2 / 4;
	-ms-grid-row: 3;
	-ms-grid-column: 2;
	-ms-grid-column-span: 2;
	justify-self: center;
	-ms-grid-column-align: center;
	border-bottom-color: rgb(218, 220, 224);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-image-outset: 0px;
	border-image-repeat: stretch;
	border-image-slice: 100%;
	border-image-source: none;
	border-image-width: 1;
	border-left-color: rgb(218, 220, 224);
	border-left-style: solid;
	border-left-width: 1px;
	border-right-color: rgb(218, 220, 224);
	border-right-style: solid;
	border-right-width: 1px;
	border-top-color: rgb(218, 220, 224);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-top-style: solid;
	border-top-width: 1px;
}

.content-header {
	margin-top: 20px;
	text-align: center;
	justify-content: center;
}

.content-header h1 {
	font-family: Montserrat, Roboto, Arial, sans-serif;
	font-size: 32px;
	line-height: 16px;
	font-weight: 400;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;	
}

.content-header h2 {
	font-family: Roboto, Arial, sans-serif;
	font-size: 24px;
	line-height: 16px;
	font-weight: 300;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;	
}

.content-footer {
	margin-bottom: 20px;
	text-align: center;
	font-family: "Roboto Condensed", Roboto, Arial, sans-serif;
	font-size: 12px;
	line-height: 26px;
	font-weight: 300;
	white-space: nowrap;
	-webkit-font-smoothing: antialiased;	
}

.copyright-text {
	margin: 10px;
	text-align: left;
	font-family: Roboto, Arial, sans-serif;
	font-size: 12px;
	line-height: 16px;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;		
}

.copyright-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	grid-column: 2 / 4;
	-ms-grid-row: 5;
	-ms-grid-column: 2;
	-ms-grid-column-span: 2;
	justify-self: center;
	-ms-grid-column-align: center;
}

.uuid {
	text-align: center;
	align-self: center;
	-ms-grid-row-align: center;
	font-family: Montserrat, Roboto, Arial, sans-serif;
	font-size: 24px;
	font-weight: 600;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 20px;
	border-bottom-color: rgb(218, 220, 224);
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-image-outset: 0px;
	border-image-repeat: stretch;
	border-image-slice: 100%;
	border-image-source: none;
	border-image-width: 1;
	border-left-color: rgb(218, 220, 224);
	border-left-style: solid;
	border-left-width: 1px;
	border-right-color: rgb(218, 220, 224);
	border-right-style: solid;
	border-right-width: 1px;
	border-top-color: rgb(218, 220, 224);
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	border-top-style: solid;
	border-top-width: 1px;	
}

.uuid::selection {
  background: #ffb7b7;
}
.uuid::-moz-selection {
  background: #ffb7b7;
}

.info-container {
	grid-column: 2 / 3;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	-ms-grid-row: 4;
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-self: center;
	-ms-grid-column-align: center;
	border-bottom-color: rgb(218, 220, 224);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-image-outset: 0px;
	border-image-repeat: stretch;
	border-image-slice: 100%;
	border-image-source: none;
	border-image-width: 1;
	border-left-color: rgb(218, 220, 224);
	border-left-style: solid;
	border-left-width: 1px;
	border-right-color: rgb(218, 220, 224);
	border-right-style: solid;
	border-right-width: 1px;
	border-top-color: rgb(218, 220, 224);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-top-style: solid;
	border-top-width: 1px;
}

.info-text {
	padding: 20px;
	line-height: 24px;
	font-family: Roboto, Arial, sans-serif;
	font-size: 14px;
}

.info-container-right {
	grid-column: 3 / 4;
	-ms-grid-row: 4;
	-ms-grid-column: 3;

	justify-self: center;
	-ms-grid-column-align: center;

	display: flex;
	flex-direction: column;
	width: 100%;
	justify-self: center;
	border-bottom-color: rgb(218, 220, 224);
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	border-bottom-style: solid;
	border-bottom-width: 1px;
	border-image-outset: 0px;
	border-image-repeat: stretch;
	border-image-slice: 100%;
	border-image-source: none;
	border-image-width: 1;
	border-left-color: rgb(218, 220, 224);
	border-left-style: solid;
	border-left-width: 1px;
	border-right-color: rgb(218, 220, 224);
	border-right-style: solid;
	border-right-width: 1px;
	border-top-color: rgb(218, 220, 224);
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	border-top-style: solid;
	border-top-width: 1px;

}

.ad-container-top {
	grid-column: 2 / 4;
	-ms-grid-row: 2;
	-ms-grid-column: 2;
	-ms-grid-column-span: 2;

	justify-self: center;
	-ms-grid-column-align: center;
}

.ad-leaderboard {
	height: 90px;
	width: 728px;
	padding: 0px;
	margin: 10px;
	text-align: center;
}

.ad-largerectangle {	
	height: 280px;
	width: 336px;
	margin: 10px;
	text-align: center;
}
