/* CSS Document */

/* Izilla CSS Template v1.3 (30/01/2008) */
/* http://www.izilla.com.au */

/* --------------------------------------------
	Conditional Browser Rules
----------------------------------------------- */

/*
	Usage: Apply each of these "hacks" after the initial incorrect value has been set.

	Child Selector for FF, IE7, Opera, Safari:
		html > body element {rule}
	
	Child Selector + Comment Hack, which IE7 ignores:
		html >/^^/ body element {rule}
	
	Comment Hack to hide from IE5x:
		element {selector/^^/:/^^/ value;}
		
	Target Opera:
		html:first-child element {rule}
	
	Replace ^ with *
*/




/* --------------------------------------------
	Colour Glossary
----------------------------------------------- */

/*
	Swatch - #000000
*/




/* --------------------------------------------
	Top-level Elements
----------------------------------------------- */

/* Top-level Elements

    * HTML - HTML document
          o BODY - Document body
*/

* {
	margin: 0;
	padding: 0;
}

html {
	height: 100.01%;	/* Creates scrollbar in FF */
}

body {
	color: #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 75%; /* 12px */
}

body * {
	font-family: inherit;
	font-size: 100%;
}

/* --------------------------------------------
	Generic Classes
----------------------------------------------- */

.align_centre {
	text-align: center !important;
}

.align_justify {
	text-align: justify !important;
}

.align_left {
	text-align: left !important;
}

.align_right {
	text-align: right !important;
}

.centre_object {
	display: block;
	margin: 0 auto 1.4em auto;
}

.clear {
	clear: both;
}

div.clear {  /* for clearing divs if overflow doesn't work */
	font-size: 0;
	line-height: 0px;
}

.float_left {
	display: inline;
	float: left;
}

.float_right {
	display: inline;
	float: right;
}

.glossary {display: none;}	/* For use in conjunction with AddGlossary script */

img.float_left {
	margin: 1em 0;
}

img.float_right {
	margin: 0.5em 0 0.5em 1em;
}

img.float_left_border {
	border: 1px solid #cad5f3;
	float: left;
	margin: 0.5em 1em 0.5em 0;
}

img.float_right_border {
	border: 1px solid #cad5f3;
	float: right;
	margin: 0.5em 0 0.5em 1em;
}

/* --------------------------------------------
	Specific Classes
----------------------------------------------- */



/* --------------------------------------------
	Special Inline Elements
----------------------------------------------- */

/* Special Inline Elements

    * A - Anchor
    * BR - Line break
    * IFRAME - Inline frame
    * IMG - Inline image
    * MAP - Image map
          o AREA - Image map region
    * Q - Short quotation
    * SPAN - Generic inline container
    * SUB - Subscript
    * SUP - Superscript
*/

a {
	color: #004b8d;
	text-decoration: none;
}

a:hover, a:focus {
	color: #5680A4;
	text-decoration: underline;
}

a:visited {
}

a img {
	border: none;
}

a.anchor {
	border: inherit;
	color: inherit;
	display: inline;
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	text-align: inherit;
	text-decoration: inherit;
	text-indent: inherit;
	text-transform: inherit;
	white-space: inherit;
	word-spacing: inherit;
}

a.izilla, a:hover.izilla, a:focus.izilla {
	color: #00814f;
}

a.cognition, a:hover.cognition, a:focus.cognition {
	color: #237eb8;
}

q:before, q:after { 
    content: ""; /* With IE's lack of support, remove quotes on all good browsers. Add them manually in the markup */
}

/* --------------------------------------------
	Generic Block-level Elements
----------------------------------------------- */

/* Generic Block-level Elements

    * ADDRESS - Address
    * BLOCKQUOTE - Block quotation
    * DEL - Deleted text
    * DIV - Generic block-level container
    * H1 - Level-one heading
    * H2 - Level-two heading
    * H3 - Level-three heading
    * H4 - Level-four heading
    * H5 - Level-five heading
    * H6 - Level-six heading
    * HR - Horizontal rule
    * INS - Inserted text
    * P - Paragraph
    * PRE - Preformatted text
*/

address {
	font-style: normal;
}

blockquote {
	border-left: 3px solid #376bb9;
	margin-bottom: 1.28em;
	padding: 1em 11px 1px 11px;
}

hr {
	border: none;
	clear: inherit;
	color: #c7d2df;
	height: 1px;
	margin: 0.1em 0 0.4em 0;
}

html >/**/ body hr {
	margin: 12px 0;
}

p {
	margin-bottom: 1.28em;
}

/* --------------------------------------------
	Lists
----------------------------------------------- */

