/* stylesheet.css */

/* Style rule for the body element */
body{
	/* background styling */
	background-color:#008000;
	
	/* Default font styling */
   font: 11pt Helvetica, Sans-Serif;
   color: black; 
}

/* Style rule for the wrapper div */
#wrapper{
	width: 800px;
	height: 515px;
	margin: 0 auto;
	background-color: #FFFFFF;
	border-radius: 4px;
	box-shadow:0px 0px 50px 10px #006400;
}

/* Style rule for the main div */
#main{
	padding:0px 30px;
}

/* Style Rule for photo that will float right with caption */
#rightImageCaption{
	float: right; 
	margin: 10px 30px 20px 20px; 
	width:220 px; 
	font-size:55%; 
	text-align:center; 
	color:grey;
}
/* Style rule for h1 element */
h1{
	font:small-caps 30pt Helvetica, Sans-Serif;
	letter-spacing: -1px;
	text-align:right;
	padding:20px 10px 0px 0px;
	border-bottom:2px solid #ffd700;
	margin-left:5px;
	color:#000000;
}
/* Style rule for h2 element */
h2{
	
	font:small-caps 16pt bold Helvetica, Sans-Serif;
	text-align:center;
	margin:20px;
	background-color: #006400;
	color:white;
	line-height:1.5;
	padding-left:10px;
}

/* Style rule for ul element */
ul{
	margin:0px 20px 10px;
	line-height:2;
}
/* Style rule for p element */
p{
  margin-top: 20px;
  line-height:1.5;
  text-align: justify;
}

