/* $Id: html-elements.css,v 1.1.2.2 2009/02/13 19:42:10 johnalbin Exp $ */

/****
***** HTML ELEMENT STYLING
****/


/* ..... FONTS ..... */

/*
   * Our font size and line height declarations are based on the following ALA
   * article: http://www.alistapart.com/articles/howtosizetextincss
   *
   * All modern browsrs use a 16px default font size. Specifying the font-size
   * and line-height in ems (relative to the 16px default font) allows the user
   * to resize the font in the browser and produces the most consistent results
   * across different browsers.
   
    font-family: "Times New Roman", Times, Georgia, "Bitstream Vera Serif", serif;
    font-family: Times, "Times New Roman", Georgia, "Bitstream Vera Serif", serif;
    font-family: Georgia, "Times New Roman", "Bitstream Vera Serif", serif;

    font-family: Verdana, Tahoma, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Tahoma, Verdana, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
    font-family: Helvetica, Arial, "Bitstream Vera Sans", sans-serif;
    font-family: Arial, Helvetica, "Bitstream Vera Sans", sans-serif;

    font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
   
*/



html    {
        height: 100%;
        margin-bottom: 1px;
        }

*       {
        margin: 0;
        padding: 0;
        }
        
body 	{
        font-size: 62.5%;
		}
        

#page	{
		}


body, caption, th, td, input, textarea, select, option, legend, fieldset
		{
	    font-family: Verdana, Tahoma, Arial, Helvetica, "Bitstream Vera Sans", sans-serif;
		}

pre, code {
		font-size: 1.1em; /* Monospace fonts can be hard to read */
		font-family: "Bitstream Vera Sans Mono", "Courier New", monospace;
		}

table 	{
		font-size: 12px;
		}
		
td		{
		padding: 6px;
		}

/* ..... LISTS ..... */


.item-list ul li /* Drupal override */
		{
		list-style: inherit;
		}


ul          { list-style-type: none; }
ul ul       { list-style-type: circle; }
ul ul ul    { list-style-type: square; }
ul ul ul ul { list-style-type: circle; }
ol          { list-style-type: decimal; }
ol ol       { list-style-type: lower-alpha; }
ol ol ol    { list-style-type: decimal; }