/* `XHTML, HTML4, HTML5 Reset
----------------------------------------------------------------------------------------------------*/

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, hr, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, meter, nav, object, ol, output, p, pre, progress, q, rp, rt, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video, xmp {
	border: 0;
	margin: 0;
	padding: 0;
	font-size: 100%;
	outline:none;
}
html, body {
	color:#333
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	/*
  Override the default (display: inline) for
  browsers that do not recognize HTML5 tags.

  IE8 (and lower) requires a shiv:
  http://ejohn.org/blog/html5-shiv
*/
	display: block;
}
a:link, a:visited {
	text-decoration:none
}
b, strong {
	/*
  Makes browsers agree.
  IE + Opera = font-weight: bold.
  Gecko + WebKit = font-weight: bolder.
*/
  font-weight: bold;
}
img {
	color: transparent;
	font-size: 0;
	vertical-align: middle;
	/*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
	-ms-interpolation-mode: bicubic;
}
ul {
	margin:0	
}
li {
	/*
  For IE6 + IE7.
*/
	list-style:none;
	display: list-item;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th, td, caption {
	font-weight: normal;
	vertical-align: top;
	text-align: left;
}
q {
	quotes: none;
}
q:before, q:after {
	content: '';
	content: none;
}
sub, sup, small {
	font-size: 75%;
}
sub, sup {
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
svg {
	/*
  For IE9.
*/
	overflow: hidden;
}

/* Fonts
----------------------------------------------------------------------------------------------------*/

body {
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	font-weight:400;
	color:#37414C;
	
}

h1,
h2,
h3 {
	font-family: 'Raleway', sans-serif;
	color:#0069A8;
}

h1 {
	display:block;
	font-size:30px;
	font-weight:700;
	margin-bottom:30px;
}

h2 {
	font-size:24px;
	font-weight:700;
	margin-bottom:10px;
}

h3 {
	font-size:18px;
	font-weight:600;
	margin-bottom:5px;
}

p {
	line-height:20px;
	margin-bottom:20px	
}

p a {
	color:#37414C;
	text-decoration:underline !important;
}

/* Font Color */

.font-black {
	color:#000000;
}

/* Main Layout
----------------------------------------------------------------------------------------------------*/

body {
	padding-top:105px;
}

body.default {
	padding-top:0;
}

.container, .content {
	position:relative;
	display:block;
	min-width:960px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}

.container {
	width:100%;
	background-color:#ffffff;
}

.content {
	margin:0 auto;
	width:960px;
	padding:50px 10px 60px;
}

.content.product-images {
	padding:0 5px;	
}

/* Background Color */

.bg-grey {
	background-color:#F2F2F2;	
}

/* Other Options */

.border-bottom {
	border-bottom:1px solid #e6e6e6;
}

/* Header
----------------------------------------------------------------------------------------------------*/

/* Logo and Slogan */

a#logo,
#slogan  {
	float:left;
}

a#logo {
	margin-right:20px;
}

/* Fixed Header Position */

#header {
	display:block;
	position:fixed;
	top:0;
	left:0;
	height:105px;
	border-bottom:5px solid	#0069A8;
	z-index:100;
}

#header .content {
	padding:0 10px 0;	
}

/* Header Navigation */

ul#header-navigation,
ul#header-navigation li a {
	display:block;	
}

ul#header-navigation {
	float:right;
	padding:41px 0;
}

ul#header-navigation > li {
	position:relative;
	float:left;
}

ul#header-navigation > li:last-child {
	padding-right:0;
}

ul#header-navigation li a {
	font-family: 'Raleway', sans-serif;
	color:#000000;
	padding:0 10px;
}

ul#header-navigation > li > a {
	height:18px;
	line-height:18px;
	font-weight:700;
	-webkit-transition: color 150ms;
	-moz-transition: color 150ms;
	transition: color 150ms;
}

ul#header-navigation > li.selected > a,
ul#header-navigation > li.active > a,
ul#header-navigation > li:hover > a {
	color:#3FA9F5;
}

ul#header-navigation > li.dropdown > a {
	background:url(../images/icon-dropdown-hover.png) no-repeat center right;
	padding-right:0;
}

ul#header-navigation > li.dropdown > a > img {
	margin-top:-2px;
	-webkit-transition: opacity 150ms;
	-moz-transition: opacity 150ms;
	transition: opacity 150ms;
}

