/* cubierto.css
for use by HTML cover pages on the SIL-Mexico website 
Created by Albert Bickford
Revised by Scott Starker
# Revised: 2002 Oct 16; 2005 Jan 11

This maybe should be modified so that special characters
don't ever occur in italics, because of the IE printing bug
with some printers.

WARNING: don't use "font" property; Netscape 4 considers
it an error and ignores all other specs in the group. 
Use "font-size", "font-weight", etc.

 ------------------------------------------------------------*/
 
	/* colors for BODY and links also need to be 
       hardcoded in the HTML for IE3 to recognize them. 
       This also means that the colors specified in this 
       style sheet are going to be over-ridden under some circumstances
       by the colors hard-coded in the HTML.
       In addition, Netscape 4.x seems to arbitrarily choose 
       which color to use when the color is specified in more than one place
       (stylesheet for BODY vs. specific tag; HTML BODY tag, etc.)
       So:
       */
	/* These wont work in 'table' or 'tr' in IE 6. */

body  {
	font-family : Times New Roman, Times, serif;
	color : black;
	background-color : white;
	font-size: medium;
    line-height: 120%;
}

/* colors for links are given in footer.css */

/* headings ------------------------------------------*/

/* This is the main title for the whole page.
   In cover pages, h1 is assigned to the class "pageTitle" */
h1, h1.pageTitle  {
	font-size : 120%;
    line-height: 120%;
	font-weight : bold;
	text-align : center;
	margin-top : 5%;
}

h1.pageTitle  { color: black; }

/* This is a subtitle for the whole page. */
h2.subtitle  {
	font-size: 100%;
    line-height: 120%;
	font-weight : bold;
	text-align : center;
}

  /* Author's name when used after a single (h1) title */
  /* should be adjusted to match the appearance of h3.author;
     different font-size specifications may be needed to accomplish
     the same effect, because H2 is normally rendered larger */
h2.author, h2.autor  {
	font-size: 90%;
    line-height: 120%;
	font-weight : bold;
	font-style : italic;
	text-align : center;
}

/* The rest are used in Spanish/English tables*/

/* when there are two titles, one in Span, one in Engl */
/* see also colors below */
h2.titulo, h2.title  {
	font-size : 120%;
    line-height: 120%;
	font-weight : bold;
	text-align : center;
}

/* when author's name is used after H2 title */
h3.autor, h3.author  {
	font-size : 100%;
    line-height: 120%;
	font-weight : bold;
	font-style : italic;
	text-align : center;
}

/* assigned to classes "span" and "engl" (see below) */
h4  {
	font-size : 100%;
    line-height: 120%;
	font-weight : bold;
	text-align : left;
}

.span, .titulo  {
	color : Green;
}

.engl, .title  {
	color : Red;
}

/* block elements --------------------------*/

.resumen, .abstract, p.disponible, p.available, p.notas, p.notes  {
	margin-left : 3%;
}

.solamenteIngles, .SpanishOnly  {
	font-style : italic;
}

li.documentRef  {}

ul.secondlevel { list-style-type: circle; margin-left: 1em; }

/* It can't be in the 'table' or 'tr'! This is 'body'. */
td.titleauthortablecell { color: black; font-size: medium; line-height: 120%; }

/* The following are all used on TD tags
They are not defined at the moment, but they are available,
I think, in at least some cover pages.
They have been included in this file to give some idea of the range of 
tags and classes available in the cover sheets, starting in Nov 1998.
See the template for cover pages for details.
*/

.link  {}

.formatos, .formats { font-size: 80%; }

.copyright  {}

.URL  {}

.emailLink  {}

.emailURL  {}



