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

body, html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none;
}

body {
    font-family: "Roboto", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:14px;
    font-weight:300;
    color:#000000;
}

h1,
h2,
h3,
h4 {
    font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4 {
    font-weight:300;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong
p strong {
    font-weight:700;
}

h1 {
    font-size:36px;
    line-height:45px;
    color:#006837;
}

h2 {
    font-size:36px;
    line-height:45px;
}

h3 {
    font-size:24px;
    line-height:40px;
    margin-bottom:15px;
}

h4 {
    font-size:16px;
    line-height:20px;
    margin-bottom:15px;
}

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

p a {
    color:#0071BC;
}

/* FONT OPTIONS */

.font-bold {
    font-weight:700;
}

.font-red {
    color:#cc001a;
}

.font-black {
    color:#000000;
}

/* MAIN LAYOUT
----------------------------------------------------------------------------------------------------*/

body {
    padding-top:150px;
    background-color: #333333;
}

.container,
.content {
	position:relative;
	display:block;
    min-width:960px;
}

.container:after,
.content:after {
	display:block;
	content: " ";
	clear: both;
	height:0;
	width:100%;
	*zoom: 1;
}

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

.content {
    margin:0 auto;
	width:960px;
    padding:70px 10px 90px;
}

/* LAYOUT OPTIONS */

.left-column,
.right-column {
    display:block;
    width:460px;
    padding:20px 0 45px;
}

.left-column {
    float:left;
}

.right-column {
    float:right;   
}

.bg-lgrey {
    background:#f4f4f4;
}

/* HEADER
----------------------------------------------------------------------------------------------------*/

#header,
#main-header {
    -webkit-transition: height 200ms;
	-moz-transition: height 200ms;
	transition: height 200ms;
}

#header a,
#header img,
ul#header-navigation {
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

#header {
    position:fixed;
    top:0;
    left:0;
    height:150px;
    overflow:visible;
    z-index:101;
}

#main-header {
    height:100px;
}

#header .content {
    padding-top:0;
    padding-bottom:0;
}

#header > a {
    display:block;
}

#header a#logo {
    float:left;
    margin-right:10px;
}

#header a#company {
    float:right;
}

/* HEADER MAIN NAVIGATION */

#main-nav {
    height:50px;
    background-color:#0064AF;
    border-bottom:3px solid #4d4d4d;
}

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

ul#header-navigation {
    width:940px;
    height:47px;
    margin: 0 auto;
}

ul#header-navigation li:not(#logo-sml) {
    display:block;
    float:left;
    border-right:1px solid #3179AF;
}

ul#header-navigation li:first-child {
    border-left:1px solid #3179AF;
}

ul#header-navigation li#logo-sml {
    float:right;
    opacity:0;
    -webkit-transition: opacity 200ms;
	-moz-transition: opacity 200ms;
	transition: opacity 200ms;
}

ul#header-navigation li a {
    height:47px;
    line-height:47px;
    padding:0 20px;
    font-size:16px;
    font-weight:400;
    color:#ffffff;
}

ul#header-navigation li.active a,
ul#header-navigation li a.active,
ul#header-navigation li:not(#logo-sml) a:hover {
    background-color:#4d4d4d;
}

/* HEADER SUBNAVIGATION */

.sub-nav {
    position:absolute;
    top:150px;
    padding:25px 0 40px;
    background-color:#4D4D4D;
    -webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	transform-origin: top;
	-webkit-transition: -webkit-transform 100ms;
	-moz-transition: -moz-transform 100ms;
	transition: transform 100ms;
}

.sub-nav.active {
    -webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	transform: scaleY(1);
}

.sub-nav .content {
    padding-top:0;
    padding-bottom:0;
}

.sub-nav ul.bullet-list {
    width:33.3333333%;
    float:left;
    margin-bottom:0;
}

.sub-nav ul.bullet-list > li {
    display:inline-block;
    padding:0 40px 0 0;
    margin-bottom:20px;
    background:none;
}

.sub-nav ul.bullet-list > li:last-child {
    margin-bottom:0;   
}

.sub-nav ul.bullet-list > li > a {
    color:#ffffff;
    background:none;
    padding-left:20px;
}

