@charset "UTF-8";
/* CSS Document */

body  {
	font: 100% Arial, Verdana, Helvetica, sans-serif;
	background: #5f3004; 
	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: #CCCC66;
}
/* ------IF Div set-ups------- */
/* ------'Paper' Page Container ------ */
#MainPage { 
	width: 785px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 5px auto 30px auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0px;
	background-image:url(../images/IF/MainPageTop.jpg);
	background-repeat:no-repeat;
	background-position:top;
}
#MainPage #mainTop {
	width:785px;
	height:38px;
	margin:0;
	background-image:url(../images/IF/MainPageTop.jpg);
	background-repeat:no-repeat;
}
#MainPage #mainBottom {
	width:785px;
	height:44px;
	margin:0;
	background-image:url(../images/IF/MainPageFooter.jpg);
	background-repeat:no-repeat;
}

#MainPageBody {
	width: 785px; 
	margin-top:0;
	background-image: url(../images/IF/MainPageBody.jpg);
	background-repeat:repeat-y;
}

	
/* ------ Left Side Navigation Bar ------*/	
#MainNav {
	float: left; /* since this element is floated, a width must be given */
	width: 228px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background-color:transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 0px 2px 0px 0px;
	padding: 0px 0px 15px 19px;
}
#MainNav #logo {
	width:229px;
	height:156px;
	margin:0;
	background-image:url(../images/IF/logo_on_background.jpg);
	background-repeat:no-repeat;
}
#MainNav #navTop {
	width:228px;
	height:38px;
	margin:0;
	background-image:url(../images/IF/Nav_Top_Cap.jpg);
	background-repeat:no-repeat;
}
#MainNavBody {
	width: 228px;
	background-image: url(../images/IF/Nav_Body_Bg.jpg);
	background-repeat: repeat-y;
	margin: 0px;
	padding: 0px;
}
#MainNav #navBottom {
	width:228px;
	height:20px;
	margin:0;
	background-image:url(../images/IF/Nav_Bottom.jpg);
	background-repeat:no-repeat;
}


/* ------ Right Side Main Content Area ------*/
#MainContent { 
	width: 517px;
	margin: 0 0 0 252px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding:0 10px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: transparent;
}
#MainContent #mainContentTop {
	width:517px;
	height:48px;
	margin:0;
	background-image:url(../images/IF/MainContent_Top.jpg);
	background-repeat: no-repeat;
}
#MainContent #mainContentBottom {
	width:517px;
	height:26px;
	margin:0;
	background-image:url(../images/IF/MainContent_bottom.jpg);
	background-repeat:no-repeat;
}

#MainContentBody {
	background-image: url(../images/IF/MainContentBody.jpg);
	background-repeat: repeat-y;  
	color: #CCCC66;
	text-align:left;
	width: 517px;
	margin: 0px;
	padding-bottom: 10px;
} 
#MainContentBody p {
	margin-top: 5px;
	padding: 0px 25px;
	font-size: 75%;
	font-weight: lighter;
	text-align: left;
	line-height: 1.4em;
	color: #CCCC66;
}
#MainContentBody a {
	color:#CCCC66;
	text-decoration:underline;
}
#MainContentBody a:hover {
	color:black;
	background-color:#CCCC66;
	text-decoration:none;
}
#MainContentBody h1 {
	margin: 0px;
	padding: 10px 25px 10px 25px;
	font-size: 110%;
	text-align: center;
	letter-spacing: .1em;
	color: #CC8E00;
}
#MainContentBody h2 {
	margin: 0px;
	padding: 10px 25px 5px 25px;
	font-size: 90%;
	text-align: left;
	color: #CC8E00;
}
#MainContentBody h3 {
	margin: 0px;
	padding: 5px 25px 2px 25px;
	text-align: left;
	font-size: 80%;
	color: #CC8E00;
}
#MainContentBody .imgLT {
	float:left;
	margin:10px 10px 10px 25px;
}
#MainContentBody .imgLT img {
	border:1px solid white;
}

