/*
 * Style sheet to be loaded by default defining classes that hide elements
 * containing JavaScript (particularly anchors) and containers of such elements
 * (i.e. it may be useful to hide a whole paragraph containing anchors that use
 * JavaScript.
 * This sheet is loaded by default, and then can be followed by a script that
 * loads in js.css, the sheet that unhides all these elements.  That way, if
 * JavaScript is unavailable, the elements remain hidden.  We do things this way
 * round because we can link style sheets from with a script, but we can't link
 * a style sheet from within a noscript tag.
 */

/* Hide a block element that includes some JavaScript somewhere. */
.jsblock
{
    display: none;
}

/* Hide an inline element that includes some JavaScript somewhere. */
.jsinline
{
    display: none;
}

/*
 * Note: I have only defined the most likely classes above, and not attempted to
 * define classes for every possible value for the CSS display property.
 */