.sub-nav ul.bullet-list > li > a:before {
    content: "";
    position:absolute;
    top:1px;
    left:0;
    display:block;
    width:14px;
    height:14px;
    background:#ffffff url(../images/icon-bullet-trans.png) no-repeat center center;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    -webkit-transition: background-color 200ms;
	-moz-transition: background-color 200ms;
	transition: background-color 200ms;
}

.sub-nav ul.bullet-list > li > a.active,
.sub-nav ul.bullet-list > li > a:hover  {
    color:#FFE000;   
}

.sub-nav ul.bullet-list > li > a.active:before,
.sub-nav ul.bullet-list > li > a:hover:before {
    background-color:#FFE000; 
}

.sub-nav ul.bullet-list ul {
    padding-left:20px;
}

.sub-nav ul.bullet-list ul li {
    list-style:none;
}

.sub-nav ul.arrow-list {
    padding-bottom:0;
}

.sub-nav ul.arrow-list li {
    -webkit-transition: background-color 200ms;
    -moz-transition: background-color 200ms;
    transition: background-color 200ms;
}

.sub-nav ul.arrow-list a {
    color:#cccccc;
    -webkit-transition: color 200ms;
    -moz-transition: color 200ms;
    transition: color 200ms;
}

.sub-nav ul.arrow-list li.active,
.sub-nav ul.arrow-list li:hover {
    background:url(../images/icon-arrow-grey-hover.png) no-repeat 0 2px;
}

.sub-nav ul.arrow-list li.active a,
.sub-nav ul.arrow-list a:hover {
    color:#d1b800;
}

/* HEADER NAVIGATION COMPACT */

#header.compact {
    height:50px;
}

#header.compact #main-header {
    height:0;
}

#header.compact .sub-nav {
    top:50px;   
}

#header.compact ul#header-navigation li#logo-sml {
    opacity:1;
}

#header.fancybox-margin {
    padding-right:15px;
}

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

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

.header-wrapper {
    display:block;
    margin-bottom:30px;
}

.header-wrapper h4 {
    margin-bottom:40px;
}

/* LINKS AND BUTTONS */

a.btn-link {
    display:inline-block;
    height:30px;
    line-height:30px;
    padding:0 15px 0 32px;
    background: #0064AF url(../images/icon-link-white.png) no-repeat 10px 8px;
    color:#ffffff;
    font-size:16px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: background-color 400ms;
	-moz-transition: background-color 400ms;
	transition: background-color 400ms;
}

a.btn-link:hover {
    background-color:#000000;
}

a.read-more-link {
    display:inline-block;
    padding-left:20px;
    background: url(../images/icon-link-blue.png) no-repeat 0 4px;
    font-size:16px;
    color:#0071BC;
    text-decoration:underline;
}

#back-top {
    display:inline-block;
    width:50px;
    height:50px;
    position:fixed;
    bottom:145px;
    right:60px;
    background:#0064AF url(../images/btn-back-top.png) no-repeat center center;
    background-size:cover;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

#back-top.active {
    opacity:1;
    visibility:visible;
}

#back-top:hover {
    background-color:#000000;
}

/* LIST STYLE - FLOAT LIST */

ul.float-list > li {
    display:block;
    float:left;
}

ul.float-list.divide3 > li {
    width:300px;
    margin-right:20px;
}

ul.float-list.divide3 > li:nth-child(3n) {
    margin-right:0;
}

ul.float-list.divide4 > li {
    width:25%;
    padding-right:40px;
}

/* LIST STYLE - IMAGE LIST */

ul.image-list,
ul.image-list li,
ul.image-list li span {
    display:block;
}

ul.image-list li {
    float:left;
    margin-bottom:20px;
    margin-right:20px;
}

ul.image-list li.no-margin {
    margin-right:0;   
}

ul.image-list li span {
    text-align:center;
    line-height:16px;
    margin-top:15px;
    min-height:80px;
    overflow:hidden;
}

ul.image-list.bordered li img {
    border:1px solid #666666;
}

ul.image-list.span40 span {
    min-height:40px;
}

/* LIST STYLE - IMAGE LIST FULL WIDTH */

ul.image-list.full li {
    position:relative;
}

ul.image-list.full .caption {
    display:flex;
    width:50%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    justify-content:center;
    align-items:center;
    flex-direction: column;
}

ul.image-list.full .caption div {
    width:100%;
    padding:0 30px;
}

ul.image-list.full h2,
ul.image-list.full h4 {
    color:#ffffff;
}

