/** colors 
	top to bottom
	000000
	001219
	0d1e25
**/

@font-face {
    font-family: 'HelveticaRegular';
    src: url('fonts/helvetica/helvetica.eot');
    src: url('fonts/helvetica/helvetica.eot') format('embedded-opentype'),
         url('fonts/helvetica/helvetica.woff') format('woff'),
         url('fonts/helvetica/helvetica.ttf') format('truetype'),
         url('fonts/helvetica/helvetica.svg#HelveticaRegular') format('svg');
}

/* ======================= */
/* ======= Globals ======= */
/* ======================= */

::-webkit-input-placeholder { /* WebKit browsers */
    color: #999999;
    font-size: 16px;
    font-family: 'HelveticaRegular',sans-serif;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #999999;
    font-size: 16px;
    font-family: 'HelveticaRegular',sans-serif;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #999999;
    font-size: 16px;
    font-family: 'HelveticaRegular',sans-serif;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #999999;
    font-size: 16px;
    font-family: 'HelveticaRegular',sans-serif;
}

body {
	background: #000000;
	font-family: 'HelveticaRegular', sans-serif;
	font-size: 12px;
	font-weight: normal;
	line-height: 15px;
	color: #FFFFFF;
}

* {
	margin: 0px;
	padding: 0px;
}

a,
a:hover,
a:focus,
a:active,
a:link {
    text-decoration: none;
    outline: none;
}

a {
	color: #FFFFFF;
}

h1 { 
    font-size: 24px; 
} 

h2 { 
    font-size: 22px;
	line-height: 25px;
} 

h3 { 
    font-size: 20px; 
	line-height: 25px;
}

h3.subHeading {
    border-bottom: 1px solid #3F3F3F;
    margin: 15px 0px;
	color: #00B050;
}

h3.subHeading span {
    display: inline-block;
    width: auto;
    padding: 5px;
} 

h4 { 
    font-size: 18px;
    margin: 10px 0px;     
} 

h5 { 
    font-size: 16px;     
} 

h6 {
    font-size: 14px;
}

img {
    outline: none;
    border: 0;
}

ul, 
ol {  
    list-style: none;  
}

label,
input[type="text"],
textarea {
    font-size: 16px;
    font-family: 'HelveticaRegular',sans-serif;
}

input[type="text"],
textarea {
    background: #FFFFFF;
    border-width: 1px;
    border-style: solid;
    border-color: #E8E8E8 #E8E8E8 #FFFFFF #E8E8E8;
    color: #595959;
    padding: 8px 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) inset;
}

input[type="text"]:focus,
textarea:focus {
    border: 1px solid #00AEEF;
    box-shadow: 0 0 4px #4cc6f4;
}

/*================*/
/*==== Align ====*/
/*================*/

.left {
	float: left;
}
.right {
	float: right;
}
.center {
    margin: 0px auto;
}
.clear {
	clear: both;
}

/*================*/
/*===== Text =====*/
/*================*/

.txt-left {
    text-align: left;
}
.txt-right {
    text-align: right;
}
.txt-center {
    text-align: center;
}
.txt-justify {
    text-align: justify;
}
.txt-bold {
    font-weight: bold;
}

.txt-underline,
a.txt-underline {
    text-decoration: underline;
}

.txt-underline-none {
    text-decoration: none;
}

.font-size10 {
	font-size: 10px;
}

.font-size11 {
	font-size: 11px;
}

.font-size12 {
	font-size: 12px;
}

.font-size13 {
	font-size: 13px;
}

.font-size18 {
	font-size: 18px;
}

/* ======================== */
/* ======== Colors ======== */
/* ======================== */

.bgTurquoiseOne {
	background: #001219;
}

.bgTurquoiseTwo {
	background: #0d1e25;
}

.bgTurquoiseThree {
	background: #000b0f;
}

.bgTurquoiseFour {
	background: #000e14;
}

.txtLightBlue {
	color: #00aeef;
}

/* ======================= */
/* ======== Width ======== */
/* ======================= */

.width5 {
	width: 5%;
}
.width10 {
	width: 10%;
}
.width15 {
	width: 15%;
}
.width20 {
	width: 20%;
}
.width25 {
	width: 25%;
}
.width30 {
	width: 30%;
}
.width35 {
	width: 35%;
}
.width40 {
	width: 40%;
}
.width45 {
	width: 45%;
}
.width50 {
	width: 50%;
}
.width55 {
	width: 55%;
}
.width60 {
	width: 60%;
}
.width65 {
	width: 65%;
}
.width70 {
	width: 70%;
}
.width75 {
	width: 75%;
}
.width80 {
	width: 80%;
}
.width85 {
	width: 85%;
}
.width90 {
	width: 90%;
}
.width95 {
	width: 95%;
}
.width100 {
	width: 100%;
}

/* ======================= */
/* ====== Paddings ======= */
/* ======================= */

