
/* mini-reset */
*, *::before, *::after {
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
html, body {
	padding:0; 
	margin:0;
}
body {
	min-height:100%;
}

:root {
  /* All of the colours used are defined here */
  
  /* Not true black */
  --black: rgb(10, 10, 10);
  /* Not true white */
  --white: rgb(250, 250, 250);
  /* WGM maroon */
  --maroon: rgb(115, 20, 114);
  /* WGM lime */
  --lime: rgb(213, 225, 77);
  /* The background of the header */
  --header-bg: var(--maroon);
  /* The background of the body */
  --body-bg: rgb(248, 248, 248);
  /* The background of any highlighted panels */
  --panel-bg: rgb(244, 246, 249);
  /* The background of any secondary highlighted panels */
  --paneltwo-bg: rgb(240, 240, 240);
  /* The standard text colour */
  --text-body: rgb(24, 24, 24);
  /* The highlighted text colour */
  --text-em: rgb(50, 50, 50);
  /* Contrasting text colour */
  --text-white: var(--white);
  /* The background colour of any buttons */
  --button-bg: rgb(80, 80, 80);
  /* The border colour of any buttons */
  --button-border: rgb(80, 80, 80);
  /* The background colour of any contrasting stripe */
  --stripe-bg: rgb(214, 223, 229);
  /* The hover colour of buttons */
  --button-hover: rgb(220, 223, 221);
  /* The banner strapline colour */
  --banner-strap: rgb(174, 50, 57);
  /* Testimonial 1 background */
  --test-one-bg: rgb(230, 245, 230);
  /* Testimonial 2 background */
  --test-two-bg: rgb(240, 240, 240);
  /* Testimonial border colour */
  --test-border: rgb(255, 255, 255);
  /* Form border colour */
  --form-border: rgb(0,153,203);
  /* Form background colour */
  --form-bg: rgb(236, 241, 248);
  /* Form input border colour */
  --input-border: rgba(255, 255, 255, 0.5);
  /* Form submit colour */
  --submit-col: rgb(136, 47, 0);
  
  /* Free format definitions */
  
  --pale-grey: rgb(234, 243, 249);
  --light-grey: rgb(190, 190, 190);
  --mid-grey-alt: rgb(150, 150, 150); 
  --mid-grey: rgb(122, 122, 122);
  --green: rgb(10, 241, 10);
  
  /* All box shadows are defined here */
  
  --mid-shadow: rgba(128, 128, 128, 0.4);
  --dark-shadow: rgba(100, 100, 100, 0.5);
  --vdark-shadow: rgba(0, 0, 0, 0.2);
}

body {
	margin: 0px;
	padding: 0px;
	font: 0.9em Arial, Helvetica, sans-serif;
	color: var(--text-body);
	background-color: var(--body-bg);
}
td.body_edit {
	margin: 0px;
	padding: 0px;
	max-width: 1200px;
	font: 0.9em Arial, Helvetica, sans-serif;
	color: var(--text-body);
	background-color: var(--body-bg);
}

.js #menu {
	display: none;
}
.js .selectnav {
	display: block;
	width: 70%;
	margin: 4% auto 4% auto;
	font-size: 120%;
	padding: 4px;
}

div#titlewrap {
	margin: 0px;
	padding: 0px;
	width: auto;
	height: 180px;
	background-color: var(--header-bg);
	border-bottom: 3px solid var(--lime);
}

div#titlebox {
	box-sizing: border-box;
	font-size: 140%;
	margin: 0px auto 0px auto;
	padding: 14px 0px 0px 0px;
	width: auto;
	max-width: 1000px;
	height: 185px;
	position: relative;
}
#titlebox a {
	display: block;
	width: 20%;
	float: left;
	text-align: center;
}

