/**
 * material-design-lite - Material Design Components in CSS, JS and HTML
 * @version v1.2.0
 * @license Apache-2.0
 * @copyright 2015 Google, Inc.
 * @link https://github.com/google/material-design-lite
 */
@charset "UTF-8";
html {
	color: rgba(0,0,0, 0.87);
	font-size: 1em;
	line-height: 1.4;
	overflow-y: scroll;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
 background: #b3d4fc;
 text-shadow: none;
}
::selection {
	background: #b3d4fc;
	text-shadow: none;
}
/*
 * A better looking default horizontal rule
 */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}
/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio, canvas, iframe, img, svg, video {
	vertical-align: middle;
}
/*
 * Remove default fieldset styles.
 */
fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}
/*
 * Allow only vertical resizing of textareas.
 */
textarea {
	resize: vertical;
}
/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
	margin: 0.2em 0;
	background: #ccc;
	color: #000;
	padding: 0.2em 0;
}
/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers:
 */
.hidden {
	display: none !important;
}
/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
	clip: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	position: static;
	width: auto;
}
/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
	visibility: hidden;
}
/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before, .clearfix:after {
	content: " ";
	/* 1 */
	display: table;
/* 2 */ }
.clearfix:after {
	clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
/* Style adjustments for viewports that meet the condition */ }

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
/* Style adjustments for high resolution devices */ }

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
*, *:before, *:after, *:first-letter {
	background: transparent !important;
	color: #000 !important;
	/* Black prints faster: http://www.sanbeiji.com/archives/953 */
	box-shadow: none !important;
}
a, a:visited {
	text-decoration: underline;
}
a[href]:after {
	content: " (" attr(href) ")";
}
abbr[title]:after {
	content: " (" attr(title) ")";
}
/*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
a[href^="#"]:after, a[href^="javascript:"]:after {
	content: "";
}
pre, blockquote {
	border: 1px solid #999;
	page-break-inside: avoid;
}
/*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */
thead {
	display: table-header-group;
}
tr, img {
	page-break-inside: avoid;
}
img {
	max-width: 100% !important;
}
p, h2, h3 {
	orphans: 3;
	widows: 3;
}
h2, h3 {
	page-break-after: avoid;
}
}
/**
 * Copyright 2015 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Remove the unwanted box around FAB buttons */
/* More info: http://goo.gl/IPwKi */
a, .mdl-accordion, .mdl-button, .mdl-card, .mdl-checkbox, .mdl-dropdown-menu, .mdl-icon-toggle, .mdl-item, .mdl-radio, .mdl-slider, .mdl-switch, .mdl-tabs__tab {
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}
/*
 * Make html take up the entire screen
 * Then set touch-action to avoid touch delay on mobile IE
 */
html {
	width: 100%;
	height: 100%;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}
/*
* Make body take up the entire screen
* Remove body margin so layout containers don't cause extra overflow.
*/
body {
	max-width: 1280px;
	width: 100%;
	min-height: 100%;
	margin: 0;
	background-color: #d4eae4;
}
/*
 * Main display reset for IE support.
 * Source: http://weblog.west-wind.com/posts/2015/Jan/12/main-HTML5-Tag-not-working-in-Internet-Explorer-91011
 */
