
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_6d6365b231de0ebbb6053bfe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f6dba7288739cb78008ea301.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ee5bb3c13a3c48d2848863e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_04e195f90d68dff51016cb6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_aea38db8ab295575dc91a6ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_846d7b234537baf52ba0c23c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0ea288fdb06923fa15b25477.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5edcc6e5f13dfa804432e815.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_086f1f06af777531f610ec67.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a42a054694496ec6d29af884.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2ed9f8d10be00d7f040229bf.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d9002bce0015d8263c598428.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c5a914ca02f82c073a7bc34d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_25927859cf0d3d851eac2375.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_7af4c5b68f00343ba36b5ce3.woff2')format("woff");}.fff{font-family:fff;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_25b28e2284a0fff9afeb26cb.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_97329a58b0f02e620c0c6548.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9b7496225f384b881f7e62c0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1220a7d330f6e6f4016358f3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_141f9c43de818b5a2ea41bda.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_ee7183334027a419a7d2f8eb.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.015000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2da1714f67e6640fd411e8a3.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_6a76209a29d2e4bf91964ff7.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.071000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_1502e44dc5a50441bcdabaf1.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_72e139a1ae401be104a449a2.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.071000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_5ac0fa222f67da4f6de1c8dc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_7017e707479afb9237abbace.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.980000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_47cfc7be30d811efefd1fbb5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_67d0e73abad248d9c55ea83b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_afd0b96c4ce245c378581227.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.987000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_5e52437901d8e8889b023dcc.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_f63cfee7b9f5c81b59c40231.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_0c20f6205c77df74adce0ca1.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_852afd81f0020bd4e88b4577.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_9fe3112cddd9aa3f27787957.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_ef1f8f603e5beb65d3f1905f.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_e4a01a79b066c49655218392.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.157000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_c0f0505ffff6a44f0c1be3b4.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(-0.004526,0.249959,-0.249959,-0.004526,0,0);-ms-transform:matrix(-0.004526,0.249959,-0.249959,-0.004526,0,0);-webkit-transform:matrix(-0.004526,0.249959,-0.249959,-0.004526,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-164.745612px;}
.wsc{word-spacing:-135.148522px;}
.ws6{word-spacing:-79.950239px;}
.wsb{word-spacing:-79.522017px;}
.ws0{word-spacing:-78.030830px;}
.ws4{word-spacing:-77.309544px;}
.ws5{word-spacing:-77.303130px;}
.ws7{word-spacing:-69.619275px;}
.wsa{word-spacing:-56.378790px;}
.wse{word-spacing:-56.285336px;}
.ws10{word-spacing:-51.535419px;}
.ws12{word-spacing:-49.948793px;}
.wsd{word-spacing:-41.991823px;}
.wsf{word-spacing:-40.405198px;}
.ws11{word-spacing:-37.220025px;}
.ws3{word-spacing:-27.832280px;}
.ws1{word-spacing:-27.032674px;}
.ws8{word-spacing:-20.673814px;}
.ws9{word-spacing:-17.488639px;}
.ws15{word-spacing:-16.963742px;}
.ws14{word-spacing:-15.235361px;}
.ws2{word-spacing:0.000000px;}
._5c{margin-left:-20.580694px;}
._79{margin-left:-12.257636px;}
._2{margin-left:-9.015822px;}
._81{margin-left:-7.852637px;}
._3d{margin-left:-6.409154px;}
._5d{margin-left:-4.767886px;}
._1{margin-left:-3.175538px;}
._2d{margin-left:-1.007487px;}
._19{width:1.154169px;}
._13{width:2.171274px;}
._0{width:4.048590px;}
._3c{width:5.401712px;}
._1d{width:6.620493px;}
._39{width:7.903741px;}
._21{width:9.738414px;}
._12{width:10.799745px;}
._18{width:12.733427px;}
._15{width:14.209657px;}
._26{width:15.522627px;}
._22{width:16.638350px;}
._8a{width:18.255499px;}
._33{width:19.321657px;}
._36{width:20.348125px;}
._23{width:22.044455px;}
._44{width:23.247405px;}
._2e{width:24.421540px;}
._6e{width:25.485999px;}
._8{width:26.490935px;}
._34{width:27.687070px;}
._46{width:29.034796px;}
._52{width:30.552017px;}
._17{width:31.908110px;}
._d{width:33.805198px;}
._11{width:35.506504px;}
._4e{width:37.124477px;}
._10{width:38.429108px;}
._6{width:40.151252px;}
._30{width:41.897191px;}
._35{width:43.474741px;}
._1a{width:45.326531px;}
._3b{width:46.523370px;}
._5b{width:47.950685px;}
._4{width:49.153440px;}
._37{width:51.049096px;}
._a{width:52.934147px;}
._3{width:54.518579px;}
._28{width:55.772283px;}
._6b{width:57.340166px;}
._2b{width:58.916234px;}
._47{width:59.920174px;}
._9{width:61.215585px;}
._50{width:62.296007px;}
._58{width:63.514362px;}
._b{width:64.525629px;}
._45{width:65.588928px;}
._2c{width:67.025414px;}
._1b{width:68.613673px;}
._27{width:69.827066px;}
._14{width:71.849514px;}
._20{width:73.101087px;}
._40{width:74.342036px;}
._57{width:75.626734px;}
._16{width:77.132813px;}
._71{width:78.375221px;}
._69{width:79.781591px;}
._82{width:81.277447px;}
._29{width:82.484159px;}
._3a{width:84.135466px;}
._48{width:85.173396px;}
._74{width:87.181345px;}
._42{width:88.540141px;}
._1e{width:89.886859px;}
._31{width:90.905817px;}
._7d{width:91.927236px;}
._3e{width:93.165999px;}
._66{width:94.599353px;}
._4b{width:95.803627px;}
._51{width:97.211922px;}
._4c{width:99.185907px;}
._80{width:100.218914px;}
._64{width:101.731241px;}
._5f{width:102.879240px;}
._2f{width:104.458798px;}
._3f{width:105.576470px;}
._59{width:107.198428px;}
._c{width:108.696957px;}
._43{width:110.176429px;}
._62{width:112.183726px;}
._54{width:113.677771px;}
._75{width:115.521006px;}
._77{width:116.895605px;}
._6d{width:118.005267px;}
._38{width:121.497631px;}
._49{width:122.966781px;}
._72{width:124.373221px;}
._5e{width:125.625791px;}
._1c{width:126.735889px;}
._65{width:129.003803px;}
._25{width:130.355296px;}
._60{width:133.050310px;}
._7c{width:135.241877px;}
._78{width:137.141127px;}
._89{width:142.052682px;}
._5{width:143.654382px;}
._68{width:147.167879px;}
._f{width:149.104489px;}
._70{width:150.935124px;}
._73{width:152.953916px;}
._53{width:157.853351px;}
._88{width:163.776813px;}
._6a{width:165.375471px;}
._e{width:166.640309px;}
._24{width:171.571719px;}
._2a{width:173.272846px;}
._7b{width:175.405950px;}
._4a{width:177.838892px;}
._63{width:178.855209px;}
._32{width:189.307258px;}
._7{width:191.744094px;}
._7e{width:194.794963px;}
._83{width:204.552388px;}
._41{width:206.657049px;}
._87{width:210.501458px;}
._4d{width:212.648154px;}
._56{width:215.497947px;}
._4f{width:232.919470px;}
._55{width:251.915964px;}
._67{width:262.743667px;}
._5a{width:268.305078px;}
._7a{width:283.595446px;}
._86{width:290.468474px;}
._84{width:295.617954px;}
._61{width:300.821187px;}
._85{width:311.821629px;}
._6f{width:313.433451px;}
._76{width:339.187868px;}
._6c{width:376.785894px;}
._1f{width:382.099947px;}
._7f{width:448.072888px;}
.fc2{color:rgb(41,48,57);}
.fc1{color:transparent;}
.fc3{color:rgb(16,16,16);}
.fc0{color:rgb(255,255,255);}
.fs14{font-size:64.014120px;}
.fs9{font-size:65.994864px;}
.fs8{font-size:78.014394px;}
.fs2{font-size:102.010091px;}
.fs1{font-size:102.010095px;}
.fs3{font-size:105.027473px;}
.fs12{font-size:140.452924px;}
.fse{font-size:152.472444px;}
.fsc{font-size:158.459708px;}
.fs11{font-size:179.977811px;}
.fs13{font-size:188.486013px;}
.fsf{font-size:194.473277px;}
.fsd{font-size:212.397494px;}
.fsa{font-size:212.750150px;}
.fs5{font-size:291.709923px;}
.fs4{font-size:291.734129px;}
.fs0{font-size:294.455962px;}
.fs7{font-size:300.083082px;}
.fs10{font-size:306.025317px;}
.fs6{font-size:360.136211px;}
.fsb{font-size:509.994424px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y30{bottom:8.760801px;}
.y21{bottom:8.791215px;}
.y40{bottom:8.814502px;}
.y14{bottom:8.818251px;}
.y25{bottom:8.841933px;}
.y3b{bottom:8.902661px;}
.y10{bottom:8.966025px;}
.y2b{bottom:8.974898px;}
.y36{bottom:8.990819px;}
.y1b{bottom:9.025615px;}
.y9{bottom:9.414072px;}
.y3c{bottom:15.615020px;}
.y111{bottom:18.418536px;}
.y9f{bottom:18.513060px;}
.y15c{bottom:18.588759px;}
.yed{bottom:18.633671px;}
.y16{bottom:23.511808px;}
.y12{bottom:23.563993px;}
.y1d{bottom:23.623539px;}
.y22{bottom:23.661024px;}
.y1b6{bottom:28.090224px;}
.y33{bottom:28.508825px;}
.y8{bottom:32.347996px;}
.ya{bottom:37.575019px;}
.ya1{bottom:40.000236px;}
.y90{bottom:41.738690px;}
.y2f{bottom:44.848958px;}
.y20{bottom:44.879373px;}
.y3f{bottom:44.902659px;}
.y24{bottom:44.930090px;}
.y3a{bottom:44.990818px;}
.yf{bottom:45.054183px;}
.y2a{bottom:45.063055px;}
.y35{bottom:45.078977px;}
.y1a{bottom:45.113772px;}
.y38{bottom:51.615019px;}
.y1b5{bottom:55.100400px;}
.y7{bottom:62.415018px;}
.y87{bottom:62.508716px;}
.y110{bottom:70.476745px;}
.y9e{bottom:70.571269px;}
.y15b{bottom:70.646968px;}
.yec{bottom:70.691880px;}
.y2e{bottom:80.937115px;}
.y1f{bottom:80.967530px;}
.y3e{bottom:80.990816px;}
.y39{bottom:81.078975px;}
.ye{bottom:81.142340px;}
.y29{bottom:81.151212px;}
.y19{bottom:81.201930px;}
.y1b4{bottom:82.110577px;}
.y86{bottom:85.017197px;}
.y34{bottom:87.615017px;}
.y8f{bottom:90.855017px;}
.y1b0{bottom:90.856584px;}
.y18b{bottom:106.138284px;}
.y85{bottom:107.525678px;}
.y1b3{bottom:109.120754px;}
.y159{bottom:110.633907px;}
.y1af{bottom:113.365064px;}
.y1bb{bottom:115.874272px;}
.y2d{bottom:117.025272px;}
.y3d{bottom:117.078974px;}
.yd{bottom:117.230497px;}
.y28{bottom:117.239370px;}
.y18{bottom:117.290087px;}
.y10f{bottom:122.534954px;}
.y9d{bottom:122.629478px;}
.y84{bottom:130.034158px;}
.y185{bottom:132.360204px;}
.y158{bottom:133.142387px;}
.y1ae{bottom:135.873545px;}
.y1b2{bottom:136.130931px;}
.y1ba{bottom:138.382752px;}
.ycc{bottom:138.382799px;}
.yb{bottom:140.153415px;}
.y9a{bottom:142.695015px;}
.y10e{bottom:145.575015px;}
.ye9{bottom:145.729885px;}
.y18a{bottom:152.280670px;}
.y83{bottom:152.542639px;}
.y27{bottom:153.327527px;}
.y184{bottom:154.868685px;}
.y157{bottom:155.650868px;}
.y1ad{bottom:158.382026px;}
.y1b9{bottom:160.891233px;}
.ycb{bottom:160.891280px;}
.y1b1{bottom:163.141108px;}
.y126{bottom:163.732794px;}
.y9c{bottom:174.687688px;}
.y82{bottom:175.051120px;}
.y37{bottom:175.907625px;}
.y183{bottom:177.377166px;}
.y156{bottom:178.159349px;}
.y15a{bottom:179.415013px;}
.y1ac{bottom:180.890506px;}
.y1b8{bottom:183.399714px;}
.yca{bottom:183.399760px;}
.y60{bottom:190.151284px;}
.ya6{bottom:193.009563px;}
.y8b{bottom:193.135010px;}
.ye8{bottom:194.123119px;}
.y81{bottom:197.559600px;}
.y189{bottom:198.423055px;}
.y125{bottom:198.620939px;}
.y182{bottom:199.885646px;}
.y155{bottom:200.667829px;}
.y1ab{bottom:203.398987px;}
.y1b7{bottom:205.908194px;}
.yc9{bottom:205.908241px;}
.y1eb{bottom:209.666849px;}
.y5f{bottom:217.161461px;}
.yeb{bottom:217.215012px;}
.y80{bottom:220.068081px;}
.y10c{bottom:220.291014px;}
.y181{bottom:222.394127px;}
.y154{bottom:223.176310px;}
.y1aa{bottom:225.907468px;}
.y9b{bottom:226.745897px;}
.yc8{bottom:228.416722px;}
.ya5{bottom:230.148556px;}
.y1ea{bottom:231.049906px;}
.y124{bottom:233.509084px;}
.ye7{bottom:242.516352px;}
.y7f{bottom:242.576561px;}
.y10b{bottom:242.799495px;}
.y5e{bottom:244.171638px;}
.y188{bottom:244.565440px;}
.y180{bottom:244.902608px;}
.y153{bottom:245.684791px;}
.y8a{bottom:246.029939px;}
.y1a9{bottom:248.415948px;}
.yc7{bottom:250.925202px;}
.y1e9{bottom:252.432962px;}
.y17{bottom:258.255010px;}
.y2c{bottom:258.615010px;}
.y96{bottom:259.426101px;}
.y7e{bottom:265.085042px;}
.y10a{bottom:265.307976px;}
.ya4{bottom:267.287549px;}
.y17f{bottom:267.411088px;}
.y152{bottom:268.193271px;}
.y1a8{bottom:270.924429px;}
.y5d{bottom:271.181815px;}
.yc6{bottom:273.433683px;}
.y1e8{bottom:273.816019px;}
.y7d{bottom:287.593523px;}
.y109{bottom:287.816456px;}
.y17e{bottom:289.919569px;}
.y151{bottom:290.701752px;}
.y187{bottom:290.707826px;}
.ye6{bottom:290.909586px;}
.y1a7{bottom:293.432910px;}
.y6{bottom:294.924408px;}
.y1e7{bottom:295.199075px;}
.yc5{bottom:295.942164px;}
.y5c{bottom:298.191991px;}
.y95{bottom:298.815942px;}
.y89{bottom:298.924869px;}
.ya3{bottom:304.426543px;}
.y7c{bottom:310.102003px;}
.y108{bottom:310.324937px;}
.y17d{bottom:312.428050px;}
.y150{bottom:313.210233px;}
.y1a6{bottom:315.941390px;}
.y1e6{bottom:316.582132px;}
.y123{bottom:316.985131px;}
.yc4{bottom:318.450644px;}
.y5b{bottom:325.202168px;}
.y23{bottom:330.615007px;}
.y7b{bottom:332.610484px;}
.y107{bottom:332.833418px;}
.y17c{bottom:334.936530px;}
.y14f{bottom:335.718713px;}
.y186{bottom:336.850211px;}
.y1e5{bottom:337.965189px;}
.y94{bottom:338.205783px;}
.y1a5{bottom:338.449871px;}
.ye5{bottom:339.302819px;}
.yc3{bottom:340.959125px;}
.ya2{bottom:341.565536px;}
.y88{bottom:351.819798px;}
.y5a{bottom:352.212345px;}
.y7a{bottom:355.118965px;}
.y106{bottom:355.341898px;}
.y17b{bottom:357.445011px;}
.y14e{bottom:358.227194px;}
.y1e4{bottom:359.348245px;}
.y1a4{bottom:360.958352px;}
.yc2{bottom:363.467606px;}
.y5{bottom:364.700698px;}
.y10d{bottom:372.820167px;}
.y93{bottom:377.595624px;}
.y79{bottom:377.627445px;}
.y105{bottom:377.850379px;}
.y122{bottom:378.883453px;}
.y59{bottom:379.222522px;}
.y17a{bottom:379.953492px;}
.y1e3{bottom:380.731302px;}
.y14d{bottom:380.735675px;}
.y1a3{bottom:383.466832px;}
.yc1{bottom:385.976086px;}
.y1c{bottom:395.055004px;}
.y78{bottom:400.135926px;}
.y104{bottom:400.358860px;}
.y1e2{bottom:402.114359px;}
.y179{bottom:402.461972px;}
.y14c{bottom:403.244155px;}
.y1a2{bottom:405.975313px;}
.y58{bottom:406.232699px;}
.yc0{bottom:408.484567px;}
.y92{bottom:416.985466px;}
.y31{bottom:418.853939px;}
.y77{bottom:422.644407px;}
.y103{bottom:422.867340px;}
.y1e1{bottom:423.497415px;}
.y178{bottom:424.970453px;}
.y14b{bottom:425.752636px;}
.y1a1{bottom:428.483794px;}
.ybf{bottom:430.993048px;}
.y57{bottom:433.242875px;}
.y1dd{bottom:433.996095px;}
.y4{bottom:434.476988px;}
.y1e0{bottom:444.880472px;}
.y76{bottom:445.152887px;}
.y102{bottom:445.375821px;}
.y177{bottom:447.478934px;}
.y14a{bottom:448.261117px;}
.y1a0{bottom:450.992274px;}
.ye4{bottom:453.501507px;}
.ybe{bottom:453.501528px;}
.y1dc{bottom:455.379151px;}
.y91{bottom:456.375307px;}
.y56{bottom:460.253052px;}
.y1df{bottom:466.263528px;}
.y75{bottom:467.661368px;}
.y101{bottom:467.884302px;}
.y176{bottom:469.987414px;}
.y149{bottom:470.769597px;}
.y19f{bottom:473.500755px;}
.ye3{bottom:476.009987px;}
.ybd{bottom:476.010009px;}
.y1db{bottom:476.762208px;}
.y55{bottom:487.263229px;}
.y74{bottom:490.169849px;}
.y100{bottom:490.392782px;}
.y175{bottom:492.495895px;}
.y148{bottom:493.278078px;}
.y19e{bottom:496.009236px;}
.y1da{bottom:498.145265px;}
.ye2{bottom:498.518468px;}
.ybc{bottom:498.518490px;}
.y3{bottom:504.253278px;}
.y1de{bottom:509.029642px;}
.y73{bottom:512.678329px;}
.yff{bottom:512.901263px;}
.y54{bottom:514.273406px;}
.y174{bottom:515.004376px;}
.y147{bottom:515.786559px;}
.y19d{bottom:518.517716px;}
.y1d9{bottom:519.528321px;}
.ye1{bottom:521.026949px;}
.ybb{bottom:521.026970px;}
.y26{bottom:532.574998px;}
.y72{bottom:535.186810px;}
.yfe{bottom:535.409744px;}
.y173{bottom:537.512856px;}
.y146{bottom:538.295039px;}
.y1d8{bottom:540.911378px;}
.y19c{bottom:541.026197px;}
.y53{bottom:541.283583px;}
.ye0{bottom:543.535429px;}
.yba{bottom:543.535451px;}
.y71{bottom:557.695291px;}
.yfd{bottom:557.918224px;}
.y172{bottom:560.021337px;}
.y145{bottom:560.803520px;}
.y1d7{bottom:562.294435px;}
.y19b{bottom:563.534678px;}
.ydf{bottom:566.043910px;}
.yb9{bottom:566.043932px;}
.y52{bottom:568.293759px;}
.yc{bottom:568.574997px;}
.y2{bottom:574.029568px;}
.y121{bottom:580.075100px;}
.y70{bottom:580.203771px;}
.yfc{bottom:580.426705px;}
.y171{bottom:582.529818px;}
.y144{bottom:583.312000px;}
.y1d6{bottom:583.677491px;}
.y19a{bottom:586.043158px;}
.yde{bottom:588.552391px;}
.yb8{bottom:588.552412px;}
.y51{bottom:595.303936px;}
.y120{bottom:602.583581px;}
.y6f{bottom:602.712252px;}
.yfb{bottom:602.935186px;}
.y1e{bottom:604.934995px;}
.y170{bottom:605.038298px;}
.y1d5{bottom:605.060548px;}
.y143{bottom:605.820481px;}
.y199{bottom:608.551639px;}
.ydd{bottom:611.060871px;}
.yb7{bottom:611.060893px;}
.y50{bottom:622.314113px;}
.y11f{bottom:625.092062px;}
.y6e{bottom:625.220733px;}
.yfa{bottom:625.443666px;}
.y1d4{bottom:626.443604px;}
.y16f{bottom:627.546779px;}
.y142{bottom:628.328962px;}
.y198{bottom:631.060120px;}
.ydc{bottom:633.569352px;}
.yb6{bottom:633.569374px;}
.y11e{bottom:647.600542px;}
.y6d{bottom:647.729213px;}
.y1cd{bottom:647.826661px;}
.yf9{bottom:647.952147px;}
.y4f{bottom:649.324290px;}
.y16e{bottom:650.055260px;}
.y141{bottom:650.837442px;}
.y197{bottom:653.568600px;}
.ydb{bottom:656.077833px;}
.yb5{bottom:656.077854px;}
.y1cc{bottom:669.209718px;}
.y11d{bottom:670.109023px;}
.y6c{bottom:670.237694px;}
.yf8{bottom:670.460628px;}
.y16d{bottom:672.563740px;}
.y140{bottom:673.345923px;}
.y196{bottom:676.077081px;}
.y4e{bottom:676.334467px;}
.yda{bottom:678.586313px;}
.yb4{bottom:678.586335px;}
.y1cb{bottom:690.592774px;}
.y11c{bottom:692.617504px;}
.y6b{bottom:692.746175px;}
.yf7{bottom:692.969108px;}
.y16c{bottom:695.072221px;}
.y13f{bottom:695.854404px;}
.y195{bottom:698.585562px;}
.yd9{bottom:701.094794px;}
.yb3{bottom:701.094816px;}
.y4d{bottom:703.344643px;}
.y11{bottom:705.374991px;}
.y1d3{bottom:711.975831px;}
.y11b{bottom:715.125984px;}
.y6a{bottom:715.254655px;}
.yf6{bottom:715.477589px;}
.y16b{bottom:717.580702px;}
.y13e{bottom:718.362884px;}
.y194{bottom:721.094042px;}
.yd8{bottom:723.603275px;}
.yb2{bottom:723.603296px;}
.y4c{bottom:730.354820px;}
.y1ca{bottom:733.358888px;}
.y11a{bottom:737.634465px;}
.y69{bottom:737.763136px;}
.y131{bottom:737.888535px;}
.yf5{bottom:737.986070px;}
.y16a{bottom:740.089182px;}
.y13d{bottom:740.871365px;}
.y193{bottom:743.602523px;}
.yd7{bottom:746.111755px;}
.yb1{bottom:746.111777px;}
.y1c9{bottom:754.741944px;}
.y4b{bottom:757.364997px;}
.y119{bottom:760.142946px;}
.y68{bottom:760.271617px;}
.y130{bottom:760.397016px;}
.yf4{bottom:760.494550px;}
.y169{bottom:762.597663px;}
.y13c{bottom:763.379846px;}
.y192{bottom:766.111004px;}
.yd6{bottom:768.620236px;}
.yb0{bottom:768.620258px;}
.y1d2{bottom:776.125001px;}
.y118{bottom:782.651426px;}
.y67{bottom:782.780097px;}
.y12f{bottom:782.905496px;}
.yf3{bottom:783.003031px;}
.y4a{bottom:784.375174px;}
.y168{bottom:785.106144px;}
.y13b{bottom:785.888326px;}
.y191{bottom:788.619484px;}
.yd5{bottom:791.128717px;}
.yaf{bottom:791.128738px;}
.y1c8{bottom:797.508057px;}
.y117{bottom:805.159907px;}
.y66{bottom:805.288578px;}
.y12e{bottom:805.413977px;}
.yf2{bottom:805.511512px;}
.y167{bottom:807.614624px;}
.y13a{bottom:808.396807px;}
.y190{bottom:811.127965px;}
.y49{bottom:811.385351px;}
.yd4{bottom:813.637197px;}
.yae{bottom:813.637219px;}
.y1c7{bottom:818.891114px;}
.y116{bottom:827.668388px;}
.y65{bottom:827.797059px;}
.y12d{bottom:827.922458px;}
.yf1{bottom:828.019992px;}
.y166{bottom:830.123105px;}
.y139{bottom:830.905288px;}
.y18f{bottom:833.636446px;}
.yd3{bottom:836.145678px;}
.yad{bottom:836.145700px;}
.y48{bottom:838.395527px;}
.y1c6{bottom:840.274171px;}
.y13{bottom:842.894986px;}
.y115{bottom:850.176868px;}
.y64{bottom:850.305539px;}
.y12c{bottom:850.430938px;}
.yf0{bottom:850.528473px;}
.y165{bottom:852.631586px;}
.y138{bottom:853.413768px;}
.y18e{bottom:856.144926px;}
.yd2{bottom:858.654159px;}
.yac{bottom:858.654180px;}
.y1d1{bottom:861.657227px;}
.y47{bottom:865.405704px;}
.y15{bottom:871.334984px;}
.y114{bottom:872.685349px;}
.y63{bottom:872.814020px;}
.y12b{bottom:872.939419px;}
.yef{bottom:873.036954px;}
.y164{bottom:875.140066px;}
.y137{bottom:875.922249px;}
.y18d{bottom:878.653407px;}
.yd1{bottom:881.162639px;}
.yab{bottom:881.162661px;}
.y1c5{bottom:883.040284px;}
.y46{bottom:892.415881px;}
.y113{bottom:895.193830px;}
.y62{bottom:895.322501px;}
.y12a{bottom:895.447899px;}
.yee{bottom:895.545434px;}
.y163{bottom:897.648547px;}
.y136{bottom:898.430730px;}
.y18c{bottom:901.161888px;}
.yd0{bottom:903.671120px;}
.yaa{bottom:903.671142px;}
.y1c4{bottom:904.423341px;}
.y112{bottom:917.702310px;}
.y61{bottom:917.830981px;}
.y129{bottom:917.956380px;}
.y45{bottom:919.426058px;}
.y162{bottom:920.157028px;}
.y135{bottom:920.939210px;}
.y1d0{bottom:925.806397px;}
.ycf{bottom:926.179601px;}
.ya9{bottom:926.179622px;}
.y161{bottom:942.665508px;}
.y134{bottom:943.447691px;}
.y44{bottom:946.436235px;}
.y1c3{bottom:947.189454px;}
.yce{bottom:948.688081px;}
.ya8{bottom:948.688103px;}
.y160{bottom:965.173989px;}
.y133{bottom:965.956172px;}
.y1c2{bottom:968.572511px;}
.ya0{bottom:970.200768px;}
.ycd{bottom:971.196562px;}
.ya7{bottom:971.196584px;}
.y43{bottom:973.446411px;}
.y132{bottom:988.464652px;}
.y42{bottom:1000.456588px;}
.y1c1{bottom:1011.338624px;}
.y8e{bottom:1014.686085px;}
.y15f{bottom:1023.953086px;}
.y1c0{bottom:1032.721680px;}
.y128{bottom:1036.748176px;}
.y99{bottom:1037.726210px;}
.y1cf{bottom:1054.104737px;}
.y32{bottom:1057.814977px;}
.yea{bottom:1059.632115px;}
.y1bf{bottom:1075.487794px;}
.y8d{bottom:1082.211527px;}
.y15e{bottom:1091.478528px;}
.y1be{bottom:1096.870850px;}
.y127{bottom:1104.273618px;}
.y98{bottom:1105.251652px;}
.y1ce{bottom:1118.253907px;}
.y41{bottom:1127.157557px;}
.y1bd{bottom:1139.636964px;}
.y8c{bottom:1149.736969px;}
.y15d{bottom:1159.003970px;}
.y1bc{bottom:1161.020020px;}
.y97{bottom:1172.777094px;}
.hc{height:34.199999px;}
.h24{height:47.516302px;}
.h27{height:53.521835px;}
.h32{height:56.012355px;}
.h4{height:56.879998px;}
.h31{height:57.100595px;}
.h1e{height:57.151553px;}
.h19{height:57.745506px;}
.h30{height:58.867419px;}
.h2f{height:67.560465px;}
.h18{height:68.262595px;}
.hf{height:70.199997px;}
.h15{height:70.559997px;}
.h9{height:90.953792px;}
.h7{height:91.911092px;}
.h5{height:91.911095px;}
.hd{height:95.039996px;}
.ha{height:95.399996px;}
.h2b{height:101.126105px;}
.he{height:106.199996px;}
.h16{height:106.559996px;}
.h13{height:117.719995px;}
.h25{height:119.879995px;}
.h2a{height:129.584024px;}
.h21{height:132.041136px;}
.h1d{height:137.226107px;}
.h22{height:140.020760px;}
.h6{height:141.479994px;}
.h11{height:142.199994px;}
.h8{height:142.559994px;}
.h26{height:160.360108px;}
.h2d{height:163.228887px;}
.h1b{height:166.679993px;}
.h29{height:171.719993px;}
.h10{height:178.559993px;}
.h20{height:183.936230px;}
.h1a{height:184.241630px;}
.h2e{height:213.659155px;}
.h23{height:216.059819px;}
.h2c{height:226.562727px;}
.h12{height:252.620793px;}
.hb{height:252.641756px;}
.h17{height:259.871949px;}
.h28{height:265.017924px;}
.h3{height:265.304822px;}
.h1f{height:275.759989px;}
.h14{height:311.877958px;}
.h1c{height:441.655172px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w3{width:36.359998px;}
.w6{width:55.799998px;}
.w7{width:73.079997px;}
.w5{width:92.879996px;}
.wb{width:94.319996px;}
.wf{width:95.399996px;}
.w9{width:95.759996px;}
.wd{width:97.199996px;}
.w17{width:174.599993px;}
.w8{width:180.719992px;}
.w4{width:181.799992px;}
.w12{width:183.959992px;}
.we{width:192.959992px;}
.w16{width:202.319992px;}
.wc{width:207.359991px;}
.w14{width:209.159991px;}
.wa{width:209.519991px;}
.w10{width:212.399991px;}
.w13{width:212.759991px;}
.w18{width:248.399990px;}
.w15{width:249.839990px;}
.w2{width:309.239987px;}
.w11{width:424.439982px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:4.161650px;}
.x4{left:11.764068px;}
.x1{left:56.134850px;}
.x10{left:66.801914px;}
.x15{left:72.159848px;}
.xb{left:83.187436px;}
.xc{left:86.563710px;}
.x6{left:89.279996px;}
.x5{left:93.959996px;}
.x2{left:158.039993px;}
.x8{left:367.559985px;}
.x7{left:371.879985px;}
.xd{left:457.842858px;}
.x11{left:472.510924px;}
.xe{left:477.191097px;}
.x16{left:487.906986px;}
.x19{left:492.459632px;}
.x3{left:494.999979px;}
.x1a{left:499.679979px;}
.xf{left:509.195679px;}
.x12{left:511.919979px;}
.x1b{left:514.079979px;}
.x14{left:522.110588px;}
.x17{left:527.468490px;}
.x18{left:532.799978px;}
.x1d{left:566.809373px;}
.x1f{left:587.541794px;}
.x1c{left:594.997728px;}
.x20{left:620.442862px;}
.x1e{left:625.261084px;}
.xa{left:638.999973px;}
.x9{left:643.679973px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws13{word-spacing:-146.440544pt;}
.wsc{word-spacing:-120.132020pt;}
.ws6{word-spacing:-71.066879pt;}
.wsb{word-spacing:-70.686237pt;}
.ws0{word-spacing:-69.360738pt;}
.ws4{word-spacing:-68.719595pt;}
.ws5{word-spacing:-68.713893pt;}
.ws7{word-spacing:-61.883800pt;}
.wsa{word-spacing:-50.114480pt;}
.wse{word-spacing:-50.031410pt;}
.ws10{word-spacing:-45.809261pt;}
.ws12{word-spacing:-44.398927pt;}
.wsd{word-spacing:-37.326065pt;}
.wsf{word-spacing:-35.915731pt;}
.ws11{word-spacing:-33.084467pt;}
.ws3{word-spacing:-24.739805pt;}
.ws1{word-spacing:-24.029044pt;}
.ws8{word-spacing:-18.376724pt;}
.ws9{word-spacing:-15.545457pt;}
.ws15{word-spacing:-15.078882pt;}
.ws14{word-spacing:-13.542543pt;}
.ws2{word-spacing:0.000000pt;}
._5c{margin-left:-18.293951pt;}
._79{margin-left:-10.895677pt;}
._2{margin-left:-8.014064pt;}
._81{margin-left:-6.980122pt;}
._3d{margin-left:-5.697026pt;}
._5d{margin-left:-4.238121pt;}
._1{margin-left:-2.822700pt;}
._2d{margin-left:-0.895544pt;}
._19{width:1.025928pt;}
._13{width:1.930022pt;}
._0{width:3.598747pt;}
._3c{width:4.801522pt;}
._1d{width:5.884882pt;}
._39{width:7.025547pt;}
._21{width:8.656368pt;}
._12{width:9.599773pt;}
._18{width:11.318602pt;}
._15{width:12.630806pt;}
._26{width:13.797891pt;}
._22{width:14.789645pt;}
._8a{width:16.227110pt;}
._33{width:17.174807pt;}
._36{width:18.087222pt;}
._23{width:19.595071pt;}
._44{width:20.664360pt;}
._2e{width:21.708036pt;}
._6e{width:22.654222pt;}
._8{width:23.547498pt;}
._34{width:24.610729pt;}
._46{width:25.808707pt;}
._52{width:27.157348pt;}
._17{width:28.362764pt;}
._d{width:30.049065pt;}
._11{width:31.561337pt;}
._4e{width:32.999536pt;}
._10{width:34.159207pt;}
._6{width:35.690002pt;}
._30{width:37.241947pt;}
._35{width:38.644214pt;}
._1a{width:40.290250pt;}
._3b{width:41.354107pt;}
._5b{width:42.622831pt;}
._4{width:43.691946pt;}
._37{width:45.376974pt;}
._a{width:47.052575pt;}
._3{width:48.460959pt;}
._28{width:49.575363pt;}
._6b{width:50.969037pt;}
._2b{width:52.369986pt;}
._47{width:53.262377pt;}
._9{width:54.413853pt;}
._50{width:55.374228pt;}
._58{width:56.457210pt;}
._b{width:57.356115pt;}
._45{width:58.301270pt;}
._2c{width:59.578146pt;}
._1b{width:60.989931pt;}
._27{width:62.068503pt;}
._14{width:63.866235pt;}
._20{width:64.978744pt;}
._40{width:66.081810pt;}
._57{width:67.223764pt;}
._16{width:68.562500pt;}
._71{width:69.666863pt;}
._69{width:70.916970pt;}
._82{width:72.246620pt;}
._29{width:73.319252pt;}
._3a{width:74.787081pt;}
._48{width:75.709686pt;}
._74{width:77.494529pt;}
._42{width:78.702348pt;}
._1e{width:79.899431pt;}
._31{width:80.805171pt;}
._7d{width:81.713099pt;}
._3e{width:82.814221pt;}
._66{width:84.088314pt;}
._4b{width:85.158779pt;}
._51{width:86.410597pt;}
._4c{width:88.165251pt;}
._80{width:89.083479pt;}
._64{width:90.427770pt;}
._5f{width:91.448213pt;}
._2f{width:92.852265pt;}
._3f{width:93.845751pt;}
._59{width:95.287492pt;}
._c{width:96.619517pt;}
._43{width:97.934604pt;}
._62{width:99.718868pt;}
._54{width:101.046908pt;}
._75{width:102.685338pt;}
._77{width:103.907204pt;}
._6d{width:104.893570pt;}
._38{width:107.997894pt;}
._49{width:109.303805pt;}
._72{width:110.553974pt;}
._5e{width:111.667370pt;}
._1c{width:112.654123pt;}
._65{width:114.670047pt;}
._25{width:115.871374pt;}
._60{width:118.266943pt;}
._7c{width:120.215002pt;}
._78{width:121.903224pt;}
._89{width:126.269051pt;}
._5{width:127.692784pt;}
._68{width:130.815892pt;}
._f{width:132.537323pt;}
._70{width:134.164555pt;}
._73{width:135.959036pt;}
._53{width:140.314090pt;}
._88{width:145.579390pt;}
._6a{width:147.000418pt;}
._e{width:148.124719pt;}
._24{width:152.508195pt;}
._2a{width:154.020308pt;}
._7b{width:155.916400pt;}
._4a{width:158.079015pt;}
._63{width:158.982408pt;}
._32{width:168.273119pt;}
._7{width:170.439195pt;}
._7e{width:173.151078pt;}
._83{width:181.824345pt;}
._41{width:183.695155pt;}
._87{width:187.112408pt;}
._4d{width:189.020581pt;}
._56{width:191.553730pt;}
._4f{width:207.039529pt;}
._55{width:223.925302pt;}
._67{width:233.549926pt;}
._5a{width:238.493403pt;}
._7a{width:252.084841pt;}
._86{width:258.194199pt;}
._84{width:262.771514pt;}
._61{width:267.396611pt;}
._85{width:277.174781pt;}
._6f{width:278.607512pt;}
._76{width:301.500327pt;}
._6c{width:334.920795pt;}
._1f{width:339.644398pt;}
._7f{width:398.287012pt;}
.fs14{font-size:56.901440pt;}
.fs9{font-size:58.662102pt;}
.fs8{font-size:69.346128pt;}
.fs2{font-size:90.675637pt;}
.fs1{font-size:90.675640pt;}
.fs3{font-size:93.357754pt;}
.fs12{font-size:124.847043pt;}
.fse{font-size:135.531061pt;}
.fsc{font-size:140.853074pt;}
.fs11{font-size:159.980277pt;}
.fs13{font-size:167.543122pt;}
.fsf{font-size:172.865135pt;}
.fsd{font-size:188.797772pt;}
.fsa{font-size:189.111245pt;}
.fs5{font-size:259.297709pt;}
.fs4{font-size:259.319226pt;}
.fs0{font-size:261.738633pt;}
.fs7{font-size:266.740518pt;}
.fs10{font-size:272.022504pt;}
.fs6{font-size:320.121076pt;}
.fsb{font-size:453.328377pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y30{bottom:7.787378pt;}
.y21{bottom:7.814414pt;}
.y40{bottom:7.835113pt;}
.y14{bottom:7.838445pt;}
.y25{bottom:7.859496pt;}
.y3b{bottom:7.913476pt;}
.y10{bottom:7.969800pt;}
.y2b{bottom:7.977687pt;}
.y36{bottom:7.991839pt;}
.y1b{bottom:8.022769pt;}
.y9{bottom:8.368064pt;}
.y3c{bottom:13.880018pt;}
.y111{bottom:16.372032pt;}
.y9f{bottom:16.456053pt;}
.y15c{bottom:16.523341pt;}
.yed{bottom:16.563263pt;}
.y16{bottom:20.899385pt;}
.y12{bottom:20.945772pt;}
.y1d{bottom:20.998701pt;}
.y22{bottom:21.032022pt;}
.y1b6{bottom:24.969088pt;}
.y33{bottom:25.341178pt;}
.y8{bottom:28.753774pt;}
.ya{bottom:33.400017pt;}
.ya1{bottom:35.555765pt;}
.y90{bottom:37.101058pt;}
.y2f{bottom:39.865740pt;}
.y20{bottom:39.892776pt;}
.y3f{bottom:39.913475pt;}
.y24{bottom:39.937858pt;}
.y3a{bottom:39.991838pt;}
.yf{bottom:40.048162pt;}
.y2a{bottom:40.056049pt;}
.y35{bottom:40.070201pt;}
.y1a{bottom:40.101131pt;}
.y38{bottom:45.880016pt;}
.y1b5{bottom:48.978134pt;}
.y7{bottom:55.480016pt;}
.y87{bottom:55.563303pt;}
.y110{bottom:62.645995pt;}
.y9e{bottom:62.730017pt;}
.y15b{bottom:62.797305pt;}
.yec{bottom:62.837227pt;}
.y2e{bottom:71.944102pt;}
.y1f{bottom:71.971138pt;}
.y3e{bottom:71.991837pt;}
.y39{bottom:72.070200pt;}
.ye{bottom:72.126524pt;}
.y29{bottom:72.134411pt;}
.y19{bottom:72.179493pt;}
.y1b4{bottom:72.987180pt;}
.y86{bottom:75.570842pt;}
.y34{bottom:77.880015pt;}
.y8f{bottom:80.760015pt;}
.y1b0{bottom:80.761408pt;}
.y18b{bottom:94.345142pt;}
.y85{bottom:95.578380pt;}
.y1b3{bottom:96.996226pt;}
.y159{bottom:98.341250pt;}
.y1af{bottom:100.768946pt;}
.y1bb{bottom:102.999353pt;}
.y2d{bottom:104.022464pt;}
.y3d{bottom:104.070199pt;}
.yd{bottom:104.204886pt;}
.y28{bottom:104.212773pt;}
.y18{bottom:104.257855pt;}
.y10f{bottom:108.919959pt;}
.y9d{bottom:109.003981pt;}
.y84{bottom:115.585918pt;}
.y185{bottom:117.653515pt;}
.y158{bottom:118.348789pt;}
.y1ae{bottom:120.776485pt;}
.y1b2{bottom:121.005272pt;}
.y1ba{bottom:123.006891pt;}
.ycc{bottom:123.006932pt;}
.yb{bottom:124.580814pt;}
.y9a{bottom:126.840013pt;}
.y10e{bottom:129.400013pt;}
.ye9{bottom:129.537676pt;}
.y18a{bottom:135.360595pt;}
.y83{bottom:135.593457pt;}
.y27{bottom:136.291135pt;}
.y184{bottom:137.661053pt;}
.y157{bottom:138.356327pt;}
.y1ad{bottom:140.784023pt;}
.y1b9{bottom:143.014429pt;}
.ycb{bottom:143.014471pt;}
.y1b1{bottom:145.014318pt;}
.y126{bottom:145.540261pt;}
.y9c{bottom:155.277945pt;}
.y82{bottom:155.600995pt;}
.y37{bottom:156.362333pt;}
.y183{bottom:157.668592pt;}
.y156{bottom:158.363865pt;}
.y15a{bottom:159.480012pt;}
.y1ac{bottom:160.791561pt;}
.y1b8{bottom:163.021968pt;}
.yca{bottom:163.022009pt;}
.y60{bottom:169.023364pt;}
.ya6{bottom:171.564056pt;}
.y8b{bottom:171.675564pt;}
.ye8{bottom:172.553883pt;}
.y81{bottom:175.608533pt;}
.y189{bottom:176.376049pt;}
.y125{bottom:176.551946pt;}
.y182{bottom:177.676130pt;}
.y155{bottom:178.371404pt;}
.y1ab{bottom:180.799100pt;}
.y1b7{bottom:183.029506pt;}
.yc9{bottom:183.029548pt;}
.y1eb{bottom:186.370532pt;}
.y5f{bottom:193.032410pt;}
.yeb{bottom:193.080010pt;}
.y80{bottom:195.616072pt;}
.y10c{bottom:195.814235pt;}
.y181{bottom:197.683669pt;}
.y154{bottom:198.378942pt;}
.y1aa{bottom:200.806638pt;}
.y9b{bottom:201.551908pt;}
.yc8{bottom:203.037086pt;}
.ya5{bottom:204.576495pt;}
.y1ea{bottom:205.377694pt;}
.y124{bottom:207.563630pt;}
.ye7{bottom:215.570091pt;}
.y7f{bottom:215.623610pt;}
.y10b{bottom:215.821773pt;}
.y5e{bottom:217.041456pt;}
.y188{bottom:217.391503pt;}
.y180{bottom:217.691207pt;}
.y153{bottom:218.386481pt;}
.y8a{bottom:218.693279pt;}
.y1a9{bottom:220.814176pt;}
.yc7{bottom:223.044624pt;}
.y1e9{bottom:224.384855pt;}
.y17{bottom:229.560009pt;}
.y2c{bottom:229.880009pt;}
.y96{bottom:230.600979pt;}
.y7e{bottom:235.631149pt;}
.y10a{bottom:235.829312pt;}
.ya4{bottom:237.588933pt;}
.y17f{bottom:237.698745pt;}
.y152{bottom:238.394019pt;}
.y1a8{bottom:240.821715pt;}
.y5d{bottom:241.050502pt;}
.yc6{bottom:243.052163pt;}
.y1e8{bottom:243.392017pt;}
.y7d{bottom:255.638687pt;}
.y109{bottom:255.836850pt;}
.y17e{bottom:257.706284pt;}
.y151{bottom:258.401557pt;}
.y187{bottom:258.406956pt;}
.ye6{bottom:258.586298pt;}
.y1a7{bottom:260.829253pt;}
.y6{bottom:262.155029pt;}
.y1e7{bottom:262.399178pt;}
.yc5{bottom:263.059701pt;}
.y5c{bottom:265.059548pt;}
.y95{bottom:265.614171pt;}
.y89{bottom:265.710994pt;}
.ya3{bottom:270.601371pt;}
.y7c{bottom:275.646225pt;}
.y108{bottom:275.844389pt;}
.y17d{bottom:277.713822pt;}
.y150{bottom:278.409096pt;}
.y1a6{bottom:280.836791pt;}
.y1e6{bottom:281.406340pt;}
.y123{bottom:281.764561pt;}
.yc4{bottom:283.067239pt;}
.y5b{bottom:289.068594pt;}
.y23{bottom:293.880006pt;}
.y7b{bottom:295.653764pt;}
.y107{bottom:295.851927pt;}
.y17c{bottom:297.721360pt;}
.y14f{bottom:298.416634pt;}
.y186{bottom:299.422410pt;}
.y1e5{bottom:300.413501pt;}
.y94{bottom:300.627363pt;}
.y1a5{bottom:300.844330pt;}
.ye5{bottom:301.602506pt;}
.yc3{bottom:303.074778pt;}
.ya2{bottom:303.613809pt;}
.y88{bottom:312.728710pt;}
.y5a{bottom:313.077640pt;}
.y7a{bottom:315.661302pt;}
.y106{bottom:315.859465pt;}
.y17b{bottom:317.728899pt;}
.y14e{bottom:318.424172pt;}
.y1e4{bottom:319.420663pt;}
.y1a4{bottom:320.851868pt;}
.yc2{bottom:323.082316pt;}
.y5{bottom:324.178398pt;}
.y10d{bottom:331.395704pt;}
.y93{bottom:335.640555pt;}
.y79{bottom:335.668840pt;}
.y105{bottom:335.867004pt;}
.y122{bottom:336.785292pt;}
.y59{bottom:337.086686pt;}
.y17a{bottom:337.736437pt;}
.y1e3{bottom:338.427824pt;}
.y14d{bottom:338.431711pt;}
.y1a3{bottom:340.859407pt;}
.yc1{bottom:343.089855pt;}
.y1c{bottom:351.160004pt;}
.y78{bottom:355.676379pt;}
.y104{bottom:355.874542pt;}
.y1e2{bottom:357.434985pt;}
.y179{bottom:357.743975pt;}
.y14c{bottom:358.439249pt;}
.y1a2{bottom:360.866945pt;}
.y58{bottom:361.095732pt;}
.yc0{bottom:363.097393pt;}
.y92{bottom:370.653747pt;}
.y31{bottom:372.314612pt;}
.y77{bottom:375.683917pt;}
.y103{bottom:375.882080pt;}
.y1e1{bottom:376.442147pt;}
.y178{bottom:377.751514pt;}
.y14b{bottom:378.446787pt;}
.y1a1{bottom:380.874483pt;}
.ybf{bottom:383.104931pt;}
.y57{bottom:385.104778pt;}
.y1dd{bottom:385.774306pt;}
.y4{bottom:386.201767pt;}
.y1e0{bottom:395.449308pt;}
.y76{bottom:395.691456pt;}
.y102{bottom:395.889619pt;}
.y177{bottom:397.759052pt;}
.y14a{bottom:398.454326pt;}
.y1a0{bottom:400.882022pt;}
.ye4{bottom:403.112450pt;}
.ybe{bottom:403.112470pt;}
.y1dc{bottom:404.781468pt;}
.y91{bottom:405.666939pt;}
.y56{bottom:409.113824pt;}
.y1df{bottom:414.456470pt;}
.y75{bottom:415.698994pt;}
.y101{bottom:415.897157pt;}
.y176{bottom:417.766591pt;}
.y149{bottom:418.461864pt;}
.y19f{bottom:420.889560pt;}
.ye3{bottom:423.119989pt;}
.ybd{bottom:423.120008pt;}
.y1db{bottom:423.788629pt;}
.y55{bottom:433.122870pt;}
.y74{bottom:435.706532pt;}
.y100{bottom:435.904695pt;}
.y175{bottom:437.774129pt;}
.y148{bottom:438.469403pt;}
.y19e{bottom:440.897098pt;}
.y1da{bottom:442.795791pt;}
.ye2{bottom:443.127527pt;}
.ybc{bottom:443.127546pt;}
.y3{bottom:448.225136pt;}
.y1de{bottom:452.470793pt;}
.y73{bottom:455.714071pt;}
.yff{bottom:455.912234pt;}
.y54{bottom:457.131916pt;}
.y174{bottom:457.781667pt;}
.y147{bottom:458.476941pt;}
.y19d{bottom:460.904637pt;}
.y1d9{bottom:461.802952pt;}
.ye1{bottom:463.135066pt;}
.ybb{bottom:463.135085pt;}
.y26{bottom:473.399999pt;}
.y72{bottom:475.721609pt;}
.yfe{bottom:475.919772pt;}
.y173{bottom:477.789206pt;}
.y146{bottom:478.484479pt;}
.y1d8{bottom:480.810114pt;}
.y19c{bottom:480.912175pt;}
.y53{bottom:481.140962pt;}
.ye0{bottom:483.142604pt;}
.yba{bottom:483.142623pt;}
.y71{bottom:495.729147pt;}
.yfd{bottom:495.927311pt;}
.y172{bottom:497.796744pt;}
.y145{bottom:498.492018pt;}
.y1d7{bottom:499.817275pt;}
.y19b{bottom:500.919714pt;}
.ydf{bottom:503.150142pt;}
.yb9{bottom:503.150161pt;}
.y52{bottom:505.150008pt;}
.yc{bottom:505.399997pt;}
.y2{bottom:510.248505pt;}
.y121{bottom:515.622311pt;}
.y70{bottom:515.736686pt;}
.yfc{bottom:515.934849pt;}
.y171{bottom:517.804282pt;}
.y144{bottom:518.499556pt;}
.y1d6{bottom:518.824437pt;}
.y19a{bottom:520.927252pt;}
.yde{bottom:523.157681pt;}
.yb8{bottom:523.157700pt;}
.y51{bottom:529.159054pt;}
.y120{bottom:535.629850pt;}
.y6f{bottom:535.744224pt;}
.yfb{bottom:535.942387pt;}
.y1e{bottom:537.719996pt;}
.y170{bottom:537.811821pt;}
.y1d5{bottom:537.831598pt;}
.y143{bottom:538.507094pt;}
.y199{bottom:540.934790pt;}
.ydd{bottom:543.165219pt;}
.yb7{bottom:543.165238pt;}
.y50{bottom:553.168100pt;}
.y11f{bottom:555.637388pt;}
.y6e{bottom:555.751762pt;}
.yfa{bottom:555.949926pt;}
.y1d4{bottom:556.838760pt;}
.y16f{bottom:557.819359pt;}
.y142{bottom:558.514633pt;}
.y198{bottom:560.942329pt;}
.ydc{bottom:563.172757pt;}
.yb6{bottom:563.172777pt;}
.y11e{bottom:575.644926pt;}
.y6d{bottom:575.759301pt;}
.y1cd{bottom:575.845921pt;}
.yf9{bottom:575.957464pt;}
.y4f{bottom:577.177147pt;}
.y16e{bottom:577.826898pt;}
.y141{bottom:578.522171pt;}
.y197{bottom:580.949867pt;}
.ydb{bottom:583.180296pt;}
.yb5{bottom:583.180315pt;}
.y1cc{bottom:594.853082pt;}
.y11d{bottom:595.652465pt;}
.y6c{bottom:595.766839pt;}
.yf8{bottom:595.965002pt;}
.y16d{bottom:597.834436pt;}
.y140{bottom:598.529709pt;}
.y196{bottom:600.957405pt;}
.y4e{bottom:601.186193pt;}
.yda{bottom:603.187834pt;}
.yb4{bottom:603.187853pt;}
.y1cb{bottom:613.860244pt;}
.y11c{bottom:615.660003pt;}
.y6b{bottom:615.774378pt;}
.yf7{bottom:615.972541pt;}
.y16c{bottom:617.841974pt;}
.y13f{bottom:618.537248pt;}
.y195{bottom:620.964944pt;}
.yd9{bottom:623.195372pt;}
.yb3{bottom:623.195392pt;}
.y4d{bottom:625.195239pt;}
.y11{bottom:626.999992pt;}
.y1d3{bottom:632.867405pt;}
.y11b{bottom:635.667542pt;}
.y6a{bottom:635.781916pt;}
.yf6{bottom:635.980079pt;}
.y16b{bottom:637.849513pt;}
.y13e{bottom:638.544786pt;}
.y194{bottom:640.972482pt;}
.yd8{bottom:643.202911pt;}
.yb2{bottom:643.202930pt;}
.y4c{bottom:649.204285pt;}
.y1ca{bottom:651.874567pt;}
.y11a{bottom:655.675080pt;}
.y69{bottom:655.789454pt;}
.y131{bottom:655.900920pt;}
.yf5{bottom:655.987617pt;}
.y16a{bottom:657.857051pt;}
.y13d{bottom:658.552325pt;}
.y193{bottom:660.980020pt;}
.yd7{bottom:663.210449pt;}
.yb1{bottom:663.210468pt;}
.y1c9{bottom:670.881728pt;}
.y4b{bottom:673.213331pt;}
.y119{bottom:675.682618pt;}
.y68{bottom:675.796993pt;}
.y130{bottom:675.908458pt;}
.yf4{bottom:675.995156pt;}
.y169{bottom:677.864589pt;}
.y13c{bottom:678.559863pt;}
.y192{bottom:680.987559pt;}
.yd6{bottom:683.217988pt;}
.yb0{bottom:683.218007pt;}
.y1d2{bottom:689.888890pt;}
.y118{bottom:695.690157pt;}
.y67{bottom:695.804531pt;}
.y12f{bottom:695.915997pt;}
.yf3{bottom:696.002694pt;}
.y4a{bottom:697.222377pt;}
.y168{bottom:697.872128pt;}
.y13b{bottom:698.567401pt;}
.y191{bottom:700.995097pt;}
.yd5{bottom:703.225526pt;}
.yaf{bottom:703.225545pt;}
.y1c8{bottom:708.896051pt;}
.y117{bottom:715.697695pt;}
.y66{bottom:715.812069pt;}
.y12e{bottom:715.923535pt;}
.yf2{bottom:716.010233pt;}
.y167{bottom:717.879666pt;}
.y13a{bottom:718.574940pt;}
.y190{bottom:721.002636pt;}
.y49{bottom:721.231423pt;}
.yd4{bottom:723.233064pt;}
.yae{bottom:723.233083pt;}
.y1c7{bottom:727.903213pt;}
.y116{bottom:735.705233pt;}
.y65{bottom:735.819608pt;}
.y12d{bottom:735.931073pt;}
.yf1{bottom:736.017771pt;}
.y166{bottom:737.887204pt;}
.y139{bottom:738.582478pt;}
.y18f{bottom:741.010174pt;}
.yd3{bottom:743.240603pt;}
.yad{bottom:743.240622pt;}
.y48{bottom:745.240469pt;}
.y1c6{bottom:746.910374pt;}
.y13{bottom:749.239987pt;}
.y115{bottom:755.712772pt;}
.y64{bottom:755.827146pt;}
.y12c{bottom:755.938612pt;}
.yf0{bottom:756.025309pt;}
.y165{bottom:757.894743pt;}
.y138{bottom:758.590016pt;}
.y18e{bottom:761.017712pt;}
.yd2{bottom:763.248141pt;}
.yac{bottom:763.248160pt;}
.y1d1{bottom:765.917535pt;}
.y47{bottom:769.249515pt;}
.y15{bottom:774.519986pt;}
.y114{bottom:775.720310pt;}
.y63{bottom:775.834684pt;}
.y12b{bottom:775.946150pt;}
.yef{bottom:776.032848pt;}
.y164{bottom:777.902281pt;}
.y137{bottom:778.597555pt;}
.y18d{bottom:781.025251pt;}
.yd1{bottom:783.255679pt;}
.yab{bottom:783.255699pt;}
.y1c5{bottom:784.924697pt;}
.y46{bottom:793.258561pt;}
.y113{bottom:795.727848pt;}
.y62{bottom:795.842223pt;}
.y12a{bottom:795.953688pt;}
.yee{bottom:796.040386pt;}
.y163{bottom:797.909820pt;}
.y136{bottom:798.605093pt;}
.y18c{bottom:801.032789pt;}
.yd0{bottom:803.263218pt;}
.yaa{bottom:803.263237pt;}
.y1c4{bottom:803.931858pt;}
.y112{bottom:815.735387pt;}
.y61{bottom:815.849761pt;}
.y129{bottom:815.961227pt;}
.y45{bottom:817.267607pt;}
.y162{bottom:817.917358pt;}
.y135{bottom:818.612631pt;}
.y1d0{bottom:822.939020pt;}
.ycf{bottom:823.270756pt;}
.ya9{bottom:823.270775pt;}
.y161{bottom:837.924896pt;}
.y134{bottom:838.620170pt;}
.y44{bottom:841.276653pt;}
.y1c3{bottom:841.946181pt;}
.yce{bottom:843.278294pt;}
.ya8{bottom:843.278314pt;}
.y160{bottom:857.932435pt;}
.y133{bottom:858.627708pt;}
.y1c2{bottom:860.953343pt;}
.ya0{bottom:862.400683pt;}
.ycd{bottom:863.285833pt;}
.ya7{bottom:863.285852pt;}
.y43{bottom:865.285699pt;}
.y132{bottom:878.635247pt;}
.y42{bottom:889.294745pt;}
.y1c1{bottom:898.967666pt;}
.y8e{bottom:901.943187pt;}
.y15f{bottom:910.180520pt;}
.y1c0{bottom:917.974827pt;}
.y128{bottom:921.553934pt;}
.y99{bottom:922.423298pt;}
.y1cf{bottom:936.981988pt;}
.y32{bottom:940.279979pt;}
.yea{bottom:941.895213pt;}
.y1bf{bottom:955.989150pt;}
.y8d{bottom:961.965802pt;}
.y15e{bottom:970.203136pt;}
.y1be{bottom:974.996311pt;}
.y127{bottom:981.576549pt;}
.y98{bottom:982.445913pt;}
.y1ce{bottom:994.003473pt;}
.y41{bottom:1001.917828pt;}
.y1bd{bottom:1013.010634pt;}
.y8c{bottom:1021.988417pt;}
.y15d{bottom:1030.225751pt;}
.y1bc{bottom:1032.017796pt;}
.y97{bottom:1042.468528pt;}
.hc{height:30.399999pt;}
.h24{height:42.236713pt;}
.h27{height:47.574964pt;}
.h32{height:49.788760pt;}
.h4{height:50.559998pt;}
.h31{height:50.756085pt;}
.h1e{height:50.801380pt;}
.h19{height:51.329339pt;}
.h30{height:52.326595pt;}
.h2f{height:60.053747pt;}
.h18{height:60.677862pt;}
.hf{height:62.399997pt;}
.h15{height:62.719997pt;}
.h9{height:80.847815pt;}
.h7{height:81.698749pt;}
.h5{height:81.698752pt;}
.hd{height:84.479996pt;}
.ha{height:84.799996pt;}
.h2b{height:89.889871pt;}
.he{height:94.399996pt;}
.h16{height:94.719996pt;}
.h13{height:104.639996pt;}
.h25{height:106.559996pt;}
.h2a{height:115.185799pt;}
.h21{height:117.369899pt;}
.h1d{height:121.978762pt;}
.h22{height:124.462898pt;}
.h6{height:125.759995pt;}
.h11{height:126.399995pt;}
.h8{height:126.719995pt;}
.h26{height:142.542318pt;}
.h2d{height:145.092344pt;}
.h1b{height:148.159994pt;}
.h29{height:152.639994pt;}
.h10{height:158.719993pt;}
.h20{height:163.498871pt;}
.h1a{height:163.770338pt;}
.h2e{height:189.919248pt;}
.h23{height:192.053173pt;}
.h2c{height:201.389091pt;}
.h12{height:224.551816pt;}
.hb{height:224.570450pt;}
.h17{height:230.997288pt;}
.h28{height:235.571488pt;}
.h3{height:235.826508pt;}
.h1f{height:245.119990pt;}
.h14{height:277.224852pt;}
.h1c{height:392.582375pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w3{width:32.319999pt;}
.w6{width:49.599998pt;}
.w7{width:64.959997pt;}
.w5{width:82.559997pt;}
.wb{width:83.839997pt;}
.wf{width:84.799996pt;}
.w9{width:85.119996pt;}
.wd{width:86.399996pt;}
.w17{width:155.199994pt;}
.w8{width:160.639993pt;}
.w4{width:161.599993pt;}
.w12{width:163.519993pt;}
.we{width:171.519993pt;}
.w16{width:179.839993pt;}
.wc{width:184.319992pt;}
.w14{width:185.919992pt;}
.wa{width:186.239992pt;}
.w10{width:188.799992pt;}
.w13{width:189.119992pt;}
.w18{width:220.799991pt;}
.w15{width:222.079991pt;}
.w2{width:274.879989pt;}
.w11{width:377.279984pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:3.699245pt;}
.x4{left:10.456950pt;}
.x1{left:49.897644pt;}
.x10{left:59.379479pt;}
.x15{left:64.142087pt;}
.xb{left:73.944387pt;}
.xc{left:76.945520pt;}
.x6{left:79.359997pt;}
.x5{left:83.519997pt;}
.x2{left:140.479994pt;}
.x8{left:326.719986pt;}
.x7{left:330.559986pt;}
.xd{left:406.971429pt;}
.x11{left:420.009710pt;}
.xe{left:424.169864pt;}
.x16{left:433.695099pt;}
.x19{left:437.741895pt;}
.x3{left:439.999982pt;}
.x1a{left:444.159981pt;}
.xf{left:452.618381pt;}
.x12{left:455.039981pt;}
.x1b{left:456.959981pt;}
.x14{left:464.098301pt;}
.x17{left:468.860880pt;}
.x18{left:473.599980pt;}
.x1d{left:503.830554pt;}
.x1f{left:522.259372pt;}
.x1c{left:528.886869pt;}
.x20{left:551.504766pt;}
.x1e{left:555.787630pt;}
.xa{left:567.999976pt;}
.x9{left:572.159976pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  