/* Global Reset Styles */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figure, figcaption, hgroup, menu, footer, header, nav, section, summary, time, mark, audio, video {
	margin: 0px;
	padding: 0px;
	border: none;
}

article, aside, canvas, figure, figure img, figcaption, hgroup, footer, header, nav, section, audio, video {
	display: block;
}

/* Global Styles */
body, html {
	height: 100%;
}

body {
	text-align: left;
	font-size: 62.5%;
	font-family: 'CenturyGothicRegular', Arial, Helvetica, sans-serif;
	color: #fff;
	background: #01324c;
}

a:link, a:visited, a:focus {
	color: #fff;
	text-decoration: underline;
	outline: none;
}

a:hover, a:active {
	color: #fff;
	text-decoration: none;
	outline: none;
}

h1 {
	font-size: 5.1em;
	text-transform: uppercase;
	line-height: 1.1em;		
}

h2, h3, h4, h5, h6 {
	font-size: 2.3em;
	font-weight: normal;
	text-transform: lowercase;
}

p {
	font-weight: normal;	
}

/* Global Image Class Styles */
a img {
	border: none;
}

a img {
	border: 0;	
}

.img-left {
	float: left;	
}

.img-right {
	float: right;	
}

.img-centre {
	float: none;
	margin: 0 auto;	
}

.img-block {
	display: block;	
}

.img-inlineblock {
	display: inline-block;	
}

.responsive-img {
	width: 100%;
	height: auto;
}

/* Global Clear Class Styles */
.clear {
	clear: both;
}

.clear-left { 
	clear: left;
}

.clear-right {
	clear: right;
}

/* Font-Face Styles */
@font-face {
    font-family: 'DINProBold';
    src: url('../../includes/fonts/dinpro-bold.eot');
    src: url('../../includes/fonts/dinpro-bold.eot?#iefix') format('embedded-opentype'),
         url('../../includes/fonts/dinpro-bold.woff') format('woff'),
         url('../../includes/fonts/dinpro-bold.ttf') format('truetype'),
         url('../../includes/fonts/dinpro-bold.svg#DINProBold') format('svg');
	font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DINProLight';
    src: url('../../includes/fonts/dinpro-light.eot');
    src: url('../../includes/fonts/dinpro-light.eot?#iefix') format('embedded-opentype'),
         url('../../includes/fonts/dinpro-light.woff') format('woff'),
         url('../../includes/fonts/dinpro-light.ttf') format('truetype'),
         url('../../includes/fonts/dinpro-light.svg#DINProLight') format('svg');
	font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CenturyGothicRegular';
    src: url('../../includes/fonts/century_gothic.eot');
    src: url('../../includes/fonts/century_gothic.eot?#iefix') format('embedded-opentype'),
         url('../../includes/fonts/century_gothic.woff') format('woff'),
         url('../../includes/fonts/century_gothic.ttf') format('truetype'),
         url('../../includes/fonts/century_gothic.svg#CenturyGothicRegular') format('svg');
	font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'typicons';
  src: url("../../includes/fonts/typicons.eot");
  src: url("../../includes/fonts/typicons.eot?#iefix") format('embedded-opentype'),
       url("../../includes/fonts/typicons.woff") format('woff'),
       url("../../includes/fonts/typicons.ttf") format('truetype'),
       url("../../includes/fonts/typicons.svg#typicons") format('svg');
  font-weight: normal;
  font-style: normal;
}

/* Font Class Styles */
.DinProBold {
	font-family: 'DINProBold', Arial, Helvetica;
	font-weight: normal;	
}

.DinProLight {
	font-family: 'DINProLight', Arial, Helvetica;
	font-weight: normal;
}

/* Icon Font Class Styles */
.typcn {
  line-height: 1;
  width: 1em;
  height: 1em;
  color: #5f5f5f;
}

