/* CSS Document */

/* This makes the scrolling table work */

div.popupTable {

	clear:both;
	height:421px;
 	overflow: auto;
	width: 860px;
	margin: 15px 0 0 0;
	position: relative;
}

/* 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.popupTable table {
	width: 816px;
}

/* Modern browsers accept this (not IE) and we are targetting firefox */
html>/**/body div.popupTable table {
    width: 836px;
}

/* Modern browsers accept this (not IE) and we are targetting firefox */
html>/**/body div.popupTable table>tbody	{  
    overflow: auto; 
    height: 400px;
    overflow-x: hidden;
}

div.popupTable thead tr	{
	position:relative;
}

/*prevent Mozilla scrollbar from hiding cell content*/
div.popupTable td:last-child {padding-right: 20px;}

div.popupTable {
	clear:both;
	height:420px;
	margin:15px 0pt 0pt;
	/*overflow:auto;*/
	position:relative;
	width:860px;
}
 
html > body div.popupTable table > tbody {
	height:389px;
	overflow-x:hidden;
	overflow-y:auto;
}