@media only screen and ( max-width: 640px ) {
    #titlewrap {
	   height: 200px;
    }
    #titlebox {
		max-width: 98%;
	    height: 185px;
   }
}
@media only screen and ( max-width: 768px ) {
    #titlewrap {
	   height: 150px;
    }
    #titlebox {
	    height: 185px;
   }
}
img#logo {
	padding: 0px;
	height: 162px;
	float: left;
}
div.title {
    clear: both;
	float: left;
	position: relative;
}
div.title_left {
	text-align: left;
	padding: 16px 0px 0px 10px;
	font-size: 160%;
	font-weight: bold;
	color: var(--black);
	position: relative;
}
div.title_right {
	clear: none;
	width: 45%;
	max-width:400px;
	height: 140px;
	float: right;
	text-align: left;
	padding: 0px 0px 0px 20px;
	font-size: 110%;
}
.title_right span {
	font-size: 160%;
	display: inline-block;
	width: 100%;
}
.title_right a {
	display: inline !important;
	color: var(--lime);
}
@media only screen and ( max-width: 640px ) {
    img#logo {
    	padding: 10px 0px 0px 10px;
	    width: 280px;
		float: none;
    }
    div.title_right {
    	clear: both;
	    padding: 0px 0px 0px 10px;
	    font-size: 80%;
    }
}
@media only screen and ( max-width: 768px ) {
	img#logo {
		padding: 0px 0px 0px 20px;
	    width: 400px;
	}
	div.title_right {
    	width: 45%;
	    max-width:400px;
	    height: 140px;
	    float: right;
	    text-align: left;
	    padding: 0px 0px 0px 20px;
	    font-size: 110%;
	}
}

div.banner_social {
	position: absolute;
	bottom: 10px;
	right: 10px;
	text-align: right;
	box-sizing: border-box;
	padding: 0px 0px 5px 0px;
}
.banner_social img {
	margin-left: 50px;
	padding: 0px 0px 14px 10px;
}
.banner_social a:hover img {
	opacity: 0.7;
}
.social a:hover img {
	opacity: 0.7;
}

div#menubox {
	clear: both;
	margin: 10px auto 0px auto;
	padding: 0px;
	width: auto;
	max-width: 1200px;
	height: 40px;

}
div#menu {
	float: none;
	clear: both;
	width: 100%;
}
#nav {
	position: relative;
	margin-top: 12px;
	font-size: 125%;
}
#nav ul {
	list-style: none;
	position: relative;
}
#nav > a {
	display: none;
}
.menu1 {
	width: 100%;
}
.menu2 {
	width: 50%;
}
.menu3 {
	width: 33.3%;
}
.menu4 {
	width: 25%;
}
.menu5 {
	width: 20%;
}
.menu6 {
	width: 16.6%;
}
.menu7 {
	width: 14.2%;
	font-size: 95%;
}
.menu8 {
	width: 12.5%;
}
.menu9 {
	width: 11%;
}
.menu10 {
	width: 10%;
}

#nav li {
	position: relative;
	display: block;
	margin: 0px 0px 0px 0px;
}
#nav div {
	position: relative;
}
#nav div a {
	color: var(--text-body);
	display: block;
	box-sizing: border-box;
	float: left;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	padding: 4px 0px 4px 0px;
	margin: 0px;
	border-left: 1px solid var(--mid-grey)
}
#nav div span {
	color: var(--text-body);
	display: block;
	box-sizing: border-box;
	float: left;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
	padding: 4px 0px 4px 0px;
	margin: 0px;
	border-left: 1px solid var(--mid-grey);
}
#nav div a:hover {
	background-color: var(--text-body) !important;
	color: var(--panel-bg);
}

#nav span:after {
	width: 0;
	height: 0;
	border: 0.313em solid transparent; /* 5 */
	border-bottom: none;
	border-top-color: rgba(var(--panel-bg), 0.6);
	content: '';
	vertical-align: middle;
	display: inline-block;
	position: relative;
	right: -0.313em; /* 5 */
}


@media only screen and ( max-width: 1000px ) {
	#nav {
		width: 100%;
		position: static;
		margin: 0;
	}
}

