/* FONTS
----------------------------------------------------------------------------------------------------*/

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

body {
    color: #222222;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
}

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

h1 {
    font-size:40px;
}

h2 {
    font-size:40px;
    margin-right:10px;
}

h3 {
    font-size:36px;
    line-height:45px;
    vertical-align:bottom;
}

h2,
h3 {
    display:inline-block;
    font-weight:400;
    margin-bottom:15px;
}

h4,
h5 {
    margin-bottom:20px;
}

h4 {
    font-size:18px;
}

h5 {
    font-size:14px;
}

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

a {
    color:#FBB03B;
}

/* FONT OPTIONS */

.underline {
    text-decoration:underline;
}

.helvetica {
    font-family: Arial, Helvetica, sans-serif;
}

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

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

.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 {
	width:100%;
}

.content {
    margin:0 auto;
	width:960px;
    padding:40px 10px 80px;
}

.left-column,
.right-column {
    width:455px;
}

.left-column {
    float:left;
}

.right-column {
    float:right;
}

.thirds {
    width:33.3333333%;
    float:left;
}

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

#header {
    position:fixed;
    top:0;
    left:0;
    height:170px;
    background: #ffffff;
    z-index:101;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -webkit-transition: background, height 200ms;
	-moz-transition: background, height 200ms;
	transition: background, height 200ms;
}

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

#header a#logo {
    display:block;
    position:relative;
    float:left;
    width:210px;
    height:150px;
    margin:10px 0;
    overflow:hidden;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

#header a#logo img {
    width:100%;
    height:auto;
}

#header.fancybox-margin {
    margin-left:-8px !important;
}

#header.compact {
    height:100px;   
}

#header.compact a#logo {
    width:140px;
    height:80px;
}

#header.compact ul#header-navigation > li {
    padding: 25px 0;
}

/* HEADER MAIN NAVIGATION */

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

ul#header-navigation {
    float:right;
}

ul#header-navigation > li {
    position:relative;
    float:left;
    margin-left:30px;
    padding:60px 0;
    -webkit-transition: padding 200ms;
	-moz-transition: padding 200ms;
	transition: padding 200ms;
}

ul#header-navigation > li:first-child {
    margin-left:0;
}

ul#header-navigation > li > a,
ul#header-navigation > li span {
    display:block;
    color:#DB1F27;
    text-align:center;
    line-height:22px;
    -webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

ul#header-navigation > li > a {
    height:50px;
    padding:2px 0;
    font-family: "Roboto Condensed", sans-serif;
    font-size:15px;
    font-weight:400;
    color:#999999;
}

ul#header-navigation > li:hover span,
ul#header-navigation > li:hover > a {
    color:#d71921;   
}

ul#header-navigation > li span {
    font-size:17px;
    font-weight:bold;
    color:#222222;
    margin-bottom:2px;
}

li.dropdown:last-child ul.subnav {
    left:-130px;
}

li.dropdown:last-child ul.subnav li a {
    text-align:center;   
}
    

li.dropdown ul.subnav {
    -webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: -webkit-transform 200ms;
	-moz-transition: -moz-transform 200ms;
	transition: transform 200ms;
}

li.dropdown:hover ul.subnav {
    -webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}

ul.subnav li,
ul.subnav li a {
    display:block
}

ul.subnav {
    position:absolute;
    background:#666666;
    top:170px;
    left:-15px;
}

#header.compact ul.subnav {
    top:100px;   
}

ul.subnav:before {
    content: "";
    display:block;
    width:14px;
    height:7px;
    position:absolute;
    top:-7px;
    left:40px;
    background:url(../images/bg-subnav-arrow.png) no-repeat center top;
}

li.dropdown:last-child ul.subnav:before {
    left:160px;
}

ul.subnav li a {
    font-size:12px;
    white-space:nowrap;
    color:#ffffff;
    padding:10px 15px;
    border-bottom:1px dotted #ffffff;
    min-width:200px;
    -webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

ul.subnav li:last-child a {
    border:none;   
}

ul.subnav li a:hover {
    color:#FBB03B;   
}

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

.divider {
    width:100%;
    height:5px;
    margin-bottom:30px;
    padding-top:20px;
    border-bottom:1px solid #cccccc;
}

/* LINKS AND BUTTONS */

a.btn {
    display:inline-block;
    height:30px;
    line-height:30px;
    padding:0 30px 0 20px;
    background: #0184A1 url(../images/icon-link-arrow.png) no-repeat center right;
    color:#ffffff;
    margin-top:10px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: background 200ms;
	-moz-transition: background 200ms;
	transition: background 200ms;
}

a.btn.active,
a.btn:hover {
    background:#DB1F27 url(../images/icon-link-arrow.png) no-repeat center right;
}

/* LIST STYLE - NORMAL OL LIST */

ol {
    margin-bottom:30px;
}

ol > li.heading {
    font-weight:bold;
    list-style:none;
    margin:0;
}

ol > li {
    margin-left:16px;
    list-style:decimal;
    list-style-position: outside;
}

/* LIST STYLE - FEE LIST */

ol.fee-list {
    width:100%:
}

ol.fee-list > li {
    margin-bottom:10px;
}

ol.fee-list.divide3 > li {
    width:33%;   
    float:left;
}

ol.fee-list ul {
    margin:10px 0;   
}

/* LIST STYLE - BULLET LIST */

ul.bullet-list li {
    position:relative;
    padding-left:10px;
}

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

ul.bullet-list li:before {
    position:absolute;
    top:0;
    left:0;
    display:block;
    content: "\2022";
    float:left;
    font-size: 14px;
    line-height:20px;
    padding-right: 5px;
}

ul.bullet-list li.heading:before {
    display:none;   
}

/* LIST STYLE - CLEAR LIST */

ol li.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;
    list-style:none !important;
}

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

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