ul#header-navigation > li.dropdown.selected > a > img,
ul#header-navigation > li.dropdown.active > a > img,
ul#header-navigation > li.dropdown:hover > a > img {
	opacity:0;	
}

/* Header SubNavigation */

ul#header-navigation ul.header-subnavigation {
	position:absolute;
	top:64px;
	left:-10px;
	background-color:#00527D;
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: -webkit-transform 150ms ease;
	-moz-transition: -moz-transform 150ms ease;
	transition: transform 150ms ease;
	z-index:100;
}

ul#header-navigation ul.header-subnavigation.active {
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	transform: scaleY(1);
}

ul#header-navigation ul.header-subnavigation li a {
	height:35px;
	line-height:35px;
	color:#ffffff;
	white-space:nowrap;
	padding:0 50px 0 20px;
	-webkit-transition: all 150ms;
	-moz-transition: all 150ms;
	transition: all 150ms;
}

ul#header-navigation ul.header-subnavigation li.active a,
ul#header-navigation ul.header-subnavigation li a:hover {
	background-color:#3FA9F5;
}


/* Content
----------------------------------------------------------------------------------------------------*/

/* Global Styles - Links */

a.readmore {
	display:inline-block;
	height:30px;
	line-height:30px;
	padding:0 10px;
	background-color:#29ABE2;
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	font-weight:600;
	color:#ffffff;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	border-radius:3px;
	-webkit-transition: background-color 150ms;
	-moz-transition: background-color 150ms;
	transition: background-color 150ms;
}

a.readmore:hover {
	background-color:#00A45F;	
}

a.backtop,
a.backbtn,
a.backtop.blue {
	display:inline-block;
	font-family: 'Raleway', sans-serif;
	font-weight:700;
}

a.backtop {
	position:absolute;
	top:-90px;
	right:10px;
	background:url(../images/icon-backtop.png) no-repeat center right;
	width:auto;
	height:31px;
	line-height:32px;
	padding-right:35px;
	font-size:18px;
	color:#000000;
}

a.backtop img {
	float:right;
}

a.backbtn,
a.backtop.blue {
	background:#29ABE2 url(../images/icon-up-arrow.png) no-repeat center left;
	width:45px;
	height:30px;
	line-height:30px;
	padding:0 0 0 40px;
	text-align:left;
	font-size:14px;
	color:#ffffff;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
}

a.backtop.blue {
	background:#29ABE2 url(../images/icon-up-arrow.png) no-repeat center left;	
}

a.backbtn {
	background:#29ABE2 url(../images/icon-back-arrow.png) no-repeat center left;
}

/* Load Link */

#loadlink {
	display:block;
	height:30px;
	float:left;	
}

/* Global Styles - Borders */

.bordered {
	border:1px solid #6E7882;	
}

/* List Styles - Arrow List */

ul.arrow-list li,
ul.arrow-list li a {
	display:block;
}

ul.arrow-list li {
	float:left;
	padding-left:20px;
	background:url(../images/icon-list-arrow.png) no-repeat 0 0;
}

ul.arrow-list li a {
	color:#ffffff;
	line-height:20px;
	width:270px;
}

ul.arrow-list li a:hover {
	text-decoration:underline;
}

/* List Styles - Bullet List */

ul.bullet-list {
	display:block;
	margin-bottom:20px;	
}

ul.bullet-list li {
	padding-left:15px;
	background:url(../images/icon-bullet.png) no-repeat 0 1px;
	margin-bottom:5px;
}

ul.bullet-list li.heading {
	padding:0;
	background:none;
	font-weight:700;	
}

ul.bullet-list ol {
	padding:5px 0;	
}

ul.bullet-list ol li {
	background:none;
	list-style:inside decimal;	
	padding-left:0;
}

/* List Styles - Download List */

ul.download-list,
ul.download-list li a {
	display:block;
}

ul.download-list {
	margin-bottom:20px;	
}

ul.download-list li a {
	height:40px;
	line-height:40px;
	color:#29ABE2;
	text-decoration:underline;
	padding-left:40px;
	background:url(../images/icon-download-pdf.png) no-repeat 0 0;	
}

ul.download-list li.heading {
	padding:0;
	background:none;
	font-weight:700;
	margin-bottom:5px;
}

/* List Styles - Category List */

