/******************************************************************
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!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
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 SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name:
Author:

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:
Author:

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 bones 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
*/
/******************************************************************
Site Name:
Author:

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);
*/
/******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
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.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.
*/
/*********************
NAVIGATION STYLES
*********************/
/******************************************************************
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!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
/*
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/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
/******************************************************************
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.

******************************************************************/
.nav {
  /* .menu is clearfixed inside mixins.scss */
}
.menu {
  /* end .menu */
  /*********************
POSTS & CONTENT STYLES
*********************/
  /* entry content */
}
.menu ul {
  /* end .menu ul */
}
.menu ul li {
  /* end .menu ul li */
  /* highlight current page */
}
.menu ul li:last-child {
  /*
				plan your menus and drop-downs wisely.
				*/
}
.menu ul li.current-menu-item, .menu ul li.current_page_item, .menu ul li.current_page_ancestor {
  /* end current highlighters */
}
.entry-content {
  /* end .entry-content */
  /*********************
FOOTER STYLES
*********************/
  /*
check your menus here. do they look good?
do they need tweaking?
*/
}
.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;
}
.footer-links {
  /* end .footer-links */
}
.contact-page-mobile .gform_wrapper textarea.large {
  width: 72%;
  max-width: 400px;
}
.contact-page-mobile .gform_wrapper .gform_footer input.button, .contact-page-mobile .gform_wrapper .gform_footer input[type=submit] {
  font-size: 1em;
  width: 72%;
  background-color: #000;
  margin-left: 14%;
  height: 27px;
  max-width: 400px;
}
.facebook {
  width: 38px;
  z-index: 9999;
  margin-top: 23px;
  position: absolute;
  right: 20px;
}
.page-image {
  width: 100%;
  margin: 20% auto 0;
}
.page-image img {
  max-width: 100%;
}
body {
  /*********************
LAYOUT & GRID STYLES
*********************/
}
.wrap {
  width: 760px;
}
.entry-content {
  padding: 0 0 20px 0;
}
.page-image {
  width: 82% !important;
  margin: 50px auto 0;
}
.page-image img {
  max-width: 100%;
}
.page-template-page-about #content, .page-template-default #content, .single-format-standard #content, .page-template-page-services #content {
  min-height: 768px;
}
h2, .h2 {
  font-family: velinosans-bold;
  font-size: 2.5em;
  line-height: 1em !important;
}
.default-page {
  margin-top: 35%;
  padding-bottom: 50px;
}
.default-post {
  margin-top: 25%;
  padding-bottom: 50px;
  /*********************
HEADER STYLES
*********************/
}
#logo {
  /*********************
NAVIGATION STYLES
*********************/
}
.nav {
  border: 0;
  /* end .nav */
  /*********************
SIDEBARS & ASIDES
*********************/
}
.nav ul {
  background: #323944;
  margin-top: 0;
}
.nav li {
  float: left;
  position: relative;
  /* end .menu ul li */
  /* highlight current page */
}
.nav li a {
  /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/
  border-bottom: 0;
}
.nav li a:hover, .nav li a:focus {
  color: #fff;
  text-decoration: underline;
}
.nav li:last-child {
  /*
		plan your menus and drop-downs wisely.
		*/
}
.nav li ul.sub-menu, .nav li ul.children {
  margin-top: 0;
  border: 1px solid #ccc;
  border-top: 0;
  position: absolute;
  visibility: hidden;
  z-index: 8999;
  /* showing sub-menus */
}
.nav li ul.sub-menu li, .nav li ul.children li {
  /* highlight sub-menu current page */
}
.nav li ul.sub-menu li a, .nav li ul.children li a {
  padding-left: 10px;
  border-right: 0;
  display: block;
  width: 180px;
  border-bottom: 1px solid #ccc;
}
.nav li ul.sub-menu li:last-child, .nav li ul.children li:last-child {
  /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/
}
.nav li ul.sub-menu li:last-child a, .nav li ul.children li:last-child a {
  border-bottom: 0;
}
.nav li ul.sub-menu li ul, .nav li ul.children li ul {
  top: 0;
  left: 100%;
}
.nav li:hover > ul {
  top: auto;
  visibility: visible;
}
.nav li.current-menu-item, .nav li.current_page_item, .nav li.current_page_ancestor {
  /* end current highlighters */
}
.sidebar {
  margin-top: 2.2em;
}
.widgettitle {
  border-bottom: 2px solid #444;
  margin-bottom: 0.75em;
}
.widget {
  padding: 0 10px;
  margin: 2.2em 0;
  /* links widget */
}
.widget ul li {
  margin-bottom: 0.75em;
}
.widget ul li a {
  /* deep nesting */
}
.widget ul li ul {
  margin-top: 0.75em;
  padding-left: 1em;
}
.widget_links ul li a {
  /* meta widget */
}
.widget_meta ul li a {
  /* pages widget */
}
.widget_pages ul li a {
  /* recent-posts widget */
}
.widget_recent_entries ul li a {
  /* archives widget */
}
.widget_archive option {
  /* tag-cloud widget */
}
.widget_tag_cloud a:before {
  /* calendar widget */
}
#wp-calendar #prev a {
  /* category widget */
}
.widget_categories .level-3 {
  /* recent-comments widget */
}
.widget_recent_comments {
  /* search widget */
}
.screen-reader-text {
  /* text widget */
}
.textwidget p {
  /*********************
FOOTER STYLES
*********************/
  /*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
}
.footer-links {
  /* end .footer-links */
}
.footer-links ul li a {
  /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/
}
.contact-page-mobile .gform_wrapper .gform_footer input.button, .contact-page-mobile .gform_wrapper .gform_footer input[type=submit] {
  font-size: 1em;
  width: 72%;
  background-color: #000;
  margin-left: 23.5%;
  height: 27px;
  max-width: 400px;
}
.wrap {
  width: 1040px;
}
.page-image {
  width: 69% !important;
  margin: 12% auto 0px;
}
.page-image img {
  max-width: 100%;
}
.gform_wrapper .top_label .gfield_description {
  padding: 0 0px 0px !important;
  text-align: right;
  font-size: 10px;
  margin-top: -10px;
}
#content {
  min-height: 0px !important;
}
.d-4of7 {
  padding-right: 0.75em;
  width: 48%;
}
