/*
Author: Nathan Hoeller
Description: ARFS Main Style Sheet

*/
/*--------------------------------------------------------------
>>> COLOR GUIDE:
----------------------------------------------------------------
MWR Blue - #0078C1
Yellow - #FEDA00
Orange-Yellow (Community) - #F8AD31
Orange (Sports & Fitness)- #D5622B
Green (Dining)- #85C445
Blue (Child & Youth Services) - #008ECE
Green-Blue (Leisure) - #5F9F82
Purple (Venue/Equipment Rental) - #844484
Cool Gray (dark) - #555
Cool Gray (light) - #E6E7E9
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
        5.3 - Breadcrumbs
        5.4 - SubPage Links
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Header
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
        10.2 - Index and Archives
	10.3 - Asides
        10.4 - Image Attachments
	10.5 - Comments
        10.6 - Author Box
11.0 - Infinite scroll
12.0 - Media
13.0 - Footer
14.0 - Program Finder
15.0 - FYI Page
16.0 - Event Page
17.0 - Program Page
        17.1 Program List Page
        17.2 Program Single Page
        17.3 Pointes West
18.0 - Survey Settings
19.0 - Apps Page
20.0 - Slideshow Page
21.0 - Hashtag Pull Page
22.0 - Request Pages
00.0 - Print Styles
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
        background: #333;
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
        border: 1px solid #ccc;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

a:focus img {
    outline: 3px dotted #0078C1;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
    font-size: 14px;
    font-size: 1.4rem;
    /*font-family: Gill, Helvetica, sans-serif;*/
    /*font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;*/
    font-family: sans-serif;
    line-height: 1.5;
    color: #555;
}

h1, h2, h3, h4, h5, h6 {
    clear: right;
    font-weight: 700;
    /*font-family: Gill, Helvetica, sans-serif;*/
    font-family: inherit;
    color: #555;
    -ms-word-break: break-word;
    word-break: break-word;
}

p { margin-bottom: 1.5em; }

b, strong { font-weight: bold; }

dfn, cite, em, i { font-style: italic; }

/*address { margin: 0 0 1.5em; }*/

pre {
    max-width: 100%;
    padding: 1.6em;
    margin-bottom: 2em!important;
    overflow: auto;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1.6;
    background: #eee;
}

code, kbd, tt, var { font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace; }

abbr, acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark, ins {
    text-decoration: none;
    background: #fff9c0;
}

sup, sub {
    position: relative;
    height: 0;
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
}

sup { bottom: 1ex; }

sub { top: .5ex; }

small {
    font-size: 75%;
}

.small-light {font-size: 75%; opacity:.5;}

big { font-size: 125%; }

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
    height: 1px;
    margin-bottom: 1.5em;
    background-color: #ccc;
    border: 0;
}

ul, ol { margin: 0 0 1.5em 3em; }

ul { list-style: disc; }

ol { list-style: decimal; }

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt { font-weight: bold; }

dd { margin: 0 1.5em 1.5em; }

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

figure { margin: 0; }

table {
    width: 100%;
    margin: 0 0 1.5em;
}

.noBorder {
    border: none;
}

ul.inline-list {
    margin: 0;
    list-style: none;
}
.inline-list li {
    display: inline;
    padding-left: 10px;
}
.inline-list li:first-child {
    padding-left: 0px;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
    vertical-align: baseline; /* Improves appearance and consistency in all browsers */
    *vertical-align: middle; /* Improves appearance and consistency in IE6/IE7 */
    margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
    font-size: 100%; /* Corrects font size not being inherited in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    padding: 1em 2em;
    font-size: 12px;
    font-size: 1.2rem;
    /*font-family: Gill, Helvetica, sans-serif;*/
    font-family: inherit;
    text-transform: uppercase;
    line-height: 1.5;
    color: hsl(0, 0%, 100%);
    background: #0078C1;
    border: none;
    border-radius: 3px;
    cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
    -webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #D5622B;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    background: #D5622B;
}

button.skinny,
input[type="submit"].skinny {
    padding: 6px 9px;
    font-weight: bold;
    font-size: 11px;
    width: auto;
}