.typcn:before {
  font-family: 'typicons';
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 7em;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.typcn-brush:before { content: '\e032'; } /* '' */

.typcn-cog-outline:before { content: '\e04c'; } /* '' */

.typcn-messages:before { content: '\e0ac'; } /* '' */

.typcn-chart-line-outline:before { content: '\e03f'; } /* '' */

/* CSS3 Animation Styles */
.animated {
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1.5s;
	-moz-animation-duration: 1.5s;
	-ms-animation-duration: 1.5s;
	-o-animation-duration: 1.5s;
	animation-duration: 1.5s;
}

.animated.hinge {
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-ms-animation-duration: 1s;
	-o-animation-duration: 1s;
	animation-duration: 1s;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@-moz-keyframes flipInY {
    0% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        -moz-transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        -moz-transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@-o-keyframes flipInY {
    0% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        -o-transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        -o-transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flipInY;
	-o-backface-visibility: visible !important;
	-o-animation-name: flipInY;
	backface-visibility: visible !important;
	animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }	100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-moz-keyframes flipOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-o-keyframes flipOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

header#site_header img#logo:hover {
	cursor: pointer;
	-webkit-animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	-moz-animation-name: flipOutX;
	-moz-backface-visibility: visible !important;
	-o-animation-name: flipOutX;
	-o-backface-visibility: visible !important;
	animation-name: flipOutX;
	backface-visibility: visible !important;
}

/* Global Grid System Styles */
.grid_spacer_top {
	margin-top: 1%;
}

.grid_spacer_bottom {
	margin-bottom: 1%;
}

.grid_spacer_top_bottom {
	margin-top: 1%;
	margin-bottom: 1%;
}

.grid_1, .grid_2, .grid_3, .grid_4, .grid_5, .grid_6, .grid_7, .grid_8, .grid_9, .grid_10, .grid_11, .grid_12 {
	display: inline-block;
	float: left;
	margin-left: 1%;
	margin-right: 1%;
}

.grid_1 {
	width: 6.333%;
}

.grid_2 {
	width: 14.666%;
}

.grid_3 {
	width: 23%;
}

.grid_4 {
	width: 31.333%;
}

.grid_5 {
	width: 39.666%;
}

.grid_6 {
	width: 48%;
}

.grid_7 {
	width: 56.333%;
}

.grid_8 {
	width: 64.666%;
}

.grid_9 {
	width: 73%;
}

.grid_10 {
	width: 81.333%;
}

.grid_11 {
	width: 89.666%;
}

.grid_12 {
	width: 98%;
}

.grid_spacer {
	min-height: 1px;	
}

/*Container Styles*/
.outer_container {
	width: 100%;
	float: left;
}

.site_container {
	width: 1200px;
	margin: 0px auto 0px auto;
	height: auto !important;
    min-height: 100%;
    height: 100%;
	position: relative;
	font-size: 1.2em;
}
	
/*Site Header Styles*/
header#site_header {
	height: auto;
	margin: 0 0 145px 0;
}

	header#site_header img#logo {
		float: none;
		display: block;
		margin: 100px auto 20px auto;
	}
	
	header#site_header p, header#site_header p a, header#site_header p a:active {
		color: #faab32;
		text-decoration: none;
	}
	
	header#site_header p a:hover {
		color: #fff;
		text-decoration: none;	
	}
	
	header#site_header p {
		text-align: center;
		font-size: 2.2em;
	}
	
	header#site_header .headerSpacer {
		margin: 0 0 0 24px;
	}

/*Site Main Content Styles*/
p.medium {
	font-size: 1.5em;
	line-height: 1.85em;
	margin: 4px 0 0 0;
	/*text-align: justify;*/
}

.spacerBottom {
	margin-bottom: 80px;	
}

.spacerTopSmall {
	margin: 2% 2% 0 0;	
}

