/* 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: Helvetica Neue, Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:14px;
    font-weight:200;
    color:#000000;
}

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

h1,
h2 {
    font-size:28px;
    line-height:32px;
    margin-bottom:40px;
}

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

h3 {
    font-size:24px;
}

h4 {
    font-size:18px;
    line-height:24px;
    margin-bottom:6px;
}

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

p.lead {
    font-size:18px;
    line-height:22px;
}

p a {
    color:#0071BC;
}

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

body {
    background-color: #000000;
}

/* PRELOAD BACKGROUND IMAGES */

body::after{
    position:absolute;
    width:0;
    height:0;
    overflow:hidden;
    z-index:-1;
    content: url(../images/bg-btn-hover.png);
}

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

/* LAYOUT OPTIONS */

.bg-lgrey {
    background-color:#f4f4f4;
}

.bg-white {
    background-color:#ffffff;
}

.noscroll {
    position:fixed;
}

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

#header {
    position:fixed;
    top:0;
    left:0;
    padding:15px 0;
    background:#1B1C4E;
    z-index:101;
    height:100px;
    max-height:100px;
    -webkit-transition-property: height, padding;
    -webkit-transition-duration: 200ms;
    -moz-transition-property: height, padding;
    -moz-transition-duration: 200ms;
    transition-property: height, padding;
    transition-duration: 200ms;
    -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);
}

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

#header a#logo {
    display:block;
    width:205px;
    height:70px;
    overflow:hidden;
    float:left;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

#header a#logo img {
    width:100%;
    height:auto;
    margin-bottom:10px;
}

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

/* HEADER MAIN NAVIGATION */

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

ul#header-navigation {
    margin:20px 10px 0 0;
    float:right;
}

ul#header-navigation > li {
    float:left;
    margin-left:30px;
}

ul#header-navigation > li > a {
    position:relative;
    font-family: "Roboto", sans-serif;
    font-size:18px;
    font-weight:300;
    color:#CACCEA;
    cursor:pointer;
    height:25px;
    line-height:25px;
}

ul#header-navigation > li > a::after {
    content: "";
    display:block;
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:25px;
    border-bottom:1px solid #CACCEA;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

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

ul#header-navigation > li > a.active::after,
ul#header-navigation > li > a:hover::after {
    width:100%;
    border-color:#EFB626;
}

/* HEADER COMPACT */

#header.compact {
    padding:20px 0;
    height:80px;
}

#header.compact  a#logo {
    height:40px;
}

#header.compact ul#header-navigation {
    margin-top:10px;
}

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

#error-page {
    display:none;
}

.content-text {
    display:block;
    padding:0 40px;
}

.content-info {
    display:block;
    float:right;
    width:640px;
    padding-left:55px;
    border-left:4px dotted #cccccc;
}

/* LINKS AND BUTTONS */

