/* 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: #515457;
	font-size: .95em;
	color: #000;
	background-repeat: repeat-x;
	background-image: url('../images/gray-bg.jpg');
	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
}
body img {
	border: 0px;
	text-decoration:none;
}
/* Commonly used to style page titles. */
h1, h2, h3 {
	/*color: #980E10;*/
	color: #000000;
	background-color: #FFFFFF;
	font-family: Palatino, "Palatino Linotype", Georgia,"Times New Roman", Times, serif;
}
h1 {
	font-size: 1.4em;
	padding: 5px 0px 5px 5px;
	margin-top: 3px;
	margin-bottom: 3px;
	background-image: url('../images/header-bg.jpg');
	background-repeat: no-repeat;
}
h2 {
	font-size: 1.2em;
	padding: 5px 0px 5px 5px;
	margin-top: 3px;
	margin-bottom: 3px;
	background-image: url('../images/header-bg.jpg');
	background-repeat: no-repeat;

}
h3 {
	font-size: 1em;
	background-image: url('../images/h3-bg.jpg');
	background-repeat: no-repeat;
	padding-left: 5px;
	padding-top: 2px;
	padding-bottom: 2px;
}
/* Sets the style for unvisited links. */

a:link {
	font-weight: bold;
	color: #A70303;
	background: transparent;
	text-decoration: underline;
}
a:visited {
	font-weight: bold;
	color: #980E10;
	background: transparent;
	padding: 0px;
	text-decoration: underline;
}
a:hover {
	font-weight: bold;
	text-decoration : none;
	background: #FFFFFF;
	color: #564C66;
}
a:active {
	font-weight: bold;
	text-decoration : underline;
	background: #D5D2D9;
	color: #000000;
}
/* 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 {
	background-color: #fff;
	width: 95%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0 auto 0 auto; 
	max-width: 1500px;
}
#outerWrapper #header {
	background-position: left bottom;
	background-color: #5F6366;
	padding: 0px;
	border-bottom: solid 1px #000000;
	background-image: url('../images/ew-web-logo.jpg');
	height: 180px;
	background-repeat: no-repeat;
}
#outerWrapper #header img {
	float: right;
}
.clrlft {
	clear: left;
}
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */
#outerWrapper #contentWrapper #arrowlistmenu {
	background-color: #FFFFFF;
	float: left;
	/*border-right: solid 1px #666;*/
	width: 180px;
	padding: 10px 10px 10px 10px;
}
#outerWrapper #contentWrapper #arrowlistmenu .headerbar {
	font: bold 1em Arial;
	color: white;
	background: black url(media/titlebar.png) repeat-x center left;
	margin-bottom: 10px; /*bottom spacing between header and rest of content*/;
	text-transform: uppercase;
	padding: 4px 0 4px 10px; /*header text is indented 10px*/
}
#outerWrapper #contentWrapper #arrowlistmenu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}
#outerWrapper #contentWrapper #arrowlistmenu ul li {
	padding-bottom: 2px; /*bottom spacing between menu items*/
}
#outerWrapper #contentWrapper #arrowlistmenu ul li a {
	color: #A70303;
	background: url('../images/arrowbullet.png') no-repeat left;
/*custom bullet list image*/	display: block;
	padding: 2px 0;
	padding-left: 19px; /*link text is indented 19px*/;
	text-decoration: none;
	font-weight: bold;
	border-bottom: 1px solid #dadada;
	font-size: 90%;
}
#outerWrapper #contentWrapper #arrowlistmenu ul li a:visited {
	color: #A70303;
}
#outerWrapper #contentWrapper #arrowlistmenu ul li a:hover {
	/*hover state CSS*/
color: #A70303;
	background-color: #F3F3F3;
}

#outerWrapper #contentWrapper .sidebox a:link {
 background: #FFFFFF;
 color: #A70303;
 font-weight: bold;
 text-decoration: none;
}
#outerWrapper #contentWrapper .sidebox a:visited {
	background: #FFFFFF;
	color: #808080;
	font-weight: bold;
	text-decoration: none;
}
#outerWrapper #contentWrapper .sidebox a:hover {
	background: #CCCCCC;
	color: #C60029;
	font-weight: bold;
	text-decoration: underline;
}
#outerWrapper #contentWrapper .sidebox a:active {
 background: #FFFFFF;
 color: #1534B3;
 font-weight: bold;
 text-decoration: none;
}
/* left-hand menu - colored box  */
#outerWrapper #contentWrapper .sidebox {
	border: 2px solid #CCCCCC;
	margin: 0px 5px 3px 5px;
	padding: 0px 3px 15px 3px;
	background: #FFFFFF;
	color: #000000;
	font-size: 85%;
}
/* left-hand menu - colored box  */
#outerWrapper #contentWrapper .sideboxheading {
	background: #000000;
	color: #FFFFFF;
	font-weight: bold;
	text-align: center;
	margin-top: 3px;
	padding: 2px;
}

