/* 

OMRON INDUSTRIAL AUTOMATION CSS STYLES
Copyright 2007. All rights reserved.

Made by Voormedia - WWW.VOORMEDIA.COM

This CSS file is only to be written to the DOM of the document using javascript, in order to only enable certain hidden elements when Javascript is enabled on the client. This is to ensure that these elements are not hidden when JS is disabled/unavailable, allowing for an unobtrusive usage of javascript for display/behaviour

example JS to insert this file to the DOM:

var css = document.createElement('link');
css.type = 'text/css';
css.rel = 'stylesheet';
css.href = 'http://industrial.omron.eu/system/public/style/jsonly.css';
css.media = 'screen';
document.getElementsByTagName("head")[0].appendChild(css);
*/

.jsdisplay { display:block ! important; }
.jsnodisplay { display:none ! important; }
.jshidden { visibility:hidden ! important; }
.jstransparent { width:100%; opacity: 0; filter: alpha(opacity=0); }
