@charset "UTF-8";
/* CSS Document */
/* define height and width of scrollable area. Add 16px to width for scrollbar          */
div.tableContainer {
	clear: both;
	height: 280px;
	overflow: auto;
	width: 862px;
}
div.tableContainerMail {
	clear: both;
	height: 185px;
	overflow: auto;
	width: 619px;
}
div.tableContainerManagePartners {
	clear: both;
	height: 420px;
	overflow: auto;
	width: 862px;
}
/* Reset overflow value to hidden for all non-IE browsers. */
html>body div.tableContainer {
	overflow: auto;
	width: 862px;
}
html>body div.tableContainerMail {
	overflow: auto;
	width: 619px;
}
html>body div.tableContainerManagePartners {
	overflow: auto;
	width: 862px;
}
/* define width of table. IE browsers only                 */
div.tableContainer table#listing {
	float: left;
	width: 842px;
	overflow:hidden;
}
div.tableContainerMail table#listing {
	float: left;
	width: 618px;
	width:expression('600px');
	overflow:hidden;
}
div.tableContainerManagePartners table#listing {
	float: left;
	width: 842px;
	overflow:hidden;
}
/* define width of table. Add 16px to width for scrollbar.           */
/* All other non-IE browsers.                                        */
html>body div.tableContainer table {
	width: 862px;
}
html>body div.tableContainerMail table {
	width: 595px;
}
html>body div.tableContainerManagePartners table {
	width: 862px;
}
/* set table header to a fixed position. WinIE 6.x only                                       */
/* In WinIE 6.x, any element with a position property set to relative and is a child of       */
/* an element that has an overflow property set, the relative value translates into fixed.    */
/* Ex: parent element DIV with a class of tableContainer has an overflow property set to auto */
thead.fixedHeader tr {
	position: relative
}

/* set THEAD element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
html>body thead.fixedHeader tr {
	display: table-row;
}

/* make the TH elements pretty */
thead.fixedHeader th {
	font-weight: normal;
	padding: 4px 3px;
	text-align: left
}
/* make the A elements pretty. makes for nice clickable headers                */
thead.fixedHeader a, thead.fixedHeader a:link, thead.fixedHeader a:visited {
	color: #FFF;
	display: block;
	text-decoration: none;
	width: 100%
}

/* make the A elements pretty. makes for nice clickable headers                */
/* WARNING: swapping the background on hover may cause problems in WinIE 6.x   */
thead.fixedHeader a:hover {
	color: #FFF;
	display: block;
	text-decoration: underline;
	width: 100%
}

/* define the table content to be scrollable                                              */
/* set TBODY element to have block level attributes. All other non-IE browsers            */
/* this enables overflow to work on TBODY element. All other non-IE, non-Mozilla browsers */
/* induced side effect is that child TDs no longer accept width: auto                     */
html>body tbody.scrollContent {
	display: table-row-group;
	overflow: auto;
	width: 100%;
	height:240px;
	overflow-x:hidden;
}
html>body div.tableContainerMail tbody.scrollContent {
	display: table-row-group;
	overflow: auto;
	width: 100%;
	height:145px;
	overflow-x:hidden;
}
html>body div.tableContainerManagePartners tbody.scrollContent {
	display: table-row-group;
	overflow: auto;
	width: 100%;
	height:380px;
	overflow-x:hidden;
}
html>body tbody.scrollContent tr {
	height: auto;
}

/* make TD elements pretty. Provide alternating classes for striping the table */
/* http://www.alistapart.com/articles/zebratables/                             */
tbody.scrollContent td, tbody.scrollContent tr.normalRow td {
	background: #FFF;
	border-bottom: none;
	border-left: none;
	border-right: 1px solid #CCC;
	border-top: 1px solid #DDD;
	padding: 2px 3px 3px 4px
}
div.tableContainerMail tbody.scrollContent td, tbody.scrollContent tr.normalRow td {
	background: #FFF;
	border:0;
	padding: 2px 3px 3px 4px
}

tbody.scrollContent tr.alternateRow td {
	background: #c0e1ea;
	border:0;
	padding: 2px 3px 3px 4px
}

/* define width of TH elements: 1st, 2nd, and 3rd respectively.          */
/* Add 16px to last TH for scrollbar padding. All other non-IE browsers. */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors        */
html>body thead.fixedHeader th {
	width: 200px
}

html>body thead.fixedHeader th + th {
	width: 240px
}

html>body thead.fixedHeader th + th + th {
	width: 316px
}

/* define width of TD elements: 1st, 2nd, and 3rd respectively.          */
/* All other non-IE browsers.                                            */
/* http://www.w3.org/TR/REC-CSS2/selector.html#adjacent-selectors        */
html>body table#listing tbody.scrollContent td.throw {
	width: 407px;
}
html>body table#listing tbody.scrollContent td.throw td{
	width: auto;
}
html>body tbody.scrollContent td + td {
	width: 97px;
}
html>body tbody.scrollContent td + td + td {
	width: 94px;
}
html>body tbody.scrollContent td + td + td + td {
	width: 92px;
}
html>body tbody.scrollContent td + td + td + td + td {
	width: 82px;
}


html>body div.tableContainerMail thead.fixedHeader th {
	width: 100px
}
html>body div.tableContainerMail thead.fixedHeader th + th {
	width: 480px
}
html>body div.tableContainerMail thead.fixedHeader th + th + th {
	width: 114px
}
html>body div.tableContainerMail thead.fixedHeader th + th + th + th {
	width: 26px
}
html>body div.tableContainerMail table#listing tbody.scrollContent td.throw {
	width: 100px;
}
html>body div.tableContainerMail tbody.scrollContent td + td {
	width: 480px;
}
html>body div.tableContainerMail tbody.scrollContent td + td + td {
	width: 114px;
}
html>body div.tableContainerMail tbody.scrollContent td + td + td + td {
	width: 26px;
}
