  /*
//Site-specific styles


//Courses Table Properties


table.courses {
    border: 1px solid black;
}
table.courses tr td{
    border: 0;
    text-align:center;
    vertical-align: middle;
}
table.courses td:nth-child(2){
    width: 10%;
}
table.courses tr:nth-child(odd){
    background-color: lightgray;
}

//Guide Table Properties
table.guide {
    border: 0;
}
table.guide tr td{
    border: 0;
    text-align:center;
    vertical-align: middle;
    font-weight: bold;
    font-size: 120%;
    background-color: white;
}
table.guide td:nth-child(3){
    width: 40%;
}
//Generic Table
table, th {
	 border: 1px solid black;
	 text-align: center;
}
table th{
    background-color:darkorange;
	vertical-align: middle;
}
table td {
    text-align: center;
	vertical-align: middle;
}

table tr:nth-child(odd){
    background-color: lightgray;
}
table.schedule td {
    border-right: 1px solid black;
    border-left: 1px solid black;
}
*/