@import url('https://fonts.googleapis.com/css?family=Open+Sans');

:root, html {
	--se-black: #1D1D1D; 
	--se-blue: #263780; 
	--se-brown: #C19463; 
	--se-green: #94C11F; 
	--se-orange: #F39200; 
	--se-purple: #8164A9; 
	--se-red: #E74262; 
	--se-skyblue: #009EE1;

	--se-light-blue: #8A93BA;
	--se-light-brown: #DEC5AB;
	--se-light-green: #C5DE86;
	--se-light-orange: #F9C475;
	--se-light-purple: #BBABD1;
	--se-light-red: #F299AA;
	--se-light-skyblue: #80CFF0;

	--primary-bg-colour: rgb(2, 63, 133);
    --primary-bg-colour54: rgb(118, 151, 189);
    --primary-bg-colour14: rgb(220, 228, 238);
    --primary-colour: white;
    --primary-colour54: white;
    --primary-colour14: rgb(2, 63, 133);
}

body {
	background-color: whitesmoke;
	color: var(--se-black);
	font-size: 11pt;
	line-height: 1.5;
	margin: 64px 0px 0px 0px;
}

body, body * {
	-webkit-font-smoothing: subpixel-antialiased;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	text-rendering: optimizeLegibility;
	box-sizing: border-box;
}

.clearfix {
	clear: both;
	display: block;
}

#waitCtrl {
	background: url(../../style/images/wait.gif) no-repeat left center;
	background-size: contain;
	background-color: white;
	border: 2px solid rgb(128,128,128);
	border-radius: 8px;

	-moz-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
	-webkit-box-shadow: 0 4px 8px rgba(0,0,0,0.5);
	box-shadow: 0 4px 8px rgba(0,0,0,0.5);
 
    height: 100px;
    margin: auto;
    position: absolute;
    width: 220px;

    top:0; bottom: 0;
    left: 0; right: 0;
}

#waitCtrl>div {
	float: right;
	font-size: 14pt;
	padding: 36px 8px;
}

#footer {
	display: flex;
	justify-content: space-between;
    margin: 0px auto;
    width: 80%;
}

#footer li {
    border-left: 1px solid rgb(229, 229, 229);
    float: left;
    padding: 0 10px;
}

#footer li:first-child {
    border: none;
    padding-left: 0px;
}

#footer li:last-child {
    padding-right: 0px;
}

#footer li a {
    color: inherit;
    text-decoration: none;
}

#footer li a:hover {
    color: rgb(0, 137, 207);
}

#footer ul {
    list-style: none;
    width: auto;
    margin-top: 12px;
	margin-bottom: 12px;
	padding: 0px;
}
html { background: white; }

#logo {
	background: url('/style/images/common/logo/se/black.png') center center no-repeat;
	background-color: white;
	background-size: contain;
	border-radius: 3px;
	position: absolute;
	left: 4px;
	top: 4px;
	height: 60px;
	width: 64px; 
}

#menubar {
	background-color: white;
	height: 60px;
	position: absolute;
	right: 4px;
	top: 4px;
}
#menubar .item { 
	cursor: pointer;
	font-size: 9pt; 
	padding: 4px;
	position: relative;
}
#menubar .item .icon {
	width: 44px;
	height: 44px;
	display: inline-block;
	background-size: contain;	
}
#menubar .item .icon .badge {
    background: var(--primary-bg-colour);
    border-radius: 50%;
    box-sizing: border-box;
    color: white;
    font-size: 10px;
    font-weight: bold;
    line-height: 1.8;
    min-height: 20px;
    min-width: 20px;
    padding: 0px 3px;
    position: absolute;
    text-align: center;
    vertical-align: middle;
}

#menubar .item .submenu {
	background-color: rgba(255,255,255,0.7);
	border: 1px solid rgb(196, 196, 196);
	border-radius: 0px 0px 4px 4px;
	box-shadow: 3px 3px 2px rgb(136, 136, 136);
	line-height: 2;
	list-style-type: none;
	margin: 0px 4px;
	padding: 4px;
	visibility: hidden; 
}
#menubar .item .submenu>li { 
	border-radius: 4px;
	padding: 0px 4px;
}
#menubar .item .submenu>li:hover { 
	background-color: var(--primary-bg-colour);
	color: white;
}

#menubar .item:hover .submenu, #menubar .item .submenu:hover { visibility: visible; }
#messageCtrl {
	border-radius: 6px;
	color: rgb(255, 255, 255);
	font-size: 12pt;
	font-weight: bold;
	margin: 2px;
	overflow: hidden;
	padding: 12px 24px;
	position: fixed;
	right: 16px;
	top: 8px;
	z-index: 999999;
}

#messageCtrl.info { background-color: rgba(0, 0, 128, 0.6); }
#messageCtrl.error { background-color: rgba(255, 0, 0, 0.6); }

#template_content { padding: 8px; }