#MainContentBody .imgRT {
	float:right;
	margin:5px 30px 10px 10px;
}
#MainContentBody .imgRT img {
	border:1px solid #CCCC66;
}
#MainContentBody .caption {
	font-size:10px;
	text-align:left;
	margin:0;
	padding:0;
	color:#CCCC66;
}
#MainContentBody .captionLrg {
	text-align:left;
	font-size:75%;
	margin:0;
	padding:0;
	color:#CCCC66;
}

/* on FAQ page */
ul {
	margin: 0 25px;
	list-style: none;
}
li.question {
	margin: 5px 0px 0 0px;
	padding: 0px;
	font-size: 85%;
	font-style: italic;
	font-weight:bolder;
	text-align: left;
	color: #CCCC33;
}

li.answer  {
	margin: 0 0px;
	padding: 0px;
	padding-bottom: 10px;
	font-weight: lighter;
	font-size: 80%;
	color: #CCCC66;
}
ul ul {
	padding: 5px 0;
	list-style:square outside;
	font-size: 90%;
}

ul ul li {
	padding: 3px 0;
	list-style: circle outside;
	font-size: 90%;
}
li a {
	text-decoration:none;
}
li a:hover {
	color: black;
	background-color: #CCCC66;
	text-decoration: none;
}
blockquote {
	margin: 0;
	margin-top: 15px;
	padding: 0px 30px;
	font-size: 80%;
	font-weight: bold;
	text-align: left;
	line-height: 1.2em;
	color: #CCCC33;
}
p.cite {
	margin: 0;
	padding: 0 0 30px 25px;
	font-size: 75%;
	font-weight: lighter;
	line-height: 1em;
	color: #CCCC66;
}	
#knifeDiagram {
	margin: 5px 25px;
	padding: 0;
	}
#knifeDiagram img {
	display: block;
	padding-bottom: 10px;
	}
	
/* footer setup */
#FooterTextNav {
	margin: -40px 20px 0px 240px;
	padding: 0px;
}
#FooterTextNav p {
	color:black;
	margin:0;
	font-size:75%;
}
#FooterTextNav a {
	color: black;
	text-decoration: none;
}
#FooterTextNav a:hover {
	color: black;
	text-decoration: underline;
}

/* ------ Copyright under Main Page ------*/
#copyright {
	position: relative;
	width: 785px;
	height: 20px;
	margin:0;
}
#copyright p {
	font-size:70%;
	color:black;
	text-align: left;
	margin:0;
	margin-top:30px;
	padding-left:15px;
}
#copyright a {
	color: black;
	text-decoration: none;
}
#copyright a:hover {
	color: black;
	text-decoration: underline;
}

/* ------ Special Items ------*/
.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;
}
.bold {
	font-weight:800;
	color: #CCCC33;
	}
.italic {
	font-style: italic
}
/* -------- What Do We Sharpen-------*/
#sharpenList h2 {
	margin: 5px 30px 0 28px;
	padding: 0;
	padding-left: 5px;
	font-size: 120%;	
	color: black;
	background-color: #CC8E00;
	}
#sharpenList ul {
	margin: 0 25px;
	list-style:circle;
	list-style-position: inside;
	}
#sharpenList ul li {
	padding: 2px 5px;
	}
/* ------- Contact Us Form --------*/
div#contactRon  {
	margin: 10px 30px 10px 45px;
	}
form#contactUs {
	width: 425px;
	margin: 10px auto;
	padding: 0;
	border: 1px solid #CC8E00;
	}
form#contactUs table {
	width: 370px;
	margin: 5px auto;
	padding: 5px;
	border: 1px solid #CCCC66;
	}
form#contactUs input[type="radio"]  {
	margin: 3px 5px 5px 5px;
	line-height: 1em;
	}
form#contactUs h3 {
	margin-top: 20px;
	}
form tr {
	margin-bottom: 3px;
	padding: 0;
	}
form th {
	margin-bottom: 3px;
	text-align: right;
	font-size: 90%;
	}
input[type="text"] {
	width: 230px;
	}
	/*
input[type="submit"] {
	width: 80px;
	margin: 5px;
	position: relative;
	bottom: 5px;
	left: 160px;
	text-align: center;
	}*/
/* -----MapsDirections Page --------*/
#directions {
	width: 450px;
	margin: 5px auto 10px auto;
	text-align: center;
	}
#directions p {
	text-align: center;
	}
	
	
