/* -----------------------
Base styles
------------------------*/

body
{
	margin: 0;
	padding: 0;
	color: #333;
	background-color: #000;
	font: 1em/1.2 "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	font-family: 'Open Sans Condensed', sans-serif;

}

h1,h2,h3,h4,h5,h6
{
	margin: 0 0 .5em;
	font-weight: 500;
	line-height: 1.1;
}

h1 { font-size: 2.25em; } /* 36px */
h2 { font-size: 1.75em; } /* 28px */
h3 { font-size: 1.375em; } /* 22px */
h4 { font-size: 1.125em; } /* 18px */
h5 { font-size: 1em; } /* 16px */
h6 { font-size: .875em; } /* 14px */

p
{
	margin: 0 0 1.5em;
	line-height: 1.5;
}

blockquote
{
	padding: 1em 2em;
	margin: 0 0 2em;
	border-left: 5px solid #eee;
}

hr
{
	height: 0;
	margin-top: 1em;
	margin-bottom: 2em;
	border: 0;
	border-top: 1px solid #ddd;
}

table
{
	background-color: transparent;
	border-spacing: 0;
	border-collapse: collapse;
	border-top: 1px solid #ddd;
}

th, td
{
	padding: .5em 1em;
	vertical-align: top;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

a:link { color: #c0c0c0; text-decoration: none; }
a:visited { color: #c0c0c0; text-decoration: none; }
a:focus { color: #c0c0c0; text-decoration: none; }
a:hover { color: #c0c0c0; text-decoration: none; }
a:active { color: #c0c0c0; text-decoration: none; }

/* -----------------------
Layout styles
------------------------*/

.container
{
	max-width: 80em;
	margin: 0 auto;
	color: #fff;
}


.content
{
	overflow: hidden;
	padding: 1em 1.25em;
	background-color: #000;
}

.col1,.col2,.col3
{
	margin-bottom: 1em;
}
.col1
	{
		float: left;
		width: 400px;
		margin-right: 20px;
		font-size: 22px;
		text-align: center;
	}

	.col2
	{
		float: left;
		width: 400px;
		margin-right: 20px;
		font-size: 22px;
	}

	.col3
	{
		float: left;
		width: 400px;
		margin-right: 0px;
		font-size: 22px;
	}



/* -----------------------
Single styles
------------------------*/

.img-responsive { max-width: 100%; }

.btn
{
	color: #fff !important;
	background-color: royalblue;
	border-color: #222;
	display: inline-block;
	padding: .5em 1em;
	margin-bottom: 0;
	font-weight: 400;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	border: 1px solid transparent;
	border-radius: .2em;
	text-decoration: none;
}

.btn:hover
{
	color: #fff !important;
	background-color: green;
}

.btn:focus
{
	color: #fff !important;
	background-color: black;
}

.btn:active
{
	color: #fff !important;
	background-color: red;
}

.table
{
	width: 100%;
	max-width: 100%;
	margin-bottom: 20px;
}

.list-unstyled
{
	padding-left: 0;
	list-style: none;
}

.list-inline
{
	padding-left: 0;
	margin-left: -5px;
	list-style: none;
}

.list-inline > li
{
	display: inline-block;
	padding-right: 5px;
	padding-left: 5px;
}

/* -----------------------
Wide styles
------------------------*/

@media (max-width: 420px)
{

	.col1
	{
		width: auto;
		margin-right: 0;
	}

	.col2
	{
		width: auto;
		margin-right: 0;
	}

	.col3
	{
		width: auto;
		margin-right: 0;
	}
	.container {
		text-align: center;	
	}