/*! Made with Jinkotsu: https://github.com/neko/jinkotsu :) */
/******************************************************************
Site Name: Medallion Real Estate
Author: Jayme Brereton

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
/* line 12, ../scss/partials/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
/* line 31, ../scss/partials/_normalize.scss */
audio,
canvas,
video {
  display: inline-block;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
/* line 42, ../scss/partials/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
/* line 52, ../scss/partials/_normalize.scss */
[hidden],
template {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
/* line 67, ../scss/partials/_normalize.scss */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
/* line 77, ../scss/partials/_normalize.scss */
body {
  margin: 0;
}

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
/* line 89, ../scss/partials/_normalize.scss */
a {
  background: transparent;
}

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
/* line 97, ../scss/partials/_normalize.scss */
a:focus {
  outline: thin dotted;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* line 105, ../scss/partials/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
/* line 119, ../scss/partials/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
/* line 128, ../scss/partials/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/* line 136, ../scss/partials/_normalize.scss */
b,
strong,
.strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari 5 and Chrome.
 */
/* line 146, ../scss/partials/_normalize.scss */
dfn,
em,
.em {
  font-style: italic;
}

/**
 * Address differences between Firefox and other browsers.
 */
/* line 156, ../scss/partials/_normalize.scss */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
/* line 166, ../scss/partials/_normalize.scss */
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

/*
 * Addresses margins set differently in IE6/7.
 */
/* line 177, ../scss/partials/_normalize.scss */
pre {
  margin: 0;
}

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
/* line 185, ../scss/partials/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/**
 * Improve readability of pre-formatted text in all browsers.
 */
/* line 197, ../scss/partials/_normalize.scss */
pre {
  white-space: pre-wrap;
}

/**
 * Set consistent quote types.
 */
/* line 205, ../scss/partials/_normalize.scss */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
/* line 212, ../scss/partials/_normalize.scss */
q:before,
q:after {
  content: '';
  content: none;
}

/* line 218, ../scss/partials/_normalize.scss */
small, .small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
/* line 226, ../scss/partials/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 234, ../scss/partials/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 238, ../scss/partials/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
/* line 250, ../scss/partials/_normalize.scss */
dl,
menu,
ol,
ul {
  margin: 1em 0;
}

/* line 257, ../scss/partials/_normalize.scss */
dd {
  margin: 0;
}

/*
 * Addresses paddings set differently in IE6/7.
 */
/* line 265, ../scss/partials/_normalize.scss */
menu {
  padding: 0 0 0 40px;
}

/* line 269, ../scss/partials/_normalize.scss */
ol,
ul {
  padding: 0;
  list-style-type: none;
}

/*
 * Corrects list images handled incorrectly in IE7.
 */
/* line 279, ../scss/partials/_normalize.scss */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
/* line 293, ../scss/partials/_normalize.scss */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
/* line 301, ../scss/partials/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
/* line 313, ../scss/partials/_normalize.scss */
figure {
  margin: 0;
}

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
/* line 325, ../scss/partials/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
/* line 336, ../scss/partials/_normalize.scss */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
/* line 347, ../scss/partials/_normalize.scss */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/* line 361, ../scss/partials/_normalize.scss */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
/* line 373, ../scss/partials/_normalize.scss */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
/* line 386, ../scss/partials/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
/* line 398, ../scss/partials/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
/* line 408, ../scss/partials/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
/* line 420, ../scss/partials/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
/* line 432, ../scss/partials/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
/* line 441, ../scss/partials/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
/* line 452, ../scss/partials/_normalize.scss */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
/* line 465, ../scss/partials/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 472, ../scss/partials/_normalize.scss */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 479, ../scss/partials/_normalize.scss */
.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/* line 487, ../scss/partials/_normalize.scss */
.clearfix, .cf {
  zoom: 1;
}
/* line 489, ../scss/partials/_normalize.scss */
.clearfix:before, .clearfix:after, .cf:before, .cf:after {
  content: "";
  display: table;
}
/* line 490, ../scss/partials/_normalize.scss */
.clearfix:after, .cf:after {
  clear: both;
}

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
/* line 497, ../scss/partials/_normalize.scss */
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic;
}

/******************************************************************
Site Name: Flinders University Childcare Centre
Author: Jayme Brereton

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name: Medallion Real Estate
Author: Jayme Brereton

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*
 i imported this one in the functions file so jinkotsu would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
/* line 66, ../scss/partials/_typography.scss */
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig";
}

/******************************************************************
Site Name: Medallion Real Estate
Author: Jayme Brereton

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name: Medallion Real Estate
Author: Jayme Brereton

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* line 6, ../scss/bootstrap/_grid.scss */
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
/* line 2, ../scss/bootstrap/mixins/_clearfix.scss */
.container::after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 544px) {
  /* line 6, ../scss/bootstrap/_grid.scss */
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  /* line 6, ../scss/bootstrap/_grid.scss */
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  /* line 6, ../scss/bootstrap/_grid.scss */
  .container {
    max-width: 940px;
  }
}
@media (min-width: 1200px) {
  /* line 6, ../scss/bootstrap/_grid.scss */
  .container {
    max-width: 1140px;
  }
}