@media only screen and ( max-width: 640px ) {
	 .menu2, .menu3, .menu4, .menu5, .menu6, .menu7, .menu8, .menu9, .menu10 {
		width: 100%;
	 }
	#nav {
		position: relative;
		float: none;
		top: auto;
		left: auto;
	}
	#nav > a {
		width: 3.125em; /* 50 */
		height: 3.125em; /* 50 */
		text-align: left;
		text-indent: -9999px;
		background-color: var(--text-body);
		position: relative;
	}
	#nav > a:before,
	#nav > a:after {
		position: absolute;
		border: 2px solid var(--white);
		top: 35%;
		left: 25%;
		right: 25%;
		content: '';
	}
	#nav > a:after {
		top: 60%;
	}

	#nav:not( :target ) > a:first-of-type,
	#nav:target > a:last-of-type {
		display: block;
	}

	/* first level */

	#nav > div {
		height: auto;
		display: none;
		position: absolute;
		left: 0;
		right: 0;
		z-index: 1000;
	}
	#nav div a {
		float: none;
	}
	#nav > div::after {
		content: '';
		display: table;
		clear: both;
	}
	#nav:target > div {
		display: block;
	}
	#nav > div > a {
		width: 90%;
		float: none;
		z-index: 300;
		height: auto;
		text-align: center;
		font-size: 120%;
		padding: 0 0.833em; /* 20 (24) */
		line-height: 300%;
		background-color: var(--body-bg);
		border-bottom: 1px solid var(--pale-grey);
		border-right: 1px solid var(--pale-grey);

	}
	#nav > div > a:first-child {
		border-top: 1px solid var(--pale-grey);
	}

}

div#content {
	clear: both;
	margin: 0px auto 30px auto;
	padding: 0px 0px 0px 0px;
	width: auto;
}
div#footerwrap {
	clear: both;
	margin: 30px 0px 0px 0px;
	padding: 0px;
	background-color: var(--text-body);
	border-top: 5px solid var(--black);
}
div#logobox {
	width: auto;
	position: relative;
	padding-top: 10px;
}
div.social {
	clear: both;
	text-align: right;
	box-sizing: border-box;
	padding: 0px 30px 10px 0px;
}
div#ind {
	width: 50%;
	float: right;
	text-align: right;
	box-sizing: border-box;
}
#ind img {
	padding: 0px 10px 0px 0px;
	margin: 0px;
}
div#footerwrap {
	margin: 0px;
	padding: 0px;
}

div#buttonbox {
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 150px;
	height: 100px;
	float: left;

}
#buttonbox img {
	display: block;
	margin: 20px 0px 0px 30px;
	padding: 0px;
	border: 1px solid var(--light-grey);
	box-shadow: 2px 2px 2px 1px var(--dark-shadow);
}
div#footerbox {
	clear: both;
	margin: 40px auto 0px auto;
	padding: 0px;
	width: auto;
	height: 100px;

}
div.foot_menu {
	width: 460px;
	float: left;
}
@media screen and (min-width: 1024px){
div#menubox {
	width: 1000px;
}
div#content {
	width: 1000px;
}
div#footerbox {
	width: 1000px;
}
div.foot_menu {
	width: 690px;
}

}
div.copy {
	clear: both;
	font-size: 90%;
	text-align: left;
	line-height: 150%;
	margin: 20px 20px 20px 0px;
	padding: 20px 0px 0px 0px;
}
div.legal {
	margin: 20px 0px 10px 40px;
}
.legal a {
	display: block;
	float: left;
	margin-right: 8px;
	text-decoration: none;
	color: var(--body-bg);
	padding: 0px 2px;
}
.legal a:hover {
	color: var(--white);
    font-weight: bold;
	padding: 0 0 0 0px;
}
}
.legal a:hover {
}

ul#footermenu {
	display: block;
	clear: both;
	margin: 10px 0px 0px 0px;
	list-style: none;

}
#footermenu li {
	display: block;
	float: left;
	text-align: center;
	margin: 8px 8px 0px 0px;

}
#footermenu li a {
	text-decoration: none;
	color: var(--body-bg);
	padding: 0px 2px;

}
#footermenu li a:hover {
	color: var(--white);
    font-weight: bold;
	padding: 0 0 0 2px;
}
@media only screen and ( max-width: 640px ) {
    div#buttonbox {
	    display: none;
	}

	ul#footermenu {
		display: none;
	}
}