a.btn-link {
    position:relative;
    display:inline-block;
    height:40px;
    line-height:40px;
    padding:0 25px;
    font-weight:bold;
    color:#222222;
    cursor:pointer;
    background:url(../images/bg-btn.png) repeat-x center left;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

a.btn-link.active,
a.btn-link:hover {
    background:url(../images/bg-btn-hover.png) repeat-x center left;
}

a.btn-link.top {
    padding:0 60px 0 25px;
}

a.btn-link.top:before {
    content: "";
    display:block;
    width:40px;
    height:40px;
    background:#D87600 url(../images/icon-backtop.png) no-repeat center center;
    position:absolute;
    top:0;
    right:0;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    -webkit-transition: background 200ms;
	-moz-transition: background 200ms;
	transition: background 200ms;
}

a.btn-link.top:hover::before {
    background:#E2B17D url(../images/icon-backtop.png) no-repeat center center;
}

a.btn-link.close {
    padding:0 25px 0 60px;
}

a.btn-link.close::before {
    content: "";
    display:block;
    width:40px;
    height:40px;
    background:#D87600 url(../images/icon-back.png) no-repeat center center;
    position:absolute;
    top:0;
    left:0;
    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
    -webkit-transition: background 200ms;
	-moz-transition: background 200ms;
	transition: background 200ms;
}

a.btn-link.close:hover::before {
    background:#E2B17D url(../images/icon-back.png) no-repeat center center;
}

/* LIST STYLE - BULLET LIST */

ol {
    margin-bottom:20px;
}

ol li.heading {
    font-weight:bold;
}

ol li {
    margin-bottom:5px;
    line-height:18px;
}

ol li strong {
    display:block;
    margin-bottom:5px;
}

ol li p {
    padding-left:16px;   
}

ol ul.bullet-list {
    padding:0;
    margin:0 0 20px 16px;
}

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

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

/* LIST STYLE - CENTER LIST */

ul.center-list {
    display:block;
    text-align:center;
    margin-bottom:30px;
}

ul.center-list li {
    position:relative;
    display:inline-block;
    margin-bottom:100px;
    vertical-align: top;
}

ul.center-list li img {
    margin-bottom:10px;
}

ul.center-list li span {
    display:block;
    width:100%;
    padding:0 36px;
    font-family: "Roboto", sans-serif;
    font-size:18px;
    font-weight:300;
    line-height:22px;
}

ul.center-list li a {
    display:block;
    color:#222222;
    -webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

ul.center-list li a img {
    margin:0;
    margin-bottom:10px;
    -moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
    -webkit-transition: border 200ms;
	-moz-transition: border 200ms;
	transition: border 200ms;
}

ul.center-list li a.service-1 .bordered-img {
    background:url(../images/icon-business-improvement-it-consultancy.png) no-repeat center center;   
}

ul.center-list li a.service-2 .bordered-img {
    background:url(../images/icon-systems-integration-intelligent-information-system.png) no-repeat center center;   
}

ul.center-list li a.service-4 .bordered-img {
    background:url(../images/icon-supply-support-maintenance-software-hardware-accessories-peripherals.png) no-repeat center center;   
}

ul.center-list li a.service-5 .bordered-img {
    background:url(../images/icon-systems-support-maintenance.png) no-repeat center center;   
}

ul.center-list li a:hover {
    color:#EFB626;
}

ul.center-list li a.service-1:hover .bordered-img {
    background: url(../images/icon-business-improvement-it-consultancy-hover.png) no-repeat center center;   
}

ul.center-list li a.service-2:hover .bordered-img {
    background: url(../images/icon-systems-integration-intelligent-information-system-hover.png) no-repeat center center;    
}

ul.center-list li a.service-3:hover .bordered-img {
    background: url(../images/icon-rapid-application-systems-development-hover.png) no-repeat center center;   
}

ul.center-list li a.service-4:hover .bordered-img {
    background: url(../images/icon-supply-support-maintenance-software-hardware-accessories-peripherals-hover.png) no-repeat center center;  
}

ul.center-list li a.service-5:hover .bordered-img {
    background: url(../images/icon-systems-support-maintenance-hover.png) no-repeat center center;    
}

ul.center-list.divide-three li {
    width:300px;
}

ul.center-list.divide-three li:nth-child(3n)::after {
    display:none;  
}

/* LIST STYLE - FLOAT LIST */

ul.float-list {
    margin-bottom:5px;
}

ul.float-list li {
    float:left;
    margin:0 20px 20px 0;
}

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

ul.float-list.full {
    width:960px;
    margin:20px 0;
}

/* LIST STYLE - ICON LIST */

ul.icon-list {
    margin-bottom:40px;
}

ul.icon-list li {
    margin-bottom:5px;
}

ul.icon-list li span {
    font-weight:bold;
}

ul.icon-list li img {
    float:left;
    margin-right:10px;
}

/* LIST STYLE - BULLET LIST */

ul.bullet-list li {
    position:relative;
    padding-left:20px;
    margin-bottom:5px;
    line-height:18px;
}

ul.bullet-list li::before {
    content: "\2022";
    position:absolute;
    top:0;
    left:0;
    font-size:18px;
}

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

ul.bullet-list ul li {
    padding-left:0;
    list-style:circle inside;
}

ul.bullet-list li.heading {
    font-weight:bold;
}

ul.bullet-list > li.heading {
    padding-left:0;
}

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

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

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

ul.bullet-list li strong {
    margin-bottom:5px;
}

ul.bullet-list li span {
    margin-bottom:10px;
}

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

/* 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
----------------------------------------------------------------------------------------------------*/

#home {
    background:url(../images/bg-home.jpg) no-repeat center top;
    background-size:cover;
    height:700px;
}

#home .content-text {
    color:#ffffff;
    width:40%;
    min-width:470px;
    /* width:50%; */
    height:700px;
    float:right;
    background:rgba(0,0,0,0.6);
    padding-top:200px;
}

