@charset "UTF-8";
body {
	/* Adobe defaults */
/*	font: 100% Verdana, Arial, Helvetica, sans-serif; */
	font: 62.5% Verdana, Arial, Helvetica, sans-serif; /* 62.5% of a 16-pixel default produces 10px default font and a 10-pixel em */
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
.twoColHybLtHdr #container {
	/*	width: 80%;  /* this will create a container 80% of the browser width */
	width: 100%;
	height: 100%;
	min-height: 100%;
	min-width: 53em; /* 40em from .catalogflt width, 13em from #maincontent left-margin */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
/*	background-image: url(images/CSS/twoColHubLtHdr_Sidebar1.gif); */
	background-repeat: repeat-y;
}
.twoColHybLtHdr #header {
	/*	background: #DDDDDD; */
	background:#FFFFFF;
	padding-top: 0;
	padding-right: 1em;
	padding-bottom: 0;
	/* padding-left of 0 is for headers whose leftmost component is an image with a link to Web site root. */
	/* use 1em for pages in which top left of #header is not an image linked to Web site root */
	/* That will match the left alignment of the elements in the divs that appear beneath it. */
	padding-left: 0em;
}
.twoColHybLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColHybLtHdr #sidebar1 p" rule.
*/
@media screen{
.twoColHybLtHdr #sidebar1 {
	float: left;
	width: 14.2em; /* since this element is floated, a width must be given */
	/*	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*	background: #DDDDDD; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 45px 0 15px 0; /* top and bottom padding create visual space within this div  */
}
}
@media print {
.twoColHybLtHdr #sidebar1 {
	display:none;
}

}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

@media screen {
.twoColHybLtHdr #ivision_menu_div {
	display:block;
	margin-left: 14.2em;
	padding-top: 2em;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.twoColHybLtHdr #ivision_menu2_div {
	display:block;
	margin-left: 14.2em;
	margin-left: 0;
	padding-top: 2em;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
}
@media print {
.twoColHybLtHdr #ivision_menu_div, .twoColHybLtHdr #ivision_menu2_div {
	display:none;
}
}
/* Tips for mainContent:
1. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
@media screen {
.twoColHybLtHdr #mainContent {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 14.2em;
}
}
@media print {
.twoColHybLtHdr #mainContent {
	margin-top: 0;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 1em;
}
}

.twoColHybLtHdr #mainContent #catalog {
	margin: 0; /* catalog div must be contained within the mainContent div. */
}
.twoColHybLtHdr #mainContent #catalog img {
	float: left;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: auto;
	margin-right: 0;
	margin-bottom: auto;
	margin-left: 0;
	vertical-align: middle;
}
.twoColHybLtHdr #mainContent #catalog h1 {
	font-size: 1.6em;
	font-weight: bold;
	clear:none;
	padding-left: 1em;
}
.twoColHybLtHdr #mainContent #catalog p {
	padding-left: 1em;
}
/* HERE HERE HERE */
.twoColHybLtHdr #mainContent #catalogfloat {
	margin: 0; /* catalog div must be contained within the mainContent div. */
	width: 40em;
}
.twoColHybLtHdr #mainContent #catalogfloat img {
	float: right;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: auto;
	margin-right: 0;
	margin-bottom: auto;
	margin-left: 0;
	vertical-align: middle;
}
.twoColHybLtHdr #mainContent #catalogfloat h1 {
	font-size: 1.6em;
	font-weight: bold;
	clear:none;
	padding-left: 1em;
}
.twoColHybLtHdr #mainContent #catalogfloat p {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
}
/* HERE HERE HERE */

/* spec sheet starts */
div.specsheet-page-title { /* specsheet div must be contained within the mainContent div. */
	padding-left:1em;
/*	margin: 0; /* specsheet div must be contained within the mainContent div. */
/*	width: 60em;
*/
	width: 70em;
}

.specsheet-page-title h1 {
	font-size: 2em;
	font-weight: bold;
	clear:left;
	margin-top: 0.5em;
	margin-right: 10em;	
}

/* spec sheet starts */
/* group floated and non-floated items together within a specsheet-wrapper */
div.specsheet-wrapper {
	float:left;
}

div.specsheet { /* specsheet div must be contained within the mainContent div. */
	padding-left:1em;
/*	margin: 0; /* specsheet div must be contained within the mainContent div. */
/*	width: 60em;
*/
	width: 70em;
}


.specsheet img {
	float: left;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
	vertical-align: middle;
}

.specsheet-caption {
	clear:both;
	font-size: 0.8em;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 0.5em;
	margin-right: 0;
	margin-bottom: 0.5em;
	margin-left: 1em;
	vertical-align: middle;
}

