/*====================================================
	- HTML Table Filter Generator v1.6 
	elements and classes
	- edit classes below to change filter grid style
=====================================================*/

.fltrow{ /* filter grid row appearance */
	height:20px;
	background-color:#f4f4f4;
}
.btnflt{/* button appearance */
	font-size: 1.2em;
	margin-top: -90px;
	margin-left: -171px;
	padding: 6px 10px 4px 10px;
	text-decoration:none;
	color: #bb080a;
	font-weight: bold;
	background-color: transparent;
	border: solid 2px;
}
.btnflt:hover {background-color: #BB080A; color: white}
/*----------------------- MEDIA QUERIES - GRID ----------------------- */
@media only screen and (max-width:1170px) {
    .btnflt{margin-left: -131px;}
}
@media only screen and (max-width:640px) {
    .btnflt{margin-left: -30px;}
}
.flt{/* filter (input) appearance */
	background-color:#f4f4f4;
	border:1px inset #ccc;
	margin:0;
	width:100%;
}
.flt_s{ /* small filter (input) appearance */
	background-color:#f4f4f4; border:1px inset #ccc; 
	margin:0; width:80%;
}
.inf{/* div containing left, middle and right divs */
	clear:both;
	width:auto;
	font-size: 1.1em;
	margin-bottom: 0px;
	padding: 0px 3px 2px 14px;
}
.ldiv{ /* left div */
	float:left; width:30%; position:inherit; 
}
.mdiv{ /* middle div */
	float:left; width:30%; position:inherit; text-align:center; 
}
.rdiv{/* right div */
	/* float:right; */
	/* width:30%; */
	/* position:inherit; */
	/* text-align:right; */
}
.loader{ /* loader appearance */
	position:absolute; padding: 15px 0 15px 0;
	margin-top:7%; width:200px; left:40%; 
	z-index:1000; font-size:14px; font-weight:bold;
	border:1px solid #666; background:#f4f4f4; 
	text-align:center; vertical-align:middle;
}
div.mdiv select{ height:20px; }/*paging drop-down list*/
div.inf a{ color:#CC0000; }/*link appearence in .inf div*/
div.inf a:hover {text-decoration: underline;}
.tot{ font-weight:bold; }/*rows counter*/
.even{ background-color:#fff; }/*row bg alternating color*/
.odd{ background-color:#f4f4f4; }/*row bg alternating color*/

