/*******************************************************************************
 AccessibilityOz [October 2012]              http://www.accessibilityoz.com.au/
 ------------------------------------------------------------------------------
 JS_G_A4: Functionality that relies on JavaScript should not be present when JavaScript is unavailable
 ------------------------------------------------------------------------------
*******************************************************************************/



/* hide the "demo1" element by default */
#demo1
{
	display:none;
}

/* display the "demo1" element when it has the "script-enabled" class */
#demo1.script-enabled
{
	display:block;
}


