@charset "UTF-8";
/* CSS Document */

*{
	padding:0;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}

body{
	background:#fff;
}
h1{
	font-size:36px;
	color:#6e7b6e;
	padding:0 0 25px 0;
	font-weight:normal;
	line-height:34px;
}
h2{
	font-size:16px;
	color:#6e7b6e;
	padding:5px 0 10px 0;
}
h3{
	font-size:12px;
	color:#6e7b6e;
	padding:0 0 10px 0;
}
p{
	font-size:12px;
	line-height:18px;
	padding:0 0 7px 0;
}
/*========================= TOP OF THE navigation CASCADE =========================*/
.navcontainer{
	height:60px;
	background:#a9ce5a;
	width:100%;
}
.navigation {
	position:relative;        /* establish a navigation-relative positioning context */
	margin:0 auto;
	padding:0;
	border:0;
	height:60px;                                  /* the navigation's overall height */
	width:900px; /* we always want our navigation to fill the available space */
	font-family: Arial, Helvetica, sans-serif;
	font-size:16px;         /* this (and also below) sets the navigation's font size */
	z-index:2;
	/*background:url(../images/navbkgd.gif) 0 0 repeat-x #fff;NEW*/
	/*float:left; play nicely with others */
}

.navigation ul {
	padding:0;
	margin:0;
	border:0;
	float:left;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:60px;           /* globally set the navigation's item spacing. note */
	width:900px;
	height:60px;
	border-left: 1px solid white;
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.navigation li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
	padding:0; /*NEW*/
}

.navigation ul li table {
	margin:-1px 0;              /* IE5 needs -1px top and bottom table margins */
	m\argin:0;               /* re-zero the table margins for everyone but IE5 */
	border-collapse:collapse;      /* IE5 needs this for the sub-navigations to work */
	font-size:14px;        /* this sets the base font size for our entire navigation */
}

.drop {
	display:block;
	padding:0px 0.33em;	       /* this sets the l/r margins for our navigation item */
	margin:0;
	text-align:right;   /* this right alignment goes with the float:left below */
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
	cursor:hand;           /* IE5 only knows about "hand", so set it both ways */
}

.drop span {        /* this simultaneously left and right aligns the text and */
	float:left;       /* the >> in the drop-down navigations which link to sub-navigations */
}

/*======================== TOP LEVEL navigation DEFINITIONS ========================*/

.navigation ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
	/*padding:1px;*/                               /* this is our box border width */
	padding:0;/*NEW*/
}

.navigation ul li a,
.navigation ul li a:visited {
	padding:0 25px;
	display:block;
	float:left;
	text-decoration:none;
	height:60px;
	line-height:60px;/*NEW*/
	color:#000;
	border-right:1px solid #fff;
	font-family:Arial, Helvetica, sans-serif;
}
.navigation ul li a.contact,
.navigation ul li a.contact:visited{
	float:left;
	text-align:center;
	font-size:26px;
	display:block;
	line-height:60px;
	border:0;
	padding:0 25px;
}
.navigation ul li a.last{ /*NEW*/
	border:0;
}

.navigation ul li:hover a,
.navigation ul li a:hover {                        /* selected top-level navigation items */
	/*border-top:2px solid #FC0;     these 2 lines create the push-in illusion */
	height:60px;
	background:#97bf43;
}

/*======================== 2ND LEVEL navigation DEFINITIONS ========================*/

.navigation ul li:hover ul,
.navigation ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	margin:0;
	top:59px;              /* place us just up underneath the top-level */
	left:-1px;       /* left-align our drop-down to the previous button border */
	height:auto;      /* the drop-down height will be determiend by line count */
	width:225px;
	color:#000;                        /* this sets the unselected-text color */
	background:#97bf43;         /* this sets our navigation's effective "border" color */
	font-size:16px;
	z-index:3;
}

.navigation ul li:hover ul.leftbutton,
.navigation ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}

.navigation ul li:hover ul.skinny,
.navigation ul li a:hover ul.skinny {             /* 2nd level skinny drop-down box */
	width:8.08333em;   /* with a 12px default font, this is 97px width (97/12) */
}