#search {
	text-align: center;
	margin: 3px auto 8px auto;
	font-size: .8em;
}
#search p {
	margin-bottom: 0px;
}
#myform {
	/*CSS for sample search box. Remove if desired */
	margin: 0;
	padding: 0;
}
#myform .textinput {
	width: 100px;
	border: 1px solid gray;
}
#myform .submit {
	font: bold .9em Verdana;
	height: 22px;
	background-color: #980E10;
	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: 20px 30px 10px 30px;
	margin: 0 0 0 200px;
	font-size: .9em;
}
#outerWrapper #contentWrapper #content ul li {
	padding-bottom: 5px;
}
#outerWrapper #contentWrapper #content ol li {
	padding-bottom: 5px;
}

/* 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: left;
}
#outerWrapper #footer {
	border-top: 2px solid #564c66;
	clear: both;
	background-color: rgb(255, 255, 255);
	text-align: center;
	font-size: 80%;
	padding: 10px 0px;
	margin-top: 5px;
	margin-bottom: 5px;
}
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
}
.smalltext {
	font-size: small;
}
.cf {
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}

input:focus {
	border: 2px solid #980E10;
}
/*=============error page formatting contact page script=============*/
.error-page-heading1 {
	font-family: "Times New Roman";
	color: #564c66;
	font-size: 1.5em;
	font-weight: bold;
}
.error-page-heading2 {
	font-family: "Times New Roman";
	color: #564c66;
	font-size: 1.2em;
	font-weight: bold;
}
.line-closing {
	font-family: "Times New Roman";
	color: #0066CC;
	font-size: .9em;
	font-weight: bold;
}
.line-opening {
	font-family: "Times New Roman";
	color: #0066CC;
	font-size: .9em;
	font-weight: bold;
}
.message-error {
	font-family: "Times New Roman";
	color: #CC3300;
	font-size: 1em;
	font-weight: bold;
}
.message-footer {
	font-family: "Times New Roman";
	color: #000000;
	font-size: .8em;
	font-weight: bold;
}
.buttons {
	background-color: #980E10;
	color: #FFFFFF;
	font-weight: bold;
}
.ctr {
	 text-align:center;
}

.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.clrgt {
	clear: right;
}
.huggins {
	font-size:small;
	font-style:italic;
}

.highlight {
	background-color: #FFFF66;
}

#template {
	border: 1px solid #C0C0C0;
	border-collapse: collapse;
	empty-cells: show;
	width: 450px;
	margin-right: auto;
	margin-left: auto;
}
#template th {
 border: 1px solid #C0C0C0;
 text-align: center;
}
#template td {
	width: 50%;
	vertical-align: top;
	border: 1px solid #C0C0C0;
	font-size: .9em;
	padding: 10px;
}
#template td p {
	margin-top:5px;
	margin-bottom:5px;
}

.dnld
{
	margin-left: 20px;

}

.code {
	border: 1px dashed #999999;
	padding: 5px;
	background-color: #FFFF99;
	margin-right: 15px;
	margin-left: 15px;
}

.strikeout {
	text-decoration: line-through;
}
.sale {
	font-size: large;
	color: #CC3300;
	font-weight: bold;
}
.skiplink {display:none}


/*============ For sitemap ==============*/
#sitemap ul li {
	margin: 0px;
	padding: 0px 2px 0px 10px;
	list-style-image: url('../images/home.gif');
	background-repeat: no-repeat;
}
 #sitemap ul li li {
	list-style-image: url('../images/smfolder.gif');
	background-repeat: no-repeat;
	margin: 0px 5px 5px 0px;
	padding: 0px 0px 2px 0px;
}
 #sitemap ul li li li {
	list-style-image: url('../images/smfile.gif');
	background-repeat: no-repeat;
	margin: 0px 5px 5px 0px;
	padding: 0px;
}

.instructions {
	border-collapse: collapse;
	border: 1px solid #C0C0C0;
	margin-top: 20px;
	margin-bottom: 20px;
}
.instructions th {
	padding: 3px;
	border: 1px solid #C0C0C0;
}
.instructions td {
	padding: 3px;
	border: 1px solid #C0C0C0;
	vertical-align: top;
}

.photo {
	padding-right: 15px;
	padding-bottom: 5px;
	width: 210px;
	float: left;
	font-size: small;
}
.tinytxt {
	font-size:xx-small;
}