.back_to_top {
	display: block;
	position: fixed;
	bottom: 10px;
	z-index: 1000;
	right:10px;
}
@media only screen and ( max-width: 640px ) {
   .back_to_top {
    	right:60px;
   }
}
.back_to_top a {
	width: 50px;
	text-indent:-9999px;
	height: 50px;
	display: block;
	margin: 0;
	border-radius: 6px;
	background: var(--mid-grey-alt) url(/graphics/top.png) no-repeat center center;
	box-shadow: 0px 0px 5px 3px var(--mid-shadow);
}
.back_to_top a:hover {
	background-color: var(--black);
}

h2 {
	font-weight: bold;
	font-size: 22px;
	padding: 0px;
	margin: 14px 0px 20px 0px;
	color: var(--text-body);
}
p {
	margin: 0px 0px 15px 0px;
	padding: 0px;
}
div.banner {
	width: 100%;
	margin: 5px 0px 20px 0px;
}
p.banner_strap {
	clear: both;
	color: var(--banner-strap);
	line-height: 1.0;
	font-size: 310%;
	margin: 0px;
	padding: 20px 0px;
	text-align: center;
}

div.page_wrapper, div.page_content {
	width: 96%;
	max-width: 1200px;
	margin: auto;
	clear: both;
	padding: 14px 6px 20px 6px;
	position: relative;
}
.page_wrapper div, .page_content div {
	margin-top: 14px;
}
.page_wrapper p, .page_content p {
	margin-top: 14px;
}
div.full_page {
	margin: 20px;
	position: relative;

}
div.full_page img {
	margin: 10px 20px 20px 30px;
}
.hptop {
	display: flex;
	justify-content: space-between;
}
.hpdynh {
   display: flex;
   justify-content: space-around;
   padding: 0 5%;
}
div.hpstexts {
	display: flex;
	justify-content: space-between;
	font-size: 160%;
	font-style: italic;
}	
.lq {
	width: 16%;
	text-align: left;
	margin-top: 0 !important;
}
.lq img {
	padding: 0 !important;
	margin: 0 !important;
}
.rq {
	width: 16%;
	text-align: right;
	margin-bottom: 0 !important;
}
.rq img {
	padding: 14px 0 0 0 !important;
	margin: 0 !important;
}
@media only screen and ( max-width: 440px ) {
   .hptop {
	   flex-direction: column;
   }
   .hpdynh {
	   flex-direction: column;
   }
   .hpstexts {
	   flex-direction: column;
   }
   .hpstexts div {
	   width: 90%;
   }
}
a.book {
	display: inline-block;
	border: 1px solid var(--black);
	border-radius: 7px;
	background-color: var(--black);
	padding: 4px 30px;
  	color: var(--white);
	font-weight: bold;
	font-size: 125%;
	text-decoration: none;
}
a.book:hover {
    color: var(--black);	
	background-color: var(--button-hover);
	text-decoration: none;
}
div.hptext {
	width: auto;
	float: none;
	margin-top: -10px;
}
img.hpimg01 {
	display: block;
}
@media only screen and ( max-width: 440px ) {
	img.hpimg01 {
		float: none !important;
	}
}
div.acc_logos {
	text-align: center;
	vertical-align: middle;
}
div.hpdyn {
	width: auto;
	float: none;
	margin-right: 0px;
}

p.count {
	padding-top: 40px;
	font-weight: bold;
}
div.hplower {
	clear: both;
	display: block;
	border-spacing: 25px;
	border-collapse: separate;
}
.hplower div {
	display: block;
	width: auto;
	margin: 20px auto 40px auto;
}
div.feature {
	position: relative;
	border: 1px solid var(--black);
	border-radius: 7px;
	margin: 20px auto 40px auto;
	width: 300px;
	background-image: linear-gradient(rgba(var(--light-grey), 0.7), rgba(var(--light-grey), 0));
}

