@charset "utf-8";
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #fff910;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

img{width:100%; height:auto;}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color:none;
	text-decoration:none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: none;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none; outline:none;
}

/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
.container {
	width: 82%;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	min-width: 980px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
	background:none;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {
	padding: 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 ; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ miscellaneous float/clear classes ~~ */
.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;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

#menudiv{width:100%; height:auto; float:left; background:#af0700 url(images/menubg.gif) repeat-x bottom; -webkit-box-shadow: 0px 2px 2px 0px #c2c2c2; 
-moz-box-shadow: 0px 2px 2px 0px #c2c2c2;
box-shadow: 0px 2px 2px 0px #c2c2c2; position:relative; z-index:10px; border-bottom:#FFF solid 1px;}
#header{width:96%; height:auto; float:left; background:#FFF; padding:1% 2%; margin-bottom:2%; -webkit-box-shadow: 0px 2px 2px 0px #c2c2c2; 
-moz-box-shadow: 0px 2px 2px 0px #c2c2c2;
box-shadow: 0px 2px 2px 0px #c2c2c2;}
#bannerdiv{width:100%; height:auto; float:left; background:#f4dc0e;}
#body{width:96%; height:auto; float:left; background:#FFF; padding:2%; margin:2% 0; -webkit-box-shadow: 0px 2px 2px 0px #c2c2c2; 
-moz-box-shadow: 0px 2px 2px 0px #c2c2c2;
box-shadow: 0px 2px 2px 0px #c2c2c2;
}
#body2{width:100%; height:auto; float:left; margin-bottom:2%;}
#body3{width:100%; height:auto; float:left; margin-bottom:2%;}

#footer{width:100%; height:auto; clear:both; margin-bottom:2%;}


/* menu*/
.drop{width:90%; margin:0 ; float:left;  z-index:15; position:relative;}

.drop_menu {
background:none;
padding:0;
margin:0;
list-style-type:none;
height:38px; line-height:38px;
}
.drop_menu li { float:left; }
.drop_menu li a {
padding:0px 14px;
display:block;
color:#ffffff;
text-decoration:none;
font:11pt arial, verdana, sans-serif; height:38px; line-height:38px; border-right:#fb8181 solid 1px;
}


/* Submenu */
.drop_menu ul {
position:absolute;
left:-9999px;
top:-9999px;
list-style-type:none;
}
.drop_menu li a:hover { position:relative; background:#9bba1f url(images/menu-hover.gif) repeat-x bottom; color:#000000;  }
.drop_menu li:hover ul {
left:0px;
top:48px;
background:#6f6f6f;
padding:3px; color:#FFF;
}
 
.drop_menu li:hover ul li a {
padding:5px;
display:block;
width:200px;
text-indent:15px;
background:#211f20;  border-right:none; border-bottom:#6f6f6f solid 1px; height:25px; line-height:25px;
}
.drop_menu li:hover ul li a:hover { background:#7f1718;  }

/* end menu */

.mainlogin{width:7%; height:38px; line-height:38px; color:#ffffff; float:right; text-align:center; background:#000000; border-left:#FFF solid 1px;}
.login3{font-family:Arial, Helvetica, sans-serif; font-size:10pt; color:#ffffff; text-decoration:none; display:block;}
.login3:hover{text-decoration:none; color:#ff0000;}

.logo{width:38%; height:auto; float:left; padding-top:0%;}
.callus{width:28%; height:auto; float:right;}
.regd{width:22%; height:auto; float:right; margin:0.6% 3% 0 0; }


.enquirybg{width:15%; height:auto; float:left; background:#dc0402; padding:1% 2%;}
.enquirybg2{width:80%; height:auto; float:left; background:#dc0402; padding:5% 10%; margin-bottom:5%;}

.homesendtext{float:left; width:100%; height:auto; margin:0; text-align:center; font-family: "Cambria Math", Cambria, Arial; font-size:14pt; line-height:20px; color:#ffcc00;}
.formdiv{width:100%; height:auto; float:left; margin-bottom:5px; text-align:center;}
.form{width:100%; height:auto; float:left;  padding:0.3% 0 ; margin-left:0; border:#9e0201 solid 1px;}
.getafreequote{font-family:Verdana, Geneva, sans-serif; font-size:9pt; line-height:18px; color:#FFF;}

.bannerdiv{width:62.6%; height:auto; float:left; background:#FFF; padding:0 0.1%;}
.bannerright{width:18%; height:auto; float:left;}
.imgborder{border-bottom:#FFF solid 1px;}
.imgborder2{border-bottom:#ff8400 solid 1px;}


.maindiv{width:100%; height:auto; float:left; margin-bottom:2%;}
.maindiv2{width:100%; height:auto; float:left; margin-bottom:2%; padding-bottom:3%; border-bottom:#d6d6d6 solid 1px; -webkit-box-shadow: -1px 19px 21px -22px rgba(158,158,158,1);
-moz-box-shadow: -1px 19px 21px -22px rgba(158,158,158,1);
box-shadow: -1px 19px 21px -22px rgba(158,158,158,1);}

.welcometext{ font-family:Calibri; font-size:15pt; line-height:25px; color:#373434;}
.welcometext2{ font-family:Calibri; font-size:17pt; line-height:35px; color:#dc0402;}

.maintext{font-family:Arial, Helvetica, sans-serif, "Monotype Corsiva"; font-size:10pt; line-height:19px; color:#989da1; text-decoration:none;}

.maintext2{font-family:Arial, Helvetica, sans-serif, "Monotype Corsiva"; font-size:10pt; line-height:19px; color:#28281f; text-decoration:none;}


.homequality{width:25%; height:auto; float:left; margin-right:2%;}
.homequality2{width:25%; height:auto; float:right; margin-left:2%;}

.imgleft{width:40%; height:auto; float:left; margin:5% 5% 5% 0;}
.imgright{width:40%; height:auto; float:right; margin:5% 0 5% 5%;}
.imgright2{width:25%; height:auto; float:right; margin:1% 0 0% 3%; padding:3px; border:#CCC solid 1px; -webkit-box-shadow: -4px 4px 16px -1px rgba(204,204,204,1);
-moz-box-shadow: -4px 4px 16px -1px rgba(204,204,204,1);
box-shadow: -4px 4px 16px -1px rgba(204,204,204,1);}

.readmore{font-size:9pt; text-decoration:none; color:#dc0402;}
.readmore:hover{color:#000;}

.homebox{width:28%; height:auto; float:left; margin:0 0 0 0; background:#FFF; padding:2%; -webkit-box-shadow: 0px 2px 2px 0px #c2c2c2; 
-moz-box-shadow: 0px 2px 2px 0px #c2c2c2;
box-shadow: 0px 2px 2px 0px #c2c2c2;}
.homebox2{width:28%; height:auto; float:left; margin:0 2% 0 2%; background:#FFF; padding:2%; -webkit-box-shadow: 0px 2px 2px 0px #c2c2c2; 
-moz-box-shadow: 0px 2px 2px 0px #c2c2c2;
box-shadow: 0px 2px 2px 0px #c2c2c2;}
.footertop{width:100%; height:auto; clear:both; background:#000000; height:auto; line-height:38px; color:#FFF; text-align:center; border-bottom:#ff4947 solid 1px;}
.footerbottom{width:100%; height:auto; clear:both; background:#dc0402; }
.zawsoft{width:120px; height:auto; }

.subbuttons{font-family:Arial, Helvetica, sans-serif; font-size:11pt; color:#727272; text-decoration:none;}
.subbuttons:hover{text-decoration:underline; color:#ffffff;}
.subbuttons2{font-family:Arial, Helvetica, sans-serif; font-size:11pt; color:#e21f25; text-decoration:underline;}
.subbuttons2:hover{text-decoration:none; color:#000000;}

.copyrights{font-family:"Cambria Math", Cambria, Arial; font-size:10pt; line-height:19px; color:#292020; text-decoration:none;}


/* about us */
.bodyleft{width:20%; height:auto; float:left; background:none;}
.bodyright{width:74%; height:auto; float:right; background:#ffffff; padding:2%; -webkit-box-shadow: 0px 2px 2px 0px #c2c2c2; 
-moz-box-shadow: 0px 2px 2px 0px #c2c2c2;
box-shadow: 0px 2px 2px 0px #c2c2c2;}

.banner_inside{width:100%; height:auto; float:left; margin-bottom:1px;}
.banner_inside2{width:98%; height:auto; float:left; margin-bottom:2%; background:#ff7800; padding-left:2%; line-height:33px;}
.aboutbox{width:49%; height: auto; float:left;}
.aboutbox2{width:49%; height: auto; float:right;}

.leftimg{width:100%; height:auto; float:left; margin-bottom:5%;}

.homeserviceright{width:100%; height:auto; float:left; margin-bottom:3%;}

.servicesbg{width:100%; height:auto; margin-left:0%; background:url(images/arrow.png) no-repeat left; line-height:18px; display:block; color:#000; font-family:Arial, Helvetica, sans-serif, "Monotype Corsiva"; font-size:10pt; text-align:left; padding:2% 0 2% 2%; text-decoration:none; text-indent:10px;}

.services{color:#000;}
.services:hover{color:#cc0001;}

.white{color:#FFF; font-size:13pt; line-height:25px; text-align:center;}

.imgshadow{

    -moz-box-shadow:inset -1px 1px 16px #000000;
    -webkit-box-shadow:inset -1px 1px 16px #000000;
    box-shadow:inset -1px 1px 16px #000000;

}


.clientsdiv{width:16.7%; height:auto; float:left; border:#d4daea solid 1px; margin:1%; padding:3%; border-radius:5px; -webkit-box-shadow: 0px 0px 8px -2px rgba(179,179,179,1);
-moz-box-shadow: 0px 0px 8px -2px rgba(179,179,179,1);
box-shadow: 0px 0px 8px -2px rgba(179,179,179,1);
 }
.clientsdiv:hover{border:#9b9fa8 solid 1px;}
.mainform{border:#bdbdbd solid 1px; padding:3px;}
.contactdiv{width:53%; height:auto; float:left; margin:1% 1% 1% 5%;}
.contactdiv2{width:30%; height:auto; float:right; margin:1%;}

.networktext{font-family:Arial, Helvetica, sans-serif, "Monotype Corsiva"; font-size:11pt; text-decoration:none; color:#000000; display:block; padding:5px;}
.networktext:hover{color:#dc0402;}


.go-top {
	position: fixed;
	bottom: 2em;
	right: 0em;
	text-decoration: none;
	color: white;
	background:#dc0402;
	font-size: 12px;
	padding: 5px; border-radius:5px;
	display: none;
}

.go-top:hover {
	background-color: rgba(0, 0, 0, 0.6);
}













