/* CSS Document */
/** 
	-- Basic Style Sheet
**/

/* CSS Document */
/* -----
Styles controlling Margins and Padding (Universal)
----- */
.display-none   { display: none; }
.display-block  { display: block; }

body {
	background-color: #FFFFFF;
	margin:0px;
	padding:0px;
	font-size: 0.75em;
	font-family: Arial, Helvetica, sans-serif;
}	  
	  
form { 
      margin:0px; 
      padding:0px;  }
	  
/* -----
Basic site tags
----- */

p {
	font-family:Arial, Helvetica, sans-serif;
	margin-top: 3px;
	margin-bottom: 3px;
}

a, a:link, a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-decoration: underline;
}
a:hover {
	font-weight: bold;
	text-decoration: none;
}
a:active {
	font-weight: bold;
	color: #B30400;
	text-decoration: none;
}

h1 { 
    font-family:Arial, Helvetica, sans-serif; 
    font-size:1.5em; 
    font-style:normal; 
    line-height:normal; 
    font-weight:bold; 
    font-variant:normal; 
    text-transform:none; 
    text-decoration:none;
}

h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.3em;
	font-style:normal;
	line-height:normal;
	font-weight:bold;
	font-variant:normal;
	text-transform:none;
	color:#000000;
	text-decoration:none;
	padding-bottom: 4px;
	margin-bottom: 0px;
}
h3 { 
    font-family:Arial, Helvetica, sans-serif; 
    font-size:1.2em; 
    font-style:normal; 
    line-height:.25em; 
    font-weight:bold; 
    font-variant:normal; 
    text-transform:none; 
    color:#000000; 
    text-decoration:none;  }
h4 { 
    font-family:Arial, Helvetica, sans-serif; 
    font-size:1.1em; 
    font-style:normal; 
    line-height:normal; 
    font-weight:bold; 
    font-variant:normal; 
    text-transform:none; 
    color:#000000; 
    text-decoration:none;  }
h5 { 
    font-family:Arial, Helvetica, sans-serif; 
    font-style:normal; 
    line-height:normal; 
    font-weight:bold; 
    font-variant:normal; 
    text-transform:none; 
    color:#000000; 
    text-decoration:none;  }
h6 {
	font-family:Arial, Helvetica, sans-serif;
	font-style:normal;
	line-height:normal;
	font-weight:bold;
	font-variant:normal;
	text-transform:none;
	color:#000000;
	text-decoration:none;
	display: inline;
}
table {
	font-family:Arial, Helvetica, sans-serif;
	font-style:normal;
	line-height:normal;
	font-weight:normal;
	font-variant:normal;
	text-transform:none;
	text-decoration:none;
}
thead { 
       font-family:Arial, Helvetica, sans-serif; 
       font-size:.9em; 
       font-style:normal; 
       line-height:normal; 
       font-weight:bold; 
       text-decoration:none;  }
th { 
		font-family:Arial, Helvetica, sans-serif; 
		font-size:1.1em; 
		font-style:normal; 
		line-height:normal; 
		font-weight:bold; 
		font-variant:normal; 
		text-transform:none; 
		text-decoration:none;  }
tfoot { 
       font-family:Arial, Helvetica, sans-serif; 
       font-size:1.1em; 
       font-style:normal; 
       line-height:normal; 
       font-weight:bold; 
       text-decoration:none;  }
label {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
}
input {
   font-family:Arial, Helvetica, sans-serif; 
   font-size:.95em;
}

select {
   font-family:Arial, Helvetica, sans-serif; 
   font-size:.95em;
}
option {
   font-family:Arial, Helvetica, sans-serif; 
   font-size:.95em;
   background-color: #E1E1E1;
}
textarea {
   font-family:Arial, Helvetica, sans-serif; 
   font-size: .95em;
}


ul {
	font-family: Arial, Helvetica, sans-serif;
	list-style-position: outside;
	list-style-type: disc;
	font-weight: bold;
}
ul ul {
	list-style-type: circle;
	font-weight: normal;
}
ul ul ul {
	list-style-type: square;
	font-weight: normal;
}

ol {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	list-style-position: outside;
}
ol ol {
	list-style-type: lower-roman;
	font-weight: normal;
}
ol ol ol {
	list-style-type: lower-alpha;
	font-weight: normal;
}


/* -----
Gray Tables -- Contains color information only
----- */
.tablegray table {
	border: 1px solid #4A4A4A;
}
.tablegray thead {
	color: #FFFFFF;
	background-image: url(../images/sidenav/contact_header.gif);
}
.tablegray th {
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
}

.tablegray tfoot {

}
.tablegray a:link {
	font-weight: bold;
	color: #4A4A4A;
	text-decoration: none;
	margin: 0px;
}
.tablegray a:visited {
	font-weight: bold;
	color: #4A4A4A;
	text-decoration: none;
	margin: 0px;
	padding: 0px;
}
.tablegray a:hover {
	font-weight: bold;
	color: #4A4A4A;
	text-decoration: none;
	margin: 0px;
}
.tablegray p {
	font-weight: bold;
	color: #4A4A4A;
	text-decoration: none;
}

/* -----
Blue Tables -- Contains color information only
----- */
.tableblue table {
	border: 1px solid #003798;
}
.tableblue thead {
	font-size: 1.1em;
	color: #FFFFFF;
	background-color: #003798;
}
.tableblue th {
	padding: 2px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFFFFF;
	color: #FFFFFF;
	background-color: #2866D2;
}
.tableblue td {
	padding: 2px 4px;
}
.tableblue ul {
	font-weight: normal;
}

