@charset "utf-8";
/* CSS Document */
/*TABLE STLING ON DOWNLOADS PAGE*/

/*styling of table*/
table{
border:1px solid #000;
width:475px;
margin:2px 0 1px 0;
font-size:12px;
color:#000;
}

/*padding out both table headers and table data*/
th, td{
padding:0.1em 1em;
border:1px solid #000;
color:#000;
}

/*visual feedback for rows to change color on hover but not the table head, which we set to transparent*/
tr:hover {
background-color:#a7bed1;
color: #fff;
}
/*end*/


/*styling for table headers*/
th{
font-weight:normal;
text-align: left;
}
/*end*/