@charset "UTF-8";
/* CSS Document */
/*********reset **********************/

html {
	/* use for continuous color or image on top when a second one is used at bottom of browser*/
	background-image: url(../assets/images/backgroundgradient.png);
	background-repeat: repeat-x;
	background-position: top;
}



body {
	font-family:Arial, Helvetica, sans-serif;
	margin: 0;      /* margin and padding set to zero thus must override for different values --------*/
	padding: 0;	
	
	font-size: 10px;
	line-height: 2.0em;
	color: #333333;   /* set background color of browser window   */
	
	/*  use for a continuous color or image at bottom of browser */  
	/*background-image:url(../assets/graphics/backgrounds/bottombody.jpg);
	background-repeat: repeat-x;
	background-position: bottom;
	*/
	background-image:url(../assets/images/footerbakcground.png);
	background-repeat: repeat-x;
	background-position: bottom;
	
	
	
}
	
#wrapper {
	position: relative;
	width: 100%;
	margin: 2.5em auto 2em; auto;
	max-width: 1200px;	/* set max page expansion */
	/* below for wrapper to have a curved frame with drop shadow */
	box-shadow:  0 0 .5em .5em rgba(0,0,0, .1);
	-webkit-border-radius: 2em;
	-moz-border-radius: 2em;
	-ms-border-radius: 2em;
	border-radius: 2em; 
	height: auto;
	
}


* {
	box-sizing: border-box;
}

a {
	color: #277ec2;  /*  set standard color for <a>color of links  */
	text-decoration: none;
}

a:hover,
a:focus {
	color: #005580;    /* set standard color of hover over   */
	text-decoration: underline;
}

image a{			/* removes box around image link   */
	border: none;
	text-decoration: none;
}

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

.imageshadow { /* add drop shadow to an image Change color as required default black */
	-webkit-box-shadow:.4em .6em .8em rgba(0,0,0,.75);
	box-shadow:.4em .6em .8em rgba(0,0,0,.75);
}

.textshadow { /* add drop shadow to text. Change color as required default black  */
	text-shadow: 2px 2px 2px rgba(0,0,0,.50);
}
.overflow {
	overflow: auto;
}

.divider { /* creates a divider line inlieu of a <hr/> tag. Can change size and color as required */
	width: 80%;
	margin-left: 10%;
	height: .2em;
	background: #900146 ;
}

/* most of these tags are css3 new use instad of <div id>  */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}

dl {
	margin-top: 2em;
}

dt  /* used for drop down faqs and read more font-size can be changed as required */
 {
	font-size: 1.6em;
	font-weight: bold;
	color: #0046BA;
}

dd {
	padding-bottom: .5em;
}



/*------------ set standard colors -------------------- */
/* list as comments the site's main colors and then create a class for each*/
.red {
	color: #900146;
}

.blue{
	color: #0046BA;
}

.textgrey {
	color: #333;
}

.white {
	color: white;
}

.black {
	color: black;
}


/*--------- header tags set standard font-size and padding -----------*/

h1 {
	font-size: 2.4em;
	padding: 2px 2px 1px 2px;
}

h2 {
	font-size: 1.8em;
	padding: 2px 2px 1px 2px;
}

h3 {
	font-size: 1.6em;
	padding: 2px 2px 1px 2px;
}

h4 {
	font-size: 1.4em;
	padding: 2px 2px 1px 2px;
}

p {
	line-height: 1em;
	font-size: 1.4em;
	padding: 2px 2px 1px 2px;
}

/*------------ text standard styling ----------------*/
.small {
	font-size:1em;
}

.font12 {
	font-size:1.2em;
}

.font14 {
	font-size:1.4em;
}

.font16 {
	font-size:1.6em;
}

.font18 {
	font-size:1.8em;
}

.font20 {
	font-size:2.0em;
}

.large {
	font-size:2.4em;
}

.xlarge {
font-size:2.8em;
}	


.xxlarge {
	font-size:3em;
}

.letterspace1 {
	letter-spacing: .1em;
}

.letterspace2 {
	letter-spacing: .2em;
}

.lineheight20 {
	line-height: 120%;
}

.lineheight30 {
	line-height: 130%;
}


