@charset "utf-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #003333;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.oneColFixCtrHdr #container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #DAC79E;
	padding: 0;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #container2 {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	padding: 0;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

.oneColFixCtrHdr #header {
	background: #AA802B;
	margin: 0;
	height: 128px;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#banner {
	height: 128px;
	background-image: url(../pics/banner_wh.jpg);
	background-repeat: no-repeat;
	margin: 0;
	padding: 0;
}
.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 20px;
	padding-top: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #DAC79E;
/*	background-image: url(http://www.bassriveroutdoors.com/images/woodbg.jpg);
	background-repeat: no-repeat;*/
}

.oneColFixCtrHdr #mainContent2 {
	padding: 20px;
	padding-top: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #fff;
/*	background-image: url(http://www.bassriveroutdoors.com/images/woodbg.jpg);
	background-repeat: no-repeat;*/
}

.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #aa8b4d; /* for non-css3 browsers */
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d4bf95', endColorstr='#ab812c'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#d4bf95), to(#ab812c)); /* for webkit browsers */
	background: -moz-linear-gradient(top, #d4bf95, #ab812c); /* for firefox 3.6+ */
}
.oneColFixCtrHdr #footer p {
	font-size: 10px;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#nav {
	margin: 0;
	padding: 1px 6px 0;
	line-height: 100%;
	/*	border-radius: 2em;

	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;*/
	
/*	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .4);*/

	background: #aa8b4d; /* for non-css3 browsers */
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#d4bf95', endColorstr='#ab812c'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#d4bf95), to(#ab812c)); /* for webkit browsers */
	background: -moz-linear-gradient(top, #d4bf95, #ab812c); /* for firefox 3.6+ */
	border: none;
}
#nav li {
	margin: 0 15px;
	padding: 0 0 1px;
	float: left;
	position: relative;
	list-style: none;
}
/* main level link */
#nav a {
	font-weight: bold;
	color: #002121;
	text-decoration: none;
	display: block;
	padding:  7px 1px;
	margin: 0;
	/*	-webkit-border-radius: 1.6em;
	-moz-border-radius: 1.6em;*/
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
/* main level link hover */
#nav .current a, #nav li:hover > a {
	background: #553900; /* for non-css3 browsers */
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#553900', endColorstr='#372500'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#553900), to(#372500)); /* for webkit browsers */
	background: -moz-linear-gradient(top, #553900, #372500); /* for firefox 3.6+ */
	color: #D4BF95;/*border-top: solid 1px #f8f8f8;*/
/*	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
	box-shadow: 0 1px 1px rgba(0, 0, 0, .2);*/
	/*text-shadow: 0 1px 0 rgba(255, 255, 255, .8);*/
}
#quoterotator {
	background: #553900; /* for non-css3 browsers */
 filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#553900', endColorstr='#000000'); /* for IE */
	background: -webkit-gradient(linear, left top, left bottom, from(#553900), to(#000000)); /* for webkit browsers */
	background: -moz-linear-gradient(top, #553900, #000000); /* for firefox 3.6+ */
	color: #D4BF95;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
}
/* clearfix */
#nav:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
#nav {
	display: inline-block;
}
html[xmlns] #nav {
	display: block;
}
* html #nav {
	height: 1%;
}
.rowdealer1 {
	background-color:  #D1DFB5;
	font-family: Arial, Helvetica, sans-serif;
	color: black;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
}
.rowdealer2 {
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	color: black;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
}
#container {
	box-shadow: 0px 0px 5px 6px #002020;
	-moz-box-shadow: 0px 0px 5px 6px #002020;
	-webkit-box-shadow: 0px 0px 5px 6px #002020;
}

#container2 {
	box-shadow: 0px 0px 5px 6px #002020;
	-moz-box-shadow: 0px 0px 5px 6px #002020;
	-webkit-box-shadow: 0px 0px 5px 6px #002020;
}

#shadow {
	-moz-box-shadow:    4px 4px 5px 0px #999;
	-webkit-box-shadow: 4px 4px 5px 0px #999;
	box-shadow:         4px 4px 5px 0px #999;
}
ul.snapshot {
	width: 990px;
	margin: 0 0 18px -30px;
}
ul.snapshot li {
	display: inline;
}
ul.snapshot a {
	background: #fff;
	display: inline;
	float: left;
	margin: 0 0 27px 30px;
	width: auto;
	padding: 10px 10px 15px;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: none;
	color: #333;
	font-size: 18px;
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .25);
	-moz-box-shadow: 0 3px 6px rgba(0, 0, 0, .25);
	-webkit-transform: rotate(-2deg);
-webkit-transition: -webkit-transform .15s linear;
	-moz-transform: rotate(-2deg);
}
ul.snapshot img {
	display: block;
	width: 250px;
	margin-bottom: 12px;
}
ul.snapshot a:after {
	content: attr(title);
}
 ul.snapshot li:nth-child(even) a {
-webkit-transform: rotate(2deg);
-moz-transform: rotate(2deg);
}
 ul.snapshot li:nth-child(3n) a {
-webkit-transform: none;
position: relative;
top: -5px;
-moz-transform: none;
}
 ul.snapshot li:nth-child(5n) a {
-webkit-transform: rotate(5deg);
position: relative;
right: 5px;
-moz-transform: rotate(5deg);
}
 ul.snapshot li:nth-child(8n) a {
position: relative;
right: 5px;
top: 8px;
}
 ul.snapshot li:nth-child(11n) a {
position: relative;
left: -5px;
top: 3px;
}
ul.snapshot li.messy a {
	margin-top: -375px;
	margin-left: 160px;
	-webkit-transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
}
ul.snapshot li a:hover {
	-webkit-transform: scale(1.25);
	-moz-transform: scale(1.25);
	-ms-transform: scale(1.25,1.25);
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .5);
	-moz-box-shadow: 0 3px 6px rgba(0, 0, 0, .5);
	position: relative;
	z-index: 5;
}
