@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px;
	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;
	height:100%;
}
 #container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	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. */
	height:100%;
} 


 #header {
	background-image:url(images/new_header.png);
	background-position:top ;
	background-repeat:no-repeat;
	background-color:#000;

	margin-bottom:8px;
	height:190px;
	border:#f9dd15 2px solid;
	-moz-border-radiust:5px;
   -webkit-border-radius:5px;
   border-radius:5px;
	/* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}

 #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 */
}

#bc{
	height:100%;
	}

 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #CCC;/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 5px 0px 5px; /* padding keeps the content of the div away from the edges */
	min-height:795px;
	border:#f9dd15 2px solid;
	text-align:center;
	margin-bottom:5px;
		-moz-border-radiust:5px;
   -webkit-border-radius:5px;
   border-radius:5px;
 }

 #sidebar1 img{
	 padding-bottom:10px;
	 display:inline-block;
 }
 
  #sidebar1 h1{
	 font-family:Arial, Helvetica, sans-serif;
	 font-size:11px;
	 text-align:center;
	 text-decoration:blink;
	  }
 #sidebar1 p{
	 font-family: Arial, Helvetica, sans-serif;
	 font-size:10px;
	 text-align: justify;
	 margin:5px;
	 padding-bottom:10px;
 }
 
 
 
 
 #contact{
	 width:185px;
	 background-image:url(images/contact.png);
	 background-repeat:no-repeat;
	 padding-left:10px;
	 padding-top:40px;
	 margin-top:10px;
	 display:block;
	 float:left;
	
 }
 
  #contact2{
	 width:185px;
	 background-image:url(images/contact.png);
	 background-repeat:no-repeat;
	 padding-left:10px;
	 padding-top:40px;
	 margin-top:10px;
	 display:block;
	 float:left;
	 height:300px;
 }
 
 

 #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #CCC; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 5px 0px 5px; /* padding keeps the content of the div away from the edges */
	min-height:795px;
	border:#f9dd15 2px solid;
	text-align: center;
	-moz-border-radiust:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
}

 #sidebar2 img{
	 padding-bottom:10px;
	 display:inline-block;
 }

 #sidebar2 h1{
	 font-family:Arial, Helvetica, sans-serif;
	 font-size:11px;
	 text-align:center;
	 font-weight:bold;
	  }
 #sidebar2 p{
	 font-family: Arial, Helvetica, sans-serif;
	 font-size:10px;
	 text-align:justify;
	 margin:5px;
	 padding-bottom:10px;
 }
 #mainContent { 
	margin: 0 200px 0 160px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 5px 5px 0px 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #ccc;
	border:#f9dd15 2px solid;
		-moz-border-radiust:5px;
   -webkit-border-radius:5px;
   border-radius:5px;
  min-height:795px;
 }

 #mainContent h1 {
	 font-family:Arial, Helvetica, sans-serif;
	 font-size:1.5em;
	 text-align:justify;
	 padding:10px 5px;
	 margin:0;
	 font-style:oblique;
 }
 #mainContent h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
	text-align:center;
	padding:10px 5px;
	margin:0;
	font-style:oblique;
	font-weight:bold;
	 
	  }
	  
 #mainContent h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
	text-align:center;
	padding:10px 5px;
	margin:0;
	font-style:oblique;

	 
	  }

 #mainContent p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.8em;
	text-align:justify;
	padding:5px;
	margin:0;
	color:#333;
	  }
	  
a {
	text-decoration:none;
	font-weight:bold;
	color:#000;
	}	  

 li {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.8em;
	text-align:justify;
	padding:5px;
	margin:0;
	color:#333;
	list-style-type:disc;
	list-style-position:inside;
	  }