ul.category-list,
ul.category-list li a,
ul.category-list li a span {
	display:block
}

ul.category-list {
	text-align:justify;	
}

ul.category-list li {
	display:inline-block;
	margin-bottom:20px;
	vertical-align:top;
}

ul.category-list li a {
	position:relative;
	background-color:#ffffff;
	border:1px solid #cccccc;	
	-webkit-transition: all 150ms;
	-moz-transition: all 150ms;
	transition: all 150ms;
}

ul.category-list li a span {
	position:absolute;
	bottom:0;
	left:0;
	font-family: 'Raleway', sans-serif;
	font-weight:700;
	color:#37414C;
	text-align:center;
	height:50px;
	line-height:50px;
	width:100%;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-transition: color 150ms;
	-moz-transition: color 150ms;
	transition: color 150ms;
}

ul.category-list li a:hover {
	border-color:#009245;	
}

ul.category-list li a:hover span {
	color:#009245;
}

/* List Styles - Category List - Two Panels */

ul.category-list.two-panels li span {
	position:relative;
	display:block;
	padding:0 20px;
	width:455px;
	height:30px;
	font-weight:700;
	line-height:30px;
	text-align:center;
	overflow:hidden;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

ul.category-list.two-panels li {
	margin-bottom:35px;	
}

/* List Styles - Category List - Four Panels */

ul.category-list.four-panels li a {
	min-height:220px;	
}

ul.category-list.four-panels li a span {
	position:relative;
	padding:10px 20px;
	width:220px;
	height:60px;
	line-height:22px;
	text-align:center;
	overflow:hidden;
}


/* List Styles - Category List - Four Panels Floated */

ul.category-list.four-panels.floated li {
	float:left;
	margin-right:17px;
}

/* List Styles - Category List - Four Panels - Licenses */

ul.category-list.four-panels.licenses li a {
	border:none
}

ul.category-list.four-panels.licenses li a img {
	border: 5px solid #37414C;
	-webkit-transition: border 150ms;
	-moz-transition: border 150ms;
	transition: border 150ms;
}

ul.category-list.four-panels.licenses li a:hover img {
	border-color:#009245;
}

ul.category-list.four-panels.licenses li a span {
	padding:10px;
	height:auto;
	line-height:20px;
	width:210px;
	font-weight:400;
}

/* List Styles - Clear List */

ul li.clear-list {
	clear:both !important;
	float:none !important;
	width:100% !important;
	height:auto !important;
	padding:0 !important;
	margin:0 !important;
	border:none;
	background:none !important	
}

ul li.clear-list:before,
ul li.clear-list:after {
	display:none !important
}

/* Content Pages */


/* Home BXSlider CSS Override */

.bx-wrapper .bx-viewport {
	border:none;
	padding:0;
	left:0;
	background:none;
	border-bottom:none;
	overflow:hidden;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #cccccc;
}

/* Home Slider Exclusive */

#home-slider {
	height:600px;
	overflow:hidden	
}

#home-slider .bx-wrapper .bx-viewport {
	max-height:600px;
}

#home-slider .bx-slider li {
	height:500px;
	overflow:hidden	
}

#home-slider .bx-wrapper img {
	width: 100%;
	height: auto;
	min-width: 1200px;
	min-height: 600px;	
}

#home-slider .bx-wrapper .bx-pager .bx-pager-item,
#home-slider .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	vertical-align:top
}

#home-slider .bx-wrapper .bx-pager.bx-default-pager a {
    background: rgba(255,255,255,0.5);
}

#home-slider .bx-wrapper .bx-controls-direction a {
	width:42px;
	height:42px;
	top:47%;
}

#home-slider .bx-wrapper .bx-loading {
	background: url(../images/bxslider/bx_loader.gif) center center no-repeat #fff
}

#home-slider .bx-wrapper .bx-prev {
	background: url(../images/bxslider/prev.png) no-repeat 0 0;
	left:20px;
}

#home-slider .bx-wrapper .bx-next {
	background: url(../images/bxslider/next.png) no-repeat 0 0;
	right:20px;
}

#home-slider .bx-wrapper .bx-next:hover,
#home-slider .bx-wrapper .bx-prev:hover {
    background-position: 0 -42px;
}

#home-slider .bx-wrapper .bx-pager {
    padding-top:0;
}

