
/*----------.tableforarticles Class created to control the borders around the table for the Exit Strategy and Execution Articles list. The next three definitions cover the structural elements of the table----------*/
.tableforarticles {
	margin:0 0 10px 0; /*---The margin definitions here control how far the table sits from each edge of the page and page elements above and below - left, right, top and bottom---*/
	width:99%; /*---This makes the table X pixels/pc wide---*/
	padding:0; /*---These padding elements replace cellpadding---*/
	background-color:#FFFFFF;
}
/*----------DIV for Tables - used on Exit Strategies for list of articles - DIFFERENT THAN EXIT STRATEGIES; now used on basilpeters for BC Science Gold Medal and Cert - Large page----------*/

/*---.tableforarticles Class created to control the borders around the table for the Exit Strategy and Execution Articles list. The next two definitions cover the structural elements ***inside*** the table. Each of these definitions needs to be included so a border line separates each table row---*/
.tableforarticles th {
	padding:0; /*---These padding elements replace cellpadding---*/
}
.tableforarticles td {
	padding:8px 0 8px 0; /*---If I have padding 0 in tableMain it tableforarticles will not allow me to change the padding BUT padding inherit in tableMain works! These padding elements replace cellpadding---*/
	border:none;
}
.tableforarticles img {
	margin:0 10px 0 5px;
}
/*----------These next three definitions cover typography within this table, changing the margins and padding of p, h1 and h2----------*/
.tableforarticles p {
	padding:5px;
	margin:0;	
}
.tableforarticles h1 {
	font-size:14px;
	font-weight:bold;
	color:#CC0000;
	text-decoration:none;
	padding-top:10px 5px 10px 5px;
	margin:0;
}
.tableforarticles h2 {
	font-size:13px;
	font-weight:bold;
	color:#000000;
	padding-top:5px 5px 10px 5px;
	margin:0;
}
.tableforarticles tr.d3 td {
	border-bottom:1px dashed #333333; /*---This allows me to choose which ROWS in the embedded table I want to have dashed bottom BORDERS---*/
}
.tableforarticles tr.d4 td {
    background-color:#F2F7FE;
}