#home .content-text h1 {
    margin-bottom:10px;   
}

#home .content-text p {
    font-size:18px;
    font-weight:100;
    line-height:24px;
}

#home .content-text p:last-of-type {
    margin-bottom:40px;   
}

/* 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-opened .fancybox-skin {
    background:#ffffff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

/* FANCYBOX CUSTOM CSS OVERRIDE */

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

.fancybox-opened .fancybox-skin {
    height:100vh !important;
}

.fancybox-close {
    top: 0;
    right: 0;
    width: 150px;
    height: 50px;
    background: none;
}

.fancybox-close:before {
    content: "CLOSE";
    display:block;
    font-size:24px;
    font-weight:bold;
    line-height:50px;
    text-decoration:underline;
    color:#1B1C4E;
    float:left;
}

.fancybox-close:after {
    content: "";
    display:block;
    width:50px;
    height: 50px;
    background: #1B1C4E url(../images/icon-close.png) no-repeat center center;
    float:right;
}



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

#services {
    text-align:center;
}

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

.services {
    display:none;
}

#service-4 ul.bullet-list li:first-of-type ul {
    width:50%;
    float:left;
}

#service-4 ul.bullet-list li:first-of-type ul:nth-child(2n) {
    float:right;   
}

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

#clients {
    text-align:center;
}

#clients h2 {
    margin-bottom:50px;
}

#clients ul.center-list li {
    margin-bottom:50px;
}

#clients ul.center-list li span {
    display:block;
    font-size:14px;
    font-weight:bold;
    line-height:18px;
    padding:10px 0 0;
}

#clients ul.center-list li::after {
    display:none;
}


/* CONTENT - PROCESS FLOW
----------------------------------------------------------------------------------------------------*/

#work-scheme {
    text-align:center;
}

#work-scheme-container,
#work-scheme-canvas,
#work-scheme-canvas .slide {
    height:300px;
}

#work-scheme-container,
#work-scheme-canvas .slide {
    width:940px;
}

#work-scheme-container {
    position:relative;
    overflow:hidden;
    margin-bottom:70px;
}

/* 5 SLIDES, 940PX EACH */
#work-scheme-canvas {
    width:4700px; 
}

#work-scheme-canvas .slide {
    float:left;
    text-align:center;
}

#work-scheme-canvas .slide img,
#work-scheme-canvas .slide .slide-text {
    display:inline-block;
}

#work-scheme-canvas .slide img {
    margin-right:40px;
}

#work-scheme-canvas .slide .slide-text {
    position:relative;
    text-align:left;
    max-width:500px;
    width:auto;
    height:100px;
    font-size:18px;
    font-weight:200;
    line-height:22px;
    padding:30px 0;
    margin-top:80px;
    opacity:0;
    -webkit-transition: all 2500ms;
	-moz-transition: all 2500ms;
	transition: all 2500ms;
}

#work-scheme-canvas .slide .slide-text .effects {
    display:block;
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:15px;
    -webkit-transition: all 1500ms;
	-moz-transition: all 1500ms;
	transition: all 1500ms;
    overflow:hidden;
}

#work-scheme-canvas .slide .slide-text .dotted-line {
    display:block;
    width:500px;
    height:9px;
    border-bottom:4px dotted #C9C9C9;
    z-index:10;
}

#work-scheme-canvas .slide.active .slide-text {
    opacity:1;
}

#work-scheme-canvas .slide.active .slide-text .effects {
    width:100%;
}

#work-scheme-canvas .slide .slide-text .effects::after {
    content: "";
    display:block;
    width:15px;
    height:15px;
    background:#222222;
    position:absolute;
    top:0;
    right:0;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

#work-scheme-controls {
    display:block;
    width:100%;
    height:50px;
    text-align:center;
}

#work-scheme-controls a {
    display:inline-block;
    width:30px;
    height:30px;
    line-height:26px;
    font-family: "Roboto", sans-serif;
    font-size:18px;
    font-weight:100;
    color:#222222;
    margin:10px 15px;
    border:2px solid #222222;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
    transform-origin: center;
}

#work-scheme-controls a.active {
    width:50px;
    height:50px;
    line-height:46px;
    font-size:24px;
    font-weight:700;
    color:#ffffff;
    background-color:#EFB626;
    margin:0 15px;
}

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

