﻿div.banner {
}
div.banner div.content {
	margin: 0;
	padding: 10px 20px;
	min-width: 1000px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	border-bottom-right-radius: 3px;
	overflow: hidden; /* no need to clear:both to deal with float:left */
}
div.fullscreen {
    top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: fixed;
    background: rgb(217,217,214); /* PANTONE Cool Gray 1 C */
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;
}
div.fullscreen div.content {
    width: 340px;
    padding: 20px;
    margin: auto;
    background: rgb(255,255,255);
    overflow: hidden;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
div.fullscreen div.content p:last-child {
    margin: 0;
}

div.fullscreen label {
    padding: 10px 0
}