.specsheet h1 {
	font-size: 2em;
	font-weight: bold;
	clear:none;
	margin-top: 2em;
	margin-right: 10em;	
}

.specsheet h2 {
	font-size: 1.6em;
	font-weight: bold;
	clear:none;
	margin-top: 2em;
	margin-right: 10em;	
}

.specsheet h3 {
	font-size: 1.4em;
	font-weight: bold;
	clear:none;
	margin-top: 2em;
	margin-right: 10em;	
}

.specsheet table {
	border-collapse:collapse;
	border: 1px solid #FFF;
}

.specsheet table.multipart2 {
/*
		border-spacing: 4px;
*/
}

.specsheet table.multipart tbody {
	border-width: 1px;
	border-top: 12px solid #FFF;
	border-bottom: 12px solid #FFF;
	padding-bottom: 20px;
}

.specsheet table.multipart2 tbody th {
	vertical-align: baseline;
	font-size: 1.6em;
	font-weight: bold;
	background-color: #fff;
	border: solid thin #fff;
	padding: 4px;
	color: black;
	padding-top: 1em;
}

.specsheet table.multipart2 tbody th p.interface, 
.specsheet table.multipart2 tbody th p.platform {
	font-size: 1em;
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right:0;
}

.specsheet table.multipart2 tbody th p.feature, 
.specsheet table.multipart2 tbody th p.benefit {
	font-size: 1em;
	font-weight: bold;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right:0;
	border:none;
}

.specsheet table.multipart2 tbody th p.multiple-paragraph {
	font-size: 1em;
	font-weight: bold;
}

.specsheet table.multipart2 tbody th p.multiple-paragraph-nomargin-top {
	font-size: 1em;
	font-weight: bold;
	margin:0;
	padding:0;
	
}



.specsheet table.multipart2 tbody td {
		vertical-align: baseline;
		font-size: 1.4em; background-color: #ccc; border: solid thin #fff;
		padding: 4px;
		color: black;
}

.specsheet table.multipart2 tbody td p.feature,
.specsheet table.multipart2 tbody td p.benefit {
		margin-right:0;
		margin-top:0.5em; margin-bottom:0.5em;
		vertical-align: baseline;
		font-size: 1em; background-color: #ccc; border: solid thin #fff;
		padding: 0px;
		border:none;
}



.specsheet table.multipart2 tbody td.subentry, .specsheet table.multipart2 tbody tr td.subentry {
		padding-left: 1.5em;
}

.specsheet table.multipart2 tbody td.subentry p.multiple-paragraph, .specsheet table.multipart2 tbody tr td.subentry p.multiple-paragraph {
	margin-right:0;
	font-size: 1em;
}



/* for tables, div to to indicate that product is new */
/* requires a column of cells for this div */
.specsheet table tr td div.new {
	height:42px;
	width: 50px;
	color: #000;
	background-repeat:no-repeat;
	background-position:bottom left;
	background-image:url(resources/ccd/new.gif);
	color: #C0C0C0;
}

/* for tables, div to put in a cell to indicate that product is not new */
.specsheet table tr td div.not_new {
	height:42px; 
	width: 50px; 
	color: #000; 
	background-repeat:no-repeat; 
	background-position:bottom left; 
	background-image:url(resources/ccd/1x1_white_pixel.jpg);
}


/* second try for tables, div to put in a cell to indicate that product is new */
/* mark the leftmost cell of the item, the graphic starts the left of the cell */
/* problem: if cell contents are not aligned with top of cell, this style */
/* shifts them up */
.specsheet table tr td div.new2 {
	padding-left:60px;
	height:42px;
	color: #000; 
	background-repeat:no-repeat; 
	background-position:bottom left; 
	background-image:url(resources/ccd/new.gif);
}

.specsheet th {
	padding: 0.5em;
	font-size: 1.4em;
	font-weight: bold;
	text-align: left;
}

.specsheet td {
	padding: 0.5em;
	font-size: 1.2em;
	font-weight: normal;
}

.specsheet table.multipart th {
	padding: 0.1em 0.5em;
	vertical-align:top;
	font-size: 1.4em;
	font-weight: bold;
	text-align: left;
}

.specsheet table.multipart td {
	padding: 0.1em 0.5em;
	vertical-align:top;
	font-size: 1.2em;
	font-weight: normal;
}


.specsheet p, .specsheet li {
	font-size: 1.4em;
	clear: none;
	margin-right: 10em;	
}

.specsheet li li {
	font-size: 1.0em;
	clear: none;
	margin-right: 0;	
}




div.specsheet-trademark {
	padding-left:1em;
/*	margin: 0; /* specsheet div must be contained within the mainContent div. */
/*	width: 60em;
*/
	width: 70em;
}

.specsheet-trademark p, .specsheet-trademark li {
	font-size: 1em;
	clear: both;
	margin-right: 10em;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}


