/******************************************************************
Site Name: 
Author: 

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/*
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't 
understand (what's inside the media queries). We also need to
import the mixins file so LESS can understand the variables.
*/
/* import mixins */
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
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.
 */
[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.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:active {
  outline: none;
}
a:focus {
  -moz-outline-style: none;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
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.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap;
}
/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}
/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}
/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}
/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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.
 */
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).
 */
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.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
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.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}
/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/******************************************************************
CUSTOMIZED RESET VALUES
I added these extra styles as a more personalized reset. Feel free
to remove them if you like or add your own. If you want to update
the normalize styles, make sure to edit from this point up.
******************************************************************/
b,
strong,
.strong {
  font-weight: bold;
}
dfn,
em,
.em {
  font-style: italic;
}
small,
.small {
  font-size: 75%;
}
ul,
ol {
  padding: 0;
  list-style-type: none;
}
dd {
  margin: 0;
}
.sidebar ul,
.sidebar ol,
.commentlist {
  list-style: none;
}
/******************************************************************
Site Name: 
Author: 

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. 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 like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
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/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	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('../fonts/font-name.eot');
    	src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('../fonts/font-name.woff') format('woff'),
             url('../fonts/font-name.ttf') format('truetype'),
             url('../fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/* 
use the best ampersand 
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
  font-style: italic;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.alert {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.alert-help {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #e8dc59;
  background: #ebe16f;
}
.alert-info {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #bfe4f4;
  background: #d5edf8;
}
.alert-error {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #f8cdce;
  background: #fbe3e4;
}
.alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
  border-color: #deeaae;
  background: #e6efc2;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .border-radius(4px); 

*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
TRANSFORM
*********************/
/* .transform(scale,1); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdo it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0,0,4px,0,#444); */
/* .boxShadow(none); */
/*********************
COLUMNS
*********************/
/********************
PLACEHOLDERS
*********************/
/*********************
ANIMATIONS
*********************/
/*********************
BUTTONS
*********************/
.button,
.button:visited {
  border: 1px solid #be0d37;
  border-top-color: #db0f3f;
  border-left-color: #db0f3f;
  padding: 4px 12px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: bold;
  text-decoration: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  margin-bottom: 20px;
  line-height: 21px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #e40f42;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f01d4f), to(#e40f42));
  background-image: -webkit-linear-gradient(top, #f01d4f, #e40f42);
  background-image: -moz-linear-gradient(top, #f01d4f, #e40f42);
  background-image: -o-linear-gradient(top, #f01d4f, #e40f42);
  background-image: linear-gradient(to bottom, #f01d4f, #e40f42);
}
.button:hover,
.button:visited:hover,
.button:focus,
.button:visited:focus {
  color: #fff;
  border: 1px solid #be0d37;
  border-top-color: #9d0a2d;
  border-left-color: #9d0a2d;
  background-color: #cc0e3b;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e40f42), to(#cc0e3b));
  background-image: -webkit-linear-gradient(top, #e40f42, #cc0e3b);
  background-image: -moz-linear-gradient(top, #e40f42, #cc0e3b);
  background-image: -o-linear-gradient(top, #e40f42, #cc0e3b);
  background-image: linear-gradient(to bottom, #e40f42, #cc0e3b);
}
.button:active,
.button:visited:active {
  background-color: #f01d4f;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#e40f42), to(#f01d4f));
  background-image: -webkit-linear-gradient(top, #e40f42, #f01d4f);
  background-image: -moz-linear-gradient(top, #e40f42, #f01d4f);
  background-image: -o-linear-gradient(top, #e40f42, #f01d4f);
  background-image: linear-gradient(to bottom, #e40f42, #f01d4f);
}
.blue-button,
.blue-button:visited {
  border-color: #1472ad;
  text-shadow: 0 1px 1px #1472ad;
  background-color: #1681c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1990db), to(#1681c4));
  background-image: -webkit-linear-gradient(top, #1990db, #1681c4);
  background-image: -moz-linear-gradient(top, #1990db, #1681c4);
  background-image: -o-linear-gradient(top, #1990db, #1681c4);
  background-image: linear-gradient(to bottom, #1990db, #1681c4);
  -webkit-box-shadow: inset 0 0 3px #59b3ec;
  -moz-box-shadow: inset 0 0 3px #59b3ec;
  box-shadow: inset 0 0 3px #59b3ec;
}
.blue-button:hover,
.blue-button:visited:hover,
.blue-button:focus,
.blue-button:visited:focus {
  border-color: #116396;
  background-color: #1472ad;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1784c9), to(#1472ad));
  background-image: -webkit-linear-gradient(top, #1784c9, #1472ad);
  background-image: -moz-linear-gradient(top, #1784c9, #1472ad);
  background-image: -o-linear-gradient(top, #1784c9, #1472ad);
  background-image: linear-gradient(to bottom, #1784c9, #1472ad);
}
.blue-button:active,
.blue-button:visited:active {
  background-color: #1990db;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1681c4), to(#1990db));
  background-image: -webkit-linear-gradient(top, #1681c4, #1990db);
  background-image: -moz-linear-gradient(top, #1681c4, #1990db);
  background-image: -o-linear-gradient(top, #1681c4, #1990db);
  background-image: linear-gradient(to bottom, #1681c4, #1990db);
}
/******************************************************************
Site Name: 
Author: 

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.less styles.

******************************************************************/
/*********************
NAVIGATION STYLES
*********************/
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */
}
.entry-content .alignleft,
.entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright,
.entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter,
.entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
/* end .entry-content */
/*********************
FOOTER STYLES
*********************/
div.course-info.grey .circle {
  padding-top: 8%;
  float: left;
  width: 30%;
  height: 155px;
  border-radius: 50%;
  margin-left: 2.5%;
  margin-top: 5%;
  margin-bottom: 5%;
  text-align: center;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  font-style: italic;
}
div.course-info.grey .circle span.number {
  font-style: normal;
  font-size: 54px;
  font-weight: 700;
  line-height: 1em;
}
/******************************************************************
Site Name:
Author:

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!

******************************************************************/
/*********************
GENESIS STYLES
*********************/
/*********************
13. GENESIS STYLES
*********************/
.social-links {
  display: bsck;
  width: 150px;
  position: absolute;
  right: 0;
  top: 0;
}
.social-links div {
  float: left;
  width: 30px;
  background: url(../images/header/social/social.jpg) no-repeat;
  height: 30px;
}
.social-links div.facebook {
  background-position: 0 0;
}
.social-links div.youtube {
  background-position: -30px 0;
}
.social-links div.twitter {
  background-position: -60px 0;
}
.social-links div.instagram {
  background-position: -90px 0;
}
.social-links div.linkedin {
  background-position: -120px 0;
}
header.site-header .header-bg {
  display: block;
  float: left;
  width: 100%;
  height: 500px;
  margin-top: 0px;
}
header.site-header .header-bg .slide-holder {
  height: 500px;
  float: left;
  width: 100%;
  position: relative;
  overflow: hidden;
}
header.site-header .header-bg .slide-holder .slide {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
  background-origin: padding-box;
  background-clip: border-box;
  background-position: center center;
  background-size: cover;
}
.slide-content {
  background: rgba(242, 101, 50, 0.8);
  padding: 25px;
  width: 600px;
}
.slide-content h2 {
  margin-top: 0px;
  font-family: 'Rock Salt', cursive;
  font-size: 40px;
  margin-bottom: 5px;
}
.slide-content > a {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 300;
  float: left;
  line-height: 31px;
  background: url("../images/header/sub-nav28.png") no-repeat scroll right 2px;
  padding-right: 40px;
}
.title-area {
  float: left;
  width: 30%;
  padding: 0 0% 0 0%;
  text-align: left;
  background: rgba(255, 255, 255, 0);
}
a.menu-trigger {
  display: none;
}
.navigation {
  position: relative;
  float: right;
  width: 100%;
}
body.home .navigation,
body.home-ol .navigation {
  display: block;
  overflow: none;
  position: absolute;
  right: 0;
  top: 30px;
}
nav {
  float: right;
  width: auto;
  display: block;
  clear: right;
}
nav a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  font-weight: 700;
}
nav li.page_item {
  display: inline;
  float: left;
}
nav li.page_item a {
  display: block;
  float: left;
}
nav ul.menu {
  float: left;
  width: auto;
}
nav.nav-secondary {
  background: rgba(3, 151, 214, 0.8);
  width: 100%;
  /* more colours to come! EH */
  /* more colours to come! EH */
}
nav.nav-secondary.online-nav {
  background: rgba(111, 199, 174, 0.8);
  border-bottom: 0 !important;
}
nav.nav-secondary ul.menu li a {
  padding: 15px;
  font-weight: normal;
  text-transform: none;
}
nav.nav-secondary ul.menu li.current_page_item a,
nav.nav-secondary ul.menu li.current_page_parent a,
nav.nav-secondary ul.menu li.current_page_ancestor a {
  font-weight: 700;
}
nav.nav-secondary.orange {
  border-bottom: 2px solid #f26532;
}
nav.nav-secondary.green {
  border-bottom: 2px solid #8dc642;
}
nav.nav-secondary.yellow {
  border-bottom: 2px solid #ffe400;
}
ul.menu-launch {
  width: auto;
}
ul.menu-launch li.page_item {
  font-size: 11px;
}
ul.menu-launch li.page_item a {
  padding: 6px 16px;
  background: rgba(141, 198, 66, 0.8);
  line-height: 16px;
}
ul.menu-launch li.page_item a:hover {
  background: rgba(165, 210, 105, 0.8);
}
ul.menu-launch.online-nav {
  width: auto;
}
ul.menu-launch.online-nav li.page_item {
  font-size: 11px;
}
ul.menu-launch.online-nav li.page_item a {
  padding: 6px 16px;
  background: rgba(46, 87, 99, 0.8);
  line-height: 16px;
}
ul.menu-launch.online-nav li.page_item a:hover {
  background: rgba(62, 118, 134, 0.8);
}
ul.menu-primary li.page_item {
  /*
    &.current_page_item a, &.current_page_parent a, &.current_page_ancestor a {
      background: @sec-nav-color;
    }
    */
}
ul.menu-primary li.page_item a {
  padding: 15px;
  font-weight: 700;
  font-size: 28px;
  background: rgba(22, 107, 147, 0.8);
}
ul.menu-primary li.page_item a:hover {
  background: rgba(29, 139, 191, 0.8);
}
ul.menu-primary li.page_item.active a {
  background: rgba(3, 151, 214, 0.8);
}
ul.menu-primary.online-nav li.page_item {
  /*
    &.current_page_item a, &.current_page_parent a, &.current_page_ancestor a {
      background: @sec-nav-color;
    }
    */
}
ul.menu-primary.online-nav li.page_item a {
  padding: 15px;
  font-weight: 700;
  font-size: 28px;
  background: rgba(55, 147, 152, 0.8);
}
ul.menu-primary.online-nav li.page_item a:hover {
  background: rgba(70, 182, 188, 0.8);
}
ul.menu-primary.online-nav li.page_item.active a {
  background: rgba(111, 199, 174, 0.8);
}
.search-box {
  float: left;
  background: rgba(141, 198, 66, 0.8);
  width: 100%;
  border-left: 1px solid #fff;
}
.search-box span {
  display: block;
  float: left;
  padding: 6px 16px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.search-box:hover {
  background: rgba(165, 210, 105, 0.8);
}
.search-box .form-holder {
  float: left;
  width: auto;
}
.search-box form {
  display: block;
  float: left;
}
.search-box input {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.search-box input[type=text] {
  padding: 4px 0px;
  background: rgba(165, 210, 105, 0.8);
  border: 0;
  color: #fff;
  line-height: 1.5em;
  width: 0px;
  float: left;
  font-size: 13px;
}
.search-box input[type=submit] {
  background: url('../images/header/search.png') no-repeat rgba(165, 210, 105, 0.8);
  background-position: center center;
  border: 0;
  width: 0px;
  height: 28px;
  padding: 0;
  float: left;
}
.search-box .form-holder.active input[type=text] {
  width: 200px;
  padding: 4px;
}
.search-box .form-holder.active input[type=submit] {
  width: 30px;
}
.search-box.online-nav {
  float: left;
  background: rgba(46, 87, 99, 0.8);
  width: 100%;
  border-left: 1px solid #fff;
}
.search-box.online-nav span {
  display: block;
  float: left;
  padding: 6px 16px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.search-box.online-nav:hover {
  background: rgba(62, 118, 134, 0.8);
}
.search-box.online-nav .form-holder {
  float: left;
  width: auto;
}
.search-box.online-nav form {
  display: block;
  float: left;
}
.search-box.online-nav input {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.search-box.online-nav input[type=text] {
  padding: 4px 0px;
  background: rgba(46, 87, 99, 0.8);
  border: 0;
  color: #fff;
  line-height: 1.5em;
  width: 0px;
  float: left;
  font-size: 13px;
}
.search-box.online-nav input[type=submit] {
  background: url('../images/header/search.png') no-repeat rgba(46, 87, 99, 0.8);
  background-position: center center;
  border: 0;
  width: 0px;
  height: 28px;
  padding: 0;
  float: left;
}
.search-box.online-nav .form-holder.active input[type=text] {
  width: 200px;
  padding: 4px;
}
.search-box.online-nav .form-holder.active input[type=submit] {
  width: 30px;
}
.nav-strip {
  width: auto;
  height: auto;
  float: right;
  text-align: left;
  font-size: 14px;
}
.nav-strip > ul.menu {
  display: none;
}
.nav-strip > ul.menu.active {
  display: block;
  -webkit-animation: fadein 0.8s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.8s;
  /* Firefox < 16 */
  -ms-animation: fadein 0.8s;
  /* Internet Explorer */
  -o-animation: fadein 0.8s;
  /* Opera < 12.1 */
  animation: fadein 0.8s;
}
.site-container.inside ul.menu-primary li.page_item {
  /*
      &.current_page_item a, &.current_page_parent a, &.current_page_ancestor a {
        background: @sec-nav-color-opaque;
      }
      */
}
.site-container.inside ul.menu-primary li.page_item a {
  background: #166b93;
}
.site-container.inside ul.menu-primary li.page_item a:hover {
  background: #1d8bbf;
}
.site-container.inside ul.menu-primary li.page_item.active a {
  background: #0397d6;
}
.site-container.inside ul.menu-primary.online-nav li.page_item {
  /*
      &.current_page_item a, &.current_page_parent a, &.current_page_ancestor a {
        background: @sec-nav-color-opaque;
      }
      */
}
.site-container.inside ul.menu-primary.online-nav li.page_item a {
  background: #379398;
}
.site-container.inside ul.menu-primary.online-nav li.page_item a:hover {
  background: #46b6bc;
}
.site-container.inside ul.menu-primary.online-nav li.page_item.active a {
  background: rgba(111, 199, 174, 0.8);
}
.site-container.inside nav.nav-secondary {
  background: #0397d6;
}
.site-container.inside nav.nav-secondary.online-nav {
  background: rgba(111, 199, 174, 0.8);
  border-bottom: 0 !important;
}
.site-container.inside .social-links {
  position: relative;
  float: right;
}
div.imagery {
  display: block;
  float: left;
  width: 100%;
  min-height: 350px;
  overflow: hidden;
  margin-top: 0px;
}
div.imagery div.page-header {
  width: 768px;
  margin-top: 0px;
}
div.imagery div.page-header div.titling {
  width: 50%;
  padding: 1% 2%;
  margin-top: 20px;
}
div.imagery div.page-header div.titling h1 {
  font-family: 'Rock Salt', cursive;
  font-size: 37px;
  padding: 0px;
  margin: 0px;
}
div.imagery div.page-header div.orange-block {
  float: right;
  width: 30%;
  margin-top: 20px;
  display: block;
  background: none;
}
.dl-menuwrapper .dl-menu {
  position: absolute;
}
.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
  right: 12px;
}
.mobile {
  display: none;
}
.desktop {
  display: block;
}
.social-links {
  top: 0;
}
.wrap {
  max-width: 768px;
}
div.courses {
  float: left;
  padding: 2% 1% 2% 0;
  width: 32%;
  color: #166b93;
  display: block;
}
div.courses img {
  padding: 20px 0;
}
div.courses h2 {
  font-size: 18px;
  font-weight: 300;
  color: #707070;
}
div.courses h3 {
  font-size: 12px;
  color: #8dc642;
  font-weight: bold;
  padding: 0px;
  margin: 0;
}
div.courses h4 {
  font-size: 12px;
  color: #707070;
  padding: 0px;
  margin: 0;
  font-weight: normal;
}
div.courses h5 {
  font-size: 18px;
  color: #707070;
  font-weight: bold;
  padding: 0px!important;
  margin: 0!important;
  text-transform: none!important;
  letter-spacing: 0px;
  line-height: 1.09em;
}
div.courses ul {
  list-style: none;
  margin: 20px 0 ;
}
div.courses ul li {
  font-size: 11px;
  list-style: none;
  padding: 0;
}
div.courses a {
  color: #166b93;
  padding: 3px;
  display: block;
}
div.courses a:hover,
div.courses a.active {
  color: #fff;
  background: #166b93;
}
.course-home-info {
  padding: 2% 2% !important;
  width: 100%;
  background: #f6f8fa;
  margin-right: 0px;
  position: relative;
  float: left;
  display: none;
}
.course-home-info a.green,
.course-home-info a.green:hover {
  color: #fff;
  padding: 7px 38px 7px 7px;
  background: url("../images/courses/link.png") no-repeat scroll 92px center #8dc642;
  text-decoration: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  float: left;
  margin-top: 5px;
}
.course-home-info .level-disc {
  position: absolute;
  right: 10px;
  background-color: #026990;
  width: 55px;
  height: 55px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  padding-top: 5px;
  top: 22px;
}
.course-home-info .level-disc span.num {
  font-weight: 700;
  font-size: 2.5em;
  line-height: 0.8em;
}
.course-home-info h4 {
  max-width: 80%;
}
.find {
  display: block;
  background: #166b93;
  text-align: center;
  font-size: 13px;
  padding: 2% 0;
}
.find h1 {
  font-size: 48px;
  font-weight: 300;
  margin-top: 0px;
  margin-bottom: 20px;
}
div.holder {
  background: none repeat scroll 0 0 #166b93;
  float: left;
  width: 100%;
}
div.holder.ol {
  background: none repeat scroll 0 0 #348b92;
}
div.holder.ol .course-type-tabs li a {
  background: #348b92;
  color: #d4ce40;
}
div.holder .course-type-tabs {
  padding: 0;
  clear: both;
  margin: 0;
  background: #166b93;
  margin-left: 0%;
  display: block;
}
div.holder .course-type-tabs li {
  display: inline;
}
div.holder .course-type-tabs li a {
  text-transform: uppercase;
  color: #8cc640;
  background: #166b93;
  float: left;
  width: 25%;
  text-align: center;
  padding: 2% 3%;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
div.holder .course-type-tabs li a > span.blue {
  color: #8bb5c9;
}
div.holder .course-type-tabs li.active a {
  background: #fff;
  color: #0397d6;
  padding-bottom: 2%;
}
.find-course {
  display: block;
  background: #fff;
  text-align: left;
  font-size: 16px;
}
.find-course .course-type-content {
  display: none;
}
.find-course .course-type-content.where .courses {
  width: 100%;
}
.find-course .course-type-content.active {
  display: block;
  -webkit-animation: fadein 0.8s;
  /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 0.8s;
  /* Firefox < 16 */
  -ms-animation: fadein 0.8s;
  /* Internet Explorer */
  -o-animation: fadein 0.8s;
  /* Opera < 12.1 */
  animation: fadein 0.8s;
}
div.video .video-bg {
  height: 430px;
}
div.video .video-bg .sligo-vid {
  float: left;
  width: 100%;
}
div.video h1 {
  font-size: 48px;
  font-weight: 300;
}
.button-hold {
  width: 660px;
  margin: 40px 0 0 -330px;
  position: absolute;
  text-align: center;
  left: 50%;
}
.button-hold.testimonials {
  position: static;
  width: 100%;
  left: auto;
  margin: 40px auto;
  max-width: 1030px;
}
.button-hold h1 {
  font-size: 48px;
}
.button-hold ul {
  display: block;
}
.button-hold ul li {
  margin-top: 0px;
  margin-left: 0px;
  margin-right: 40px;
}
.button-hold ul li:last-child {
  margin-right: 0px;
}
.button-hold ul li.testimonial {
  margin-right: 5%;
  width: 30%;
}
.button-hold ul li.testimonial:last-child {
  margin-right: 0;
}
div.sligo-life .slide {
  padding: 25px 0;
  background-position: center right;
  background-size: auto;
  font-size: 13px;
  min-height: 292px;
}
div.sligo-life .slide .wrap {
  width: 768px;
}
div.sligo-life .slide .wrap .life-nav {
  display: none;
}
div.sligo-life .slide .wrap .intro {
  width: 40%;
}
div.sligo-life .slide .wrap .block {
  float: right;
  width: 30%;
  margin-right: 20%;
}
.social-happenings .wrap-social > div {
  width: 48%;
}
.social-happenings .wrap-social .twitter {
  margin-left: 4%;
}
footer.site-footer {
  padding: 2% 0;
}
footer.site-footer .copyright {
  margin-left: 4%;
  width: 30%;
  text-align: left;
}
footer.site-footer .logos {
  float: left;
  width: 57%;
  text-align: right;
  margin-right: 4%;
}
div.imagery.course-finder {
  padding: 2%;
  margin-top: 0px;
}
div.imagery.course-finder h1 {
  font-size: 36px;
}
.type-holder {
  width: 50%;
  float: left;
}
.type-holder.faculty {
  width: 50%;
  margin-top: 0px;
}
.type-holder.points {
  width: 40%;
  padding-left: 0px;
  margin-top: 0px;
}
.type-holder.points .points-slider {
  margin-top: 30px;
  margin-left: 20px;
  width: 100%;
}
.type-holder.points .slider-ticks {
  margin-left: 20px;
}
div.content-area {
  float: left;
  width: 68%;
  padding: 0 0 4% 0;
}
div.content-area.wide {
  float: left;
  width: 100%;
}
div.content-area.news {
  float: left;
  width: 70%;
}
div.content-area.news article.has-featured-image .featured-image {
  height: auto;
}
div.col-1 {
  float: left;
  width: 30%;
}
div.course-info {
  float: left;
  width: 48%;
  padding-right: 2%;
}
div.course-info.grey {
  background: #ebebeb;
  border-top: 2px solid #f26532;
}
div.course-info.grey .circle {
  height: 110px;
  font-size: 13px;
}
div.course-info.grey .circle span.number {
  font-size: 34px;
}
.course-listing td.course-dept,
.saved-courses td.course-dept,
.course-listing td.course-code,
.saved-courses td.course-code,
.course-listing td.level,
.saved-courses td.level,
.course-listing td.points,
.saved-courses td.points,
.course-listing td.link,
.saved-courses td.link {
  display: table-cell;
}
article.entry {
  float: left;
  margin: 0;
  padding: 0px;
  width: 100%;
}
article.entry div.featured-image {
  float: left;
  width: 0;
  line-height: 0px;
  height: auto;
}
article.entry div.featured-image img {
  width: 100%;
  height: auto;
}
article.entry header.entry-header {
  width: 100%;
  margin-left: 0;
}
article.entry header.entry-header h1 {
  font-size: 36px;
}
article.entry div.entry-content {
  width: 100%;
  margin-left: 0;
}
article.entry.has-featured-image div.featured-image {
  float: left;
  width: 37%;
}
article.entry.has-featured-image header.entry-header {
  width: 60%;
  margin-left: 3%;
}
article .entry-content img {
  width: auto;
  height: auto;
}
.entry-content .hub-column {
  width: 50%;
}
div.archive {
  width: 25%;
  margin-left: 2%;
}
div.its-sidebar {
  width: 30%;
  float: right;
}
div.its-sidebar div.prospectus h5 {
  font-size: 20px;
}
div.its-sidebar div.springboard h5 {
  font-size: 20px;
}
.site-inner.map #mapDiv {
  height: 500px;
}
div#contact-map {
  width: 100%;
  height: 600px;
}
.content-area .staff-cpanel-2 li a {
  width: 90px;
  height: 100px;
}
.content-area main.content .tya-logos img {
  float: left;
}
.content-area main.content .tya-logos img.aligncenter {
  clear: none;
  margin: 0 1.5em;
}
.odl-page {
  float: left;
  width: 48%;
  margin-right: 2%;
}
.odl-page:nth-child(even) {
  margin-right: 0;
  margin-left: 2%;
}
.odl-contact-sidebar .contact-us {
  top: 50px;
}
.tab-inner {
  padding: 50px;
}
.button-hold ul li.testimonial {
  clear: none;
}
div.video .video-bg.bg-testimonial {
  height: auto;
  min-height: 500px;
}
.title-area.title-area-ol > a img {
  padding: 0 0 0 10%;
}
.title-area.title-area-ol > a img.inside {
  display: none;
}
.title-area.title-area-ol > a img.home {
  display: block;
}
.title-area.title-area-ol > a img.logo-ol {
  width: 205px;
}
div.site-container.inside header.site-header {
  background: #fff;
}
div.site-container.inside .title-area > a img {
  width: auto;
  padding: 0 0 0 10%;
}
div.site-container.inside .title-area > a img.inside {
  display: block;
}
div.site-container.inside .title-area > a img.home {
  display: none;
}
div.site-container.inside .title-area > a img.logo-ol {
  width: 205px;
}
div.site-container.inside .site-inner {
  margin-top: 0px;
}
.contact-form-wrapper {
  overflow: auto;
}
.contact-form-wrapper .input-wrapper {
  padding: 10px;
}
.contact-form-wrapper .contact-form-left,
.contact-form-wrapper .contact-form-right {
  width: 50%;
  float: left;
}
.contact-form-wrapper .contact-form-left.submit-wrapper,
.contact-form-wrapper .contact-form-right.submit-wrapper {
  clear: both;
}
.mob-hide {
  display: table-cell;
}
/******************************************************************
Site Name: 
Author: 

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop. 

******************************************************************/
.wrap {
  max-width: 1030px;
}
div.course-info {
  float: left;
  width: 50%;
}
div.course-info.grey {
  background: #ebebeb;
  border-top: 2px solid #f26532;
}
div.course-info.grey .circle {
  height: 155px;
}
div.course-info.grey .circle span.number {
  font-size: 54px;
}
div.video .video-bg .sligo-vid {
  display: block;
}
.title-area > a img {
  width: auto;
  padding: 0 0 0 10%;
}
.title-area > a img.inside {
  display: none;
}
.title-area > a img.home {
  display: block;
}
.title-area > a img.logo-ol {
  width: 205px;
}
div.site-container.inside header.site-header {
  background: #fff;
}
div.site-container.inside .title-area > a img {
  width: auto;
  padding: 0 0 0 10%;
}
div.site-container.inside .title-area > a img.inside {
  display: block;
}
div.site-container.inside .title-area > a img.home {
  display: none;
}
div.site-container.inside .site-inner {
  margin-top: 0px;
}
div.imagery div.page-header {
  width: 1030px;
}
div.imagery div.page-header div.titling {
  height: 134px;
}
div.imagery div.page-header div.titling h1 {
  font-size: 50px;
}
div.imagery div.page-header div.orange-block ul li a:hover,
div.imagery div.page-header div.orange-block ul li a:focus {
  opacity: 1;
}
.nav-strip > ul.menu {
  margin-right: 2%;
  width: 100%;
}
.type-holder {
  width: 28%;
  float: left;
}
.type-holder.faculty {
  width: 30%;
}
.type-holder.points {
  width: 42%;
}
.type-holder.points .points-slider {
  margin-top: 70px;
  width: 90%;
}
.type-holder.points .slider-ticks {
  width: 90%;
}
div.courses.info-column {
  width: 20%;
}
article.entry.has-featured-image div.featured-image {
  float: left;
  width: 37%;
}
article.entry.has-featured-image header.entry-header {
  width: 60%;
  margin-left: 3%;
}
article.entry.has-featured-image div.entry-content {
  width: 60%;
  margin-left: 3%;
}
.odl-contact-sidebar .contact-us {
  top: 90px;
}
/* 
you can call the larger styles if you want, but there's really no need 
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
.title-area {
  position: absolute;
  width: 100%;
  text-align: center;
  height: 90px;
  background: none;
}
nav.mp-menu {
  display: none;
}
.no-csstransforms3d .mp-pusher,
.no-js .mp-pusher {
  padding-left: 0px;
}
.site-inner .wrap {
  width: 1030px!important;
}
header.site-header {
  background: none;
  background-origin: none;
  background-clip: none;
  background-position: none;
  background-size: none;
}
header.site-header {
  height: 500px;
  width: 100%;
}
ul.menu-primary li.page_item {
  /*
    &.current_page_item a, &.current_page_parent a, &.current_page_ancestor a {
      background: @sec-nav-color;
    }
    */
}
ul.menu-primary li.page_item a {
  padding: 15px;
  font-weight: 700;
  font-size: 28px;
  background: #026990;
}
ul.menu-primary li.page_item a:hover {
  background: rgba(29, 139, 191, 0.8);
}
ul.menu-primary li.page_item.active a {
  background: #0397d6;
}
nav.nav-secondary {
  background: #0397d6;
}
.search-box {
  background-color: #8cc640;
}
ul.genesis-nav-menu.menu-launch {
  width: auto;
}
ul.genesis-nav-menu.menu-launch li.page_item {
  font-size: 11px;
}
ul.genesis-nav-menu.menu-launch li.page_item a {
  padding: 6px 16px;
  background: #8cc640;
}
ul.genesis-nav-menu.menu-launch li.page_item a:hover {
  background: #99da43;
}
ul.menu-launch {
  width: auto;
}
ul.menu-launch li.page_item {
  font-size: 11px;
}
ul.menu-launch li.page_item a {
  padding: 6px 16px;
  background: #8cc640;
  line-height: 16px;
}
ul.menu-launch li.page_item a:hover {
  background: #7bb232;
}
.search-box .form-holder.active input[type="text"] {
  padding-bottom: 4px;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 4px;
  width: 200px;
}
.search-box input[type="text"] {
  background-color: #8cc640;
  color: #fff;
}
.search-box .form-holder.active input[type="submit"] {
  width: 30px;
}
.search-box input[type="submit"] {
  background-color: #8cc640;
}
ul.genesis-nav-menu.menu-primary li.page_item.active a {
  background-color: #0397d6;
}
ul.genesis-nav-menu.menu-primary li.page_item a {
  background-color: #026990;
}
div.video {
  background: url(../images/video/bg.jpg) #000 no-repeat !important;
  -moz-background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  background-size: 100% 100%;
  background-position: center center;
}
.button-hold #tabs-menu3 li {
  margin-right: 30px!important;
}
div.imagery {
  background: url("../images/header/inside-bg-2.jpg");
}
div.imagery div.titling {
  float: left;
  width: 50%;
  padding: 1% 2%;
  background: url(../images/header/titling-bg.png);
  margin-top: 20px;
}
div.imagery div.titling h1 {
  color: #fff;
}
div.imagery div.orange-block {
  float: right;
  width: 30%;
  margin-top: 20px;
}
div.its-sidebar div.prospectus {
  float: left;
  width: 100%;
  background: url(../images/header/advert1.jpg) no-repeat;
  padding: 20% 0;
}
div.its-sidebar div.prospectus h5 {
  float: left;
  width: 65%;
  padding: 3%;
  background: #8dc642;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0em;
  letter-spacing: 0;
}
div.its-sidebar div.springboard {
  float: left;
  width: 100%;
  background: url(../images/header/advert2.jpg) no-repeat;
  padding: 20% 0;
}
div.its-sidebar div.springboard h5 {
  float: left;
  width: 65%;
  padding: 3%;
  background: #f8981d;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.0em;
  letter-spacing: 0;
}
div.content-area a.green {
  color: #fff;
  padding: 5px 10px;
  background: #8dc642;
  text-decoration: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
div.content-area h1 {
  color: #026990;
  font-weight: 300;
  font-size: 36px;
}
div.content-area h1 span.heavy {
  font-weight: 700;
}
div.content-area h1 span.green {
  color: #8cc640;
}
div.content-area h2 {
  font-size: 18px;
}
div.content-area h3 {
  font-size: 18px;
  font-weight: bold;
  color: #026990;
}
div.content-area h4 {
  font-size: 18px;
  color: #8cc640;
  font-weight: normal;
  margin: 0px;
  padding: 0px;
  line-height: 1em;
}
div.content-area p {
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.8em;
}
div.content-area ul {
  margin-left: 30px;
  font-size: 13px;
}
div.content-area ul li {
  list-style-type: disc;
  padding-left: 10px;
}
.dl-menuwrapper .dl-menu.dl-menuopen {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0px);
}
.dl-menuwrapper .dl-menu {
  backface-visibility: hidden;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  margin-top: 5px;
  position: absolute;
  width: 100%;
}
.dl-menuwrapper ul {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  transform-style: preserve-3d;
}
.dl-menuwrapper ul {
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
}
.dl-menuwrapper li a {
  display: block;
  position: relative;
  padding: 3.5% 4%;
  font-size: 13px;
  line-height: 1em;
  font-weight: 300;
  color: #fff;
  outline: none;
  /*background-color: rgba(211, 84, 0, 0.8);*/
  background: url(../images/header/sub-nav/arrow.png) no-repeat #f26532;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-position: right;
}
.no-touch .dl-menuwrapper li a:hover {
  background-color: #f5764c;
  background-position: right;
}
.dl-menuwrapper li.dl-back > a {
  background: #f26532;
}
.dl-menuwrapper li.dl-back > a:hover {
  background: #d75a2d;
  background-image: none;
}
.dl-menuwrapper li.dl-open > a {
  padding-left: 15px;
  background: #d75a2d;
  background-image: none;
}
.dl-menuwrapper li.dl-open > a:hover {
  background: #d75a2d;
  background-image: none;
}
.dl-menuwrapper li.dl-back:after,
.dl-menuwrapper li > a:not(:only-child):after {
  position: absolute;
  top: 0;
  line-height: 34px;
  speak: none;
  -webkit-font-smoothing: antialiased;
  content: "\25BA";
  text-decoration: none;
}
.dl-menuwrapper .dl-menu li > a {
  padding-right: 9.5%;
}
/* support: IE8 - See #6727 */
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}
.ui-slider-horizontal {
  height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: .8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
.button-hold ul li {
  margin-left: 0;
  margin-right: 30px;
  margin-top: 0;
}
.slide-content {
  background-attachment: scroll;
  background-image: url(../images/home/orange-bg.png);
  background-origin: padding-box;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto auto;
  bottom: 50px;
  padding-bottom: 25px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 25px;
  position: absolute;
  right: 0;
  width: 600px;
}
.site-container.inside .title-area {
  margin-top: 0px;
  background: none;
}
ul.menu.active {
  animation-delay: 0s;
  animation-direction: normal;
  animation-duration: 0.8s;
  animation-fill-mode: none;
  animation-iteration-count: 1;
  animation-name: fadein;
  animation-play-state: running;
  animation-timing-function: ease;
  display: block;
  border: 0px solid red;
  text-align: center;
}
.gram {
  width: 46%;
  margin-right: 2%;
}