.navigation ul li:hover ul li a,
.navigation ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:0 5px;
	height:30px;
	line-height:30px;
	color:#000;               /* this sets the unselected drop-down text color */
	background:#97bf43;       /* this sets the drop-down navigation background color */
	width:225px;
	-border-top: 1px solid white;
}

.navigation ul li:hover ul li:hover a,
.navigation ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:#000;
	background:#a9ce5a;
	height:30px;
}

.navigation ul li:hover ul.skinny li a,
.navigation ul li a:hover ul.skinny li a,
.navigation ul li:hover ul.skinny li a:hover,
.navigation ul li a:hover ul.skinny li a:hover {     /* 2nd level un+selected items */
	width:8.08333em;
}

/*======================== 3RD LEVEL navigation DEFINITIONS ========================*/

.navigation ul li:hover ul li ul,
.navigation ul li a:hover ul li a ul {             /* hide inactive 3rd-level navigations */
	visibility:hidden;
}
     
.navigation ul li:hover ul li:hover ul,
.navigation ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box */
	visibility:visible;
	position:absolute;
	margin-top:-1px;	      /* bring the top edge of the 3rd level navigation up one */
	top:0;
	left:8.08333em;
	width:14em;
}

.navigation ul li:hover ul li:hover ul li a,
.navigation ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	width:14em;
	background:purple;
	color:fuchsia; /*pink*/
}

.navigation ul li:hover ul li:hover ul li a:hover,
.navigation ul li a:hover ul li a:hover ul li a:hover {    /* level3 selected items */
	width:14em;
	background:black;
	color:green;
}
/*======================== Contact Button ========================*/
#benefitsnavigation{
	width:199px;
}
	#benefitsnavigation ul{
		width:199px;
		list-style:none;
		padding:5px 0 0 0;
	}
		#benefitsnavigation li{
			width:199px;
			height:35px;
			padding:0 0 5px 0;
		}
		#benefitsnavigation li a{
			display:block;
			height:35px;
			font-size:14px;
			text-indent:-5000px;
			background:url(../images/sidenav.gif) no-repeat;
		}
		#benefitsnavigation li a#envben{
			background-position:0 0;
		}
		#benefitsnavigation li a#envben:hover{
			background-position:0 -35px;
		}
		#benefitsnavigation li a#ecoadv{
			background-position:0 -77px;
		}
		#benefitsnavigation li a#ecoadv:hover{
			background-position:0 -112px;
		}
		#benefitsnavigation li a#quaimp{
			background-position:0 -155px;
		}
		#benefitsnavigation li a#quaimp:hover{
			background-position:0 -190px;
		}
#msdsnavigation{
	width:199px;
}
	#msdsnavigation ul{
		width:199px;
		list-style:none;
		padding:5px 0 0 0;
	}
		#msdsnavigation li{
			width:199px;
			padding:0 0 2px 0;
		}
		#msdsnavigation li a{
			display:block;
			text-indent:-5000px;
			background:url(../images/msdsnav.gif) 0 0 no-repeat;
			height:23px;
			width:152px;
		}
		#msdsnavigation li a.melite{
			background-position:0 0;
		}
		#msdsnavigation li a.melite:hover{
			background-position: 0 -23px;
		}
		#msdsnavigation li a.gypsum{
			background-position:0 -46px;
		}
		#msdsnavigation li a.gypsum:hover{
			background-position: 0 -69px;
		}
		#msdsnavigation li a.ironpyrite{
			background-position:0 -92px;
		}
		#msdsnavigation li a.ironpyrite:hover{
			background-position: 0 -115px;
		}
		#msdsnavigation li a.ironchromite{
			background-position:0 -138px;
		}
		#msdsnavigation li a.ironchromite:hover{
			background-position: 0 -161px;
		}
		#msdsnavigation li a.calumiteslag{
			background-position:0 -184px;
		}
		#msdsnavigation li a.calumiteslag:hover{
			background-position: 0 -207px;
		}
#benefitsnavigation h2, #msdsnavigation h2{
	padding:5px;
	font-size:12px;
	line-height:14px;
	color:black;
	background:#99cc66;
	width:190px;
	font-weight:bold;
}
	#benefitsnavigation h2 span, #msdsnavigation h2 span{
		font-size:14px;
		line-height:16px;
	}