div.specsheet-image {
/*	float: left;
*/	margin-right: 8px;
	padding-right: 1em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 8px;
	vertical-align: middle;
	width: 228px;
	clear: none;
}

div.specsheet-image img {
	clear:both;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 1.5em;
	margin-right: 8px;
	margin-bottom: 1em;
	margin-left: 8px;
	vertical-align: middle;
}

div.specsheet-image h3 {
	margin-top: 3em;
	margin-bottom: 0.5em;
}

div.specsheet-image p {
	font-size: 1em;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 0.5em;
	margin-right: 0;
	margin-bottom: 0.5em;
	margin-left: 1em;
	vertical-align: middle;
}

div.specsheet-image-wide {
/*	float: left;
*/	margin-right: 8px;
	padding-right: 1em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 8px;
	vertical-align: middle;
	width: 314px;
	clear: none;
}

div.specsheet-image-really-wide {
/*	float: left;
*/	margin-right: 8px;
	padding-right: 1em;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 8px;
	vertical-align: middle;
	width: 704px;
	clear: none;
}

div.specsheet-image-wide img, 
div.specsheet-image-really-wide img {
	clear:both;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 1.5em;
	margin-right: 8px;
	margin-bottom: 1em;
	margin-left: 8px;
	vertical-align: middle;
}

div.specsheet-image-wide h3,
div.specsheet-image-really-wide h3  {
	margin-top: 3em;
	margin-bottom: 0.5em;
}

div.specsheet-image-wide p,
div.specsheet-image-really-wide p {
	font-size: 1em;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 0.5em;
	margin-right: 0;
	margin-bottom: 0.5em;
	margin-left: 1em;
	vertical-align: middle;
}
div.specsheet-image-wide p.full-size-caption,
div.specsheet-image-really-wide p.full-size-caption  {
	font-size: 1.4em;
}
/* spec sheet ends */

/* thumbselect: page of menus */
div.thumbselect { /* thumbselect div must be contained within the mainContent div. */
	width: 30em;
	padding-left:1em;
	margin-top: 2em;
	margin-bottom: 2em;

}

div.thumbselect select {
	width: 22em;
}

div.thumbselect img {
	float: none;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
	vertical-align: middle;
	
}

div.thumbselect p {
	text-align: center;	
}

/* HOOM HOOM HOOM */
.catalogflt-closed {
/*	margin: 0; /* catalog div must be contained within the mainContent div. */
/*	width: 40em; */
}
.catalogflt-closed select {
	width: 22em;
}

.catalogflt-closed img {
	float: right;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
	vertical-align: middle;
}
/* images that function as part of body text */
.catalogflt-closed img.bodyimage {
	float: left;
	margin-left: 1em;
}

.catalogflt-closed h1 {
	font-size: 1.6em;
	font-weight: bold;
	clear:none;
	padding-left: 1em;
}

.catalogflt-closed h2 {
	font-size: 1.6em;
	font-weight: bold;
	clear:none;
	padding-left: 1em;
}

.catalogflt-closed h3 {
	font-size: 1.4em;
	font-weight: bold;
	clear:none;
	padding-left: 1em;
}

.catalogflt-closed p, .catalogflt-closed li {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
}

/* for contacts page */
.catalogflt-closed div.balloon {
}

.catalogflt-closed div.balloon p {
	font-size: 2em;
	font-weight: bold;
	padding-left: 0;
}

.catalogflt-closed div.location p {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0;
}

/* HOOM HOOM HOOM */

/* on home page and Macintosh page are many catalogflt elements that float below a "balloon" */
/* that applies to all the elements. The second balloon (and catalogflt elements) float below the sidebar unless prevented from doing so. */
/* To prevent them from doing so, enclose the balloon and catalogflt elements all within a catalogflt-block div */
div.catalogflt-wide-block {
	width:100%; 
	overflow:hidden; 
	margin-left:0.8em; 
	margin-right:0.8em;
}


div.catalogflt-block {
	width:100%; 
	overflow:hidden; 
	margin-left:0.8em; 
	margin-right:0.8em;
}

.catalogflt {
/*	margin: 0; /* catalog div must be contained within the mainContent div. */
	width: 40em;
}
.catalogflt select {
	width: 22em;
}

.catalogflt img {
	float: right;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
	vertical-align: middle;
}
/* images that function as part of body text */
.catalogflt img.bodyimage {
	float: left;
	margin-left: 1em;
}

.catalogflt h1 {
	font-size: 1.6em;
	font-weight: bold;
	clear:none;
	padding-left: 1em;
}

.catalogflt h2 {
	font-size: 1.6em;
	font-weight: bold;
	clear:none;
	padding-left: 1em;
}

