@charset "utf-8";
body {
	margin: 0;
	padding: 0;
	color: #000;
	background-color: #dad8d8;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.4;
}
/* ~~ 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: 15px;
	padding-left: 15px; /* 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 {
	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 {
	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: #FFFFFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
header {
	background-color: #FFFFFF;
}

.menu {
	float: left;
	width: 960px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	z-index: 10;
	position: static;
	background-color: #CCC;
}
.topad {
	float: left;
	width: 960px;
	padding-bottom: 10px;
	padding-top: 10px;
	background-color: #FFFFFF;
}

.HighValue {
	float: left;
	width: 650px;
	padding-bottom: 10px;
	background-color: #FFFFFF;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	z-index: 5;
	position: static;
	height: 800px;
}


.HighValue1 {
	float: left;
	width: 960px;
	padding-bottom: 10px;
	background-color: #FFFFFF;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	z-index: 5;
	position: static;
	height: 1950px;
}

.HighValue1 {
	float: left;
	width: 960px;
	padding-bottom: 10px;
	background-color: #FFFFFF;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	z-index: 5;
	position: static;
	height: 2150px;
}

.sidebar1 {
	float: left;
	width: 300px;
	background: #FFFFFF;
	padding-bottom: 10px;
	margin-left: 5px;
}
.content {
	padding: 10px;
	width: 285px;
	float: left;
	border-top-width: thick;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: double;
	margin-top: 10px;
	margin-left: 10px;
}
section {
	background-color: #FFFFFF;
	margin-left: 5px;
	height: 640px;
}


section1 {
	background-color: #FFFFFF;
	margin-left: 5px;
	height: 640px;
}
section2 {
	background-color: #000000;
	margin-left: 5px;
	height: 240px;
}

section3 {
	background-color: #FFFFFF;
	margin-left: 5px;
	height: 940px;
}

sectionscroll {
	background-color: #FFFFFF;
	margin-left: 5px;
	overflow: scroll;
	height: 440px;
}

aside {
	float: left;
	width: 180px;
	background: #FFFFFF;
	padding: 10px 0;
}
AdSense {
	float: left;
	width: 300px;
	background: #FFFFFF;
}

Facebook {
	float: left;
	width: 300px;
	background: #FFFFFF;
	position: relative;
	top: 10px;
}
Advertisers {
	float: left;
	width: 250px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	background-color: #FFFFFF;
	margin: 10px;
}

OtherFeeds {
	float: left;
	width: 280px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 20px;
	background-color: #FFFFFF;
	height: 240px;
}


menucontent {
	float: left;
	width: 960px;
	padding: 10px 0;
	z-index: 10;
	position: absolute;
	background-color: #CCC;
}
/* ~~ 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 {
	padding: 10px 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	background-color: #CCCCCC;
	border-top-style: ridge;
}
/* ~~ 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: 8px;
}
.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 block element as the final element following the last floated block (within the .container) if 

the footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, nav, article, figure {
	display: block;
}
.requiredfield{
	color: #ff0000;
}
#coupon{
	border: 2px dashed #ccc;
	padding: 10px;
	width: 90%;
	background-color: #FFFFFF;
}
#customform{
	border: 1px dashed #ccc;
	padding: 10px;
	background-color: #EEEEEE;
}
#customform label{
	display: block;
	width: 100%;
	font-size: 16px;
}
#customform input{
	margin-bottom: 5px;
}
#submit{
	padding: 5px 10px;
	border: 1px solid #666;
	background-color: #7a7a7a;
	margin: 5px 0 0;
}
/* define height and width of scrollable area. Add 16px to width for scrollbar          */
div.tableContainer {
	clear: both;
	border: 1px solid #963;
	height: 400px;
	overflow: auto;
	width: 416px
}
/* end basic styling                                 */

