/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */


/* #Reset & Basics
================================================== */

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


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, 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, 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;
}
p, dl, hr, h1, h2, h3, h4, h5, h6, ol, ul, pre, table, address, fieldset, figure {
	margin-bottom: 20px;
}
/* #Basic Styles
================================================== */

html {
	font-size: 100%; /* Makes IE 5&6 behave */
	overflow-y: scroll;
}
html > body {
	font-size: 1em; /*16px;*/
}
body {
	background-color: #FFF;
	color: #000;
	font: normal 400 1em/1.5em 'Roboto', sans-serif;
}
pre, code {
	font-family: 'DejaVu Sans Mono', Menlo, Consolas, monospace;
}
hr {
	border: none;
	border: 0 #fff solid;
	border-top-width: 1px;
	height: 1px;
	margin: 0 auto 2.5em auto;
	outline: none;
	position:relative;
	text-align:center;
	width:100%;
}
/* #Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
	position: relative;
}

h1 {
	font: normal 700 2.5em/1.25em 'Roboto', sans-serif;
	margin-bottom:.75em;
	text-transform: uppercase;
}
h2 {
	font: normal 700 1.75em/1.25em 'Roboto', sans-serif;
	margin-bottom:.75em;
}
h3 {
	font: normal 700 1.5em/1.25em 'Roboto', sans-serif;
	margin-bottom:.75em;
}	
h4 {
	font: normal 400 1.5em/1.25em 'Roboto', sans-serif;
	margin-bottom:1em;
}
h5 {
	font: normal 400 1.5em/1.25em 'Roboto', sans-serif;
	margin-bottom:1.25em;
}
h6 {
	font: normal 400 1.5em/1.25em 'Roboto', sans-serif;
	margin-bottom:1.25em;
}

div[role="main"] header p {
	font-weight:700;
	font-size:1.1em;
	line-height:1.5;
}

/* #Links
================================================== */
a {
	color: #e60034;
	transition-property: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
}
a:hover {
	color:#f72151;
}

.btnLink {
	background-color: #e60034;
	color: #FFF;
	display:inline-block;
	margin-bottom:2em;
	padding:.55em .85em .55em .85em;
	text-decoration: none;
}

.btnLink:hover {
	background-color: #f72151;
	color: #FFF;
}

.btnLink:after {
	content: "\f105";
	font-family: FontAwesome;
	padding-left:.5em;
}


/* #Lists
================================================== */
ol {
	list-style: decimal;
}
ul {
	list-style: disc;
}
li {
    margin-left: 30px;
}

/* #Images
================================================== */
img {
	max-width: 100%;
	height: auto;
}
/* #Buttons
================================================== */
input#enquirySubmit {
	background-color: #e60034;
	border: none;
	color: #fff;
	text-align: center;
	text-decoration: none;
	transition-property: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-webkit-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
}
input#enquirySubmit:hover {
	background-color: #f72151;
	color: #FFF;
}


/* #Forms
================================================== */
form#enquiryForm {
	margin:2em 0 2.5em 0;
}

fieldset {
	border: none;
	margin: 0.625em 0 1.25em 0;
	position: relative;
}
fieldset p {
	font-size:14px;
	font-style:italic;
	text-align:right;
}
/* -- !Fields -- */
fieldset div {
	margin: 0 0 0.9375em; /*0 0 15px*/
	overflow: hidden;
	position:relative;
}
fieldset div.controls {
	margin-bottom: 0;
}
/* -- Labels -- */
fieldset div label {
	float: left;
	font-size: 95%;
	margin: 0 0.625em 0 0; /*0 10px 0 0*/
	padding-top: 0.4375em; /*7px*/
	position:relative;
	text-transform: uppercase;
	width: 100%;
}
fieldset abbr {
	color: #e60034;
	font-size: 1.25em; /*20px*/
	font-weight: 700;
	position:absolute;
	top:.5em;
	right:.5em;
	display:block;
}
/* -- Input Defaults -- */
fieldset div input, fieldset div textarea, fieldset div select {
	background: #f3f3f3;
	border:none;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	display: block;
	float: left;
	font-size:1.25em;
	color: #404040;
	line-height: 1.5em;
	margin: 0 0 5px 0;
	width: 100%;
}
fieldset div input:focus, fieldset div textarea:focus {
	outline: none;
	border-bottom: 1px solid #e8e8e8;
	-webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}
fieldset div input {
	padding: 0.375em 0.3125em; /* 6px 5px */
}
fieldset div textarea {
	height: 150px;
	padding: 0.375em 0.3125em; /* 6px 5px */
}
fieldset div select {
	padding: 0.375em 0.3125em; /* 6px 5px */
}
/* -- Submit Buttons -- */

input#enquirySubmit  {
	border:none;
	cursor: pointer;
	display:inline-block;
	float: none;
	font-size:1em;
	overflow: hidden;
	margin: 0;
	width: auto;
	padding:.55em .85em .55em .85em;
}
p.required {
	clear: both;
	color: #e60034;
	display:none;
	margin: 0;
	text-align:left;
	line-height:1.25;
	font-size: 85%;
}
.inputError {
	border:none;
	border-bottom: 1px solid #e60034;
}
.formConfirm {
	border: 1px solid #eaeaea;
	font-size: 90%;
	font-style: italic;
	margin-bottom: 1.25em;
	padding: 2.5em; /*40px*/
}
#honey {
	display:none;
}


/* #Misc
================================================== */