.catalogflt h3 {
	font-size: 1.4em;
	font-weight: bold;
	clear:none;
	padding-left: 1em;
}


.catalogflt p, .catalogflt li {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
}

/* for contacts page */
.catalogflt div.balloon {
}

.catalogflt div.balloon p {
	font-size: 2em;
	font-weight: bold;
	padding-left: 0;
}

.catalogflt div.location p {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0;
}

.catalogflt div.location div.country p {
	margin-bottom: 0.5em;
}

.catalogflt div.contact {
	margin-bottom:1.4em;
}
.catalogflt div.contact img {
	float: right;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 2.2em;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
	vertical-align: middle;
}
.catalogflt div.contact p {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0;
}

/* for events page */
.catalogflt div.event {
	padding-top: 1em;
	padding-bottom: 1em;
}
	
.catalogflt div.event img {
	float: right;
	margin-right: 8px;
	padding-right: 1em;
	margin-top: 2.2em;
	margin-right: 0;
	margin-bottom: 1em;
	margin-left: 0;
	vertical-align: middle;
}
.catalogflt div.event h1 {
	font-size: 1.6em;
	font-weight: bold;
	clear:none;
	padding-left: 0.875em;
	margin-bottom:0;
}

.catalogflt div.event p {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0;
}
.catalogflt div.event div.city p {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0;
}

.catalogflt div.event div.dates {
	padding-bottom: 1em;
}
.catalogflt div.event div.dates p {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0;
}

catalogflt div.booth {
	padding-top: 1em;
	padding-bottom: 1em;

}
.catalogflt div.event div.booth p {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0;
}

.catalogflt div.items_on_display {
	padding-top: 1em;
	padding-bottom: 1em;
}

.catalogflt div.event div.items_on_display ul li p {
	font-size: 1.0em;
	clear: none;
	padding-left: 1em;
}

.catalogflt div.event div.items_on_display p {
	font-size: 1.4em;
	clear: none;
	padding-left: 1em;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 0;
}
/* end of events page */


/* visually significant label that is not important for document organization or navigation */
.balloon {
}

.balloon p {
	font-size: 2em;
	font-weight: bold;
}

/* HERE HERE HERE */

.twoColHybLtHdr #footer {
	background:#FFFFFF;
/*	background-image: url(images/CSS/twoColHubLtHdr_Sidebar1.gif); */
	background-repeat: repeat-y;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 13em;
}
.twoColHybLtHdr #footer td {
	padding: 0 1em 0 0;
}
.twoColHybLtHdr #footer ul {
	margin:0;
	padding:2em 0 2em 0;
}
.twoColHybLtHdr #footer ul li {
	margin:0;
	padding:0px 4em 0px 0px;
	list-style-type: none;
	position: relative;
	float:left;
	font-size: 1.2em;
	width: auto;
	font-weight: bold;
	list-style-position: inside;
}
.twoColHybLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}





div.sitemap {
	overflow:hidden;
	float:none;
	font-style: normal;
	font-size: 16px;
}
div.sitemap ul {
	list-style:none;
	margin:0;
	padding:0;
}
div.sitemap li {
	background-color:#eee;
	float:left;
	margin:0 0 -0.1em;
	min-height:1em;
	padding:.2em .4em;
	position:relative;
	width:9em;
}
div.sitemap ul ul {
	font-size:90%;
	margin-top:-1.4em;
}
div.sitemap ul ul li {
	background:#ddd;
	border-top:0.5em solid #fff !important;
	border-left:0.5em solid #66c;
	left:10.4em;
}
div.sitemap ul ul ul li {
	background:#ccc;
	border-color:#9c3;
}
div.sitemap ul ul ul ul li {
	background:#bbb;
	border-color:#c93;
}
div.sitemap ul ul ul ul ul li {
	background:#999;
	border-color:#c33;
	color:#fff;
}


/* mark Sulfuric Acid as <span class="chemical-formula">H<sub>2</sub>SO<sub>4</sub></class> */
.chemical-formula {
	font-size: 1em;
}

.chemical-formula sub {
	position: relative;
	top: 0.2em;
	font-size: 0.8em;
	line-height: .5;
}

.registered-trademark-sign,.superscript {
	position: relative;
	top: -0.5em;
	font-size: 0.8em;
}

.foreign-language {
	font-style:italic;
}

.reference-list-publication-title {
	font-style:italic;
	font-weight:normal;
}



/* Miscellaneous classes for reuse */
.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: 0.8em;
	margin-right: 0.8em;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-left: 0.8em;
	margin-right: 0.8em;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.nowrap { /* no line-wrapping other than indicated by means of a <br> tag */
	white-space: nowrap;
}

@media print {
	.noprint {
		display:none;
	}
}