ul.image-list.full h2 {
    font-weight:700;
    margin-bottom:5px;
}


/* DIVIDE 2 */

ul.image-list.divide2 li {
    width:460px;
}

ul.image-list.divide2 li:nth-child(2n) {
    margin-right:0;   
}

ul.image-list.sml-caption span {
    min-height:40px;
}

/* DIVIDE 3 */

ul.image-list.divide3 li {
    float:left;
}

ul.image-list.divide3 span {
    width:300px;
}

ul.image-list.divide3 li:nth-child(3n) {
    margin-right:0;   
}

/* DIVIDE 4 */

ul.image-list.divide4 li {
    float:left;
}

ul.image-list.divide4 li span {
    width:220px;
}

ul.image-list.divide4 li:nth-child(4n) {
    margin-right:0;   
}

/* LIST STYLE - IMAGE LIST - JUSTIFIED */

ul.image-list.justified {
    text-align:justify;
}

ul.image-list.justified li {
    display:inline-block;
    float:none;
    margin-right:0;
}

/* LIST STYLE - IMAGE LIST - SMALL */

ul.image-list.small {
    width:780px;
    margin:0 auto;
    text-align:center;
    margin-top:25px;
}

ul.image-list.small li {
    display:inline-block;
    margin:0 4px 10px;
    text-align:center;
    float:none;
}

/* LIST STYLE - ARROW LIST */

ul.arrow-list li {
    position:relative;
    padding-left:20px;
    background:url(../images/icon-arrow-grey.png) no-repeat 0 2px;
    line-height:18px;
    margin-bottom:5px;
}

/* LIST STYLE - BULLET LIST */

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

ul.bullet-list {
    margin-bottom:25px;
}

ul.bullet-list > li {
    position:relative;
    padding-left:20px;
    background:url(../images/icon-bullet-dark.png) no-repeat 0 1px;
    line-height:18px;
    margin-bottom:5px;
}

ul.bullet-list li.heading {
    width:100% !important;
    padding:0;
    background:none;
    font-size:16px;
    font-weight:700;
    margin-bottom:15px;
    clear:both;
}

/* LIST STYLE - LISTS IN BULLET LIST */

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

ul.bullet-list ul > li {
    list-style: disc;
}

ul.bullet-list ul li {
    display:list-item;
    list-style-position: inside;
    margin-bottom:5px;
}

ul.bullet-list ul ul {
    margin-left:20px;
}

ul.bullet-list ul ul li {
    list-style: circle;
    list-style-position: inside;
}

/* LIST STYLE - BULLET LIST - LIGHT */

ul.bullet-list.light li {
    color:#ffffff;
}

ul.bullet-list.light li {
    background:url(../images/icon-bullet-light.png) no-repeat 0 2px;
}

/* LIST STYLE - DOWNLOAD LIST */

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

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

ul.download-list > li {
    position:relative;
    padding-left:20px;
    background:url(../images/icon-file-download.png) no-repeat 0 1px;
    line-height:18px;
    margin-bottom:5px;
}

ul.download-list li.heading {
    width:100% !important;
    padding:0;
    background:none;
    font-size:16px;
    font-weight:700;
    margin-bottom:15px;
    clear:both;
}

ul.download-list > li > a { 
    color:#0071BC;
    text-decoration:underline;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    transition: all 400ms;
}

ul.download-list > li > a:hover { 
    color:#f00;
}

/* BULLET LIST OPTIONS */

ul.bullet-list.twothirds {
    width:620px;
    margin-right:20px;
    float:left;
}

ul.bullet-list.divide2 {
    width:50%;
    float:left;   
}

ul.bullet-list.divide3 {
    width:33.3333333%;
    float:left;
}

ul.bullet-list.divide3 li {
    padding-right:20px;
}

/* LIST STYLE - SOCIAL LINKS */

ul#social-links {
    margin-bottom:20px;
}

ul#social-links li,
ul#social-links a {
    display:inline-block;
}

ul#social-links li {
    margin:0 5px;
}

/* LIST STYLE - 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 !important;
	background:none !important;
}

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

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

/* CONTENT - HOME SLIDER */

#slider {
    min-height:500px;
    overflow:hidden;
}

/* BXSLIDER CSS OVERRIDE - RESOURCE RELINK */

.bx-wrapper {
    margin: 0 auto 0;
}

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

