@charset "utf-8";
/* CSS Document */



/*common css*/
*
{
   margin:0px;padding:0px;
}

a,img
{
  outline:none;border:none;	text-decoration:none;
}
body
{
	background-image:url(../images/index-bg.jpg);
	background-repeat:repeat-x;
	height:100%;
	font-family:calibri;line-height:18px;	
}

.color
{
   color:#0c9977;	
}
.clear
{
	clear:both;
}
.container_text
{
  font-family:calibri;font-size:15px;line-height:18px;	color:#666666;
}

.container_subheading
{
  font-family:calibri;font-size:19px;line-height:18px;	font-weight:bold;color:#666666;
}

#margin_top
{
  margin-top:6px;	
}
.mt14
{
	margin-top:14px;
}
.mt18
{
	margin-top:18px;
}
.mt1
{
	margin-top:8px;
}
.container_heading
{
  font-family:calibri;font-size:22px;line-height:18px;	font-weight:bold;color:#333333;
}

.main_container
{
   width:100%;height:auto;margin:0 auto; 
}
#button2 {
  background: #0c9977;
  border: 2px solid #eee;
  height: 38px;
  width: 118px;
  margin: 0px 0 0 0px;
  overflow: hidden;
  display: block;
  text-align: center;
  line-height: 38px;
  -webkit-border-radius: 10px;
 -moz-border-radius: 10px;
 border-radius: 10px;color:#fff;font-weight:bold;
  
 /*Gradient*/
 background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
 background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
 background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
 background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
 background-image: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
  
 /*Shadow*/
 -webkit-box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.2);
 -moz-box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.2);
 box-shadow: 0px 3px 1px rgba(0, 0, 0, 0.2);
 
 /*Transition*/
-webkit-transition: All 0.5s ease;
-moz-transition: All 0.5s ease;
-o-transition: All 0.5s ease;
-ms-transition: All 0.5s ease;
transition: All 0.5s ease;

}
#button2:hover {
  background-color: #FFF;color:#0c9977;  
 }

/*button4*/
    #button4 {
  background: #0c9977;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.3);
  color:#FFF;
  height: 30px;
  width: 60px;
  margin: 15px 0 0 0px; 
  display: block;
  text-align: center;
  line-height: 30px;
  transition:background-color 1s ease;
  border:1px solid #0c9977;
  
  /*Rounded Corners*/
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
   border-radius: 5px;
	}

#button4:hover {
  
}
/*end button*/
/*end common css*/

/* index page css*/

.index_container
{
     width:960px; margin:0 auto;height:auto; position:relative;
}
.header_nt
{
  width:100%;height:100px;margin:0 auto;text-align:right;font-size:18px;
}
.logo
{
	width:auto;float:left;margin-top:18px;
}

.menu_container
{
	float:right;
	width:auto;
	height:40px;	
	margin-top:36px;
	
}


/* Menu */
.menu {
	height: 40px;
	width: 100%;
	background-color:#333333;		
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;	
		
}

.menu li {
	list-style: none;
	float: left;
	display: block;
	height: 40px;
	position: relative;
}

/* Links */
.menu li a {
	display: block;
	text-decoration: none;
	font-weight: bold;
	color: #FFF;
	font-size: 15px;
	padding: 0 15px;
	margin: 5px 0;
	line-height: 30px;
	border-left: 1px solid #393942;
	border-right: 1px solid #393942;	
	transition: color .3s ease;
	-moz-transition: color .3s ease;
	-webkit-transition: color .3s ease;
	-ms-transition: color .3s ease;	
}

