/*
  File name: enc_article_frame.css -- Article / Frame
  
  This CSS file declares the styles used in the Article / Frame pages

  Author:    'o-Dzin Tridral

  Revision history:

  version : yyyy-mm-dd : account name : description
  01.02   : 2009-02-09 : TridralO     : Change the colour style sheet from white to light
  01.01   : 2007-04-23 : TridralO     : Copied from article_frame.css
*/

/*
  Import common style sheets
*/
@import url(/shared/style/pge_col_lgt.css) ;
@import url(/shared/style/pge_str_nav.css) ;
@import url(/shared/style/pge_str_quo.css) ;
@import url(/shared/style/pge_str_top.css) ;

#text_area
{
  border-style: solid ;
  border-width: 1pt ;
  font-size: 18pt ;
  margin-left: 5% ;
  margin-right: 5% ;
  padding: 6pt ;
}

h1
{
  font-size: 42pt ;
  font-style: italic ;
  font-weight: lighter ;
  margin: 0 ;
  margin-bottom: 12pt ;
  text-align: right ;
}

h2 
{
  font-size: 30pt ;
  font-style: italic ;
  font-weight: lighter ;
  margin: 0 ;
  margin-bottom: 12pt ;
  text-align: right ;
}

h3 
{
  font-size: 24pt ;
  font-style: italic ;
  font-weight: lighter ;
  margin: 0 ;
  margin-bottom: 12pt ;
  text-align: right ;
}

h4
{
  font-size: 20pt ;
  font-weight: lighter ;
  font-variant: small-caps ;
  margin-bottom: 6pt ;
}

/*
  Paragraph
*/

p 
{
  margin-bottom: 6pt ;
}

/*
  Emphasis
*/

em
{
  font-style: bold ;
}

/*
  Quote and Blockquote
*/

/*
  Set quotes to be used in different languages
*/

[lang|=fr] > *  { quotes: "�" "�" "\2039" "\203A" }
[lang|=en] > *  { quotes: "\201C" "\201D" "\2018" "\2019" }

/*
  Set quote style to be italic and to add quote marks
*/

q { font-style: italic;}
q:after  { content: close-quote }
q:before { content: open-quote }

q.topquote
{
  display: block ;
  font-style: italic ;
  margin-bottom: 3pt ;
  text-align: right ;
}

/*
  Set (general) blockquote style to be italic, align right, and to add quote marks
*/

blockquote
{
  font-style: italic ;
  margin-bottom: 3pt ;
  text-align: right ;
}
blockquote:after  { content: close-quote }
blockquote:before { content: open-quote }

/*
  Override the general blockquote style if inside the text_area so that it is centred
*/

#text_area blockquote
{
  font-style: italic ;
  text-align: center ;
}

/*
  Create a byline class to go with the quotes
*/
.byline
{
  font-size: 12pt ;
  margin-top: 0 ;
  text-align: right ;
}

hr
{
  background-color: red ;
  border: 0 ;
  color: red ;
  height: 1px ;
  width: 100% ;
}

/*
  Create a footnote class
*/
.footnote
{
  font-size: 12pt ;
  margin-top: 0 ;
  text-align: left ;
}

/*
  Create a reference class
*/
.reference
{
  font-size: 12pt ;
  margin-top: 0 ;
  text-align: left ;
}

/*
  End of file
*/