.bx-wrapper .bx-prev {
	background: url(../images/bxslider/controls.png) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	background: url(../images/bxslider/controls.png) no-repeat -43px -32px;
}

.bx-wrapper .bx-controls-auto .bx-start {
	background: url(../images/bxslider/controls.png) -86px -11px no-repeat;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	background: url(../images/bxslider/controls.png) -86px -44px no-repeat;
}

/* HOME BXSLIDER CSS OVERRIDE */

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

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

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

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #ffffff;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border:none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #8AC53E !important;
}

.bx-wrapper .bx-controls-direction a {
    margin-top: 0;
    width: 80px;
    height: 80px;
    top:40%;
}

.bx-wrapper .bx-next {
    background: url(../images/btn-slider-next.png) no-repeat center center;
}

.bx-wrapper .bx-next:hover {
    background: url(../images/btn-slider-next-hover.png) no-repeat center center;
}

.bx-wrapper .bx-prev {
    background: url(../images/btn-slider-prev.png) no-repeat center center;
}

.bx-wrapper .bx-prev:hover {
    background: url(../images/btn-slider-prev-hover.png) no-repeat center center;
}

/* HOME BXSLIDER - MAIN SLIDER */

ul#home-slider > li {
    min-width:960px;
    min-height:500px;
}

#main-slider .bx-wrapper,
#main-slider .bx-wrapper .bx-viewport{
    max-height:550px;
}

#main-slider .bx-wrapper img {
    position:absolute;
    left:0;
    min-width:960px;
    min-height:500px;
    object-fit: cover;
    z-index:101;
}

img.align-top {
    top:0;
}

img.align-bottom {
    bottom:0;
}

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

/* HOME BXSLIDER CUSTOM ELEMENTS */

.slider-content {
    position:relative;
    display:block;
    height:0;
    margin:0 auto;
}

@media only screen and (min-width: 1100px) {
    
    .slider-content {
        width:940px;
    }
}

@media only screen and (max-width: 1099px) {
    
    .slider-content {
        width:800px;
    }
}

.slider-text {
    position:absolute;
    display:block;
    top:0;
    z-index:102;
}

.slider-text h1 {
    margin-bottom:5px;   
}

.slider-text h3 {
    line-height:30px;   
}

.slider-text.left {
    left:0;  
}

.slider-text.right {
    right:0;   
}

.slider-text ul {
    padding:10px 0;
}

.slider-text ul li {
    background: url(../images/icon-bullet-black.png) no-repeat 0 2px;
    font-size:18px;
    margin-bottom:10px;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    transition: all 400ms;
}

.slider-text ul li a {
    color:#000000;
    font-weight:300;
    -webkit-transition: all 400ms;
    -moz-transition: all 400ms;
    transition: all 400ms;
}

.slider-text ul li:hover {
    background: url(../images/icon-bullet-red.png) no-repeat 0 2px;
}

.slider-text ul li:hover a {
    color:#cc001a;
}

/* FANCYBOX CSS OVERRIDE */

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	background-image: url('../images/fancybox/fancybox_sprite.png');
}

#fancybox-loading div {
	background: url('../images/fancybox/fancybox_loading.gif') center center no-repeat;
}

.fancybox-nav {
	background: transparent url('../images/fancybox/blank.gif'); /* helps IE */
}

.fancybox-overlay {
	background: url('../images/fancybox/fancybox_overlay.png');
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
	   only screen and (min--moz-device-pixel-ratio: 1.5),
	   only screen and (min-device-pixel-ratio: 1.5){

	#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
		background-image: url('../images/fancybox/fancybox_sprite@2x.png');
	}

	#fancybox-loading div {
		background-image: url('../images/fancybox/fancybox_loading@2x.gif');
	}
}

.enquiry-box .fancybox-opened .fancybox-skin {
    background:transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* HOME - OUR SERVICES */

#home-services {
    text-align:center;
}

#home-services .content {
    padding-top:35px;
    padding-bottom:0;
}

#home-services h2 {
    margin-bottom:50px;   
}

/* HOME BXSLIDER - OUR SERVICES CAROUSEL */

ul#services-list li {
    display:block;
    width:300px;
    height:120px;
    overflow:hidden;
}

ul#services-list li img {
    width:auto;
    height:auto;
    float:left;
}