#home-slider .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    bottom: 25px;
}

#home-slider .bx-wrapper .bx-pager .bx-pager-item,
#home-slider .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    width: 18px;
	height:18px;
	margin:0 3px;
}

#home-slider .bx-wrapper .bx-pager.bx-default-pager a {
    margin: 4px;
}

#home-slider .bx-wrapper .bx-pager.bx-default-pager a:hover,
#home-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
    background:transparent url(../images/bxslider/bullet-hover.png) no-repeat center center;
    height: 18px;
	width:18px;
	margin:0 !important;
}

/* Home Carousel Exclusive */

#home-carousel .bx-wrapper {
    margin: 0 auto 40px;
}

#home-carousel .bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
    bottom: -40px;
}

#home-carousel .slide {
	border:1px solid #cccccc;
}

/* BxSlider Custom Content */

#slider .content {
	height:0;
	padding:0 10px 0;
}

.slider-content-box {
	width:600px;
	padding-top:170px;	
}

.slider-content-box .slider-heading,
.slider-content-box .slider-text,
.slider-content-box span {
	display:block;
	font-family: 'Raleway', sans-serif;
	color:#ffffff;
}

.slider-content-box .slider-heading {
	font-size:36px;
	font-weight:700;
	height:60px;
	line-height:60px;
	color:#ffffff;
	background-color:#0069A8;
	padding:0 20px;
}

.slider-content-box .slider-text {
	padding:25px 40px 40px 20px;
	background-color:rgba(0,0,0,0.5);
	font-size:18px;
	font-weight:400;
	line-height:24px;
}

.slider-content-box .slider-text span {
	margin-bottom:20px;
}

/* FancyBox Popup */

.blue-overlay .fancybox-overlay {
    background:#0069A8;
}

.blue-overlay .fancybox-skin {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.blue-overlay .fancybox-opened .fancybox-skin {
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.blue-overlay .fancybox-close {
    top: 10px;
    right: 30px;
	background:url(../images/icon-close.png) no-repeat center center;
    width: 41px;
    height: 41px;
}

/* FancyBox Popup Iframe */

iframe {
	background-color:#ffffff;
}

/* Feature Image */

#feature-image {
	height:300px;
	overflow:hidden;	
}

#feature-image.medium {
	height:250px;
}

#feature-image img {
	width:100%;
	height:auto	
}

/* Products and Services */

#company-logo {
	display:block;
	float:left;
}

#company-logo img {
	height:90px;
	width:auto;
}

#company-logo span {
	display:block;
	height:40px;
	text-align:center;
	font-size:18px;
	font-weight:600;
	color:#000000;	
}

/* Product Images */

.product-images {
	display:block;
	margin-bottom:20px;	
}

.product-images img {
	float:left;
	margin:0 5px 10px;	
}

.product-images.float-right img {
	float:right;	
}

/* Content Text */

.content-text {
	display:block;
	width:700px;
	float:right;	
}

/* Specifications Table */

.specifications-table {
	margin-bottom:20px;	
}

.specifications-table td {
	padding:10px 20px;
	border-right:1px solid #ffffff;	
	border-bottom:1px solid #ffffff;
	color:#37414C;
}

.specifications-table thead td {
	font-weight:600;
	color:#ffffff;
	background-color:#0069A8;
	white-space:nowrap;
}

.specifications-table tbody tr td {
	text-align:center;
}

.specifications-table tbody tr td:nth-child(4n) {
	text-align:left;	
}

.specifications-table tbody tr:nth-child(odd) td {
	background-color:#e6e6e6;
}

.specifications-table tbody tr:nth-child(even) td {
	background-color:#f2f2f2;
}

/* Google Map Canvas */

#map-canvas {
	display:block;
	width:100%;
	height:500px;
}

/* Request / Register Forms */

.form {
	position:relative;
	display:block;
	width:100%;
}

