/*
   New Perspectives on HTML and XHTML 5th Edition
   Tutorial 4
   Case Problem 2

   Civil War Studies Style Sheet
   Author: Zeina Nasreldine
   Date:   Feb 15, 2010

   Filename:         cw.css
   Supporting Files: tan.jpg

*/

body              {margin: 0px}
h2                {font-size: 2.5em; margin: 0px}
#head             {text-align: center; border-bottom: 1px solid black; 
                   background-image: url(tan.jpg); margin: 0px}

#page_content	{
			position: relative;
			left: 0px;
			top: 0px;
			width: 95%;
			min-width: 800px;
			max-width: 1000px;
			}

#linkList	{
		position: absolute;
		left: 5px;
		top: 140px;
		width: 280px;
		border-right: 1px solid black;
		}

#linkList a:link	{
			text-decoration: none;
			color: black;
			}

#linkList a:hover	{
			text-decoration: underline;
			}
			
#linkList a:visited	{
			text-decoration: none;
			}

#linkList ol	{
			list-style-type: upper-roman;
			font-size: 0.9em;
			}

#linkList ol ol	{
			list-style-type: upper-alpha;
			}

#linkList ol ol ol	{
				list-style-type: decimal;
				}

#article	{
		position: absolute;
		left: 320px;
		top: 190px;
		}

h2	{
	position: absolute;
	left: 320px;
	top: 125;
	color: rgb(237, 227, 178);
	z-index: 2;
	}

.shadow	{
		left: 321px;
		top: 126;
		position: absolute;
		color: black;
		z-index: 1;
		}

.first_para:first-line	{
				text-transform: uppercase;
				}

.first_para:first-letter	{
					float: left;
					margin: 0px 5px 0px 5px;
					font-size: 300%;
					line-height: 0.75;
					}
.following_para	{
			text-indent: 10px;
			}