ul#services-list li .details {
    display:block;
    width:160px;
    height:120px;
    float:right;
    text-align:left;
}

#home-services .bx-wrapper,
#home-services .bx-wrapper .bx-viewport{
    min-height:220px;
}

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

#home-services .bx-wrapper .bx-pager.bx-default-pager a {
    background: #e6e6e6;
}

/* CONTENT - OUR SERVICES
----------------------------------------------------------------------------------------------------*/

.product-pages .logo {
    margin-top:50px;
}

/* LIMIT PARAGRAPH WIDTH (OPTIONAL)
.product-pages > p:not(.full) {
    display:block;
    width:68%;
}
*/

.product-pages a.btn-link {
    margin:10px 0;
}

/* OUR SERVICES - LOGO */

.logo {
    display:block;
    margin-bottom:25px;
}

.logo img {
    display:block;
    clear:both;   
}

/* OUR SERVICES - ROPES */

#ropes {
    background-color:#f4f4f4;
}

#ropes .content {
    text-align:center;
    padding-top:50px;
    padding-bottom:90px;
}

#ropes p {
    display:inline-block;
    width:770px;
}

/* OUR SERVICES - IMAGE CONTAINER */

.image-container,
.image-container-inner {
    display:block;
}

.image-container.logo {
    margin:60px 0 50px;
}

.image-container.logo img {
    clear:none;
}

.image-container {
    width:940px;
    overflow:hidden;
}

.image-container-inner {
    width:960px;
}

.image-container-inner:after {
    display:block;
	content: " ";
	clear: both;
	height:0;
	width:100%;
	*zoom: 1;
}
    
.image-container-inner .group-center {
    display:block;
    width:320px;
    float:left;
}

.image-container-inner img {
    float:left;
    margin:0 20px 20px 0;
}

.image-container-inner.bordered img {
    border:1px solid #666666;
}

/* OUR SERVICES - CONTENT FOCUS CONTAINER */

.focus-content {
    display:block;
    clear:both;
    padding:30px 20px 10px;
    background-color:#f4f4f4;
    margin:60px 0;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.focus-content:last-of-type {
    margin-bottom:0;   
}

.focus-content ul.bullet-list {
    margin-bottom:30px;
}

.focus-content ul.bullet-list.divide2 {
    width:49%;
}

.focus-content ul.bullet-list:nth-child(2n) {
    float:right;   
}

/* CONTENT FOCUS CONTAINER - BLUE */

.focus-content.blue {
    padding:30px 20px;
    background-color:#407aaa;
    margin:0 0 80px;
}

.focus-content.blue .text {
    float:right;
    width:46%;
    padding-right:30px;
}

.focus-content.blue .text h2 {
    font-weight:700;
    color:#eac915;
    margin-bottom:5px;
}

.focus-content.blue .text h3 {
    margin-bottom:10px;
}

.focus-content.blue .text h3,
.focus-content.blue .text p {
    color:#ffffff
}

.focus-content.blue ul.bullet-list li {
    padding-right:30px;
}

/* CONTENT FOCUS CONTAINER - DIVIDE 2 */

.focus-content.divide2 div {
    float:left;
    width:49%;
}

/* OUR SERVICES - APPLETON PRODUCTS */

#appleton-products {
    background-color:#f4f4f4;
}

#appleton-products .content {
    padding:60px 10px 20px;   
}

#appleton-products .header-wrapper {
    margin-bottom:10px;
}

#appleton-products .left-column,
#appleton-products .right-column {
    padding-top:0;   
}

#appleton-products ul.image-list.divide3 li {
    margin-bottom:0;
}

/* OUR SERVICES - GENERAL INFO TABLE */

.general-info-table {
    width:100%;
    margin-bottom:50px;
}

.general-info-table td {
    padding:5px 10px;
    text-align:center;
    vertical-align:middle;
}

.general-info-table tr td:first-child {
    width:600px;
    text-align:left;
}

.general-info-table thead td {
    font-weight:bold;
    color:#000000;
    border-bottom:2px solid #000000;
}

.general-info-table tbody tr:nth-child(even) td {
    background-color:#f4f4f4;
}

/* OUR SERVICES - REXROTH TRAINING - SPECIALIZED SKILL TRAINING SERVICES*/

#rexroth-training .left-column,
#rexroth-training .right-column {
    padding:0;
}

