@charset "utf-8";

body
{
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
	background-color: #000;
	margin: 0;
	padding: 0;
	color: #FFF;
	background-image: url('../images/backdrops/backdropN2.jpg');
	background-position:center;
	background-position:top;
	background-repeat:no-repeat;
}

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 div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 0px;	/* was 15px */
	padding-left: 0px; /* 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. */
}

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;
}


/* ~~ This fixed width container surrounds all other divs ~~ */
.container
{
	width: 840px;	/* was 910 */
	background-color: #000;
	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. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header
{
	background-image:url(../images/top12/main_top2.jpg);
	background-repeat:no-repeat;
	background-color: #000;
	margin-bottom:12px;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

*/
.sidebar1
{
	float: left;
	width: 185px;	/* total=215px with padding */
	background-color: #000;
	padding: 0 20px 10px 0px;
}

.content
{
	float: left;
	padding: 0;
	width: 440px;
}

.sidebar2
{
	float: left;
	margin-left:20px;
	width: 175px;	/* total=185px with padding */
	background: #000;
	padding: 0 0px 10px 0;
}

.main_box
{
	background-color:#1E1E1E;
	margin:14px 0;
	padding:10px 12px;
	border-radius:10px;
	-moz-box-shadow: 0 0 5px 3px #666;	/* horiz offset, vert offset, blur, spread */
	-webkit-box-shadow: 0 0 5px 3px #666;
	box-shadow: 0 0 5px 3px #666;
}

.side_box
{
	background-color:#1E1E1E;
	margin:12px 0;
	padding:10px 12px;
	border-radius:6px;
	-moz-box-shadow: 0 0 4px 2px #666;	/* horiz offset, vert offset, blur, spread */
	-webkit-box-shadow: 0 0 4px 2px #666;
	box-shadow: 0 0 4px 2px #666;
}


/* ~~ Why Noly ~~ */
.why_noly
{
	/*margin-left:206px;*/
	width:840px;
	background-color:#000;
	padding: 8px 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 */
}

.why_search
{
    display: block;
    float: right;
	margin: -12px 4px 0 16px;
}

/* ~~ The footer styles ~~ */
.footer
{
	padding: 8px 0;
	background: #000;
	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 */
}

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

.filter_section
{
	margin-top:6px;
	border-top:1px solid #FF0000;	/* was yellow FFF200 */
	padding-top:2px;
}