/* simpleSign - root folder styles */

body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
	font-family: "Roboto Slab", sans-serif;
}

h1.simpleSign {
	width: 100%;
	text-align: center;
	color: #EB7203;
	font-weight: 200;
	font-family: "Roboto Slab", sans-serif;
}

p.simpleSign {
	width: 100%;
	text-align: center;	
	color: #333;
	font-size: 1.2em;
	font-family: "Roboto Slab", sans-serif;
}

div.examples {
	width: 100%;
	max-width: 800px;
	overflow: hidden;
	position: relative;
	visibility: hidden;
	margin-left: auto;
	margin-right: auto;
}

a.coolButton:link, a.coolButton:visited, a.coolButton:active {
	position: relative;
	display: inline-block;
	box-sizing: border-box;
	padding: 10px 20px;
	text-align: center;
	font-family: "Roboto", sans-serif;
	color: #fff;
	background: #EB7203;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.5s ease;
}
a.coolButton:hover {
	color: #333;
}

.logo {
	padding: 20px;
	max-width: 100%;
}

.fluid1col, .fluid2col, .fluid3col, .fluid23col, .fluid4col, .fluid5col {
	position: relative;
	display: inline-block;
	float: left;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;	
	padding: 5px 10px;
}

@media screen and (min-width: 701px) {
	/* two column layout */
	.fluid1col {
		width: 100%;
	}	
	.fluid2col {
		width: 50%;
	}
	.fluid3col {
		width: 33.33333333333333%;
	}	
	.fluid23col {
		width: 66.66666666666666666%;
	}
	.fluid4col {
		width: 25%;
	}
	.fluid5col {
		width: 20%;
	}
	a.coolButton {
		width: 98%;
		margin: 10px 0;
		font-size: 1.1em;
	}
}
@media screen and (max-width: 700px) {
	/* two column layout */
	.fluid1col, .fluid2col, .fluid3col, .fluid23col, .fluid4col, .fluid5col {
		width: 100%;
	}
	a.coolButton {
		width: 98%;
		margin: 10px 0;
		font-size: 1.2em;
	}
}