.leftcolumn
{
    float:left;
    width:200px;    
}
.rightcolumn{
	width:680px;
	float:left;
	padding:0 0 0 20px;
	position:relative;
	z-index:2;
}
.rightcolumn a, .homerightcolumn a {
	color:#095567;
	font-weight:bold;
}
.rightcolumn ul, .homerightcolumn ul {
	padding:7px 0;
	margin:0 0 0 25px;
	font-size:12px;
	line-height:18px;
}
.rightcolumn ol, .homerightcolumn ol{
	padding:7px 0 15px 0;
	margin:0 0 0 25px;
	font-size:12px;
	font-weight:bold;
	color:#033;
}
	.rightcolumn ul li, .rightcolumn ol li, .homerightcolumn ul li, .homerightcolumn ol li {
		padding:3px 0 0 0;
		margin:0;
	}
	.rightcolumn ol p{
		font-size:12px;
		color:black;
		padding:0;
		margin:0;
		font-weight:normal;
	}
.rightcolumn ul.labspecs{
	list-style:none;
	height:26px;
	padding:10px 0;
	margin:0;
}
	.rightcolumn ul.labspecs li{
		float:left;
		height:26px;
		padding:0;
		margin:0;
	}
	.rightcolumn ul.labspecs li a{
		background:#333;
		font-size:14px;
		color:white;
		padding:0 10px;
		border:1px solid white;
		display:block;
		line-height:24px;
	}
	.rightcolumn h2 sub, .homerightcolumn h2 sub, .table h2 sub{
		font-size:14px;
		line-height:0px;
	}
	.rightcolumn p sub, .homerightcolumn p sub, .table .tab_content sub, .table ul li sub{
		font-size:10px;
		line-height:0px;
	}
.clear{
	clear:both;
}
.header{
	background:url(../images/CalumiteHmPgFNLheader2_02.jpg) #00877a repeat-x;
	width:100%;
}
.header .logo{
	margin:0 auto;
	width:814px;
	height:145px;
	padding:0 43px;
}
.maincontent{
	width:900px;
	margin:0 auto;
	padding:5px 0 0 0;
}
.headerimage{
	/*min-height:145px;
	height:auto !important;
	height:145px;*/
	padding:5px 0 0 0;
	margin:0 auto;
	width:900px;
}
.homeimage{
	width:900px;
	padding:145px 0 0 0;
	display:block;
	position:relative;
}
.homeimage img{
	position:absolute;
	top:0;
	left:0;
	z-index:1;
}
.homerightcolumn{
	width:450px;
	float:right;
	padding:25px 0 0 0;
	position:relative;
	z-index:2;
	text-align:justify;
}
    .homerightcolumn h1{
	    text-align:right;
	    font-size:40px;
	    line-height:42px;
	    padding:0 0 15px 0;
    }
.homesubcolumn
{
    width:450px;
    float:left;
    padding-top:70px; 
}
    .homesubcolumn div{
        float:left;
        padding-right:15px;
    }
.figure{
	padding:0 10px 10px 0;
	float:left;
}
.figureright{
	padding:0 0 10px 10px;
	float:right;
}
.levylogo{
	width:900px;
	margin:0 auto;
	clear:both;
}
	.levylogo img{
		float:right;
		padding:20px;
		border:0;
	}
.footer{
	width:100%;
	height:100%;
	background:#008779;
	padding:15px 0 20px 0;
	color:#a3a0a0;
	clear:both;
}
.footer p a{
	padding:0 10px;
	color:#a3a0a0;
	text-decoration:none;
	font-size:12px;
}
.footer p{
	clear:both;
	font-size:12px;
	text-align:center;
	padding:0 0 10px 0;
}
.map{
	height:350px;
	width:435px;
	float:left;
}
/*Tables*/
.table{
	width:681px;
	font-size:12px;
}
.table h2{
	font-size:12px;
	color:black;
	padding:10px 0 10px 10px;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}
.table .tables h2{
	font-size:12px;
	color:black;
	padding:10px 0;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}
