@charset "utf-8";
/* CSS Document */
/*TABLE STLING ON DOWNLOADS PAGE*/

/*styling of table*/
table{
border-collapse:collapse;
width:782px;
margin:2px 0 1px 0;
}


/*padding out both table headers and table data*/
th, td{
padding:0.1em 1em;
}

/*styling on caption*/
caption {
font-size:1.2em;
font-weight:bold;
margin:1em 0;
}

/*adding a verticle border to three of the columns, no, title description*/
col{
border-right:1px solid #ccc;
}

/*add some padding to the right side of the description column*/
col#description{
padding-right:15px;
}


/*end*/

/*'table head' colored with a tiop and bottom border*/
thead{
background-color:#fff;
border-top:1px solid #a5a5a5;
border-bottom:1px solid #a5a5a5;
color:#000;
}

/*alternating colors*/
.odd{
background-color:#dce6ed;
}
/*end*/

/*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*/

/*keeps header the same color-no hover*/
thead tr:hover {
background-color:transparent;
color:inherit;
}
/*end*/

tr a:link, tr a:visited {
text-decoration:underline;
color:#000;
display:block;
}

tr a:hover, tr a:active{
text-decoration:underline;
color:#fff;
display:block;
}


/*styling for table headers*/
th{
font-weight: normal;
text-align: left;
}
/*end*/