.redBtn,
input[type="submit"].redBtn {
    background-color: #AD0000;
}
.redBtn:hover,
input[type="submit"].redBtn:hover {
    background-color: #D5622B;
}

.lightGrayBtn,
input[type="submit"].lightGrayBtn {
    background-color: #eee;
    color: #555;
}
.lightGrayBtn:hover,
input[type="submit"].lightGrayBtn:hover {
    background-color: #D5622B;
    color: #fff;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0; /* Addresses excess padding in IE8/9 */
	width: auto;
}

input[type="search"] {
    -webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
    width: 100%;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
    padding: 0;
    border: 0;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea,
select {
    padding: 8px;
    /*font-family: Gill, Helvetica, sans-serif;*/
    font-family: inherit;
    color: #666;
    border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
textarea:focus {
    color: #333;
}

textarea {
    width: 100%;
    vertical-align: top; /* Improves readability and alignment in all browsers */
    overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
}

/* .tightForm Styles */
.tightForm input[type="text"],
.tightForm input[type="email"],
.tightForm input[type="tel"],
.tightForm input[type="url"],
.tightForm input[type="password"],
.tightForm input[type="search"] {
    padding: 0 8px;
    height: 30px;
}
.tightForm select, .tightForm input[type="number"] {
    padding: 0 0 0 5px;
    height: 30px;
}
.tightForm td {
    padding: 5px 0;
}
.tightForm .wpcf7-radio .wpcf7-list-item {
    display: inline-block;
}
.supportingField td {
    background: #eee;
    padding: 10px;
    margin-bottom: 2.5em;
}

.standard-table {
    border: 0px none;

}
.standard-table input,
.standard-table select,
.standard-table textarea {
    margin: 5px 0;
}

.mwr-table input,
.mwr-table select,
.mwr-table textarea {
    width: 100%;
}

@media screen and (max-width:399px) {
    input,
    select {
        width: 100%;
    }
}

/* ----- Responsive iFrame */
.responsive-iframe-container {
    position: relative;
    padding-bottom: 56.25%;
    /*padding-top: 30px;*/
    height: 0;
    overflow: hidden;
}

.responsive-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a, a:visited {
    color: #0078C1;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    color: #D5622B;
    /*text-decoration: underline;*/
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
    /*font-family: Gill, Helvetica, sans-serif;*/
    font-family: inherit;
    text-transform: uppercase;
    float: right;
    margin-right: 50px;
    margin-top: 63px;
    position: relative;
}

.main-navigation ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.main-navigation li {
    position: relative;
    float: left;
}

.main-navigation a {
    display: block;
    padding: .43em .7em;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.3em;
    color: white;
    color: hsl(0, 0%, 100%);
}

.main-navigation ul ul {
    position: absolute;
    /*left: 0;*/
    z-index: 99999;
    display: none;
    float: left;
    padding: 0;
    right: 0px;
    left: unset;
}

.main-navigation ul ul ul {
    top: 0;
    left: 100%;
}

.main-navigation ul ul a { width: 200px; }

.main-navigation ul ul li {
    background: rgba(0, 0, 0, .8);
}

.main-navigation li:hover > a,
.main-navigation li > a:focus {
    color: #ffb71b;
}

.main-navigation li.menu-item-has-children:hover > a,
.main-navigation li.menu-item-has-children > a:focus {
    background: rgba(0, 0, 0, .8);
}

.main-navigation ul ul :hover > a { }

.main-navigation ul ul a:hover,
.main-navigation ul ul a:focus {
    background: rgba(0, 0, 0, .3);
}

.main-navigation ul li:hover > ul { display: block; }

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a:hover,
.main-navigation .current-menu-item > a:hover,
.main-navigation .current_page_item > a:focus,
.main-navigation .current-menu-item > a:focus {
    /*color: #313131;
    color: hsl(0, 0%, 19%);
    background: white;*/
}

.main-navigation .current_page_ancestor {

}

.main-navigation ul ul .current_page_parent,
.main-navigation .current_page_parent .current_page_item > a {
    color: #fff;
    color: hsl(0, 0%, 100%);
  /*  background: #313131;*/
}

/* Logged In Styles */
.loginHeader {
    color:#fff;
    position:absolute;
    top:10px;
    right:10px;
}
.loginHeader span {
    color:#ffb71b;
    font-weight:bold;
}
.loginHeader a {
    text-decoration: none;
    font-weight:bold;
    color: #fff;
}
.loginHeader a:hover {
    text-decoration: underline;
    color: #fff;
}

@media screen and (max-width: 840px) {
    .loginHeader {
        position:relative;
        text-align: center;
        top:0;
        right:0;
    }
}


.hide { display: none; }

.hide.open { display: block; }

/* Small menu */
.menu-toggle {
    display: none;
    cursor: pointer;
}

@media screen and (max-width: 840px) {
    .menu-toggle {
        display: inline-block;
        font-weight: normal;
        font-size: 20px;
        font-size: 2rem;
        text-decoration: none;
        line-height: 3.75em;
        color: white;
        border-top: 2px solid #FFB71B;
        width: 90%;
        text-align: center;
        margin: 0 5%;
    }

    .menu-toggle a:hover,
    .menu-toggle a:focus {
        color: #ffb71b;
    }

    .main-navigation {
        margin: 0;
        float: none;
    }

    .main-navigation a {
        font-size: 20px;
        font-size: 2rem;
    }

    .main-navigation .hide {
        display: none!important;
    }
    .main-navigation.toggled .nav-menu,
    .main-navigation.toggled .hide {
        display: block!important;
    }

    .main-navigation ul {
        display: none;
        padding-left: 0;
    }

    .main-navigation .search-toggle {
        display: none;
    }

    .main-navigation li {
        float: none;
        background: #005f84;
    }

    .main-navigation li a { /*padding: 1.3em 2em;*/
        text-align: center;
        /*background: #005f84;*/
        border-top: 1px solid rgba(0, 0, 0, .5);
    }

    .main-navigation li li {
        background: #005f84;
    }

    .main-navigation li li a {
        padding-left: 0em;
        background: rgba(0, 0, 0, .5);
    }

    .main-navigation li li li a { padding-left: 0em; }

    .main-navigation li:hover > a,
    .main-navigation li > a:focus {
        color: #ffb71b;
        background: rgba(0, 0, 0, .4);
    }

    .main-navigation ul ul,
    .main-navigation ul ul ul {
        position: relative;
        top: inherit;
        right: 0;
        display: block;
        float: none;
        background: none;
    }

    .main-navigation ul ul li {
        background: rgba(0, 0, 0, .4);
    }

    .main-navigation ul ul a { width: 100%; }

    .main-navigation ul a:hover,
    .main-navigation ul a:focus {
        color: #ffb71b;
        background: rgba(0, 0, 0, .4);
    }

    .main-navigation ul ul a:hover,
    .main-navigation ul ul a:focus{
        color: #ffb71b;
        background: rgba(0, 0, 0, .7);
    }

    .main-navigation .current_page_ancestor { background: inherit; }

    .main-navigation ul ul .current_page_parent {
        color: inherit;
        background: inherit;
    }

    .main-navigation .current_page_item > a,
    .main-navigation .current_page_item > a:hover,
    .main-navigation .current_page_item li:hover,
    .main-navigation .current_page_item > a:focus,
    .main-navigation .current_page_item li:focus,
    .main-navigation .current_page_parent .current_page_item > a  {
        /*color: #fff;
        color: hsl(0, 0%, 100%);
        background: #4d4d4d;
        background: hsl(0, 0%, 30%);*/
    }

    .search-box-wrapper {
        width: auto;
        float: none;
        margin-right: 0;
        position: relative;
        top: 0;
        right: 0;
    }

    .search-box .search-field {
        border-top: 1px solid rgba(0, 0, 0, .2);
    }

} /* End responsive menu */


/*--------------------------------------------------------------
5.3 Breadcrumbs
--------------------------------------------------------------*/
#breadcrumbs {
    padding: 10px 20px;
    background: #E6E7E9;
    border-bottom: 1px solid #555;
    margin-bottom: 0;
}
.breadcrumb_last {
    color: #999;
}

/*--------------------------------------------------------------
5.4 SubPage Links
--------------------------------------------------------------*/
#subpages {
    list-style: none;
    padding: 10px 20px;
    margin: 0;
    background: #7f7f7f;
}

