.redIcon {color:red;}
.lbBG {background-color:lightblue;}
.blueIcon {color:DodgerBlue;}
.whiteText {color:white;}
.bBG {background-color:DodgerBlue;}

/* The animation code */
@keyframes alertAnimation {
	0%   {background-color: white;}
	50% {background-color: red;}
}

.widgetOffline{
	background-color: #c4c3c3;
}

.widgetAlertON{
	background-color: #ffffff;
	animation: alertAnimation 1.5s infinite;
}

.widgetAlertOFF{
	background-color: #ffffff;
}

/* RIGHT CLICK */
.context-menu {
	position: absolute;
	text-align: center;
	background: lightgray;
	border: 1px solid black;
}

.context-menu ul {
	padding: 0px;
	margin: 0px;
	min-width: 150px;
	list-style: none;
}

.context-menu ul li {
	padding-bottom: 7px;
	padding-top: 7px;
	border: 1px solid black;
}

.context-menu ul li a {
	text-decoration: none;
	color: black;
}

.context-menu ul li:hover {
	background: darkgray;
}

.widgetAlertNormal{
	background-color: #ffffff;
	animation: normalAlertAnimation 1.5s infinite;
}

@keyframes normalAlertAnimation {
	0%   {background-color: white;}
	50% {background-color: #fff3cd;}
}