/* line 18, ../scss/bootstrap/_grid.scss */
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
/* line 2, ../scss/bootstrap/mixins/_clearfix.scss */
.container-fluid::after {
  content: "";
  display: table;
  clear: both;
}

/* line 28, ../scss/bootstrap/_grid.scss */
.row {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}
/* line 2, ../scss/bootstrap/mixins/_clearfix.scss */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 8.33333%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 16.66667%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 25%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 33.33333%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 41.66667%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 50%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 58.33333%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 66.66667%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 75%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 83.33333%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 91.66667%;
}

/* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  position: relative;
  min-height: 1px;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  float: left;
  width: 100%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-0 {
  right: auto;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-1 {
  right: 8.33333%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-2 {
  right: 16.66667%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-3 {
  right: 25%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-4 {
  right: 33.33333%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-5 {
  right: 41.66667%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-6 {
  right: 50%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-7 {
  right: 58.33333%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-8 {
  right: 66.66667%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-9 {
  right: 75%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-10 {
  right: 83.33333%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-11 {
  right: 91.66667%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.pull-xs-12 {
  right: 100%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-0 {
  left: auto;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-1 {
  left: 8.33333%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-2 {
  left: 16.66667%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-3 {
  left: 25%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-4 {
  left: 33.33333%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-5 {
  left: 41.66667%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-6 {
  left: 50%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-7 {
  left: 58.33333%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-8 {
  left: 66.66667%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-9 {
  left: 75%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-10 {
  left: 83.33333%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-11 {
  left: 91.66667%;
}

/* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
.push-xs-12 {
  left: 100%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-1 {
  margin-left: 8.33333%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-2 {
  margin-left: 16.66667%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-3 {
  margin-left: 25%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-4 {
  margin-left: 33.33333%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-5 {
  margin-left: 41.66667%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-6 {
  margin-left: 50%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-7 {
  margin-left: 58.33333%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-8 {
  margin-left: 66.66667%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-9 {
  margin-left: 75%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-10 {
  margin-left: 83.33333%;
}

/* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
.offset-xs-11 {
  margin-left: 91.66667%;
}

@media (min-width: 544px) {
  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 8.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 16.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 25%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 33.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 41.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 50%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 58.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 66.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 75%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 83.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 91.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 100%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-0 {
    right: auto;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-1 {
    right: 8.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-2 {
    right: 16.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-3 {
    right: 25%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-4 {
    right: 33.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-5 {
    right: 41.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-6 {
    right: 50%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-7 {
    right: 58.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-8 {
    right: 66.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-9 {
    right: 75%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-10 {
    right: 83.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-11 {
    right: 91.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-sm-12 {
    right: 100%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-0 {
    left: auto;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-1 {
    left: 8.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-2 {
    left: 16.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-3 {
    left: 25%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-4 {
    left: 33.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-5 {
    left: 41.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-6 {
    left: 50%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-7 {
    left: 58.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-8 {
    left: 66.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-9 {
    left: 75%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-10 {
    left: 83.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-11 {
    left: 91.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-sm-12 {
    left: 100%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-0 {
    margin-left: 0%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-2 {
    margin-left: 16.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-3 {
    margin-left: 25%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-4 {
    margin-left: 33.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-5 {
    margin-left: 41.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-6 {
    margin-left: 50%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-7 {
    margin-left: 58.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-8 {
    margin-left: 66.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-9 {
    margin-left: 75%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-10 {
    margin-left: 83.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 8.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 16.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 25%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 33.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 41.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 50%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 58.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 66.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 75%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 83.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 91.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 100%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-0 {
    right: auto;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-1 {
    right: 8.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-2 {
    right: 16.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-3 {
    right: 25%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-4 {
    right: 33.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-5 {
    right: 41.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-6 {
    right: 50%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-7 {
    right: 58.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-8 {
    right: 66.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-9 {
    right: 75%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-10 {
    right: 83.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-11 {
    right: 91.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-md-12 {
    right: 100%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-0 {
    left: auto;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-1 {
    left: 8.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-2 {
    left: 16.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-3 {
    left: 25%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-4 {
    left: 33.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-5 {
    left: 41.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-6 {
    left: 50%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-7 {
    left: 58.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-8 {
    left: 66.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-9 {
    left: 75%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-10 {
    left: 83.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-11 {
    left: 91.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-md-12 {
    left: 100%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-0 {
    margin-left: 0%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-1 {
    margin-left: 8.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-2 {
    margin-left: 16.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-3 {
    margin-left: 25%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-4 {
    margin-left: 33.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-5 {
    margin-left: 41.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-6 {
    margin-left: 50%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-7 {
    margin-left: 58.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-8 {
    margin-left: 66.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-9 {
    margin-left: 75%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-10 {
    margin-left: 83.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 8.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 16.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 25%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 33.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 41.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 50%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 58.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 66.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 75%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 83.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 91.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 100%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-0 {
    right: auto;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-1 {
    right: 8.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-2 {
    right: 16.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-3 {
    right: 25%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-4 {
    right: 33.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-5 {
    right: 41.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-6 {
    right: 50%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-7 {
    right: 58.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-8 {
    right: 66.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-9 {
    right: 75%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-10 {
    right: 83.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-11 {
    right: 91.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-lg-12 {
    right: 100%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-0 {
    left: auto;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-1 {
    left: 8.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-2 {
    left: 16.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-3 {
    left: 25%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-4 {
    left: 33.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-5 {
    left: 41.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-6 {
    left: 50%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-7 {
    left: 58.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-8 {
    left: 66.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-9 {
    left: 75%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-10 {
    left: 83.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-11 {
    left: 91.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-lg-12 {
    left: 100%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-0 {
    margin-left: 0%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-2 {
    margin-left: 16.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-3 {
    margin-left: 25%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-4 {
    margin-left: 33.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-5 {
    margin-left: 41.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-6 {
    margin-left: 50%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-7 {
    margin-left: 58.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-8 {
    margin-left: 66.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-9 {
    margin-left: 75%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-10 {
    margin-left: 83.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1200px) {
  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-1 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 8.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-2 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 16.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-3 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 25%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-4 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 33.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-5 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 41.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-6 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 50%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-7 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 58.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-8 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 66.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-9 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 75%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-10 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 83.33333%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-11 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 91.66667%;
  }

  /* line 24, ../scss/bootstrap/mixins/_grid-framework.scss */
  .col-xl-12 {
    position: relative;
    min-height: 1px;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
    float: left;
    width: 100%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-0 {
    right: auto;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-1 {
    right: 8.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-2 {
    right: 16.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-3 {
    right: 25%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-4 {
    right: 33.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-5 {
    right: 41.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-6 {
    right: 50%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-7 {
    right: 58.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-8 {
    right: 66.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-9 {
    right: 75%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-10 {
    right: 83.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-11 {
    right: 91.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .pull-xl-12 {
    right: 100%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-0 {
    left: auto;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-1 {
    left: 8.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-2 {
    left: 16.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-3 {
    left: 25%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-4 {
    left: 33.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-5 {
    left: 41.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-6 {
    left: 50%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-7 {
    left: 58.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-8 {
    left: 66.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-9 {
    left: 75%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-10 {
    left: 83.33333%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-11 {
    left: 91.66667%;
  }

  /* line 31, ../scss/bootstrap/mixins/_grid-framework.scss */
  .push-xl-12 {
    left: 100%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-0 {
    margin-left: 0%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-2 {
    margin-left: 16.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-3 {
    margin-left: 25%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-4 {
    margin-left: 33.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-5 {
    margin-left: 41.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-6 {
    margin-left: 50%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-7 {
    margin-left: 58.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-8 {
    margin-left: 66.66667%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-9 {
    margin-left: 75%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-10 {
    margin-left: 83.33333%;
  }

  /* line 40, ../scss/bootstrap/mixins/_grid-framework.scss */
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
/* line 7, ../scss/bootstrap/utilities/_visibility.scss */
.invisible {
  visibility: hidden !important;
}

/* line 14, ../scss/bootstrap/utilities/_visibility.scss */
.hidden-xs-up {
  display: none !important;
}

@media (max-width: 543px) {
  /* line 19, ../scss/bootstrap/utilities/_visibility.scss */
  .hidden-xs-down {
    display: none !important;
  }
}

@media (min-width: 544px) {
  /* line 14, ../scss/bootstrap/utilities/_visibility.scss */
  .hidden-sm-up {
    display: none !important;
  }
}

@media (max-width: 767px) {
  /* line 19, ../scss/bootstrap/utilities/_visibility.scss */
  .hidden-sm-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  /* line 14, ../scss/bootstrap/utilities/_visibility.scss */
  .hidden-md-up {
    display: none !important;
  }
}

@media (max-width: 991px) {
  /* line 19, ../scss/bootstrap/utilities/_visibility.scss */
  .hidden-md-down {
    display: none !important;
  }
}

@media (min-width: 992px) {
  /* line 14, ../scss/bootstrap/utilities/_visibility.scss */
  .hidden-lg-up {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  /* line 19, ../scss/bootstrap/utilities/_visibility.scss */
  .hidden-lg-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  /* line 14, ../scss/bootstrap/utilities/_visibility.scss */
  .hidden-xl-up {
    display: none !important;
  }
}

/* line 19, ../scss/bootstrap/utilities/_visibility.scss */
.hidden-xl-down {
  display: none !important;
}

/* line 31, ../scss/bootstrap/utilities/_visibility.scss */
.visible-print-block {
  display: none !important;
}
@media print {
  /* line 31, ../scss/bootstrap/utilities/_visibility.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 38, ../scss/bootstrap/utilities/_visibility.scss */
.visible-print-inline {
  display: none !important;
}
@media print {
  /* line 38, ../scss/bootstrap/utilities/_visibility.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 45, ../scss/bootstrap/utilities/_visibility.scss */
.visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 45, ../scss/bootstrap/utilities/_visibility.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 53, ../scss/bootstrap/utilities/_visibility.scss */
  .hidden-print {
    display: none !important;
  }
}

/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name: Flinders University Childcare Centre
Author: Jayme Brereton

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/* line 15, ../scss/modules/_alerts.scss */
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px 0;
  padding: 5px 18px;
  border: 1px solid;
}

/* line 21, ../scss/modules/_alerts.scss */
.alert-help {
  border-color: #e8dc59;
  background: #ebe16f;
}

/* line 27, ../scss/modules/_alerts.scss */
.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8;
}

/* line 33, ../scss/modules/_alerts.scss */
.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4;
}

/* line 39, ../scss/modules/_alerts.scss */
.alert-success {
  border-color: #deeaae;
  background: #e6efc2;
}

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name: Flinders University Childcare Centre
Author: Jayme Brereton

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/* line 18, ../scss/breakpoints/_base.scss */
body {
  font-family: "Open Sans", Futura, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #231f20;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 28, ../scss/breakpoints/_base.scss */
.page {
  background-color: #fff;
}

/* line 32, ../scss/breakpoints/_base.scss */
*, *:before, *:after {
  box-sizing: border-box;
}

/*********************
LAYOUT & GRID STYLES
*********************/
/* line 40, ../scss/breakpoints/_base.scss */
.wrap {
  width: 96%;
  margin: 0 auto;
  padding: 0 20px;
}

/*********************
LINK STYLES
*********************/
/* line 50, ../scss/breakpoints/_base.scss */
a, a:visited {
  color: #78a22f;
  /* on hover */
  /* on click */
  /* mobile tap color */
}
/* line 54, ../scss/breakpoints/_base.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
  color: #5e7e25;
}
/* line 64, ../scss/breakpoints/_base.scss */
a:link, a:visited:link {
  /*
  this highlights links on iPhones/iPads.
  so it basically works like the :hover selector
  for mobile devices.
  */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 78, ../scss/breakpoints/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */
}
/* line 87, ../scss/breakpoints/_base.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none;
}

/* line 92, ../scss/breakpoints/_base.scss */
h1, .h1 {
  font-size: 30px;
  line-height: 40px;
  color: #fff;
}

/* line 100, ../scss/breakpoints/_base.scss */
.post-type-archive-tribe_events h1, .post-type-archive-tribe_events .h1 {
  display: none;
}

/* line 105, ../scss/breakpoints/_base.scss */
h2, .h2 {
  font-size: 1.75em;
  line-height: 1.4em;
  margin-bottom: 0.375em;
}

/* line 111, ../scss/breakpoints/_base.scss */
h3, .h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

/* line 117, ../scss/breakpoints/_base.scss */
h4, .h4 {
  font-size: 1.1em;
  font-weight: 700;
}

/* line 122, ../scss/breakpoints/_base.scss */
h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/*********************
HEADER STYLES
*********************/
/* line 133, ../scss/breakpoints/_base.scss */
.medallion {
  text-align: center;
  padding: 20px 0;
  overflow: hidden;
}
/* line 136, ../scss/breakpoints/_base.scss */
.medallion h1, .medallion h3, .medallion p {
  margin: 0;
}
/* line 140, ../scss/breakpoints/_base.scss */
.medallion img {
  max-width: 95%;
}

/* line 145, ../scss/breakpoints/_base.scss */
.header {
  background-color: #78a22f;
  padding-top: 16px;
  padding-bottom: 12px;
}
/* line 151, ../scss/breakpoints/_base.scss */
.header h2 {
  color: #fff;
  margin: 0;
  text-transform: none;
  line-height: 1;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 1px;
}

.heading-top h2 {
  margin-bottom: 10px;
  font-weight: 600;
}


.header h3 {
  color: #fff;
  margin: 0;
  text-transform: none;
  line-height: 1.5;
  font-weight: 600;
  font-size: 18px;
}

.header p {
  color: #fff;
   font-size: 16px;
    font-weight: 600;
}

/* line 162, ../scss/breakpoints/_base.scss */
.header h2 span {
  position: relative;
  top: -4px;
}
/* line 165, ../scss/breakpoints/_base.scss */
.header h2 span.lot1 {
  top: -1px;
}
/* line 168, ../scss/breakpoints/_base.scss */
.header h2 span.lot6 {
  top: 0;
}

/* line 175, ../scss/breakpoints/_base.scss */
img.banner {
  max-width: 100%;
  height: auto;
  width: 100%;
  display: block;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/* line 186, ../scss/breakpoints/_base.scss */
.content {
  padding: 40px 0;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
}
/* line 193, ../scss/breakpoints/_base.scss */
.content img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* line 197, ../scss/breakpoints/_base.scss */
.content img.floor_plan {
  margin-top: 30px;
}
/* line 201, ../scss/breakpoints/_base.scss */
.content ul {
  padding-left: 18px;
}
/* line 204, ../scss/breakpoints/_base.scss */
.content li {
  color: #78a22f;
  list-style-type: disc;
}
/* line 207, ../scss/breakpoints/_base.scss */
.content li:not(:last-of-type) {
  margin-bottom: 11px;
}
/* line 210, ../scss/breakpoints/_base.scss */
.content li span {
  color: #231f20;
}

/* line 216, ../scss/breakpoints/_base.scss */
#price {
  font-size: 18px;
  font-weight: 700;
}

/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name: Flinders University Childcare Centre
  Author: Jayme Brereton
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
}
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name: Flinders University Childcare Centre
  Author: Jayme Brereton
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  /* line 22, ../scss/breakpoints/_768up.scss */
  .padding-0 {
    padding: 0;
  }

  /* line 30, ../scss/breakpoints/_768up.scss */
  #container {
    position: relative;
  }

  /*********************
  LAYOUT & GRID STYLES
  *********************/
  /* line 38, ../scss/breakpoints/_768up.scss */
  .wrap {
    width: 750px;
    padding: 0 20px;
  }

  /*********************
  HEADER STYLES
  *********************/
  /* line 47, ../scss/breakpoints/_768up.scss */
  .medallion {
    padding: 20px 0px;
  }

  /* line 51, ../scss/breakpoints/_768up.scss */
  .content {
    padding: 40px 0px;
  }

  /* line 55, ../scss/breakpoints/_768up.scss */
  .medallion {
    text-align: left;
  }
  /* line 57, ../scss/breakpoints/_768up.scss */
  .medallion h1 {
    float: left;
  }
  /* line 60, ../scss/breakpoints/_768up.scss */
  .medallion .contact_details {
    float: right;
  }
}
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name: Flinders University Childcare Centre
  Author: Jayme Brereton
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  /* line 12, ../scss/breakpoints/_1030up.scss */
  .wrap {
    width: 1000px;
    padding: 0 20px;
  }

  /* line 17, ../scss/breakpoints/_1030up.scss */
  body {
    background-color: #e2e2e2;
  }

  /* line 21, ../scss/breakpoints/_1030up.scss */
  .page {
    max-width: 1180px;
    margin: 0 auto;
    background-color: #fff;
  }

  /* line 27, ../scss/breakpoints/_1030up.scss */
  .medallion {
    padding: 20px 0;
  }

  /* line 31, ../scss/breakpoints/_1030up.scss */
  .content {
    padding: 40px 0;
  }
}
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1240px) {
  /******************************************************************
  Site Name: Flinders University Childcare Centre 
  Author: Jayme Brereton 
  
  Stylesheet: Super Large Monitor Stylesheet
  
  You can add some advanced styles here if you like. This kicks in
  on larger screens.
  
  ******************************************************************/
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: Flinders University Childcare Centre 
  Author: Jayme Brereton 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name: Flinders University Childcare Centre
  Author: Jayme Brereton
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  /* line 13, ../scss/partials/_print.scss */
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  /* line 21, ../scss/partials/_print.scss */
  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  /* line 26, ../scss/partials/_print.scss */
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  /* line 31, ../scss/partials/_print.scss */
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /* line 36, ../scss/partials/_print.scss */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  /* line 42, ../scss/partials/_print.scss */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  /* line 47, ../scss/partials/_print.scss */
  thead {
    display: table-header-group;
  }

  /* line 51, ../scss/partials/_print.scss */
  tr, img {
    page-break-inside: avoid;
  }

  /* line 55, ../scss/partials/_print.scss */
  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  /* line 63, ../scss/partials/_print.scss */
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }

  /* line 68, ../scss/partials/_print.scss */
  h2,
  h3 {
    page-break-after: avoid;
  }

  /* line 74, ../scss/partials/_print.scss */
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
