/* CSS Document */

/* This makes the scrolling table work */

div.scrollTableContainer {
	height: 350px;	
    overflow: auto;
	/*width: 777px;*/
	margin: 0 0 0 0;
	position: relative;
}



/* Modern browsers accept this (not IE) and we are targetting firefox 
html>/**/body div.scrollTableContainer {
    /*width: 780px;*/
}


/* Modern browsers accept this (not IE) and we are targetting firefox */

html>/**/body .atResults table td, .atResults table th {
	border-bottom:1px solid #153b63;
	cursor:pointer;
}
html>/**/body .atResults table{
	border-left:1px solid #153b63;
}
html>/**/body .atResults table td{
	    border-left:1px solid #153b63;
	border-right:1px solid #153B63;
}


/* The different widths below are due to the way the scroll bar is implamented
we are keeping these here instead of putting them in the IE css file b/c it 
is easier to change the width if both numbers are in the same place. */

/* All browsers accept this, but we are targeting IE with this rule */
div.scrollTableContainer table {
	width: 760px;
}

/* Modern browsers accept this (not IE) and we are targetting firefox */
html>/**/body div.scrollTableContainer table {
    width: 779px;
}

/* Modern browsers accept this (not IE) and we are targetting firefox */
html>/**/body div.scrollTableContainer table>tbody	{  
    overflow: auto; 
    height: 287px;
    overflow-x: hidden;
}

div.scrollTableContainer thead tr	{
	position:relative;
}

/*prevent Mozilla scrollbar from hiding cell content*/
div.scrollTableContainer td:last-child {padding-right: 20px;}