img.feature {
	margin: 0px;
	padding: 0px;
	width: 100%;
	max-width: 100%;
}
.feature p {
	padding: 4px 14px 14px 14px;
}
div.feature2{
	width: 28%;
	text-align: center;
}
@media only screen and ( max-width: 440px ) {
   div.feature2 {
	   width: 90%;
   }
}
a.featurelinktext {
	display: inline-block;
	width: 80%;
	border: 1px solid var(--text-body);
	border-radius: 6px;
	background-color: var(--text-body);
	padding: 8px 0px 8px 0px;
  	color: var(--white);
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	position: relative;
	top: -26px;

}
a.featurelinktext:hover {
	text-decoration: none;
}
img.feature2 {
	margin: 0px;
	padding: 0px;
	width: 100%;
	max-width: 100%;
}
.feature2 p {
	margin-top: 0 !important;
	padding: 0px 14px 14px 14px;
	text-align: left;
}
div#oration2 {
	width: 28%;
	text-align: center;
}
@media only screen and ( max-width: 440px ) {
   div#oration2 {
	   width: 90%;
   }
}
span#oration_head2 {
	display: inline-block;
	width: 60%;
	border: 1px solid var(--text-body);
	border-radius: 6px;
	background-color: var(--text-body);
	padding: 8px 0px 6px 0px;
  	color: var(--white);
	font-weight: bold;
	text-transform: uppercase;

}
a#oration_head2 {
	display: inline-block;
	width: 60%;
	border: 1px solid var(--text-body);
	border-radius: 6px;
	background-color: var(--text-body);
	padding: 8px 0px 6px 0px;
  	color: var(--white);
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;

}
a#oration_head2:hover {
    color: var(--black);	
	background-color: var(--button-hover);
	text-decoration: none;
}
p#oration_text2 {
	display: block;
	padding: 14px;
	text-align: left;

}
span#oration_attrib2 {
	display: block;
	padding: 4px 14px 14px 14px;
	text-align: right;
	margin-left: 14px;
	font-weight: bold;
}
div#oration {
	border: 1px solid var(--black);
	border-radius: 7px;
	margin: 20px auto 40px auto;
	width: 300px;
	background-image: linear-gradient(rgba(var(--light-grey), 0.7), rgba(var(--light-grey), 0));
}
span#oration_head {
	display: block;
	border: 1px solid var(--black);
	border-radius: 7px 7px 0 0;
	min-height: 32px;
	background-color: var(--text-body);
	padding: 16px 12px 0px 12px;
  	color: var(--body-bg);
	font-weight: bold;
}
span#oration_text {
	display: block;
	padding: 14px;

}
span#oration_attrib {
	display: block;
	padding: 4px 14px 14px 14px;
	text-align: right;
	margin-left: 14px;
	font-weight: bold;
}
div.stripe {
	width: 100%;
	background-color: var(--button-hover);
}
div.latestnews {
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
	border: 1px solid var(--black);
	margin: 20px auto 40px auto;
	width: 300px;
	background-image: linear-gradient(rgba(var(--light-grey), 0.7), rgba(var(--light-grey), 0));
}
span.latestnews_head {
	display: block;
	min-height: 32px;
	background-color: var(--text-body);
	padding: 16px 12px 0px 12px;
	border-top-right-radius: 28px;
  	color: var(--body-bg);
	font-weight: bold;
}
.latestnews div {
	padding: 14px;
	margin: 0px;

}
div.stext {
	width: 90%;
	float: none;
	margin: 14px auto 24px auto;
	padding: 56px 10px 56px 10px;
	border: 1px solid var(--black);
	border-radius: 10px;
	box-shadow: 0px 0px 2px 3px var(--dark-shadow);
	background:
		url(/themes/wgse674/quote_left.png) top left no-repeat,
		url(/themes/wgse674/quote_right.png) bottom right no-repeat;
}
div.newsindex {
	clear: both;
	margin-left: 30px;
	padding-bottom: 50px;
}
div.news_index_entry {
	clear: both;
	margin-top: 20px;
}
p.newsdate {
	font-size: 110%;
	color: var(--text-body);
	font-variant: small-caps;
}
p.newshead {
	font-size: 120%;
	margin-left: 20px;
}
.newshead span {
	display: block;
	font-size: 80%;
	padding: 10px 0px 6px 30px;
}
p.newspagedate {
	font-size: 110%;
  	color: var(--text-body);
	font-variant: small-caps;
}
p.newspagehead {
	font-size: 120%;
	font-weight: bold;
  	color: var(--text-body);
}
span#newsprev {
	display: block;
	float: left;
}
span#newsnext {
	display: block;
	float: right;
}

