/*
 * @(#) 40.css  1.0 26/11/02
 *
 * Copyright 2002 Orgdot AS. All Rights Reserved.
 * http://www.orgdot.com/javaopensource
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

/**
 * Basic Style sheet formatting, for 4.0 browsers. Validates as CSS 2.0
 *
 * @author      Geir Arne Brevik
 * @version     1.1 05/12/02
 * @since       SWFIT1.0
 */

/*
:TODO: Check out all properties that does not validate as CSS 1.0, and move them to 50.css. 
*/


/* ************************************************
GENERIC CLASSES
************************************************ */

/* body-formatting. page margins, main font, background and such. */

body
{
    margin-top: 20px;
    margin-left: 50px;
    margin-right: 20px;
    width: 400px;
    font-family: verdana, sans-serif;
    font-size: 11px;
    color:  #000000;
    background : #ffffff url(/ims/doc_back.gif) no-repeat fixed top left; 
}

/* to ensure style heritage in old browsers */
div, p, th, td, li, dd, dl, dt   
{
    font-family: verdana, sans-serif;
    font-size: 11px;
}

/* uses an image as list bullet, and align it with other content. */
ul, ol
{
    margin: 0px 0px 0px 0px;
    padding-left: 1.5em;
    list-style-image: url(/ims/li.gif);
    list-style-position: outside;
}

/* for ordered lists */
ol
{
    list-style-image: none;
    list-style-type: decimal;
}

/* sets width for list items */
li
{
    width: 380px;
    margin: 0px 0px 0px 0px;
}

/* formats the horizontal ruler */
hr
{
    border-style: none;
    color:  #000000;
    background-color: #000000;
    width: 100%;
    height: 1px;
}   

/* headline, level 1 */
h1
{
    font-family: verdana, sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    margin: 15px 0px 5px 0px;
}

/* other headlines  */
h2, h3, h4, h5, h6  
{
    font-family: verdana, sans-serif;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    font-weight: normal;
    margin: 0px 0px 0px 0px;
}

/* revmove borders from images */
img
{
    border: 0;
}

/* 
anchor (link) formatting. you may specify different formatting for each link state, such as visited and active (mouse down).

:KLUDGE: Is the repeat of font attributes nescesary? Isn't it inherited from <body>?
*/

a
{
    font-family: verdana, sans-serif;
    font-size: 11px;
    text-decoration: underline;
    color: #000000;
    background-color: transparent;
}

a:link  
{
}

a:visited
{
}

a:active
{
}

a:hover 
{
    color: #999999;
    background-color: transparent;
    text-decoration: underline;
}
/* code, teletype and preformatted text */
code, tt, pre
{
    color: #000000;
    background-color: transparent;
}

/* generic paragraph  */
p 
{
    width: 400px;
    margin: 0px 0px 10px 0px;
}

/* ************************************************
JAVACRYPT CREDITS
************************************************ */

td.eay-td
{
    padding: 4px;
    color: #333333;
    border-width: 1px;
    border-style: solid;
    border-color: #000000;
}

/* ************************************************
CLASSES FOR ARTICLE DUMMIES
************************************************ */

/* standard article paragraph  */
p.article-p
{

}

/* table data cell for body text  */
td.article-text-td
{

}

/* paragraph containing info about author and publishing dates  */
p.info-p
{
    margin: 0px 0px 0px 0px;
}

/* author link */
a.author-a
{

}

/* link in link-list */
a.article-a
{

}

/* unordered list in link-list */
ul.linklist-ul
{

}

/* link-list paragraph */
p.link-p
{

}

/* list item in link-list */
li.linklist-li
{

}


/* table data cell for images inside article  */
td.article-image-td
{

}

/* image paragraph */
p.image-p
{

}

/* table data cell for images  */
td.image-td
{

}

/* table data cell for image captions  */
td.imagetext-td
{

}

/* table data cell for image list  */
td.image-lst-td
{

}

/* table data cell for list of image captions  */
td.imagetext-lst-td
{

}