/* economiccrisisstylesheet.css */


/* Header */

#header{
 width:100%;
 height:139px;
 background-image:url("images/headerbackground.jpg");
 border-bottom: thin solid #000000; /* black */
}

/* Footer */

#footer{
 width:100%;
 height:20px;
 background-color:#ffffff; /* white */
 border-bottom: thin solid #000000; /* black */
 border-top: thin solid #000000; /* black */
 font-size:10px;
}


/* style rule for body */

body{
 background-image:url("images/parchment.jpg");
 color:#000000; /* dark red text color */
 font-family:Arial, Helvetica, sans-serif; /* font */
 text-align:left; /* Everything aligns left */
}


/* style rule for level 1 headings */

h1{
 color:#cc0000; /* red */
 font-style:italic;
} 

/* style rule for level 2 headings */

h2{
 color:#cc0000; /* red */
 font-style:italic;
}

/* Center image between margins */
div.center{
 width: 100%;
 text-align: center;
}

/* Paragraph Basic Style */

p.basic{
 margin-left:20px;
 margin-right:20px;
 text-align:justify;
}

/* Sub-Paragraph style */

p.sub{
 margin-left:40px;
 margin-right:40px;
 text-align:justify;
 color:#000000; /* black */
}

/* General Style for Horizontal Lines */

hr{
 background-color:#fffffff; /* white */
 color:#000000; /* black */
 width:100%;


/* Custom Star Bullet for bulleted lists */

ul{
  list-style-image: url("images/starbullet.gif");
}