
/* 100% fluid fix for FIREFOX 3.0 */
/*Gareth, try the following. The below gives me 100% width and height and also min|max height|width 
across a good range of browsers. Not totally perfected yet but it's close and did solve the issue you had. 
Basically adding any character into the TD magically fixed the issue of the flash collapsing to the 200px. 
I wrapped this character fix in #fixme and display:none for all browser except Firefox3 and then gave it 
a font size of 0. Again, still playing with this but thought I would post some help to see if others can add to this.
http:||blog.deconcept.com|swfobject|forum|discussion|1087|firefox-3-issue-swf-with-100-dimensions|*/

/* hide from ie on mac \*/
html {
	height: 100%;
}

#flashcontent {
	min-width:1280px;
	min-height:650px;
	overflow: auto;
	height:100%;
	width:100%;
	_width:expression(document.body.clientWidth < 1280? "1280px" : document.body.clientWidth > 1280px? "100%" : "100%"); /* sets min IE6 width */
	_height:expression(document.body.clientHeight < 650? "650px" : document.body.clientHeight > 650? "100%" : "100%"); /* sets min IE6 height*/
}

/* end hide */
body {
	min-width:1280px;
	min-height:650px;
	height:99.5%;
	overflow: auto;
	margin:0;
	padding:0;
	font-family:Arial,Helvetica,sans-serif;
	font-size:1.1em; 
}

table {
	height:100%;
	width:100%;
	text-align:center;
}

#fixme, x:-moz-any-link, x:default {
	display:block; 
	font-size:0;
}/* firefox3 hack to force table height 100% */

#fixme {
	display:none;
}
