/**
 * CSS 1.0 validated style sheet for 4.0 generation browsers
 *
 * @author      Geir Arne Brevik
 * @version     $Revision: 1.3 $ $Date: 2003/10/17 23:10:36 $
 * @since       SWFIT1.0
 */


/**
 * GENERIC CLASSES
 */

/* body-formatting. page margins, main font, background and such. */

body
{
    margin-top: 0px;
    margin-left: 0px;
    font-family: verdana, sans-serif;
    background-color: #fff;
}

/* to ensure style heritage in old browsers */
div, p, th, td, li, dd, dl, dt   
{
    font-family: verdana, sans-serif;
}

/* use an image as list bullet, and align it with other content. */
ul, ol
{
    padding-left: 1.5em;
	list-style-image: url('li.gif');
    list-style-position: outside;
    margin-bottom: 16px; margin-left:0px; margin-right:0px; margin-top:0px
}

/* for ordered lists */
ol
{
    list-style-image: url('none');
    list-style-type: decimal
}

/* sets width for list items */
li
{
    margin: none;
    padding: none;
}

/* formats the horizontal ruler */
hr
{
}   

/* headline, level 1 */
h1
{
	font-weight: normal;
}

/* other headlines  */
h2, h3, h4, h5, h6  
{
	font-weight: normal;
}


/**
 * Anchor (link) formatting. you may specify different formatting for each link state, such 
 * as visited and active (mouse down). The repeated font attributes may seem superfluous, 
 * as it should be inherited from <body> but older versions of Netscape do not know that ...
 */

a
{
	border-left:0px none #000; border-right:0px none #000; border-top:0px none #000; border-bottom:1px dotted #000; text-decoration: none;
	color: #000;
	padding-left:0px; padding-right:0px; padding-top:1px; padding-bottom:1px
}

a:link  

{
border: none;
}

a:visited
{
	border: none;
}

a:active
{
}

/* hover should really be in 50.css, but it is better to have them all together ... */
a:hover 
{
	border: none;
}

/* revmove borders from images */
img
{
    border: none;
}
a.image, h3 a, h2 a
{
	border: none;
}

/* generic paragraph  */
p 
{
    margin: 0px 0px 10px 0px;
}
blockquote{
	margin-left: 8px;
	font-style: italic;
}