div.group_item {
	clear: both;
	position: relative;
	margin-left: 50px;
}
p.item_description {
	width: auto;
	float: none;
	position: relative;
	text-align: left;
	padding: 16px 5px 0px 0px;
}
span.item_title {
	display: block;
	font-weight: bold;
	font-size: 140%;
	position: relative;
	padding-bottom: 10px;
}
.item_title a {
	color: var(--text-body);
}
img.pgthumb {
	display: block;
	float: left;
}
img.ppimg01, img.ppimg02, img.ppimg03, img.ppimg04 {
	display: block;
	padding: 0px;
	margin: 10px 30px 10px 0px;
	border: 1px solid var(--button-border);
}
div.docs {
	clear: both;
	margin-left: 25px;
}
div.docs img {
	padding: 8px 0px 0px 0px;
	margin: 0px;
}
div.docs_group {

}
span.docs_group_title {
	display: block;
	margin-top: 20px;
	font-weight: bold;
}
span.docs_link {
	display: block;
	padding-left: 16px;
}
a.docs_link {
	padding-left: 8px;
	padding-bottom: 8px;
}
div.portfolio_pictext {
	clear: both;
}
div.pictext_item {
	clear: both;
}
.pictext_item img {
	float: left;
}
div.pictext_text {
	width: 75%;
	margin-top: 0px;
	padding-top: 0px;
	float: left;
}
div.pictext {
	margin: 20px 0px 0px 30px;
	line-height: 24px;

}
.portfolio_pictext img {
	display: block;
	padding: 0px;
	margin: 20px;
	border: 1px solid var(--button-border);
	box-shadow: 8px 8px 6px 1px var(--dark-shadow);
}
@media only screen and ( max-width: 640px ) {
   div.portfolio_pictext {
	   clear: both;
   }
   div.pictext_item {
	   clear: both;
   }
   .pictext_item img {
	   float: left;
   }
   div.pictext_text {
	   width: 90%;
	   margin-top: 0px;
	   float: left;
   }
   div.pictext {
	   margin: 20px 0px 0px 30px;
	   line-height: 24px;
   }
   .portfolio_pictext img {
   	margin: 20px 20px 10px 0px;
   }
}
div.multi_pictext {
	position: relative;
	display: table;
	table-layout: fixed;
	clear: both;
}
div.pictext_row {
	display: table-row;
	position: relative;
}
div.pictext4col {
	display: table-cell;
	box-sizing: border-box;
	vertical-align: top;
	text-align: center;
	width: 23%;
	padding-top: 20px;
	position: relative;
}
.pictext4col img {
	width: 90%;
	max-width: 200px;
	padding: 0px;
	margin-bottom: 5px;
	border: 1px solid var(--body-bg);
	box-shadow: 8px 8px 5px 1px var(--dark-shadow);
}
.pictext4col p {
	width: 60%;
	padding-top: 0px;
	margin: 0px auto;
	font-size: 90%;
	line-height: 1.1;
}
div.multi_group_index {
  	position: relative;
	display: table;
	table-layout: fixed;
	clear: both;
}
div.index_row {
	display: table-row;
	position: relative;
}
div.index2col {
	display: table-cell;
	box-sizing: border-box;
	vertical-align: top;
	text-align: left;
	width: 48%;
	padding-top: 20px;
	position: relative;
}
div.index2col img {
	padding: 0px;
	border: 1px solid var(--body-bg);
	box-shadow: 8px 8px 5px 1px var(--dark-shadow);
	margin-bottom: 10px;
}
p.group_index_2col {
	width: 50%;
	float: left;
	padding-left: 15px;
	margin-top: 0px !important;
}
a.pgindex {
	display: block;
	font-weight: bold;
	font-size: 110%;
	padding-bottom: 10px;
}
div.leftcol {
	width: 400px;
	position: relative;
	float: left;
	margin-right: 10px;
}
div.rightcol {
	width: 380px;
	margin-left: 10px;
	float: left;
}
.rightcol div.pictext_item {
	clear: both;
	margin: 20px 10px 10px 10px;
	background-color: var(--pale-grey);
	padding: 10px;
	box-shadow: 8px 8px 5px 1px var(--dark-shadow);
}
.rightcol img.pppictext {
	padding: 0px 10px 0px 0px;
	margin: 0px 10px 10px 10px;
}
.rightcol div.pictext_text {
	margin-top: 10px;
	float: left;
}

