/* CSS file for wrapper other things */

/* UP-1 takeover notice */
main > div > div#notice {
	display: none;
	margin: 20px auto 35px 0px;

	border-top: 5px solid rgb(237,211,20);
	box-shadow: 0px 0px 1px rgb(34,86,152), 5px 5px 5px rgba(0,0,0,.1), 0px 25px 25px rgba(0,0,0,.075) inset;
	padding: 15px;
}
	main > div > div#notice.show {
		display: block;
	}

	/* paragraphs */
	main > div > div#notice > p {
		line-height: 1.25;
		font-size: 16px;
		margin-bottom: 10px;
	}

	main > div > div#notice > button {
		display: block;
		font-weight: bold;
		font-size: 15px;

		background: #213B65;
		color: white;
		padding: 5px;
		border: rgba(0,0,0,.75);

		width: 100px;
		margin-left: auto;
		margin-right: auto;

		opacity: .75;
	}

		main > div > div#notice > button:hover {
			box-shadow: 2px 2px 5px rgba(0,0,0,.25);
			cursor: pointer;
			opacity: 1;
		}

		main > div > div#notice > button:active {
			box-shadow: -2px -2px 5px rgba(0,0,0,.25);
		}
