@charset "iso-8859-1";
/* Margins and padding are set with properties for an element using shorthand notation (top, right, bottom, left) */
/* If all four measurements are the same then you need only use one unit of measurement - instead of 0px 0px 0px 0px use just 0px */
/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, 
the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent 
styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the 
background color of the page and create a centered container for the page content to display. */
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	line-height: 1.2em;
	font-size: 16px;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif; 
	margin: 0px 0px 0px 0px;
	background-image:url('../images/bark.gif');
	background-attachment:fixed;
}

body img {
	border: 0px;
	text-decoration: none;
}


/* page titles */
h1 {
	color: #540000;
	font-size: 35px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
	font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}



/* page sub-titles */
h2 {
	color: #540000;
	font-size:20px;
	font-weight:bold;
	text-align:center;
}

/* paragraph headings */
h3 {
	font-size:16px;	
	font-weight:bold;
}

/* unvisited links. */
a, a:link {
	color: #0000FF;
	text-decoration: none;
	font-weight: bold;
}

/* visited links. */
a:visited {
	color: #4870aa;
	text-decoration: none;
	font-weight: bold;
}

/* links on mouseover. */
a:hover {
	color: #006600;
	text-decoration: underline;
}

/* link that has focus. */
a:focus {
	color: #2170bd;
}

/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #039;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid
 the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the 
 page.  IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and 
 right  margins to center the container on the page. */
#outerWrapper {
	width: 740px;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 10px auto 0px auto;
}
/* Styles for Navigation */
#outerWrapper #contentWrapper {
	clear: both;
	background-color: #ffffff;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, 
margins, and padding. */
#outerWrapper #contentWrapper #content {
	padding: 10px 20px 10px 20px;
	margin: 0px 0px 0px 0px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used 
without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated 
element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  display: block;
  clear: both;
}

/* removes the top and bottom margins*/

.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.ctr {
	text-align: center;
}
/* styling small size text*/
.smltxt {
	 font-size:small;
}

/* center image on the page */
.imgctr {
	display: block;
	margin: 0px auto;
}

.top {
	color: #540000;
	font-size: 35px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
	font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
}

.Title {
	font-family:"Monotype Corsiva";
	color: #004000;
	text-align: center;
	font-weight:bold;
	font-size: 48pt;
	text-align:center;
}

.tagline {
	font-family:"Bookman Old Style";
	color: #540000;
	text-align: center;
	font-weight:bold;
	font-size: 16pt;
	text-align:center;
}

.text {
	font-family:"Arial";
	font-size: 12pt;
	color: #540000;
}

.item {
	font-family:Arial, Helvetica, sans-serif;
	font-size:18px;
	font-weight:bold;
}

.description {
	font-family:Arial, Helvetica, sans-serif;
	font-size:16px;
}

.price {
	font-family:Arial, Helvetica, sans-serif;
	color: #004000;
	font-size:18px;
	font-weight:bold;
}