div.portfoliolinks {
	margin: 30px 0px 0px 20px;
	padding: 14px;
	clear: both;
	width: 220px;
	box-shadow: 0px 0px 3px 2px var(--dark-shadow);
}
p.portlinktext {
	font-weight: bold;
	color: var(--button-bg);
}
p.portfoliolink {
	margin-left: 12px;
}
p.link_head {
	clear: both;
	font-size: 130%;
	font-weight: bold;
	padding: 30px 0px 0px 0px;
	margin: 0px;
}
div.link_wrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	padding-bottom: 30px;
}
div.link_entry {
	clear: both;
	padding: 10px;
	position: relative;
}
div.linktitle {
	width: 200px;
	float: left;
	text-align: right;
	margin-right: 20px;
	font-weight: bold;
}

div.linkdesc {
	float: left;
	margin-right: 40px;
	width: 500px;
}
@media only screen and ( max-width: 640px ) {
    div.linktitle {
		text-align: left;
	}
	div.linkdesc {
		max-width: 96% !important;
	}
	#threebest {
	   display: none;
	}
}

/* Testimonial page styles */

.testimonials-list {
	display: flex;
	flex-wrap: wrap;
}
.testimonial-wrapper {
	display: flex;
	flex: 0 0 30%;
	align-items: center;
}
.testimonial {
	margin: 0;
}	
.t_attr {
	display: block;
	text-align: right;
	font-weight: bold;
	padding: 10px 0;
}
.t1 {
	margin: 10px;
	padding: 20px;
	background-color: var(--test-one-bg);
	border: 2px solid var(--test-border);
    box-shadow: 4px 4px 10px 2px var(--vdark-shadow);
}
.t2 {
	margin: 10px;
	padding: 20px;
	background-color: var(--test-two-bg);
	border: 2px solid var(--test-border);
    box-shadow: 4px 4px 10px 2px var(--vdark-shadow);
	
}
@media only screen and ( max-width: 640px ) {
    .testimonial-list {
    	flex-direction: column;
   }
   .testimonial-wrapper {
	   width: 100%;
		flex: 0 0 90%;
   }
}

div.contact_content {
    width: auto;
	float: left;
	margin: 0px;
	padding: 0px 0px 50px 0px;
}
div.contactform {
	width: 500px;
	float: left;
}
div.contact_map {
	max-width: 30%;
	float: left;
	margin: 0px;
	padding: 0px;
}
div.contact_details {
	clear: both;
	margin-left: 20px;

}
div.contact_head {
	font-weight: bold;
	color: var(--button-bg);
	float: left;
	text-align: left;
	margin-right: 20px;

}
div.contact_item {
	float: left;
	margin: 5px 20px 0px 10px;

}
div.contact_list {
	clear: both;
}

@media only screen and ( max-width: 640px ) {
   div.contact_content {
	   width: auto;
	   max-width: 96%;
	   float: none;
	   margin: 0px;
	   padding: 0px;
   }
   div.contact_map {
	   width: auto;
	   max-width: 96%;
	   float: none;
	   margin: 20px 0px 0px 0px;
	   padding: 20px 0px 0px 20px;
   }
   .contact_map img {
	   max-width: 90%;
   }

   #map_canvas div {
	   margin: 0px !important;
	   padding: 0px !important;
   }
   div.contact_details {
	   clear: both;
	   box-sizing: border-box;
	   margin-left: 20px;
   }
   div.contact_head {
	   box-sizing: border-box;
	   font-weight: bold;
	   color: var(--button-bg);
	   width: 35%;
	   float: left;
	   text-align: left;
	   margin-right: 20px;
   }
   div.contact_item {
	   box-sizing: border-box;
	   float: left;
	   margin: 5px 20px 0px 10px;
	   width: 60%;
   }
   div.contact_list {
	   clear: both;
   }
}
div.contact_form {
	clear: both;
	position: relative;
	width: 95%;
	max-width: 600px;
	box-sizing: border-box;
	margin: 30px auto 0px auto;
	padding: 30px 20px 30px 20px;
	background-color: var(--black);
	color: var(--white);
}