#contact-us .content {
    padding:0;
    height:0;
}

#contact-us #contact-info {
    position:absolute;
    top:0;
    left:0;
    width:330px;
    height:700px;
    padding:50px 30px;
    background: rgba(255,255,255,0.90);
    z-index:90;
}

#contact-us #contact-info h2 {
    margin-bottom:20px;
}

#contact-us #contact-info li,
#contact-us #contact-info li a,
#contact-us #contact-info p {
    font-weight:300;
    color:#222222;
}

#contact-us #contact-info li a {
    -webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

#contact-us #contact-info li a:hover {
    color:#EFB626;
}
    
#contact-us #contact-info p {
    line-height:18px;
}
    
/* GOOGLE MAPS */

#map-canvas {
    width:100%;
    min-width:940px;
    height:700px;
    float:right;
    overflow:hidden;
    color:#222222;
}

/* CONTENT - ABOUT US
----------------------------------------------------------------------------------------------------*/

#about-us {
    display:none;
}

#about-us .content {
    padding:125px 10px 0;
}

#about-us h2 {
    line-height:28px;
    float:left;
    margin:0;
}

#about-us p {
    font-weight:200;   
}

/* CONTENT - PAST PROJECTS
----------------------------------------------------------------------------------------------------*/

#past-projects {
    display:none;
}

#past-projects .content {
    padding:125px 10px 200px;
}

#past-projects a.btn-link.top {
    float:right;
}

#past-projects a.btn-link.close {
    float:left;
}

#past-projects h2 {
    margin-bottom:30px;
}

#project-table {
    width:100%;
    margin-bottom:20px;
}

#project-table td {
    padding:10px 20px;
    text-align:left;
    border-width:0px 1px 1px 0px;
    border-style:solid solid solid solid;
    border-color:#D3D3D3 #D3D3D3 #D3D3D3 #D3D3D3;
}

#project-table td:first-child {
    border-left:1px solid #D3D3D3;
}

#project-table td:nth-child(3n),
#project-table td:nth-child(4n) {
    text-align:center;
}

#project-table thead td {
    background:#1283D8;
    font-weight:bold;
    color:#ffffff;
    border-width:1px 0 0 1px;
    border-style:solid solid solid solid;
    border-color:#1283D8 #1283D8 #1283D8 #1283D8;
}

#project-table thead td:last-child {
    border-width:1px 1px 0 1px;
}

#project-table tbody tr:nth-child(even) {
    background:#E2E2E2;
}

/* CONTENT - ENQUIRY FORM
----------------------------------------------------------------------------------------------------*/

#enquiryform-container ul.icon-list:last-of-type {
    margin-bottom:0;
}

#enquiryform-container #form-container {
    width:50%;
    float:left;
}

#enquiryform-container .contact-info {
    width:50%;
    float:right;
    padding-left:60px;
}

#enquiryform-container .contact-info ul.icon-list a {
    color:#222222;
    -webkit-transition: color 200ms;
	-moz-transition: color 200ms;
	transition: color 200ms;
}

#enquiryform-container .contact-info ul.icon-list a:hover {
    color:#EFB626;
}

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

#enquiryform-container .content {
    padding:125px 10px;
}

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

#enquiryform,
#enquiryform-success-message {
    -moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}

#enquiryform {
    width:100%;
}

.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:1px solid #f4f4f4;
	background-color:#F4F4F4;
    font-family: Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size:14px;
    font-weight:300;
	line-height:40px;
    width:100%;
    color:#222222;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
	outline:none;
}

.form input {
	height:40px;
	padding:0 20px;
}

.form #message {
    height:80px;
}

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

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

.form-result {
    padding: 30px 20px;
}

/* 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 20px 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;
    width:150px;
    height:40px;
    line-height:40px;
    padding:0 25px;
    font-weight:bold;
    color:#222222;
    cursor:pointer;
    border:none;
    background:url(../images/bg-btn.png) repeat-x center left;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 200ms;
	-moz-transition: all 200ms;
	transition: all 200ms;
}

.form .submit-btn:hover {
    background:url(../images/bg-btn-hover.png) repeat-x 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],
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 !important;
}

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

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

#footer {
    background-color:#000000;
    text-align: center;
    color:#ffffff;
    font-size:14px;
}

#footer .content {
    padding:50px 10px;
}

/* Footer COPYRIGHT */

#footer p {
	margin:0;
}

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