/* 
    Document   : textformats
    Created on : Sep 2, 2009, 5:06:14 PM
    Author     : parra
    Description:
        Purpose of the stylesheet follows.
*/

/* 
   TODO customize this sample style
   Syntax recommendation http://www.w3.org/TR/REC-CSS2/
*/

root { 
    display: block;
    font-family: Helvetica,Verdana,Arial,sans-serif;
}


/*headers*/
h1{
    padding:0px;
    margin-top:4px;
}
h1.header{
    font-size:5em; /* 1em = default font size = 16px ==> pixels/16=em */
}

/*list*/
/*LIST*/
ul
{
/*width:100%;*/
list-style-type: square;
}
ul.eng{
    font-style:normal;
    font-size:12pt;
}
ul.cat{
    font-style:italic;
    font-size:10pt;
}
ul.esp{
    font-style:italic;
    font-size:10pt;
}
li
{
padding:0em;
}


/*paragraphs*/
p.eng
{
font-style:normal;
font-size:12pt;
font-family: Helvetica,Verdana,Arial,sans-serif;
}
p.cat
{
font-style:italic;
font-size:10pt;
font-family: Helvetica,Verdana,Arial,sans-serif;
}
p.esp
{
font-style:italic;
font-size:10pt;
font-family: Helvetica,Verdana,Arial,sans-serif;
}

/*LINKS*/
a.image{
    text-decoration:none;
}
a.img:link,a.img:visited,a.img:hover,a.img:active{
    text-decoration:none;
}
