/******************************************************************
Site Name: basballmanager.com

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.
*********************/
/******************************************************************
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
*********************/
/******************************************************************
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)
*********************/
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic);
@font-face {
  font-family: danielregular;
  src: url(danielbk-webfont.eot);
  src: url(../fonts/danielbk-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/danielbk-webfont.woff2) format("woff2"), url(../fonts/danielbk-webfont.woff) format("woff"), url(../fonts/danielbk-webfont.ttf) format("truetype"), url(../fonts/danielbk-webfont.svg#daniel_blackregular) format("svg");
  font-weight: 400;
  font-style: normal; }
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-break: break-all;
  -ms-word-wrap: break-all;
  word-break: break-word;
  word-break: 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:
Author:

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:
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);
*/
/*********************
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? */
/*********************
ALIGNMENT
*********************/
/* @include vertical-align; */
/*********************
BOX SHADOW
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .m-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .m-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .m-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .m-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }

  .m-hide {
    display: none !important; }

  .m-center {
    text-align: center; }

  .m-right {
    text-align: right; }

  .m-pull-right {
    float: right; }

  .m-pull-left {
    float: left; } }
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }

  .t-hide {
    display: none !important; }

  .t-center {
    text-align: center; }

  .t-right {
    text-align: right; }

  .t-pull-right {
    float: right; }

  .t-pull-left {
    float: left; } }
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }

  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }

  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }

  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }

  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }

  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }

  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }

  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }

  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }

  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; }

  .d-hide {
    display: none !important; }

  .d-center {
    text-align: center; }

  .d-right {
    text-align: right; }

  .d-pull-right {
    float: right; }

  .d-pull-left {
    float: left; }

  .d-right-pad {
    padding-right: 3em; } }
/* 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.
 */
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:focus {
  outline: thin dotted; }

/**
 * 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,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto; }

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * 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.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * 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; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

/* ol, */
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  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: 1.5em .5em 1.5em .5em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets. (well, we'll do something else)
 */
legend {
  border: 0;
  /* 1 */
  padding: 0 5px;
  /* 2 */
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; }

legend + p {
  margin-top: 0; }

/**
 * 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; }

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

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

/*
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 !important;
  font-style: italic; }

/*********************
PAGE & SECTION SPECIFIC
*********************/
/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Home Styles

******************************************************************/
/*********************
SEARCH
*********************/
/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Header

******************************************************************/
/*********************
MAIN BANNER (logo area)
*********************/
#main-banner {
  color: #fff; }
  #main-banner .ad-banner {
    padding: 1.25em 0; }

#logo {
  display: inline-block;
  padding: 1.25em 0; }
  #logo img {
    width: 10em;
    height: auto; }

/*********************
GLOBAL HEADER
*********************/
#top-nav .avatar {
  margin-right: 5px; }
#top-nav #main-nav {
  background-color: #001339; }
#top-nav #main-nav > .item {
  font-size: 1em;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer; }
  #top-nav #main-nav > .item:hover .subnav {
    display: block; }
#top-nav #main-nav > .item.selected {
  background-color: #1b3b5b; }
#top-nav #main-nav > a {
  color: #fff; }
  #top-nav #main-nav > a:hover {
    text-decoration: none !important; }
#top-nav .subnav {
  font-size: 0.875em;
  background-color: #dedede; }
  #top-nav .subnav a {
    color: #333333; }
    #top-nav .subnav a:hover {
      color: #4d4d4d; }

/*********************
DIJIT GAME NAV
*********************/
#game-nav {
  background-color: #001339;
  height: 51px; }

.bbm .dijitMenuBar {
  border: 0;
  background-color: transparent; }
  .bbm .dijitMenuBar .dijitMenuItem {
    font-size: 1em;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    padding: 1em; }
.bbm .dijitMenuPassive .dijitMenuItemHover,
.bbm .dijitComboBoxMenu .dijitMenuItemHover,
.bbm .dijitMenuItemSelected {
  background-color: transparent;
  color: #fff;
  background-color: #1b3b5b; }
.bbm .dijitMenuPopup table[role="menu"] {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
  border: 0.5em solid #fff; }
  .bbm .dijitMenuPopup table[role="menu"] td.dijitMenuItemLabel {
    color: #333333 !important;
    text-transform: uppercase;
    padding: 0.5em 0.75em;
    font-size: 0.875em; }
  .bbm .dijitMenuPopup table[role="menu"] tr.dijitMenuItemHover,
  .bbm .dijitMenuPopup table[role="menu"] tr.dijitMenuItemSelected {
    background-color: #dedede; }

@media only screen and (min-width: 768px) {
  	/*********************
    HEADER STYLES
    *********************/
  #top-nav nav {
    margin: 1.15em 0 0;
    width: auto;
    background: none;
    display: block !important; } }
/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Log In Styles

******************************************************************/
/*********************
Log In
*********************/
/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Box Scores

******************************************************************/
/*********************
BOX SCORES
*********************/
#box-scores {
  /*********************
  DGRID
  *********************/ }
  #box-scores .show #widget_fGameMonthListBox {
    width: 10em; }
  #box-scores .show #widget_fGameDayListBox {
    width: 5em; }
  #box-scores .show #widget_fGameNoListBox {
    width: 15em; }
  #box-scores .scores {
    padding: 1em;
    margin-bottom: 1em;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1b4171+0,0f294a+100 */
    background: #275482;
    /* Old browsers */
    background: -moz-linear-gradient(top, #1b4171 0%, #0f294a 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #1b4171 0%, #0f294a 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #1b4171 0%, #0f294a 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1b4171', endColorstr='#0f294a',GradientType=0 );
    /* IE6-9 */ }
    #box-scores .scores .overview {
      color: #fff; }
      #box-scores .scores .overview .simple-score {
        font-size: 2em;
        margin: auto;
        padding: 1em 0; }
      #box-scores .scores .overview .extra {
        color: #ebebeb;
        /* padding: 1em 0; */ }
        #box-scores .scores .overview .extra table {
          width: 75%;
          margin: auto; }
    #box-scores .scores .details {
      background: #ebebeb;
      padding: 1em 2em; }
    #box-scores .scores .dgrid-row-table th {
      color: #666666;
      background: transparent;
      border-bottom: 1px solid #dedede; }
    #box-scores .scores .dgrid-row,
    #box-scores .scores .dgrid-row.dgrid-row-even {
      background: #ebebeb; }
    #box-scores .scores .dgrid-row .dgrid-cell {
      font-size: 0.975em;
      font-weight: 600; }
    #box-scores .scores .field-team {
      width: 38%; }
    #box-scores .scores .field-runs,
    #box-scores .scores .field-totalBases,
    #box-scores .scores .field-runnersOnBase,
    #box-scores .scores .field-totalErrors {
      text-align: center; }
  #box-scores .social .btn {
    font-size: 0.75em; }
  #box-scores .rules {
    font-size: 0.813em; }
    #box-scores .rules li {
      margin-bottom: 1em; }
  #box-scores .field-fullName {
    width: 30%; }
  #box-scores #fScoreCardTable #fScoreCardTable-row-21,
  #box-scores #fScoreCardTable #fScoreCardTable-row-22,
  #box-scores #fScoreCardTable #fScoreCardTable-row-23 {
    font-weight: 700; }
  #box-scores #fScoreCardTable #fScoreCardTable-row-25 {
    background: #275482;
    color: #fff;
    font-size: 1.25em; }
    #box-scores #fScoreCardTable #fScoreCardTable-row-25 .dgrid-cell {
      padding: .5em 0.813em; }
  #box-scores .field-description {
    width: 50%; }
  #box-scores .field-home,
  #box-scores .field-visit {
    text-align: center; }
  #box-scores #fNoGameResultsParagraph {
    background-color: #ebebeb;
    padding: 2em;
    text-align: center; }

@media screen and (min-width: 710px) {
  #box-scores .rules {
    padding: 2em 3em; } }
/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: League Standings

******************************************************************/
/*********************
DGRID - standings table
*********************/
#league-standings {
  margin: -1.5em 0 1.5em; }
  #league-standings h1 {
    margin: 0; }
  #league-standings .dgrid-cell {
    text-align: center; }
  #league-standings .field-teamFullName {
    width: 20%;
    min-width: 11.875em;
    text-align: left; }

/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Headlines Styles

******************************************************************/
/*********************
HEADLINES
*********************/
#headlines .photo-day {
  margin-bottom: 1em; }
  #headlines .photo-day img {
    width: 100% !important;
    height: auto !important; }
#headlines .links a,
#headlines .links span {
  display: inline; }
#headlines .news h2 {
  font-size: 1.75em; }
#headlines .news h3 {
  font-size: 1.5em; }
#headlines .news h4 + h3 {
  margin-top: 1em; }
#headlines .standings h3 {
  margin-top: 0;
  text-transform: uppercase; }
#headlines .matchups {
  font-size: 0.813em; }
  #headlines .matchups h3 {
    margin-top: 0;
    text-transform: uppercase; }
#headlines .field-TeamName {
  width: 60%; }
#headlines .field-WinsLosses,
#headlines .field-Streak {
  text-align: center;
  width: 60px;
  white-space: nowrap; }
#headlines .field-GamesBehind {
  text-align: center;
  width: 40px;
  white-space: nowrap; }

/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Roster Styles

******************************************************************/
/*********************
ROSTER
*********************/
#roster .filter-bar #fTeamListBox,
#roster .filter-bar #fShowStatsListBox {
  width: 16em; }
#roster .hbar {
  margin-bottom: 0.25em; }
#roster .locked-player {
  opacity: 0.65; }
#roster table.player-card td.player-photo {
  width: 45px; }
#roster table.player-card td.player-photo img {
  width: 40px; }
#roster .dgrid-cell {
  vertical-align: top; }
#roster .dgrid-column-0-0-0 {
  width: 40%;
  text-align: left; }