div.contact_element {
	clear: both;
	margin-top: 10px;
	font-weight: bold;
}
div.contact_element_right {
	clear: both;
	margin-top: 10px;
	margin-left: 25%;
	padding-bottom: 24px;
	font-weight: bold;
}
span.contact_formhead {
	display: block;
	float: left;
	width: 25%;
}
.contact_form input, .find_form input {
	appearance: none;
	width: 70%;
	height: 25px;
	border: 1px solid var(--form-border);
	background-color: var(--form-bg);
	padding-left: 10px;
}
.contact_form select {
	appearance: none;
	width: 70%;
	height: 25px;
	border: 1px solid var(--form-border);
	font-weight: bold;
	font-size: 85%;
	padding-top: 4px;
	background-color: var(--form-bg);
	padding-left: 10px;
}
.contact_element_right span {
	display: block;
	float: left;
	width: 40%;
	max-width: 220px;
}
@media only screen and ( max-width: 440px ) {
	.contact_element_right span {
		float: none !important;
	}
}

.contact_form input[type="radio"] {
	display: block;
	float: right;
	background-color: var(--form-bg);
	margin-right: 50px;
	width: 15px;
}
.contact_form input[type="radio"]:checked {
	background-color: var(--green);
}
.contact_form textarea {
	appearance: none;
	width: 70%;
	border: 1px solid var(--form-border);
	background-color: var(--form-bg);
	padding: 10px;
}
.contact_form input[type="checkbox"] {
	display: block;
	float: left;
	background-color: var(--form-bg);
	margin-right: 10px;
	width: 15px;
}
span.contact_notes {
	display: block;
	width: 375px;
	float: left;
	font-size: 60%;
	
}
.contact_form input[type="submit"], .find_form input[type="submit"] {
	display: block;
	clear: both;
	width: 30%;
	height: 40px;
	text-decoration: none;
	color: var(--submit-col);
	text-align: center;
	font-size: 120%;
	font-weight: bold;
	margin: 50px 0px 0px 30%;
	padding: 0px 0px 0px 0px;
	background-color: var(--white);
	background-clip: content-box;
	box-shadow: none;
	border: 3px solid var(--input-border);

}
.contact_form input[type="submit"]:hover, .find_form input[type="submit"]:hover {
	cursor: pointer;
}
.contact_form textarea:focus, .contact_form input:focus, .find_form input:focus {
	border: 1px solid var(--white);
}

table.contact_form {
	clear: both;
	padding-top: 50px;
	width: 95%;
}
td.contact_formhead {
	font-weight: bold;
	text-align: right;
	padding-right: 6px;
}
table.be_form {
	margin-top: 40px;
}
.be_form td {
	padding-top: 8px;
}
td.be_formhead {
	font-weight: bold;
	text-align: right;
	padding-right: 16px;
}
.tab {
    position: relative;
    border-bottom: 1px solid var(--body-bg);
	margin: 0 !important;
}
.tab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}
.tab__content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
	padding-left: 10px;
	margin-top: 2px !important;
}
.tab input:checked ~ .tab__content {
	max-height: 500vh; 
	-webkit-transition: max-height .75s; 
	-o-transition: max-height .75s; 
	transition: max-height .75s; 
    margin: 8px 0;
}
.faqs-accordion {
	margin-top: 20px;
}
/* Visual styles */
.accordion {
    color: var(--black););
    border: 2px solid var(--black);
    border-radius: 3px;
    overflow: hidden;
}
.tab__label,
.tab__close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--white);
    background: var(--black);
    cursor: pointer;
}
.tab__label {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem;
}
.tab__label::after {
    content: "\276F";
    width: 1em;
    height: 1em;
    text-align: center;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
}
.tab input:checked + .tab__label::after {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg);
}
.tab__content span {
    display: inline-block;
    margin: 0.5rem 0 0 0;
}
.tab__close {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}




