


/* LISTS */

/*
A default margin-top/bottom for lists is NOT set in config.php - (standard browsers give outermost list a top and bottom margin).
[mPDF default CSS set in config.php only works on basic elements, cannot do selectors such as "ol ol"]
Need to add the following to do this, but also prevent margins in nested lists as per default HTML in most browsers:
*/

ul, ol { margin-top: 0.83em; margin-bottom: 0.83em; }
ul ul, ul ol, ol ul, ol ol { margin-top: 0; margin-bottom: 0; }

/* INDEXES */
div.mpdf_index_main {
	font-family: sans-serif;
	line-height: normal;
}
div.mpdf_index_entry {
	line-height: normal;
	text-indent: -1.5em;
}
div.mpdf_index_letter {
	font-family: sans-serif;
	font-size: 1.8em;
	font-weight: bold;
	line-height: normal;
	text-transform: uppercase;
	page-break-after: avoid;
	margin-top: 0.3em;
	margin-collapse: collapse;
}
a.mpdf_index_link {
	color: #000000;
	text-decoration: none;
}

/* TABLE OF CONTENTS */
div.mpdf_toc {
	font-family: sans-serif;
	line-height: normal;
}
a.mpdf_toc_a  {
	text-decoration: none;
	color: black;
}
div.mpdf_toc_level_0 {		/* Whole line level 0 */
	line-height: 1.5;
	margin-left: 0;
	padding-right: 0em;	/* should match the outdent specified for ToC; 0 is default; suggested value 2em */
}
span.mpdf_toc_t_level_0 {	/* Title level 0 - may be inside <a> */
	font-weight: bold;
}
span.mpdf_toc_p_level_0 {	/* Page no. level 0 - may be inside <a> */
}
div.mpdf_toc_level_1 {		/* Whole line level 1 */
	margin-left: 2em;
	text-indent: -2em;
	padding-right: 0em;	/* should match the outdent specified for ToC; 0 is default; suggested value 2em */
}
span.mpdf_toc_t_level_1 {	/* Title level 1 */
	font-style: italic;
	font-weight: bold;
}
span.mpdf_toc_p_level_1  {	/* Page no. level 1 - may be inside <a> */
}
div.mpdf_toc_level_2 {		/* Whole line level 2 */
	margin-left: 4em;
	text-indent: -2em;
	padding-right: 0em;	/* should match the outdent specified for ToC; 0 is default; suggested value 2em */
}
span.mpdf_toc_t_level_2 {	/* Title level 2 */
}
span.mpdf_toc_p_level_2 {	/* Page no. level 2 - may be inside <a> */
}

/* -------------------------------------------------------------
======	Tabla PDF
------------------------------------------------------------- */

table.tbl_pdf{
    font-family:Arial;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
	width: 95%;
	cellspacing:"0";
	cellpadding:"0";
	border-collapse:collapse;
	border: 1px solid #A6A6A6;
}

.tbl_pdf thead th{
    padding:6px 10px;
    text-transform:uppercase;
    color:#444;
    /*font-weight:bold;*/
}
.tbl_pdf thead th:empty{
    background:transparent;
    border:none;
}

.tbl_pdf tfoot td{
    /*font-weight:bold;*/
    padding:15px 0px;
    text-shadow:1px 1px 1px #fff;
}
.tbl_pdf tbody td{
    padding:5px;
	padding-left: 15px;
}
.tbl_pdf tbody tr:nth-child(4) td{
    /*font-weight:bold;*/
}
.tbl_pdf tbody td:nth-child(even){
    color:#000;
/*   	background: rgba(237,237,237,1);
	background: -moz-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(250,250,250,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(237,237,237,1)), color-stop(53%, rgba(246,246,246,1)), color-stop(100%, rgba(250,250,250,1)));
	background: -webkit-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(250,250,250,1) 100%);
	background: -o-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(250,250,250,1) 100%);
	background: -ms-linear-gradient(top, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(250,250,250,1) 100%);
	background: linear-gradient(to bottom, rgba(237,237,237,1) 0%, rgba(246,246,246,1) 53%, rgba(250,250,250,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#fafafa', GradientType=0 );*/
/*    border-bottom:1px solid #444;*/
	cellspacing:"0";
	cellpadding:"0";
	border: 1px solid #A6A6A6;
}
.tbl_pdf tbody td:nth-child(odd){
    color:#000;
	  /*font-weight:bold;*/
/*	background: rgba(237,237,237,1);
	background: -moz-linear-gradient(left, rgba(237,237,237,1) 0%, rgba(194,194,194,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(237,237,237,1)), color-stop(100%, rgba(194,194,194,1)));
	background: -webkit-linear-gradient(left, rgba(237,237,237,1) 0%, rgba(194,194,194,1) 100%);
	background: -o-linear-gradient(left, rgba(237,237,237,1) 0%, rgba(194,194,194,1) 100%);
	background: -ms-linear-gradient(left, rgba(237,237,237,1) 0%, rgba(194,194,194,1) 100%);
	background: linear-gradient(to right, rgba(237,237,237,1) 0%, rgba(194,194,194,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#c2c2c2', GradientType=1 );*/
/*    border-bottom:1px solid #444;*/
	cellspacing:"0";
	cellpadding:"0";
	border: 1px solid #A6A6A6;
}
.tbl_pdf tbody td:nth-last-child(1){
    border-right:1px solid #222;
}
.tbl_pdf tbody th{
	text-align:center;
	color:#000000;
	background-color: #E8E8E8;
/*    color:#696969;
    text-align:right;
    padding:0px 10px;
    border-right:1px solid #aaa;*/
	cellspacing:"0";
	cellpadding:"0";
	border: 1px solid #A6A6A6;
}
.tbl_pdf tbody span.check::before{
    content : url(images/check2.png)
}

/* -------------------------------------------------------------------- */

/* -------------------------------------------------------------------- */