#rexroth-training .right-column img {
    margin-bottom:10px;
}

/* CONTENT - OUR PRODUCTS
----------------------------------------------------------------------------------------------------*/

/* OUR PRODUCTS - REXROTH */

#rexroth h3 {
    line-height:30px;
    margin-bottom:10px;
}

/* OUR PRODUCTS - HAGGLUNDS */

#hagglunds {
    background:#f4f4f4;
}

#hagglunds .frame {
    height:100px;
    background:#b6352a;
}

#hagglunds .frame .content {
    padding-top:0;
    padding-bottom:0;
}

#hagglunds .frame h2 {
    color:#ffffff;
    margin:0;
    font-size:30px;
    font-weight:700;
    line-height:100px;
}

#hagglunds .frame img {
    float:left;
    margin:20px 30px 20px 0;
}

#hagglunds .info {
    float:left;
    width:470px;
}

#hagglunds img {
    margin-bottom:10px;
}

#hagglunds .info h2 {
    font-weight:700;
    color:#b6352a;
    margin-bottom:10px;
}

#hagglunds .info h3 {
    line-height:30px;
    margin-bottom:20px;
}

#hagglunds ul.image-list li {
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

#hagglunds ul.image-list img {
    width:100%;
    height:auto;
    margin-bottom:15px;
}

#hagglunds ul.image-list h4 {
    display:block;
    color:#c54a37;
    font-size:18px;
    font-weight:700;
    text-align:center;
    margin-bottom:5px;
}

#hagglunds ul.image-list span {
    margin-top:0;
    min-height:40px;
}

/* OUR PRODUCTS - AVENTICS */

#aventics h3 {
    line-height:30px;
    margin-bottom:10px;
}

/*#aventics ul.image-list li {
}

#aventics ul.image-list img {
    margin-bottom:15px;
}

#aventics ul.image-list h4,
#aventics ul.image-list span {
    padding:0 20px;
}

#aventics ul.image-list h4 {
    display:block;
    color:#000000;
    font-size:18px;
    font-weight:700;
    text-align:center;
    margin-bottom:5px;
}

#aventics ul.image-list span {
    color:#000000;
    margin-top:0;
    min-height:60px;
}*/

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

#career .left-column,
#career .right-column {
    padding-top:0;
}

/* CONTENT - CONTACT US
----------------------------------------------------------------------------------------------------*/

#contact-us .product-pages {
    padding-bottom:30px;
}

/* GOOGLE MAPS */

#google-maps .content {
    padding-top:0;
    padding-bottom:0;
}

#google-maps #left-column {
    position:absolute;
    display:block;
    top:0;
    left:0;
    width:300px;
    height:500px;
    padding:40px 25px;
    background-color:rgba(255,255,255,0.8);
    z-index:100;
}

#map-canvas {
    height:500px;
    overflow:hidden
}


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

#enquiryform-container,
#enquiryform-success-message {
	display:none;
}

#enquiryform-container{
    width:500px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

#enquiryform,
#enquiryform-success-message,
#enquiryform-container .form-status {
    -moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

#enquiryform-container h3 {
    display:block;
    height:80px;
    line-height:80px;
    color:#ffffff;
    background-color:#0064AF;
    padding:0 20px;
    margin:0;
    -moz-border-radius: 4px 4px 0px 0px;
    -webkit-border-radius: 4px 4px 0px 0px;
    border-radius: 4px 4px 0px 0px;
}

#enquiryform {
    background-color:#ffffff;
}

.form-result p {
    background-color:#ffffff;
    padding:30px 20px 50px;
    margin-bottom:0;
    -moz-border-radius: 0px 0px 4px 4px;
    -webkit-border-radius: 0px 0px 4px 4px;
    border-radius: 0px 0px 4px 4px;
}

.form,
.form p {
	position:relative;
	display:block;
	padding:30px 20px;
}

.form .container {
	position:relative;
	text-align:left;
	min-width:inherit;
	background:none;
	padding:0 0 10px;
}

.form span.required {
	color:#F00;	
}

.form input,
.form textarea {
    display:block;
	border:1px solid #cccccc;
	background-color:#ffffff;
    font-family: "Roboto", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:14px;
    font-weight:300;
	line-height:32px;
    width:100%;
    color:#222222;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	outline:none;
}

.form #message {
    height:200px;
}

