@charset "utf-8";
html, 
body  {
	margin:0;
	padding:0;
	height:100%;
	text-align: center;
	color: #000000;
	font-family: Verdana, Arial, sans-serif;
	font-size: 100%;
	
	
}

a:link {
        color: #FF1500;
        text-decoration: none;
}
a:visited {
	    color: #999999;
	    text-decoration: none;
}
a:active {
        color: #F50000;
        text-decoration: none;
}
a:hover {
         color: #810000; 
	     text-decoration: underline;
}
#container {
	width: 100%;
	min-height:100%;
	text-align: left;
	position: relative;
	background-color: #FFFFFF;
}  
#header {
	/* 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. */
	height: 143px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	position: relative;
	width: 100%;
	
} 

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColHybHdr #sidebar1 p" rule.
*/
#sidebar1 {
	float: left;
	width: 11em;
	padding-left: 15px;
	font-size: 0.8em;
}
#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 */
}

#banner {
	top: 33px;
	height: 110px;
	background-image: url(../images/Banner_r1_c2.jpg);
	background-repeat: repeat-x;
}
#body2 {
	padding-bottom:60px;

}
#sidebar2 {
	float: right;
	width: 11em;
	padding-bottom: 15px;
	padding-right: 15px;
	font-size: 0.8em;
	margin-right: 2em;
	
}
#sidebar1 h3, #sidebar1 p,  #sidebar2 p,  #sidebar2 h3 {
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
*/
#mainContent {
	margin-top: 3px;
	margin-right: 16em;
	margin-left: 14em;
	padding-top: 0em;
	padding-right: 2em;
	padding-left: 2em;
	margin-bottom: 1.25em;
	font-size: 0.8em;
	bottom: 0px;

} 
#footer {
	position:relative;
	width:100%;
	height:60px;
	text-align: center;
	background-image: url(../images/footer-bg.jpg);
	background-repeat: repeat;
	background-position: left;
	color: #CCCCCC;
	font-size: 0.6em;
	padding-top: 10px;
	bottom: 0px;
} 

#footer p {
	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 */
}

/* Miscellaneous classes for reuse */
.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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
ul.menu {
	list-style-type:none;
	width:auto;
	position:relative;
	display:block;
	height:33px;
	font-size:0.8em;
	background:url(../images/bg.png) repeat-x top left;
	margin:0;
	padding:0;
	letter-spacing: 0.5px;
	overflow: hidden;
}

ul.menu li {
display:block;
float:left;
margin:0;
padding:0;
}

ul.menu li a {
float:left;
color:#A79787;
text-decoration:none;
height:24px;
padding:9px 15px 0;
}

ul.menu li a:hover,.current2 {

background:url(../images/bg.png) repeat-x top left;
}

ul.menu .current2 a {

	font-weight:700;
}


/*RED*/
ul.menu.red{
background-color:#B11718;
}
ul.menu.red li a:hover, .menu.red li.current2 {
	background-color: #DE3330;

}
ul.submenu {
	list-style-type:none;
	width:auto;
	position:relative;
	display:block;
	height:33px;
	font-size:0.8em;
	margin:0;
	padding:0;
	letter-spacing: 0.5px;
	background-image: url(../images/bg2.png);
	background-repeat: repeat-x;
	background-position: left top;
}

ul.submenu li {
	display:block;
	float:right;
	margin:0;
	padding:0;
}

ul.submenu li a {
float:left;
color:#A79787;
text-decoration:none;
height:24px;
padding:9px 15px 0;
}

ul.submenu li a:hover,.current {
	background-image: url(../images/bg2.png);
	background-repeat: repeat-x;
	background-position: left top;
}

ul.submenu .current a {
	font-weight:700;
}
/*RED*/
ul.submenu.red{
background-color:#B11718;
}
ul.submenu.red li a:hover, .submenu.red li.current {
	background-color: #DE3330;
}
.mooquee
{
	/* don't change */
    position: relative;
	white-space: nowrap;
	height: 25px;
	width: 100%;
	font-size: 0.8em;
	font-style: italic;
	margin-bottom: 10px;
	background-image: url(../images/title.jpg);
	background-repeat: repeat-x;
	color: #FFFFFF;
	padding-top: 3px;
	overflow: hidden;
	
}
.mooquee-text
{
	/* don't change */
	position: absolute;
}
.mod {
	padding: 2em;

}
.image_product {
	 float: left;
	 margin: 0px 18px 10px 0px; 
	 text-align: center;
}
.product_list {
	MARGIN: 20px 0px;
}
#map{
	border: 1px solid #333333;
	margin-top: 20px;
	margin-bottom: 30px;
	position: relative;
	height: 350px;
	width: 400px;
	overflow: hidden;
}
.floatright {
	float: right;
	margin-right: 10px;
}

#contact{
	border: 1px solid #333333;
	margin-top: 20px;
	margin-bottom: 40px;
	width: 330px;
	padding-top: 10px;
	padding-right: 30px;
	padding-bottom: 10px;
	padding-left: 30px;
}
.webform{
	width:330px;
	color:#000000;

}
		
.webform label{
	display:block;
	width:300px;
}
.webform .inputbox{
	height:18px;
	width:250px;
	padding:4px 3px 2px 3px;
	margin:2px 0 10px 3px;
	border:1px solid #ccc;
	font-size: 0.8em;
}
 .webform textarea{
        height:80px;
        width:250px;
        padding:4px 3px 2px 3px;
        margin:2px 0 10px 3px;
        border:1px solid #ccc;
}
.submit{
	margin:2px 0 0 3px;
	background-color:#eee;
	height:30px;
	width:140px;
	padding:0;
	border:1px solid #ccc;
	display:block;
	color:#666;

	
}
 
.negitive_top{
	margin-top: 20px;
}
.sidebar {
	width: 150px; 
	border-top-style: none; 
	border-right-style: none;
	border-left-style: none; 
	border-bottom-style: none;
}
#image {
	padding-right: 0px;
	padding-left: 0px;
	background: #fff;
	text-align: center;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	margin-bottom: 5px;
}
#payment{
	color: #FFFFFF;
	background-image: url(../images/title.jpg);
	background-repeat: repeat-x;
	text-align: center;
	padding-right: 10px;
	padding-left: 10px;
	height: 25px;
	width: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	padding-top: 3px;

}
#sale{
	color: #FFFFFF;
	background-image: url(../images/title.jpg);
	background-repeat: repeat-x;
	text-align: center;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: 25px;
	width: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	padding-top: 3px;
}
#free{
	color: #FFFFFF;
	background-image: url(../images/title.jpg);
	background-repeat: repeat-x;
	text-align: center;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: 25px;
	width: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	padding-top: 3px;
}
#fishing{
	color: #FFFFFF;
	background-image: url(../images/title.jpg);
	background-repeat: repeat-x;
	text-align: center;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: 25px;
	width: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	padding-top: 3px;
}
#conshop{
	color: #FFFFFF;
	background-image: url(../images/title.jpg);
	background-repeat: repeat;
	text-align: center;
	width: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #333333;
	border-right-color: #333333;
	border-bottom-color: #333333;
	border-left-color: #333333;
	height: 25px;
	padding-top: 3px;
}
#product{
	color: #FFFFFF;
	background-image: url(../images/title.jpg);
	background-repeat: repeat;
	text-align: center;
	width: auto;
	height: 25px;
	padding-top: 3px;
}
#basic{
	font-size: 0.7em;
	display: block;
	position: relative;
	text-align: center;
}
#basic li{
	
}
#basic a{
	
}
