@charset "utf-8";
/* Contains styling information for the headers */
#logo {
	width:26px;
	height:26px;
	margin-top:3px;
	cursor:pointer;
}
#menuOpener {
	height:18px;
	width:18px;
}
.toolbarItem {
	display:table-cell;
	vertical-align:middle;
	height:35px;
}
#header {
	margin:0px;
	width:100%;
	height:35px;
	max-height:35px;
	color:#fff;
	display:table;
	background-color:#5c76b4;
	background: linear-gradient(#6e89c4, #5c76b4);	
	position:fixed;
	top:0px;
	left:0px;
	z-index:10000;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	cursor:default;
	/*linear-gradient(#e43e49, #d42c36)*/
}
.normalHeader {
	background-color:#5c76b4;
	background: linear-gradient(#6e89c4, #5c76b4);	
}
.alarmedHeader {
	background-color: #e43c26;
	background: linear-gradient(#f44e39, #e43c26);	
}
#headerLeft {
	display:table-row;
	height:35px;
	float:left;
}
#headerCentre {
	display:table-row;
	height:35px;
	width:100%;
	text-align:center;
}
#headerRight {
	display:table-row;
	height:35px;
	right:0;
	float:right;
	margin-right:2px;
}
#headerOuter {
	display:table;
	margin-left:auto;
	margin-right:auto;
	height:35px;
}
#headerMiddle {
	max-width:1000px;
	min-width:1000px;
	margin-left:auto;
	margin-right:auto;
	height:35px;
}
#headerInner {
	margin-left:auto;
	margin-right:auto;
	max-width:1000px;
	min-width:1000px;
	display:block;
	height:35px;
}
.seperator {
	display:table;
	width:1px;
	height:20px;
	background-color:#999;
	margin:0 6px;
}
#alarmBanner {
	cursor:pointer;
	padding-left: 10px;	
}
/* Styling information relating to message boxes */
#msgbox {
	z-index:12001;
	position:fixed;
	background-color:#F9FAFD;
	width:350px;
	height:200px;
	border-radius:5px;
	margin:auto;
	top:0;
	bottom:0;
	left:0;
	right:0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	cursor:default;	
}
#msgHeader {
	background:#6e89c4; /*Backup for old browsers */
	background: linear-gradient(#6e89c4, #5c76b4);
	height:30px;
	width:100%;
	color:#fff;
	line-height:30px;
	text-align:center;
	border-radius:5px 5px 0 0;
}
#msgBody {
	padding:5px;
	max-height:110px;
	min-height:110px;
	overflow-y:auto;
}
#msgFooter {
	position:absolute;
	bottom:0px;
	padding:5px;
	width: calc(100% - 10px);
	text-align:center;
}
#blackout {
	z-index:10001;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background-color: rgba(0,0,0,0.6);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	cursor:default;	
}
/* Styling relevant to the menu */
#menu {
	min-height:120px;
	position:fixed;
	background-color:#fff;
	top:35px;
	z-index: 5000;
	border: 1px #000;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px #999;
	width: 225px;
	left: calc(50% + 500px - 225px);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	cursor:default;	
}
#menuList {
	list-style:none;
	padding: 0 0;
	margin: 0 0;
}
.menuItem{
	margin: 4px 0;	
	padding: 3px 30px;
	height:18px;
}
.menuItem:hover{
	background-color:#19D;
	color:#FFF;
}
.menuDivider{
	height:1px;
	margin: 6px 10px;
	padding:0px;
	background-color:#ccc;
}
/*Change password*/
#newPassContainer {
	z-index:10002;
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	width:400px;
	height:185px;
	background:#fff;
	margin:auto;
	border-radius:5px;
}
#changePassLoadingGif {
	margin-top: auto;
	margin-bottom: auto;
	top: 0;
	bottom: 0;
	right: 16px;
	position: absolute;
}
.cpTable{
	display:table;
	width:100%;
}
.cpRow {
	margin:10px
}
.cpCentRow {
	text-align:center;
	margin:15px
}
/*Styling for about box */
#aboutBox {
	position:fixed;
	width:500px;
	height:350px;
	margin:auto;
	top:0;
	right:0;
	bottom:0;
	left:0;
	background-color:#fff;
	z-index:10003;
	border-radius:5px;
}