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

table.index { table-layout: fixed; border-style: hidden; border-spacing: 0px; }
table.index td { width: 50%; border-style:dotted; padding-left: 5px; padding-right: 5px; }

table.logos { table-layout: fixed; border-style: hidden; border-spacing: 0px; width: 100%; }
table.logos td { width: 33%; text-align: center; padding-bottom: 50px; }

table.third { table-layout: fixed; border-style: hidden; border-spacing: 0px; width: 100%; }
table.third td { width: 33%; border-style:dotted; text-align: center; }

table.fourth { table-layout: fixed; border-style: hidden; border-spacing: 0px; width: 100%; }
table.fourth td { width: 25%; border-style:dotted; text-align: center; }

table.product { border-style: hidden; border-spacing: 0px; width: 100%; }
table.product td { border-style:dotted; padding-left: 10px; padding-right: 10px; }

table.contact { table-layout: fixed; width: 100%; }
table.contact td { width: 50%; vertical-align: top; }

body {
	font-family: Arial, sans-serif;
	line-height: 1.5;	
	margin: 0px;
	padding: 0px;
	width: 100%;
}

#container {
	height: 100%;
	width: auto;
	position: relative;
	background-color: #E6E6E6;
	min-width: 960px;
}

#header {
	height: 90px;
	width: 960px;
	min-width: 960px;
	position: relative;
	top: 0px;
	margin-left: auto;
	margin-right: auto;
	z-index: 100;
}

/*---------- LOGO --------------------------------*/

#logo {
	position: left;
	z-index: 100;
}

/*---------- MENUBAR BACKGROUND --------------------------------*/

#menubar {
	height: 60px;
	width: 100%;
	min-width: 960px;
	position: absolute;
	top: 0px;
	
	/* Code for gradient */
	background: #ffffff; /* Old browsers */  
	background: -moz-linear-gradient(top,  #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */ 
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Chrome10+, Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
}

#menubar.empty{font-size: 0px;}

/*---------- MENU CONTAINER --------------------------------*/

#menu-container {
	margin-left: 150px;
}

/*---------- MAIN MENU --------------------------------*/

#menu {
	font: 13px/1.5 Helvetica,Arial,'Liberation Sans',FreeSans,sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	list-style-type: none;
	position: absolute;
	top:8px;
}

#menu li {
	float: left;
	margin: 0;			
}

#menu li a {
	text-decoration: none;
	display: block;
	padding: 0 30px;
	line-height: 40px;
	color: #666;
}

#menu li a:hover, #menu li.active a {color: blue;}

/*---------- RIBBON --------------------------------*/
#ribbon {
	height: 30px;
	width: 100%;
	min-width: 960px;
	position: absolute;
	top: 60px;
	background: #727272;
	background-image:url('../images/background-ribbon.jpg');
    background-repeat:repeat-x;
	-webkit-box-shadow: 0 4px 8px -2px #000000;
      -moz-box-shadow: 0 4px 8px -2px #000000;
         box-shadow: 0 4px 8px -2px #000000;
}

#ribbon.empty{font-size: 0px;}

#ribbon-container {
	width: 960px;
	min-width: 960px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	z-index: 101;
}

#sub-menu {
	font: 11px/1.5 Helvetica,Arial,'Liberation Sans',FreeSans,sans-serif;
	text-transform: uppercase;
	list-style-type: none;
	position: absolute;
	margin-left: 165px;
}

#sub-menu li {
	float: left;
	margin: 0;			
}

#sub-menu li a {
	text-decoration: none;
	display: block;
	margin-top: 3px;
	padding-left: 15px;
    padding-right: 15px;
	line-height: 0px;
	color: #FFF;
}

#sub-menu li a:hover, #menu li.active a {color: #CCC;}

/*---------- CONTENT --------------------------------*/

#content {
	font: 13px/1.5 Helvetica,Arial,'Liberation Sans',FreeSans,sans-serif;
	line-height: 1.5;
	height: 100%;
	width: 960px;
	min-width: 960px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	margin-bottom: 30px;
	padding: 5px;
	position: relative;
	background-color: #FFF;
	-webkit-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
	-moz-border-radius: 15px;
    border-radius: 1px;
}

/*---------- CONTACT FORM --------------------------------*/

#contact-container {
	height: 100%;
	width: 960px;
	min-width: 960px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	margin-bottom: 30px;
}

#contact-cell {
	font: 13px/1.5 Helvetica,Arial,'Liberation Sans',FreeSans,sans-serif;
	line-height: 1.5;
	height: 100%;
	width: 460px;
	position: relative;
	background-color: #FFF;
	padding: 5px;
	-webkit-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    -moz-box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
    box-shadow: 3px 3px 5px rgba(50, 50, 50, 0.5);
	-moz-border-radius: 15px;
    border-radius: 1px;
}

#contact-cell.left {float: left}
#contact-cell.right {float: right}

/*---------- FOOTER --------------------------------*/

/* -Footer main- */
.foot-container {
	font: 0px;
	height: 220px;
	width: 100%;
	min-width: 960px;
	position: relative;
	background-image:url('../images/background-footer.jpg');
    background-repeat:repeat-x,y;
}

.footer {
	height: 180px;
	width: 960px;
	position: relative;
	top: 5px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	padding: 20px 0 0 0;
}

/* -Foot- */
.foot-one {
	width: 172px;
	float: left;
	padding: 0 0 0 20px;
	font-size: 13px;
	font-weight: bold;
}
.foot-two {
	width: 172px;
	float: left;
	padding: 0 0 0 -20px;
	font-size: 13px;
}

/* -Footerlink one- */
.footerlink-one a:link {
	color: #FFF;
	text-decoration: none;
	outline: none;
}
.footerlink-one a:visited {
	color: #FFF;
	text-decoration: none;
	outline: none;
}
.footerlink-one a:hover {
	color: blue;
	text-decoration: none;
	outline: none;
}

/* -Foot two- */
.footerlink-two a:link {
	color: #CCC;
	text-decoration: none;
	outline: none;
}
.footerlink-two a:visited {
	color: #CCC;
	text-decoration: none;
	outline: none;
}
.footerlink-two a:hover {
	color: blue;
	text-decoration: none;
	outline: none;
}

/* -Footer copyright- */
.footer-bottom {
	height: 40px;
	top: 165px;
	width: 960px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}
.footer-copyright {
	width: 172px;
	float: left;
	padding: 0 0 0 20px;
	font-size: 11px;
	color: #CCC;
}