main {
	display: block;
}
/*
* Apply no display to elements with the hidden attribute.
* IE 9 and 10 support.
*/
*[hidden] {
	display: none !important;
}
html, body {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	line-height: 1.42857143;
	color: #2f2f2f;
}
h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
}
/**
  * Styles for HTML elements
  */
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
	font-family: "Open Sans", sans-serif;
	font-size: 1.86em;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: -0.02em;
	font-size: 0.6em;
	color: #44304c;
}
h1 {
	font-family: "Open Sans", sans-serif;
	font-size: 1.86em;
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: -0.02em;
	margin-top: 24px;
	margin-bottom: 24px;
	color: #44304c;
}
h2 {
	font-family: "Open Sans", sans-serif;
	/*text-transform: uppercase;
    letter-spacing: 1px; */
	font-size: 1.7em;
	font-weight: 400;
	line-height: 32px;
	margin-top: 20px;
	margin-bottom: 20px;
	color: #44304c;
}
h3 {
	font-family: "Open Sans", sans-serif;
	/*text-transform: uppercase;
  letter-spacing: 1px;*/
	font-size: 1.5em;
	font-weight: 400;
	line-height: 40px;
	margin-top: 0;
	margin-bottom: 0;
	color: #44304c;
}
h4 {
	font-family: "Open Sans", sans-serif;
	font-size: 1.43em;
	font-weight: 400;
	line-height: 32px;
	-moz-osx-font-smoothing: grayscale;
	margin-top: 24px;
	margin-bottom: 16px;
	color: #44304c;
}
h5 {
	font-family: "Open Sans", sans-serif;
	font-size: 1.28em;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.02em;
	margin-top: 24px;
	margin-bottom: 16px;
	color: #44304c;
}
h6 {
	font-family: "Open Sans", sans-serif;
	font-size: 1.14em;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.04em;
	margin-top: 24px;
	margin-bottom: 16px;
	color: #44304c;
}
p {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	margin-bottom: 16px;
	line-height: 26px;
}
a {
	color: rgba(18,10,174,1.00);
	font-weight: 500;
}
blockquote {
	font-family: Arial, sans-serif;
	position: relative;
	font-size: 24px;
	font-weight: 300;
	font-style: italic;
	line-height: 1.35;
	letter-spacing: 0.08em;
}
blockquote:before {
	position: absolute;
	left: -0.5em;
	content: '“';
}
blockquote:after {
	content: '”';
	margin-left: -0.05em;
}
mark {
	background-color: #f4ff81;
}
dt {
	font-weight: 700;
}
address {
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	font-style: normal;
}
ul, ol {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
}
.mdl-ripple {
	background: rgb(0,0,0);
	border-radius: 50%;
	height: 50px;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 50px;
	overflow: hidden;
}
.mdl-ripple.is-animating {
	transition: width 0.3s cubic-bezier(0, 0, 0.2, 1), height 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.2, 1);
	transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), width 0.3s cubic-bezier(0, 0, 0.2, 1), height 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1);
	transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1), width 0.3s cubic-bezier(0, 0, 0.2, 1), height 0.3s cubic-bezier(0, 0, 0.2, 1), opacity 0.6s cubic-bezier(0, 0, 0.2, 1), -webkit-transform 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.mdl-ripple.is-visible {
	opacity: 0.3;
}
.mdl-button {
	background: transparent;
	border: none;
	border-radius: 2px;
	color: rgb(0,0,0);
	position: relative;
	height: 33px;
	margin: 0;
	min-width: 64px;
	padding: 0 8px;
	display: inline-block;
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	overflow: hidden;
	will-change: box-shadow;
	transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	outline: none;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	line-height: 33px;
	vertical-align: middle;
}
 .mdl-button::-moz-focus-inner {
 border: 0;
}
.mdl-button:hover {
}
.mdl-button:focus:not(:active) {
	background-color: rgba(0,0,0, 0.12);
}
.mdl-button:active {
	background-color: rgba(158,158,158, 0.40);
}
.mdl-button.mdl-button--colored {
	color: rgb(255,255,255);
}
.mdl-button.mdl-button--colored:focus:not(:active) {
	background-color: rgba(0,0,0, 0.12);
}
input.mdl-button[type="submit"] {
	-webkit-appearance: none;
}
.mdl-button--raised {
	background: rgb(99,91,74);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.mdl-button--raised:active {
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
	background-color: rgba(158,158,158, 0.40);
}
.mdl-button--raised:focus:not(:active) {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.36);
	background-color: rgba(158,158,158, 0.40);
}
.mdl-button--raised.mdl-button--colored {
	background: rgb99,91,74);
	color: rgb(255,255,255);
}
.mdl-button--raised.mdl-button--colored:hover {
	text-decoration: underline;
}
.mdl-button--raised.mdl-button--colored:active {
	background-color: rgb(99,91,74);
}
.mdl-button--raised.mdl-button--colored:focus:not(:active) {
	background-color: rgb(99,91,74);
}
.mdl-button--raised.mdl-button--colored .mdl-ripple {
	background: rgb(255,255,255);
}
.mdl-button--fab {
	border-radius: 50%;
	font-size: 30px;
	height: 56px;
	margin: auto;
	min-width: 56px;
	width: 56px;
	padding: 0;
	overflow: hidden;
	background: rgb(197,202,233);
	box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
	position: relative;
	line-height: normal;
}
.mdl-button--fab .material-icons {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-15px, -15px);
	transform: translate(-15px, -15px);
	line-height: 30px;
	width: 30px;
}
.mdl-button--fab.mdl-button--mini-fab {
	height: 40px;
	min-width: 40px;
	width: 40px;
}
.mdl-button--fab .mdl-button__ripple-container {
	border-radius: 50%;
	-webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.mdl-button--fab:active {
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
	background-color: rgba(158,158,158, 0.40);
}
.mdl-button--fab:focus:not(:active) {
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.36);
	background-color: rgba(158,158,158, 0.40);
}
.mdl-button--fab.mdl-button--colored {
	background: rgb(255,64,129);
	color: rgb(255,255,255);
}
.mdl-button--fab.mdl-button--colored:hover {
	background-color: rgb(255,64,129);
}
.mdl-button--fab.mdl-button--colored:focus:not(:active) {
	background-color: rgb(255,64,129);
}
.mdl-button--fab.mdl-button--colored:active {
	background-color: rgb(255,64,129);
}
.mdl-button--fab.mdl-button--colored .mdl-ripple {
	background: rgb(255,255,255);
}
.mdl-button--icon {
	border-radius: 50%;
	font-size: 30px;
	height: 32px;
	margin-left: 0;
	margin-right: 0;
	min-width: 32px;
	width: 32px;
	padding: 0;
	overflow: hidden;
	color: inherit;
	line-height: normal;
}
.mdl-button--icon .material-icons {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-15px, -15px);
	transform: translate(-15px, -15px);
	line-height: 30px;
	width: 30px;
}
.mdl-button--icon.mdl-button--mini-icon {
	height: 24px;
	min-width: 24px;
	width: 24px;
}
.mdl-button--icon.mdl-button--mini-icon .material-icons {
	top: -3px;
	left: -3px;
}
.mdl-button--icon .mdl-button__ripple-container {
	border-radius: 50%;
	-webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.mdl-button__ripple-container {
	display: block;
	height: 100%;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: 0;
	overflow: hidden;
}
.mdl-button[disabled] .mdl-button__ripple-container .mdl-ripple, .mdl-button.mdl-button--disabled .mdl-button__ripple-container .mdl-ripple {
	background-color: transparent;
}
.mdl-button--primary.mdl-button--primary {
	color: rgb(133,13,7);
}
.mdl-button--primary.mdl-button--primary .mdl-ripple {
	background: rgb(255,255,255);
}
.mdl-button--primary.mdl-button--primary.mdl-button--raised, .mdl-button--primary.mdl-button--primary.mdl-button--fab {
	color: rgb(255,255,255);
	background-color: rgb(133,13,7);
}
.mdl-button--accent.mdl-button--accent {
	color: rgb(255,64,129);
}
.mdl-button--accent.mdl-button--accent .mdl-ripple {
	background: rgb(255,255,255);
}
.mdl-button--accent.mdl-button--accent.mdl-button--raised, .mdl-button--accent.mdl-button--accent.mdl-button--fab {
	color: rgb(255,255,255);
	background-color: rgb(255,64,129);
}
.mdl-button[disabled][disabled], .mdl-button.mdl-button--disabled.mdl-button--disabled {
	color: rgba(0,0,0, 0.26);
	cursor: default;
	background-color: transparent;
}
.mdl-button--fab[disabled][disabled], .mdl-button--fab.mdl-button--disabled.mdl-button--disabled {
	background-color: rgba(0,0,0, 0.12);
	color: rgba(0,0,0, 0.26);
}
.mdl-button--raised[disabled][disabled], .mdl-button--raised.mdl-button--disabled.mdl-button--disabled {
	background-color: rgba(0,0,0, 0.12);
	color: rgba(0,0,0, 0.26);
	box-shadow: none;
}
.mdl-button--colored[disabled][disabled], .mdl-button--colored.mdl-button--disabled.mdl-button--disabled {
	color: rgba(0,0,0, 0.26);
}
.mdl-button .material-icons {
	vertical-align: middle;
}
.mdl-card {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow: hidden;
	/*  width: 100%;*/
	min-height: 350px;
	z-index: 1;
	position: relative;
	background: #fff;
	border-radius: 2px;
	box-sizing: border-box;
}
.mdl-card__media {
	height: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.mdl-card__title {
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: rgb(0,0,0);
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	line-height: normal;
/*	padding: 0 10px;*/
	-webkit-perspective-origin: 165px 56px;
	perspective-origin: 165px 56px;
	-webkit-transform-origin: 165px 56px;
	transform-origin: 165px 56px;
	box-sizing: border-box;
}
.mdl-card__title.mdl-card--border {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.mdl-card__title {
}
.mdl-card__title-text {
	-webkit-align-self: flex-end;
	-ms-flex-item-align: end;
	align-self: flex-end;
	color: inherit;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	-webkit-transform-origin: 149px 48px;
	transform-origin: 149px 48px;
	line-height: 35px;
	color: #44304c;
	font-size: 26px;
    background: #fff;
    width: 100%; 
    margin: 0;
    padding: 10px;
    padding-top: 5px;	
	min-height: 100px;
}

.mdl-card__title-text {
    margin: 0;
}
.mdl-card__subtitle-text {
	font-size: 14px;
	color: rgba(0,0,0, 0.54);
	margin: 0;
}
.mdl-card__supporting-text {
	color: rgb(0,0,0);
	font-size: 1rem;
	line-height: 18px;
	overflow: hidden;
	padding: 5px 10px;
	width: 90%;
	min-height: 36px;
}
.mdl-card__actions {
	font-size: 14px;
	line-height: normal;
	width: 100%;
	height: auto;
	padding: 14px 8px;
	background-color: #fff;
	box-sizing: border-box;
}
.mdl-card__actions.mdl-card--border {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.mdl-card--expand {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.mdl-card__menu {
	position: absolute;
	right: 16px;
}
.mdl-navigation {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	box-sizing: border-box;
}
.mdl-navigation__link {
	color: rgb(66,66,66);
	position: relative;
	text-decoration: none;
	margin: 0;
	line-height: 2.2;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
	opacity: 1;
}
.mdl-navigation__link .material-icons {
	vertical-align: middle;
}
.mdl-layout {
	max-width: 1280px;
	width: 100%;
	margin: auto;
	height: auto;
	min-height: 100vh;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	background-color: #fffbf2;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	-webkit-overflow-scrolling: touch;
}
.mdl-layout.is-small-screen .mdl-layout--large-screen-only {
	display: flex;
	display: -webkit-flex;
}
.mdl-layout:not(.is-small-screen) .mdl-layout--small-screen-only {
	display: flex;
	display: -webkit-flex;
	width: 100%;
}
.mdl-layout__container {
	position: absolute;
	width: 100%;
	height: 100%;
}
.mdl-layout__title, .mdl-layout-title {
	display: block;
	position: relative;
	font-family: "Open Sans", sans-serif;
	font-size: 1.28em;
	line-height: 1;
	letter-spacing: 0.02em;
	font-weight: 400;
	box-sizing: border-box;
}
.mdl-layout-spacer {
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
.mdl-layout__header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	box-sizing: border-box;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	min-height: 64px;
	max-height: 1000px;
	z-index: 3;
	background-color: rgb(255,255,255);
	color: rgb(0,0,0);
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-property: max-height, box-shadow;
}

@media screen and (max-width: 1024px) {
.mdl-layout__header {
	min-height: 64px;
}
}
.mdl-layout--fixed-drawer.is-upgraded:not(.is-small-screen) > .mdl-layout__header {
	margin-left: 240px;
	width: calc(100% - 240px);
}

@media screen and (min-width: 1025px) {
.mdl-layout--fixed-drawer > .mdl-layout__header .mdl-layout__header-row {
	padding-left: 40px;
}
}
.mdl-layout__header > .mdl-layout-icon {
	position: absolute;
	left: 30px;
	top: 16px;
	height: 32px;
	width: 32px;
	overflow: hidden;
	z-index: 3;
	display: block;
}

@media screen and (max-width: 1024px) {
.mdl-layout__header > .mdl-layout-icon {
	left: 16px;
	top: 16px;
}
}
.mdl-layout.has-drawer .mdl-layout__header > .mdl-layout-icon {
	display: none;
}
.mdl-layout__header.is-compact {
	max-height: 64px;
}

@media screen and (max-width: 1024px) {
.mdl-layout__header.is-compact {
	max-height: 64px;
}
}
.mdl-layout__header.is-compact.has-tabs {
	height: 112px;
}

@media screen and (max-width: 1024px) {
.mdl-layout__header.is-compact.has-tabs {
	min-height: 112px;
}
}

@media screen and (max-width: 1024px) {
.mdl-layout__header {
	display: block;
}
.mdl-layout--fixed-header > .mdl-layout__header {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
}
.mdl-layout__header--transparent.mdl-layout__header--transparent {
	background-color: transparent;
	box-shadow: none;
}
.mdl-layout__header--seamed {
	box-shadow: none;
}
.mdl-layout__header--scroll {
	box-shadow: none;
}
.mdl-layout__header--waterfall {
	box-shadow: none;
	overflow: hidden;
}
.mdl-layout__header--waterfall.is-casting-shadow {
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.mdl-layout__header--waterfall.mdl-layout__header--waterfall-hide-top {
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.mdl-layout__header-row {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	box-sizing: border-box;
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	height: 64px;
	min-height: 64px;
	margin: 0;
	padding: 0 15px 0 0;
}
.mdl-layout--no-drawer-button .mdl-layout__header-row {
	padding-left: 30px;
}

@media screen and (min-width: 1025px) {
.mdl-layout--no-desktop-drawer-button .mdl-layout__header-row {
	padding-left: 30px;
}
}

@media screen and (max-width: 1024px) {
.mdl-layout__header-row {
	height: 64px;/*	padding: 0 15px 0 50px;*/
}
.mdl-layout--no-drawer-button .mdl-layout__header-row {
	padding-left: 16px;
}
}
.mdl-layout__header-row > * {
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.mdl-layout__header--scroll .mdl-layout__header-row {
	width: 100%;
}
.mdl-layout__header-row .mdl-navigation {
	margin: 0;
	padding: 0;
	height: 64px;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-align-items: center;
	-ms-flex-align: center;
	-ms-grid-row-align: center;
	align-items: center;
}

@media screen and (max-width: 1024px) {
.mdl-layout__header-row .mdl-navigation {
	height: 64px;
}
}
.mdl-layout__header-row .mdl-navigation__link {
	display: block;
	color: rgb(0,0,0);
	line-height: 64px;
	padding: 0 10px;
}

@media screen and (max-width: 1024px) {
.mdl-layout__header-row .mdl-navigation__link {
	line-height: 64px;
	padding: 0 10px;
}
}
.mdl-layout__obfuscator {
	background-color: transparent;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 4;
	visibility: hidden;
	transition-property: background-color;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.mdl-layout__obfuscator.is-visible {
	background-color: rgba(0, 0, 0, 0.5);
	visibility: visible;
}
 @supports (pointer-events: auto) {
 .mdl-layout__obfuscator {
 background-color: rgba(0, 0, 0, 0.5);
 opacity: 0;
 transition-property: opacity;
 visibility: visible;
 pointer-events: none;
}
 .mdl-layout__obfuscator.is-visible {
 pointer-events: auto;
 opacity: 1;
}
}
.mdl-layout__content {
	height: 100%;
	-ms-flex: 0 1 auto;
	position: relative;
	display: inline-block;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	z-index: 1;
	-webkit-overflow-scrolling: touch;
}
.mdl-layout--fixed-drawer > .mdl-layout__content {
	margin-left: 240px;
}
.mdl-layout__container.has-scrolling-header .mdl-layout__content {
	overflow: visible;
}

@media screen and (max-width: 1024px) {
.mdl-layout--fixed-drawer > .mdl-layout__content {
	margin-left: 0;
}
.mdl-layout__container.has-scrolling-header .mdl-layout__content {
	overflow-y: auto;
	overflow-x: hidden;
}
}
.mdl-layout__tab-bar {
	height: 96px;
	margin: 0;
	width: calc(100% - 112px);
	padding: 0 0 0 56px;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	background-color: rgb(63,81,181);
	overflow-y: hidden;
	overflow-x: scroll;
}
 .mdl-layout__tab-bar::-webkit-scrollbar {
 display: none;
}
.mdl-layout--no-drawer-button .mdl-layout__tab-bar {
	padding-left: 6px;
	width: calc(100% - 12px);
}

@media screen and (min-width: 1025px) {
.mdl-layout--no-desktop-drawer-button .mdl-layout__tab-bar {
	padding-left: 6px;
	width: calc(100% - 12px);
}
}

@media screen and (max-width: 1024px) {
.mdl-layout__tab-bar {
	width: calc(100% - 60px);
	padding: 0 0 0 60px;
}
.mdl-layout--no-drawer-button .mdl-layout__tab-bar {
	width: calc(100% - 8px);
	padding-left: 4px;
}
}
.mdl-layout--fixed-tabs .mdl-layout__tab-bar {
	padding: 0;
	overflow: hidden;
	width: 100%;
}
.mdl-layout__tab-bar-container {
	position: relative;
	height: 48px;
	width: 100%;
	border: none;
	margin: 0;
	z-index: 2;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	overflow: hidden;
}
.mdl-layout__container > .mdl-layout__tab-bar-container {
	position: absolute;
	top: 0;
	left: 0;
}
.mdl-layout__tab-bar-button {
	display: inline-block;
	position: absolute;
	top: 0;
	height: 48px;
	width: 56px;
	z-index: 4;
	text-align: center;
	background-color: yellow;
	color: transparent;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.mdl-layout--no-desktop-drawer-button .mdl-layout__tab-bar-button, .mdl-layout--no-drawer-button .mdl-layout__tab-bar-button {
	width: 6px;
}
.mdl-layout--no-desktop-drawer-button .mdl-layout__tab-bar-button .material-icons, .mdl-layout--no-drawer-button .mdl-layout__tab-bar-button .material-icons {
	position: relative;
	left: -9px;
}

@media screen and (max-width: 1024px) {
.mdl-layout__tab-bar-button {
	width: 60px;
}
}
.mdl-layout--fixed-tabs .mdl-layout__tab-bar-button {
	display: none;
}
.mdl-layout__tab-bar-button .material-icons {
	line-height: 48px;
}
.mdl-layout__tab-bar-button.is-active {
	color: rgb(0,0,0);
}
.mdl-layout__tab-bar-left-button {
	left: 0;
}
.mdl-layout__tab-bar-right-button {
	right: 0;
}
.mdl-layout__tab {
	margin: 0;
	border: none;
	padding: 0 24px 0 24px;
	float: left;
	position: relative;
	display: block;
	-webkit-flex-grow: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	text-decoration: none;
	height: 48px;
	line-height: 48px;
	text-align: center;
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	color: rgba(255,255,255, 0.6);
	overflow: hidden;
}

@media screen and (max-width: 1024px) {
.mdl-layout__tab {
	padding: 0 12px 0 12px;
}
}
.mdl-layout--fixed-tabs .mdl-layout__tab {
	float: none;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 0;
}
.mdl-layout.is-upgraded .mdl-layout__tab.is-active {
	color: rgb(0,0,0);
}
.mdl-layout.is-upgraded .mdl-layout__tab.is-active::after {
	height: 2px;
	width: 100%;
	display: block;
	content: " ";
	bottom: 0;
	left: 0;
	position: absolute;
	background: rgb(255,64,129);
	-webkit-animation: border-expand 0.2s cubic-bezier(0.4, 0, 0.4, 1) 0.01s alternate forwards;
	animation: border-expand 0.2s cubic-bezier(0.4, 0, 0.4, 1) 0.01s alternate forwards;
	transition: all 1s cubic-bezier(0.4, 0, 1, 1);
}
.mdl-layout__tab .mdl-layout__tab-ripple-container {
	display: block;
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1;
	overflow: hidden;
}
.mdl-layout__tab .mdl-layout__tab-ripple-container .mdl-ripple {
	background-color: rgb(0,0,0);
}
.mdl-layout__tab-panel {
	display: block;
}
.mdl-layout.is-upgraded .mdl-layout__tab-panel {
	display: none;
}
.mdl-layout.is-upgraded .mdl-layout__tab-panel.is-active {
	display: block;
}
 @-webkit-keyframes border-expand {
 0% {
 opacity: 0;
 width: 0;
}
 100% {
 opacity: 1;
 width: 100%;
}
}
 @keyframes border-expand {
 0% {
 opacity: 0;
 width: 0;
}
 100% {
 opacity: 1;
 width: 100%;
}
}
.mdl-shadow--2dp {
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.mdl-shadow--3dp {
	box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.14), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.12);
}
.mdl-shadow--4dp {
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
}
.mdl-shadow--6dp {
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.mdl-shadow--8dp {
	box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.mdl-shadow--16dp {
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.mdl-shadow--24dp {
	box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.14), 0 11px 15px -7px rgba(0, 0, 0, 0.12), 0 24px 38px 3px rgba(0, 0, 0, 0.2);
}
.mdl-grid {
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	margin: 0 auto 0 auto;
	-webkit-align-items: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.mdl-grid.mdl-grid--no-spacing {
	padding: 0;
}
.mdl-cell {
	box-sizing: border-box;
}
.mdl-cell--top {
	-webkit-align-self: flex-start;
	-ms-flex-item-align: start;
	align-self: flex-start;
}
.mdl-cell--middle {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
}
.mdl-cell--bottom {
	-webkit-align-self: flex-end;
	-ms-flex-item-align: end;
	align-self: flex-end;
}
.mdl-cell--stretch {
	-webkit-align-self: stretch;
	-ms-flex-item-align: stretch;
	align-self: stretch;
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell {
	margin: 0;
}
.mdl-cell--order-1 {
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
}
.mdl-cell--order-2 {
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
}
.mdl-cell--order-3 {
	-webkit-order: 3;
	-ms-flex-order: 3;
	order: 3;
}
.mdl-cell--order-4 {
	-webkit-order: 4;
	-ms-flex-order: 4;
	order: 4;
}
.mdl-cell--order-5 {
	-webkit-order: 5;
	-ms-flex-order: 5;
	order: 5;
}
.mdl-cell--order-6 {
	-webkit-order: 6;
	-ms-flex-order: 6;
	order: 6;
}
.mdl-cell--order-7 {
	-webkit-order: 7;
	-ms-flex-order: 7;
	order: 7;
}
.mdl-cell--order-8 {
	-webkit-order: 8;
	-ms-flex-order: 8;
	order: 8;
}
.mdl-cell--order-9 {
	-webkit-order: 9;
	-ms-flex-order: 9;
	order: 9;
}
.mdl-cell--order-10 {
	-webkit-order: 10;
	-ms-flex-order: 10;
	order: 10;
}
.mdl-cell--order-11 {
	-webkit-order: 11;
	-ms-flex-order: 11;
	order: 11;
}
.mdl-cell--order-12 {
	-webkit-order: 12;
	-ms-flex-order: 12;
	order: 12;
}

@media (max-width: 599px) {
.mdl-grid {
	padding: 8px;
}
.mdl-cell {
	margin: 8px;
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell {
	width: 100%;
}
.mdl-cell--hide-phone {
	display: none !important;
}
.mdl-cell--order-1-phone.mdl-cell--order-1-phone {
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
}
.mdl-cell--order-2-phone.mdl-cell--order-2-phone {
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
}
.mdl-cell--order-3-phone.mdl-cell--order-3-phone {
	-webkit-order: 3;
	-ms-flex-order: 3;
	order: 3;
}
.mdl-cell--order-4-phone.mdl-cell--order-4-phone {
	-webkit-order: 4;
	-ms-flex-order: 4;
	order: 4;
}
.mdl-cell--order-5-phone.mdl-cell--order-5-phone {
	-webkit-order: 5;
	-ms-flex-order: 5;
	order: 5;
}
.mdl-cell--order-6-phone.mdl-cell--order-6-phone {
	-webkit-order: 6;
	-ms-flex-order: 6;
	order: 6;
}
.mdl-cell--order-7-phone.mdl-cell--order-7-phone {
	-webkit-order: 7;
	-ms-flex-order: 7;
	order: 7;
}
.mdl-cell--order-8-phone.mdl-cell--order-8-phone {
	-webkit-order: 8;
	-ms-flex-order: 8;
	order: 8;
}
.mdl-cell--order-9-phone.mdl-cell--order-9-phone {
	-webkit-order: 9;
	-ms-flex-order: 9;
	order: 9;
}
.mdl-cell--order-10-phone.mdl-cell--order-10-phone {
	-webkit-order: 10;
	-ms-flex-order: 10;
	order: 10;
}
.mdl-cell--order-11-phone.mdl-cell--order-11-phone {
	-webkit-order: 11;
	-ms-flex-order: 11;
	order: 11;
}
.mdl-cell--order-12-phone.mdl-cell--order-12-phone {
	-webkit-order: 12;
	-ms-flex-order: 12;
	order: 12;
}
.mdl-cell--1-col, .mdl-cell--1-col-phone.mdl-cell--1-col-phone {
	width: calc(25% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--1-col, .mdl-grid--no-spacing > .mdl-cell--1-col-phone.mdl-cell--1-col-phone {
	width: 25%;
}
.mdl-cell--2-col, .mdl-cell--2-col-phone.mdl-cell--2-col-phone {
	width: calc(50% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--2-col, .mdl-grid--no-spacing > .mdl-cell--2-col-phone.mdl-cell--2-col-phone {
	width: 50%;
}
.mdl-cell--3-col, .mdl-cell--3-col-phone.mdl-cell--3-col-phone {
	width: calc(75% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--3-col, .mdl-grid--no-spacing > .mdl-cell--3-col-phone.mdl-cell--3-col-phone {
	width: 75%;
}
.mdl-cell--4-col, .mdl-cell--4-col-phone.mdl-cell--4-col-phone {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--4-col, .mdl-grid--no-spacing > .mdl-cell--4-col-phone.mdl-cell--4-col-phone {
	width: 100%;
}
.mdl-cell--5-col, .mdl-cell--5-col-phone.mdl-cell--5-col-phone {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--5-col, .mdl-grid--no-spacing > .mdl-cell--5-col-phone.mdl-cell--5-col-phone {
	width: 100%;
}
.mdl-cell--6-col, .mdl-cell--6-col-phone.mdl-cell--6-col-phone {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--6-col, .mdl-grid--no-spacing > .mdl-cell--6-col-phone.mdl-cell--6-col-phone {
	width: 100%;
}
.mdl-cell--7-col, .mdl-cell--7-col-phone.mdl-cell--7-col-phone {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--7-col, .mdl-grid--no-spacing > .mdl-cell--7-col-phone.mdl-cell--7-col-phone {
	width: 100%;
}
.mdl-cell--8-col, .mdl-cell--8-col-phone.mdl-cell--8-col-phone {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--8-col, .mdl-grid--no-spacing > .mdl-cell--8-col-phone.mdl-cell--8-col-phone {
	width: 100%;
}
.mdl-cell--9-col, .mdl-cell--9-col-phone.mdl-cell--9-col-phone {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--9-col, .mdl-grid--no-spacing > .mdl-cell--9-col-phone.mdl-cell--9-col-phone {
	width: 100%;
}
.mdl-cell--10-col, .mdl-cell--10-col-phone.mdl-cell--10-col-phone {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--10-col, .mdl-grid--no-spacing > .mdl-cell--10-col-phone.mdl-cell--10-col-phone {
	width: 100%;
}
.mdl-cell--11-col, .mdl-cell--11-col-phone.mdl-cell--11-col-phone {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--11-col, .mdl-grid--no-spacing > .mdl-cell--11-col-phone.mdl-cell--11-col-phone {
	width: 100%;
}
.mdl-cell--12-col, .mdl-cell--12-col-phone.mdl-cell--12-col-phone {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--12-col, .mdl-grid--no-spacing > .mdl-cell--12-col-phone.mdl-cell--12-col-phone {
	width: 100%;
}
.mdl-cell--1-offset, .mdl-cell--1-offset-phone.mdl-cell--1-offset-phone {
	margin-left: calc(25% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--1-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--1-offset-phone.mdl-cell--1-offset-phone {
	margin-left: 25%;
}
.mdl-cell--2-offset, .mdl-cell--2-offset-phone.mdl-cell--2-offset-phone {
	margin-left: calc(50% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--2-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--2-offset-phone.mdl-cell--2-offset-phone {
	margin-left: 50%;
}
.mdl-cell--3-offset, .mdl-cell--3-offset-phone.mdl-cell--3-offset-phone {
	margin-left: calc(75% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--3-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--3-offset-phone.mdl-cell--3-offset-phone {
	margin-left: 75%;
}
}

@media (min-width: 600px) and (max-width: 839px) {
.mdl-grid {
	padding: 8px;
}
.mdl-cell {
	margin: 8px auto;
	width: calc(50% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell {
	width: 50%;
}
.mdl-cell--hide-tablet {
	display: none !important;
}
.mdl-cell--order-1-tablet.mdl-cell--order-1-tablet {
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
}
.mdl-cell--order-2-tablet.mdl-cell--order-2-tablet {
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
}
.mdl-cell--order-3-tablet.mdl-cell--order-3-tablet {
	-webkit-order: 3;
	-ms-flex-order: 3;
	order: 3;
}
.mdl-cell--order-4-tablet.mdl-cell--order-4-tablet {
	-webkit-order: 4;
	-ms-flex-order: 4;
	order: 4;
}
.mdl-cell--order-5-tablet.mdl-cell--order-5-tablet {
	-webkit-order: 5;
	-ms-flex-order: 5;
	order: 5;
}
.mdl-cell--order-6-tablet.mdl-cell--order-6-tablet {
	-webkit-order: 6;
	-ms-flex-order: 6;
	order: 6;
}
.mdl-cell--order-7-tablet.mdl-cell--order-7-tablet {
	-webkit-order: 7;
	-ms-flex-order: 7;
	order: 7;
}
.mdl-cell--order-8-tablet.mdl-cell--order-8-tablet {
	-webkit-order: 8;
	-ms-flex-order: 8;
	order: 8;
}
.mdl-cell--order-9-tablet.mdl-cell--order-9-tablet {
	-webkit-order: 9;
	-ms-flex-order: 9;
	order: 9;
}
.mdl-cell--order-10-tablet.mdl-cell--order-10-tablet {
	-webkit-order: 10;
	-ms-flex-order: 10;
	order: 10;
}
.mdl-cell--order-11-tablet.mdl-cell--order-11-tablet {
	-webkit-order: 11;
	-ms-flex-order: 11;
	order: 11;
}
.mdl-cell--order-12-tablet.mdl-cell--order-12-tablet {
	-webkit-order: 12;
	-ms-flex-order: 12;
	order: 12;
}
.mdl-cell--1-col, .mdl-cell--1-col-tablet.mdl-cell--1-col-tablet {
	width: calc(12.5% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--1-col, .mdl-grid--no-spacing > .mdl-cell--1-col-tablet.mdl-cell--1-col-tablet {
	width: 12.5%;
}
.mdl-cell--2-col, .mdl-cell--2-col-tablet.mdl-cell--2-col-tablet {
	width: calc(25% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--2-col, .mdl-grid--no-spacing > .mdl-cell--2-col-tablet.mdl-cell--2-col-tablet {
	width: 25%;
}
.mdl-cell--3-col, .mdl-cell--3-col-tablet.mdl-cell--3-col-tablet {
	width: calc(37.5% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--3-col, .mdl-grid--no-spacing > .mdl-cell--3-col-tablet.mdl-cell--3-col-tablet {
	width: 37.5%;
}
.mdl-cell--4-col, .mdl-cell--4-col-tablet.mdl-cell--4-col-tablet {
	width: calc(50% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--4-col, .mdl-grid--no-spacing > .mdl-cell--4-col-tablet.mdl-cell--4-col-tablet {
	width: 50%;
}
.mdl-cell--5-col, .mdl-cell--5-col-tablet.mdl-cell--5-col-tablet {
	width: calc(62.5% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--5-col, .mdl-grid--no-spacing > .mdl-cell--5-col-tablet.mdl-cell--5-col-tablet {
	width: 62.5%;
}
.mdl-cell--6-col, .mdl-cell--6-col-tablet.mdl-cell--6-col-tablet {
	width: calc(75% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--6-col, .mdl-grid--no-spacing > .mdl-cell--6-col-tablet.mdl-cell--6-col-tablet {
	width: 75%;
}
.mdl-cell--7-col, .mdl-cell--7-col-tablet.mdl-cell--7-col-tablet {
	width: calc(87.5% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--7-col, .mdl-grid--no-spacing > .mdl-cell--7-col-tablet.mdl-cell--7-col-tablet {
	width: 87.5%;
}
.mdl-cell--8-col, .mdl-cell--8-col-tablet.mdl-cell--8-col-tablet {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--8-col, .mdl-grid--no-spacing > .mdl-cell--8-col-tablet.mdl-cell--8-col-tablet {
	width: 100%;
}
.mdl-cell--9-col, .mdl-cell--9-col-tablet.mdl-cell--9-col-tablet {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--9-col, .mdl-grid--no-spacing > .mdl-cell--9-col-tablet.mdl-cell--9-col-tablet {
	width: 100%;
}
.mdl-cell--10-col, .mdl-cell--10-col-tablet.mdl-cell--10-col-tablet {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--10-col, .mdl-grid--no-spacing > .mdl-cell--10-col-tablet.mdl-cell--10-col-tablet {
	width: 100%;
}
.mdl-cell--11-col, .mdl-cell--11-col-tablet.mdl-cell--11-col-tablet {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--11-col, .mdl-grid--no-spacing > .mdl-cell--11-col-tablet.mdl-cell--11-col-tablet {
	width: 100%;
}
.mdl-cell--12-col, .mdl-cell--12-col-tablet.mdl-cell--12-col-tablet {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--12-col, .mdl-grid--no-spacing > .mdl-cell--12-col-tablet.mdl-cell--12-col-tablet {
	width: 100%;
}
.mdl-cell--1-offset, .mdl-cell--1-offset-tablet.mdl-cell--1-offset-tablet {
	margin-left: calc(12.5% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--1-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--1-offset-tablet.mdl-cell--1-offset-tablet {
	margin-left: 12.5%;
}
.mdl-cell--2-offset, .mdl-cell--2-offset-tablet.mdl-cell--2-offset-tablet {
	margin-left: calc(25% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--2-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--2-offset-tablet.mdl-cell--2-offset-tablet {
	margin-left: 25%;
}
.mdl-cell--3-offset, .mdl-cell--3-offset-tablet.mdl-cell--3-offset-tablet {
	margin-left: calc(37.5% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--3-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--3-offset-tablet.mdl-cell--3-offset-tablet {
	margin-left: 37.5%;
}
.mdl-cell--4-offset, .mdl-cell--4-offset-tablet.mdl-cell--4-offset-tablet {
	margin-left: calc(50% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--4-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--4-offset-tablet.mdl-cell--4-offset-tablet {
	margin-left: 50%;
}
.mdl-cell--5-offset, .mdl-cell--5-offset-tablet.mdl-cell--5-offset-tablet {
	margin-left: calc(62.5% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--5-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--5-offset-tablet.mdl-cell--5-offset-tablet {
	margin-left: 62.5%;
}
.mdl-cell--6-offset, .mdl-cell--6-offset-tablet.mdl-cell--6-offset-tablet {
	margin-left: calc(75% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--6-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--6-offset-tablet.mdl-cell--6-offset-tablet {
	margin-left: 75%;
}
.mdl-cell--7-offset, .mdl-cell--7-offset-tablet.mdl-cell--7-offset-tablet {
	margin-left: calc(87.5% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--7-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--7-offset-tablet.mdl-cell--7-offset-tablet {
	margin-left: 87.5%;
}
}


@media (min-width: 840px) {
.mdl-grid {
	padding: 8px;
}
.mdl-cell {
	margin: 8px;
	width: calc(33.3333333333% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell {
	width: 33.3333333333%;
}
.mdl-cell--hide-desktop {
	display: none !important;
}
.mdl-cell--order-1-desktop.mdl-cell--order-1-desktop {
	-webkit-order: 1;
	-ms-flex-order: 1;
	order: 1;
}
.mdl-cell--order-2-desktop.mdl-cell--order-2-desktop {
	-webkit-order: 2;
	-ms-flex-order: 2;
	order: 2;
}
.mdl-cell--order-3-desktop.mdl-cell--order-3-desktop {
	-webkit-order: 3;
	-ms-flex-order: 3;
	order: 3;
}
.mdl-cell--order-4-desktop.mdl-cell--order-4-desktop {
	-webkit-order: 4;
	-ms-flex-order: 4;
	order: 4;
}
.mdl-cell--order-5-desktop.mdl-cell--order-5-desktop {
	-webkit-order: 5;
	-ms-flex-order: 5;
	order: 5;
}
.mdl-cell--order-6-desktop.mdl-cell--order-6-desktop {
	-webkit-order: 6;
	-ms-flex-order: 6;
	order: 6;
}
.mdl-cell--order-7-desktop.mdl-cell--order-7-desktop {
	-webkit-order: 7;
	-ms-flex-order: 7;
	order: 7;
}
.mdl-cell--order-8-desktop.mdl-cell--order-8-desktop {
	-webkit-order: 8;
	-ms-flex-order: 8;
	order: 8;
}
.mdl-cell--order-9-desktop.mdl-cell--order-9-desktop {
	-webkit-order: 9;
	-ms-flex-order: 9;
	order: 9;
}
.mdl-cell--order-10-desktop.mdl-cell--order-10-desktop {
	-webkit-order: 10;
	-ms-flex-order: 10;
	order: 10;
}
.mdl-cell--order-11-desktop.mdl-cell--order-11-desktop {
	-webkit-order: 11;
	-ms-flex-order: 11;
	order: 11;
}
.mdl-cell--order-12-desktop.mdl-cell--order-12-desktop {
	-webkit-order: 12;
	-ms-flex-order: 12;
	order: 12;
}
.mdl-cell--1-col, .mdl-cell--1-col-desktop.mdl-cell--1-col-desktop {
	width: calc(8.3333333333% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--1-col, .mdl-grid--no-spacing > .mdl-cell--1-col-desktop.mdl-cell--1-col-desktop {
	width: 8.3333333333%;
}
.mdl-cell--2-col, .mdl-cell--2-col-desktop.mdl-cell--2-col-desktop {
	width: calc(16.6666666667% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--2-col, .mdl-grid--no-spacing > .mdl-cell--2-col-desktop.mdl-cell--2-col-desktop {
	width: 16.6666666667%;
}
.mdl-cell--3-col, .mdl-cell--3-col-desktop.mdl-cell--3-col-desktop {
	width: calc(25% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--3-col, .mdl-grid--no-spacing > .mdl-cell--3-col-desktop.mdl-cell--3-col-desktop {
	width: 25%;
}
.mdl-cell--4-col, .mdl-cell--4-col-desktop.mdl-cell--4-col-desktop {
	width: calc(33.3333333333% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--4-col, .mdl-grid--no-spacing > .mdl-cell--4-col-desktop.mdl-cell--4-col-desktop {
	width: 33.3333333333%;
}
.mdl-cell--5-col, .mdl-cell--5-col-desktop.mdl-cell--5-col-desktop {
	width: calc(41.6666666667% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--5-col, .mdl-grid--no-spacing > .mdl-cell--5-col-desktop.mdl-cell--5-col-desktop {
	width: 41.6666666667%;
}
.mdl-cell--6-col, .mdl-cell--6-col-desktop.mdl-cell--6-col-desktop {
	width: calc(50% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--6-col, .mdl-grid--no-spacing > .mdl-cell--6-col-desktop.mdl-cell--6-col-desktop {
	width: 50%;
}
.mdl-cell--7-col, .mdl-cell--7-col-desktop.mdl-cell--7-col-desktop {
	width: calc(58.3333333333% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--7-col, .mdl-grid--no-spacing > .mdl-cell--7-col-desktop.mdl-cell--7-col-desktop {
	width: 58.3333333333%;
}
.mdl-cell--8-col, .mdl-cell--8-col-desktop.mdl-cell--8-col-desktop {
	width: calc(66.6666666667% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--8-col, .mdl-grid--no-spacing > .mdl-cell--8-col-desktop.mdl-cell--8-col-desktop {
	width: 66.6666666667%;
}
.mdl-cell--9-col, .mdl-cell--9-col-desktop.mdl-cell--9-col-desktop {
	width: calc(75% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--9-col, .mdl-grid--no-spacing > .mdl-cell--9-col-desktop.mdl-cell--9-col-desktop {
	width: 75%;
}
.mdl-cell--10-col, .mdl-cell--10-col-desktop.mdl-cell--10-col-desktop {
	width: calc(83.3333333333% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--10-col, .mdl-grid--no-spacing > .mdl-cell--10-col-desktop.mdl-cell--10-col-desktop {
	width: 83.3333333333%;
}
.mdl-cell--11-col, .mdl-cell--11-col-desktop.mdl-cell--11-col-desktop {
	width: calc(91.6666666667% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--11-col, .mdl-grid--no-spacing > .mdl-cell--11-col-desktop.mdl-cell--11-col-desktop {
	width: 91.6666666667%;
}
.mdl-cell--12-col, .mdl-cell--12-col-desktop.mdl-cell--12-col-desktop {
	width: calc(100% - 16px);
}
.mdl-grid--no-spacing > .mdl-cell--12-col, .mdl-grid--no-spacing > .mdl-cell--12-col-desktop.mdl-cell--12-col-desktop {
	width: 100%;
}
.mdl-cell--1-offset, .mdl-cell--1-offset-desktop.mdl-cell--1-offset-desktop {
	margin-left: calc(8.3333333333% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--1-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--1-offset-desktop.mdl-cell--1-offset-desktop {
	margin-left: 8.3333333333%;
}
.mdl-cell--2-offset, .mdl-cell--2-offset-desktop.mdl-cell--2-offset-desktop {
	margin-left: calc(16.6666666667% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--2-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--2-offset-desktop.mdl-cell--2-offset-desktop {
	margin-left: 16.6666666667%;
}
.mdl-cell--3-offset, .mdl-cell--3-offset-desktop.mdl-cell--3-offset-desktop {
	margin-left: calc(25% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--3-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--3-offset-desktop.mdl-cell--3-offset-desktop {
	margin-left: 25%;
}
.mdl-cell--4-offset, .mdl-cell--4-offset-desktop.mdl-cell--4-offset-desktop {
	margin-left: calc(33.3333333333% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--4-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--4-offset-desktop.mdl-cell--4-offset-desktop {
	margin-left: 33.3333333333%;
}
.mdl-cell--5-offset, .mdl-cell--5-offset-desktop.mdl-cell--5-offset-desktop {
	margin-left: calc(41.6666666667% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--5-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--5-offset-desktop.mdl-cell--5-offset-desktop {
	margin-left: 41.6666666667%;
}
.mdl-cell--6-offset, .mdl-cell--6-offset-desktop.mdl-cell--6-offset-desktop {
	margin-left: calc(50% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--6-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--6-offset-desktop.mdl-cell--6-offset-desktop {
	margin-left: 50%;
}
.mdl-cell--7-offset, .mdl-cell--7-offset-desktop.mdl-cell--7-offset-desktop {
	margin-left: calc(58.3333333333% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--7-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--7-offset-desktop.mdl-cell--7-offset-desktop {
	margin-left: 58.3333333333%;
}
.mdl-cell--8-offset, .mdl-cell--8-offset-desktop.mdl-cell--8-offset-desktop {
	margin-left: calc(66.6666666667% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--8-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--8-offset-desktop.mdl-cell--8-offset-desktop {
	margin-left: 66.6666666667%;
}
.mdl-cell--9-offset, .mdl-cell--9-offset-desktop.mdl-cell--9-offset-desktop {
	margin-left: calc(75% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--9-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--9-offset-desktop.mdl-cell--9-offset-desktop {
	margin-left: 75%;
}
.mdl-cell--10-offset, .mdl-cell--10-offset-desktop.mdl-cell--10-offset-desktop {
	margin-left: calc(83.3333333333% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--10-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--10-offset-desktop.mdl-cell--10-offset-desktop {
	margin-left: 83.3333333333%;
}
.mdl-cell--11-offset, .mdl-cell--11-offset-desktop.mdl-cell--11-offset-desktop {
	margin-left: calc(91.6666666667% + 8px);
}
.mdl-grid.mdl-grid--no-spacing > .mdl-cell--11-offset, .mdl-grid.mdl-grid--no-spacing > .mdl-cell--11-offset-desktop.mdl-cell--11-offset-desktop {
	margin-left: 91.6666666667%;
}
}




@media (max-width: 839px) {
.pd-side-menu {
	display: none;
}
.mdl-card-medium {
	max-width: 90%;
}
}

/** CUSTOM RE STYLES **/

.pd-button {
	font-family: "Open Sans Condensed", sans-serif;
	font-size: 20px;
	letter-spacing: 1px;
}
.pd-content-container {
	padding-bottom: 50px;
}
.pd-card {
	margin: 10px auto;
	max-width: 70%;
}
.pd-ejournal-card p {
	font-size: 14px;
}
.pd-side-menu {
	font-family: 'Open Sans', sans-serif;
	margin-top: 30px;
	float: left;
	background-color: #635b4a;
	color: #fff;
	width: 300px;
	height: auto;
	border-radius: 0 5px 5px 0;
}
.pd-side-menu ul {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	padding: 0;
	list-style: none;
}
.pd-side-menu a {
	letter-spacing: 0.5px;
	display: inline-block;
	color: #fff;
	text-decoration: none;
	padding: 10px 20px;
	line-height: 24px;
	border-left: 4px solid #635b4a;
}

.pd-side-menu-button {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	height: auto;
	text-align: left;
	min-width: 210px;
	margin-top: 3px;
}
.pd-side-menu a:hover {
	border-left: 4px solid #eda320 !important;
	cursor: pointer;
}

.pd-side-menu a:focus {
	text-decoration: underline;
}
.pd-active-menu {
	letter-spacing: 0.5px;
	border-left: 4px solid #eda320 !important;
	color: #fff;
	font-weight: bold;
	font-size: 14px;
	padding: 15px 20px;
	margin-bottom: -3px;
}

.pd-menu-item-std {
	letter-spacing: 0.5px;
	border-left: 4px solid #635b4a !important;
	color: #fff;
	font-size: 14px;
	padding: 15px 20px;
	margin-bottom: -3px;
}

.pd-author-img {
	float: left;
    margin-top: 5px;
	margin-right: 20px;
	margin-bottom: 20px;
	border-radius: 3px;
	width: 170px;
	height: auto;
}
.ejournal-icon {
	margin: 7px;
	font-size: 50px;
	float: left;
	padding: 5px;
	background-color: #44304C;
	color: #fff;
	margin-right: 20px;
	border-radius: 3px;
}
.pd-launch {
	padding-right: 0;
	padding-left: 15px;
}
.pd-launch span {
	color: #fff;
	margin-right: 0;
	padding-right: 0;
}
.pd-download {
	width: 120px;
}
.pd-border {
	padding: 10px 0;
	margin-top: 10px;
}
.flex-container {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
	-webkit-justify-content: center;
	flex-wrap: wrap;
}
.flex-item {
	height: auto;
	line-height: 26px;
	padding: 5px 10px;
	margin: 10px 5px 0px 5px;
	min-width: 220px; 
}

.thumbnail-img {
	width: 100px;
    height: 100px;
	float: right; 
	margin-top: 5px;
	margin-left: 5px;
	margin-bottom: 10px; 
	border-radius: 2px;
	
}