*, *:before, *:after { 
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
	transition:all .2s linear; 
	-o-transition:all .2s linear;
	-moz-transition:all .2s linear;
	-webkit-transition:all .2s linear;
}


/****************************************
***** Elements **************************
****************************************/

img {
	display:block;
	max-width:100%;
	height:auto;
}

p {
	font-size:14px;
	line-height:18px;
	margin-top:0px;
	margin-bottom:15px;
	display:block;
	font-weight:400;
}

h1 {
	font-size:24px;
	line-height:28px;
	margin-top:0px;
	margin-bottom:15px;
	font-weight:700;
	display:block;
}

h2 {
	font-size:22px;
	line-height:26px;
	margin-top:0px;
	margin-bottom:15px;
	font-weight:700;
	display:block;
}

h3 {
	font-size:20px;
	line-height:24px;
	margin-top:0px;
	margin-bottom:15px;
	font-weight:700;
	display:block;
}

h4 {
	font-size:18px;
	line-height:22px;
	margin-top:0px;
	margin-bottom:15px;
	font-weight:700;
	display:block;
}

h5 {
	font-size:16px;
	line-height:20px;
	margin-top:0px;
	margin-bottom:15px;
	font-weight:700;
	display:block;
}

h6 {
	font-size:14px;
	line-height:18px;
	margin-top:0px;
	margin-bottom:15px;
	font-weight:700;
	display:block;
}

ul {
	list-style-type:disc;
	list-style-position:outside;
	padding-left:15px;
	margin-top:0px;
	margin-bottom:15px;
}

ol {
	list-style-type:decimal;
	list-style-position:outside;
	padding-left:19px;
	margin-top:0px;
	margin-bottom:15px;
}

li {
	font-size:14px;
	line-height:18px;
}

a {
	color:#333;
	text-decoration:none;
}

a:link {
	color:#333;
	text-decoration:none;
}

a:active {
	color:#333;
	text-decoration:none;
}

a:hover {
	color:#333;
	text-decoration:none;
	cursor: pointer;
}

a:visited {
	color:#333;
	text-decoration:none;
}

a:focus {
	outline: none;
}

hr {
	display:block;
	clear:both;
	width:100%;
	float:none;
	overflow:hidden;
	border-top:1px solid #EEE;
	border-right:0 none;
	border-bottom:0 none;
	border-left:0 none;
	background-color:transparent;
	margin-bottom:15px;
}

strong {
	font-weight:700;
}

em {
	font-style:italic;
	font-weight:400;
}

blockquote {
	font-size:16px;
	display:block;
	font-weight:400;
	padding:0;
	margin:0 0 15px 0;
	line-height:20px;
	font-style:italic;
}


/****************************************
***** Tables ****************************
****************************************/

table {
	width:100%;
	margin-bottom:15px;
	background-color:transparent;
	border:1px solid #EEE;
}

table thead {
	background-color:transparent;
	border:none;
	border-bottom:2px solid #DDD;
}

table thead tr {
	background-color:transparent;
	border:none;
	border-bottom:1px solid #EEE;
}

table thead tr th,
table thead tr td {
	background-color:#FFF;
	border:none;
	text-align:left;
	font-size:14px;
	line-height:18px;
	font-weight:700;
	padding:10px;
}


table tbody {
	background-color:transparent;
	border:none;
}

table tbody tr {
	background-color:#FFF;
	border:none;
}

table tbody tr td {
	background-color:transparent;
	border:none;
	text-align:left;
	font-size:14px;
	line-height:18px;
	font-weight:400;
	padding:10px;
}


table tfoot {
	background-color:transparent;
	border:none;
	border-top:2px solid #DDD;
}

table tfoot tr {
	background-color:transparent;
	border:none;
}

table tfoot tr td {
	background-color:#FFF;
	border:none;
	text-align:left;
	font-size:14px;
	line-height:18px;
	font-weight:400;
	padding:10px;
}

table.striped tr:nth-child(odd) {
	background-color:#F7F7F7;
}

table.header-centered thead th {
	text-align:center;
}

table.body-centered tbody td {
	text-align:center;
}

table.footer-centered tfoot td {
	text-align:center;
}


/****************************************
***** Forms *****************************
****************************************/

input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"] {
	width:100%;
	display:block;
	height:32px;
	background-color:#FFF;
	border:1px solid #EEE;
	font-size:13px;
	padding:0 10px;
	color:#333;
	outline:none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	outline:none;
	min-width:100px;
	background-color:#EEE;
	border:1px solid #DDD;
	color:#333;
	height:32px;
	padding:0 10px;
}

input[type="checkbox"]{
	outline:none;
}

input[type="radio"]{
	outline:none;
}

