/* STYLES USED IN THE PROGRAM */


/* today's assignment objects (rows)*/
td.ass_today
{
    background: lightgreen;
}

/* students that are logged in (rows)*/
td.logged_in
{
    background: pink;
}


/* so that links are not underlined */
a, a:visited
{
    color: blue;
    text-decoration: none;
}

/* underline links with mouse over */
a:hover
{
    text-decoration: underline;
}

/* highlight the line with mouse: */
tr.selectable
{
    border-top: 2px solid #DDDDDD;
}
tr.selectable:hover
{
    border: 2px solid black;
}

/* highlith any set of elements with this */
.highlighted
{
    background: #9999FF;
}


/* special in-text 'buttons' */
a.button
{
    color: blue;
    text-decoration: underline;
}


/* css for class overview page */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
}
table {
	border-collapse: collapse;
/*	border: 1px solid #000000;*/
	margin-right: auto;
	margin-left: auto;
}
#banDiv {
  display: none;
}
.rel {
  width:auto;
	position: relative;
	width:60px;
	display:table;
}
.ab-left {
	position: absolute;
	left: 5px;
}
.ab-right {
	position: absolute;
	right: 5px;
}
.dataTable {
	width: 100%;
	clear:both;
}
.legendTable {
	width: auto;
	margin-left: 6px;
}
th {
	border: 1px solid #C0C0C0;
}
td {
	border: 1px solid #C0C0C0;
	padding-left: 5px;
	padding-right: 2px;
}
img {
    border: 0px;
}
.floatLeft {
    float: left;
}
.floatRight {
    float: right;
}
.viewPrint {
	width: 80px;
}
tr.even{
    background-color: #FFFFFF;
}
tr.odd{
    background-color: #DDDDDD;
}
.headFoot{
    float: left;
    padding-left: 0%;
}
.refresh{
    float: right;
    padding-right: 0%;
}
/* renders a text vertically up */
.vertical-text {
    filter: flipv fliph; 
    -webkit-transform: rotate(-90deg); 
    -moz-transform: rotate(-90deg);
    writing-mode: tb-rl;
}