.form .container {
	position:relative;
	text-align:left;
	min-width:inherit;
	background:none;
	padding-bottom:10px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.form .container.message,
.form .container.captcha {
	padding-bottom:20px;	
}

.form label {
	display:block;
	height:22px;
	line-height:22px;
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	font-weight:400;
}

.form input {
	height:30px;
	width:100%;
	line-height:30px;
	border:1px solid #cccccc;
	background-color:#ffffff;
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	font-weight:400;
	padding:0 10px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

.form .select-moz {
	position:relative;
	float:left;
	padding-bottom:0;
	width:100%;
}

.form select {
	color:#666666;
	width:100%;
	padding:6px 32px 6px 15px;
	font-family:Helvetica, Arial, sans-serif;
	font-size:14px;
	font-weight:100;
	height:40px;
	-webkit-appearance: none;
	-moz-appearance: window;
	border:1px solid #ccc;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius:0;
	background-image: url(../images/icon-dropdown.png);
	background-repeat: no-repeat;
	background-position: right center;
	background-color:#f9f9f9;
}

@-moz-document url-prefix() {
.select-moz {
	max-width:300px;
	background-image: url(../images/icon-dropdown.png);
	background-repeat: no-repeat;
	background-color:#f9f9f9;
	background-position: right center;
	border:1px solid #ccc;
	padding-bottom:0 !important
}
}

/* IE Hide Select Arrow */
.form select::-ms-expand {
	display: none
}

.form textarea {
	width:100%;
	height:100px;
	background:#fff;
	padding:8px 10px;
	font-family: 'Raleway', sans-serif;
	font-size:14px;
	font-weight:400;
	resize:none;
	border:1px solid #ccc;
	background-color:#ffffff;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}

.form div#spamtrap {
	visibility:hidden
}

.form .container-error-all {
	position:relative;
	display:block;
	height:auto !Important;
	margin-bottom:10px
}

.form .container-error-all span {
	height:auto !important	
}

.form .error {
	position:relative;
	display:block;
	margin:0;
	z-index:2;
	float:none;
	clear:both;
	color:#f00;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}

.form #enquiryform_server_errors {
	position:relative;
	background:none;
	white-space: nowrap;
	width: auto;
	margin-bottom:10px;
	color:#f00 !important;
	visibility:visible !important;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}

.form .error div {
	display:block;
	clear:both;
	font-size:12px;
	font-weight:100;
	line-height:20px;
	padding:0 10px;
	margin:0;
}

.form .error, .form .error-all {
	font-size: 11px;
	color: #f00;
}

.form .error-all {
	padding:0;
	line-height:15px;
	margin:0
}

.form fieldset#antispam {
	padding:2px;
	border-top:1px solid #EEE;
	border-left:0;
	border-right:0;
	border-bottom:0;
	width:350px;
}

.form fieldset#antispam legend {
	font-size: 0.8em;
	font-weight:bold;
	color:#333;
}

.form .button {
	position:relative;
	color:#fff;
	padding:0 10px;
	background: #29ABE2;
	border:none;
	width:auto;
	font-family: 'Raleway', sans-serif;
	font-weight:600;
	cursor:pointer;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
	height:30px;
	line-height:32px;
	color:#fff;
	-webkit-transition: background-color 150ms;
	-moz-transition: background-color 150ms;
	transition: background-color 150ms;
}

a.backbtn {
	background:#29ABE2 url(../images/icon-back-arrow.png) no-repeat center left;
}

/* spam_trap: This input is hidden. This is here to trick the spam bots*/

.form .spmhidip {
	display:none;
	width:10px;
	height:3px
}
#fg_crdiv {
	font-size: 0.3em;
	opacity: .2;
	-moz-opacity: .2;
	filter: alpha(opacity=20);
}
#fg_crdiv p {
	display:none;
}

input[type=submit]:disabled,
button:disabled,
input[type=submit][disabled=disabled],
button[disabled=disabled],
input[type=text]:disabled,
input[type=text][disabled=disabled],
text:disabled,
text[disabled=disabled] {
	background:#b5b5b5 !important;
}

input[type=submit]:disabled,
button:disabled,
input[type=submit][disabled=disabled],
button[disabled=disabled] {
	color:#ccc !important;
}

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

#footer {
	background-color:#37414C;
	text-align:center;
}

#footer .content {
	padding-top:40px;
}

#footer .main-section,
#footer .supporting-section {
	display:block;
	float:left;
	text-align:left;
}

#footer .main-section {
	width:640px;
}

#footer .supporting-section {
	width:300px;	
}

/* Footer Copyright */

#footer p {
	color:#B3B3B3;
	margin:0;
}

#footer p span,
#footer p span a {
	color:#666666;
}

#footer h3 {
	color:#29ABE2;
	margin-bottom:15px;
}