@font-face {
	font-family: "Letters for Learners";
	src: url("/fonts/Letters for Learners.ttf");
}

html {
	font-family: "Letters for Learners", Arial, Sans;
	font-size: 13pt;
	font-weight: 500;
}
body {
	background-color: #222;
	color: #fff;
}
a {
	color: #0d0;
	text-decoration: none;
}
a:hover {
	color: #0f0;
}
h1, h2 {
	border-bottom: 1px dotted #eef;
}
.menu {
	display: flex;
	width: 400px;
	position: absolute;
	top: 0;
	left: -380px;
	border-right: 3px solid #000;
	border-bottom: 3px solid #000;
	background-color: #333;
	padding: 4px 0 4px 4px;
	z-index: 2;
	transition-duration: .5s;
	transition-timing-function: ease-in-out;
}
.menu .menulist {
	width: 374px;
}
.menu .menutab {
	width: 26px;
}
.menu > div > div {
	padding: 2px 0;
}
.menutab img {
	width: 24px;
	margin: 1px;
}
.mainframe {
	position: absolute;
	left: 50px;
	display: flex;
	padding: 15px;
}
.active {
	border: 1px solid;
	border-radius: 15px;
	width: 50px;
	height: 20px;
	background-color: orange;
}
.active .toggle {
	height: 20px;
	width: 20px;
	border: 1px; solid #000;
	border-radius: 15px;
	transition-duration: .2s;
	transition-timing-function: ease-in-out;
}
.active .on {
	margin-left: 30px;
	background-color: green;
}
.active .off {
	margin-left: 0;
	background-color: red;
}
.form {
	display: flex;
	flex-wrap: wrap;
}
.form > div {
	margin: 4px;
	padding: 3px;
	width: 180px;
	border: 1px solid #fee;
	border-radius: 5px;
}
.form img {
	width: 30px;
	margin: 2px;
	float: right;
}
.form .note {
	width: 100%;
}
.form textarea {
	width: 98%;
	height: 400px;
}
.list {
	display: table;
}
.list > div {
	display: table-row;
}
.list > div > div {
	display: table-cell;
	border-bottom: 1px dotted #bbb;
	padding: 2px;
}
.list img {
	width: 30px;
	margin: 2px;
}
#association {
	cursor: pointer;
}
.associate_contact {
	position: absolute;
	right: 4px;
	display: none;
	flex-direction: column;
	width: 155px;
	background-color: #333;
	border: 1px solid #fff;
	padding: 4px;
}
.associate_contact .close_layer {
	color: red;
	font-size: 120%;
	font-weight: bold;
	cursor: pointer;
}
.associate_contact > div {
	margin-top: 6px;
}
.clients_selection > div {
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.clients_selection a {
	color: red;
}
	
.inactive a {
	color: #aaa;
}
.messaging {
	margin: 5px 50px;
	font-size: 130%;
}
.alertlvl1 {
	color: green;
	border-bottom: 2px dotted #00ff00;
}
.alertlvl2 {
	color: organge;
	border-bottom: 2px dotted #00ffff;
}
.alertlvl3 {
	color: red;
	border-bottom: 2px dotted #ff0000;
}