/*
face.css
'face' style for the Tarski theme - http://tarskitheme.com/
Designed by Benedict Eastaugh, http://extralogical.net/
*/

/* all A tags whose HREF attribute ends in .pdf */
a[href$='.pdf'] { 
	padding-right: 18px;
	background: transparent url(icon_pdf.gif) no-repeat center right;
}

/* all A tags whose REL attribute equals pdf */
a[rel='pdf'] { 
	padding-right: 18px;
	background: transparent url(icon_pdf.gif) no-repeat center right;
}

/*  all A tags whose REL attributes has the letters pdf somewhere mixed in*/
a[rel*='pdf'] { 
	padding-right: 18px;
	background: transparent url(icon_pdf.gif) no-repeat center right;
}

/* all A tags whose REL attribute contains the value pdf, seperated from other values with a space */
a[rel~='pdf'] { 
	padding-right: 18px;
	background: transparent url(icon_pdf.gif) no-repeat center right;
}

body.face blockquote { color: #333333; }
body.face .aside .meta { color: #333333; }
body.face .tagdata { color: #333333; }
body.face .articlenav { color: #000000; }

.datatable {
	border: 1px solid #000000;
	/* border-collapse: collapse; */
	font-size: 75%;
}
.datatable tr.e {
	background-color: #c0c0c0;
}
.datatable tr.o {
	background-color: #d3d3d3;
}
.datatable tr.e:hover, .datatable tr.o:hover {
	background-color: #dfe7f2;
	color: #000000;
}
.datatable td, .datatable th {
	padding: 4px;
}
.datatable td.c {
	padding: 4px;
	text-align:center;
}
.datatable caption {
	padding-top: 3px;
	padding-bottom: 2px;
	font: bold 1.2em sans-serif;
	border: none;
}