.table ul{
	width:200px;
	font-size:12px;
	font-weight:bold;
	color:black;
	list-style:none;
	padding:0;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}
.table.content ul{
	width:400px;
	font-size:12px;
	font-weight:bold;
	color:black;
	list-style:none;
	padding:0;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}

.table ul li{
	padding:0 0 2px 0;
	margin:0;
	border-bottom:1px solid #fff;
	background-color:#b7b6ac;
}
.table ul li a{
	padding:5px 0 5px 25px;
	color:black;
	text-decoration:none;
	background:url(../images/greenbullet_10.gif) 5px 5px no-repeat;
	display:block;
}
.table ul li a:hover{
	background-color:#c8c7ba;
}
.table ul li.active{
	background-color:#c8c7ba;
}
.table .tableblock{
	width:481px;
	float:right;
	/*padding:27px;*/
	margin:0;
	/*background:#c8c7ba;*/
	font-family:Arial, Helvetica, sans-serif;
}
/* Mikes Changes */
.m_content{
	width:681px;
	font-size:12px;
}
.m_content h2{
	font-size:12px;
	color:black;
	padding:10px 0 10px 10px;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}
.m_content .tables h2{
	font-size:12px;
	color:black;
	padding:10px 0;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}
.m_content ul{
	width:400px;
	font-size:12px;
	font-weight:bold;
	color:black;
	list-style:none;
	padding:0;
	margin:0;
	font-family:Arial, Helvetica, sans-serif;
}
.m_content ul li{
	padding:0 0 2px 0;
	margin:0;
	border-bottom:1px solid #fff;
	background-color:#b7b6ac;
}
.m_content ul li a{
	padding:5px 0 5px 25px;
	color:black;
	text-decoration:none;
	background:url(../images/greenbullet_10.gif) 5px 5px no-repeat;
	display:block;
}
.m_content ul li a:hover{
	background-color:#c8c7ba;
}
.m_content ul li.active{
	background-color:#c8c7ba;
}
.m_content .tableblock{
	width:481px;
	float:right;
	/*padding:27px;*/
	margin:0;
	/*background:#c8c7ba;*/
	font-family:Arial, Helvetica, sans-serif;
}


/*NEW*/
.table .tableblock .tables {
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
}
/*NEW*/
/*.table .tableblock .tables{
	width:481px;
}*/
.table .tableblock .tables div{
	width:427px;
	padding:27px;
	background:#c8c7ba;
	min-height:400px;
	height:auto !important;
	height:400px;
}
.table .tableblock .tables div.clear{
	width:427px;
	padding:0;
	min-height:1px;
	height:auto !important;
	height:1px;
}
.table .tableblock table td{
	font-family:Arial, Helvetica, sans-serif;
	padding:4px;
}
.table .tableblock table .tablehead {
	font-size:12px;
	font-weight:bold;
	color:white;
	background:#07424b;
	text-align:center;
}
.table .tableblock table .productrow {
	font-size:12px;
	font-weight:bold;
	color:white;
	background:#0a798a;
}
.table .tableblock table .date {
	font-size:12px;
	font-weight:bold;
	color:white;
	background:#075763;	
}
.table .tableblock table .chemanalysis {
	font-size:12px;
	font-weight:bold;
	color:white;
	background:#8d8d8d;	
	text-align:center;
	border-right:1px solid #c8c7ba;
	width:204px;
}
.table .tableblock table .screenanalysis {
	font-size:12px;
	font-weight:bold;
	color:white;
	background:#8d8d8d;	
	text-align:center;
	border-left:1px solid #c8c7ba;
	width:204px;
}
.table .tableblock table .row td {
	width:98px;
}
.table .tableblock table .alternate {
	background:#a8a8a2;
}
.table .tableblock table .total {
	background:#26957d;
	font-weight:bold;
	color:white;
}
.table .tableblock table .oxcorr {
	background:#02836a;
	font-weight:bold;
	color:white;
}
.table .tableblock table .corrtotal {
	background:#009478;
	font-weight:bold;
	color:white;
}
.table .tableblock table .remarks td {
	font-size:11px;
	padding:10px;
}
/*END TABLES*/