.paddingTop20 {
	padding-top: 20px;
}
.paddingTop30 {
	padding-top: 30px;
}
.paddingLeft30 {
	padding-left: 30px;
}

/* ======================= */
/* ======= Margins ======= */
/* ======================= */

.marginTop20 {
	margin-top: 20px;
}

/*=======================*/
/*======= Inputs ========*/
/*=======================*/

.inputBig {
    width: 550px;
}

.inputSmall {
    width: 260px;
}

/*=======================*/
/*======= Display =======*/
/*=======================*/

.inline {
	display: inline;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.display-none {
	display: none;
}

.display-table {
	display: table;
}

/*=======================*/
/*======= Content =======*/
/*=======================*/

.errors {color: #FF0000;}
.errors p {color: #FF0000;}
.success { color: #009900; }

.wrapper {
	width: 1000px;
	margin: 0px auto;
}

.logo {
	float: left;
	background: url('default/logo.png') no-repeat;
	width: 210px;
	height: 185px;
	margin-top: 20px;
}

.header {
	width: 980px;
	margin: 0px auto;
	height: 220px;
}

.header .topTitle {
	float: right;
	width: 77%;
}

.header h1 {
	font-size: 68px;
	font-family: 'HelveticaRegular', sans-serif;
	font-weight: normal;
	line-height: 85px;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-align: center;
	color: #00aeef;
	margin-top: 22px;
}

.header h1 span {
	font-size: 88px;
	letter-spacing: 4px;
	color: #FFFFFF;
}
	
/*** Top menu ***/
	
.topMenu {
	background: #001219;
	height: 110px;
	border-top: 1px solid #3f3f3f;
	border-bottom: 1px solid #3f3f3f;
}

/*** end Top menu ***/

.contentTop {
	background: #0d1e25;
	padding-bottom: 30px;
}

.contentTopContainer, .contentBottomContainer {
	display: table;
	width: 980px;	
	margin: 0px auto;
}

.contentTopContainer  h1 {
	padding: 30px 0px 20px;		
	font-size: 25px;
	font-family: 'HelveticaRegular', sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	color: #00aeef;
}

.contentTopContainer h2 {
	padding: 15px 0px 2px;
}

.contentBottomContainer h1 {
	padding: 30px 0px 0px;		
	font-size: 25px;
	font-family: 'HelveticaRegular', sans-serif;
	font-weight: normal;
	line-height: 35px;
	text-transform: uppercase;
	color: #FFFFFF;
}

.contentTopContainer p, .contentBottomContainer p {
	font-size: 16px;
	line-height: 20px;
	text-align: justify;
	margin: 10px 0px; 
}

.contentTopContainer ul li {
	margin: 5px 0px;
	font-size: 16px;
}
.contentBottom  {
	background: #001219;
	border-top: 1px solid #3f3f3f;
	border-bottom: 1px solid #3f3f3f;
	padding-bottom: 30px;
}

.footer {
	background: #0d1e25;
	border-bottom: 1px solid #3f3f3f;
}

.contentFooter {
	display: table;
	width: 960px;
	margin: 0px auto;
	padding: 10px 20px;
}

/*** Footer Box ***/

.footerBox {
	float: left;
	width: 335px;
	margin: 0px 2px;
	padding: 20px 10px;
}

.footerBoxRight {
	float: right;
	width: 205px;
	margin: 0px 2px;
	padding: 20px 10px;
}

.footerBox h1, .footerBoxRight h1 {
	font-size: 16px;
	font-family: 'HelveticaRegular', sans-serif;
	font-weight: normal;
	letter-spacing: 0px;
	text-transform: uppercase;
	text-align: left;
	color: #00aeef;
	margin-bottom: 15px;
}

.footerBox ul li, .footerBoxRight ul li {
	display: block;
	font-size: 15px;
	font-weight: normal;
	letter-spacing: 0px;	
	line-height: 20px;
	text-align: left;
	margin: 3px 0px;
}

.footerBox ul li a {
	color: #FFFFFF;
	transition: background-color 200ms ease 0s !important;
}

.footerBox ul li a:hover, .footerBox ul li a.active {
	color: #00aeef;
}

.footerBoxRight a {
	display: inline-block;	
	background: #052633;
	font-weight: 14px;
	text-transform: uppercase;
	padding: 10px 15px;
	margin-top: 5px;
	transition: background-color 200ms ease 0s;
}

.footerBoxRight a:hover {
	background: #00aeef;
}

/*** end Footer Box ***/

/*** Content box ***/

.contentBoxes {
	display: inline-block;
	padding: 0px 20px;
}

.contentBox {
	float: left;
	width: 265px;
	height: 335px;
	margin: 0px 2px;
	padding: 20px;
}

.contentBox h1 {
	font-size: 20px;
	font-family: 'HelveticaRegular', sans-serif;
	font-weight: normal;
	line-height: 33px;
	letter-spacing: 0px;
	text-transform: uppercase;
	text-align: left;
	color: #00aeef;
	padding: 0px;
}

.contentBox h1 span {
	font-size: 32px;
	color: #FFFFFF;
}

.leftBox {}
.leftBox p {
	margin: 20px 0px;
	font-size: 15px;
	font-weight: normal;
	text-align: justify;
	line-height: 19px;
}

.centerBox {}
.centerBox ul li {
	background: url('default/blue_li.png') no-repeat left center;
	font-size: 18px;
	font-family: 'HelveticaRegular', sans-serif;
	font-weight: normal;
	line-height: 30px;
	letter-spacing: 0px;
	text-transform: uppercase;
	text-align: left;
	margin: 18px 0px;
	padding-left: 25px;
}

.centerBox ul li a {
	display: inline-block;
	color: #FFFFFF;
	transition: background-color 200ms ease 0s !important;
}

.centerBox ul li a:hover, .centerBox ul li a.active {
	color: #00aeef;
}

.rightBox {}
.rightBox ul {
	margin-top: 23px;
}
.rightBox ul li {
	position: relative;
	margin: 4px 0px;
}

.rightBox ul li h1 a {
	position: absolute;
	background: rgba(0, 0, 0, 0.8);
	font-size: 18px;
	font-family: 'HelveticaRegular', sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	text-align: left;
	color: #FFFFFF;
	width: 233px;
	padding: 4px 15px;
	bottom: 0px;
	transition: background-color 200ms ease 0s !important;
}

.rightBox ul li:hover h1 a {
	background: rgba(0, 174, 239, 0.8);
}
/*** end Content box ***/

.copy {
	background: #001219;
	padding: 15px 0px;
}

.copy p {
	font-family: 'HelveticaRegular', sans-serif;
	font-size: 12px;
	text-align: center;
}

/*** Products and services ***/

ul.productsServices {
	font-size: 16px;
	margin-right: 30px;
}	

ul.productsServices.last {
	margin-right: 0px;
}	

ul.productsServices li {
	margin: 20px 0px;
}	

ul.productsServices li a, ul.productsServices li {
	color: #00aeef;
	text-transform: uppercase;	
}	

ul.productsServices li a {
	transition: background-color 200ms ease 0s !important;
}

ul.productsServices li a:hover {
	color: #FFFFFF;
}

ul.productsServices li ul {
	margin-top: 20px;
}

ul.productsServices li ul li {
	margin: 8px 0px;
}	

ul.productsServices li ul li a {
	color: #FFFFFF;
	text-transform: capitalize;
	font-size: 14px;
	transition: background-color 200ms ease 0s !important;
}	

ul.productsServices li ul li a:hover {
	color: #00aeef;
}

.coatingSystems {
	margin-top: 20px;
}

.coatingSystems img {
	height: 100px;
}

.coatingSystems ul {
	margin-left: 65px;
}
.coatingSystems ul li {
	margin-top: 0px;
	margin-bottom: 13px;
}
.coatingSystems ul li:last-child {
	margin-bottom: 0px;
}
.coatingSystems ul li a {
	color: #FFFFFF;
	transition: background-color 200ms ease 0s !important;
}
.coatingSystems ul li a:hover {
	color: #00aeef;
}
/*** end Products and services ***/

.bioActiveGlass {}
.bioActiveGlass ul {
	margin-left: 20px;
}
.bioActiveGlass ul {
	list-style: circle;
}
.bioActiveGlass ul li {
	margin: 10px 0px;
	line-height: 20px;
}

/*** Contact ***/

.contactForm ul li {
    vertical-align: top;
    margin: 0px 5px 0px 0px;
    padding-bottom: 20px;
    position: relative;
}

.contactForm p {
    margin: 0px;
}

.contactForm label {
    padding: 5px 0;
    display: block;
}

.contactForm textarea {
    width: 550px;
    max-width: 550px;
    min-height: 150px;
}

.contactForm #captcha {
    width: 170px;
}

.contactForm input[type="submit"] {
    display: inline-block;
    background: #052633 !important;
    margin-top: 15px;
    cursor: pointer;
    border: 0px;
    color: #FFFFFF;
    display: block;
    font-weight: 14px;
    padding: 10px 15px;
    text-transform: uppercase;
    transition: background-color 200ms ease 0s !important;
}

.contactForm input[type="submit"]:hover {
    background: #00aeef !important;
}

.contactForm input.errorField,
.contactForm textarea.errorField {
    background: #f2dede;
    border: 1px solid #e6a2a1;
}

.contactForm span.errorField {
    display: block;
    color: #b6173f;
    position: absolute;
    bottom: 0px;
    left: 0px;
}

.contactAddresses {
    float: left;
    width: 36%;
    padding-left: 20px;    
}

.contactAddresses p {
    padding-top: 20px;
    line-height: 25px;
}

.contactAddresses h1 {
    padding-top: 17px;;
    font-size: 18px;
}

.contactAddresses ul {}
.contactAddresses ul li {
    font-size: 25px;
    line-height: 30px;
}

/*** end Contact ***/