#roster .field-fullName {
  width: 190px; }
  #roster .field-fullName .player-name {
    padding: 0.5em 0; }
#roster .field-sortOnStatus {
  width: 60px; }
#roster .field-sortOnPitchHand {
  width: 40px;
  text-align: center;
  padding-top: 0.45em; }
#roster .field-sortOnWins {
  width: 90px;
  text-align: center;
  padding-top: 0.45em; }
#roster .field-sortOnPosition {
  width: 70px;
  padding-top: 0.45em; }
#roster .field-sortOnKeeperYears {
  width: 50px;
  text-align: center; }
#roster .field-sortOnSalary {
  width: 75px;
  text-align: right; }
#roster .field-stats {
  width: 70px; }
#roster .field-batAvg,
#roster .field-games,
#roster .field-atBats,
#roster .field-hits,
#roster .field-groundedIntoDP,
#roster .field-hitByPitch,
#roster .field-sacrifices {
  text-align: center;
  width: 39px; }
#roster .field-doubles,
#roster .field-triples,
#roster .field-homeRuns,
#roster .field-walks,
#roster .field-stolenBases,
#roster .field-caughtStealing,
#roster .field-errors {
  text-align: center;
  width: 29px; }
#roster .field-era,
#roster .field-gamesStarted,
#roster .field-inningsPitched,
#roster .field-earnedRuns,
#roster .field-strikeOuts {
  text-align: center;
  width: 50px; }
#roster .dgrid-row-table tr:nth-child(2) td {
  padding-top: 0;
  padding-bottom: 0; }

/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Draft Ranking Styles

******************************************************************/
/*********************
DRAFT RANKING
*********************/
#draft-ranking #fSelectPosition {
  width: 18.750em; }
#draft-ranking #fKeptRankingTable {
  margin-bottom: 0;
  border-bottom: 2px solid #999;
  height: auto; }
  #draft-ranking #fKeptRankingTable .kept-player {
    opacity: 0.65; }
#draft-ranking .dgrid-cell,
#draft-ranking .dgrid-header .dgrid-cell {
  text-align: center;
  vertical-align: middle; }
#draft-ranking .dijitTextBox {
  width: 40px;
  vertical-align: middle; }
#draft-ranking .field-ranking {
  width: 75px; }
#draft-ranking .dgrid-column-1,
#draft-ranking .dgrid-header .dgrid-column-1 {
  text-align: left; }

/*********************
DRAFT RESULTS
*********************/
#draft-results .field-pickSortValue {
  width: 10%;
  text-align: center; }
#draft-results .field-positionSortValue {
  width: 10% x;
  text-align: center; }
#draft-results .field-playerSortValue {
  width: 40%; }
#draft-results .field-teamSortValue {
  width: 25%; }
#draft-results .field-salarySortValue {
  width: 15%;
  text-align: center; }

/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Salary Caps Styles

******************************************************************/
/*********************
DRAFT RANKING
*********************/
#salary-caps .dgrid-cell {
  vertical-align: middle;
  padding: 0.5em 0.813em; }
#salary-caps .dgrid-column-0-0-0 {
  width: 20%; }
#salary-caps .dgrid-column-0-0-1 {
  width: 16%;
  text-align: right; }
#salary-caps .field-dollarSign {
  width: 15px;
  padding-right: 3px; }
#salary-caps .field-cap {
  width: 50px;
  padding-left: 0;
  padding-right: 0; }
#salary-caps .field-thousands {
  width: 15px;
  padding-left: 3px; }
#salary-caps .field-actualSpent {
  text-align: right;
  width: 15%; }
#salary-caps .dgrid-footer {
  border: 1px solid #ddd; }
  #salary-caps .dgrid-footer .dgrid-cell {
    border: 0; }
  #salary-caps .dgrid-footer .field-cap {
    width: 140px;
    padding-left: 0;
    padding-right: 0; }
  #salary-caps .dgrid-footer .field-thousands {
    width: 0; }
  #salary-caps .dgrid-footer .field-actualSpent {
    width: 165px !important;
    padding-left: 0; }

/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: BBM Manual / Guide Styles

******************************************************************/
/*********************
BBM MANUAL / GUIDE
*********************/
#guide {
  display: flex;
  flex-flow: row wrap;
  background: #fff; }

#guide-header-div {
  flex: 1 100%;
  padding: 1em;
  background: #0c1a29;
  color: #fff; }
  #guide-header-div .guide-header-graphic,
  #guide-header-div .guide-header-title-div {
    display: inline-block;
    vertical-align: middle; }
  #guide-header-div .guide-header-title-div {
    padding: 0 1.5em; }
  #guide-header-div h1 {
    margin: 1em 0 0;
    font-weight: 600; }

#guide-table-of-contents-div {
  width: 250px;
  background: #ebebeb;
  padding: 1em;
  font-size: 0.813em;
  overflow: auto; }
  #guide-table-of-contents-div ul {
    margin: 0;
    padding: 0.5em 0 0.5em 0.5em; }
  #guide-table-of-contents-div li {
    text-align: left; }
  #guide-table-of-contents-div li.heading {
    font-weight: 700; }
  #guide-table-of-contents-div li > ul {
    font-weight: 500; }

#guide-body {
  padding: 0em 2em 1em;
  background: #fff; }
  #guide-body h3 {
    margin-bottom: 1.25em;
    text-transform: uppercase; }
  #guide-body p {
    font-size: 0.875em; }
  #guide-body ul {
    font-size: 0.875em; }
  #guide-body ol {
    font-size: 0.875em; }
  #guide-body li {
    text-align: left;
    clear: both;
    padding-bottom: 10px;
    margin-left: 20px;
    list-style: circle; }

.guide-header-nav-div {
  color: white;
  padding-bottom: 10px; }

/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Free Agents Styles

******************************************************************/
/*********************
FREE AGENTS
*********************/
#freeAgentsPage {
  /*********************
  FREE AGENTS TABLES
  *********************/ }
  #freeAgentsPage #claimForm {
    background: #ebebeb;
    padding: 1.5em;
    margin: 1em 0 1em; }
    #freeAgentsPage #claimForm .player {
      background: #333333;
      padding: 0.5em 0.75em;
      color: #ebebeb; }
    #freeAgentsPage #claimForm label {
      margin-right: 0.25em; }
    #freeAgentsPage #claimForm h4 {
      margin-top: 1em;
      text-transform: uppercase; }
    #freeAgentsPage #claimForm .fa-user {
      color: #999999;
      padding-right: 0.5em; }
  #freeAgentsPage .cash-bid {
    padding: 1.0em; }
    #freeAgentsPage .cash-bid label {
      display: inline-block; }
    #freeAgentsPage .cash-bid .dijitTextBox {
      display: inline-block;
      width: 5em;
      vertical-align: middle; }
      #freeAgentsPage .cash-bid .dijitTextBox input {
        margin: 0;
        padding: 0.25em; }
  #freeAgentsPage .buttons {
    margin-top: 0.75em;
    padding-top: 0.75em;
    border-top: 1px solid #dedede; }
  #freeAgentsPage .dijitButton {
    padding: 0;
    font-size: 0.813em; }
    #freeAgentsPage .dijitButton .dijitButtonNode {
      padding: 0.625em 0.938em; }
  #freeAgentsPage #claim-release .dijitToggleButton,
  #freeAgentsPage #claim-release .dijitButtonNode {
    height: 100%;
    width: 100%;
    margin: 0; }
  #freeAgentsPage #claim-release .dijitButtonNode {
    background: transparent;
    border: 0;
    display: flex;
    align-items: center; }
  #freeAgentsPage #claim-release .dijitChecked {
    background: #cae2eb; }
  #freeAgentsPage #claim-release .dgrid-input {
    outline: none; }
  #freeAgentsPage .freeAgent-player, #freeAgentsPage .release-player {
    background-color: #cae2eb; }
  #freeAgentsPage .somebody {
    padding-left: 1em;
    padding-top: 0.5em; }
  #freeAgentsPage .dgrid-cell-editing,
  #freeAgentsPage .dgrid-column-0 {
    width: 40px;
    vertical-align: middle; }
  #freeAgentsPage .field-fullName {
    width: 170px; }
  #freeAgentsPage .field-status {
    width: 60px; }
  #freeAgentsPage .field-posApps {
    width: 100px; }
  #freeAgentsPage .field-salary {
    width: 80px;
    font-weight: 700; }
  #freeAgentsPage .field-daysAsFreeAgent {
    width: 50px;
    vertical-align: middle;
    font-weight: 700; }
  #freeAgentsPage td.field-salary,
  #freeAgentsPage td.field-daysAsFreeAgent {
    background: rgba(0, 0, 0, 0.05); }
  #freeAgentsPage .field-avg, #freeAgentsPage .field-batAvg {
    width: 50px; }
  #freeAgentsPage .field-era, #freeAgentsPage .field-gamesStarted, #freeAgentsPage .field-inningsPitched, #freeAgentsPage .field-earnedRuns, #freeAgentsPage .field-strikeOuts {
    text-align: center;
    width: 60px; }
  #freeAgentsPage .field-games, #freeAgentsPage .field-atBats, #freeAgentsPage .field-hits, #freeAgentsPage .field-doubles, #freeAgentsPage .field-triples, #freeAgentsPage .field-homeRuns,
  #freeAgentsPage .field-walks, #freeAgentsPage .field-stolenBases, #freeAgentsPage .field-caughtStealing, #freeAgentsPage .field-errors {
    text-align: center;
    width: 30px; }
  #freeAgentsPage .field-groundedIntoDP, #freeAgentsPage .field-hitByPitch, #freeAgentsPage .field-sacrifices {
    text-align: center;
    width: 40px; }

/*********************
TRADES
*********************/
#trade-players .dijitButton {
  margin: 0 10px 0 10px; }

/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Lineups Styles

