/* Blink Animation */
.blinkClass 
{
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation 
{
	0% {opacity: 1.0;}
	50% {opacity: 0.5;}
	75% {opacity: 0.0;}
	100% {opacity: 1.0;}
}
@-webkit-keyframes blink-animation 
{
  	0% {opacity: 1.0;}
	50% {opacity: 0.5;}
	75% {opacity: 0.0;}
	100% {opacity: 1.0;}
}

.titleDiv
{
	width: 70%; 
	height: 12px; 
	border-bottom: 1px solid black;
	margin-bottom: 12px;
}

.titleSpan
{
	font-size: 15px; 
	background-color: #FFF; 
	padding: 0 6px 0 10px;
}

.noDataToShow
{
	color:red;
	text-align:center;
	font-weight:bold;
	padding:20px !important;
}

.table_noBorder_noBorder > thead > tr > th, .table_noBorder > tbody > tr > th, .table_noBorder > tfoot > tr > th, .table_noBorder > thead > tr > td, .table_noBorder > tbody > tr > td, .table_noBorder > tfoot > tr > td
{
	border-top:none;
}

/* Table Formatter */
/* 2 Headder table */
.tbl2Headdings
{
	width:100%;
	margin:0 auto;
    font-family: "Source Sans Pro", Calibri, Candara, Arial, sans-serif;
}

.tbl2Headdings thead
{
	background:#2780e3;
	color:#EEE;
}

.tbl2Headdings thead th
{
	text-align:center;
	padding:0;
	border-bottom:0;
}

.tbl2Headdings tr td
{
	text-align:center;
}

.tbl2Headdings tr td small
{
	float:right;
}

.tdClickable
{
	text-decoration: underline;
}

.tbl2Headdings .tdClickable:HOVER
{
	cursor: pointer;
	text-decoration: underline;
	font-weight: bold;
	background: #EEF;
}

/* Notification Badge */
.notification_badge_top
{
	padding: 2px 5px !important;
	background-color: #ff3232 !important;
    color: white !important;
    position: relative;
    top: -10px;
    left: -10px;
}

/* Span Error */
.spnError
{
	color: red;
	text-align: center;
	display: none;
}

.iconClass
{
	padding-right: 5px;
}

/* Single row headder */
.tdInnerHead
{
	background:#2780e3;
	color:#EEE;
}

/* Table action columns */
.editIcon
{
	padding-left: 15px;
	padding-right: 10px;
	cursor: pointer;	
}

.editIcon:HOVER
{
	color:maroon;	
}

.deleteIcon
{
	padding-left: 15px;
	padding-right: 10px;
	cursor: pointer;
	color:red;	
}

.deleteIcon:HOVER
{
	color:maroon;	
}

.ActiveUser
{
	padding-left: 5px;
	padding-right: 5px;
	
	color : green;
	cursor: pointer;
}

.ActiveUser:HOVER
{
	color:maroon;
}

.DisabledUser
{
	padding-left: 5px;
	padding-right: 5px;
	
	color : red;
	cursor: pointer;
}

.DisabledUser:HOVER
{
	color:maroon;
}
