/****

	Copy/Paste Shortcuts

	PRIMARY COLOR — #0a6239
	PRIMARY TEXT COLOR — #555

****/

html {
	-webkit-transition: background-color 1s;
    transition: background-color 1s;
}

html, body {
	min-height: 100%;
	min-width: 980px;
}

html.loading {
	background: #fff;
	-webkit-transition: background-color 0;
    transition: background-color 0;
}

body {
	background:#efefef;
	-webkit-text-size-adjust: none;
    background-attachment: fixed;
    -webkit-transition: opacity 1s linear;
    transition: opacity 1s linear;
}

html.loading body {
	opacity: 0;
	-webkit-transition: opacity 0;
    transition: opacity 0;
}

a, a:visited, a:active, a:hover {
	color:#0a6239;
	text-decoration: none;
}

li {
	color:#555;
	font:15px "proxima-nova", Arial, sans-serif, arial, sans-serif;
}

p {
	color:#555;
	font:15px "proxima-nova", Arial, sans-serif, arial, sans-serif;
	line-height:22px;
	margin-bottom:10px;
	font-weight:400;
}

p strong {
	font-weight:700;
}

p.end {
	margin-bottom:0px;
}

.clear {
	clear:both;
}

.column-example {
	min-height:100px;
}


/****

WRAP

****/

.wrap {
	width:960px;
	margin:0px auto;
	padding:0;
}

/****

NAVIGATION MENU
styles for main menu and submenu

****/

.mym-menu {
	width:100%;
	padding:0px;
	margin:0px;
	/* color full width of menu */
	background:#000;
}

.mym-menu ul {
	width:960px;
	list-style:none;
	padding:0;
	margin:0px auto;
}

.mym-menu ul li {
	position: relative;
	display: block;
	float: left;
}

.mym-menu li a {
	display:block;
	text-align:center;
	background:#000;
	padding:20px;
	margin:0 0 0 0;
	width:auto;
	color:#fff;
	text-decoration: none;
	font:14px "proxima-nova", Arial, sans-serif, arial, sans-serif;
	text-transform:none;
	font-weight:400;
	-webkit-transition: background .1s ease;
	transition: background .1s ease;
}


.mym-menu li.active a {
	/* color of currently selected menu item */
	background:#0a6239;
	color:#fff;
}

.mym-menu li:hover a {
	/* color of menu item during hover */
	background:#333;
	color:#fff;
}

/*

drop-down menu styles

*/

.mym-menu li ul {
	visibility: hidden;
	opacity: 0;
	margin:10px 0 0 0;
	position:absolute;
	-webkit-transition: all .1s linear;
	transition: all .1s linear;
	width: auto;
	background:#333;
}

.mym-menu li:hover ul, .mym-menu li:active ul {
	visibility: visible;
	opacity: 1;
	left:0;
	margin:0px;
	z-index:9999;
}

.mym-menu li li, .mym-menu.sub li li {
	/* adjust width of drop-down menu to fit children */
	width: 100%;
	white-space: nowrap;
}

.mym-menu li ul li a {
	border-top:1px solid;
	border-color:#444;
	color:#fff;
	font:13px "proxima-nova", Arial, sans-serif, arial, sans-serif;
	font-weight: 500;
	padding:10px 0 10px 10px;
	margin:0 0 0 0;
	text-align: left;
    -webkit-transition: all .1s ease;
       -moz-transition: all .1s ease;
        -ms-transition: all .1s ease;
         -o-transition: all .1s ease;
            transition: all .1s ease;
    /* extend drop down menu to full length of text */
	background:#333;
	width: 100%;
	min-width: 117px;
}

.mym-menu li ul li:hover a {
	/* text color of drop-down on mouseover */
	color:#fff;
	background-color:#444;
}

/*

submenu styles

*/

.mym-menu.sub {
	background: #0a6239;
	/* colors full-width of subenu */
}

.mym-menu.sub li {
}

.mym-menu.sub li a {
	/* submenu a background is hidden by default */
	background: none;
	color: #fff;
	/* reduce submenu height and font size */
	padding:10px 10px 10px 10px;
	font-size: 13px;
	/* disable transition */
	-webkit-transition: none;
	transition: none;
	/* prevent overflor */
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    /* resize link to fit long text */
	white-space: nowrap;
	width: auto;
	min-width: 137px;
}

