/* CSS Document */
/* CSS Document to Control tables */
/* Use this to control tables with or without borders */


/* 4. IE and width & height issues solution Yippee  This is a workaround do deal with a bug and this "html>body" is correct. The auto makes the page fit the flexible layout in IE  */
/* 4. IE and width & height issues*/

/* CSS Document */
/* CSS Document to Control tables */
/* Use this to control tables with or without borders */


/* 4. IE and width & height issues solution Yippee*/
html>body.border {
width: auto;
height: auto;
min-width: 280px;
min-height: 20px;
}

html>body.border th {
width: auto;
height: auto;
min-width: 280px;
min-height: 20px;
}

html>body.border td {
width: auto;
height: auto;
min-width: 280px;
min-height: 20px;
}


table.border {
	border-width: 0px 0px 0px 0px;
	border-spacing: 3px;
	border-style: none none none none;
	border-color: black black black black;
	border-collapse: collapse;
	background-color: white;
	width: 400px;
}
table.border {
	border-width: 0px 0px 0px 0px;
	border-spacing: 3px;
	border-style: none none none none;
	border-color: black black black black;
	border-collapse: collapse;
	background-color: white;
	width: 500px;
}
table.border th {
	border-width: 1px 1px 1px 1px;
	padding: 5px 5px 5px 5px;
	border-style: solid solid solid solid;
	border-color: black black black black;
	background-color: white;
	
}

table.border td {
	border-width: 1px 1px 1px 1px;
	padding: 5px 5px 5px 5px;
	border-style: solid solid solid solid;
	border-color: black black black black;
	background-color: white;
	
}

table.noborder {
	border-width: 1px 1px 1px 1px;
	border-spacing: 0px;
	border-style: none none none none;
	border-color: black black black black;
	border-collapse: separate;
	background-color: white;
}
table.noborder th {
	border-width: 1px 1px 1px 1px;
	padding: 5px 5px 5px 5px;
	border-style: none none none none;
	border-color: gray gray gray gray;
	background-color: white;
	
}
table.noborder td {
	border-width: 1px 1px 1px 1px;
	padding: 5px 5px 5px 5px;
	border-style: none none none none;
	border-color: gray gray gray gray;
	background-color: white;
	
}

