/* 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, ul, li {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 12pt;
	line-height: 114%;
}
/* 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: #666;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  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. */
}

#HomeHead1 {
	position:absolute;
	width:680px;
	height:92px;
	z-index:1;
	top: 10px;
	right: 15px;
}
#HomeHead2 {
	position:absolute;
	width:680px;
	height:92px;
	z-index:1;
	top: -800px;
	right: 0px;
}
/* Commonly used to style page titles. */
h1 {
	color: #000;
	font-size: 20pt;
	font-weight: bold;
}

h1.home {
	color: #000;
	font-size: 14pt;
	font-weight: normal;
	font-style: italic;
	margin-top: 5px;
}
/* Commonly used to style section titles. */
h2 {
	font-size: 16pt;
	font-weight: bold;
	line-height: 20pt;
	padding-top: 5px;
}

h2.home {
	font-size: 12pt;
	font-weight: bold;
	line-height: normal;
	margin-bottom: 5px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}

.head_search
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #FFFFFF;

}

.head_search p { margin-top: 0; }

.head_search strong {
	margin-top: 0;
	font-size: 14px;
	font-family: "Helvetica 55", "Helvetica LT Std", Arial, Helvetica, sans-serif;
}

.head_search a:link, #banner_search a:visited, #banner_search a:active {
	color: #FFFFFF;
	text-decoration: underline;
}
/* 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: #6BA2C2;
	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: auto;
	background-image: url(../images/back-gradient2.jpg);
	background-repeat: repeat-x;
}
#outerWrapper #header {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: bold; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(../images/Cloudsback.jpg);
	background-position: center bottom;
}
/* Sets the style for unvisited links. */
#header a,  #header a:link {
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
#header a:visited {
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
#header a:hover {
	color: #009;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
#header a:focus {
  color: #FFF;
}
/* Sets the style for a link that is being activated/clicked. */
#header a:active {
  color: #FFF;
}

#header h1 {
	color: #FFFFFF;
	font-family: "Helvetica 55", "Helvetica LT Std", Arial, Helv, Sans-serif;
	font-size: 18px;
	height: 20px;
}
#header h2 {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: normal;
	line-height: 14px;
	font-family: "Helvetica 55", "Helvetica LT Std", Arial, Helv, Sans-serif;
	font-style: italic;
}
#outerWrapper #topNavigation {
	border-bottom: none 1px #666; /* Sets the bottom border properties for an element using shorthand notation */
	color: #FFFFFF;
	height: 50px;
	padding: 0px 6px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(../images/menuback-gradient.gif);
	background-repeat: repeat-x;
	margin-top: 0px;
	margin-right: 40px;
	margin-bottom: 0px;
	margin-left: 40px;
}
#outerWrapper #topNavigation h1 {
  color: #FFFFFF;
}
#outerWrapper #contentWrapper #rightColumn1 {
  background-color: #ebebeb;
  border-left: solid 1px #666; /* Sets the left border properties for an element using shorthand notation */
  float: right;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 14em;
}
/* 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 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 114%;
	margin: 0 13em 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 20px 10px 10px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	color: #000;
}

#outerWrapper #contentWrapper #content a, #outerWrapper #contentWrapper #content a:link {
  color: #0000FF;
}
#outerWrapper #contentWrapper #content a:visited {
  color: #0000FF;
}
#outerWrapper #contentWrapper #content a:hover {
  color: #990000;
}
#outerWrapper #contentWrapper #content a:focus {
  color: #0000FF;
}
#outerWrapper #contentWrapper #content a:active {
  color: #0000FF;
}
/* 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 {
  clear: right;
  display: block;
}

#contentWrapper {
	margin: 5px 40px 10px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	background-color: #FFF;
}

#outerWrapper #footer {
	background-color: #ddd;
	border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
	padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: right;
	letter-spacing: 0.2em;
	font-size: 10pt;
}
/************* #breadCrumb styles *************/

