@charset "UTF-8";

h1 {font-family:Verdana, Tahoma, sans-serif;
	/*background-color: red; */
	text-align: left;
	padding: 0px;
	color: #A52A2A; 
	font-size: 30px;
	text-indent: 0px;
	}

h2 {font-family:Verdana, Tahoma, sans-serif;
	/*background-color: #660066; purple*/
	text-align: left;
	margin: 0;
	margin-bottom: 4px;
	padding: 0px;
	color: #660066; /*#660066 = purple*/
	font-size: 25px;
	}

h3 {font-family:Verdana, Tahoma, sans-serif;
	margin-bottom: 5px;
	text-align: left;
	color: #660066; /*#330000 = orange*/ 
	font-size: 16px;
	}
	
h4 {font-family:Verdana, Tahoma, sans-serif;
	/*Table Headers purple*/
	text-align: center;
	padding: 0px;
	color: #660066; 
	font-size: 12px;
	}
	
h5 {font-family:Verdana, Tahoma, sans-serif;
	/*Margin Headers orange */
	margin: 0;  /*These both rid the space between*/
  	padding: 0; /* h5 tag and <p> in margins  */
	margin-bottom: 4px; /* likely only need this!*/
  	/*border: 1px solid black; */
	text-align: left;
	color: #660066; 
	font-size: 13px;
	}	
	

p {font-size: 13px;
	font-family:Verdana, sans-serif;
	text-indent: 0px; }

.imageBorder {
	border: 1px solid #000; }

img:hover {
  box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5); }

footer { text-align:center;
		font-size: 11px; }
		
.content2 {
	/* For LED movie pages that's basic and wide */
	padding: 5px 0;
	width: 700px;
	float: center;
}

.tableBorder {
  /*width: 100%; */
  border: 10px solid;
}



body {
	margin: 0;
	padding: 0;
	font-size: 13px;
	font-family: Ariel,Verdana, Geneva, sans-serif;					
	background-color: #ffffff;
	/*background-image: url("/images/background1.jpg");*/
	color: #000;
	text-indent: 0px;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}



h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 10px;
	padding-left: 10px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}


a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	font-size: 13px;
	color: #42413C;
	/* text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	font-size: 13px;
	color: #6E6C64;
	/* text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}
/* ~~ This fixed width container surrounds all other blocks ~~ */
.container {
	width: 960px;
	background-color: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
header {
	background-color: #ADB96E;
}