.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	text-decoration: underline;
}
.high {
	line-height: 130%;
}
.alignleft {
	text-align: left;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

/* float related classes ---------*/

.rightfloat {
	float: right;
}

.leftfloat {
	float: left;
}

.clearfix {
	*zoom: 1;
	clear: both;
}

.clearfix:before,
.clearfix:after {
	display:table;
	content: "";
	line-height: 0;
}
.clearfix:after {
	clear: both;
}


/* ------- setting up column widths based on a 12 grid system -half equals value of a half of column. Thus .col-9-5 equals 9 and half columns ----------*/

.col-half {
	width: 4.166%; /* 50px */
}

.col-1 {
	width: 8.333%; /* 100px */
}

.col-1-half {
	width: 12.5%; /* 150px */
}

.col-2 {
	width: 16.666%; /* 200px */
}

.col-2-half {
	width: 20.8333%; /* 250px */
}

.col-3 {
	width: 25%; /* 300px */
}

.col-3-half {
	width: 29.1666%; /* 350px */
}

.col-4 {
	width: 33.333%; /* 400px */
}

.col-4-half {
	width: 37.5%; /* 450px */
}

.col-5 {
	width: 41.666%; /* 500px */
}

.col-5-half {
	width: 45.8333%; /* 550px */
}

.col-6 {
	width: 50%; /* 600px */
}

.col-6-half {
	width: 54.16666%; /* 650px */
}

.col-7 {
	width: 58.333%; /* 700px */
}

.col-7-half {
	width: 62.5%; /* 750px */
}

.col-8 {
	width: 66.666%; /* 800px */
}

.col-8-half {
	width: 70.8333%; /* 850px */
}

.col-9 {
	width: 75%; /* 900px */
}

.col-9-half {
	width: 79.1666%; /* 950px */
}

.col-10 {
	width: 83.333%; /* 1000px */
}

.col-10-half {
	width: 87.5%; /* 1050px */
}

.col-11 {
	width: 91.666%; /* 1100px */
}

.col-11-half {
	width: 95.8333%; /* 1150px */
}

.col-12 {
	width: 100%; /* 1200px */
}

/*------------ setting up shift lefts -------------*/

.shift-half {
	margin-left: 4.166%;
}

.shift-1 {
	margin-left: 8.333%;
}

.shift-1-half {
	margin-left: 12.5%;
}

.shift-2 {
	margin-left: 16.666%;
}

.shift-2-half {
	margin-left: 20.8333%;
}

.shift-3 {
	margin-left: 25%;
}

.shift-3-half {
	margin-left: 29.1666%;
}

.shift-4 {
	margin-left: 33.333%;
}

.shift-4-half {
	margin-left: 37.5%;
}

.shift-5 {
	margin-left: 41.666%;
}

.shift-5-half {
	margin-left: 45.3333%;
}

.shift-6 {
	margin-left: 50%;
}

.shift-6-half {
	margin-left: 54.1666%;
}

.shift-7 {
	margin-left: 58.333%;
}

.shift-7-half {
	margin-left: 62.5%;
}

.shift-8 {
	margin-left: 66.666%;
}

.shift-8-half {
	margin-left: 70.8333%;
}

.shift-9 {
	margin-left: 75%;
}

.shift-9-half {
	margin-left: 79.1666%;
}

.shift-10 {
	margin-left: 83.333%;
}

.shift-10-half {
	margin-left: 87.5%;
}

.shift-11 {
	margin-left: 91.666%;
}

.shift-11-half {
	margin-left: 95.8333%;
}

.shift-12 {
	margin-left: 100%;
}



/*------------------- header area -----------------------*/
header {       /* header consists of logo and secondary nav bar */
	position: relative;
	margin-top: 1em;
	
	height: auto;
}



.logo {	/* use for main logo change margin, width depending on logo graphic size  */
margin-top: 2em;
height: auto;	
}

.tagline {
	margin-top: 5em;
	line-height: 110%;
}

.tagline h2 {
	margin: 0;
	padding: 0;
	margin: 0;
	padding: 0;
	font-size:3.2em;
}
.tagline h3 {
	font-size: 2.0em;
}


.phone {
	margin-top: 2em;
	
	font-size: 2.8em;
	font-weight:bold;
	letter-spacing: .1em;
		
}

.consultation {
	margin-top: 1.5em;
	margin-left: 1.5em;
}
/*****************  end of header   ****************/
/************** the main nav can be part of the header if design calls for   *******************/	

/*-------------- main nav ----------*/

nav {
	position: relative;
	margin-top: 1.5em;
	height: auto;
	background-color: rgba(0,70,186, .7);
	
}

/*-------------- following is based on using superfisheye jquery plugin  -------------------
it is sete up for three levels. Most of level 1 is repeating css3 gradient and box shadow coommands.
These require vendor prefixes - thus the extensive length - just repeats for each vendor.*/


/****** Level 1 *******/
ul#sfNav {
	position: relative;
	width: 100%;
	padding: 0;
	margin: 0;
	margin-left: 1em;
	list-style: none;
	height: auto;
	
}

ul#sfNav li {
	float: left;
	margin:0;
  /* button background color*/

}

ul#sfNav li.parent {  /*  this adds an arrow if required  */

}

ul#sfNav  li a {
	color:white;
	display: block;
	width: auto;
	padding: 1.2em 1.6em 0em 1.6em;
	width: auto;
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	
	
	letter-spacing: .1em;
}

ul#sfNav li a:hover {
	
	color:#900146;
	text-shadow: 1px 0px 0px rgba(255,255,255,.90);
}



