/* `XHTML, HTML4, HTML5 Reset
----------------------------------------------------------------------------------------------------*/

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video,
xmp {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

html,
body {
  height: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
/*
  Override the default (display: inline) for
  browsers that do not recognize HTML5 tags.

  IE8 (and lower) requires a shiv:
  http://ejohn.org/blog/html5-shiv
*/
  display: block;
}

b,
strong {
/*
  Makes browsers agree.
  IE + Opera = font-weight: bold.
  Gecko + WebKit = font-weight: bolder.
*/
  font-weight: bold;
}

img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
/*
  For IE.
  http://css-tricks.com/ie-fix-bicubic-scaling-for-images
*/
  -ms-interpolation-mode: bicubic;
}

ol,
ul {
  list-style: none;
}

li {
/*
  For IE6 + IE7:

  "display: list-item" keeps bullets from
  disappearing if hasLayout is triggered.
*/
  display: list-item;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td,
caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left;
}

q {
  quotes: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

sub,
sup,
small {
  font-size: 75%;
}

sub,
sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg {
/*
  For IE9. Without, occasionally draws shapes
  outside the boundaries of <svg> rectangle.
*/
  overflow: hidden;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.use-box-sizing-content-box,
.use-box-sizing-content-box * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

body {
}

/*
* Typography
*/
h1, h2, h3, h4, h5, h6 {
	line-height: 1.5em;
}

h1 {
	font-size: 1.85em;
}

h2 {
	font-size: 1.7em;
}

h3 {
	font-size: 1.55em;
}

h4 {
	font-size: 1.4em;
}

h5 {
	font-size: 1.25em;
}

h6 {
	font-size: 1.1em;
}

p {
	line-height: 1.5em;
	padding: 8px 0px;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

/*
 * Block margins
 */
.m-tb-20 {
	margin-top: 20px;
	margin-bottom: 20px;
}

.m-tb-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.m-b-10 {
	margin-bottom: 10px !important;
}

.m-b-30 {
	margin-bottom: 30px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-b-40 {
	margin-bottom: 40px;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-t-46 {
  margin-top: 46px !important;
}

.m-t-none {
  margin-top: 0 !important;
}

.m-b-none {
	margin-bottom: 0 !important;
}

/*
 * Grid
 */
.grid {
  overflow: hidden;
}

.grid.automatch,
.grid .row {
	margin-left: -10px !important;
}

.grid .row {
  overflow: hidden;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.grid .col,
.automatch > li {
  float: left;
  padding: 0 0 0 25px;
  margin-bottom: 20px;
}

.grid .row .col {
	padding: 0 0 0 10px;
}

.grid .alpha {
  padding-left: 0;
}

.grid .omega {
  padding-right: 0;
}

.grid-fluid-2 .col {
	width: 50%;
	padding-bottom: 3px;
}

.grid-fluid-3 .col,
.grid-fluid-3.automatch > li {
	width: 33.333333%;
	padding-bottom: 3px;
}

.grid-fluid-4 .col {
	width: 25%;
	padding-bottom: 3px;
}

.grid-fluid-5 .col {
	width: 20%;
	padding-bottom: 3px;
}

/* .unbreakable will keep grids the same on every resolution */
.grid-fluid-two.unbreakable {

}

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

  .grid .col {
    float: none;
    width: auto;
    padding: 0;
    overflow: hidden;
    margin: 0 0 10px 0;
    width: 100%;
	border: none;
  }

  .grid .row {
    margin: 0 !important;
  }
}