/*
///////////////////////////////////////////////////////////////////////////////////////// 
// Super Tables v0.30 - MIT Style License
// Copyright (c) 2008 Matt Murphy --- www.matts411.com
//
// Contributors:
// Joe Gallo
///////////////////////////////////////////////////////////////////////////////////////// 
*/
.sBase {
	position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* HEADERS */
.sHeader {
	position: absolute;
	z-index: 3;
	background-color: #ffffff;
}
.sHeaderInner {
	position: relative;
}
.sHeaderInner table {
	border-spacing: 0px 0px !important;
	border-collapse: collapse !important;
	width: 1px !important;
	table-layout: fixed !important;
	background-color: #ffffff; /* Here b/c of Opera 9.25 :( */
}

/* HEADERS - FIXED */
.sFHeader {
	position: absolute;
	z-index: 4;
	overflow: hidden;
}
.sFHeader table {
	border-spacing: 0px 0px !important;
	border-collapse: collapse !important;
	width: 1px !important;
	table-layout: fixed !important;
	background-color: #ffffff; /* Here b/c of Opera 9.25 :( */
}

/* BODY */
.sData {
	position: absolute;
	z-index: 2;
	overflow: auto;
	background-color: #ffffff;
}
.sData table {
	border-spacing: 0px 0px !important;
	border-collapse: collapse !important;
	width: 1px !important;
	table-layout: fixed !important;
}

/* BODY - FIXED */
.sFData {
	position: absolute;
	z-index: 1;
	background-color: #ffffff;
}
.sFDataInner {
	position: relative;
}
.sFData table {
	border-spacing: 0px 0px !important;
	border-collapse: collapse !important;
	width: 1px !important;	
	table-layout: fixed !important;
}

/*----------  ----------*/

#tableBox { /* The parent container */
	margin-top: 0;
    padding: 0px;
    width: 340px; /* Required to set */
    height: 235px; /* Required to set */
    overflow: hidden; /* Required to set */
}

#tableBox table,
#tableBox th,
#tableBox td { border: 1px solid #745136;}

#tableBox th,
#tableBox td {
	padding: 3px;
	font-size: 10px;
	letter-spacing: .01em;
	color: #9b6c49;
}



#tableBox th { background: #71bd26; color: #fff; text-align: center;}
#tableBox td { background: #fdfcf1;}

/*----------  ----------*/
* html #tableBox th { font-size: 74%;}
* html #tableBox td { font-size: 74%;}

*:first-child + html #tableBox td { font-size: 74%; }


.ie-fix .sHeader { margin-bottom: -23px;}



/*----------  ----------*/
.ie8-fix th,
.ie8-fix td { font-size: 10px !important;}


