/* 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: 0;
	padding: 0;
	border: 0;
	outline: 0;
	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 {
	background-color: #353c48;
	color: #222222;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	line-height: 1.5em;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
	color: #327eb3;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	text-indent: 10px;
	padding-bottom: 5px;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #4095df;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #4870aa;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #2170bd;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #2170bd;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #039;
}

.img {
	border: none;
}
.imgIndent {
	text-align: left;
	margin-left: 35px;
}

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

.textIndent10px/* 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. */

  {
	text-indent: 15px;
}

.blockquote {
	text-indent: 15px;
	text-align: left;
}	

.hiddenfromview {display:none;}


/* 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. */
#wrapper {
	background-color: #fff;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 1000px;
}

/*topnav contains accountnav*/
#topnav {
	height: 70px;
	width: 1000px;
}


/*accountnav: my cart, my account, help center */
#accountnav {
	list-style: none;
	margin-top: 6px;
	padding: 0;
	float: right;
	position: relative;
	font-size: 95%;
	width: 400px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	height: 35px;
	text-align: right;
}
#accountnav li {
	border-right: 1px solid #49f;
	display: inline;
	padding: 0 0.5em;
}
#accountnav li.last {
	border-right: none;
}
#accountnav a {
	font-weight: normal;
	text-decoration: none;
	color: #248;
}
#accountnav a:hover {
	text-decoration: underline;
}
#accountnav #mycartnav a {
	padding-left: 20px;
	background-color: transparent;
	background-image: url(../images/icons/minicart.gif);
	background-repeat: no-repeat;
	background-position: left top;
}

#search {
	width:600px;
	height:50px;
	float:left;
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin-top: 6px;
	position: relative;

}	




}
/*header with logo*/
#header {
	font-weight: bold;
	height: 62px;
	padding: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #327EB3;
}
#navbar {
	height:45px;
	background-color:#FFFFFF;
	margin-top: 5px;
}
#subheader {
	height:200px;
	width: 980px;
	margin-right: 10px;
}	
#widebanner {
	background-image: url(../images/banner.gif);
	background-repeat: no-repeat;
	height: 35px;
}

#mainContent #leftColumn {
	/*background-color: #0000FF;*/
	background-color: #327eb3;
	border-right: solid 1px #9bb6d2; /* Sets the right border properties for an element using shorthand notation */
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-image: url(../images/fauxBGMain.gif);
	background-repeat: repeat-y;
}

#leftColumn #menuNav {
	width: 200px;
	/*background-color: #0000FF;*/
	background-color: #327eb3;
}

#mainContent /* 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. */
 #content {
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #CCCCCC;
	border-bottom-color: #CCCCCC;
	border-left-color: #CCCCCC;
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 220px;
}
/* Sets the text color heading as black and aligns it left */
#mainContent #content p {
	font-family: "Trebuchet MS", "Lucida Grande", Verdana, Arial, sans-serif;
	font-size: 12px;
	text-align: left;
	line-height: 1.5em;
	color: #000000;
}
#topnav #mainContent #content #info p.redText {
	color: #c22108;
}

/* Sets the text color heading as black and centers the heading */
#mainContent #content h3 {
	font-family: "Trebuchet MS", "Lucida Grande", Verdana, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	text-align: center;
	font-weight: bold;
	color: #000000;
}

/* Sets the text color heading as red and centers the heading */
#mainContent #content h4 {
	font-family: "Trebuchet MS", "Lucida Grande", Verdana, Arial, sans-serif;
	font-size: 14px;
	line-height: 1.5em;
	text-align: center;	
	font-weight: bold;
	color: #FF0000;
}

/* Used for tables of content pages, e.g. About Us, Contact Us, Terms and Conditions, Home, Common Questions */
#info {
	text-align: left;
	vertical-align: top;
	width: 100%;
	background-color: #FFFFFF;
}


#mainContent /* 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. */
 
.clearFloat {
	clear: left;
	display: block;
}

/*footer*/
#footer {
	background-color: #FFFFFF; /* Sets the top border properties for an element using shorthand notation */
	height: 200px;
	padding: 5px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center;
	font-size: 95%;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #327EB3;
}

#footerInfo {
	text-align: center;
}

/*#footernav*/
#footernav{
	list-style: none;
	margin-top: 3px;
	padding: 0;
	font-size: 100%;
	width: 1000px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	text-align: center;
}
#footernav li {
	border-right: 1px solid #49f;
	display: inline;
	padding: 0 0.5em;
}
#footernav li.last {
	border-right: none;
}
#footernav a {
	font-weight: normal;
	text-decoration: none;
	color: #248;
}
#footernav a:hover {
	text-decoration: underline;
}
.footerAddress {
	color: #248;
	font-size: 100%;
	text-align: center;
}