/* Lists

    * DIR - Directory list
    * DL - Definition list
          o DT - Definition term
          o DD - Definition description
    * LI - List item
    * OL - Ordered list
    * UL - Unordered list
*/

/* - Content Lists ------------------------------- */

#content ol {
	list-style-type: decimal;
	margin-bottom: 1.28em;
	margin-left: 39px;
}

html >/**/ body #content ol {
	margin-left: 34px;
}

#content ol.lower_alpha {list-style-type: lower-alpha;}
#content ol.upper_alpha {list-style-type: upper-alpha;}
#content ol.lower_roman {list-style-type: lower-roman;}
#content ol.upper_roman {list-style-type: upper-roman;}

#content ol li {
	margin-bottom: 0.5em;
	padding-left: 1px;
}

html >/**/ body #content ol li {
	padding-left: 6px;
}

html body #content ul ol li {
	padding-left: 1px;
}

html >/**/ body #content ul ol li {
	padding-left: 6px;
}

#content li ul, #content li ol {
	margin-top: 1.28em;
}

#content ul {
	list-style-type: none;
	margin-bottom: 1.28em;
	padding-left: 20px;
}

html body #content ul li {
	margin-bottom: 0.5em;
	padding-left: 20px;
}

html body #content li ul li {
}

#content ul.list_next_to_image li {
	height: 1%;
	position: relative;
}

html >/**/ body #content ul.list_next_to_image li {
	height: auto;
}



/* --------------------------------------------
	Tables
----------------------------------------------- */

/* Tables

    * TABLE - Table
          o CAPTION - Table caption
          o COLGROUP - Table column group
                + COL - Table column
          o THEAD - Table head
          o TFOOT - Table foot
          o TBODY - Table body
          o TR - Table row
                + TD - Table data cell
                + TH - Table header cell
*/


table.data {
	border: none;
	border-collapse: collapse;
	line-height: 1.3em;
	margin: 0 0 1.28em 0;
}

html >/**/ body table.data {
	margin-left: 1px;
}

table.data caption {
	border-bottom: 3px solid #fff;
	font-weight: bold;
	margin: auto;
	padding: 5px;
}

table.data td, table.data th {
	border: 1px solid #555;
	padding: 6px 9px;
	vertical-align: top;
}

table.data thead th.empty {
	border: none;
}

table.data th.border_right {
	border-left: 1px solid #004B8D;
	border-right: 1px solid #919191;
}

table.data th.border_left {
	border-left: 1px solid #919191;
	border-right: 1px solid #004B8D;
}

table.data th.border_none {
	border: 1px solid #004B8D;
}

table.data th.border_both {
	border-left: 1px solid #004B8D;
	border-right: 1px solid #919191;
}

table.data th {
	color: #fff;
	font-weight: bold;
	line-height: 130%;
}

table.data tbody th {
	text-align: center;
}

table.data tbody th.border_bottom {
	border-top: 1px solid #6a747c;
	border-bottom: 1px solid #919191;
	border-left: 1px solid #6a747c;
	border-right: 1px solid #6a747c;
}

table.data tbody th.border_top {
	border-top: 1px solid #919191;
	border-bottom: 1px solid #6a747c;
	border-left: 1px solid #6a747c;
	border-right: 1px solid #6a747c;
}

table.data tbody th.border_none {
	border-top: 1px solid #6a747c;
	border-bottom: 1px solid #6a747c;
	border-left: 1px solid #6a747c;
	border-right: 1px solid #6a747c;
}

table.data tbody th.border_both {
	border-top: 1px solid #6a747c;
	border-bottom: 1px solid #919191;
	border-left: 1px solid #6a747c;
	border-right: 1px solid #6a747c;
}

table.data td {
}

table.data tr.even td {
}

table td.borderNone_top {
	border-top: none;
}

table td.borderNone_btm {
	border-bottom: none;
}

table td.borderNone_both {
	border-bottom: none;
	border-top: none;
}

span.product_cats {
	text-transform: uppercase;
}

/* --------------------------------------------
	Forms
----------------------------------------------- */

/* Forms

    * FORM - Interactive form
          o BUTTON - Button
          o FIELDSET - Form control group
                + LEGEND - Fieldset caption
          o INPUT - Form input
          o LABEL - Form field label
          o SELECT - Option selector
                + OPTGROUP - Option group
                      # OPTION - Menu option
          o TEXTAREA - Multi-line text input
*/

fieldset {
	border: none;
	clear: both;
}

legend {
	display: none;
}

input.submit {			/* Ensure buttons behave the same across all browsers */
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;	/* Same as content. IE won't inherit the initial value */
	padding: 0 .25em;
    width: 0;  			/* IE width fix */
   	overflow: visible;
}

