html {
  max-width: 1440px;
  margin: 0 auto;
  background: #eee; /* Fills the page */
  position: relative; /* Fix for absolute positioning */
}

body {
	font: 90%/1.4 Arial, Helvetica, sans-serif;
	color: #000;
	background-image: url(images/background.jpg);
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
}

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

h1 {
	font-family: Arial, sans-serif;
	text-align: center;
	font-size: 312%;
	margin: 0 auto;
	margin-bottom: -10px;
}

h2 {
	font-family: Arial, sans-serif;
	text-align: center;
	font-size: 242%;
	margin: 0 auto;
}

h3 {
	font-family: 'Permanent Marker', 'Gloria Hallelujah', cursive;
	/*font-family: 'Cookie', "Comic Sans MS";*/
	color: #F00;
	font-size: 113%;
	margin: 0 auto;
	margin-right: 4px;
	float: right;
}

h4 {
	font-family: Arial, sans-serif;
	font-size: 120%;
	margin: 0 auto;
	margin-bottom: 5px;
}

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

.caption {
	font-size: 70%;
	text-align: right;
	margin-bottom: 23px;
}

.captionleft {
	font-size: 70%;
	text-align: left;
	margin-bottom: 23px;
}

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 {
	color: #f00;
	text-decoration: underline;
}

a:visited {
	/*color: #663;*/
	color: #f00;
	text-decoration: underline;
}

a.notyet, a.notyet:hover, a.notyet:active, a.notyet:focus {
	color: #000;
	text-decoration: none;
}
	
a.table:link {
	color: #ffffff;
	text-decoration: none;
}

a.table:visited {
	color: #eeeeee;
	text-decoration: none;
}

a.table:hover, a.table:active, a.table:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	text-shadow: 0 0 20px #f00;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 80%;
	/*text-align: center;*/
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

.header {
	width: 100%;
}

.header table {
	display: table;	
	margin-top: -10px;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	font: 100%/1.4 Arial, Helvetica, sans-serif;
	clear:both;
	width: 750px;
}

.binge {
	width: 750px;
	margin: 0 auto;
}

.binge img {
	float:left;
	margin-top: 0px;
	margin-bottom: 20px;
	padding-right: 20px;
}

.content, .contenthome {
	height: 642px;
	width: 750px;
	margin: 0 auto;
}

.contenthome p {
	text-align: center;
	font-size: 100%;
	width: 600px;
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 0;
	height: 180px;
}

#about {
	/*height: 594px;*/
    max-height: 95%;
	float: left;
    overflow: auto;
	/*width: 390px;*/
	width: 50%;
	padding: 0;
	padding-right: 5px;
	margin: 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The footer ~~ */
.footer {
	text-align: center;
	margin-bottom: -10px;
}
.footer p {
	margin-bottom: 10px;
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding: 0;
	/* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	/*margin-left: 40px;*/
	text-align: center;
	font-size: 45%;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	/*margin-left: 45px;
	padding-right: 30px;
	width: 35%;*/
}

.fltrt img, .fltlft img {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	margin-bottom: 5px;
}

.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.feedgrabbr_widget {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.feed_item {
	font: 90%/1.4 Arial, Helvetica, sans-serif;
	color: #000000;
	margin: 0;
	padding: 0;
}

/* ~~ 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;
}

li {
	margin-top: 15px;
}