#map{
	background-image:url(images/map.png);
	background-repeat:no-repeat;
	width:320px;
	height:320px;
	display: block;
	float:right;
	padding-left:10px;
	padding-top:10px;
}
	  
	   #mainContent2 { 
	width:726px;
	float:left;
	margin-left:6px;/* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 5px 5px 0px 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #ccc;
	border:#f9dd15 2px solid;
		-moz-border-radiust:5px;
   -webkit-border-radius:5px;
   border-radius:5px;
   height:795px;
   overflow:auto;
   
 }

 #mainContent2 h1 {
	 font-family:Arial, Helvetica, sans-serif;
	 font-size:1.5em;
	 text-align:left;
	 padding:10px 5px;
	 margin:0;
	 font-style:oblique;
 }
 #mainContent2 h2 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
	text-align:left;
	padding:10px 5px;
	margin:0;
	font-style:oblique;
	font-weight:bold;
	 
	  }
	  
	  
#mainContent2 h3 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
	text-align:left;
	padding:10px 5px;
	margin:0;
	font-style:oblique;
	font-weight:normal;

	 
	  }
	  
#mainContent2 h4 {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
	text-align:left;
	padding:0px 5px;
	margin:0;
	font-style:normal;
	font-weight:bold;

	 
	  }

 #mainContent2 p {
	font-family:Arial, Helvetica, sans-serif;
	font-size:0.8em;
	text-align:justify;
	padding:5px;
	margin:0;
	color:#333;
	  }
	  
#mainContent2  ul{
	list-style:none;
}

#mainContent2  li{
	list-style-position:inside;
	text-align:left;
}

#services{
padding-bottom:10px;
}

#services ul{
	margin:0 ;
	
}

#services li{
	list-style-image:url(images/tick.png);
	margin:0;
	padding:0;
}

#port{
	display:block;
	height:150px;
	margin: 25px 0;
	clear:both;
}
	  
 #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #CCC;
	border:#f9dd15 2px solid;
		-moz-border-radiust:5px;
   -webkit-border-radius:5px;
   border-radius:5px;
   font-size:8pt;
   margin: 5px 0 0px 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
height:15px;
} 

#footer .left {
float:left;
width:20em;
padding-top:0em;
padding-left:1em;
padding-right:1em;
text-align:left;
font-family:Arial, Helvetica, sans-serif;
font-size:0.9em;
color:#333;
} 

#footer .center {
float:left;
width:45em;
padding-top:0em;
padding-left:1em;
padding-right:2em;
text-align:center;
font-family:Arial, Helvetica, sans-serif;
font-size:0.9em;
color:#333;
} 

#footer .right {
float:right;
width:15em;
padding-top:0em;
padding-left:1em;
padding-right:1em;
text-align:right;
font-family:Arial, Helvetica, sans-serif;
font-size:0.83em;
color:#333;
} 

#footer2 { 
width:897px;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #CCC;
	border:#f9dd15 2px solid;
		-moz-border-radiust:5px;
   -webkit-border-radius:5px;
   border-radius:5px;
   font-size:8pt;
   margin: 0 auto; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
height:15px;
} 

#footer2 .left {
float:left;
width:20em;
padding-top:0em;
padding-left:1em;
padding-right:1em;
text-align:left;
font-family:Arial, Helvetica, sans-serif;
font-size:0.9em;
color:#333;
} 

#footer2 .center {
float:left;
width:45em;
padding-top:0em;
padding-left:1em;
padding-right:2em;
text-align:center;
font-family:Arial, Helvetica, sans-serif;
font-size:0.9em;
color:#333;
} 

#footer2 .right {
float:right;
width:15em;
padding-top:0em;
padding-left:1em;
padding-right:1em;
text-align:right;
font-family:Arial, Helvetica, sans-serif;
font-size:0.83em;
color:#333;
} 

#nav{
	height:28px;
	margin-top:5px;
		width:850px;
	margin:0 auto;
}

#box{
	position:relative;
	top:165px;
	margin-left:3px;
	display:inline;
	float:left;
}

.garuntee{
	width:270px;
	background-color:#fbee88;
	margin-top:10px;
	min-height:390px;
}

.box{
	background-color:#f9dd15;
	display:inline;
	float:left;
	
	
	}
	

.box p{
	margin:0px;
	padding-bottom:5px;
	text-align:center;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
}

.box a{
	color:#000;
	font-weight: 500;
	text-decoration:none;

}

.box a:hover{
	color: #666;
	font-weight: 500;
	text-decoration: none;

}

.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: 10px;
	
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
	
}
.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;
}

#sm{
width:190px;
height:50px;
padding-top:10px;
margin:0;
text-align:left;
}

#sm img{
	padding-left:5px;

}


.rtop,.artop{display:block}
.rtop *,.artop *{display:block;height:1px;overflow:hidden;font-size:1px}
.artop *{border-style: solid;border-width:0 1px}
.r1,.rl1,.re1,.rel1{margin-left:5px}
.r1,.rr1,.re1,.rer1{margin-right:5px}
.r2,.rl2,.re2,.rel2,.ra1,.ral1{margin-left:3px}
.r2,.rr2,.re2,.rer2,.ra1,.rar1{margin-right:3px}
.r3,.rl3,.re3,.rel3,.ra2,.ral2,.rs1,.rsl1,.res1,.resl1{margin-left:2px}
.r3,.rr3,.re3,.rer3,.ra2,.rar2,.rs1,.rsr1,.res1,.resr1{margin-right:2px}
.r4,.rl4,.rs2,.rsl2,.re4,.rel4,.ra3,.ral3,.ras1,.rasl1,.res2,.resl2{margin-left:1px}
.r4,.rr4,.rs2,.rsr2,.re4,.rer4,.ra3,.rar3,.ras1,.rasr1,.res2,.resr2{margin-right:1px}
.rx1,.rxl1{border-left-width:5px}
.rx1,.rxr1{border-right-width:5px}
.rx2,.rxl2{border-left-width:3px}
.rx2,.rxr2{border-right-width:3px}
.re2,.rel2,.ra1,.ral1,.rx3,.rxl3,.rxs1,.rxsl1{border-left-width:2px}
.re2,.rer2,.ra1,.rar1,.rx3,.rxr3,.rxs1,.rxsr1{border-right-width:2px}
.rxl1,.rxl2,.rxl3,.rxl4,.rxsl1,.rxsl2,.ral1,.ral2,.ral3,.ral4,.rasl1,.rasl2{border-right-width:0}
.rxr1,.rxr2,.rxr3,.rxr4,.rxsr1,.rxsr2,.rar1,.rar2,.rar3,.rar4,.rasr1,.rasr2{border-left-width:0}
.r4,.rl4,.rr4,.re4,.rel4,.rer4,.ra4,.rar4,.ral4,.rx4,.rxl4,.rxr4{height:2px}
.rer1,.rel1,.re1,.res1,.resl1,.resr1{border-width:1px 0 0;height:0px !important;height /**/:1px}