.menu li:hover > a { color: #0c9977; }
.menu li.select > a { color: #0c9977; }

/* Sub Menu */
.menu ul {
	position: absolute;
	opacity: 0;
	background: #333333;
	z-index:999;
	text-align:center;		
	margin-left:-40px;			
	transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-webkit-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	padding:0px;
	border-bottom-left-radius:8px;border-bottom-right-radius:8px;
		
}

.menu li:hover > ul {
	opacity: 1;
}

.menu ul li {
	height: 0;
	overflow: hidden;
	padding: 0;
}

.menu li:hover > ul li {
	height: auto;
	overflow: visible;
}

.menu ul li a {
	min-width:150px;
	max-width:200px;
	margin: 0;
	padding: 5px 15px;
	border: none;
	border-bottom: 1px solid #353539;	

}
.menu ul li:last-child a { border: none; }

.index_content
{
	width:960px;margin:0 auto;background-color:#fff; height:auto; 
	-moz-box-shadow:inset 0 0 8px #000000;-webkit-box-shadow: inset 0 0 8px #000000; box-shadow:inset 0 0 8px #000000;
	margin-top:3px;	
}
.index_inner_content
{
	width:900px;margin:0 auto;height:1500px; padding-top:30px;
}
.banner
{
	width:100%;margin:0 auto;height:395px;
}
.banner_bottom_container
{
 width:900px;margin:0 auto;height:122px;margin-top:8px;border:1px solid #FFF;background-image:url(../images/banner_bottom_img.png);
 background-repeat:no-repeat; 	
}
.banner_bottom_subcontainer
{
	width:840px;margin:0 auto;height:60px;margin-top:30px;
}
.inner_div1
{
  float:left;width:710px;height:auto;	margin-top:5px;
}
.inner_div2
{
	float:left;width:128px;height:auto;	
}
.index_products
{
  width:900px;margin:0 auto;height:362px;background-image:url(../images/products-bg1.jpg);background-repeat:no-repeat;
  clear:both;margin-top:8px;	
}
.index_products_div1
{
  float:left;width:223px;height:100%;position:relative;margin:0 auto; 
}
.products_div1_text
{
  width:203px; position:absolute;bottom:5px;height:195px;margin:0 auto;left:14px;text-align:center;
}
.index_products_div2
{
  float:left;width:223px;height:100%;	position:relative;margin:0 auto;
}
.products_div2_text
{
  width:202px; position:absolute;bottom:5px;height:195px;margin:0 auto;left:12px;text-align:center;	
}
.index_products_div3
{
  float:left;width:220px;height:100%;position:relative;margin:0 auto;
}
.products_div3_text
{
  width:202px; position:absolute;bottom:5px;height:195px;margin:0 auto;left:14px;text-align:center;	
}
.index_products_div4
{
  float:left;width:230px;height:100%;position:relative;margin:0 auto;
}
.products_div4_text
{
  width:212px; position:absolute;bottom:5px;height:195px;margin:0 auto;left:8px;text-align:center;	
}
.index_carosel
{
   width:900px;margin:0 auto;height:auto;margin-top:18px; clear:both;
}
.nt_info
{
	width:900px;margin:0 auto;height:auto;margin-top:25px;
}
.aboutus
{
	width:380px;height:auto;float:left;
}
.abt-text
{
	float:right;width:305px;margin-top:4px; 
}
.readmore
{
	color:#0c9977;font-style:italic;
}
.index_map
{
    width:500px;height:auto;float:right;
}

.go-top {
	position: fixed;
	bottom: .0em;
	right: 2em;
	text-decoration: none;
	/*color: white;
	background-color: rgba(0, 0, 0, 0.3);*/
	font-size: 12px;
	padding: .1em;
	display: none;border-radius:10px;
	z-index:9999;
}

   /*end index page css*/



/*************************************contactus page css*****************************************************/

.contact_container
{
     width:960px; margin:0 auto;height:auto;  position:relative; 
}

.contact_content
{
	width:960px;margin:0 auto;background-color:#fff; height:auto; 
	-moz-box-shadow:inset 0px 10px 10px -8px #000000;-webkit-box-shadow: inset 0px 0px 8px #000000;
	 box-shadow:inset 0px  0px  8px #000000;
	margin-top:3px;	padding-bottom:18px;
}
.contact_inner_content
{
	width:900px;margin:0 auto;height:auto; padding-top:30px;
} 
.contactus-info
{
	width:325px; height:460px;margin:0 auto;border-right:1px solid #999999;float:left;margin-left:35px;
}
.contact_form
{
	width:450px; height:460px;margin:0 auto;float:left;margin-left:50px;
}
.form
{
	margin-top:17px;line-height:16px;
}
.form div
{
	margin-top:15px;	
}
label {
font-weight:bold;
width: 125px;
float: left;
}


input:focus { 
box-shadow: 0 0 6px 0px #0c9977;
}

input 
{
  width:310px;height:18px;border-radius:5px;border:1px solid #0c9977;padding:5px;font-size:16px;color:#000;
  -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5); 
  -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5); 
  box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
}
textarea:focus { 
box-shadow: 0 0 10px 0px #0c9977;
}
 textarea
{
  width:310px;height:220px;	border-radius:5px;border:1px solid #0c9977;padding:5px;font-size:16px;color:#000;line-height:16px;
  -moz-box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5); 
  -webkit-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5); 
  box-shadow: inset 1px 4px 9px -6px rgba(0,0,0,0.5);
}
.buttons
{
  width:70px;height:30px;padding:4px;background-color:#0c9977;color:#FFF;float:right;	margin-left:5px;font-size:16px;font-weight:bold;
}

