.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 */
	height:0;
	font-size: 1px;
	line-height: 0px;
	clear: both;
}
body  {
	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: #333333;
	font-family: Tahoma, "Trebuchet MS", Arial;
	font-size: 12px;
	line-height: 140%;
	letter-spacing: 1px;
	word-spacing: 1px;
}
h1 {
	font-family: "Trebuchet MS", Arial, Tahoma;
	font-size: 20px;
	font-weight: normal;
	color: #FF6600;
	background-image: url(../images/bg-line.jpg);
	background-repeat: repeat-x;
	background-position: -10px bottom;
	display: block;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
h2 {
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	color: #6EB52B;
}
h3 {
	color: #FF6600;
	font-family: "Trebuchet MS";
	font-size: 14px;
	padding: 0px;
	margin-top: 15px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
h4 {
	color: #6BB53A;
	font-family: "Trebuchet MS";
	font-size: 12px;
	margin: 0px;
	padding: 0px;
}




/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust these divs based on your final font sizing.
*/
#container {
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	
} 

.twoColElsLt #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;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. 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.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.twoColElsLt #mainContent {
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 395px;
	margin-right: 0px;
	letter-spacing: 1px;
	word-spacing: 1px;

} 




/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
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 ".twoColElsLt #sidebar1 p" rule.
*/
.twoColElsLt #sidebar1 {
	float: left;
	width: 398px; /* top and bottom padding create visual space within this div */
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 0px;
	margin:0px;
}
.twoColElsLt #footerContent {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 20px;
	padding-top: 15px;
	padding-left: 15px;
	color: #FFFFFF;
}

.twoColElsLt #footer #sidebar2 {
	float: left;
	width: 189px; /* since this element is floated, a width must be given */
	background: #FFFFFF; /* top and bottom padding create visual space within this div */
	padding-top: 20px;
	padding-right: 10px;
	padding-left: 0;
	text-align: right;
	color: #999999;
	padding-bottom: 10px;
	text-decoration: none;
}
.twoColElsLt #footer {
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0px;
	background-color: #6cb63a;
}
#header {
	padding-top: 2px;
	margin-left: 1px;
	background-image: url(../images/bg-line.jpg);
	background-position: bottom;
	background-repeat: repeat-x;
}
#logo {
	background-color: #FFFFFF;
	background-image: url(../images/parixit-logo.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 235px;
	width: 399px;
}