#breadCrumb{
	font-size: 8pt;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 6px;
	color: #CCCCCC;
	clear: both;
	height: 16px;
	vertical-align: middle;
	margin: 0px 40px 5px;
	background-color: #000000;
}

#breadCrumb a:link, #breadCrumb a:visited, #breadCrumb a:active {
	color: #FFFFFF;
	text-decoration: none;
}

#breadCrumb a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

#nav
{
	float: right;
	width: 180px;
	margin-right: 10px;
	padding-top: 5px;
	margin-top: 10px;
	border: 1px solid #8BBDDE;
	background-color: #FFFFFF;
	color: #666;
}
		
#nav p {
	margin-top: 0;
	font-size: 90%;
	line-height: 114%;
}

#navBar{
	border-right: 1px solid #000000;
	border-bottom: 1px solid #000000;
	background-image: url(../images/menuback-gradient.gif);
	background-repeat: repeat-x;
	height: 51px;
	background-color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	line-height: 30px;
	width: auto;
	margin-top: 15px;
	margin-right: 5px;
	margin-left: 5px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #000000;
	border-top-color: #000000;
}

/*********** .library styles ***********/

.library ul {
	list-style-type: none;
	padding: 3px;
	margin: 3px;
	text-align: center;
	font-size: 10px;
	text-decoration: underline;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}

.library ul li.libraryhead {
	list-style-type: none;
	padding: 2px;
	margin: 0px;
	text-align: center;
	font-size: 10px;
	text-decoration: underline;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #0000FF;
}

.library ul li.libraryheadnews {
	list-style-type: none;
	padding: 2px;
	margin: 0px;
	text-align: center;
	font-size: 10px;
	text-decoration: underline;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #0066FF;
}

.library ul li.librarycontact {
	list-style-type: none;
	padding: 2px;
	margin: 0px;
	text-align: center;
	font-size: 10px;
	text-decoration: underline;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #3399FF;
}

.library ul li {
	list-style-type: none;
	background-color: #ffffff;
	padding: 3px;
	margin: 2px;
	text-align: left;
	font-size: 9px;
	text-decoration: none;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #666;
}

.library li.sep {
	width: 158px;
	height: 1px;
	padding: 0px;
	margin: 0px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
}

.library li.librarysep {
	height: 1px;
	padding: 0px;
	margin: 0px 0px -2px;
	background-color: #999999;
}

/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
.library li {border-bottom: 1px solid #83BADA;}

/* fix for browsers that don't need the hack */
html>body .library li {border-bottom: none;}

.library a:link, .library a:visited, .library a:active {
	color: #006699;
	text-decoration: none;
}

.library a:hover {
	color: #006699;
	text-decoration: none;
}

/* Table Style */

table.spec {
	border-spacing: 2px;
	border-collapse: separate;
	background-color: white;
	font-size: 80%;
	margin: 4px;
	padding: 2px;
	line-height: 1.2;
	border: 2px solid #999;
}
table.spec th {
	border-width: 0px 0px 0px 0px;
	padding: 1px 1px 1px 1px;
	border-style: inset inset inset inset;
	border-color: gray gray gray gray;
	background-color: #00AEEF;
	-moz-border-radius: 0px 0px 0px 0px;
}
table.spec td {
	border-width: 0px 0px 0px 0px;
	padding: 1px 1px 1px 1px;
	border-style: inset inset inset inset;
	border-color: gray gray gray gray;
	background-color: rgb(139, 189, 222);
	-moz-border-radius: 0px 0px 0px 0px;
}

table.spec td.black { color: #000000; 
}
table.spec th.on {background:#ffe068;}
table.spec th.on {background:#ffe068;}

table.prod {
	border-collapse: separate;
	font-size: 90%;
	margin: 4px;
	padding: 0px;
	line-height: 1.1;
	border: 2px solid #FFFFFF;
	color: #666;
}
table.prod th {
	border-width: 0px 0px 0px 0px;
	padding: 1px 1px 1px 1px;
	border-style: inset inset inset inset;
	border-color: #666;
}
table.prod td {
	border-width: 2px 2px 2px 2px;
	padding: 1px 1px 1px 1px;
	border-style: inset inset inset inset;
	border-color: #666;
	text-align: center;
	background-color: #087DB8;
}

table.prod td.head {
	background:#4E9FCB;
	font-weight: bold
}
table.prod td.on {background:#ffffff;}

table.prod a:link, table.prod a:visited, table.prod a:active {
	color: #ffffff;
	text-decoration: underline;
}

table.prod a:hover {
	color: #ffffff;
	background:#4E9FCB;
	text-decoration: none;
}

#contentColC {
	clear: both;
	height: 20px;
	margin-top: 0px;
}
#contentCol2 {
  margin-left:  53%;
}
#contentCol1 {
  float: left;
  width: 47%;
}

/*********** .bodylist styles ***********/



.bodylist ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}