#subpages li {
    float: left;
    font-weight: bold;
}

#subpages a {
    color: #fff;
}

#subpages a:hover,
#subpages a:active,
#subpages a:focus {
    color: #F8AD31;
    text-decoration: none;
}

#subpages li:after {
    content: '|';
    color: #F8AD31;
    padding: 0 8px;
}

#subpages li:last-child:after {
    content: '';
    padding: 0;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright {
    display: inline;
    float: right;
    margin-bottom: 1em;
    margin-left: 1.5em;
}

.aligncenter {
    display: block;
    margin: 0 auto;
    clear: both;
}

/* Alignment responsive */
@media screen and (min-width: 1320px) {
    .alignleft { margin-left: -174px; }
}

/*@media screen and (min-width: 1820px) {
    .alignright { margin-right: -160px; }
} Conflict with Form "Required" section floating too far*/

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before, .clear:after,
.entry-content:before, .entry-content:after,
.comment-content:before, .comment-content:after,
.site-header:before, .site-header:after,
.site-content:before, .site-content:after,
.site-footer:before, .site-footer:after,
.questionBox:before, .questionBox:after {
    display: table;
    content: '';
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.questionBox:after { clear: both; }

/*--------------------------------------------------------------
9.0 Header
--------------------------------------------------------------*/

.mwrlogo {
    background-image: url('images/mwrlogo-small.png');
    background-size: 85px 85px;
    width: 85px;
    height: 85px;
    margin: 10px 10px 10px 20px;
    float: left;
}

.headerlogo {
    float: left;
}

.headerlogo h1 {
    font-size: 375%;
    color: white;
    float: left;
    line-height: 165px;
}

.headerlogo h1 span {
    color: #ffb71b;
}

.site-header {
    background: #0078C1;
    background: url('images/header-background.jpg') #0078C1 no-repeat top center;
    background-size: cover;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0px 3px 3px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         0px 3px 3px 0px rgba(50, 50, 50, 0.75);
    position: relative;
    z-index: 2;
}

/* Desktop Header Graphics */
@media (min-width: 841px) {
    .mwrlogo {
        background-image: url('images/mwrlogo.png');
        background-size: 145px 145px;
        width: 145px;
        height: 145px;
        margin: 10px 20px;
    }
}

/* Retina Mobile Header Graphics */
@media  (-webkit-min-device-pixel-ratio: 2),
        (min-resolution: 192dpi) {
    .mwrlogo {
        background-image: url('images/mwrlogo-small2x.png');
        background-size: 85px 85px;
        background-repeat: no-repeat;
        margin: 10px 10px 10px 20px;
        width: 85px;
        height: 85px;
    }
    .site-header {
        background: url('images/header-background2x.jpg') #0078C1 no-repeat top center;
        background-size: cover;
    }
}

/* Retina Desktop Header Graphics */
@media  (-webkit-min-device-pixel-ratio: 2) and (min-width: 841px),
        (min-resolution: 192dpi) and (min-width: 841px) {
    .mwrlogo {
        background-image: url('images/mwrlogo2x.png');
        background-size: 145px 145px;
        width: 145px;
        height: 145px;
        margin: 10px 20px;
    }
}


/* Header responsive */
@media  (max-width: 975px) and
        (min-width: 841px),
        (max-width: 420px){
    .headerlogo h1 {
        line-height: 49px;
        margin-top: 32px;
    }

    .headerlogo h1 span {
        display: block;
    }
}

@media (max-width: 840px) {
    .headerlogo {
        float: none;
        width: 378px;
        margin: 0 auto;
    }

    .headerlogo h1 {
        font-size: 250%;
        line-height: 100px;
    }
}

@media (max-width: 420px) {
    .headerlogo {
        width: 277px;
    }

    .headerlogo h1 {
        line-height: 32px;
        margin-top: 18px
    }
}

.mwrcolorbar {
    width: auto;
    height: 15px;
    background-color: white;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(50, 50, 50, 0.75);
    -moz-box-shadow:    0px 3px 3px 0px rgba(50, 50, 50, 0.75);
    box-shadow:         0px 3px 3px 0px rgba(50, 50, 50, 0.75);
    position: relative;
    z-index: 1;
}

.mwrcolorbar div {
    width: 25%;
    height: 15px;
    float: left;
}

.site-header button {
	background: #fff;
	color: #0078C1;
}

.site-header button:hover {
	background: #D5622B;
	color: #fff;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
    margin: 2em 0;
    /*font-family: Gill, Helvetica, sans-serif;*/
    font-family: inherit;
    font-size: 14px;
    font-size: 1.4rem;
}
.widget .entry-title {
    margin: 0;
    font-weight: normal;
    font-size: 1.5rem;
}

.widget-title {
    margin-bottom: 1em;
    font-size: 20px;
    font-size: 2.0rem;
    border-bottom: 2px solid #555;
}

.widget a {

}

.widget a:hover,
.widget a:focus,
.widget a:active {
    color: #D5622B;
}

.widget ul,
.widget ol {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.widget li { padding: 1em 0 0; }

.widget li ul,
.widget li ol { margin-top: 0; }

.widget li li { margin-left: 1.5em; }

/* Make sure select elements fit in widgets */
.widget select { max-width: 100%; }


/* Footer Link Settings */

.site-footer a:hover {
	text-decoration: underline;
}

.site-info .menu {
	margin: 0 0 10px;
	list-style: none;
}
@media screen and (min-width: 600px) {

	.site-info .menu li {
		display: inline-block;
	}
	.site-info .menu li:after {
		content: "|";
		padding: 0 10px;
	}
	.site-info .menu li:last-child:after {
		content: "";
		padding: 0;
	}
}


/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/

.hentry { margin: 0 0 1.5em; }

.posted-on .updated { display: none; }

.full-width {
    width: 100%;
}

.spacedList li {
    margin-bottom: 20px;
}

ul.narrowList {
    margin: 0;
    list-style: none;
}

.column-a {
    width: 50%;
    padding-right: 20px;
    float: left;
}
.column-b {
    width: 50%;
    padding-left: 20px;
    float: right;
}
@media screen and (max-width: 680px) {
    .column-a {
        width: auto;
        padding-right: 0px;
        float: none;
    }
    .column-b {
        width: auto;
        padding-left: 0px;
        float: none;
    }
    .column-a ul {
        margin-bottom: 0;
    }
}

.redMessage {
    padding: 10px 30px;
    text-align: center;
    border: 1px solid red;
    color: red;
    border-radius: 6px;
    background-color: rgba(255,0,0,.2);
}

.greenMessage {
    padding: 10px 30px;
    text-align: center;
    border: 1px solid #008C00;
    color: #008C00;
    border-radius: 6px;
    background-color: rgba(0,140,0,.2);
}
.yellowMessage {
    padding: 10px 30px;
    text-align: center;
    border: 1px solid #E1E100;
    border-radius: 6px;
    background-color: rgba(225,225,0,.2);
}

.scrollBox {
    overflow-y: scroll;
    overflow-x: hidden;
    height:400px;
    border: 1px solid #555;
    padding: 10px;
    -moz-box-shadow: inset 1px 3px 3px #999;
    -webkit-box-shadow: inset 1px 3px 3px #999;
    box-shadow: inset 1px 3px 3px #999;
    border-radius: 15px;
}
.simpleScrollBox {
    overflow-y: scroll;
    overflow-x: hidden;
    height:400px;
    padding: 10px;
    -moz-box-shadow: inset 1px 3px 3px #999;
    -webkit-box-shadow: inset 1px 3px 3px #999;
    box-shadow: inset 1px 3px 3px #999;
}


.reverse {
    background-color: #555;
    color: #fff;
    padding-left: 10px;
    padding-right: 10px;
}

hr.thick {
    background-color: #555;
    height: 4px;
}


/* General Toggle Option for Content */
.toggleBox div {
    display: none;
    margin-top: 1.5em;
}

.entry-content h2.toggle {
    background: #7f7f7f;
    color: #fff;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0;
    border-bottom: 2px solid #ccc;
    border-radius: 20px 20px 0 0;
}

.toggleBottom {
    background: #7f7f7f;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 0 0 20px 20px;
}
.toggleBottom.open {
    border-top: 2px solid #ccc;
}

.toggleBottom:after {
    content:"+ expand";
}
.toggleBottom.open:after {
    content:"- collapse";
}

/* slim */
.toggleBottom-slim {
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NjY2NjYyIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjI0JSIgc3RvcC1jb2xvcj0iI2NjY2NjYyIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjY2NjY2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top,  rgba(204,204,204,0) 0%, rgba(204,204,204,0) 24%, rgba(204,204,204,1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(204,204,204,0)), color-stop(24%,rgba(204,204,204,0)), color-stop(100%,rgba(204,204,204,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,0) 24%,rgba(204,204,204,1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,0) 24%,rgba(204,204,204,1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  rgba(204,204,204,0) 0%,rgba(204,204,204,0) 24%,rgba(204,204,204,1) 100%); /* IE10+ */
    background: linear-gradient(to bottom,  rgba(204,204,204,0) 0%,rgba(204,204,204,0) 24%,rgba(204,204,204,1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cccccc', endColorstr='#cccccc',GradientType=0 ); /* IE6-8 */
    text-align: center;
    cursor: pointer;
    border-radius: 0 0 20px 20px;
    border-bottom: 1px solid #7f7f7f;
    font-size: 12px;
}
.toggleBottom-slim:hover {
    color: #D5622B;
}
.toggleBottom-slim:before {
    content:"+ ";
}
.toggleBottom-slim.open:before {
    content:"- ";
}

/* Request Accordion */
.toggleBottom-ARFS {
    background: #0078C1;
    text-align: center;
    cursor: pointer;
    border-radius: 0 0 20px 20px;
	color: #fff;
	padding: 10px;
	font-size: 12px;
	font-size: 1.2rem;
}
.toggleBottom-ARFS:hover {
    background: #D5622B;
}
.toggleBottom-ARFS:after {
    content:"+ EXPAND";
}
.toggleBottom-ARFS.open:after {
    content:"- COLLAPSE";
}




.single .byline,
.group-blog .byline { display: inline; }

.page-content,
.entry-content,
.entry-summary { margin: 1.5em 0 0; }

.page-links {
    margin: 0 0 1.5em;
    clear: both;
}

.entry-title {
    margin: 0 0 2rem;
    font-weight: 700;
    font-size: 36px;
    font-size: 3.6rem;
    line-height: 1.3em;
    color: #555;
}

.entry-title a:hover,
.entry-title a:focus,
.entry-title a:active{
    text-decoration: none;
}

.page .entry-title { margin-top: .7em; }


/* Typography */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 { margin-bottom: .4em; }

.entry-content h1 {
    font-size: 30px;
    font-size: 3.0rem;
}

.entry-content h2 {
    font-size: 26px;
    font-size: 2.6rem;
}

.entry-content h3 {
    font-size: 24px;
    font-size: 2.4rem;
}

.entry-content h4 {
    font-size: 22px;
    font-size: 2.2rem;
}

.entry-content h5 {
    font-size: 20px;
    font-size: 2rem;
}

.entry-content h6 {
    font-size: 18px;
    font-size: 1.8rem;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6em;
}

/* Smaller fonts for smaller screens */
@media screen and (max-width: 680px) {
    .entry-title {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.3em;
    }
    .entry-content h1 {
        font-size: 24px;
        font-size: 2.4rem;
    }

    .entry-content h2 {
        font-size: 22px;
        font-size: 2.2rem;
    }

    .entry-content h3 {
        font-size: 20px;
        font-size: 2.0rem;
    }

    .entry-content h4 {
        font-size: 18px;
        font-size: 1.8rem;
    }

    .entry-content h5 {
        font-size: 16px;
        font-size: 1.6rem;
    }

    .entry-content h6 {
        font-size: 14px;
        font-size: 1.4rem;
    }

    .entry-content p,
    .entry-content ul,
    .entry-content ol  {
        font-size: 14px;
        font-size: 1.4rem;
    }

}

.border-gray {
    border: #b9b9b9 solid 1px;
    border: hsl(0, 0%, 75%) solid 1px;
}

.border-black {
    border: #000 solid 1px;
    border: hsl(0, 0%, 0%) solid 1px;
}

.border-custom {
    border: #6DBCDB solid 1px;
    border: hsl(19, 95%, 38%) solid 1px;
}

/* Meta */
.entry-meta {
    margin-bottom: 2rem;
    padding: 0;
    font-family: inherit;
    font-size: 12px;
    font-size: 1.2rem;
}

.entry-meta a { font-weight: 600; }

/* Hides 'on' and '.' in post meta on wide screens. */
.mobile-hide {
    display: inline;
}

.entry-footer {
    margin-top: 3rem;
    margin-bottom: 5rem;
    /*font-family: Gill, Helvetica, sans-serif;*/
    font-family: inherit;
}

.entry-footer ul {
    padding: 0;
    margin: 0;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2em;
    list-style-type: none;
}

.entry-footer li {
    display: inline-block;
    margin-right: 4rem;
}

.entry-footer i { margin-right: .5rem; }


/*--------------------------------------------------------------
10.2 Index and Archive
--------------------------------------------------------------*/


/*--------------------------------------------------------------
10.3 Asides
--------------------------------------------------------------*/


/*--------------------------------------------------------------
10.4 Image Attachments
--------------------------------------------------------------*/


/*--------------------------------------------------------------
10.5 Comments
--------------------------------------------------------------*/


/*--------------------------------------------------------------
10.6 Author Box
--------------------------------------------------------------*/


/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/


/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object { max-width: 100%; }


/*--------------------------------------------------------------
13.0 Footer
--------------------------------------------------------------*/

.site-footer {
    padding: 2em;
    font-size: 14px;
    font-size: 1.4rem;
    /*font-family: Gill, Helvetica, sans-serif;*/
    font-family: inherit;
    color: #fff;
    background: #D5622B;
}

.site-footer a {
    color: #fff;
    color: hsl(0, 0%, 100%);
    font-weight: normal;
}

.site-info { text-align: center; }


/*--------------------------------------------------------------
15.0 FYI Page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
16.0 Events Page
--------------------------------------------------------------*/

.toggle_container {
    background: #f5f5f5;
    position: absolute;
    z-index: 102;
    margin-top: 40px;
    margin-right: -10px;
    border-radius: 0 0 3px 3px;
    display: none;
    width: 100%;
    -webkit-box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 6px 5px 0px rgba(0,0,0,0.4);
}
.toggle_container ul {
	margin: 0px;
        list-style: none;
}
.toggle_container li a {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
}
.toggle_container li a {
	font-size: 16px;
	padding: 5px 10px;
        display: block;
        font-weight: 700;
        color: #fff;
}
.toggle_container li a:hover {
	color: #fff;
}
.toggle_container li:hover a {
	background: rgba(255, 255, 255, .3);
}
.toggle_container li.allNav:hover a {
	background: rgba(0, 0, 0, .2);
}

.download-flyer-container, .download-img-container {
    /*padding: 1.5em 0;*/
    display: inline-block;
    /*margin-bottom: 1.5em;*/
}

.download-flyer-container svg {
    height: 26px;
    width: 23.6px;
    vertical-align: middle;
}
.download-img-container svg {
    height: 18.3px;
    width: 23.6px;
    vertical-align: middle;
}


.download-flyer-container a:hover .svg-icon,
.download-img-container a:hover .svg-icon {
    fill: #D5622B;
}


/* Add support for Doc and Img icons next to downloadable links */
.fgDocDownload, .fgImgDownload {
    display: inline-block;
}

.fgDocDownload strong, .fgImgDownload strong {
    vertical-align: middle;
}

.fgDocDownload svg {
    height: 23px;
    width: 26px;
    vertical-align: middle;
}
.fgImgDownload svg {
    height: 15.3px;
    width: 26px;
    vertical-align: middle;
}

.fgDocDownload a:hover .svg-icon,
.fgImgDownload a:hover .svg-icon,
a.fgDocDownload:hover .svg-icon,
a.fgImgDownload:hover .svg-icon {
    fill: #fc8622;
}


/*--------------------------------------------------------------
17.0 Program Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
17.1 Program List Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
17.2 Program Single Page
--------------------------------------------------------------*/

.mwr-table {
	width: 100%;
	/*border-collapse: collapse;*/
}
.mwr-table svg {
    width: 22px;
    height: 22px;
    margin: 8px;
}
.program-detail-container .mwr-table th {
    text-align: center;
    padding: 0;
    min-width: 42px;
}

.mwr-table th {
	background: #7f7f7f;
	color:#fff;
        padding: 0 10px;
}
.mwr-table th a {
    color: #fff;
    text-decoration: underline;
}
.mwr-table th a:hover {
    color:#ffb71b;
}
.mwr-table td {
    line-height: 1.3;
    padding: 5px 10px;
}
.mwr-table td,.mwr-table th {
	border: 1px solid #ccc;
        vertical-align: middle;
}
.mwr-table .phone {
    width: 111px;
}
.mwr-table a{
	color:#008ece;
}
.mwr-table a:hover {
	color:#D5622B;
}
th {
    font-weight: bold;
}
.mwr-table th.empty-cell {
    background: #999;
}
.stripedTable tr:nth-of-type(2n) {
    background: #E6E7E9;
}

.mwr-table hr {
    margin: 7px 0;
}

/* Added specifically for SSS School Options page */
.mwr-table.lengthy td, .mwr-table.lengthy th {
	vertical-align: top;
	width: 33%;
}

/*--------------------------------------------------------------
17.3 Pointes West
--------------------------------------------------------------*/

/*--------------------------------------------------------------
17.4 Dining Pages
--------------------------------------------------------------*/


/*--------------------------------------------------------------
18.0 Survey Settings
--------------------------------------------------------------*/

#headerPopup {
    background:#333;
    text-align:center;
    padding:10px;
}

#headerPopup img,
#headerPopup p,
#headerPopup button {
    display:inline-block;
    vertical-align:middle;
}

#headerPopup p {
    color:#fff;
    margin:10px 0;
}

#headerPopup a:hover p {
    color: #fff;
	text-decoration: underline;
}

#headerPopup img {
    max-width: 40px;
}