/* Yellow Table */
.tableyellow table {
	border: 1px solid #C19D2F;
}
.tableyellow td {
	background-color: #D9C966;
}
.tableyellow tr {
	background-color: #D9C966;
}
.cookiecrumbs {
	font-size: 0.8em;
	font-weight: bold;
	color: #000000;
}
.cookiecrumbs a:link, .cookiecrumbs a:visited {
	font-weight: bold;
	color: #636468;
	text-decoration: none;
	font-size: 1em;
	margin-right: 5px;
	margin-left: 5px;
	padding-right: 5px;
	padding-left: 5px;
}

.cookiecrumbs a:hover {
	font-weight: bold;
	color: #636468;
	text-decoration: underline overline;
	font-size: 1em;
	background-color: #E1E1E1;
	margin-right: 5px;
	margin-left: 5px;
	padding-right: 5px;
	padding-left: 5px;
}

/* 
Home Page special styles
*/
.homepage p {
	font-weight:normal;
	font-style:normal;
	line-height:normal;
	font-variant:normal;
	text-transform:none;
	text-decoration:none;
	margin-left: 10px;
}
.homepage h1 {
	font-size: 1.5em;
	font-weight: bold;
	color: #0234FB;
	text-decoration: none;
	margin-bottom: -5px;
	margin-left: 10px
}
.homepage h2 {
	font-size: 1.3em;
	font-weight: bold;
	color: #0234FB;
	text-decoration: none;
	margin-bottom: -2px;
	margin-top: 5px;
}
.homepage h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	color: #0234FB;
	text-decoration: none;
	margin-bottom: -8px;
	margin-top: 5px;
}
.search td {
	font-weight: bold;
}
.layoutnav a:link {
	color: #000000;
	text-decoration: none;
	padding-right: 25px;
	padding-left: 25px;
}
.layoutnav a:visited {
	color: #000000;
	text-decoration: none;
	padding-right: 25px;
	padding-left: 25px;
}
.layoutnav a:hover {
	color: #FFFFFF;
	background-image: url(../images/topnav/nav_bground_hover.gif);
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #797F88;
	border-bottom-color: #797F88;
	padding-right: 25px;
	padding-left: 25px;
}
.layoutnav li {
	font-weight: bold;
	display: inline;
	height: 20px;
	vertical-align: middle;
}
.layoutnav ul {
	vertical-align: middle;
	margin: 0px 0px 0px 100px;
}
/*
---- Sub nav styles for top navigation ----
*/

.layoutsubnav ul {
	vertical-align: middle;
	margin: 0px 0px 0px 175px;
}
.layoutsubnav li {
	font-weight: bold;
	display: inline;
	height: 15px;
	vertical-align: middle;
}
.layoutsubnav a:link {
	color: #000000;
	text-decoration: none;
	padding-right: 15px;
	padding-left: 15px;
	border: 1px solid #CFD7E4;
}
.layoutsubnav a:visited {
	color: #000000;
	text-decoration: none;
	padding-right: 15px;
	padding-left: 15px;
	border: 1px solid #CFD7E4;
}
.layoutsubnav a:hover {
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 15px;
	padding-left: 15px;
	background-color: #AFAFAF;
	border: 1px solid #797F88;
}

/*
---- Footer styles for all of footer ----
*/
.layoutfooter p {
	font-size: .9em;
	color: #000000;
	text-decoration: none;
	margin-top: 1px;
	margin-bottom: 1px;
	margin-left: 25px;
}
.layoutfooter li {
	font-size: .9em;
	font-weight: bold;
	display: inline;
	height: 15px;
	vertical-align: middle
}
.layoutfooter ul {
	vertical-align: middle;
	margin: 0px 0px 0px 100px;
}
.layoutfooter a:link {
	color: #000000;
	text-decoration: none;
	padding-right: 15px;
	padding-left: 15px;
	border: 1px solid #CFD7E4;
}
.layoutfooter a:visited {
	color: #000000;
	text-decoration: none;
	padding-right: 15px;
	padding-left: 15px;
	border: 1px solid #CFD7E4;
}
.layoutfooter a:hover {
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 15px;
	padding-left: 15px;
	background-color: #AFAFAF;
	border: 1px solid #797F88;
}
.ProductHeading {
	font-size: 1.5em;
	font-weight: bold;
	font-variant: small-caps;
	color: #003798;
	text-decoration: none;
}
.ProductSubHeading {
	font-size: 1.2em;
	font-weight: bold;
	color: #646464;
	text-decoration: none;
}
.ProductSubSection table {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #003798;
}
.ProductSubSection th {
	font-weight: bold;
	color: #003798;
	background-color: #CFD7E4;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #003798;
}
.specialtableblue table {
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #003798;
	border-right-color: #003798;
}
.specialtableblue th {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #003798;
	text-align: left;
}
.specialtableyellow table {
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #D9C966;
	border-right-color: #D9C966;
}
.specialtableyellow th {
	font-weight: bold;
	color: #FFFFFF;
	background-color: #D9C966;
	text-align: left;
}
.errormessage {
	font-weight: bold;
	color: #CE0000;
}
.sepcialtablechemplug table {
	border-top-width: 1px;
	border-right-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-top-color: #D2DEFF;
	border-right-color: #D2DEFF;
}
.sepcialtablechemplug th {
	font-weight: bold;
	color: #000000;
	background-color: #D2DEFF;
	text-align: left;
}
