/*
	EXSITE CSS

	Copyright (c) 2012   Exsite
	Website:             http://www.exsite.ca

*/

/* Just a few HTML5 element defaults */
header,
footer,
nav,
section,
aside {
	display: block;
}

/* =BASE : Base page styles
----------------------------------- */
html {
	display: block;
	height: 100%;
	width: 100%;
}

body {
	color: #000;
	font: 1em/1.2 'Cardo', Helvetica, Arial, sans-serif;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto; /* just in case, to force correct aspet ratio */
	display: block;
}

img {
	-ms-interpolation-mode: bicubic;
}

input {
	border: none;
	outline: none;
}

a {
	color: #000;
	text-decoration: underline;
  -webkit-transition: all 0.3s ease-out;
     -moz-transition: all 0.3s ease-out;
       -o-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
}

a:hover {
	color: #444;
}

.no-margin {
	margin: 0 !important;
}

.bold {
	font-weight:bold;
}

.italic {
	font-style: italic;
}

.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

.hide {
	display: none;
}

.center {
	text-align: center;
}

.show {
	display: block;
}

.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	zoom: 1;
	*display: inline;
}

.clearfix:after {
	clear: both;
}

/* =TYPOGRAPHY
----------------------------------- */
p {
	margin-bottom: 15px;
}

p small {
	font-size: 11px;
}

ul ul,
ul ol,
ol ol,
ol ul {
	margin-bottom: 0;
}

ol {
	list-style: decimal;
}

li {
	line-height: 1.5em;
}

strong {
	font-style: inherit;
	font-weight: bold;
}

em {
	font-style: italic;
	font-weight: inherit;
	line-height: inherit;
}

[data-icon]:before {
  font-family: 'EntypoRegular'; /* BYO icon font, mapped smartly */
  content: attr(data-icon);
  speak: none; /* Not to be trusted, but hey. */
}