.pulsePopup {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {background-color: #333;}
    50% {background-color: #73530f;}
    100% {background-color: #333;}
}

.surveySlider {
    width: 90%;
    margin: 0 5%;
}

.surveyRadioHor .wpcf7-list-item {
    float: left;
    margin-bottom: 20px;
}

.select-boxes-3 {
    width: 33%;
    float: left;
    padding: 10px;
}

@media screen and (max-width:760px) {
    .select-boxes-3 {
        width: auto;
        float: none;
        padding: 0px;
        text-align: left;
    }
}

/*--------------------------------------------------------------
19.0 - Apps Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
19.1 - FIT Club Results Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
20.0 - Slideshow Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
21.0 - Hashtag Pull Page
--------------------------------------------------------------*/


/*--------------------------------------------------------------
22.0 - Request Pages
--------------------------------------------------------------*/



/*--------------------------------------------------------------
00.0 Print Styles
--------------------------------------------------------------*/


@media print {
	html {
        background: transparent!important;
    }
    .headerad,
    #site-navigation,
    .mwrcolorbar,
    #secondary,
    #colophon {
        display: none!important;
    }
    .hide {
        display: block;
    }
    .site-header {
        background: #fff;
        box-shadow: none;
    }
    .mwrlogo {
        display: none;
    }
    .headerlogo h1 {
        color: #0078C1;
        font-size: 300%;
    }
    .program-detail-container {
        float: none;
        margin: 0 auto;
    }
    #content {
        background: #fff;
    }

    #content p {
      font-size: 11pt;
      color: #000;
    }

    #content img {
      display: block;
      page-break-after: avoid;
      page-break-inside: avoid;
    }

    #content ul, li {
      display: block;
      page-break-inside: avoid;
    }

    #content ul {
       list-style-type:circle;
    }

}