.buttons:hover
{
 background-color:#eee;color:#0c9977;float:right;	
}
/*************************************end contactus page css*****************************************************/

/*************************************products page css*****************************************************/

.productst_container
{
	width:960px; margin:0 auto;height:auto;  position:relative;
}

.products_content
{
	width:960px;margin:0 auto;background-color:#fff;box-shadow:10px; height:auto; 
	-moz-box-shadow:inset 0 0 10px #000000;-webkit-box-shadow: inset 0 0 10px #000000; box-shadow:inset 0 0 10px #000000;
	margin-top:3px;padding-bottom:18px;
}
.products_inner_content
{
	width:900px;margin:0 auto;height:auto; padding-top:30px;
} 

.products_EPDM_container
{
    width:100%;margin:0 auto;min-height:440px;
}
.EPDM_carousel
{
  width:338px;height:430px;margin:0 auto;float:left;
}
.products_heading
{
  width:100%;height:28px; background-color:#999999; color:#FFF;font-size:22px;font-weight:bold;padding-top:10px;
  border-radius:3px;
}
.EPDM_tabs
{
  width:540px;height:430px;margin:0 auto;float:left;margin-left:10px;	
}
/***product tab********/
  ul.tabs
{
    padding: 10px 0;    
    list-style-type: none;	
    text-align: left;
}       
   
ul.tabs li a
{
     font-size:16px;
    text-decoration: none;
    position: relative;
    padding: 10px 19px;   
    color: #FFF;
   background-color:#999999;
    border-radius: 3px;
    outline:none;font-weight:bold;
}

ul.tabs li a:hover
{
   color: #FFF;
   background-color:#000;
}
 
div.tabcontents
{
    border: 1px solid #B7B7B7; padding: 08px;
    background-color:#FFF;    
	 border-radius: 3px;
	 margin:2px 0px 0px 1px;
	min-height:350px;
}
#view1 div
{
	margin-top:10px;
}
/********end product tab*******/
/***product carosel*******/
#page { width: 100%; margin: 4px auto; margin-top:20px; }

#thumbs { padding-top: 10px; overflow:auto;width:340px;height:76px;}
#thumbs img, #largeImage, #largeImage2, #largeImage3,#largeImage4 ,#largeImage5 { padding: 4px; background-color: white; cursor: pointer; }

#thumbs img {  margin-right: 6px; }
#thumbs img:hover {  margin-right: 6px;opacity:0.8; }

#description, #description2, #description3, #description4, #description5 { 
color: #000; position: absolute; bottom: 0;text-align:center; width:100%; }

#panel { position: relative;height:250px;}

/*************************************end products page css*****************************************************/

/*footer css*/
#footer
{
	width:100%;background-color:#2d2d2d;height:40px;z-index:999;
}
.index_footer
{
   margin:auto;width:960px;font-size:13px;font-family:calibri;color:#cccccc;	
}
.footer_div1
{
	float:left;margin-left:8px;line-height:40px;
}
.footer_div2
{
	float:right;margin-right:8px;line-height:40px;
}
/* end footer css*/