******************************************************************/
/*********************
LINEUPS
*********************/
#lineups .table-title {
  display: inline-block;
  vertical-align: middle;
  margin: 0.25em 0; }
  #lineups .table-title.padded {
    margin-bottom: 0.5em; }
#lineups .dijitButton {
  padding: 0;
  font-size: 0.813em; }
  #lineups .dijitButton .dijitButtonNode {
    padding: 0.625em 0.938em; }
#lineups .dgrid-column-0.field-title {
  font-weight: 600;
  text-transform: uppercase; }

/******************************************************************
Site Name: 
Author: Josh Kunin

Stylesheet: Join League Styles

******************************************************************/
/*********************
JOIN LEAGUE
*********************/
#join-league .dijitRadio {
  margin-right: 0.5em; }
#join-league #join-league-choice td {
  vertical-align: top; }
#join-league #join-league-choice td > table > tr > td:first-child {
  font-weight: 600;
  min-width: 12em; }
#join-league .item-title {
  min-width: 7.5em;
  display: inline-block;
  font-weight: 600; }

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

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
/*********************
NAVIGATION STYLES
*********************/
.nav {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-bottom: 0;
  margin: 0;
  /* end .menu li */ }
  .nav .item {
    display: inline-block;
    padding: 1em; }
    .nav .item.active, .nav .item.active:hover {
      background-color: #222 !important;
      color: #fff !important; }
  .navul {
    margin: 0 auto; }
  .nav li a {
    display: block;
    text-decoration: none; }
    .nav li a.active, .nav li a.active:hover {
      background-color: #222 !important;
      color: #fff !important; }
  .nav .divider {
    border-bottom: 1px solid #ccc;
    margin: 0.5em; }

/* end .nav */
/*********************
NAVIGATION BAR
*********************/
.nav-bar {
  background-color: #ebebeb; }

/*********************
FILTER BAR
*********************/
.filter-bar {
  background: #fafafa;
  padding: 0 1em;
  margin-bottom: 1em; }
  .filter-bar label {
    padding-right: 1em;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
    text-transform: uppercase; }
  .filter-bar .dijitTextBox,
  .filter-bar .dijitSelect, .filter-bar .dijitComboBox {
    display: inline-block !important;
    vertical-align: middle;
    vertical-align: -webkit-baseline-middle;
    margin: 0 !important; }

@media screen and (min-width: 710px) {
  .filter-bar label {
    display: inline-block;
    margin: 0; } }
/*********************
NAVIGATION TABS
*********************/
.nav-tabs ul {
  border-bottom: 1px solid #dedede; }
.nav-tabs li {
  margin-right: 0.5em; }
  .nav-tabs li a {
    color: #b3b3b3;
    background-color: #dedede;
    padding: 0.5em 1em;
    display: block;
    border-bottom: none;
    border-radius: 3px 3px 0 0; }
  .nav-tabs li a:hover {
    color: #333333;
    background-color: #dedede; }
  .nav-tabs li:last-child {
    margin-right: 0; }

/*********************
MAIN MENU
*********************/
.main.menu {
  text-align: right; }

.mobile.menu {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1001;
  display: none;
  color: #fff;
  font-size: 0.875em;
  padding: 2em;
  color: #fff;
  font-size: 1.15em; }
  .mobile.menu .close-menu {
    color: #fff; }
  .mobile.menu .item {
    display: block; }
  .mobile.menu a {
    color: #fff; }
    .mobile.menu a:hover {
      color: #275482; }
  .mobile.menu .user {
    color: #999999; }
  .mobile.menu .btn {
    width: 100%;
    margin-top: 0.75em; }
  .mobile.menu hr {
    margin: 1em; }
  .mobile.menu .divider {
    border-bottom: 1px solid #555555; }

/*********************
STEP DOTS
*********************/
.nav-step-dots {
  text-align: center;
  margin-top: 30px; }
  .nav-step-dots ul {
    display: inline; }
  .nav-step-dots li {
    display: inline-block;
    background: #999999;
    height: .5em;
    width: .5em;
    border-radius: 10px;
    margin: 0 0.15em; }
    .nav-step-dots li.current {
      background: #333333; }
  .nav-step-dots .tooltip span {
    width: 140px;
    min-width: 100px;
    right: -65px;
    text-align: center;
    padding: 10px 14px; }
    .nav-step-dots .tooltip span:after {
      border-color: #333333 transparent transparent transparent;
      bottom: -20px;
      right: 60px; }

/*********************
PAGE NAVI STYLES
**********************/
.pagination {
  margin: 0 auto; }

.pagination {
  text-align: center;
  display: inline-block;
  margin-bottom: -5px; }
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    clear: both;
    border-radius: 3px; }
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden; }
  .pagination li + li {
    border-left: 1px solid #ebebeb; }
  .pagination a, .pagination span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block;
    color: #275482; }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #275482;
      color: #fff; }
  .pagination .active a, .pagination .active span {
    cursor: default;
    color: #333333; }
    .pagination .active a:hover, .pagination .active a:focus, .pagination .active span:hover, .pagination .active span:focus {
      background-color: #fff;
      color: #333333; }
  .pagination .disabled span {
    color: #cccccc; }
    .pagination .disabled span:hover, .pagination .disabled span:focus {
      background-color: #fff;
      color: #cccccc; }

/*********************
LEAUGE & TEAM DETAILS
**********************/
#league-team-details {
  background: #ebebeb;
  padding: 0.5em;
  margin: 0 0 2em;
  font-size: 0.875em;
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }
  #league-team-details ul {
    padding: 0;
    margin: 0; }
  #league-team-details li {
    display: inline-block;
    padding: 0 0.5em;
    vertical-align: -webkit-baseline-middle; }
  #league-team-details #fHeaderDateSection {
    display: inline-block; }
  #league-team-details #fHeaderDateLiteral {
    font-weight: 700; }
  #league-team-details #fHeaderSearchForm {
    position: relative;
    width: 15em; }
    #league-team-details #fHeaderSearchForm button {
      position: absolute;
      top: 1px;
      right: 0;
      border-radius: 0;
      padding: 0.625em 0.938em; }
  #league-team-details input[type="text"],
  #league-team-details .dijitPlaceHolder {
    padding: 5px 6px;
    margin: 0; }
  #league-team-details .manual-link {
    float: right;
    padding-top: 0.2em; }

#league-team-details + .page-content {
  margin-top: 2.5em; }

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

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.help.message,
.warning.message, .tools.message, .info.message, .error.message, .success.message {
  padding: 0.75em 1em;
  border: 1px solid; }

.help.message,
.warning.message {
  border-color: #fff086;
  background: #fff39f;
  color: #393200; }
  .help.message i, .help.message .label,
  .warning.message i,
  .warning.message .label {
    color: #b9a100; }

.tools.message {
  border-color: #B7D8E4;
  background: #B7D8E4; }
  .tools.message i, .tools.message .label {
    color: #244f5f; }

.info.message {
  border-color: none;
  background: #275482;
  color: #fff; }
  .info.message i {
    color: #0f2134; }
  .info.message a {
    color: #fff !important;
    text-decoration: underline; }

.error.message {
  border-color: #df5455;
  background: #df5455;
  color: #fff; }
  .error.message i {
    color: #db3f40; }

.success.message {
  border: none;
  background: #8FD88F;
  color: #fff; }
  .success.message i {
    color: #43be43; }
  .success.message a {
    color: #fff !important;
    text-decoration: underline; }

/*********************
ALERT BOXES
*********************/
[class^="alert-"], [class*=" alert-"] {
  padding: 16px 40px;
  margin-bottom: 16px; }
  [class^="alert-"] h2, [class*=" alert-"] h2 {
    margin-top: 0.5em; }
  [class^="alert-"] > i, [class*=" alert-"] > i {
    margin-left: -25px;
    margin-right: 5px; }

.alert-green {
  background-color: #8FD88F;
  color: #fff; }
  .alert-green i {
    color: #43be43; }

.alert-small {
  padding: 6px 10px 6px 34px;
  margin: 0;
  font-size: 75%;
  background: none;
  border: none; }

.alert-success.alert-small {
  color: #43be43; }

/*********************
GLOBAL ALERT
*********************/
.global-message .message {
  /* margin: 1em 0 0; */ }

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

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
input[type=button],
input[type=submit], .dijitButton .dijitButtonNode,
.red-btn, .blue-btn, .green-btn, .gray-btn, .link-btn, [class^="btn"].error, [class*="btn"].error, .facebook-btn, .google-btn,
.diamond-btn, .twitter-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1em;
  color: #fff;
  text-align: center;
  padding: 0.875em 1em;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  input[type=button]:hover,
  input[type=submit]:hover, .dijitButton .dijitButtonNode:hover,
  .red-btn:hover, .blue-btn:hover, .green-btn:hover, .gray-btn:hover, .link-btn:hover, [class^="btn"].error:hover, [class*="btn"].error:hover, .facebook-btn:hover, .google-btn:hover,
  .diamond-btn:hover, .twitter-btn:hover, input[type=button]:focus,
  input[type=submit]:focus, .dijitButton .dijitButtonNode:focus,
  .red-btn:focus, .blue-btn:focus, .green-btn:focus, .gray-btn:focus, .link-btn:focus, [class^="btn"].error:focus, [class*="btn"].error:focus, .facebook-btn:focus, .google-btn:focus,
  .diamond-btn:focus, .twitter-btn:focus {
    color: #fff;
    text-decoration: none; }
  input[type=button]:active,
  input[type=submit]:active, .dijitButton .dijitButtonNode:active,
  .red-btn:active, .blue-btn:active, .green-btn:active, .gray-btn:active, .link-btn:active, [class^="btn"].error:active, [class*="btn"].error:active, .facebook-btn:active, .google-btn:active,
  .diamond-btn:active, .twitter-btn:active {
    top: 1px; }
/*********************
DEFAULT FORM BUTTONS
*********************/
input[type=button],
input[type=submit] {
  font-size: 1.15em;
  background-color: #275482;
  color: #fff !important; }
  input[type=button]:hover, input[type=button]:focus,
  input[type=submit]:hover,
  input[type=submit]:focus {
    background-color: #224a72; }
  input[type=button]:active,
  input[type=submit]:active {
    background-color: #21476e; }
  input[type=button].is-disabled,
  input[type=submit].is-disabled {
    background-color: #336da9; }
  input[type=button].gform_previous_button,
  input[type=submit].gform_previous_button {
    background-color: #999999; }
    input[type=button].gform_previous_button:hover, input[type=button].gform_previous_button:focus,
    input[type=submit].gform_previous_button:hover,
    input[type=submit].gform_previous_button:focus {
      background-color: #8f8f8f; }
    input[type=button].gform_previous_button:active,
    input[type=submit].gform_previous_button:active {
      background-color: #8c8c8c; }

/*********************
COLOR BUTTONS
*********************/
.dijitButton {
  margin: 0;
  /* width: 100%; */ }

.dijitButton .dijitButtonNode,
.red-btn {
  background: #c32425;
  color: #fff !important;
  /* width: 100%; */ }
  .dijitButton .dijitButtonNode:hover, .dijitButton .dijitButtonNode:focus,
  .red-btn:hover,
  .red-btn:focus {
    background: #ad2021; }
  .dijitButton .dijitButtonNode:active,
  .red-btn:active {
    background: #a91f20; }
  .dijitButton .dijitButtonNode.is-disabled,
  .red-btn.is-disabled {
    background: #db3f40; }

.blue-btn {
  background-color: #275482;
  color: #fff !important; }
  .blue-btn:hover, .blue-btn:focus {
    background-color: #224a72; }
  .blue-btn:active {
    background-color: #21476e; }
  .blue-btn.is-disabled {
    background-color: #336da9; }

.green-btn {
  background-color: #8FD88F !important;
  color: #fff !important; }
  .green-btn:hover, .green-btn:focus {
    background-color: #80d380 !important; }
  .green-btn:active {
    background-color: #7cd17c !important; }
  .green-btn.is-disabled {
    background-color: #b5e5b5; }

.gray-btn {
  background: #dedede;
  color: #8c8c8c !important; }
  .gray-btn:hover, .gray-btn:focus {
    background-color: #d6d6d6; }
  .gray-btn:active {
    background-color: #d1d1d1; }
  .gray-btn.is-disabled {
    background-color: #ebebeb; }

.link-btn {
  background-color: transparent;
  color: #2d6196 !important; }
  .link-btn:hover, .link-btn:focus {
    color: #26517e;
    background-color: #ebebeb; }

.reject-btn {
  color: #c32425 !important; }
  .reject-btn:hover, .reject-btn:focus {
    color: #981c1d !important; }

/*********************
PLAIN BUTTONS
*********************/
.plain-btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #8c8c8c !important;
  background-color: transparent;
  text-align: center;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 10px 15px;
  border: 1px solid #cccccc;
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out; }
  .plain-btn:hover, .plain-btn:focus {
    color: gray;
    background-color: #e6e6e6;
    text-decoration: none; }
  .plain-btn:active {
    top: 1px; }

/*********************
ERROR BUTTONS
*********************/
[class^="btn"].error, [class*="btn"].error {
  background-color: transparent !important;
  color: #c32425 !important;
  border: 1px solid #c32425 !important;
  border-radius: 3px; }
  [class^="btn"].error:hover, [class^="btn"].error:focus, [class*="btn"].error:hover, [class*="btn"].error:focus {
    color: #ad2021;
    border: 1px solid #ad2021;
    background-color: #e6e6e6; }
  [class^="btn"].error:active, [class*="btn"].error:active {
    color: #a91f20; }
  [class^="btn"].error.is-disabled, [class*="btn"].error.is-disabled {
    color: #db3f40; }

/*********************
SOCIAL BUTTONS
*********************/
.social-btn {
  font-size: 0.875em;
  padding: 14px 10px !important; }

.facebook-btn i.fa, .google-btn i.fa,
.diamond-btn i.fa, .twitter-btn i.fa, .icon-btn i.fa {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding-right: 1em;
  margin-right: 0.5em; }

.facebook-btn {
  background-color: #3b5998;
  color: #fff !important; }
  .facebook-btn:hover, .facebook-btn:focus {
    background-color: #344e86; }
  .facebook-btn:active {
    background-color: #324c82; }
  .facebook-btn.is-disabled {
    background-color: #4c70ba; }

.google-btn,
.diamond-btn {
  background-color: #dd4b39;
  color: #fff !important; }
  .google-btn:hover, .google-btn:focus,
  .diamond-btn:hover,
  .diamond-btn:focus {
    background-color: #d73925; }
  .google-btn:active,
  .diamond-btn:active {
    background-color: #d33724; }
  .google-btn.is-disabled,
  .diamond-btn.is-disabled {
    background-color: #e47365; }

.twitter-btn {
  background-color: #55acee;
  color: #fff !important; }
  .twitter-btn:hover, .twitter-btn:focus {
    background-color: #309aea; }
  .twitter-btn:active {
    background-color: #1d91e8; }
  .twitter-btn.is-disabled {
    background-color: #83c3f3; }

/*********************
ALT SIZED BUTTONS
*********************/
.button-full, .btn-full, .full-btn {
  width: 100%; }

.small-btn {
  padding: 0;
  font-size: .75em;
  border-radius: 2px; }
  .small-btn .dijitButtonNode {
    padding: 0.313em 0.625em; }

.medium-btn {
  padding: 0;
  font-size: 0.813em; }
  .medium-btn .dijitButtonNode {
    padding: 0.625em 0.938em; }

.large-btn {
  font-size: 1.15em; }

/*********************
LINK DOWN/SCROLL TYPE BUTTONS
*********************/
.scroll-btn {
  margin: 80px 0 -50px; }
  .scroll-btn a {
    background: #fff;
    color: #333333 !important;
    border-radius: 80px;
    padding: 20px;
    display: inline-block;
    line-height: 1.25;
    opacity: .75; }
    .scroll-btn a:hover {
      opacity: 1;
      color: #333333; }

/*********************
BUTTON ROW
*********************/
.button-row [class^="btn"], .button-row [class*="btn"] {
  margin-bottom: 10px; }
.button-row.left {
  text-align: left; }
.button-row.right {
  text-align: right; }
.button-row .dijitButton {
  margin: 0;
  width: auto; }

/*********************
TAGS
*********************/
.tag, a:visited.tag {
  display: inline-block;
  border: 1px solid #cccccc;
  color: #999999;
  border-radius: 2px;
  padding: 2px 4px;
  margin-right: 0.5em;
  font-size: 0.75em; }

a:hover.tag {
  color: #ebebeb !important;
  background: #666666;
  border: 1px solid #666666; }

.tag.blue {
  border: none;
  color: #fff;
  background: #275482; }

/*********************
TOGGLE SWITCH
*********************/
.toggle-switch {
  display: inline-block;
  background: #bfbfbf;
  overflow: hidden; }
  .toggle-switch.on .off-btn {
    background: #bfbfbf !important;
    color: #f2f2f2 !important; }
    .toggle-switch.on .off-btn:hover {
      background: #a3a3a3 !important; }
  .toggle-switch.on .on-btn {
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5); }
  .toggle-switch .btn {
    text-transform: uppercase;
    float: left;
    margin: 2px; }

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

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
form {
  margin-left: 0;
  padding: 0;
  font-weight: normal;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none; }

.input.group {
  position: relative; }
  .input.group textarea {
    padding-right: 70px; }
  .input.group input[type=text] {
    padding-right: 25px; }
  .input.group > span {
    position: absolute;
    top: 10px;
    right: 10px; }
  .input.group span.feedback {
    font-size: 0.875em; }
  .input.group.icon-left input[type=text] {
    padding-left: 50px; }
  .input.group.icon-left .input-icon {
    left: 0; }
  .input.group .input-icon {
    position: absolute;
    top: 0;
    bottom: 0; }
  .input.group .btn.inline {
    position: absolute;
    top: 0;
    right: 0; }

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea {
  display: block;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #333333;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 2px;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"].large,
  input[type="password"].large,
  input[type="datetime"].large,
  input[type="datetime-local"].large,
  input[type="date"].large,
  input[type="month"].large,
  input[type="time"].large,
  input[type="week"].large,
  input[type="number"].large,
  input[type="email"].large,
  input[type="url"].large,
  input[type="search"].large,
  input[type="tel"].large,
  input[type="color"].large,
  select.large,
  textarea.large {
    padding: 1.13em; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid {
    color: #333333;
    border-color: #e36a6a;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    /* background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=); */
    outline-color: #e36a6a; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid {
    color: #8FD88F;
    border-color: #8FD88F;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #8FD88F; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled {
    cursor: not-allowed;
    background-color: #e7e7e7;
    color: #666666; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active {
      background-color: #275482; }
  input[type="text"].small-input,
  input[type="password"].small-input,
  input[type="datetime"].small-input,
  input[type="datetime-local"].small-input,
  input[type="date"].small-input,
  input[type="month"].small-input,
  input[type="time"].small-input,
  input[type="week"].small-input,
  input[type="number"].small-input,
  input[type="email"].small-input,
  input[type="url"].small-input,
  input[type="search"].small-input,
  input[type="tel"].small-input,
  input[type="color"].small-input,
  select.small-input,
  textarea.small-input {
    padding: 5px 8px;
    font-size: .875em; }

input[type="password"] {
  letter-spacing: 0.2em; }

textarea {
  max-width: 100%;
  line-height: 1.25em;
  padding: 8px 12px;
  min-height: 120px; }
  textarea.small-textarea {
    height: 75px;
    min-height: 75px;
    min-height: 50px; }

select {
  -webkit-appearance: none;
  /* 1 */
  /* -moz-appearance:window; */
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 95% center; }

@-moz-document url-prefix() {
  select {
    background-image: none; } }
.dollar-input {
  position: relative; }
  .dollar-input span.dollar-sign {
    position: absolute;
    top: 10px;
    left: 12px;
    right: auto; }
  .dollar-input input {
    padding-left: 22px; }

.url-input {
  position: relative; }
  .url-input div {
    position: absolute;
    top: 12px;
    left: 12px; }
  .url-input input {
    padding-left: 162px; }

label {
  margin: 0 0 .5em;
  display: block;
  font-weight: bold; }

input + hr {
  margin-top: 21px; }

::-webkit-input-placeholder {
  color: gray;
  letter-spacing: 0em; }

:-moz-placeholder {
  color: gray;
  letter-spacing: 0em; }

/* Firefox 18- */
::-moz-placeholder {
  color: gray;
  letter-spacing: 0em; }

/* Firefox 19+ */
:-ms-input-placeholder {
  color: gray;
  letter-spacing: 0em; }

/*********************
ERROR TEXT
*********************/
/*
.error {
  color: $alert-red-text;
  font-size: 0.875em;
}
*/
p.error, div.error, a.error {
  color: #c32425;
  margin: 0 0 .5em;
  font-size: 0.875em; }

span.error {
  color: #c32425;
  font-size: 0.75em; }

label.error,
.fa.error {
  color: #c32425; }

a.error:hover {
  color: #c32425;
  text-decoration: underline; }

span.success {
  color: #8FD88F;
  font-size: 0.75em; }

.error-text {
  color: #c32425; }

.form-error {
  color: #c32425; }

input + .form-error,
textarea + .form-error,
select + .form-error {
  margin: -0.5em 0 1em;
  display: block;
  font-size: 0.875em; }

/*********************
INPUT SET
*********************/
.input-set {
  margin: 1em 0; }
  .input-set p {
    margin: 0 0 0.5em; }
  .input-set .note {
    margin: -5px 0px 10px 0px;
    display: block;
    font-size: 0.875em; }
  .input-set .dijitSelect {
    max-width: 18.750em; }

/*********************
INLINE FORMS
*********************/
.inline-form input[type="button"],
.inline-form button {
  margin-right: 3px; }
.inline-form label {
  font-weight: 600; }
.inline-form label + span {
  display: inline-block;
  margin: 0 0 15px; }
@media only screen and (min-width: 768px) {
  .inline-form label {
    display: inline-block;
    vertical-align: middle;
    min-width: 10em; }
  .inline-form input[type="text"],
  .inline-form input[type="password"],
  .inline-form input[type="datetime"],
  .inline-form input[type="datetime-local"],
  .inline-form input[type="date"],
  .inline-form input[type="month"],
  .inline-form input[type="time"],
  .inline-form input[type="week"],
  .inline-form input[type="number"],
  .inline-form input[type="email"],
  .inline-form input[type="url"],
  .inline-form input[type="search"],
  .inline-form input[type="tel"],
  .inline-form input[type="color"],
  .inline-form select,
  .inline-form textarea,
  .inline-form .input-group {
    display: inline-block;
    vertical-align: middle; }
  .inline-form .input-group textarea,
  .inline-form .input-group input[type="text"],
  .inline-form .input-group input[type="number"] {
    width: 100%; } }

/*********************
DIJIT FORMS
*********************/
.bbm .dijitTextBox.dijitComboBox,
.bbm .dijitSelect {
  margin-bottom: 0.875em; }
.bbm .dijitTextBox .dijitButtonNode,
.bbm .dijitSelect .dijitButtonNode {
  background: #E6E6E6;
  border-top: 1px solid #CECCCC;
  border-right: 1px solid #CECCCC;
  border-bottom: 1px solid #CECCCC;
  border-left: 0;
  border-radius: 0 4px 4px 0;
  padding: 0.15em 0.3em; }
.bbm .dijitTextBox .dijitArrowButtonContainer,
.bbm .dijitSelect .dijitArrowButtonContainer {
  border-width: 1px !important;
  width: 1.50em; }
.bbm .dijitTextBox .dijitArrowButtonInner,
.bbm .dijitSelect .dijitArrowButtonInner {
  border: 0;
  margin: 0.35em 0; }
.bbm .dijitTextBox.dijitComboBox .dijitInputInner,
.bbm .dijitSelect.dijitComboBox .dijitInputInner {
  border-radius: 4px 0 0 4px;
  padding: 0.5em 0.750em;
  margin: 0; }
.bbm .dijitTextBox .dijitButtonContents,
.bbm .dijitSelect .dijitButtonContents {
  padding: 0.5em 0.750em;
  margin-bottom: 14px;
  font-size: 1em;
  color: #333333;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #fff;
  border: 1px solid #dedede;
  border-radius: 4px 0 0 4px;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
.bbm .dijitTextArea {
  border: 1px solid #dedede; }
.bbm .dijitSelectHover {
  border-color: #CECCCC; }

/*********************
MISC
*********************/
span.gwt-RadioButton {
  display: inline-block; }

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

Stylesheet: Boxes

Boxes of all sorts that are reusable throught the site.

******************************************************************/
/*********************
BOX TYPES
*********************/
.iconbox {
  margin-bottom: 50px;
  text-align: center;
  position: relative; }
  .iconbox .iconbox_content {
    padding: 0px 20px; }
  .iconbox .iconbox_icon {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    -moz-border-radius: 50%;
    /* or 30px */
    border-radius: 50%;
    /* or 30px */
    background-color: #8FD88F;
    color: #fff;
    text-align: center;
    font-size: 2em; }
  .iconbox header h3 {
    text-align: center; }

.mediabox {
  text-align: center; }

/*********************
CONTENT BOXES
*********************/
.alt-content-box {
  padding: 3em;
  background-color: #ebebeb;
  margin-bottom: 1em; }

.landing-content-box {
  padding: 3em;
  background-color: #275482;
  margin-bottom: 1em;
  color: #fff; }

.landing-guide-box {
  padding: 3em;
  background-color: #ebebeb;
  margin-bottom: 1em; }

/*********************
THUMBNAILS
*********************/
.thumbnail {
  width: 100%;
  border: 1px solid #ebebeb; }
  .thumbnail .caption {
    padding: 0.5em; }

/*********************
THUMBNAILS
*********************/
.video-box, .image-box {
  text-align: center;
  position: relative;
  display: inline-flex;
  cursor: pointer;
  overflow: hidden; }
  .video-box .box-overlay-title, .image-box .box-overlay-title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 1em;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center; }
  .video-box .fa, .image-box .fa {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    left: 50%;
    margin-left: -.45em;
    font-size: 3em;
    opacity: .75;
    color: #fff; }
  .video-box:hover .fa, .image-box:hover .fa {
    opacity: 1; }

/*********************
MODAL
*********************/
.box-modal .hentry {
  background-color: #fff;
  padding: 50px 25px;
  margin: 50px auto;
  position: relative; }
  .box-modal .hentry .close_modal {
    position: absolute !important;
    color: #333333 !important;
    top: 15px;
    right: 25px;
    z-index: 999;
    cursor: pointer; }

/*********************
SUMMARY
*********************/
.summary {
  background: #43477c;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #43477c 0%, #000000 55%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #43477c), color-stop(55%, #000000));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(-45deg, #43477c 0%, #000000 55%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(-45deg, #43477c 0%, #000000 55%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(-45deg, #43477c 0%, #000000 55%);
  /* IE10+ */
  background: linear-gradient(135deg, #43477c 0%, #000000 55%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#43477c', endColorstr='#000000',GradientType=1 );
  /* IE6-9 fallback on horizontal gradient */
  padding: 20px;
  color: #fff; }
  .summary .summary-data {
    padding: 10px; }
    .summary .summary-data .value {
      font-size: 2em; }
    .summary .summary-data label {
      margin: 0; }

/*********************
HIGHLIGHT BOX
*********************/
.highlight-box {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  padding: 25px; }

/*********************
PROMO BOX
*********************/
.promo-box {
  border-radius: 4px;
  padding: 1.0em;
  background: #275482;
  color: #fff; }
  .promo-box a {
    color: #fff; }
  .promo-box h3 {
    margin: 0;
    font-size: 1.35em;
    text-transform: uppercase; }
  .promo-box p {
    font-family: "danielregular", cursive; }

/*********************
CIRCLES
*********************/
.gray-circle > div, .green-circle > div {
  width: 100%;
  border-radius: 50%;
  text-align: center;
  padding: 50% 0;
  line-height: 0;
  position: relative; }

.gray-circle {
  display: inline-block; }
  .gray-circle > div {
    background: #999999; }

.green-circle {
  display: inline-block; }
  .green-circle > div {
    background: #8FD88F;
    color: #fff; }

.small-circle {
  width: 3.750em; }

.medium-circle {
  width: 6.250em; }

.full-circle {
  width: 100%; }

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

Stylesheet: Cards



******************************************************************/
/*********************
CARD
*********************/
.card:hover {
  box-shadow: 0 0 3px #c9c9c9; }
.card .image {
  display: block;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: rgba(0, 0, 0, 0.05); }
  .card .image img {
    width: 100%;
    height: auto;
    border: none; }
.card .content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background: 0 0;
  margin: 0;
  padding: 1em;
  box-shadow: none;
  font-size: 1em;
  border: none;
  border-radius: 0; }
  .card .content .header a {
    color: #333333;
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; }
    .card .content .header a:hover {
      color: #4d4d4d; }
  .card .content .meta {
    font-size: .75em;
    color: gray;
    font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin-top: 0.5em; }
  .card .content .description {
    font-size: .875em;
    margin-top: .5em;
    color: gray; }
  .card .content.extra {
    max-width: 100%;
    min-height: 0 !important;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    position: static;
    background: 0 0;
    width: auto;
    margin: 0;
    padding: .75em 1em;
    top: 0;
    left: 0;
    color: rgba(0, 0, 0, 0.4);
    box-shadow: none;
    -webkit-transition: color .2s ease;
    transition: color .2s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.05); }
    .card .content.extra a {
      color: gray;
      font-size: .875em; }
      .card .content.extra a:hover {
        color: #8f8f8f; }

/*********************
CARDS
*********************/
.cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .cards > .card {
    margin-bottom: 1em;
    float: none;
    width: 100%;
    max-width: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 0;
    background: #fff;
    padding: 0;
    z-index: ''; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-2cards > .card {
    margin-right: 2%;
    width: 48.95%; }
  .m-2cards > .card:nth-child(even) {
    margin-right: 0; } }
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-2cards > .card {
    margin-right: 2%;
    width: 48.95%; }
  .t-2cards > .card:nth-child(even) {
    margin-right: 0; }

  .t-3cards > .card {
    margin-right: 2%;
    width: 31.95%; }
  .t-3cards > .card:nth-child(3n+3) {
    margin-right: 0; } }
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-2cards > .card {
    margin-right: 2%;
    width: 48.95%; }
  .d-2cards > .card:nth-child(even) {
    margin-right: 0; }

  .d-3cards > .card {
    margin-right: 2%;
    width: 31.95%; }
  .d-3cards > .card:nth-child(3n+3) {
    margin-right: 0; }

  .d-4cards > .card {
    margin-right: 2%;
    width: 23.45%; }
  .d-4cards > .card:nth-child(4n+4) {
    margin-right: 0; } }
/******************************************************************
Site Name:
Author:

Stylesheet: Avatars

******************************************************************/
/*********************
AVATAR
*********************/
.avatar {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  font-size: .75em;
  color: #fff; }
  .avatar div {
    overflow: hidden;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    background-color: #999999;
    background-position: center center;
    background-size: auto 105%; }
  .avatar img {
    width: 101%;
    height: auto; }

.avatar-xs div {
  border-radius: 100px;
  width: 40px;
  height: 40px; }

.avatar-xl div {
  overflow: hidden;
  border-radius: 120px;
  width: 10em;
  height: 10em;
  background-color: #8FD88F;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
  background-position: center center;
  background-size: auto 105%; }
  .avatar-xl div:hover, .avatar-xl div:focus {
    background-color: #80d380 !important; }
  .avatar-xl div:active {
    background-color: #7cd17c !important; }
.avatar-xl img {
  width: 101%;
  height: auto;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
.avatar-xl span {
  display: block;
  margin-top: 28px;
  font-size: 1.75em; }
.avatar-xl .loading {
  font-size: 3.5em;
  margin-top: 35px; }

label.avatar {
  cursor: pointer; }

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

Stylesheet: Tables

Making tables with divs

******************************************************************/
/*********************
TABLES
*********************/
table {
  width: 100%; }
  table caption {
    margin: 0 0 7px;
    font-size: 0.75em;
    color: #dedede;
    text-transform: uppercase;
    letter-spacing: 1px; }

.table,
.dgrid-row-table {
  margin: 0;
  width: 100%;
  display: table;
  position: relative; }
  @media screen and (max-width: 580px) {
    .table.mobilized,
    .dgrid-row-table.mobilized {
      display: block; }
      .table.mobilized thead, .table.mobilized tbody, .table.mobilized tfoot,
      .dgrid-row-table.mobilized thead,
      .dgrid-row-table.mobilized tbody,
      .dgrid-row-table.mobilized tfoot {
        display: block; } }
  @media screen and (max-width: 580px) {
    .table.mobilized .row,
    .dgrid-row-table.mobilized .row {
      padding: 8px 0;
      display: block; } }
  @media screen and (max-width: 580px) {
    .table.mobilized .cell,
    .dgrid-row-table.mobilized .cell {
      padding: 3px 12px;
      display: block; } }
  @media screen and (max-width: 580px) {
    .table.mobilized .cell-nopad,
    .dgrid-row-table.mobilized .cell-nopad {
      padding: 6px 12px 6px 0; } }
  @media screen and (max-width: 580px) {
    .table.mobilized .tdhead,
    .dgrid-row-table.mobilized .tdhead {
      width: auto; } }
  .table th,
  .dgrid-row-table th {
    text-align: left;
    background: #222222;
    color: #ebebeb;
    padding: 0.45em 0.813em; }
  .table td,
  .dgrid-row-table td {
    padding: 0.45em 0.813em; }
  .table .thead,
  .dgrid-row-table .thead {
    padding: 6px 12px; }
  .table hr,
  .dgrid-row-table hr {
    margin: 20px 0; }
  .table .row,
  .dgrid-row-table .row {
    display: table-row;
    background: #e4e4e4; }
    .table .row:nth-of-type(even),
    .dgrid-row-table .row:nth-of-type(even) {
      background: #f1f1f1; }
    .table .row.header,
    .dgrid-row-table .row.header {
      color: #fff;
      background: #ea6153; }
    .table .row.green,
    .dgrid-row-table .row.green {
      background: #7cd17c; }
    .table .row.blue,
    .dgrid-row-table .row.blue {
      background: #275482; }
    .table .row.gray,
    .dgrid-row-table .row.gray {
      background: #666666; }
  .table input,
  .table .dijitSelect,
  .table .dijitTextBox.dijitComboBox,
  .dgrid-row-table input,
  .dgrid-row-table .dijitSelect,
  .dgrid-row-table .dijitTextBox.dijitComboBox {
    margin-bottom: 0; }
  .table .cell,
  .dgrid-row-table .cell {
    padding: 12px;
    display: table-cell; }
  .table .cell-nopad,
  .dgrid-row-table .cell-nopad {
    padding: 0 12px 0 0; }
  .table .tdhead,
  .dgrid-row-table .tdhead {
    font-size: 0.875em;
    width: 22%; }

.table tr {
  border-bottom: 1px solid #ebebeb; }
  .table tr:last-child {
    border: none; }

/*********************
DGRID
*********************/
.dgrid {
  border: 0;
  margin-bottom: 1em;
  height: auto; }
  .dgrid .dgrid-scroller {
    position: relative;
    overflow: visible;
    overflow: auto; }

.table-header, #roster tr.dgrid-spacer-row + tr, .dgrid-spacer-row + tr {
  background: #275482 !important;
  color: #fff;
  text-align: left !important;
  text-transform: uppercase;
  border-bottom: 3px solid #fff !important; }
  .table-header th, #roster tr.dgrid-spacer-row + tr th, .dgrid-spacer-row + tr th, .table-header tr, #roster tr.dgrid-spacer-row + tr tr, .dgrid-spacer-row + tr tr {
    background: transparent !important;
    text-align: left; }

.dgrid-header {
  font-size: 0.875em; }
  .dgrid-header .dgrid-cell {
    border: 0;
    max-width: 100%;
    white-space: nowrap; }
  .dgrid-header .ui-icon {
    background-image: url("../../javascript/dgrid/css/images/ui-icons_ffffff_256x240.png"); }

.dgrid-row {
  font-size: 0.813em;
  background: #fbfbfb;
  border-right: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  border-left: 1px solid #e3e3e3; }
  .dgrid-row.dgrid-row-even {
    background: #ededed; }
  .dgrid-row .dgrid-cell {
    border: 0;
    padding: 0.813em;
    vertical-align: middle; }

.dgrid-spacer-row th {
  background: #fff; }

.dgrid-input {
  margin-bottom: 0 !important; }

/*********************
INVALID - 
when a user needs to take an action
because the current selection is invalid 
*********************/
.dgrid-row.invalid {
  background-color: #fff39f !important; }

/*********************
NO OPTION - 
when a user needs to take an action
because the current selection is invalid 
*********************/
.dgrid-row.no-option {
  background-color: #e36a6a !important;
  color: #fff; }

/*********************
PLAYER CARD
*********************/
.player-card {
  margin: -0.813em; }

table.player-card {
  /* background: #ededed; */
  width: 210px; }
  table.player-card td.player-photo {
    padding: 0;
    width: 50px;
    height: 60px;
    padding-right: 5px; }
    table.player-card td.player-photo img {
      width: 40px;
      height: auto;
      margin-bottom: -3px; }
  table.player-card td.player-name {
    padding: 0; }
    table.player-card td.player-name a {
      font-weight: 700; }
  table.player-card div.player-stats {
    font-size: 0.75em;
    margin-top: 0.25em;
    width: 150px; }
    table.player-card div.player-stats table {
      width: auto; }
    table.player-card div.player-stats td {
      padding: 0 0.75em 0 0; }

/*********************
AVATAR
*********************/
.dojoDndAvatar .dgrid-column-0 {
  width: 50px; }

.dojoDndAvatarItem {
  height: 60px; }
  .dojoDndAvatarItem .player-card {
    margin: -0.2em; }
  .dojoDndAvatarItem .dijitTextBox {
    width: 40px;
    vertical-align: middle; }

/*********************
MEMBER HOME
*********************/
#member-home .field-description {
  width: 210px; }
#member-home .field-leagueName {
  width: 200px; }
#member-home .field-teamFullName {
  width: 200px; }
#member-home .field-playedAt,
#member-home .field-paidThrough,
#member-home .field-score,
#member-home .field-renew {
  width: 90px;
  text-align: center; }

/*********************
LEAGUE LEADERS
*********************/
#league-leaders td {
  border-bottom: 1px solid #f2f2f2; }
#league-leaders td:last-child {
  border-bottom: none; }
#league-leaders td.tdr {
  background: #ebebeb;
  text-align: right; }
#league-leaders .dgrid-column-0-0-0 {
  width: 250px; }

/*********************
PROMOTE PLAYERS
*********************/
#promote-players span.dijitReset.dijitInline.dijitButtonNode {
  padding: 0.2em .8em; }
#promote-players .dgrid-column-0-0-0 {
  width: 50px;
  text-align: center; }
#promote-players .dgrid-column-0-0-1 {
  width: 150px; }
#promote-players .dgrid-column-0-0-2 {
  width: 55px; }
#promote-players .field-originalSalary {
  width: 80px;
  text-align: center; }
#promote-players .dgrid-column-0-0-3 {
  width: 75px; }

/*********************
RELIEF PRIORITIES
*********************/
#relief-priorities .field-ranking {
  width: 45px;
  text-align: center; }
#relief-priorities .field-longReliefAppearances, #relief-priorities .field-shortReliefAppearances, #relief-priorities .field-totalAppearances {
  text-align: center;
  width: 90px; }
#relief-priorities .field-remaining {
  width: 60px;
  text-align: center;
  font-size: 0.75em;
  white-space: normal; }
#relief-priorities .field-reliever {
  width: 150px; }

/*********************
RESERVE RANKINGS
*********************/
#reserve-rankings span.dijitButton {
  padding: 0 0 0 .5em; }
#reserve-rankings .field-ranking {
  width: 10%;
  text-align: center; }
#reserve-rankings .field-fullName {
  width: 39%; }
#reserve-rankings .field-remaining {
  width: 15%;
  text-align: center;
  font-size: 0.75em;
  white-space: normal; }
#reserve-rankings .field-startingAppearances,
#reserve-rankings .field-reserveAppearances {
  text-align: center;
  white-space: normal;
  width: 18%; }

/*********************
KEEP PLAYERS
*********************/
#keep-players td {
  vertical-align: middle; }
#keep-players .field-keep {
  width: 4em;
  vertical-align: middle;
  text-align: center; }
#keep-players .dgrid-column-0-0-1 table {
  width: auto; }
#keep-players .dgrid-column-0-0-1 td {
  padding: 0 0.25em; }
#keep-players .dgrid-column-0-0-2 {
  text-align: center; }
#keep-players .dgrid-column-0-0-4 {
  text-align: right; }

/*********************
LEAGUE DIRECTORY
*********************/
#league-directory .field-teamName {
  width: 25%; }
#league-directory .field-stadiumName {
  width: 15%; }
#league-directory .field-memberName {
  width: 15%; }

/*********************
PLAYER SEARCH
*********************/
#player-search td {
  vertical-align: middle; }
#player-search #fPlayersTable {
  max-width: 640px; }
#player-search .dgrid-column-0 {
  width: 30%;
  min-width: 200px; }
#player-search .dgrid-column-1 {
  text-align: right;
  width: 20%; }
#player-search .dgrid-column-2 {
  text-align: center;
  width: 40%; }

/*********************
TEAM SETTINGS
*********************/
#team-settings .table tbody tr td:first-child {
  width: 10em; }

/*********************
TRANSACTION LOGS
*********************/
#transaction-logs .field-player {
  width: 140px; }
#transaction-logs .field-tranDate {
  width: 60px; }
#transaction-logs .field-sortOnCash {
  width: 80px; }
#transaction-logs .field-teamName {
  width: 80px; }
#transaction-logs .field-type {
  width: 150px; }
#transaction-logs .field-moreInfo {
  width: 300px; }

/*********************
LINEUPS
*********************/
#lineups .field-position, #lineups .field-title {
  width: 40%; }

/*********************
LEAGUE LINEUPS
*********************/
#league-lineups .field-position {
  text-align: center;
  width: 70px; }

/*********************
SCHEDULE
*********************/
#schedule .field-gameNo, #schedule .field-winOrLose, #schedule .field-score {
  text-align: center; }
#schedule .field-opponent {
  width: 120px; }
#schedule .field-score {
  width: 80px; }

/*********************
LEAGUE STATISTICS
*********************/
#league-statistics .dgrid-cell {
  width: 40px;
  text-align: center; }
#league-statistics .field-teamFullName {
  width: 150px;
  text-align: left; }
#league-statistics .field-cashBalance {
  width: 70px; }

/*********************
PITCHING ROTATION
*********************/
#pitching-rotation .field-showGameNo {
  width: 8%; }
#pitching-rotation .field-gameNo {
  width: 8%; }
#pitching-rotation .field-date {
  width: 7%; }
#pitching-rotation .field-myPitcher {
  width: 30%; }
#pitching-rotation .field-myRecord {
  width: 10%; }
#pitching-rotation .field-teamName {
  width: 15%; }
#pitching-rotation .field-theirPitcher {
  width: 25%; }
#pitching-rotation .field-theirRecord {
  width: 10%; }

/*********************
TRADE PLAYERS
*********************/
#trade-players .field-proposal-get, #trade-players .field-proposal-give {
  text-align: center;
  width: 37px; }
#trade-players .field-keep {
  text-align: center;
  width: 45px; }
#trade-players .field-release {
  text-align: center;
  width: 58px; }
#trade-players .field-player {
  width: 180px; }
#trade-players .field-salary {
  width: 60px; }
#trade-players .field-posApps {
  width: 85px; }

/******************************************************************
Site Name: Tipglo
Author: Josh Kunin

Stylesheet: Icon Styles

******************************************************************/
/*********************
COLOR SOCIAL ICONS
*********************/
.fa-google-plus-square {
  color: #dd4b39; }
  .fa-google-plus-square:hover {
    color: #da3b28; }

.fa-facebook-square {
  color: #3b5998; }
  .fa-facebook-square:hover {
    color: #355089; }

.fa-twitter-square {
  color: #55acee; }
  .fa-twitter-square:hover {
    color: #42a3ec; }

.fa-linkedin-square {
  color: #007bb6; }
  .fa-linkedin-square:hover {
    color: #006da2; }

/*********************
ICONS IN CIRCLES
*********************/
.circle-icon {
  padding: 22px;
  border-radius: 100px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  background-color: #8FD88F;
  color: #fff;
  border-color: #8FD88F; }
  .circle-icon + h1, .circle-icon + h2 {
    margin-top: 20px; }

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

Stylesheet: Tooltip Styles

******************************************************************/
/*********************
TOOLTIPS
*********************/
.tooltip, .tooltip-sm-left {
  position: relative; }
  .tooltip span, .tooltip-sm-left span {
    display: none;
    position: absolute;
    bottom: 100%;
    right: 5px;
    font-size: 11px !important;
    text-align: left;
    padding: 0.75em;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #fff;
    background: #222;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    min-width: 60px;
    max-width: 180px; }
    .tooltip span:after, .tooltip-sm-left span:after {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-width: 10px;
      border-style: solid;
      border-color: transparent #222222 transparent transparent;
      bottom: -10px;
      right: 0; }
  .tooltip:hover span, .tooltip-sm-left:hover span {
    display: block; }
  .wide.tooltip span, .wide.tooltip-sm-left span {
    width: 300px; }

.tooltip-sm-left span {
  min-width: 100px;
  left: 15px;
  text-align: center;
  padding: 10px 14px;
  font-size: 11px !important; }
  .tooltip-sm-left span:after {
    border-color: transparent transparent transparent #333333;
    bottom: -10px;
    left: 0; }

label .tooltip span {
  font-size: 0.950em !important;
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-close:active {
  top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100); }

.mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }

.mfp-arrow:after, .mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }

.mfp-arrow:before, .mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }

.mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
  border-right: 17px solid white;
  margin-left: 31px; }

.mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }

.mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
  border-left: 17px solid white;
  margin-left: 39px; }

.mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
  border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-figure figure {
  margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }

.mfp-ie7 .mfp-container {
  padding: 0; }

.mfp-ie7 .mfp-content {
  padding-top: 44px; }

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }

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

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
*********************/
body {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 80%;
  line-height: 1.25;
  color: #333333;
  /*	background: $dark-blue url("../images/bg-lights.jpg") center -40px no-repeat; */
  text-rendering: optimizeLegibility; }

/* backgrounds */
.day {
  background: #0c1a29 url("../images/bg-background.jpg") center -40px repeat-y; }

.sunset {
  background: #0c1a29 url("../images/bg-lights.jpg") center -40px repeat-y; }

.night {
  background: #0c1a29 url("../images/bg-stadium-fade.jpg") center -40px no-repeat; }

.winter {
  background: #0c1a29 url("../images/bg-snow.jpg") center -40px; }

strong, b, .strong {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700; }

hr {
  border: 0;
  border-bottom: 1px solid #dedede; }

hr.small {
  margin: 1em 0; }

fieldset {
  border: 1px solid #dedede;
  margin-bottom: 1em; }

dt {
  font-family: "Georgia", Times New Roman, serif; }

dd {
  margin: .25em 0 1.5em;
  font-size: .85em; }
  dd p:first-child {
    margin-top: 0; }

ol {
  counter-reset: item; }
  ol li {
    display: block;
    position: relative;
    margin: 0 0 0.25em; }
    ol li:before {
      content: counters(item,".") ".";
      counter-increment: item;
      position: absolute;
      margin-right: 100%;
      right: 10px;
      /* space between number and text */ }

p {
  line-height: 1.5em;
  margin: 0.65em 0; }

small, .small {
  font-size: 0.875em !important; }

.xsmall {
  font-size: 0.75em !important; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap, .global-message .holder {
  width: 96%;
  margin: 0 auto; }
  .wrap.small-pad, .global-message .small-pad.holder {
    padding: 1em 0; }
  .wrap.normal-pad, .global-message .normal-pad.holder, .wrap.medium-pad, .global-message .medium-pad.holder {
    padding: 3em 0; }
  .wrap.large-pad, .global-message .large-pad.holder {
    padding: 4em 0; }

.hide {
  display: none; }

.center {
  text-align: center; }

.ralign,
.right {
  text-align: right; }

.lalign,
.left {
  text-align: left; }

.valign {
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%); }

.no-scroll {
  overflow: hidden; }

.pull-right {
  float: right; }

.bordered {
  border: 1px solid #dedede; }

.shadow {
  box-shadow: 0 0 3px #dedede; }

ul.list {
  padding: 0 0 0 20px;
  list-style-type: disc; }

.list li .status {
  color: #999999; }

.date {
  font-size: 0.875em;
  margin-top: -0.5em; }

.kept-player,
.locked-player,
.dgrid-selected,
.dgrid-selected.dojoDndItemOver {
  background-color: #B7D8E4 !important; }

.dojoDndItemOver {
  background-color: #cae2eb; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #2d6196;
  cursor: pointer;
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #224a72; }
  a:link, a:visited:link {
    /*
    this highlights links on iPhones/iPads.
    works like the :hover selector for mobile devices.
    */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

a#scroll-to-top {
  bottom: 60px; }

/******************************************************************
H1, H2, H3, H4, H5, HEADER STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-rendering: optimizelegibility;
  font-weight: 700;
  /* removing text decoration from all headline links */ }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  font-size: 1.75em;
  margin: 0 0 .5em;
  font-weight: 400;
  text-transform: uppercase; }

form h1 {
  font-size: 1.25em; }

h1.page-header {
  margin: 0; }
  h1.page-header + p {
    margin: 0.5em 0; }

h2, .h2 {
  font-size: 1.25em;
  line-height: 1.333em;
  margin: 0 0 0.375em; }

h3, .h3 {
  font-size: 1.125em;
  margin: 0.5em 0 0.375em; }

h4, .h4 {
  font-size: 1.1em;
  font-weight: 700; }

h5, .h5 {
  font-size: 0.846em;
  line-height: 2.09em;
  margin: 1em 0; }

.hbar, .header-bar {
  background: #275482;
  color: #fff;
  text-transform: uppercase;
  padding: 0.45em 0.875em;
  margin: 0 0 0.5em; }

/*********************
POSTS & CONTENT STYLES
*********************/
#page {
  margin: 0 auto 3em;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75); }

#content {
  background: #fff;
  margin: 0;
  padding: 2em;
  position: relative; }
  #content > #error-msg {
    margin: 2.2em 0 0; }
  #content #success-msg {
    margin: 2.2em 0 0; }

.alt-content {
  background: #ebebeb; }

.tags {
  margin: 0; }

aside {
  border-bottom: 1px solid #ebebeb;
  border-top: 1px solid #ebebeb;
  padding: 30px 0;
  margin: 60px 0; }
  aside:last-child {
    margin-bottom: 0; }

.post header {
  margin-bottom: 1em; }

.dark-body #content {
  background: #222;
  color: #fff;
  height: 80vh;
  min-height: 600px; }
.dark-body hr {
  border-bottom: 1px solid #444; }

.error-page .h1.quote {
  font-size: 3em; }
  .error-page .h1.quote span {
    display: block;
    font-size: 0.875em; }
.error-page .h2 {
  color: gray; }
.error-page.hentry {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  margin: 0 0 2.2em; }
  .sidebar nav {
    background: #fff; }
    .sidebar nav a:hover {
      background-color: #ebebeb; }
    .sidebar nav li a {
      padding: 0.50em 0.75em;
      font-size: 0.875em; }
    .sidebar nav li.selected a {
      color: #333333;
      font-family: "Georgia", Times New Roman, serif;
      background-color: #ebebeb; }

.no-widgets {
  background-color: #fff;
  padding: 1.5em;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-bottom: 1.5em; }

/*********************
BANNERS
*********************/
.footer-ad-banner {
  background: #fff;
  padding: 1em 0 2em;
  text-align: center; }
  .footer-ad-banner > div {
    display: inline-block; }

/*********************
FOOTER STYLES
*********************/
#footer {
  background: #EAEAEC;
  padding: 2em;
  color: #999999; }
  #footer .nav .item {
    vertical-align: middle;
    font-size: 0.875em; }
  #footer p {
    margin-left: 0.75em; }
  #footer .small-logo {
    opacity: 0.5; }

.copyright {
  color: gray;
  margin: 1em 0;
  padding: 0 0.75em; }
  .copyright a {
    color: gray;
    display: inline-block;
    margin: 0.5em; }

/*********************
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:
  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.
  
  ******************************************************************/
  /*********************
  GENERAL STYLES
  *********************/
  body {
    font-size: 100%; }

  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap.narrow, .global-message .narrow.holder {
    max-width: 520px; }

  .wrap.medium, .global-message .medium.holder {
    max-width: 532px; }

  .box-modal .hentry {
    padding: 50px;
    /* @include vertical-align; */ }

  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  /* .menu is clearfixed inside mixins.scss */
  .menu {
    /* end .menu ul */ }
    .menu ul {
      /* end .menu ul li */
      /* highlight current page */
      /* end current highlighters */ }
      .menu ul li {
        /*
        plan your menus and drop-downs wisely.
        */ }
        .menu ul li a {
          /*
          you can use hover styles here even though this size
          has the possibility of being a mobile device.
          */ }

  /* end .menu */
  /*********************
  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 */
  /*********************
  DASHBOARD
  *********************/
  /*********************
  FOOTER STYLES
  *********************/
  /* end .footer-links */ }
/*********************
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:
  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
  *********************/
  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap, .global-message .holder {
    width: 760px; }
    .wrap.large-pad, .global-message .large-pad.holder {
      padding: 6em 0; }

  .wrap.narrow, .global-message .narrow.holder {
    max-width: 520px; }

  .wrap.medium, .global-message .medium.holder {
    max-width: 728px; }

  body.admin-bar {
    margin-top: -32px; }

  body.logged-in.admin-bar {
    margin-top: 0; }

  .list li .edit {
    visibility: hidden; }
  .list li:hover .edit {
    visibility: visible; }

  /*********************
  NAVIGATION STYLES
  *********************/
  .nav {
    border: 0;
    /* end .menu ul li */ }
    .nav li {
      float: left; }
    .nav li, .nav .item {
      position: relative;
      /* showing sub-menus */ }
      .nav li .submenu,
      .nav li .children, .nav .item .submenu,
      .nav .item .children {
        /* margin-top: 0.65em; */
        border: 1px solid #dedede;
        position: absolute;
        top: 100%;
        padding: 0.5em;
        visibility: hidden;
        z-index: 8999;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);
        background: #fff;
        min-width: 7em;
        color: #333333 !important;
        			/*
        
        			&:after, &:before {
              	bottom: 100%;
              	left: 50%;
              	border: solid transparent;
              	content: " ";
              	height: 0;
              	width: 0;
              	position: absolute;
              	pointer-events: none;
              }
              
              &:after {
              	border-color: rgba(255, 255, 255, 0);
              	border-bottom-color: #ffffff;
              	border-width: 8px;
              	margin-left: -8px;
              }
              &:before {
              	border-color: rgba(219, 219, 219, 0);
              	border-bottom-color: $meta-gray;
              	border-width: 9px;
              	margin-left: -9px;
              }
              */ }
        .nav li .submenu li,
        .nav li .children li, .nav .item .submenu li,
        .nav .item .children li {
          float: none; }
        .nav li .submenu .item,
        .nav li .children .item, .nav .item .submenu .item,
        .nav .item .children .item {
          text-align: left;
          font-size: 0.875em;
          display: block;
          padding: 0.5em 0.75em; }
        .nav li .submenu a,
        .nav li .children a, .nav .item .submenu a,
        .nav .item .children a {
          color: #333333; }
          .nav li .submenu a:hover, .nav li .submenu a:focus,
          .nav li .children a:hover,
          .nav li .children a:focus, .nav .item .submenu a:hover, .nav .item .submenu a:focus,
          .nav .item .children a:hover,
          .nav .item .children a:focus {
            background: #ebebeb; }
      .nav li:hover > .submenu, .nav .item:hover > .submenu {
        visibility: visible; }

  /* end .nav */
  .nav-bar li a:hover, .nav-bar li a:focus {
    background: #d1d1d1; }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  .dashboard #main {
    padding: 40px; }

  .hentry footer {
    padding: 1em 0 0; }

  /* end .hentry */
  /*********************
  SIDEBARS & ASIDES
  *********************/
  .sidebar {
    margin: 2.2em 0; }

  .widgettitle {
    border-bottom: 2px solid #444;
    margin-bottom: 0.75em; }

  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */ }
    .widget ul li ul {
      margin-top: 0.75em;
      padding-left: 1em; }

  /*********************
  DASHBOARD
  *********************/
  .media-thumbnail {
    width: 23%; }

  /*********************
  FOOTER STYLES
  *********************/
  #footer article {
    padding-right: 3em;
    font-size: 0.875em; } }
/*********************
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:
  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, .global-message .holder {
    width: 1040px; }

  .wrap.narrow, .global-message .narrow.holder {
    max-width: 520px; }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  .iconbox {
    margin-bottom: 0; }
    .iconbox .iconbox_content {
      min-height: 160px; }

  /*********************
  SHOW LIST
  *********************/
  .join-list {
    margin: 0 0 0 1em; } }
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
/*********************
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: 
  Author: 
  
  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:
  Author:
  
  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.
  
  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  /*
    a, a:visited {
      color: #444 !important;
      text-decoration: underline;
  
      // show links on printed pages
      &:after {
        content: " (" attr(href) ")";
      }
  
      // show title too
      abbr[title]:after {
        content: " (" attr(title) ")";
      }
    }
  
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
      content: "";
    }
  */
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  .rules,
  #main-banner,
  #top-nav,
  #footer,
  nav {
    display: none; } }
/*********************
IE
We've got a special stylesheet just for IE. Yes, IE!
Can you believe it's still a pain in the arse?!
*********************/
/******************************************************************
 Only for IE browsers
*******************************************************************/
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  /*********************
  FORMS
  *********************/
  /* use the default select arrow */
  select {
    background-image: none; }

  /* make password letter spacing normal */
  input[type="password"] {
    letter-spacing: 0; }

  /* less padding so the input text 
  appears in the correct spot */
  .url-input input {
    padding-left: 150px; } }
/* eof @media */

/*# sourceMappingURL=app.css.map */
