﻿/* DS.CSS v1.1 - January 2018 - Dreamscape Technologies */
/*
*   FW = full width
*   SH = same height
*   VC = vertical centered
*   HC = horizontal centered
*   div = no padding, no margin
*   ds-container = top and bottom padding, no left or right padding, no margin
*   ds-bar, ds-bar-item: inline-block of items V and H centered within ds-bar container - centered because the padding on top and bottom is the same
 *
 *  TO DO
 *  -convert all units to EMs
*/
@import url('https://fonts.googleapis.com/css?family=Kadwa');
@import url('https://fonts.googleapis.com/css?family=Lato');


/* basic common elements *********************************************************************************************************************************************************/
html,body{  
    font-family:'Lato',Verdana,sans-serif;
    /* (min-font-size + (max-font-size - min-font-size) * 100vw - minviewportwidth / maxvw - minvw */
    font-size: calc( 14px + (20 - 14) * (100vw - 400px) / ( 1900 - 400 ));
    line-height:1.8;
}
html{overflow-x:hidden}
h1{font-size:2em}
h2{font-size:1.8em}
h3{font-size:1.6em}
h4{font-size:1.4em}
h5{font-size:1.2em}
h6{font-size:1.1em}
h1,h2,h3,h4,h5,h6{font-family:'Kadwa','Arial';font-weight:800;margin:10px 0;}
.ds-h1{font-size:2em!important}
.ds-h2{font-size:1.8em!important}
.ds-h3{font-size:1.6em!important}
.ds-h4{font-size:1.4em!important}
.ds-h5{font-size:1.2em!important}
.ds-h6{font-size:1.1em!important}
hr{border:0;border-top:1px solid #eee;margin:1em 0}
a{color:inherit}
.ds-image{max-width:100%; height: auto;}
.ds-hide { display: none!important; }
.ds-show { display: block!important; }




/* alignment **********************************************************************************************************************************************************************/
.ds-text-center {text-align:center;}
.ds-center { margin-left: auto; margin-right: auto; }
.ds-vcenter { margin-top: auto; margin-bottom: auto; }
.ds-margin-auto { margin: auto; }
.ds-text-left{text-align:left!important}
.ds-text-right{text-align:right!important}
.ds-text-justify{text-align:justify!important}
.ds-left{float:left!important}.ds-right{float:right!important}




/* main navigationand layout classes ***********************************************************************************************************************************************/
/* DISPLAY HACKS */
/* ds-row-sh: simple display attribute to set child containers to same height (for background color) 
              also works to vertically center content if nested on problematic element */
.ds-row-sh { display: flex; } 


/* DS-BAR: flex-ROW of V&H centered items****************************/
.ds-bar
{ 
    display: flex; flex-direction: row; 
    width:100%; width:auto;
    text-align: center;
}
.ds-bar-fw { justify-content: space-evenly;}

.ds-bar-item
{
    padding: .4em .8em;
}
.ds-bar-item-vc
{
    display:flex;
    flex-direction: column; 
    justify-content: center;
    padding: .4em .8em;
}

/* ds-bar tweaks */
.ds-bar .ds-dropdown-hover { position:static; float:left; }
.ds-bar .ds-button { white-space:normal }
/**********************************************************************/


/* DS-BLOCK - simple block item - takes up 100% width */
.ds-block{display:block;width:100%; float: none;}
/* DS-CONTAINER: basic div container 100% width with vertical padding */
.ds-container{padding:0.01em 1em; width: 100%;}
/* DS-PANEL: basic div container 100% width with vertical padding and vertical margin */
.ds-panel{padding:0.01em 1em; margin-top:16px;margin-bottom:16px}
/* DS-SHADOW-BOX: container with shadow effect */
.ds-shadow-box {box-shadow:0 .1em .25em 0 rgba(0,0,0,0.16),0 .1em .5em 0 rgba(0,0,0,0.12)}
.ds-shadow-box-4,.ds-hover-shadow:hover{box-shadow:0 .2em .5em 0 rgba(0,0,0,0.2),0 .2em .5em 0 rgba(0,0,0,0.19)}

/* ds-button: basic padded rectangular button */
.ds-button{
    border:none; display:inline-block; outline:0; padding:.4em .8em;
    vertical-align:middle; overflow:hidden; text-decoration:none; 
    text-align:center; cursor:pointer; white-space:nowrap;
    margin: 0px .4em;
    -webkit-touch-callout:none;-webkit-user-select:none;
    -khtml-user-select:none;-moz-user-select:none;
    -ms-user-select:none;user-select:none
}

/* tables **************************************************************************************************/
.ds-table,.ds-table-all{border-collapse:collapse;border-spacing:0;width:100%;display:table}
.ds-table-all{border:1px solid #ccc}
.ds-bordered tr,.ds-table-all tr{border-bottom:1px solid #ddd}
.ds-striped tbody tr:nth-child(even){background-color:#f1f1f1}
.ds-table-all tr:nth-child(odd){background-color:#fff}
.ds-table-all tr:nth-child(even){background-color:#f1f1f1}
.ds-table td,.ds-table th,.ds-table-all td,.ds-table-all th{padding:.4em;display:table-cell;text-align:left;vertical-align:top}
.ds-table th:first-child,.ds-table td:first-child,.ds-table-all th:first-child,.ds-table-all td:first-child{padding-left:16px}

/* dropdown menu styling ********************************************************************************/
.ds-dropdown-hover 
{
    position:relative;
    display:inline-block;
    cursor:pointer;
}
.ds-dropdown-hover:hover .ds-dropdown-content{display:block;}

.ds-dropdown-content
{
    cursor:auto; 
    opacity:.9;
    display:none;
    position:absolute;
    z-index: 1;
    margin:0;
    padding:.4em .8em .8em .8em;
    min-width: 8em;
    text-align: left;
}
.ds-dropdown-content > div
{
    padding: .25em 0;
}

/* END dropdown menu styling ********************************************************************************/





/* responsive ***********************************************************************************************************************************************************************/
/* xsmall (portrait phones, 576px and down)
/* Small devices (landscape phones, 576px and up)
/* Medium devices (tablets, 768px and up)
/* Large devices (desktops, 992px and up)
/* Extra large devices (large desktops, 1200px and up) */
.ds-half{width:100%;padding: .8em;}
.ds-third{width:100%;padding: .8em;}
.ds-quarter{width:100%;padding: .8em;}
.ds-full{width:100%;padding:.8em;}
.ds-modal{z-index:3;display:none;padding-top:5em;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)}
.ds-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}

/* grid system: 12 columns ********************************************************************************************************************************************************/
.ds-col{float:left;width:100%;padding:1em;}
.ds-col.xs1{width:8.33333%}.ds-col.xs2{width:16.66666%}.ds-col.xs3{width:24.99999%}.ds-col.xs4{width:33.33333%}
.ds-col.xs5{width:41.66666%}.ds-col.xs6{width:49.99999%}.ds-col.xs7{width:58.33333%}.ds-col.xs8{width:66.66666%}
.ds-col.xs9{width:74.99999%}.ds-col.xs10{width:83.33333%}.ds-col.xs11{width:91.66666%}.ds-col.xs12{width:99.99999%}
@media (min-width: 576px) /*and (max-width: 767.98px)*/
{
    .ds-col.s1{width:8.33333%}.ds-col.s2{width:16.66666%}.ds-col.s3,.ds-quarter{width:24.99999%}.ds-col.s4,.ds-third{width:33.33333%}
    .ds-col.s5{width:41.66666%}.ds-col.s6,.ds-half{width:49.99999%}.ds-col.s7{width:58.33333%}.ds-col.s8,.ds-twothird{width:66.66666%}
    .ds-col.s9,.ds-threequarter{width:74.99999%}.ds-col.s10{width:83.33333%}.ds-col.s11{width:91.66666%}.ds-col.s12{width:99.99999%}
}
@media (min-width: 768px) /*and (max-width: 991.98px)*/
{
    .ds-col.m1{width:8.33333%}.ds-col.m2{width:16.66666%}.ds-col.m3{width:24.99999%}.ds-col.m4{width:33.33333%}
    .ds-col.m5{width:41.66666%}.ds-col.m6{width:49.99999%}.ds-col.m7{width:58.33333%}.ds-col.m8{width:66.66666%}
    .ds-col.m9{width:74.99999%}.ds-col.m10{width:83.33333%}.ds-col.m11{width:91.66666%}.ds-col.m12{width:99.99999%}
}
@media (min-width:992px) /*and (max-width: 1199.98px)*/
{
    .ds-col.l1{width:8.33333%}.ds-col.l2{width:16.66666%}.ds-col.l3{width:24.99999%}.ds-col.l4{width:33.33333%}
    .ds-col.l5{width:41.66666%}.ds-col.l6{width:49.99999%}.ds-col.l7{width:58.33333%}.ds-col.l8{width:66.66666%}
    .ds-col.l9{width:74.99999%}.ds-col.l10{width:83.33333%}.ds-col.l11{width:91.66666%}.ds-col.l12{width:99.99999%}
}
@media (min-width: 1200px) 
{
    .ds-col.xl1{width:8.33333%}.ds-col.xl2{width:16.66666%}.ds-col.xl3{width:24.99999%}.ds-col.xl4{width:33.33333%}
    .ds-col.xl5{width:41.66666%}.ds-col.xl6{width:49.99999%}.ds-col.xl7{width:58.33333%}.ds-col.xl8{width:66.66666%}
    .ds-col.xl9{width:74.99999%}.ds-col.xl10{width:83.33333%}.ds-col.xl11{width:91.66666%}.ds-col.xl12{width:99.99999%}
}
/* END GRID SYSTEM ***********************************************************************************************************/

/* RESPONSIVE STYLINGS - MISC *************************************************************************************************/
/* xsmall (portrait phones, 576px and down) */
@media (max-width: 575.98px) 
{
    .ds-modal{padding-top:2.5em}
    .ds-modal-content{margin:0 10px;width:auto!important}.ds-modal{padding-top:30px}
    .ds-dropdown-hover.ds-mobile .ds-dropdown-content,.ds-dropdown-click.ds-mobile .ds-dropdown-content{position:relative}	
    .ds-hide-xsmall{display:none!important}
    .ds-mobile{display:block;width:100%!important}
    .ds-bar-item.ds-mobile,.ds-dropdown-hover.ds-mobile,.ds-dropdown-click.ds-mobile{text-align:center}
    .ds-dropdown-hover.ds-mobile,.ds-dropdown-hover.ds-mobile .ds-btn,.ds-dropdown-hover.ds-mobile .ds-button,.ds-dropdown-click.ds-mobile,.ds-dropdown-click.ds-mobile .ds-btn,.ds-dropdown-click.ds-mobile .ds-button{width:100%}
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px)
{
    .ds-modal-content{width:500px}
    .ds-modal{padding-top:2.5em}
    .ds-hide-small{display:none!important}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px)
{
    .ds-hide-medium{display:none!important}
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px)
{
    .ds-modal-content{width:900px}
    .ds-hide-large{display:none!important}
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) 
{
    .ds-hide-xlarge { display:none!important }
}
/*******************************************************************************************************************8/





/* special effect stylings**********************************************************************************************************************************************************/
.ds-circle{border-radius:50%}
.ds-round-small{border-radius:2px}
.ds-round,.ds-round-medium{border-radius:4px}
.ds-round-large{border-radius:8px}
.ds-round-xlarge{border-radius:16px}
.ds-round-xxlarge{border-radius:32px}
.ds-opacity,.ds-hover-opacity:hover{opacity:0.60}
.ds-opacity-off,.ds-hover-opacity-off:hover{opacity:1}
.ds-opacity-max{opacity:0.25}
.ds-opacity-min{opacity:0.75}
.ds-greyscale-max,.ds-grayscale-max,.ds-hover-greyscale:hover,.ds-hover-grayscale:hover{filter:grayscale(100%)}
.ds-greyscale,.ds-grayscale{filter:grayscale(75%)}
.ds-greyscale-min,.ds-grayscale-min{filter:grayscale(50%)}
.ds-sepia{filter:sepia(75%)}
.ds-sepia-max,.ds-hover-sepia:hover{filter:sepia(100%)}
.ds-sepia-min{filter:sepia(50%)}
.ds-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}




/* special case formats ******************************************************************************************************************************************************/
.ds-code{
    font-family:Consolas,"courier new";
    font-size:.8em;
    width:auto;
    background-color:rgb(222, 238, 243);
    margin-left:24px;
    padding:8px 12px;
    border-left:4px solid #87ceeb;
    word-wrap:break-word
}



/* minor stylings **********************************************************************************************************************************************************/

.ds-border-0{border:0!important}
.ds-border{border:1px solid #ccc!important}
.ds-border-top{border-top:1px solid #ccc!important}
.ds-border-bottom{border-bottom:1px solid #ccc!important}
.ds-border-left{border-left:1px solid #ccc!important}
.ds-border-right{border-right:1px solid #ccc!important}
.ds-thick-top{border-top:6px solid #ccc!important}
.ds-thick-bottom{border-bottom:6px solid #ccc!important}
.ds-thick-left{border-left:6px solid #ccc!important}
.ds-thick-right{border-right:6px solid #ccc!important}
.ds-margin{margin:16px!important}
.ds-margin-top{margin-top:16px!important}
.ds-margin-bottom{margin-bottom:16px!important}
.ds-margin-left{margin-left:16px!important}
.ds-margin-right{margin-right:16px!important}
.ds-padding-small{padding:4px 8px!important}
.ds-padding{padding:8px 16px!important}
.ds-padding-large{padding:12px 24px!important}
.ds-padding-16{padding-top:16px!important;padding-bottom:16px!important}
.ds-padding-24{padding-top:24px!important;padding-bottom:24px!important}
.ds-padding-32{padding-top:32px!important;padding-bottom:32px!important}
.ds-padding-48{padding-top:48px!important;padding-bottom:48px!important}
.ds-padding-64{padding-top:64px!important;padding-bottom:64px!important}



/* fixes **********************************************************************************************************************************************************************/
.ds-clear { clear: both;}
.ds-overflow { overflow: auto;}

.ds-cell-row:before,.ds-cell-row:after,.ds-clear:after,
.ds-clear:before,.ds-bar:before,.ds-bar:after
{
    content:""; display:table; clear:both
}
/***********************************************************************************************************************************************************/




/* Colors ***********************************************************************************************************************/
.ds-off-black,.ds-hover-off-black:hover{color:#eeeeee!important;background-color:#333!important}
.ds-amber,.ds-hover-amber:hover{color:#000!important;background-color:#ffc107!important}
.ds-aqua,.ds-hover-aqua:hover{color:#000!important;background-color:#00ffff!important}
.ds-blue,.ds-hover-blue:hover{color:#FFF!important;background-color:#2196F3!important}
.ds-light-blue,.ds-hover-light-blue:hover{color:#000!important;background-color:#87CEEB!important}
.ds-brown,.ds-hover-brown:hover{color:#fff!important;background-color:#795548!important}
.ds-cyan,.ds-hover-cyan:hover{color:#000!important;background-color:#00bcd4!important}
.ds-blue-grey,.ds-hover-blue-grey:hover,.ds-blue-gray,.ds-hover-blue-gray:hover{color:#fff!important;background-color:#607d8b!important}
.ds-green,.ds-hover-green:hover{color:#fff!important;background-color:#4CAF50!important}
.ds-light-green,.ds-hover-light-green:hover{color:#000!important;background-color:#8bc34a!important}
.ds-indigo,.ds-hover-indigo:hover{color:#fff!important;background-color:#3f51b5!important}
.ds-khaki,.ds-hover-khaki:hover{color:#000!important;background-color:#f0e68c!important}
.ds-lime,.ds-hover-lime:hover{color:#000!important;background-color:#cddc39!important}
.ds-orange,.ds-hover-orange:hover{color:#000!important;background-color:#ff9800!important}
.ds-deep-orange,.ds-hover-deep-orange:hover{color:#fff!important;background-color:#ff5722!important}
.ds-pink,.ds-hover-pink:hover{color:#fff!important;background-color:#e91e63!important}
.ds-purple,.ds-hover-purple:hover{color:#fff!important;background-color:#9c27b0!important}
.ds-deep-purple,.ds-hover-deep-purple:hover{color:#fff!important;background-color:#673ab7!important}
.ds-red,.ds-hover-red:hover{color:#fff!important;background-color:#f44336!important}
.ds-sand,.ds-hover-sand:hover{color:#000!important;background-color:#fdf5e6!important}
.ds-teal,.ds-hover-teal:hover{color:#fff!important;background-color:#009688!important}
.ds-yellow,.ds-hover-yellow:hover{color:#000!important;background-color:#ffeb3b!important}
.ds-white,.ds-hover-white:hover{color:#000!important;background-color:#fff!important}
.ds-black,.ds-hover-black:hover{color:#fff!important;background-color:#000!important}
.ds-grey,.ds-hover-grey:hover,.ds-gray,.ds-hover-gray:hover{color:#000!important;background-color:#9e9e9e!important}
.ds-light-grey,.ds-hover-light-grey:hover,.ds-light-gray,.ds-hover-light-gray:hover{color:#000!important;background-color:#f1f1f1!important}
.ds-dark-grey,.ds-hover-dark-grey:hover,.ds-dark-gray,.ds-hover-dark-gray:hover{color:#fff!important;background-color:#616161!important}
.ds-pale-red,.ds-hover-pale-red:hover{color:#000!important;background-color:#ffdddd!important}
.ds-pale-green,.ds-hover-pale-green:hover{color:#000!important;background-color:#ddffdd!important}
.ds-pale-yellow,.ds-hover-pale-yellow:hover{color:#000!important;background-color:#ffffcc!important}
.ds-pale-blue,.ds-hover-pale-blue:hover{color:#000!important;background-color:#ddffff!important}
.ds-text-amber,.ds-hover-text-amber:hover{color:#ffc107!important}
.ds-text-aqua,.ds-hover-text-aqua:hover{color:#00ffff!important}
.ds-text-blue,.ds-hover-text-blue:hover{color:#2196F3!important}
.ds-text-light-blue,.ds-hover-text-light-blue:hover{color:#87CEEB!important}
.ds-text-brown,.ds-hover-text-brown:hover{color:#795548!important}
.ds-text-cyan,.ds-hover-text-cyan:hover{color:#00bcd4!important}
.ds-text-blue-grey,.ds-hover-text-blue-grey:hover,.ds-text-blue-gray,.ds-hover-text-blue-gray:hover{color:#607d8b!important}
.ds-text-green,.ds-hover-text-green:hover{color:#4CAF50!important}
.ds-text-light-green,.ds-hover-text-light-green:hover{color:#8bc34a!important}
.ds-text-indigo,.ds-hover-text-indigo:hover{color:#3f51b5!important}
.ds-text-khaki,.ds-hover-text-khaki:hover{color:#b4aa50!important}
.ds-text-lime,.ds-hover-text-lime:hover{color:#cddc39!important}
.ds-text-orange,.ds-hover-text-orange:hover{color:#ff9800!important}
.ds-text-deep-orange,.ds-hover-text-deep-orange:hover{color:#ff5722!important}
.ds-text-pink,.ds-hover-text-pink:hover{color:#e91e63!important}
.ds-text-purple,.ds-hover-text-purple:hover{color:#9c27b0!important}
.ds-text-deep-purple,.ds-hover-text-deep-purple:hover{color:#673ab7!important}
.ds-text-red,.ds-hover-text-red:hover{color:#f44336!important}
.ds-text-sand,.ds-hover-text-sand:hover{color:#fdf5e6!important}
.ds-text-teal,.ds-hover-text-teal:hover{color:#009688!important}
.ds-text-yellow,.ds-hover-text-yellow:hover{color:#d2be0e!important}
.ds-text-white,.ds-hover-text-white:hover{color:#fff!important}
.ds-text-black,.ds-hover-text-black:hover{color:#000!important}
.ds-text-grey,.ds-hover-text-grey:hover,.ds-text-gray,.ds-hover-text-gray:hover{color:#757575!important}
.ds-text-light-grey,.ds-hover-text-light-grey:hover,.ds-text-light-gray,.ds-hover-text-light-gray:hover{color:#f1f1f1!important}
.ds-text-dark-grey,.ds-hover-text-dark-grey:hover,.ds-text-dark-gray,.ds-hover-text-dark-gray:hover{color:#3a3a3a!important}
.ds-border-amber,.ds-hover-border-amber:hover{border-color:#ffc107!important}
.ds-border-aqua,.ds-hover-border-aqua:hover{border-color:#00ffff!important}
.ds-border-blue,.ds-hover-border-blue:hover{border-color:#2196F3!important}
.ds-border-light-blue,.ds-hover-border-light-blue:hover{border-color:#87CEEB!important}
.ds-border-brown,.ds-hover-border-brown:hover{border-color:#795548!important}
.ds-border-cyan,.ds-hover-border-cyan:hover{border-color:#00bcd4!important}
.ds-border-blue-grey,.ds-hover-border-blue-grey:hover,.ds-border-blue-gray,.ds-hover-border-blue-gray:hover{border-color:#607d8b!important}
.ds-border-green,.ds-hover-border-green:hover{border-color:#4CAF50!important}
.ds-border-light-green,.ds-hover-border-light-green:hover{border-color:#8bc34a!important}
.ds-border-indigo,.ds-hover-border-indigo:hover{border-color:#3f51b5!important}
.ds-border-khaki,.ds-hover-border-khaki:hover{border-color:#f0e68c!important}
.ds-border-lime,.ds-hover-border-lime:hover{border-color:#cddc39!important}
.ds-border-orange,.ds-hover-border-orange:hover{border-color:#ff9800!important}
.ds-border-deep-orange,.ds-hover-border-deep-orange:hover{border-color:#ff5722!important}
.ds-border-pink,.ds-hover-border-pink:hover{border-color:#e91e63!important}
.ds-border-purple,.ds-hover-border-purple:hover{border-color:#9c27b0!important}
.ds-border-deep-purple,.ds-hover-border-deep-purple:hover{border-color:#673ab7!important}
.ds-border-red,.ds-hover-border-red:hover{border-color:#f44336!important}
.ds-border-sand,.ds-hover-border-sand:hover{border-color:#fdf5e6!important}
.ds-border-teal,.ds-hover-border-teal:hover{border-color:#009688!important}
.ds-border-yellow,.ds-hover-border-yellow:hover{border-color:#ffeb3b!important}
.ds-border-white,.ds-hover-border-white:hover{border-color:#fff!important}
.ds-border-black,.ds-hover-border-black:hover{border-color:#000!important}
.ds-border-grey,.ds-hover-border-grey:hover,.ds-border-gray,.ds-hover-border-gray:hover{border-color:#9e9e9e!important}
.ds-border-light-grey,.ds-hover-border-light-grey:hover,.ds-border-light-gray,.ds-hover-border-light-gray:hover{border-color:#f1f1f1!important}
.ds-border-dark-grey,.ds-hover-border-dark-grey:hover,.ds-border-dark-gray,.ds-hover-border-dark-gray:hover{border-color:#616161!important}
.ds-border-pale-red,.ds-hover-border-pale-red:hover{border-color:#ffe7e7!important}.ds-border-pale-green,.ds-hover-border-pale-green:hover{border-color:#e7ffe7!important}
.ds-border-pale-yellow,.ds-hover-border-pale-yellow:hover{border-color:#ffffcc!important}.ds-border-pale-blue,.ds-hover-border-pale-blue:hover{border-color:#e7ffff!important}

/**/

html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}
/* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */
html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block}
audio,canvas,progress,video{display:inline-block}progress{vertical-align:baseline}
audio:not([controls]){display:none;height:0}[hidden],template{display:none}
a{background-color:transparent;-webkit-text-decoration-skip:objects; text-decoration:none;}
a:active,a:hover{outline-width:0}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}
dfn{font-style:italic}mark{background:#ff0;color:#000}
small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
sub{bottom:-0.25em}sup{top:-0.5em}figure{margin:1em 40px}img{border-style:none}svg:not(:root){overflow:hidden}
code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}hr{box-sizing:content-box;height:0;overflow:visible}
button,input,select,textarea{font:inherit;margin:0}optgroup{font-weight:bold}
button,input{overflow:visible}button,select{text-transform:none}
button,html [type=button],[type=reset],[type=submit]{-webkit-appearance:button}
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner{border-style:none;padding:0}
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring{outline:1px dotted ButtonText}
fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
legend{color:inherit;display:table;max-width:100%;padding:0;white-space:normal}textarea{overflow:auto}
[type=checkbox],[type=radio]{padding:0}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}
[type=search]{-webkit-appearance:textfield;outline-offset:-2px}
[type=search]::-webkit-search-cancel-button,[type=search]::-webkit-search-decoration{-webkit-appearance:none}
::-webkit-input-placeholder{color:inherit;opacity:0.54}
::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}
/* End extract */