input.submit[class] {	/* IE ignores [class] (attribute selectors) */
   	width: auto;  		/* Cancel IE width fix for other browsers */
}

input[type=text]:focus, input[type=password]:focus, select:focus, textarea:focus {
}

textarea {
	font-family: Arial, Helvetica, sans-serif	/* Same as content. IE won't inherit the initial value */
}

option {
	padding-left: 2px;
	padding-right: 1px;
}





/* --------------------------------------------
	Phrase Elements
----------------------------------------------- */

/* Phrase Elements

    * ABBR - Abbreviation
    * ACRONYM - Acronym
    * CITE - Citation
    * CODE - Computer code
    * DFN - Defined term
    * EM - Emphasis
    * INS - Inserted text
    * KBD - Text to be input
    * SAMP - Sample output
    * STRONG - Strong emphasis
    * VAR - Variable
*/

acronym {
	border-bottom: 1px dashed;
	cursor: help;
}

cite {
	display: block;
	font-style: italic;
	margin-bottom: 1.28em;
	margin-top: -1.28em;
	text-align: right;
}


/* --------------------------------------------
	Font Style Elements
----------------------------------------------- */

/* Font Style Elements

    * SMALL - Small text
    * TT - Teletype text
*/




/* --------------------------------------------
	Frames
----------------------------------------------- */

/* Frames

    * FRAMESET - Frameset
          o FRAME - Frame
    * NOFRAMES - Frames alternate content
*/




/* -----------------------------------------------
     Glossary Styles
----------------------------------------------- */

/* For Use in the Print Stylesheet */

/*
a.no_glossary {display: none;}

a sup.glossary {
     color: #000;
	 font-family: "Courier New", Courier, monospace;
	 font-size: 10pt;
     font-style: italic;
     font-weight: normal;
     text-decoration: none;
     padding-left: 0.2em;
}

div.glossary {
     border-top: 1px solid #cad5f3;
     clear: both;
	 font-size: 130%;
     margin-top: 1.3em;
     padding-top: 1.3em;
     text-align: left;
}

.glossary hr {display: none;}

.glossary h2 {
	font-weight: bold;
	margin-bottom: 0.85em;
	margin-top: 0.1em;
}

.glossary ol {
    list-style-type: decimal;
	padding-left: 3em;
}
*/

/* -----------------------------------------------
     General Layout Styling
----------------------------------------------- */

#site_wrapper {
	color: #6a747c;
	margin: 0;
	width: 100%;
}

#site_wrapper .top_panel {
}

#site_wrapper .btm_panel {
}

#header_wrapper {
	width: 100%;
}

#content_wrapper {
	width: 100%;
}

/* -----------------------------------------------
     Header Section Styling
----------------------------------------------- */

#header_body {
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100&;
}

html >/**/ body #header_body {
	overflow: visible;
}

#header_body .header_top_panel {
	margin-top: 7px;
	width: 100%;
}

#header_body .header_btm_panel {
	width: 100%;
}

#header_body .header_left_col {
	display: none;
}

#header_body .header_right_col {
	display: inline;
	float: left;
	padding-bottom: 12px;
	width: 100%;
}

#header_body .header_right_col ul {
	list-style: none;
	overflow: hidden;
}

body >/**/ body #header_body .header_right_col ul {
	overflow: visible;
}

#header_body .header_right_col ul li {
	display: inline;
	float: left;
	margin-right: 12px;
	width: 132px;
}

#header_body .header_right_col ul li.last_node, #header_body .header_right_col ul.nav_products_hp li.last_node {
	margin-right: 0;
}

#header_body .header_right_col ul.nav_products_hp a.title_conveyorbelting, #header_body .header_right_col ul.nav_products_hp a.title_elevatorproducts, #header_body .header_right_col ul.nav_products_hp a.title_mechanicalfasteners, #header_body .header_right_col ul.nav_products_hp a.title_otherproducts {
	display: block;
	width: 132px;
}

#header_body .header_right_col ul.nav_products_hp a.title_conveyorbelting, #header_body .header_right_col ul.nav_products_hp a.title_elevatorproducts, #header_body .header_right_col ul.nav_products_hp a.title_mechanicalfasteners, #header_body .header_right_col ul.nav_products_hp a.title_otherproducts {
}

/* -----------------------------------------------
     Main Navigation Styling
----------------------------------------------- */

#header_body .header_left_col ul.nav_main {
	list-style: none;
	margin: 0;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

html >/**/ body #header_body .header_left_col ul.nav_main {
	overflow: visible;
}

#header_body .header_left_col ul.nav_main li {
	display: inline;
	float: left;
	width: 100%;
}

