/*************************************************************/
/* Example Stylesheet with all basic elements of stylesheets */
/*     Part of the tutorial of http://parallel.vub.ac.be     */
/*     Reference: http://www.w3schools.com/css/              */
/*************************************************************/

body            /* for the whole page */
{
  font-family: verdana, arial, 'sans serif'; 
  background-color: #ffffff;

  background-image: url("background_infoweb.jpg");
  background-repeat: repeat-y;
}

p               /* normal text */
{
  margin-left: 10pt;
  font-size: 100%;
}

div.title       /* title is a class of div */
{
  color: #800000; 
  font-family: times, arial, 'sans serif'; 
/*  background-color: #FFE4B5;  */
  font-size: 160%;
  text-align: center;
  border-width: thin;
  background-image: url("background_infoweb.jpg");
  background-repeat: repeat-x;
}

h1,h2,h3,h4     /* headings */
{
  font-family: courier, arial, 'sans serif'; 
}

h1
{
  border-bottom-width: thin;
}
h2
{
  color: darkslateblue; 
  font-size: 120%;
  margin-left: 10pt;
}
h3
{
  color: darkslateblue; 
  font-size: 100%;
  margin-left: 15pt;
}
h4 
{
  color: darkviolet; 
  font-size: 80%;
  font-style: italic;
  margin-left: 20pt;
}


ul             /* unordered list */  
{
list-style-type: disc; 
/*list-style-image: url("blue_bullet_infoweb.gif");*/
}


ol             /* ordered list */
{
list-style: decimal; 
}

li             /* list items */
{
font-size: 75%;
}


table         /* table */
{
margin-left: 50;
}


th           /* table header (first row) */
{
font-size: 75%;
font-weight: bold;
text-decoration: underline;
}

td           /* table cell */
{
font-size: 60%;
}

a:link    {color:orange}         /* Anchor pseudoclasses   */
a:visited {color:red}
a:active  {color:mediumblue}
a:hover   {color:lightblue}

/*************************************************************/