#header #banner {
	background-image: url(../images/banner-common.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 253px;
	background-color: #279E3A;
}
.bnraboutus {
	background-image: url(../images/bnr-aboutus.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.sidebarCol1 {
	display: inline-block;
	width: 197px;
	float: left;
	margin-left: 1px;
	background-image: url(../images/border-dotted.jpg);
	background-repeat: repeat-y;
	background-position: left top;
}

/* 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: 8px;
}
.clear {
	font-size: 0px;
	clear: both;
	float: none;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
#product_content {
	margin-right: 10px;
	text-align: justify;
}

#product_content_new ul {
	margin: 0px;
	padding: 0px;
}
#product_content_new li {
	background:none;
	float: left;
	text-align: center;
}
#product_content_new li a {
	background:none;
	color: #6eb52b;
	font-family: "Trebuchet MS";
	font-size: 14px;
	font-weight: normal;
	text-decoration: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-right: 15px;
}
#product_content_new li a:hover {
	background:none;
	color: #FF3300;
	font-family: "Trebuchet MS";
	font-weight: normal;
	text-decoration: none;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#product_content_new img {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-bottom: 8px;
}
#product_content_new img a {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#product_content_new img a:hover {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}



.sidebarCol1 h1 {
	background-image: url(../images/bg-line-grediant.jpg);
	font-size: 11px;
	font-weight: bold;
	font-family: Tahoma, "Trebuchet MS";
	color: #00923C;
	clear: left;
}
.sidebarCol1 h1.sideTitle 
	{
	height: 40px;
	margin: 0px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;}

.sidebarCol1 h2 {
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 15px;
	font-size: 11px;
	font-family: Tahoma, "Trebuchet MS";
	color: #FF3300;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #e8e8e8;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 4px;
	margin-bottom: 1px;
}
.sidebarCol1 h3  {
	margin-bottom: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding: 10px;
	background-image: url(../images/bg_dot.gif);
	background-repeat: repeat-x;
	background-position: left bottom;
}






.sidebarCol1 li a {
	color: #999999;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E8E8E8;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
	font-weight: normal;
	margin-bottom: 0px;

}

.sidebarCol1 li a:hover {
	color: #039240;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	display: block;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 15px;
	margin-bottom: 0px;		

}
#header ul, #header li, .sidebarCol1 ul, .sidebarCol1 li {
	margin: 0px;
	padding: 0px;
	font-size: 11px;
	font-weight: bold;
	font-family: Tahoma, "Trebuchet MS";
	color: #FF6600;
	list-style-image: none;
	list-style-type: none;
}

.sidebarCol1 li {
	padding: 0px;	
	}


.sidebarCol1 li,
.sidebarCol1 li:hover {
	height: 25px;
}


.gallery {
	background-color: #F4F4F4;
	display: block;
	padding-top: 10px;
	padding-right: 5px;
	padding-bottom: 10px;
	padding-left: 5px;
}
.gallery ul, 
.gallery li {
	margin: 0px;
	padding: 0px;
}
.gallery li {
	float:left;
}

.gallery li a {
	display: block;
	border: 5px solid #FFFFFF;
}
#navigation {
	background-repeat: repeat-x;
	margin-bottom: 5px;
	display: block;
	padding-top: 3px;
	background-position: left top;
	height: 180px;
}
#navigation  ul   {
	margin: 0px;
	padding: 0px;
	background-color: #009242;
	filter:alpha(opacity=50);
	opacity: 0.5;
	-moz-opacity:0.5;

}


#navigation li {
	display: inline;
	margin: 0px;
	padding: 0px;

}
#navigation li a {
	display: inline-block;
	padding: 5px;
	font-family: "Trebuchet MS", Arial, Tahoma;
	font-size: 15px;
	color: #FFFFFF;
	font-weight: normal;
	text-decoration: none;
	filter:alpha(opacity=100);
	opacity: 1;
	-moz-opacity:1;

}
#content_area {
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 15px;
	text-align: justify;
}
#content_area ul {
	margin: 0px;
	padding: 0px;
	list-style-image: none;
	list-style-type: none;
}
#content_area li {
	background-image: url(../images/arrow-list.gif);
	background-repeat: no-repeat;
	background-position: left 4px;
	margin: 0px 0px 2px 0px;
	list-style-image: none;
	list-style-type: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 2px;
	padding-left: 15px;
}
.thumbnail,
.map {
	text-align: left;
	vertical-align: top;
	margin-left: 15px;
	margin-right: 15px;
	background-image: url(../images/view_large.gif);
	background-repeat: no-repeat;
	background-position: left bottom;
	margin-bottom: 25px;	
}

.thumbnail img,
.map img {
	border: 3px solid #E1E1E1;
	display: inline;
	margin-bottom: 5px;
	padding: 5px;
}


#sidebar1 .sidebarCol1 .thumbnail,
#sidebar1 .sidebarCol1 .map {
	text-align: center;
	vertical-align: top;
	background-image: url(../images/view_large_grey.gif);
	background-repeat: no-repeat;
	background-position: 5px bottom;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 5px;

}

#sidebar1 .sidebarCol1 .gmap {
	text-align: center;
	vertical-align: top;
	background-image: url(../images/view_large_grey.gif);
	background-repeat: no-repeat;
	background-position: 5px bottom;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 15px;
	margin-left: 5px;

}

#sidebar1 .sidebarCol1 .thumbnail img,
#sidebar1 .sidebarCol1 .map img
{
	border: 1px solid #E1E1E1;
	background: white;
	text-align: center;
	

}

#sidebar1 .sidebarCol1 .map img, {
	border: 1px solid #E1E1E1;
	background: white;
	text-align: center;
	}

.thumbnail a img,
.map a img {
	margin-bottom: 25px;
}

#sidebar1 .sidebarCol1 .thumbnail a img, 
#sidebar1 .sidebarCol1 .map a img {
	margin-bottom: 23px;
}

#toplinks ul {
	margin-top: 15px;
	display: block;
	height: 18px;
}

#toplinks li, .generallinks li  {
	text-decoration: none;
	display: inline;
	background-image: url(../images/bg_dot.gif);
	background-repeat: repeat-y;
	background-position: right top;
	letter-spacing: normal;
	word-spacing: normal;
	padding: 5px;
}
#toplinks li a {
	color: #FF3300;
	text-decoration: none;
	height: 15px;
	display: inline-block;
}
#toplinks li a:hover {
	color: #069140;
}
.generallinks ul {
	display: block;
	margin-bottom: 5px;
	padding-bottom: 5px;
	text-align: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
.generallinks  a  {
	color: #666666;
	text-decoration: none;
	padding-right: 10px;
	font-weight: normal;
	background-color: #FFFFFF;
	padding-left: 10px;
}

.tdLabel {
	color: #FF6600;
	padding-top: 4px;
	padding-bottom: 4px;
	padding-right: 30px;
	background-image: url(../images/arrow.gif);
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 15px;
	white-space: nowrap;
}

.tdheadsub {
	color: #6BB53A;
	font-weight: bold;
}
.tableSpecification {
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	text-decoration: none;
	border-top-color: #B8E09C;
	border-right-color: #B8E09C;
	border-bottom-color: #B8E09C;
	border-left-color: #B8E09C;
	display: inline-block;
	width: 99%;
}
.tableSpecification td {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-decoration: none;
	border-top-color: #E8E8E8;
	border-right-color: #E8E8E8;
	border-bottom-color: #E8E8E8;
	border-left-color: #E8E8E8;
	padding-top: 4px;
	padding-bottom: 4px;
	text-align: left;
}
.tableSpecification th {
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-decoration: none;
	border-top-color: #E8E8E8;
	border-right-color: #E8E8E8;
	border-bottom-color: #E8E8E8;
	border-left-color: #E8E8E8;
	padding-top: 4px;
	padding-bottom: 4px;
	font-weight: bold;
	color: #2F9F3B;
}

#footer .sidebarCol1 {
	display: inline-block;
	width: 199px;
	float: left;
	margin-right: 1px;
	background-image: url(../images/border-dotted.jpg);
	background-repeat: repeat-y;
	background-position: left top;
}
#footerContent   li   {
	color: #FFFFFF;
	display: inline;
	padding-right: 7px;
	padding-left: 7px;
}
#footerContent li a {
	color: #FFFFFF;
	display: inline;
	text-decoration: none;
	font-size: 11px;
}
#footerContent li a:hover {
	color: #FFFFFF;
	display: inline;
	text-decoration: none;
}


#footer  #footerContent  ul  {
	text-align: left;
	display: block;
	height: 10px;
	margin: 0px;
	padding: 5px;
	list-style-image: none;
	list-style-type: none;
}

#footerContent span {
	color: #FFFFFF;
	display: inline;
}
.product_content {
	margin-right: 260px;
}
.bnrproducts {
	background-image: url(../images/bnr-products.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.bnrsitemap {
	background-image: url(../images/bnr-sitemap.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.bnrcontactus {
	background-image: url(../images/bnr-contact-us.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.bnrnewsevents {
	background-image: url(../images/bnr-news-events.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.bnrsocial {
	background-image: url(../images/bnr-social-responsibility.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.twoColElsLt #footer #sidebar2 a {
	background: #FFFFFF;
	text-align: right;
	color: #999999;
	text-decoration: none;
}
.bnrcareers {
	background-image: url(../images/bnr-careers.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.bnrinquiry {
	background-image: url(../images/bnr-careers.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.sidebarCol1 marquee {
	display: block;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #6EB639;
	color: #5FB03A;
	height: 140px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 20px;
	padding-left: 5px;
}
.tdhead  {
	background-color: #C4DF9A;
	border: 1px solid #FFFFFF;
	font-weight: bold;
	color: #336600;
}
.tdheadTitle  {
	background-color: #8DC73F;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
}
table    .datasheet, div .datasheet ,{
	border: 1px solid #E6E7E5;
}
.datasheet td {
	border: 1px solid #E6E7E5;
	padding: 1px;
	font-size: 10px;
}
.floatleft {
	float: left;
}
.colorgreen {
	color: #339933;
}
.address {
	font-size: 10px;
	display: block;
	margin-top: 20px;
}
.downloads {
	display: block;
	font-size: 10px;
	color: #FF6600;
}

.downloads img {
	display: block;
	float: left;
	margin-right: 10px;
}
.downloads {
	margin-bottom: 15px;
}


.downloads p {
	margin: 0px;
	padding: 0px;
	display: block;
	clear: left;
}
.downloads a {
	color: #009933;
	text-decoration: none;
	padding-top: 10px;
	display: block;
}
.downloads a:hover {
	color: #006600;
}
.gotop {
	text-align: right;
	display: block;
	margin-bottom: 20px;
	margin-top: 5px;
	margin-right: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 0px;
}

#footer .sidebarCol1 {
	display: inline-block;
	width: 190px;
	float: left;
	margin-left: 7px;
	background-image: none;
	background-repeat: repeat-y;
	background-position: left top;
}
textarea {
	border: 1px solid #6EB53B;
}
input {
	border: 1px solid #6EB53B;
}
select {
	border: 1px solid #6EB53B;
}

#footer .downloads {
	display: block;
	font-size: 10px;
	color: #FFFFFF;
}
#content_area .gallery li {
	margin-right: 5px;
}
#content_area .gallery li .name {
	text-align: center;
	font-family: Tahoma;
	font-size: 10px;
	color: #00923C;
}
#content_area .gallery li .name a {
	text-align: center;
	font-family: Tahoma;
	font-size: 10px;
	color: #00923C;
	text-decoration: none;
	border: none;
}
#content_area .gallery li .name a:hover {
	text-align: center;
	color: #006600;
}
.fltLeft {
	float: left;
}
.fltRight {
	float: right;
}
.bnrclients {
	background-image: url(../images/bnr-ourclients.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.bnrservices {
	background-image: url(../images/bnr-services.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.bnrinfra {
	background-image: url(../images/bnr-infra.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
.product_content ul li a {
	color: #FF9900;
	text-decoration: underline;
}

#accordion1 {
	color: #FF6600;
	text-decoration: underline;
	background-color: #F7F7F7;
	background-image: none;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 20px;
	text-decoration:none;

	
}

#accordion1 div h1 {
	color: #FF6600;
	text-decoration: none;
	background: none;
	margin: 0px;
	padding: 5px 0px;
	padding-left:15px;
	/*padding-top:10px;*/
	border-bottom:1px solid #DFDFDF;

}

.element a {
	margin:0px;
	text-decoration: none;
	padding-left:15px;
}

.element a:hover {
	margin:0px;
	text-decoration: none;
}
.bnrturnkey {
	background-image: url(../images/bnr-turnkeyprojects.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 250px;
}
#product_content a {
	font-family: "Trebuchet MS";
	text-decoration: none;
	font-size: 14px;
	color: #ff6600;
}
#product_content a:hover {
	font-family: "Trebuchet MS";
	text-decoration: none;
	font-size: 14px;
	color: #6CB63A;
}