#header_body .header_left_col ul.nav_main a {
	border: none;
	display: block;
	padding-top: 3px;
	width: 100%;
}

#header_body .header_left_col ul.nav_main span {
	border: none;
	color: #004b8d;
	cursor: pointer;
	display: block;
	height: 1%;
	margin: 0 0 0.2em 0;
	overflow: hidden;
	padding: 5px 10px 8px 10px;
	text-decoration: none;
}

html >/**/ body #header_body .header_left_col ul.nav_main span {
	overflow: visible;
}

#header_body .header_left_col ul.nav_main a:hover {
	text-decoration: none;
}

#header_body .header_left_col ul.nav_main li a:hover span {
	color: #fff;
}

#header_body .header_left_col ul.nav_main a.current, #header_body .header_left_col ul.nav_main a:hover.current {
}

#header_body .header_left_col ul.nav_main span.current, #header_body .header_left_col ul.nav_main a:hover span.current {
	font-weight: bold;
	color: #fff;
}


/* -----------------------------------------------
     Content Section Styling
----------------------------------------------- */

#content_body {
	line-height: 175%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	width: 100%;
}

html >/**/ body #content_body {
	overflow: visible;
}

#content_wrapper .content_left_col {
	display: inline;
	float: right;
	font-size: 92%; /*11px*/
	width: 30%;
}

#content_wrapper .content_left_col li.hr {
	display: inline;
}

#content_wrapper .content_left_col hr {
	margin: 0;
}

html >/**/body #content_wrapper .content_left_col hr {
	margin: 4px 0 6px 0;
}

#content_wrapper .content_left_col h3 {
	font-weight: bold;
}

#content_wrapper .content_left_col ul {
	list-style: none;
}

#content_wrapper .content_right_col {
	display: inline;
	float: left;
	overflow: hidden;
	width: 65%;
}

html >/**/ body #content_wrapper .content_right_col {
	overflow: visible;
}

#content_wrapper .content_right_col h1.welcome, #content_wrapper .content_right_col h1.contactus, #content_wrapper .content_right_col h1.qualityassurance, #content_wrapper .content_right_col h1.products {
	height: 21px;
	margin: 0 0 1.28em 0;
	width: 480px;
}

#content_wrapper .content_right_col h1.welcome {
}

#content_wrapper .content_right_col h1.contactus {
}

#content_wrapper .content_right_col h1.qualityassurance {
}

#content_wrapper .content_right_col h1.products {
}

#content_wrapper .content_right_col p a.learn_more {
	padding-right: 20px;
}

#content_wrapper .content_right_col table.data tr td.img {
	vertical-align: middle;
}

/* -----------------------------------------------
     Contact Us Form Styling
----------------------------------------------- */

#content_body .content_right_col #contact {
	padding-bottom: 1.28em;
	overflow: hidden;
	width: 100%;

}

#content_body .content_right_col #contact {
	overflow: visible;

}

#content_body .content_right_col #contact span {
	display: block;
	float: left;
	margin-bottom: 1.28em;
	width: 100%;
}

#content_body .content_right_col #contact label {
	display: block;
	float: left;
	text-align: left;
	width: 120px;
}

#content_body .content_right_col #contact label strong {
	display: block;
	margin-top: 15px;
}

#content_body .content_right_col #contact sup {
	color: #004b8d;
	font-size: 110%;
}

#content_body .content_right_col #contact input.text {
	display: block;
	font-size: 100%;
	margin-left: 120px;
	width: 200px;
}

#content_body .content_right_col #contact select {
	display: block;
	margin-left: 120px;
	width: 200px;
}

#content_body .content_right_col #contact textarea.text {
	font-size: 100%;
	width: 202px;
}

#content_body .content_right_col #contact input.checkbox {
	margin-right: 142px;
}

#content_body .content_right_col #contact fieldset br {
	display: none;
}

#content_body .content_right_col #contact input.submit {
	color: #333;
	margin-left: 120px;
	width: 100px;
}

#content_body .content_right_col .prodCheckbox {
	display: inline;
	float: left;
	text-align: left;
	overflow: hidden;
	width: 564px;
}

html >/**/body #content_body .content_right_col .prodCheckbox {
	margin-bottom: 1.28em;
	overflow: visible;
}

#content_body .content_right_col .prodCheckbox p.prodCheckbox {
	display: inline;
	float: left;
	margin: 0;
	padding: 0;
	width: 185px;
}

#content_body .content_right_col #contact .prodCheckbox span {
	display: inline;
	margin-bottom: 0;
}

#content_body .content_right_col #contact .prodCheckbox label {
	width: 100%;
}

/* -----------------------------------------------
     Footer Styling
----------------------------------------------- */


#footer {
	display: none;
}
