﻿/* Common app styling */

#content-header {
	background: #2a8dd4;
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px; /* Fixed header height */
	overflow: hidden; /* Disable scrollbars for header */
}

#content-main {
	background: #fff;
	
	top: 90px; /* Same value as #content-header's height */
	left: 0;
	right: 0;
	bottom: 0;
	overflow: auto; /* Enable scrollbars within main content section */
}

.padding {
	padding: 15px;
}

#notification-message {
	background-color: #818285;
	color: #fff;
	position: absolute;
	width: 100%;
	min-height: 80px;
	right: 0;
	z-index: 100;
	bottom: 0;
	display: none; /* Hidden until invoked */
}

#notification-message-header {
	font-size: medium;
	color: #fff;
	margin-bottom: 10px;
}

#notification-message-body {
	color: #fff;
}

#notification-message-close {
	background-image: url("../Images/Close.png");
	background-repeat: no-repeat;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 5px;
	top: 5px;
	cursor: pointer;
}