/* Stylesheet.css */ 

/* Unvisited links (no underline) */
a:link{
   color: #8b8b00; /* Olive Green */
  text-decoration: underline;
}
/* Visited links (no underline) */ 
a:visited{
   color: #7a378b; /* medium purple */
   text-decoration: underline;
}
/* Hover links (red underlined) */ 
a:hover{
   color: #000000; /* Black */
   text-decoration: underline;
}
/* Active links (green underlined) */ 
a:active{
   color: #551a8b; /* dark purple */
   text-decoration: underline;
}

/* Tables*/
table{
    font-size: 13pt;
    font-style: 'Times';	
    
}
/* Body text and page background */
body{
    background-image: url(pictures/background_body.jpg);
    background-repeat: no-repeat;
    background-position: top right;
    margin: 0;
    padding: 0;
    font-size: 14pt;	
    font-style: 'Times';
}

/* Level-1 Headings */
h1{
    font-family: 'Lucida Calligraphy', 'Verdana', Sans-serif;
    font-size: 34pt;
    color: #000000;
    text-align: center;
}

/* Level-2 Headings */
h2{
    font-family: 'Lucida Calligraphy', 'Verdana', Sans-serif;
    font-size: 18pt;
    color: #698b22;
    font-style: italic;
    text-align: right;
}

/* Level-3 Headings */
h3{
    font-family: 'Verdana', Sans-serif;
    font-size: 28pt;
    color: #698b22;
    text-align: center;
}
/* Level-3 Headings */
h4{
    font-family: 'Verdana', Sans-serif;
    font-size: 18pt;
    font-style: italic;	
    color: #698b22;
    text-align: center;
}
/* Blockquotes */
blockquote{
    font-family:  'Verdana', Sans-serif;
    font-size: 11pt;
    color: #000000;
    text-align: justify;
} 


/* Style for main content column */
#main{
       margin: 1em;
       /* margin-left must equal */
       /* total width of left sidebar */
		
       margin-left: 10em;
      
}
/* Style for sidebar column */
#sidebar1{
           float: left;
           display: inline;
           padding: 0;
	   margin: 1em;
           width:8em;
            /* Total width is 10em */
}

/* Page footer style */
#footer{
     height: 30px;
     width: 100%;
     background-color: #ffffff;
    
     clear: both;
}