ul#sfNav li ul {
	position: absolute;
	/*left: -9999em; not needed with jquery*/
	z-index: 1;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	list-style: none;
}



/******** Level 2 ********/

ul#sfNav li ul li {
	position: relative;
	left: .1em;
	
	color: white;
	font-weight: bold;
	width: 100%;
	float: none;
}

ul#sfNav li ul li.parent {  /*  this adds an arrow if required  */

}

ul#sfNav li ul li a {
	width: 100%;
	height: auto;
	padding: 0;
	padding: .5em .2em .5em .5em;
	background-color: black; /* background color for secondary buttons */
	color: white;
	text-align: left;
	text-decoration: none;
	line-height: normal;
	font-size: 1.4em;
	font-weight: bold;
	border-right: solid .1em white;
	border-left: solid .1em white;
	border-bottom: solid .1em white;
}

ul#sfNav li ul li a:hover {
	background-color: white;
	color:black;
	border: solid .2em black;
}


/*** ARROWS ***/
.sf-sub-indicator {
	display: none;
}

.sf-menu img {   /* use this if using an image as part of the nav button   */
	max-width: 100%;
}
/******************* end of main navigation **************************/

/*******************   slider   **************************************/
#slider{
	position: relative;
	height: auto;
	margin-top: .5em;
}

.pooltext {
	margin: 0;
	padding: 0;
}

.servicebar {
	background-color:#EBE8E8;
}

.servicebox {
	position: relative;
	top: 4em;
	width: 27.5%;
	height: auto;
	
}

.servicebox p {
	margin: 0;
	padding: 1em;
	color: #888888;
	font-size: 1.4em;
}

.linespacer {
	margin: 1em 0 1em 0;
}

.feature {
	margin-top: 1.5em;
}

.history h2,
.welcome h2  {
	margin: 0;
	padding: 0;
	paddming-bottom: .5em;
}


.productlist {
	margin-left: 10em;
	
}

.productlist li {
font-size: 1.6em;
font-weight: bold;	
	
}

/******************* about uspage  ***********************/
.teamdesclabels {
	margin: 0;
}


/***********************************footer section ******************/
footer {  /* footer has two sides .footerright and .footerleft. If 3 columns are desired then add the center column as footercenter */
	position: relative;
	height: auto;
	/*background-color: rgba(0,70,186, .8);*/
	top: -3em;
	width: 100%;
	
}

#footertop {
	position: relative;
	
}

.footercolleft {
	margin-top: 2em;
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	color: white;
	
}
.footercolright {
	margin-top: 1em;
	font-size: 1.6em;
	font-weight: bold;
	text-align: center;
	color: white;
	
}

.footerlogo {
	margin-right: 5%;
}

.footercontact,
.footernav {
	margin: .2em 0 .2em 0;
	
}



#footerbottom {
position: relative;
	top: 2em;
}	

#footerbottom p {
	margin: 0;
	padding: 1em .5em 2em 1em;
	font-size: 1.4em;
}

/* -------------------- styles for forms. The overall form tag is given the class = .subform ----------------*/

#contactform {
	width: 100%;
}


.subformp {
	font-size: 1.4em;
  color:black;
  margin: 0;
  margin-top: 1em;
  padding: 0;
  
}


#contactform .label {

  display: inline-block;
  width: 100%;
  vertical-align: top;
  text-align: left;
  
  font-weight: bold;
 font-size: 1.2em;
  color: black;
  
}
#contactform select {
	font-size: 1.2em;
}
#contactform input[type="text"], #contactform input[type="email"], #contactform input[type="tel"], #contactform textarea { /* add any other input types also */
	font-size: 1.2em;
	color: rgb(255,255,255,1);
	
	border: solid .1em black;
	background-color: rgba(255,255,255,.5);	
	box-shadow: inset 0 0 10px rgba(255,255,255,.75);
	width: 100%;
	
	padding: 4px; 	
}
#contactform input[type="text"]:focus, #contactform input[type="email"]:focus, #contactform input[type="phone"]:focus, #contactform textarea:focus {
  background-color: white;
  color: black;
}
.subformh {
	font-size: 1.8em;
  color: white;
  font-weight: bold;
  text-align: center;
  padding-bottom: 2%;
  padding-top: 2%;
}
.subform input[type="submit"] {  
  	/*margin-left: 32%;*/
  	padding: .5em 1.5em;
  	font-size: 1.2em;
  	color: white;
  	background-color: #80771a;
  	border: .2em solid white;
 	 -webkit-border-radius: 7px;
  	-moz-border-radius: 7px;
   	-o-border-radius: 7px;
	-ms-border-radius: 7px;
	border-radius: 7px;
  	box-shadow: 0 0 4px white;
}
.subform select {
	font-size: 1.2em;
	font-weight: bold;
	
}




	
	
	
	
