/******************************************************************/
/*   FCM - Marketing Applications Platform                        */

/*
#f28f31		orange
#0288D1		blue
*/

/* media settings for different screen sizes */
@media screen and (min-width: 601px) {
	.fluid2col {
		width: 50%;		
	}
	.fluid3col {
		width: 33.333333333333333333333%;		
	}
	.fluid4col {
		width: 25%;		
	}
}
@media screen and (max-width: 600px) {
	.fluid2col, .fluid3col, .fluid4col {
		width: 100%;		
	}	
	h1 {
		line-height: 50px;
	}
}

html{
	background: #fff;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16x;
	color: #777777;	
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

#container {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	background: #eee;
	transition: all 0.5s ease;
	text-align: center;
}

#header, #applications, #graphs, #footer {
	position: relative;
	display: inline-block;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	overflow: hidden;
	float: left;
}
#header, #applications, #graphs, #footer {
	text-align: center !important;	

}

#header {
	padding: 20px 0;
	background: #eee;
}
#applications {
	padding: 20px 0;
	background: #eee;
}
#footer {
	padding: 60px 0;
	background: #fff;
	box-shadow: -2px -5px 5px #999999;
	-moz-box-shadow: -2px -5px 5px #999999;
	-webkit-box-shadow: -2px -5px 5px #999999;
}

h1 {
	font-size: 60px;
	font-weight: 300;
	color: #777777;
	text-align: center;
	padding-top: 10px;
	margin-bottom: 10px;
}
h2, h3, h4 {
	font-weight: 400;
	color: #777777;
	text-align: center;
	padding-top: 10px;
	margin-bottom: 10px;
}

a:link, a:visited, a:active {
	color: #0288D1;
	transition: all 0.5s ease;
}
a:hover {
	color: #f28f31;
}

nav a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.35em;
}

nav a:hover,
nav a:focus {
	outline: none;
}

.ij-effect-2 a {
	line-height: 44px;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
}

.ij-effect-2 a span {
	position: relative;
	display: inline-block;
	padding: 0 14px;
	background: #0288D1;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	color: #fff;
}

.csstransforms3d .ij-effect-2 a span::before {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 100%;
	background: #f28f31;
	content: attr(data-hover);
	-webkit-transition: background 0.3s;
	-moz-transition: background 0.3s;
	transition: background 0.3s;
	-webkit-transform: rotateX(-90deg);
	-moz-transform: rotateX(-90deg);
	transform: rotateX(-90deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
}

.ij-effect-2 a:hover span,
.ij-effect-2 a:focus span {
	-webkit-transform: rotateX(90deg) translateY(-22px);
	-moz-transform: rotateX(90deg) translateY(-22px);
	transform: rotateX(90deg) translateY(-22px);
	text-align:center;
}

.csstransforms3d .ij-effect-2 a:hover span::before,
.csstransforms3d .ij-effect-2 a:focus span::before {
	background: #f28f31;	
}