/**
 * this stylesheet defines common 'base' styles, that are generic, and
 * relatively style-free in terms of (layout) appearance.
 *
 * Page automatically applies this stylesheet as persistent for all media
 * to all pages -- it applies it without the wrapper, so it is not hidden
 * from older browsers.
 *
 * This stylesheet should also be imported by the eWebEditPro stylesheets,
 * so that when authoring objects the same styles as would be present on
 * the live site are applied.
 * For this reason, think about whether your style should go here, or in
 * screen.css.
 *
 *
 * @package PARN
 * @version $Id: base.css 494 2005-06-15 16:18:38Z PARN\RZhao $
 * @access public
 * @copyright Copyright (c) Leisurebrokers
*/

body, table {
    /**
     * IE seems to need the font-size applying to the table as well
     * as the body
     */
}


/* automatic quotation mark insertion and quote styles */
:lang(en-gb) > * { quotes: "\2018" "\2019" "\201C" "\201D"  }   /* ‘ ’ “ ” */
:lang(en-us) > * { quotes: "\201C" "\201D" "\2018" "\2019" }    /* “ ” ‘ ’ */
:lang(fr) > * { quotes: "\00AB" "\00BB" "\2039" "\203A" }   /* « » ‹ › */
:lang(de) > * { quotes: "\201E" "\201F" "\201A" "\201B" }   /* „ “ ‚ ‘ */
blockquote p:before, q:before { content: open-quote; }
blockquote p:after, q:after { content: close-quote; }

/**
* abbreviation elements
* (also applies to acronym elements, but since this has
* been dropped from XHTML 2.0, we should use <abbr/>
* instead of <acronym/>)
* span.abbr is for IE's benefit - see scripts/iehacks.js
*/
abbr[title], span[title].abbr {
	cursor: help;
	border: none;	/* remove any underline (Mozilla's default behaviour) */
}
abbr, span.abbr {
	font-size: 95%;
	letter-spacing: 0.06em;
}
abbr[title].first-occurrence, span[title].abbr.first-occurrence {
/* use this class for the first occurrence of a particular acronym/abbreviation */
	border-bottom: 1px dotted;
}
a abbr[title], a span[title].abbr {
	cursor: pointer;	/* (re)apply the normal pointer cursor to abbr descendents of a elements */
}