.form input:focus,
.form textarea:focus {
	border-color:#D1202C;
}

.form label {
    display:block;
    float:left;
    width:60px;
    height:32px;
    margin-right:10px;
    line-height:32px;
    text-align:right;
}

.form input {
	height:32px;
	padding:0 10px;
}

.form textarea {
	padding:5px 10px;
	line-height:20px;
	resize:none;
	overflow-y:hidden;
}

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

.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;
	-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;
    width:80%;
    min-width:400px;
	clear:both;
	font-size:12px;
    font-weight:400;
	line-height:20px;
	padding:0 10px 0;
	margin:0;
    color:#f00;
    -moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box
}

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

.form .error-all {
    font-weight:400;
	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;
    height:30px;
    line-height:30px;
    padding:0 15px 0 32px;
    background: #0064AF url(../images/icon-link-white.png) no-repeat 10px 8px;
    color:#ffffff;
    font-size:16px;
    border:none;
    width:auto;
    min-width:inherit;
    display:inline-block;
	cursor:pointer;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
	-webkit-transition: background-color 400ms;
	-moz-transition: background-color 400ms;
	transition: background-color 400ms;
}

.form .button:hover {
    background-color: #000000;
}

/* 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],
input[type=submit]:disabled:hover,
button:disabled:hover,
input[type=submit][disabled=disabled]:hover,
button[disabled=disabled]:hover,
input[type=text]:disabled:hover,
input[type=text][disabled=disabled]:hover,
text:disabled:hover,
text[disabled=disabled]:hover {
    background:#cccccc url(../images/icon-link-disabled.png) no-repeat 10px 8px; !important;
}

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

/* CONTENT - SUB FOOTER
----------------------------------------------------------------------------------------------------*/

#sub-footer {
    background-color:#E6E6E6;
    padding:35px 0 35px;
}

#sub-footer .content {
    padding-top:0;
    padding-bottom:0;
}

#sub-footer .content:before {
    content: "";
    position:absolute;
    top:0;
    left:230px;
    display:block;
    width:0px;
    height:100%;
    border-left:1px solid #f4f4f4;
    border-right:1px solid #cccccc;
}

#sub-footer h4 {
    margin-bottom:20px;
}

#sub-footer #left-column,
#sub-footer #right-column {
    display:block;
    float:left;
}

#sub-footer #left-column {
    width:220px;
}

#sub-footer #right-column {
    width:720px;
    padding-left:20px;
    padding-bottom:20px;
}

/* SUBFOOTER - LEFT COLUMN */

#sub-footer #left-column h4,
#sub-footer #left-column .frame {
    text-align:center;
}

#sub-footer #left-column .frame {
    display:block;
    margin-bottom:20px;
}

#sub-footer #left-column .frame img {
    margin:0 auto 3px;
}

#sub-footer #left-column .frame span {
    display:block;
}

/* SUBFOOTER - RIGHT COLUMN */

#sub-footer #right-column p {
    display:block;
    width:33.3333333%;
    padding-right:30px;
    float:left;
    -moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

/* CONTENT - FOOTER SERVICE LINKS
----------------------------------------------------------------------------------------------------*/

#footer-services-links {
    background-color:#cbcbcb;
}

#footer-services-links .content {
    padding-top:50px;
    padding-bottom:90px;
}

#footer-services-links h4 {
    margin-bottom:25px;
}

#footer-services-links ul.bullet-list {
    width:50%;
    float:left;
    margin:0;
}

#footer-services-links ul.bullet-list li {
    margin:0 0 10px;
    padding:0 20px 0 0;
    background:none;
}

#footer-services-links ul.bullet-list li a {
    padding-left:20px;
    line-height:16px;
    background: url(../images/icon-bullet-dark.png) no-repeat 0 1px;
    color:#000000;
    -webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

#footer-services-links ul.bullet-list li a.active,
#footer-services-links ul.bullet-list li a:hover {
    background: url(../images/icon-bullet-hover.png) no-repeat 0 1px;
    color:#0064AF;
}

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

#footer {
    background-color:#333333;
    text-align: center;
    color:#B3B3B3;
}

#footer .content {
    padding:45px 0 50px;
}

/* Footer COPYRIGHT */

#footer p {
	margin:0;
    font-weight:100;
}

#footer p span,
#footer p span a {
	color:#333333;
    text-decoration:none !important;
}