input[type="color"]{
	outline:none;
}

input[type="file"]{
	outline:none;
}

input[type="range"]{
	outline:none;
}

input[type="search"]{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

textarea {
	width:100%;
	display:block;
	height:100px;
	background-color:#FFF;
	border:1px solid #EEE;
	font-size:13px;
	padding:10px;
	resize:none;
	outline:none;
}

select {
	width:100%;
	display:block;
	height:32px;
	background-color:#FFF;
	border:1px solid #EEE;
	font-size:13px;
	padding:0 10px;
	outline:none;
}

::-webkit-input-placeholder {
	opacity:1;
	color:#333;
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
}

:-moz-placeholder {
	opacity:1;
	color:#333;
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
}

::-moz-placeholder {
	opacity:1;
	color:#333;
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
}

:-ms-input-placeholder {
	opacity:1;
	color:#333;
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
}

.input-wrapper {
	display:block;
	width:100%;
	margin-bottom:15px;
}

.select-wrapper {
	display:block;
	width:100%;
	overflow:hidden;
	border:1px solid #EEE;
	background-repeat:no-repeat;
	background-position:right center;
}

.select-wrapper select {
	width:120%;
	width:calc(100% + 30px);
	border:none;
	background-color:#FFF;
	appearance:none;
	-webkit-appearance:none;
}

/****************************************
***** Structure *************************
****************************************/

.wrapper-fluid {
	width:100%;
	display:block;
	position:relative;
	height:auto;
	margin:0 auto;
}

.wrapper-fixed {
	width:100%;
	margin:0 auto;
	height:auto;
	min-height:1px;
	position:relative;
	clear:both;
	max-width:1024px;
}

.column-wrapper {
	overflow:hidden;
	clear:both;
	float:none;
	width:100%;
	display:block;
}

.column {
	float:left;
	min-height:30px;
}

.column:last-child {
	float:right;
}

/****************************************
***** Grid ******************************
****************************************/

.b-1-2 {width:50%;}
.b-2-2 {width:100%;}

.b-1-3 {width:33.33%;}
.b-2-3 {width:66.66%;}
.b-3-3 {width:100%;}

.b-1-4 {width:25%;}
.b-2-4 {width:50%;}
.b-3-4 {width:75%;}
.b-4-4 {width:100%;}

.b-1-5 {width:20%;}
.b-2-5 {width:40%;}
.b-3-5 {width:60%;}
.b-4-5 {width:80%;}
.b-5-5 {width:100%;}

.b-1-6 {width:16.66%;}
.b-2-6 {width:33.32%;}
.b-3-6 {width:50%;}
.b-4-6 {width:66.66%;}
.b-5-6 {width:83.32%;}
.b-6-6 {width:100%;}

.b-1-10 {width:10%;}
.b-2-10 {width:20%;}
.b-3-10 {width:30%;}
.b-4-10 {width:40%;}
.b-5-10 {width:50%;}
.b-6-10 {width:60%;}
.b-7-10 {width:70%;}
.b-8-10 {width:80%;}
.b-9-10 {width:90%;}
.b-10-10 {width:100%;}


/****************************************
***** Classes ***************************
****************************************/

.left {
	text-align:left;
}

.right {
	text-align:right;
}

.center, .centered {
	text-align:center;
}

.justify, .justified {
	text-align:justify;
}

.float-left {
	float:left;
}

.float-right {
	float:right;
}

.float-none {
	float:none;
}


/****************************************
***** Menus *****************************
****************************************/

.menu-wrapper {
	width:100%;
}

.menu-wrapper ul {
	list-style-type:none;
	padding:0;
	margin:0;
}

.menu-wrapper ul li a {
	display:block;
	padding-top:5px;
	padding-bottom:5px;
}

.menu-wrapper.horizontal {
	display:table;
}

.menu-wrapper.horizontal ul {
	display:table-row;
}

.menu-wrapper.horizontal ul li {
	display:table-cell;
	text-align:center;
}

.menu-wrapper.horizontal.aligned {
	margin-left:-2.8%;
	width:105.6%;
}

/****************************************
***** Responsive ************************
****************************************/

@media only screen and (max-width:1000px){

	/****************************************
	***** Tables ****************************
	****************************************/

	.table-wrapper {
		width:100%;
		display:block;
		overflow:scroll;
		overflow-x:scroll;
		overflow-y:hidden;
		padding-top:30px;

	}

	.table-wrapper > table {
		width:1000px;
	}

	.table-wrapper:before {
		content:"Swipe to scroll";
		display:block;
		width:100%;
		padding:10px;
		font-size:13px;
		text-align:center;
		position:absolute;
		left:0%;
		margin-top:-33px;
		height:30px;
	}

}