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

/*---- Prevents iPhone from resizing in landscape mode ----*/
html
{
	-webkit-text-size-adjust: none;
}

/*---- apply a natural box layout model to all elements ----*/
*
{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

h1
{
	font-size:24px;
}
h2
{
	font-size:28px;
}
h3
{
	font-size:24px;
}
h4
{
	font-size:20px;
}
h5
{
	font-size:18px;
}
h6
{
	font-size:16px;
}



/*---- body ----*/
body, html
{
	background-color:#f0f7e9;
	font-size:14px;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}


/*---- container ----*/

#wrapper
{
	background-color:#fff;
}

#container
{
	min-width:320px;
	max-width:1024px;
	margin:0.6em auto;
	padding:1px 6px;
}


/*--------------------------------------
			index page begin
--------------------------------------*/

/*---- header ----*/

header hgroup
{
	text-align:center;
	width:100%;
}

header ul.headericons
{
	text-align:center;
	width:100%;
}

header ul.headericons li
{
	list-style:none;
	float:none;
	display:inline-block;
	margin-top:1em;
	vertical-align:middle;
}

header ul.headericons li a
{
	padding:6px 10px;
}
header ul.headericons li a:hover
{
	opacity:0.6;
}
header ul.headericons li a img
{
	vertical-align:middle;
}

header p
{
	float:none;
	text-align:center;
	font-style:italic;
	color:#666;
	margin-top:0.6em;
}

/*---- navigation ----*/

nav
{
	margin:12px 0px;
	display:block;
}


/*---- Mobile Menu Begin ----*/

/*---- navigation ----*/

.active
{
	background-color:#093;
	color:#fff;
}

nav
{
	margin:12px 0px;
}

/*---- tablet menu begin ----*/

/*-- Reset the default ul styles --*/
#menu, #menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#menu {
    width: 100%;
    margin: 0px auto;
    background-color: #333;
}

/*-- Clear floats --*/
#menu:before,
#menu:after {
    content: "";
    display: table;
}

#menu:after {
    clear: both;
}

#menu {
    zoom:1;
}


/*-- Menus --*/
#menu li {
    float: left;
    border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
    position: relative;
	width:50%;
	padding:8px 0px;
	text-align:center;
}


#menu a {
    color: #fff;
    text-transform: uppercase;
    font: bold 12px Arial, Helvetica;
    text-decoration: none;
}

#menu li:hover {
	background-color:#093;
}

*html #menu li a:hover { /* IE6 only */
	background-color:#093;
}


/*-- Dropdown Menu --*/
#menu ul {
    margin: 20px 0 0 0;
    _margin: 0; /*IE6 only*/
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 29px;
    left: 0;
    z-index: 1;    
    background: #444;   
    background: linear-gradient(#444, #111);
    transition: all .4s ease-in-out;
	width:100%;
}


#menu li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin: 0;
}

#menu ul ul {
    top: 0;
    left: 150px;
    margin: 0 0 0 20px;
    _margin: 0; /*IE6 only*/    
}

#menu ul li {
    float: none;
    display: block;
    border-bottom: 1px solid #000;
    _line-height: 0; /*IE6 only*/
	border-right:0;
	padding:0px 4px;
	width:100%;
	text-align:left;
}



#menu ul li:nth-child(5)
{
	border-bottom: 1px solid #000;
}
#menu ul li:nth-child(6)
{
	border-bottom: 1px solid #000;
}
#menu ul li:nth-child(7)
{
	border-bottom: 1px solid #000;
}
#menu ul li:nth-child(8)
{
	border-bottom: 1px solid #000;
}

#menu ul a {    
    padding: 8px;
    width: 100%;
    _height: 10px; /*IE6 only*/
    display: block;
    float: none;
    text-transform: none;
}

#menu ul li:hover {
    background-color: #065608;
}


/*-- First and last list elements styles (for small arrow) --*/

#menu ul li:first-child > a:after {
    content: '';
    position: absolute;
    left: 40px;
    top: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #444;
}

#menu ul ul li:first-child a:after {
    left: -6px;
    top: 50%;
    margin-top: -6px;
    border-left: 0; 
    border-bottom: 6px solid transparent;
    border-top: 6px solid transparent;
    border-right: 6px solid #3b3b3b;
}

#menu ul li:first-child a:hover:after {
    border-bottom-color: #065608; 
}

#menu ul ul li:first-child a:hover:after {
    border-right-color: #0299d3; 
    border-bottom-color: transparent;   
}




.slicknav_menu {
	display:none;
}

@media only screen and (max-width: 599px) {
	.js #menu {
		display:block;
	}
	
	.js .slicknav_menu {
		display:none;
	}
}

/*---- Mobile Menu End ----*/


/*---- Sidebar Begin ----*/

#sidebar
{
	padding:2px 4px;
}
#sidebar .col
{
	text-align:center;
	-webkit-transition: all 0.9s ease-out 0.0s;
	-moz-transition: all 0.9s ease-out 0.0s;
	-o-transition: all 0.9s ease-out 0.0s;
	transition: all 0.9s ease-out 0.0s;
	-webkit-transform: translateZ(0);
}
#sidebar .col p
{
	padding:10px 0px;
}

button
{
	background-color:#093;
	padding:4px 8px;
	border:none;
	cursor:pointer;
	color:#fff;
}

button a
{
	color:#fff;
	text-decoration:none;
}
button:hover
{
	text-decoration:underline;
	color:#fff;
}