#error-page {
    display:none;
    max-width:600px;
    padding:30px 20px;
    background:#ffffff;
}

/* CONTENT - HOME SLIDER */

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

li.blank {
    background:#333333;
}

/* BXSLIDER CSS OVERRIDE - RESOURCE RELINK */

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

.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 {
    background:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
}

.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;
    height:10px;
}

.bx-wrapper .bx-pager-item {
    vertical-align: top;
}

.bx-wrapper .bx-pager.bx-default-pager a {
    background: #ffffff !important;
    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: #FBB03B !important;
}

/* 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:500px;
}

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

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

/* HOME BXSLIDER - CUSTOM CONTENT */

#main-slider .slider-content {
    position:relative;
    height:0;
    width:940px;
    margin:0 auto;
}

#main-slider .slider-content .slider-text {
    position:absolute;
    top:0;
    left:0;
    display:table;
    width:100%;
    height:500px;
    text-align:center;
    z-index:10000;
}

#main-slider .slider-content .slider-text .center {
    display:table-cell;
    vertical-align:middle;
}

#main-slider .slider-content .slider-text h1 {
    color:#FBB03B;
    line-height:44px;
    margin-bottom:20px;
}

#main-slider .slider-content .slider-text h1 span {
    font-size:28px;
    font-weight:normal; 
    text-transform: uppercase;
    color:#f7d47b;
}

#main-slider .slider-content .slider-text h1 span.helvetica {
    color:#FBB03B;
    font-size:44px;   
}

#main-slider .slider-content .slider-text h2 {
    font-size:22px;
    color:#f7d47b;
}

#main-slider .slider-content .slider-text img.slide-2 {
    width:auto;
    height:auto;
    margin-top:300px;
}

/* FANCYBOX CSS OVERRIDE - RESOURCE RELINK */

#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');
	}
}

/* FANCYBOX CSS OVERRIDE */

.fancybox-inner {
    border:4px solid #000000;
}

.fancybox-opened .fancybox-skin {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

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

.error-popup .fancybox-title-float-wrap {
    margin-bottom: -60px;
}

/* NEWS AND EVENTS
----------------------------------------------------------------------------------------------------*/

#news-events {
    background:#ffffff;
}

/* LATEST NEWS */
#latest-news ul#news-list li {
    margin-bottom:8px;
}

#latest-news ul#news-list li a {
    color:#d71921;
    -webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

#latest-news ul#news-list li a span {
    display:inline-block;
    margin-right:5px;
}

#latest-news ul#news-list li a:hover {
    color:#FBB03B;
}

/* EVENTS */
#event-overview h4,
#event-overview h5 {
    margin-bottom:5px;
}

#event-overview-content {
    width:940px;
}

/* CONVOY LIST CUSTOM CAROUSEL CONTROLS */

#news-events .bx-wrapper .bx-controls {
    position: absolute;
    top: -60px;
    right: 0;
    display: block;
    width: 95px;
    height: 40px;
}

#news-events .bx-wrapper .bx-controls-direction a {
    top: 0;
    margin-top: 0;
    width: 40px;
    height: 40px;
    z-index:100;
    background-color: #cccccc;
    background-repeat: no-repeat;
    background-position: center top;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

#news-events .bx-wrapper .bx-controls-direction a:hover {
    background-color:#D61921;   
}

#news-events .bx-wrapper .bx-prev {
    left:0;
    background-image: url(../images/icon-prev.png);
}

#news-events .bx-wrapper .bx-next {
    right:0;
    background-image: url(../images/icon-next.png);
}

/* CONVOY LIST CAROUSEL */

#news-events ul#convoy-list li {
    background:#ffffff;
    border:5px solid #222222;
    padding:5px;
    -webkit-transition: border 200ms;
	-moz-transition: border 200ms;
	transition: border 200ms;
}

#news-events ul#convoy-list li a {
    display:block;
    color:#323232;
}

#news-events ul#convoy-list li img {
    margin-bottom:6px;
}

#news-events ul#convoy-list li span {
    display:block;
    font-size:12px;
    height:50px;
}

/* ROUTE LIST
----------------------------------------------------------------------------------------------------*/

#route-list {
    background:#f4f4f4;
}

#route-list header {
    display:block;
    text-align:center;
}

#route-list img {
    display:block;
    border:4px solid #222222;
    margin:0 auto 30px;
}