.mym-menu.sub li:hover a {
	/* highlight submenu items on hover */
	color:#fff;
	background-color:rgba(0, 0, 0, 0.1);
}

.mym-menu.sub li ul {
	background: #0a6239;
}

/*

submenu drop down styles

*/

.mym-menu.sub ul li ul {
	background: #0a6239;
}

.mym-menu.sub li ul li a {
	border-top:1px solid;
	border-color:rgba(0, 0, 0, 0.1);
	-webkit-transition: none;
	transition: none;
	background-color:rgba(0, 0, 0, 0.0);
	padding:10px 0 10px 10px;
	/* prevent overflor */
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.mym-menu.sub li ul li a:hover {
	/* highlight submenu items on hover */
	border-color:rgba(0, 0, 0, 0.0);
	background-color:rgba(0, 0, 0, 0.2);
}

/****

RIGHT COL + LEFT COL

****/

.leftcol {
	float:left;
	width:725px;
	margin:10px 0 0 0;
	padding:0;
}

.rightcol {
	float:right;
	width:220px;
	margin:10px 0 0 0;
	padding:0;
}

/****

HEADER — White area at the top of each page

****/


.head {
	background:#fff;
	width:100%;
	padding:20px 0 20px 0;
	clear:both;
	display:table;
}

.head img {
	vertical-align: bottom;
}

.head .topleft, .head .topright {
	width:318px;
	height:135;
	margin:0;
	padding:0;
	display:table-cell;
	vertical-align: bottom;
}

.head .topmid {
	width:323px;
	height:auto;
	margin:0;
	padding:0;
	display:table-cell;
	vertical-align: bottom;
	text-align: center;
}

.head .topmid p {
	font-size:26px;
	line-height:30px;
	text-align: center;
	color:#0a6239;
	font-weight:400;
	font-family: "Futura-PT";
}

.head .topmid img {
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	margin:15px 0 0 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.head .topmid img:hover {
	opacity: 0.7;
}

.head .topright {
	text-align: right;
}

.head .topright p {
	font-size:34px;
	line-height:30px;
	text-align: right;
	color:#0a6239;
	font-weight:300;
	margin:0;
	font-family: "proxima-nova";
}

.head .topright .reviews {
	background:#f2f2f2;
	padding:0px;
	margin:15px 0 0 0;
	height:42px;
	width:220px;
	float: right;
	text-transform: uppercase;
    -webkit-transition: all .25s ease;
       -moz-transition: all .25s ease;
        -ms-transition: all .25s ease;
         -o-transition: all .25s ease;
            transition: all .25s ease;
}

.head .topright .reviews:hover {
	background:#0a6239;
}

.head .topright .reviews:hover p {
	color:#fff;
}

.head .topright .reviews p {
	font:14px "proxima-nova", Helvetica, Arial, sans-serif;
	color:#777;
	vertical-align: middle;
	text-align:center;
	line-height:42px;
	letter-spacing:0px;
	text-transform: none;
}

.head .topright .reviews p .stars {
	color:#ffcc00;
	letter-spacing:1px;
}

/****

FOOTER — Copyright statement at the bottom of each page

****/

.footer {
	clear:both;
	width:100%;
	padding:30px 0 10px 0;
	margin:10px 0 0 0;
	background: #222;
	overflow: hidden;
}

.footer .col {
	float: left;
	width:150px;
	margin:0 50px 0 0;
}

.footer ul.footer-menu {
	width: 121px;
	list-style: none;
	margin:0px;
}

.footer ul.footer-menu li {
	display: block;
}

.footer ul.footer-menu li.top {
	color:#fff;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom:1px solid #555;
	padding-bottom:5px;
	margin-bottom:5px;
}

.footer ul.footer-menu li a {
	font-size:13px;
	color:#777;
	margin:0 0 5px 0;
    -webkit-transition: all .2s ease;
       -moz-transition: all .2s ease;
        -ms-transition: all .2s ease;
         -o-transition: all .2s ease;
            transition: all .2s ease;
}

.footer ul.footer-menu li.active a, .footer ul.footer-menu li a:hover  {
	color:#fff;
	text-decoration: none;
}

.footer .legal {
	clear: both;
	padding:10px 0 0 0;
	font-size:13px;
	margin:20px 0 0 0;
	padding:10px 0 0 0;
	color:#555;
	border-top:1px solid #555;
}

.footer .legal a {
	color: #555;
}

/****

STANDARD CONTENT BOX in left column of every page

****/

.content {
	width:665px;
	background:#fff;
	padding:30px;
	margin:5px 0 0 0;
}

.content .nomargin-top {
	margin-top:0px !important;
}

.content .nomargin-bottom {
	margin-bottom:0px !important;
}

.content:first-of-type {
	margin:0px;
	/* min-height:920px; */
}

.content:only-of-type {
	margin:0px;
	min-height:919px;
}

.content .no-min-height {
	min-height:0px;
}

.gallery {
	width:900px;
}

.gallery-img {

}

.gallery-img:hover {
	opacity:0.75;
}

/****

STANDARD TYPOGRAPHY STYLES

****/

.content strong, .home strong {
	font-weight: bold;
}

.left {
	text-align: left !important;
}

.justify {
	text-align: justify !important;
}

.right {
	text-align: right !important;
}

.center {
	text-align: center !important;
}

.content h1.red, .content h2.red, .content p.red, .content span.red, .content li.red {
	color:#0a6239;
}

.content h1 {
	color:#0a6239;
	font:30px "Proxima-Nova", "Helvetica Neue", "Helvetica", Arial, sans-serif, arial, sans-serif;
	font-weight:500;
	margin:0 0 20px 0;
	padding:0;
	text-align:left;
	line-height:38px;
}

.content h1 strong,
.content h1.strong,
.content h2.strong {
	font-weight:700;
}

.content h2 {
	color:#333;
	font:22px "Proxima-Nova", "Helvetica Neue", "Helvetica", Arial, sans-serif, arial, sans-serif;
	font-weight:500;
	margin:0 0 15px 0;
	padding:0;
	text-align:left;
	line-height:31px;
}

.content h3 {
	color:#0a6239;
	font-weight:bold;
	font-family: "proxima-nova";
}

.content p {
	text-align: left;
}

.content p a {
	text-decoration: underline;
}

.gallery ul {
	list-style: none;
	margin:0px;
	padding:0px;
}

.content ol.numbered,
.home ol.numbered {
	list-style: decimal;
	margin:0 0 15px 40px;
}

.content ul.disc,
.home ul.disc {
	list-style: disc;
	margin:0 0 15px 40px;
}

.content ul
{
	list-style: square;
	margin:0 0 15px 40px;
}

.content ul li,
.content ol li
{
	margin:0px;
	padding:5px 0 5px 0;
	line-height: 22px;
}

.content li a:hover,
.content p a:hover,
.home li a:hover,
.home p a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

/* Kill margins at the end of CONTENT and HOME */

.content ol:last-child,
.content li:last-child,
.content p:last-child,
.box li:last-child,
.box ul:last-child,
.content ul:last-child,
.content li:last-of-type,
.home ol:last-child,
.home li:last-child,
.home p:last-child,
.home ul:last-child,
.home li:last-of-type  {
	margin-bottom:0;
	padding-bottom:0;
}

/****

STANDARD HORIZONTAL RULE

****/

.content .hr,
.home .hr {
	width:100%;
	height:1px;
	background:#e1e1e1;
	margin:15px 0 15px 0;
}

/****

INLINE IMAGE STYLES

****/

.content img {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.content .img-hero {
	border:1px solid #e1e1e1;
	margin:10px 0 15px 0
}

.content .img-two-up {
	width:665px;
	height:215px;
	margin:15px 0 0 0;
}

.content .img-two-up-left {
	width:310px;
	height:205px;
	background:#efefef;
	float:left;
	margin:0;
	padding:0;
	overflow:hidden;
}

.content .img-two-up-right {
	width:310px;
	height:205px;
	background:#efefef;
	float:right;
	margin:0;
	padding:0;
	overflow:hidden;
}

.content .img-two-up-left, .content .img-two-up-right {
	border:1px solid #e1e1e1;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.content .img-right {
	width:310px;
	height:205px;
	background:#efefef;
	float:right;
	margin:5px 0 15px 15px;
	padding:0;
	overflow:hidden;
	border:1px solid #e1e1e1;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.content .img-left {
	width:310px;
	height:205px;
	background:#efefef;
	float:left;
	margin:5px 20px 15px 0;
	padding:0;
	overflow:hidden;
	border:1px solid #e1e1e1;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.content .img-center {
	width:311px;
	height:215px;
	background:#efefef;
	display: block;
	margin-top:5px;
	margin-bottom:15px;
	margin-left:auto;
	margin-right:auto;
	padding:0;
	overflow:hidden;
	border:1px solid #e1e1e1;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.border-1px {
	border:1px solid #e1e1e1;
}

/****

COLUMN WIDTH STYLES

****/

.content .row {
	margin:0 -5px 0 -5px;
	padding:0;
	overflow: hidden;
}

.content .row:last-child {
	margin-bottom:-5px;
}

.content .row .five-columns {
	width:20%;
	float:left;
	padding:5px;
	min-height:10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content .row .four-columns {
	width:25%;
	float:left;
	padding:5px;
	min-height:10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content .row .three-columns {
	width:34%;
	float:left;
	padding:5px;
	min-height:10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content .row .three-columns#third {
	width:32%;
	padding:5px;
	min-height:10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content .row .two-columns {
	width:50%;
	float:left;
	padding:5px;
	min-height:10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content .row .split-25 {
	width:25%;
	float:left;
	padding:5px;
	min-height:10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content .row .split-75 {
	width:75%;
	float:left;
	padding:5px;
	min-height:10px;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

/****

PLACEHOLDER ELEMENTS

****/

.content .row .placeholder {
	min-height:10px;
}

.content .gray {
	background:#efefef;
	color:#444;
}

/****

CONTACT FORM STYLES

****/

.content .contact-map {
	border:1px solid #e1e1e1;
	margin:10px 0 10px 0;
}

.content .contact-form p {
	margin-bottom:5px;
}

.content .contact-form input[type=text], .content .contact-form textarea {
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	border:1px solid #e1e1e1;
	width:100%;
	margin:0 0 15px 0;
	padding:6px;
	-webkit-appearance: none;
	font:15px "Helvetica Neue", Helvetica, Arial, sans-serif;
	color:#555;
	-webkit-box-shadow: inset 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
	outline:none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

.content .contact-form input:focus, .content .contact-form textarea:focus {
	border-color: #0a6239;
}

.content .contact-form select {
	margin: 0 0 15px 0;
	-webkit-appearance: none;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	border:1px solid #e1e1e1;
	width:100%%;
	margin:0 0 15px 0;
	padding:6px;
	-webkit-appearance: none;
	font:15px "Helvetica Neue", Helvetica, Arial, sans-serif;
	color:#555;
	outline:none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    background:#efefef url('../img/select.png') no-repeat right;
}

.content .contact-form input[type=submit], .content .contact-form input[type=reset] {
	margin: 0px;
	-webkit-appearance: none;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	border:1px solid #0a6239;
	width:100%;
	margin:0;
	padding:6px;
	-webkit-appearance: none;
	font:15px "Helvetica Neue", Helvetica, Arial, sans-serif;
	color:#555;
	outline:none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    background:#0a6239;
    text-align: center;
    color:#fff;
    display:block;
	-webkit-font-smoothing: antialiased;
}

.content .contact-form input[type=reset] {
	background:#444;
	border-color:#444;
}

.content .contact-form input[type=submit]:hover, .content .contact-form input[type=submit]:active, .content .contact-form input[type=submit]:focus, .content .contact-form input[type=reset]:hover, .content .contact-form input[type=reset]:active, .content .contact-form input[type=reset]:focus {
	opacity:0.8;
	cursor:pointer;
}

.content .contact-form input.error {
	border-color:#CC0000;
}

.content .contact-form em {
	text-decoration:none;
	text-decoration:none;
	color:#aaa;
	font-size:13px;
	letter-spacing:1px;
}

/****

CUSTOMER REFERENCES TABLE

****/

.content table.references {
	width: 100%;
	border:1px solid #e1e1e1;
	border-collapse: collapse;
}

.content table.references td {
	padding:10px;
	font:14px "Helvetica Neue", Helvetica, Arial, sans-serif;
	color:#555;
	width:33%;
	border:1px solid #e1e1e1;
	border-collapse: collapse;
}

.content table.references tr.header td {
	color:#fff;
	font:15px "Helvetica Neue", Helvetica, Arial, sans-serif;
	background:#0a6239;
	font-weight: bold;
}

.content table.references tr:nth-child(odd) {
	background:#efefef;
}

/****

STANDARD BUTTONS

****/

.content a.flat {
	margin: 0px;
	-webkit-appearance: none;
	width:100%;
	margin:0;
	padding:6px;
	-webkit-appearance: none;
	font:15px "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color:#555;
	outline:none;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    background:#0a6239;
    text-align: center;
    color:#fff;
    display: block;
}

.content a.gray {
	background:#444 !important;
	border:1px solid #444 !important;
}

.content a.flat:hover, .content a.flat:active, .content a.flat:focus {
	opacity:0.8;
	cursor:pointer;
}

/****

STANDARD BOXES

****/

.content .box {
	width:100%;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
    padding:20px;
    border:1px solid;
   	border-color: #e1e1e1;
   	background:#fcfcfc;
   	margin-bottom:15px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.content .box:last-of-type {
	margin-bottom: 0px;
}

.content .box.dashed {
	border-width:3px !important;
	border-style:dashed !important;
}

.content .box.green {
	background:#ecf4f0;
	border-color:#b1d5c5;
}

.content .box.green h3, .content .box.green p {
	color:#1a8455;
}

.content .box.green .flat {
	background:#1a8455;
	border-color:#1a8455;
}

.content .box.yellow {
	background:#fffbe6;
	border-color:#eac46a;
}

.content .box.yellow h3, .content .box.yellow p {
	color:#dba449;
}

.content .box.yellow .flat {
	background:#dba449;
	border-color:#dba449;
}

.content .box.red {
	background:#ffebe8;
	border-color:#e79495;
}

.content .box.red h3, .content .box.red p {
	color:#b47474;
}

.content .box.red .flat {
	background:#b47474;
	border-color:#b47474;
}


.content .box.blue {
	background:#f0f8ff;
	border-color:#9bc4e2;
}

.content .box.blue h3, .content .box.blue p {
	color:	#3687b1;
}

.content .box.blue .flat {
	background:#3687b1;
	border-color:#3687b1;
}

/****

PORTFOLIO SLIDER — Slider placed within CONTENT div

****/

.slider-portfolio {
	width:663px;
	height:350px;
	border:1px solid #e1e1e1;
	padding:0;
	margin:20px 0 20px 0;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	background: #e1e1e1;
}

.slider-portfolio ul li p {
	width:150px;
	height:40px;
	color:#333;
	background:#ccc;
	margin:0px auto;
	padding:0px;
	font-size:16px;
	line-height: 40px;
	font-weight:700;
	text-align:center !important;
	opacity:1;
	letter-spacing:0;
	position: relative !important;
	left:0;
	bottom:0;
	font-family: "Futura-PT";
}

.slider-portfolio ul li img {
	margin-top:-40px;
}

/** sidebar elements **/

.side-form {
	margin: 0 0 10px 0;
	border:1px solid #dedede;
	background: #fff;
	width:204px;
	padding:0 0 15px 14px;
}

.side-form p.h1 {
	color:#0a6239;
	font-size:32px;
	font-family: "proxima-nova";
	line-height:28px;
	margin:20px 0 10px 0;
}

.side-form p.h1 strong {
	font-weight: 800;
}

.side-form p.h2 {
	color:#999999;
	font-size: 15px;
	padding:0 0 0 0;
}

.side-form p.h3 {
	color:#0a6239;
	font-size: 14px;
	padding:0 0 0 5px;
	line-height: 18px;
	font-style: italic;
}

.side-form input {
	width:165px;
	padding:10px;
	margin:0 0 5px 0;
	border: 1px solid #dedede;
	background: #fff;
	font:14px "proxima-nova", Arial, sans-serif, arial, sans-serif;
	color:#555;
	outline: none;
	-webkit-appearance: none;
	 -webkit-border-radius: 0;
}

.side-form input:focus {
	border: 1px solid #0a6239;
}

.side-form input[type=submit] {
	-webkit-appearance: none;
	width:100px;
	padding:8px 0 8px 0;
	margin:5px 0 0 0;
	outline:none;
    background:#0a6239;
	border: 1px solid #0a6239;
    text-align: center;
    color:#fff;
    display:block;
	-webkit-appearance: none;
	cursor: pointer;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
}

.side-form input[type=submit]:hover {
	opacity: 0.7;
}

.side-box {
	width:219px;
	border-top:8px solid #0a6239;
	border-left:1px solid #dedede;
	border-right:1px solid #dedede;
	border-bottom:1px solid #dedede;
	background: #fff;
	padding:0;
	margin:0 0 10px 0;
	-webkit-transition: margin .15s linear;
	transition: margin .15s linear;
}

.side-box img {
	width:219px;
	height:110px;
	vertical-align: middle;
	display: block;
	margin:0;
}

.side-box p.big {
	color:#0a6239;
	font-size:25px;
	font-family: "proxima-nova";
	line-height:28px;
	margin-left:14px;
}

.side-box p.small {
	color:#999999;
	font:15px "proxima-nova", Arial, sans-serif, arial, sans-serif;
	line-height:15px;
	margin-left:15px;
}

.side-box:hover {
	margin:0 0 10px 10px;
}

.side-box p.first {
	margin-top:15px;
	margin-bottom:5px;
}

.side-box p.second {
	margin-top:0px;
	margin-bottom:10px;
}

/**

Choose Your Services
Tooltip

**/

.side-services {
	background: #0a6239;
	margin:0 0 5px 0;
	border: none;
	width: 205px;
	height: 45px;
	padding-right:15px;
	font-size: 16px;
	line-height: 45px;
	font-family: "proxima-nova";
	text-transform: capitalize;
	position: relative;
	cursor: pointer;
	outline: none;
	color:#fff;
	text-align: right;
}

.side-services:after {
	content: '';
	position: absolute;
	width: 12%;
	height: 3px;
	background: #fff;
	top: 14px;
	left: 15px;
	box-shadow: 
		0 7px 0 #fff, 
		0 14px 0 #fff;
}

.side-services ul {
	visibility: hidden;
	opacity: 0;
	width:137px;
	margin:10px 0 0 0;
	position:absolute;
	-webkit-transition: all .2s linear;
	transition: all .2s linear;
}

.side-services:hover ul, .side-services:active ul {
	visibility: visible;
	opacity: 1;
	left:0;
	margin:0 0 0 0;
	z-index:9999;
}

.side-services ul li {
	display: block;
	width: 220px;
	height:35px;
	background: #fff;
}

.side-services ul li a {
	display: block;
	text-align: left;
	width: 205px;
	height:35px;
	color:#fff;
	font:13px "proxima-nova", Arial, sans-serif, arial, sans-serif;
	line-height: 35px;
	font-weight: 500;
	background:#0a6239;
	padding-left:15px;
	margin:0 0 0 0;
	-webkit-transition: opacity .25s ease;
	transition: opacity .25s ease;
}

.side-services ul li:hover a {
	opacity: 0.8;
}

ul.gallery {
  list-style:none;
  margin:0 0 -15px 0 !important;
  padding:0;
  overflow: hidden;
}

ul.gallery li {
  list-style:none;
  display:inline;
}

ul.gallery li a {
  margin:0px 25px 20px 0px;
  float:left;
  display:inline;
  border: 3px solid #ccc;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}

ul.gallery li a img {
display: block;
vertical-align: top;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}

ul.gallery li a:hover {
border-color:#7b283f;
opacity: 1.0;
}

ul.gallery li:nth-child(4n) a {
  margin-right:0;
}