.greybox
{
	background-color:#333;
	text-align:center;
	margin:2% 16%;
	padding:18px 2px;
	color:#fff;
	-webkit-transition: all 0.9s ease-out 0.0s;
	-moz-transition: all 0.9s ease-out 0.0s;
	-o-transition: all 0.9s ease-out 0.0s;
	transition: all 0.9s ease-out 0.0s;
	-webkit-transform: translateZ(0);
}

.greybox h3
{
	font-style:italic;
}
.greybox p
{
	margin:6% 0%;
}

.greenbox
{
	background-color:#093;
	text-align:center;
	margin:2% 16%;
	padding:18px 2px;
	color:#fff;
	-webkit-transition: all 0.9s ease-out 0.0s;
	-moz-transition: all 0.9s ease-out 0.0s;
	-o-transition: all 0.9s ease-out 0.0s;
	transition: all 0.9s ease-out 0.0s;
	-webkit-transform: translateZ(0);
}

.greenbox h3
{
	font-style:italic;
	font-weight:600;
}
.greenbox p
{
	margin-top:4%;
}

/*---- Sidebar End ----*/


/*---- Sliderbottom Begin ----*/

.img1, .img2, .img3
{
	text-align:center;
	margin:0 auto;
	width:58%;
	margin-bottom:10px;
	-webkit-transition: all 0.9s ease-out 0.0s;
	-moz-transition: all 0.9s ease-out 0.0s;
	-o-transition: all 0.9s ease-out 0.0s;
	transition: all 0.9s ease-out 0.0s;
	-webkit-transform: translateZ(0);
}

.img1 p, .img2 p, .img3 p
{
	padding:14px 0px;
	background-color:#333;
	color:#fff;
	
}

article#slider #sliderbottom img {
	width: auto;
}

/*---- Sliderbottom End ----*/

/*---- Footer Begin ----*/
footer
{
	margin:0.6em auto;
	padding-top:14px;
	padding-left:8px;
	padding-right:8px;
}

footer ul li
{
	display:inline-block;
	border-right:1px solid #009933;
	padding:0px 6px;
	-webkit-transition: all 0.9s ease-out 0.0s;
	-moz-transition: all 0.9s ease-out 0.0s;
	-o-transition: all 0.9s ease-out 0.0s;
	transition: all 0.9s ease-out 0.0s;
	-webkit-transform: translateZ(0);
}

footer ul li:last-child
{
	border-right:0px;
}

footer ul li a 
{
	text-decoration:none;
	color:#151515;
	line-height:1.5;
}

footer ul li a:hover 
{
	text-decoration:underline;
	color:#000;
}

footer ul
{
	list-style:none;
	margin-bottom:8px;
}

footer p
{
	color:#1E1E1E;
	font-size:14px;
	font-weight:bold;
	padding-bottom:8px;
}

footer hr
{
	margin-top:14px;
	margin-bottom:14px;
	border-color:#14840B;
	border:1px solid #14840B;
	border-style:none none solid;
}

footer p.copyright
{
	background-color:#093;
	margin-top:12px;
	text-align:center;
	font-size:11px;
	vertical-align:middle;
	padding:8px 0px;
	color:#fff;
	font-weight:300;
	font-style:italic;
	font-family:'calibri';
}

footer p.copyright a
{
	color:#fff;
	text-decoration:none;
}

footer p.copyright a:hover
{
	color:#fff;
	text-decoration:underline;
}

/*---- Footer Begin ----*/



/*--------------------------------------
			2. About page begin
--------------------------------------*/

#about ul
{
	list-style:none;
	margin:10px 2px;
}
#about ul li
{
	border-top:1px solid #999999;
	padding:8px 0px;
}

#about ul li:last-child
{
	border-bottom:1px solid #999999;
}

#about ul li a
{
	text-decoration:none;
	color:#333;
}

#about ul li a:hover
{
	font-weight:600;
	text-decoration:underline;
}

.paragraph
{
	color:#333333;
	font-size:15px;
}

address
{
	font-style:normal;
}

.aboutactive
{
	font-weight:600;
	color:#009933;
}

.table-row
{  
     display:table-row;
	 line-height:1.6;
}
.table-row1
{  
     display:table-row;
	 line-height:1.0;
}

.columnss1
{
	display:table-cell;
	padding:0px 10px 0px 0px;
	width:90%;
	color:#333333;
}

.columnss2
{
	display:table-cell;
	padding:0px 10px;
	width:8%;
}
.columnss3
{
	display:table-cell;
	padding:0px 10px 0px 0px;
	width:30%;
	color:#333333;
}
.columnss4
{
	display:table-cell;
	padding:0px 10px;
	width:70%;
}

#about .column-three-fourths ul.whyuslist
{
	padding-left:60px;
	font-size:15px;
}
#about .column-three-fourths ul.whyuslist li
{
	border:0;
	list-style:disc;
	color:#333;
	line-height:1.2;
	padding:3px 0px;
}
/*--------------------------------------
			About page end
--------------------------------------*/
#clients
{
	text-align:center;
}
.colgrid
{
	display:inline-block;
	margin-right:0.612%;
	margin-top:4px;
	margin-bottom:4px;
	border:1px solid #B3B3B3;
	background-color:#fff;
	text-align:center;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
}

.worktable
{
	width:100%;
	margin-bottom:4px;
}
.worktable tr
{
	font-size:12px;
	line-height:1.5;
}
.worktable td:first-child
{
	width:26%;
	margin:0;
	padding:0;
}



/*--------------------------------------
			Other Stuf
--------------------------------------*/

.clean
{
	clear:both;
}

.imgwidth100
{
	margin-bottom:0px;
}

.gmap{
	background-color:#fff;
}