#route-list table {
    width:100%;
    margin-bottom:40px;
}

#route-list table td {
    font-size:14px;
    padding:5px 0 5px 20px;
}

#route-list table thead td {
    font-weight:bold;
    border-bottom:1px solid #222222;
}

#route-list table thead td span {
    display:block;
    font-size:16px;
    font-weight:bold;
}

#route-list table tbody tr:nth-child(odd) td {
    background:#e0e0e0;  
}

#route-list ol {
    margin-bottom:0;
}

/* PHOTO GALLERY
----------------------------------------------------------------------------------------------------*/

#gallery {
    background:#333333;
}

#gallery .content {
    padding-bottom:120px;
}

#gallery h2,
#gallery h3 {
    color:#ffffff;   
}

#gallery ul#gallery-list,
#gallery ul#gallery-list li,
#gallery ul#gallery-list li a,
#gallery ul#gallery-list li a span {
    display:block;
}

#gallery ul#gallery-list li {
    margin-bottom:20px;
}

#gallery ul#gallery-list li:nth-child(4n) {
    margin-right:0;   
}

#gallery ul#gallery-list li a {
    color:#ffffff;
    -webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

#gallery ul#gallery-list li a img {
    background:#ffffff;
    width:200px;
    max-width:200px;
    border:5px solid #000000;
    padding:5px;
    -moz-box-sizing:content-box;
	-webkit-box-sizing:content-box;
	box-sizing:content-box;
    -webkit-transition: border-color 200ms;
	-moz-transition: border-color 200ms;
	transition: border-color 200ms;
}

#gallery ul#gallery-list li a:hover img {
    border-color:#FBB03B;   
}

#gallery ul#gallery-list li a:hover {
    color:#FBB03B;
}

#gallery ul#gallery-list li a span {
    max-width:220px;
    clear:both;
    text-align:center;
    padding:10px 10px;
    overflow:hidden;
}

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

#contact {
    background:#ffffff;
    -webkit-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.05);
}

#contact .content {
    padding-bottom:40px;
}

#contact .header-tab {
    position:absolute;
    top:-56px;
    left:0;
    background: #ffffff;
    padding: 0 20px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.05);
    -moz-box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.05);
    box-shadow: 0px -1px 5px 0px rgba(0,0,0,0.05);
}

#contact .header-tab:before {
    content: "";
    display:block;
    width:100%;
    height:5px;
    background:#ffffff;
    position:absolute;
    bottom:-2px;
    left:0;
    z-index:10;
}

#contact .header-tab h2,
#contact .header-tab h3 {
    color:#222222;
}

#contact p {
    margin-bottom:20px;
}

#contact .header-tab h2,
#contact .header-tab h3 {
    margin-bottom:0;
}

/* CONTENT - POP UP CONTENT
----------------------------------------------------------------------------------------------------*/

.popup-content {
    display:none;
    padding:30px 20px;
    color:#222222;
    width:940px;
    background: #ffffff;
}

.popup-content p {
    margin-bottom:20px;
}

.popup-content h3 {
    font-weight:bold;
    margin-bottom:20px;
    font-size: 22px;
    line-height: 22px;
    vertical-align: middle;
}

.popup-content h4 {
    margin-bottom:5px;
}

.popup-content table {
    margin-bottom:30px;
}

.popup-content .divider {
    width: 100%;
    margin-bottom: 50px;
    border-bottom: 5px solid #f4f4f4;
}

/* POP UP CONTENT - CONVOY */

.convoy {
    width:800px;
}

.convoy-image,
.convoy-info {
    display:block;
}

.convoy-image {
    float:left;
    width:200px;
}

.convoy-info {
    float:right;
    width:540px;
}

.convoy-info p {
    line-height:22px;   
}

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

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

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

#enquiryform-container h2 {
    margin-bottom:10px;
}

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

#enquiryform {
    width:420px;
}

.form,
.form p {
	position:relative;
	display:block;
}

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

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

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

.form input,
.form textarea {
    display:block;
	border:none;
	background-color:#f4f4f4;
    font-family: "Roboto", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:14px;
    font-weight:300;
	line-height:30px;
    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 input {
	height:30px;
	padding:0 15px;
}

.form #message {
    height:80px;
}

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

.form textarea {
	padding:5px 15px;
	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 15px 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 .submit-btn {
	position:relative;
    height:30px;
    line-height:30px;
    padding:0 20px;
    background: #0184A1;
    color:#ffffff;
    font-size:16px;
    border:none;
    width:auto;
    min-width:inherit;
    display:inline-block;
	cursor:pointer;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
	-webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

.form .submit-btn:hover {
    background-color:#DB1F27;
}

/* 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-email-disabled.png) no-repeat center right; !important;
    */
    background:#cccccc; !important;
}

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

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

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

#footer .content {
    padding:40px 0 10px;
}

/* FOOTER COPYRIGHT */

#footer p {
    display:block;
    clear:both;
	margin-bottom:15px;
    line-height:15px;
}

#footer p span {
    display:block;
}

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