/*Site Main Bucket Styles*/
.bucket {
	padding: 30px 0;
	-webkit-border-radius: 5px;
    border-radius: 5px;
	background: #fff;	
}

	.bucket .oval {
		width: 111px;
		height: 111px;
		margin: 0 auto;
		float: none;
		display: block;
		-webkit-border-radius: 63px;
		border-radius: 63px;
		border: 5px solid #e9e8e8;
		-webkit-box-shadow: inset 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 0px 6px 4px rgba(0, 0, 0, 0.1);
		background: #d6d7d8;	
	}
		
		.bucket .oval .typcn1 {
			display: block;
			margin: 15px 0 0 12px;
		}
		
		.bucket .oval .typcn2 {
			display: block;
			margin: 15px 0 0 13px;
		}
		
		.bucket .oval .typcn3 {
			display: block;
			margin: 15px 0 0 14px;
		}
		
	.bucket h2 {
		color: #01324c;
		text-align: center;
		font-size: 2.8em;
		margin: 20px 0 0 0;
	}
	
	.bucket p {
		text-align: center;
		color: #135b86;
		font-size: 1.3em;
		line-height: 1.7em;
		padding: 0 15px;
		margin: 15px 0 0 0;
	}
	
	.bucket p a, .bucket p a:active, .bucket p a:hover {
		color: #135b86;	
	}

	.servicesCont h2 {
		color: #faab32;
		font-size: 3.3em;
		margin: 0 0 30px 0;
	}
	
ul {
	list-style: none;
}

	ul li {
		font-size: 1.5em;
		margin: 0 0 25px 0;
		padding: 0 0 0 36px;
		background: url(../images/arrow-icon-small.png) left top no-repeat;
	}
	
	ul li.end {
		margin: 0;	
	}

/*Site Footer Styles*/
.outer_footer {
	background: #fff;	
}

	footer#site_footer {
		width: 100%;
		float: left;
		padding: 50px 0;	
		background: #fff;
	}
	
		footer#site_footer p {
			color: #135b86;
			font-size: 1.3em;
			line-height: 1.7em;
		}
		
			footer#site_footer p a, footer#site_footer p a:hover, footer#site_footer p a:active {
				color: #135b86;
			}

/*Media Queries Styles*/

/*Desktop Small Screens 1024 ish*/
@media screen and (max-width : 1199px)  {
	
	/*Container Styles*/
	.site_container {
		width: 960px;
		font-size: 1.1em;	
	}
	
	/*Generic Styles*/
	.spacerBottom {
		margin-bottom: 60px;	
	}
	
	/*Header Styles*/
	header#site_header {
		margin: 0 0 110px 0;
	}
	
		header#site_header img#logo {
			float: none;
			display: block;
			margin: 80px auto 15px auto;
		}
		
		header#site_header .headerSpacer {
			margin: 0 0 0 38px;
		}
		
	/*Content Styles*/	
	ul li {
		height: 20px;
		font-size: 1.3em;
		margin: 0 0 20px 0;
		padding: 2px 0 0 32px;
	}
	
		.bucket .oval .typcn1 {
			margin: 18px 0 0 17px;
		}
		
		.bucket .oval .typcn2 {
			margin: 18px 0 0 16px;
		}
		
		.bucket .oval .typcn3 {
			margin: 18px 0 0 18px;
		}
		
}

/*Mobile Screens*/
@media screen and (min-width : 280px) and (max-width : 568px)  {
	
	/*Container Styles*/
	.site_container {
		width: 90%;
		margin: 0 5%;
		font-size: 1.0em;
	}
	
	/*Generic Styles and Resets*/
	.mobile_display_none {
		display: none;	
	}
	
	.mobileCol1 {
		width: 100%;
		margin: 0;	
	}
	
	.spacerBottom {
		margin-bottom: 40px;	
	}
	
	header#site_header img#logo:hover {
		cursor: pointer;
		-webkit-animation-name: none;
		-webkit-backface-visibility: visible !important;
		-moz-animation-name: none;
		-moz-backface-visibility: visible !important;
		-o-animation-name: none;
		-o-backface-visibility: visible !important;
		animation-name: none;
		backface-visibility: visible !important;
	}
	
	/*Header Styles*/
	header#site_header {
		margin: 0 0 70px 0;
	}
	
		header#site_header img#logo {
			width: 80%;
			margin: 60px auto 25px auto;	
		}
		
		header#site_header .headerSpacer {
			margin: 14px 0 0 0;
			display: block;
		}
		
	/*Content Styles*/
	h1 {
		font-size: 3.8em;	
	}
	
			.bucket .oval .typcn1, .bucket .oval .typcn2, .bucket .oval .typcn3 {
				margin: 22px 0 0 20px;
			}
	
	/*Footer Styles*/
	footer#site_footer {
		padding: 30px 0;
	}
		
}