.bodylist ul li.bodylisthead {
	list-style-type: none;
	padding: 2px 5px;
	margin: 10px 0px 0px;
	font-size: 12pt;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #83BADA;
	color: #FFFFFF;
	text-transform: capitalize;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #83BADA;
	background-image: url(../images/menuback-gradient.gif);
	background-position: 40px;
}

.bodylist ul li.bodylistheadhome {
	list-style-type: none;
	padding: 2px 5px;
	margin: 0px;
	font-size: 12pt;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	background-color: #83BADA;
	color: #FFFFFF;
	text-transform: capitalize;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #83BADA;
	background-image: url(../images/menuback-gradient.gif);
	background-position: 40px;
}

.bodylist ul li {
	list-style-type: none;
	padding: 3px;
	margin: 3px;
	text-align: left;
	font-size: 12pt;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	color: #666;
	border-bottom: none 0px #ffffff;
}

.bodylist li.bullet {
	list-style-type: disc;
	padding: 3px 0px 0px;
	margin: 3px 0px 0px 15px;
}

.bodylist li.librarysep {
	height: 1px;
	padding: 0px;
	margin: 0px 0px -2px;
	background-color: #999999;
}

.prodlist {
	list-style-type: none;
	margin-top: 4px;
	margin-bottom: 15px;
	margin-left: 8px;
}

.prodlistli {
	list-style-type: none;
	margin-top: 5px;
}

.bulletlistli {
	list-style-type: disc;
	margin-top: 5px;
	list-style-position: outside;
	margin-left: 15px;
}

/* hack to fix IE/Win's broken rendering of block-level anchors in lists */
.bodylist li {border-bottom: 1px solid #2A89C1;}

/* fix for browsers that don't need the hack */
html>body .bodylist li {
	border-bottom: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #666;
}

.bodylist a:link, .bodylist a:visited, .bodylist a:active {
	color: #006699;
	text-decoration: none;
}

.bodylist a:hover {
	color: #006699;
	text-decoration: none;
}

.smalltext {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9pt;
	font-weight: normal;
}
#outerWrapper #contentWrapper #content table tr td p { font-family: Verdana, Geneva, sans-serif; }
.pics {
	padding: 0;
	margin:  0;
} 
 
.pics2 {
	padding: 0;
	margin:  0;
	float: right;
	height: 190px;
	width: 350px;
} 

.pics3 {
	width: 680px;
	padding: 0;
	margin:  0;
} 
 
.pics img {
	padding: 5px;
	border:  1px solid #ccc;
	background-color: #eee;
	top:  0;
	left: 0;
	text-align: center;
} 
.pics2 img {
	padding: 5px;
	border:  1px solid #ccc;
	background-color: #eee;
	top:  0;
	left: 0;
	text-align: center;
} 
.red { color: #900; }
