@charset "utf-8";
/* CSS Document */

body{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size: 32.6%/1em;

}

p em {
	font-size: 1.25em;
	font-weight: bold;

}

a {
	color: #E0542F;
	text-decoration:none;
}
a:hover {
	font-weight:bold;
	}
	



/*Accordion Style */
		
		/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */

			display: block;
			height: 100%;
			width: 30px;
			background: url(../images/h_accordion_toggle.jpg) no-repeat top left #a9d06a;
			color: #ffffff;
			text-decoration: none;
			outline: none;
			border-right: 1px solid #cde99f;
			cursor: pointer;
			margin: 0 0 0 0;
		}
		
		.horizontal_accordion_toggle_active{
			background: url(../images/h_accordion_toggle_active.jpg) no-repeat top left #e0542f;
			border-right: 1px solid #f68263;
		}
		
		.horizontal_accordion_content {
			/* REQUIRED */
			height: 100%;	/* We need to define a height for the accordion as it stretches the width */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */
			
			overflow: hidden;
			background-color: #ffffff;
			color: #444444;
		}
			
			.horizontal_accordion_content p {
				width: 600px;
				line-height: 150%;
				padding: 5px 10px 15px 10px;
			}
			
    /* Container styling*/
    #horizontal_container {
      margin: 20px auto 20px auto;
      width: 900px;   
      height: 600px;    
    }
#opener, #header {
	  font-weight: bold;
	  font-size: 300%;
	  font-family: "Brush Script MT"
                    cursive; 
			color: #444444;
}
#opener{
	width: 100%;
	background-color:white;
	height: 700px;
	padding-top: 200px;
	text-align:center;
}

 #header{
      margin: 20px auto 20px auto;
      width: 700px;   
	  text-align:center;
 } 
 #header em  {
 	font-style:italic;
	font-size: 75%;
 }

.cursor {
	cursor: default;
}

#footer{
      margin: 20px auto 20px auto;
      width: 700px;   
	  text-align:center;
	font-size: 90%;
}