
    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_a5e2515e914cc4ac09242d16.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.694824;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_1f076965393eeee6f9ff5943.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.825195;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_3e241d17050b41ddc1c81f0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895996;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_629be996ad25a6c0f2e40e2b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_6daa5988f7c48b4819a4972f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_4e8206c29e387d97d8eb6f38.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_4e2bc72dde097c716f71d493.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_c2c4aa87aaabe9769eebd60f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966309;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_35ac3cb16df5d1bf4573e32f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972168;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_87d2c52103d2bd4727ce53e6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.774902;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_bd92b92ae0fcf44a743f0bc1.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.774902;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_de9a8c3d73c8d8f4b1838d8e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.895996;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_87eaa278a9b9166ff72ffb84.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.694336;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_267e07eed573d41149ed3a75.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.774902;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_f6dc1a207778de9fe4c2e8ce.woff2')format("woff");}.fff{font-family:fff;line-height:0.966309;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_7f428df138703ceefbe7f120.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.750000;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_3a64465e475ec47c1569782f.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.120605;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_4f7befdbf98a9c25dbbe40e2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727539;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_87eaa278a9b9166ff72ffb84.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.694336;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_b76a709ea9c022ea972a71c3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.971191;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_cb68d52648a8819f35ff286d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.971191;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_48da42f2bbc94818dc498e9b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.774902;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_4f7befdbf98a9c25dbbe40e2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.727539;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_87eaa278a9b9166ff72ffb84.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.694336;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_4b5538200719756091742479.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.971191;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_26bb0c1574b0196bf6c272f9.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.694824;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_b55114da5a5dcc5142766ffc.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.120605;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_fb8643feae5db0f3ad7f760b.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.971191;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_4f7befdbf98a9c25dbbe40e2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.727539;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_2cfe4a67720a7d1989ae2022.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.861816;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_7dca11f0e073496102ed8dd7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.971191;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_87eaa278a9b9166ff72ffb84.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.694336;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_161eb59404392155a94d3c2d.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.120605;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_97296c45b8e99d4d081637b2.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.971191;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_2ddfb916a5eaebbc32e389a1.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.971191;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_e5c51f78508c04c778d07052.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.691406;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_6bc467543e94645065e1e09c.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.971191;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_e541ed7d2e5a24b20ffa3a6d.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.024902;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:ff27;src:url('chunks/assets/font_dbaef47027025d574ff12d67.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.024902;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:ff28;src:url('chunks/assets/font_87eaa278a9b9166ff72ffb84.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.694336;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;}
.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);}
.v2{vertical-align:-331.080000px;}
.v1{vertical-align:-26.064000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.423600px;}
.ls5{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.273000px;}
.lse{letter-spacing:-0.227400px;}
.ls1a{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.198000px;}
.ls14{letter-spacing:-0.171600px;}
.ls19{letter-spacing:-0.170400px;}
.ls6{letter-spacing:-0.148200px;}
.ls4{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.008640px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.156960px;}
.ls1{letter-spacing:0.168480px;}
.ls0{letter-spacing:0.206400px;}
.ls12{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.263400px;}
.ls2{letter-spacing:0.275040px;}
.ls1b{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.296400px;}
.lsb{letter-spacing:0.347040px;}
.ls13{letter-spacing:0.402000px;}
.ls16{letter-spacing:0.432000px;}
.lsc{letter-spacing:223.224000px;}
.ls11{letter-spacing:306.000000px;}
.ls9{letter-spacing:321.120000px;}
.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;}
}
.wsf{word-spacing:-288.000000px;}
.ws9{word-spacing:-264.240000px;}
.ws4{word-spacing:-243.720000px;}
.ws19{word-spacing:-164.242080px;}
.ws18{word-spacing:-164.018328px;}
.wse{word-spacing:-126.360000px;}
.wsb{word-spacing:-114.048000px;}
.ws8{word-spacing:-93.012480px;}
.ws5{word-spacing:-90.370080px;}
.wsa{word-spacing:-82.170000px;}
.ws17{word-spacing:-73.872000px;}
.ws0{word-spacing:-59.924640px;}
.ws1{word-spacing:-59.718240px;}
.ws10{word-spacing:-59.314920px;}
.ws20{word-spacing:-59.051520px;}
.ws1b{word-spacing:-57.373920px;}
.wsc{word-spacing:-54.987840px;}
.wsd{word-spacing:-54.769080px;}
.ws2{word-spacing:-50.688000px;}
.ws3{word-spacing:-50.544000px;}
.ws14{word-spacing:-38.232000px;}
.ws16{word-spacing:-38.088000px;}
.ws15{word-spacing:-38.016000px;}
.ws12{word-spacing:-34.109520px;}
.ws11{word-spacing:-33.707520px;}
.ws13{word-spacing:-33.535920px;}
.ws7{word-spacing:-32.544000px;}
.ws1a{word-spacing:-29.652480px;}
.ws1e{word-spacing:-25.632000px;}
.ws1f{word-spacing:-25.344000px;}
.ws1c{word-spacing:-25.200000px;}
.ws1d{word-spacing:-25.128000px;}
.ws6{word-spacing:0.000000px;}
._c{margin-left:-37.380240px;}
._10{margin-left:-31.838400px;}
._17{margin-left:-30.024000px;}
._7{margin-left:-24.145200px;}
._13{margin-left:-22.896000px;}
._2{margin-left:-19.025280px;}
._12{margin-left:-17.640000px;}
._14{margin-left:-15.552000px;}
._e{margin-left:-13.248000px;}
._a{margin-left:-12.013200px;}
._11{margin-left:-10.800000px;}
._8{margin-left:-9.068400px;}
._f{margin-left:-7.628160px;}
._3{margin-left:-6.180480px;}
._4{margin-left:-5.039760px;}
._5{margin-left:-3.963600px;}
._0{margin-left:-2.520000px;}
._1{margin-left:-1.080000px;}
._6{width:1.627440px;}
._b{width:2.857200px;}
._18{width:4.388400px;}
._16{width:5.502000px;}
._d{width:6.868080px;}
._9{width:80.753040px;}
._15{width:3800.035200px;}
.fc6{color:rgb(255,0,0);}
.fc5{color:rgb(79,129,189);}
.fc3{color:rgb(247,150,70);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(91,197,242);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,56,106);}
.fs18{font-size:59.760000px;}
.fs16{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs1f{font-size:84.240000px;}
.fs1b{font-size:95.760000px;}
.fs1c{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fs4{font-size:144.000000px;}
.fs12{font-size:156.240000px;}
.fs5{font-size:167.760000px;}
.fs2{font-size:192.240000px;}
.fsc{font-size:216.000000px;}
.fsd{font-size:234.000000px;}
.fs9{font-size:239.760000px;}
.fs1{font-size:264.240000px;}
.fse{font-size:288.000000px;}
.fs19{font-size:288.144000px;}
.fsf{font-size:316.800000px;}
.fs10{font-size:324.000000px;}
.fs0{font-size:360.000000px;}
.fs13{font-size:360.144000px;}
.fs14{font-size:396.000000px;}
.fs15{font-size:432.000000px;}
.fs11{font-size:480.240000px;}
.fs1e{font-size:480.384000px;}
.fs1a{font-size:527.760000px;}
.fs1d{font-size:527.904000px;}
.fs17{font-size:576.000000px;}
.fs3{font-size:720.000000px;}
.fsb{font-size:720.120000px;}
.fs6{font-size:779.760000px;}
.fs7{font-size:1080.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:36.504000px;}
.y87{bottom:50.940000px;}
.y6f{bottom:54.285000px;}
.ye{bottom:96.444000px;}
.y73{bottom:106.200000px;}
.y46{bottom:111.420000px;}
.y11{bottom:117.936000px;}
.y77{bottom:139.755000px;}
.y7f{bottom:141.870000px;}
.y7b{bottom:143.250000px;}
.yd{bottom:156.570000px;}
.y83{bottom:176.325000px;}
.y10{bottom:177.870000px;}
.y86{bottom:179.820000px;}
.yc{bottom:216.510000px;}
.y71{bottom:280.905000px;}
.y78{bottom:343.620000px;}
.y7d{bottom:365.010000px;}
.y154{bottom:367.530000px;}
.y28{bottom:397.185000px;}
.yac{bottom:410.070000px;}
.y160{bottom:414.975000px;}
.y153{bottom:417.930000px;}
.y75{bottom:424.080000px;}
.y1a{bottom:429.480000px;}
.y80{bottom:432.540000px;}
.y81{bottom:465.330000px;}
.y15f{bottom:465.375000px;}
.y152{bottom:468.330000px;}
.y144{bottom:471.930000px;}
.y6c{bottom:488.730000px;}
.y143{bottom:493.530000px;}
.ybe{bottom:498.630000px;}
.y19{bottom:508.680000px;}
.y142{bottom:515.130000px;}
.y15e{bottom:515.775000px;}
.y151{bottom:518.730000px;}
.y5b{bottom:520.200000px;}
.y85{bottom:528.480000px;}
.y141{bottom:536.730000px;}
.ybd{bottom:541.830000px;}
.y2a{bottom:546.015000px;}
.y140{bottom:558.330000px;}
.y15d{bottom:566.175000px;}
.y150{bottom:569.130000px;}
.yc8{bottom:570.315000px;}
.ybc{bottom:585.030000px;}
.y18{bottom:587.880000px;}
.y29{bottom:589.755000px;}
.y5a{bottom:599.400000px;}
.y15c{bottom:616.605000px;}
.y14f{bottom:619.530000px;}
.y82{bottom:626.760000px;}
.y7c{bottom:627.660000px;}
.ybb{bottom:628.230000px;}
.y88{bottom:657.360000px;}
.y15b{bottom:667.005000px;}
.y17{bottom:667.080000px;}
.y14e{bottom:669.930000px;}
.yba{bottom:671.430000px;}
.y10f{bottom:672.840000px;}
.y59{bottom:678.600000px;}
.yb9{bottom:714.630000px;}
.y15a{bottom:717.405000px;}
.y14d{bottom:720.330000px;}
.y10e{bottom:737.640000px;}
.y79{bottom:743.835000px;}
.y16{bottom:746.280000px;}
.y7e{bottom:756.000000px;}
.y58{bottom:757.800000px;}
.yb8{bottom:757.830000px;}
.y74{bottom:758.160000px;}
.ycb{bottom:763.350000px;}
.y14c{bottom:770.730000px;}
.y44{bottom:774.825000px;}
.y10d{bottom:802.440000px;}
.y84{bottom:803.085000px;}
.y14b{bottom:821.130000px;}
.y15{bottom:825.480000px;}
.yca{bottom:828.150000px;}
.y57{bottom:837.000000px;}
.y7a{bottom:849.420000px;}
.y43{bottom:854.025000px;}
.y14a{bottom:871.530000px;}
.y159{bottom:895.680000px;}
.y14{bottom:904.680000px;}
.y149{bottom:921.930000px;}
.y42{bottom:933.225000px;}
.y158{bottom:946.080000px;}
.y76{bottom:947.700000px;}
.y148{bottom:972.330000px;}
.yd5{bottom:980.280000px;}
.y13{bottom:983.880000px;}
.y70{bottom:996.120000px;}
.y157{bottom:996.480000px;}
.y56{bottom:1003.860000px;}
.y41{bottom:1012.425000px;}
.y147{bottom:1022.730000px;}
.yc7{bottom:1030.425000px;}
.yf1{bottom:1041.090000px;}
.yd4{bottom:1045.080000px;}
.y156{bottom:1046.880000px;}
.y146{bottom:1073.130000px;}
.yc6{bottom:1073.625000px;}
.y72{bottom:1076.040000px;}
.y40{bottom:1091.625000px;}
.y155{bottom:1097.280000px;}
.yf0{bottom:1105.890000px;}
.yc5{bottom:1116.825000px;}
.y145{bottom:1123.530000px;}
.yc4{bottom:1160.025000px;}
.y5c{bottom:1163.190000px;}
.yef{bottom:1170.690000px;}
.y3f{bottom:1170.825000px;}
.y6e{bottom:1222.740000px;}
.yee{bottom:1235.490000px;}
.y3e{bottom:1250.025000px;}
.yb{bottom:1288.155000px;}
.yed{bottom:1300.290000px;}
.y3d{bottom:1329.225000px;}
.ya{bottom:1331.355000px;}
.yec{bottom:1365.090000px;}
.y11a{bottom:1374.225000px;}
.y9{bottom:1374.555000px;}
.y114{bottom:1406.490000px;}
.ycd{bottom:1407.240000px;}
.y3c{bottom:1408.470000px;}
.yda{bottom:1425.345000px;}
.yeb{bottom:1429.890000px;}
.y9a{bottom:1461.090000px;}
.ycc{bottom:1472.040000px;}
.y3b{bottom:1487.670000px;}
.yea{bottom:1494.690000px;}
.y93{bottom:1498.965000px;}
.y54{bottom:1508.730000px;}
.yd9{bottom:1511.745000px;}
.yb7{bottom:1516.245000px;}
.y99{bottom:1525.890000px;}
.yb6{bottom:1559.445000px;}
.ye9{bottom:1559.490000px;}
.y92{bottom:1563.810000px;}
.y3a{bottom:1566.870000px;}
.y11b{bottom:1569.810000px;}
.y53{bottom:1572.630000px;}
.y98{bottom:1596.270000px;}
.yd8{bottom:1598.145000px;}
.yb5{bottom:1602.645000px;}
.ye8{bottom:1624.290000px;}
.y52{bottom:1636.710000px;}
.y91{bottom:1639.770000px;}
.yb4{bottom:1645.845000px;}
.y39{bottom:1646.070000px;}
.yd7{bottom:1672.710000px;}
.ye7{bottom:1689.090000px;}
.y97{bottom:1695.450000px;}
.yd6{bottom:1706.370000px;}
.y38{bottom:1725.270000px;}
.y119{bottom:1740.600000px;}
.ye6{bottom:1753.890000px;}
.y90{bottom:1765.770000px;}
.y96{bottom:1803.450000px;}
.y37{bottom:1804.470000px;}
.y51{bottom:1814.040000px;}
.ye5{bottom:1818.720000px;}
.y68{bottom:1846.110000px;}
.y8f{bottom:1873.770000px;}
.y50{bottom:1878.120000px;}
.ye4{bottom:1883.520000px;}
.y36{bottom:1883.670000px;}
.y67{bottom:1910.010000px;}
.y13f{bottom:1910.595000px;}
.y95{bottom:1911.450000px;}
.y13e{bottom:1935.795000px;}
.y4f{bottom:1942.020000px;}
.ye3{bottom:1948.320000px;}
.y13d{bottom:1960.995000px;}
.y35{bottom:1962.870000px;}
.y66{bottom:1974.090000px;}
.y8e{bottom:1981.770000px;}
.yd2{bottom:1996.380000px;}
.y4e{bottom:2006.100000px;}
.y94{bottom:2019.450000px;}
.yd1{bottom:2039.580000px;}
.y34{bottom:2042.070000px;}
.yf7{bottom:2065.755000px;}
.yd0{bottom:2082.780000px;}
.yf6{bottom:2094.555000px;}
.y33{bottom:2121.270000px;}
.yf5{bottom:2123.355000px;}
.ycf{bottom:2125.980000px;}
.yf4{bottom:2152.155000px;}
.yce{bottom:2169.180000px;}
.yf3{bottom:2180.955000px;}
.y4d{bottom:2183.505000px;}
.y32{bottom:2200.470000px;}
.yf2{bottom:2209.755000px;}
.y65{bottom:2215.440000px;}
.y139{bottom:2221.380000px;}
.y4c{bottom:2247.450000px;}
.y138{bottom:2271.780000px;}
.y113{bottom:2276.670000px;}
.y64{bottom:2279.520000px;}
.y31{bottom:2279.670000px;}
.yc3{bottom:2302.950000px;}
.ya0{bottom:2308.035000px;}
.y4b{bottom:2311.530000px;}
.yd3{bottom:2318.430000px;}
.y137{bottom:2322.180000px;}
.y8d{bottom:2335.035000px;}
.y112{bottom:2341.470000px;}
.yc2{bottom:2346.150000px;}
.y30{bottom:2358.870000px;}
.y136{bottom:2372.580000px;}
.y9f{bottom:2372.835000px;}
.yc1{bottom:2389.350000px;}
.y8c{bottom:2399.835000px;}
.y111{bottom:2406.270000px;}
.y135{bottom:2422.980000px;}
.yc0{bottom:2432.550000px;}
.y9e{bottom:2437.635000px;}
.y2f{bottom:2438.070000px;}
.y110{bottom:2471.070000px;}
.y134{bottom:2473.380000px;}
.y8b{bottom:2473.995000px;}
.y161{bottom:2475.360000px;}
.ybf{bottom:2475.750000px;}
.yc9{bottom:2501.820000px;}
.y9d{bottom:2509.995000px;}
.y63{bottom:2510.715000px;}
.y4a{bottom:2513.910000px;}
.y2e{bottom:2517.300000px;}
.y133{bottom:2523.780000px;}
.y62{bottom:2569.755000px;}
.y49{bottom:2572.950000px;}
.y132{bottom:2574.180000px;}
.y8a{bottom:2590.995000px;}
.y2d{bottom:2596.500000px;}
.y9c{bottom:2617.995000px;}
.y131{bottom:2624.580000px;}
.y45{bottom:2674.260000px;}
.y130{bottom:2674.980000px;}
.y2c{bottom:2675.700000px;}
.y10c{bottom:2685.990000px;}
.y120{bottom:2694.420000px;}
.y89{bottom:2698.995000px;}
.y48{bottom:2717.850000px;}
.y11f{bottom:2719.620000px;}
.y61{bottom:2721.135000px;}
.y10b{bottom:2724.870000px;}
.y12f{bottom:2725.410000px;}
.y9b{bottom:2726.025000px;}
.y11e{bottom:2744.820000px;}
.y2b{bottom:2754.900000px;}
.y10a{bottom:2763.750000px;}
.y11d{bottom:2770.020000px;}
.y12e{bottom:2775.810000px;}
.y11c{bottom:2795.220000px;}
.y109{bottom:2796.150000px;}
.y12d{bottom:2826.210000px;}
.y108{bottom:2828.550000px;}
.yb3{bottom:2845.620000px;}
.y107{bottom:2860.950000px;}
.y12c{bottom:2876.610000px;}
.yb2{bottom:2888.820000px;}
.y106{bottom:2893.350000px;}
.y12b{bottom:2927.010000px;}
.yb1{bottom:2932.020000px;}
.y105{bottom:2935.290000px;}
.y6d{bottom:2947.890000px;}
.y55{bottom:2961.570000px;}
.yf9{bottom:2969.790000px;}
.yb0{bottom:2975.220000px;}
.y12a{bottom:2977.410000px;}
.y27{bottom:2977.950000px;}
.y104{bottom:2988.210000px;}
.yf8{bottom:2998.590000px;}
.yaf{bottom:3018.420000px;}
.y103{bottom:3053.010000px;}
.y26{bottom:3057.150000px;}
.y102{bottom:3117.810000px;}
.ya8{bottom:3129.300000px;}
.y25{bottom:3136.350000px;}
.y101{bottom:3182.610000px;}
.y168{bottom:3195.720000px;}
.y24{bottom:3215.550000px;}
.ya7{bottom:3215.700000px;}
.y5d{bottom:3229.710000px;}
.y60{bottom:3233.520000px;}
.y167{bottom:3246.120000px;}
.y100{bottom:3247.410000px;}
.y23{bottom:3294.750000px;}
.y166{bottom:3296.520000px;}
.ya6{bottom:3302.100000px;}
.yff{bottom:3312.210000px;}
.y13c{bottom:3324.135000px;}
.y5f{bottom:3330.720000px;}
.ye1{bottom:3342.390000px;}
.y13b{bottom:3345.735000px;}
.y165{bottom:3346.920000px;}
.y13a{bottom:3367.335000px;}
.y22{bottom:3373.950000px;}
.yfe{bottom:3377.010000px;}
.ya5{bottom:3388.500000px;}
.y164{bottom:3397.320000px;}
.y5e{bottom:3427.920000px;}
.yfd{bottom:3441.810000px;}
.y163{bottom:3447.720000px;}
.ye0{bottom:3450.390000px;}
.y21{bottom:3453.150000px;}
.y1b{bottom:3469.860000px;}
.ya4{bottom:3474.900000px;}
.y7{bottom:3477.345000px;}
.y162{bottom:3498.120000px;}
.yfc{bottom:3506.610000px;}
.y129{bottom:3556.905000px;}
.ydf{bottom:3558.390000px;}
.ya3{bottom:3561.300000px;}
.y6{bottom:3562.665000px;}
.yfb{bottom:3571.455000px;}
.y128{bottom:3607.305000px;}
.yfa{bottom:3636.255000px;}
.y5{bottom:3637.545000px;}
.ya2{bottom:3647.700000px;}
.y127{bottom:3657.705000px;}
.yde{bottom:3666.390000px;}
.y126{bottom:3708.105000px;}
.y4{bottom:3712.650000px;}
.ya1{bottom:3734.100000px;}
.y125{bottom:3758.505000px;}
.ydd{bottom:3774.390000px;}
.y3{bottom:3787.710000px;}
.y124{bottom:3808.905000px;}
.yab{bottom:3851.610000px;}
.y123{bottom:3859.305000px;}
.y2{bottom:3862.590000px;}
.yaa{bottom:3871.410000px;}
.ydc{bottom:3882.390000px;}
.ya9{bottom:3891.210000px;}
.y122{bottom:3909.750000px;}
.y1{bottom:3954.750000px;}
.y121{bottom:3960.150000px;}
.ydb{bottom:3990.390000px;}
.y118{bottom:4368.810000px;}
.y20{bottom:4370.940000px;}
.y1f{bottom:4413.060000px;}
.y12{bottom:4415.760000px;}
.yae{bottom:4464.105000px;}
.ye2{bottom:4468.245000px;}
.y1e{bottom:4476.420000px;}
.y117{bottom:4476.810000px;}
.y1d{bottom:4512.960000px;}
.y6b{bottom:4564.005000px;}
.y1c{bottom:4606.020000px;}
.y8{bottom:4613.940000px;}
.y116{bottom:4619.775000px;}
.y6a{bottom:4639.065000px;}
.y47{bottom:4656.030000px;}
.yad{bottom:4696.380000px;}
.y69{bottom:4713.945000px;}
.y115{bottom:4778.175000px;}
.h37{height:45.695391px;}
.h34{height:50.650312px;}
.he{height:54.703125px;}
.h43{height:55.054688px;}
.h44{height:58.921875px;}
.h41{height:64.413984px;}
.hc{height:65.812500px;}
.h3b{height:82.582031px;}
.h3a{height:87.530625px;}
.h10{height:91.941328px;}
.h3c{height:98.718750px;}
.h12{height:103.359375px;}
.h6{height:110.109375px;}
.h21{height:119.468672px;}
.h7{height:128.277422px;}
.h13{height:131.625000px;}
.h42{height:137.287969px;}
.h4{height:137.984766px;}
.h20{height:139.500000px;}
.h1c{height:146.057344px;}
.h8{height:146.996016px;}
.h15{height:153.343125px;}
.h31{height:165.164062px;}
.hf{height:182.161406px;}
.h3d{height:183.332109px;}
.h3{height:189.664453px;}
.h18{height:197.437500px;}
.hb{height:202.050703px;}
.h19{height:213.890625px;}
.h1a{height:218.812500px;}
.h1f{height:220.218750px;}
.h38{height:220.328859px;}
.h11{height:241.531875px;}
.h23{height:243.180000px;}
.h2{height:246.093750px;}
.h1b{height:246.164062px;}
.h33{height:247.746094px;}
.h39{height:257.695312px;}
.hd{height:275.273438px;}
.h2f{height:275.383547px;}
.h30{height:302.800781px;}
.h25{height:310.500000px;}
.h29{height:314.640000px;}
.h27{height:317.340000px;}
.h32{height:330.328125px;}
.h1e{height:367.214766px;}
.h40{height:367.324875px;}
.h2b{height:383.580000px;}
.h2d{height:390.420000px;}
.h3f{height:403.550859px;}
.h3e{height:403.660969px;}
.h35{height:440.437500px;}
.h36{height:492.187500px;}
.h1d{height:506.594320px;}
.h9{height:506.975063px;}
.h16{height:532.658320px;}
.h17{height:547.122422px;}
.h5{height:550.546875px;}
.h22{height:592.740000px;}
.h14{height:737.753906px;}
.ha{height:738.281250px;}
.h28{height:760.860000px;}
.h24{height:878.940000px;}
.h2a{height:961.560000px;}
.h2e{height:1345.680000px;}
.h26{height:1518.480000px;}
.h2c{height:1706.040000px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w3{width:536.760000px;}
.w4{width:1858.140000px;}
.w2{width:3576.419999px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x3c{left:9.930000px;}
.x6e{left:56.735999px;}
.x49{left:68.183999px;}
.x4c{left:71.171999px;}
.x57{left:93.311999px;}
.x72{left:101.555999px;}
.x4a{left:122.183999px;}
.x14{left:126.107999px;}
.x10{left:133.811999px;}
.x5f{left:156.884999px;}
.x15{left:162.104999px;}
.x52{left:191.549999px;}
.x4b{left:203.189999px;}
.x8{left:207.689999px;}
.xa{left:216.104999px;}
.x3{left:221.759999px;}
.x1{left:225.689999px;}
.x69{left:248.579999px;}
.x60{left:251.384999px;}
.x28{left:266.010000px;}
.x50{left:274.424999px;}
.x7{left:319.649999px;}
.x61{left:359.384999px;}
.x51{left:363.494999px;}
.x29{left:374.010000px;}
.x64{left:385.634999px;}
.x3a{left:434.879999px;}
.x4f{left:508.064999px;}
.x1c{left:526.935000px;}
.x73{left:588.134999px;}
.x6a{left:611.789999px;}
.xf{left:623.774999px;}
.x1f{left:636.945000px;}
.x4{left:641.414999px;}
.x23{left:645.585000px;}
.x26{left:663.945000px;}
.x24{left:678.885000px;}
.x25{left:685.545000px;}
.x21{left:689.145000px;}
.x1b{left:710.355000px;}
.x1e{left:716.865000px;}
.x20{left:758.625000px;}
.x3b{left:796.500000px;}
.xc{left:820.694999px;}
.x42{left:830.414999px;}
.x1d{left:878.655000px;}
.x6b{left:885.344999px;}
.x12{left:890.489999px;}
.x43{left:893.054999px;}
.x22{left:910.185000px;}
.x46{left:915.014999px;}
.x47{left:918.254999px;}
.x6f{left:928.469999px;}
.x3e{left:944.354999px;}
.x44{left:986.114999px;}
.x1a{left:1015.125000px;}
.x2{left:1023.269999px;}
.x68{left:1040.039999px;}
.x13{left:1072.334999px;}
.x63{left:1107.719999px;}
.x62{left:1109.984999px;}
.x4e{left:1215.719999px;}
.x4d{left:1217.984999px;}
.x11{left:1221.734999px;}
.x39{left:1264.754999px;}
.x27{left:1266.120000px;}
.x41{left:1293.044999px;}
.x3d{left:1333.260000px;}
.x3f{left:1365.224999px;}
.x6c{left:1380.164999px;}
.x2a{left:1388.235000px;}
.x37{left:1456.274999px;}
.x45{left:1492.844999px;}
.x77{left:1541.984999px;}
.x40{left:1704.704999px;}
.x75{left:1742.834999px;}
.x48{left:1871.429999px;}
.x9{left:1883.849999px;}
.x16{left:1885.889999px;}
.x17{left:1891.904999px;}
.x5d{left:1916.744999px;}
.x18{left:1927.904999px;}
.x76{left:1948.529999px;}
.x5c{left:1968.584999px;}
.x2b{left:1971.570000px;}
.x5e{left:2033.564999px;}
.x5a{left:2034.824999px;}
.xb{left:2081.129999px;}
.x2d{left:2109.960000px;}
.x53{left:2153.669999px;}
.x36{left:2163.450000px;}
.x65{left:2174.294999px;}
.x34{left:2181.990000px;}
.x38{left:2192.144999px;}
.x30{left:2200.890000px;}
.x5b{left:2227.784999px;}
.x54{left:2231.639999px;}
.x32{left:2232.750000px;}
.x31{left:2234.910000px;}
.x33{left:2247.330000px;}
.x35{left:2252.190000px;}
.x66{left:2253.959999px;}
.x2f{left:2279.550000px;}
.x2c{left:2286.030000px;}
.x67{left:2337.914999px;}
.x6d{left:2369.669999px;}
.xe{left:2445.449999px;}
.x2e{left:2464.050000px;}
.x5{left:2561.324999px;}
.x74{left:2727.794999px;}
.x55{left:2740.574999px;}
.x6{left:2820.029999px;}
.x70{left:2911.754999px;}
.x56{left:2949.449999px;}
.x71{left:2957.324999px;}
.x58{left:2991.989999px;}
.x59{left:3128.324999px;}
.x19{left:3193.769999px;}
.xd{left:3538.649999px;}
@media print{
.v2{vertical-align:-294.293333pt;}
.v1{vertical-align:-23.168000pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.376533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.242667pt;}
.lse{letter-spacing:-0.202133pt;}
.ls1a{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.176000pt;}
.ls14{letter-spacing:-0.152533pt;}
.ls19{letter-spacing:-0.151467pt;}
.ls6{letter-spacing:-0.131733pt;}
.ls4{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.007680pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.139520pt;}
.ls1{letter-spacing:0.149760pt;}
.ls0{letter-spacing:0.183467pt;}
.ls12{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.234133pt;}
.ls2{letter-spacing:0.244480pt;}
.ls1b{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.263467pt;}
.lsb{letter-spacing:0.308480pt;}
.ls13{letter-spacing:0.357333pt;}
.ls16{letter-spacing:0.384000pt;}
.lsc{letter-spacing:198.421333pt;}
.ls11{letter-spacing:272.000000pt;}
.ls9{letter-spacing:285.440000pt;}
.wsf{word-spacing:-256.000000pt;}
.ws9{word-spacing:-234.880000pt;}
.ws4{word-spacing:-216.640000pt;}
.ws19{word-spacing:-145.992960pt;}
.ws18{word-spacing:-145.794069pt;}
.wse{word-spacing:-112.320000pt;}
.wsb{word-spacing:-101.376000pt;}
.ws8{word-spacing:-82.677760pt;}
.ws5{word-spacing:-80.328960pt;}
.wsa{word-spacing:-73.040000pt;}
.ws17{word-spacing:-65.664000pt;}
.ws0{word-spacing:-53.266347pt;}
.ws1{word-spacing:-53.082880pt;}
.ws10{word-spacing:-52.724373pt;}
.ws20{word-spacing:-52.490240pt;}
.ws1b{word-spacing:-50.999040pt;}
.wsc{word-spacing:-48.878080pt;}
.wsd{word-spacing:-48.683627pt;}
.ws2{word-spacing:-45.056000pt;}
.ws3{word-spacing:-44.928000pt;}
.ws14{word-spacing:-33.984000pt;}
.ws16{word-spacing:-33.856000pt;}
.ws15{word-spacing:-33.792000pt;}
.ws12{word-spacing:-30.319573pt;}
.ws11{word-spacing:-29.962240pt;}
.ws13{word-spacing:-29.809707pt;}
.ws7{word-spacing:-28.928000pt;}
.ws1a{word-spacing:-26.357760pt;}
.ws1e{word-spacing:-22.784000pt;}
.ws1f{word-spacing:-22.528000pt;}
.ws1c{word-spacing:-22.400000pt;}
.ws1d{word-spacing:-22.336000pt;}
.ws6{word-spacing:0.000000pt;}
._c{margin-left:-33.226880pt;}
._10{margin-left:-28.300800pt;}
._17{margin-left:-26.688000pt;}
._7{margin-left:-21.462400pt;}
._13{margin-left:-20.352000pt;}
._2{margin-left:-16.911360pt;}
._12{margin-left:-15.680000pt;}
._14{margin-left:-13.824000pt;}
._e{margin-left:-11.776000pt;}
._a{margin-left:-10.678400pt;}
._11{margin-left:-9.600000pt;}
._8{margin-left:-8.060800pt;}
._f{margin-left:-6.780587pt;}
._3{margin-left:-5.493760pt;}
._4{margin-left:-4.479787pt;}
._5{margin-left:-3.523200pt;}
._0{margin-left:-2.240000pt;}
._1{margin-left:-0.960000pt;}
._6{width:1.446613pt;}
._b{width:2.539733pt;}
._18{width:3.900800pt;}
._16{width:4.890667pt;}
._d{width:6.104960pt;}
._9{width:71.780480pt;}
._15{width:3377.809067pt;}
.fs18{font-size:53.120000pt;}
.fs16{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs1f{font-size:74.880000pt;}
.fs1b{font-size:85.120000pt;}
.fs1c{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fs4{font-size:128.000000pt;}
.fs12{font-size:138.880000pt;}
.fs5{font-size:149.120000pt;}
.fs2{font-size:170.880000pt;}
.fsc{font-size:192.000000pt;}
.fsd{font-size:208.000000pt;}
.fs9{font-size:213.120000pt;}
.fs1{font-size:234.880000pt;}
.fse{font-size:256.000000pt;}
.fs19{font-size:256.128000pt;}
.fsf{font-size:281.600000pt;}
.fs10{font-size:288.000000pt;}
.fs0{font-size:320.000000pt;}
.fs13{font-size:320.128000pt;}
.fs14{font-size:352.000000pt;}
.fs15{font-size:384.000000pt;}
.fs11{font-size:426.880000pt;}
.fs1e{font-size:427.008000pt;}
.fs1a{font-size:469.120000pt;}
.fs1d{font-size:469.248000pt;}
.fs17{font-size:512.000000pt;}
.fs3{font-size:640.000000pt;}
.fsb{font-size:640.106667pt;}
.fs6{font-size:693.120000pt;}
.fs7{font-size:960.000000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:32.448000pt;}
.y87{bottom:45.280000pt;}
.y6f{bottom:48.253333pt;}
.ye{bottom:85.728000pt;}
.y73{bottom:94.400000pt;}
.y46{bottom:99.040000pt;}
.y11{bottom:104.832000pt;}
.y77{bottom:124.226667pt;}
.y7f{bottom:126.106667pt;}
.y7b{bottom:127.333333pt;}
.yd{bottom:139.173333pt;}
.y83{bottom:156.733333pt;}
.y10{bottom:158.106667pt;}
.y86{bottom:159.840000pt;}
.yc{bottom:192.453333pt;}
.y71{bottom:249.693333pt;}
.y78{bottom:305.440000pt;}
.y7d{bottom:324.453333pt;}
.y154{bottom:326.693333pt;}
.y28{bottom:353.053333pt;}
.yac{bottom:364.506667pt;}
.y160{bottom:368.866667pt;}
.y153{bottom:371.493333pt;}
.y75{bottom:376.960000pt;}
.y1a{bottom:381.760000pt;}
.y80{bottom:384.480000pt;}
.y81{bottom:413.626667pt;}
.y15f{bottom:413.666667pt;}
.y152{bottom:416.293333pt;}
.y144{bottom:419.493333pt;}
.y6c{bottom:434.426667pt;}
.y143{bottom:438.693333pt;}
.ybe{bottom:443.226667pt;}
.y19{bottom:452.160000pt;}
.y142{bottom:457.893333pt;}
.y15e{bottom:458.466667pt;}
.y151{bottom:461.093333pt;}
.y5b{bottom:462.400000pt;}
.y85{bottom:469.760000pt;}
.y141{bottom:477.093333pt;}
.ybd{bottom:481.626667pt;}
.y2a{bottom:485.346667pt;}
.y140{bottom:496.293333pt;}
.y15d{bottom:503.266667pt;}
.y150{bottom:505.893333pt;}
.yc8{bottom:506.946667pt;}
.ybc{bottom:520.026667pt;}
.y18{bottom:522.560000pt;}
.y29{bottom:524.226667pt;}
.y5a{bottom:532.800000pt;}
.y15c{bottom:548.093333pt;}
.y14f{bottom:550.693333pt;}
.y82{bottom:557.120000pt;}
.y7c{bottom:557.920000pt;}
.ybb{bottom:558.426667pt;}
.y88{bottom:584.320000pt;}
.y15b{bottom:592.893333pt;}
.y17{bottom:592.960000pt;}
.y14e{bottom:595.493333pt;}
.yba{bottom:596.826667pt;}
.y10f{bottom:598.080000pt;}
.y59{bottom:603.200000pt;}
.yb9{bottom:635.226667pt;}
.y15a{bottom:637.693333pt;}
.y14d{bottom:640.293333pt;}
.y10e{bottom:655.680000pt;}
.y79{bottom:661.186667pt;}
.y16{bottom:663.360000pt;}
.y7e{bottom:672.000000pt;}
.y58{bottom:673.600000pt;}
.yb8{bottom:673.626667pt;}
.y74{bottom:673.920000pt;}
.ycb{bottom:678.533333pt;}
.y14c{bottom:685.093333pt;}
.y44{bottom:688.733333pt;}
.y10d{bottom:713.280000pt;}
.y84{bottom:713.853333pt;}
.y14b{bottom:729.893333pt;}
.y15{bottom:733.760000pt;}
.yca{bottom:736.133333pt;}
.y57{bottom:744.000000pt;}
.y7a{bottom:755.040000pt;}
.y43{bottom:759.133333pt;}
.y14a{bottom:774.693333pt;}
.y159{bottom:796.160000pt;}
.y14{bottom:804.160000pt;}
.y149{bottom:819.493333pt;}
.y42{bottom:829.533333pt;}
.y158{bottom:840.960000pt;}
.y76{bottom:842.400000pt;}
.y148{bottom:864.293333pt;}
.yd5{bottom:871.360000pt;}
.y13{bottom:874.560000pt;}
.y70{bottom:885.440000pt;}
.y157{bottom:885.760000pt;}
.y56{bottom:892.320000pt;}
.y41{bottom:899.933333pt;}
.y147{bottom:909.093333pt;}
.yc7{bottom:915.933333pt;}
.yf1{bottom:925.413333pt;}
.yd4{bottom:928.960000pt;}
.y156{bottom:930.560000pt;}
.y146{bottom:953.893333pt;}
.yc6{bottom:954.333333pt;}
.y72{bottom:956.480000pt;}
.y40{bottom:970.333333pt;}
.y155{bottom:975.360000pt;}
.yf0{bottom:983.013333pt;}
.yc5{bottom:992.733333pt;}
.y145{bottom:998.693333pt;}
.yc4{bottom:1031.133333pt;}
.y5c{bottom:1033.946667pt;}
.yef{bottom:1040.613333pt;}
.y3f{bottom:1040.733333pt;}
.y6e{bottom:1086.880000pt;}
.yee{bottom:1098.213333pt;}
.y3e{bottom:1111.133333pt;}
.yb{bottom:1145.026667pt;}
.yed{bottom:1155.813333pt;}
.y3d{bottom:1181.533333pt;}
.ya{bottom:1183.426667pt;}
.yec{bottom:1213.413333pt;}
.y11a{bottom:1221.533333pt;}
.y9{bottom:1221.826667pt;}
.y114{bottom:1250.213333pt;}
.ycd{bottom:1250.880000pt;}
.y3c{bottom:1251.973333pt;}
.yda{bottom:1266.973333pt;}
.yeb{bottom:1271.013333pt;}
.y9a{bottom:1298.746667pt;}
.ycc{bottom:1308.480000pt;}
.y3b{bottom:1322.373333pt;}
.yea{bottom:1328.613333pt;}
.y93{bottom:1332.413333pt;}
.y54{bottom:1341.093333pt;}
.yd9{bottom:1343.773333pt;}
.yb7{bottom:1347.773333pt;}
.y99{bottom:1356.346667pt;}
.yb6{bottom:1386.173333pt;}
.ye9{bottom:1386.213333pt;}
.y92{bottom:1390.053333pt;}
.y3a{bottom:1392.773333pt;}
.y11b{bottom:1395.386667pt;}
.y53{bottom:1397.893333pt;}
.y98{bottom:1418.906667pt;}
.yd8{bottom:1420.573333pt;}
.yb5{bottom:1424.573333pt;}
.ye8{bottom:1443.813333pt;}
.y52{bottom:1454.853333pt;}
.y91{bottom:1457.573333pt;}
.yb4{bottom:1462.973333pt;}
.y39{bottom:1463.173333pt;}
.yd7{bottom:1486.853333pt;}
.ye7{bottom:1501.413333pt;}
.y97{bottom:1507.066667pt;}
.yd6{bottom:1516.773333pt;}
.y38{bottom:1533.573333pt;}
.y119{bottom:1547.200000pt;}
.ye6{bottom:1559.013333pt;}
.y90{bottom:1569.573333pt;}
.y96{bottom:1603.066667pt;}
.y37{bottom:1603.973333pt;}
.y51{bottom:1612.480000pt;}
.ye5{bottom:1616.640000pt;}
.y68{bottom:1640.986667pt;}
.y8f{bottom:1665.573333pt;}
.y50{bottom:1669.440000pt;}
.ye4{bottom:1674.240000pt;}
.y36{bottom:1674.373333pt;}
.y67{bottom:1697.786667pt;}
.y13f{bottom:1698.306667pt;}
.y95{bottom:1699.066667pt;}
.y13e{bottom:1720.706667pt;}
.y4f{bottom:1726.240000pt;}
.ye3{bottom:1731.840000pt;}
.y13d{bottom:1743.106667pt;}
.y35{bottom:1744.773333pt;}
.y66{bottom:1754.746667pt;}
.y8e{bottom:1761.573333pt;}
.yd2{bottom:1774.560000pt;}
.y4e{bottom:1783.200000pt;}
.y94{bottom:1795.066667pt;}
.yd1{bottom:1812.960000pt;}
.y34{bottom:1815.173333pt;}
.yf7{bottom:1836.226667pt;}
.yd0{bottom:1851.360000pt;}
.yf6{bottom:1861.826667pt;}
.y33{bottom:1885.573333pt;}
.yf5{bottom:1887.426667pt;}
.ycf{bottom:1889.760000pt;}
.yf4{bottom:1913.026667pt;}
.yce{bottom:1928.160000pt;}
.yf3{bottom:1938.626667pt;}
.y4d{bottom:1940.893333pt;}
.y32{bottom:1955.973333pt;}
.yf2{bottom:1964.226667pt;}
.y65{bottom:1969.280000pt;}
.y139{bottom:1974.560000pt;}
.y4c{bottom:1997.733333pt;}
.y138{bottom:2019.360000pt;}
.y113{bottom:2023.706667pt;}
.y64{bottom:2026.240000pt;}
.y31{bottom:2026.373333pt;}
.yc3{bottom:2047.066667pt;}
.ya0{bottom:2051.586667pt;}
.y4b{bottom:2054.693333pt;}
.yd3{bottom:2060.826667pt;}
.y137{bottom:2064.160000pt;}
.y8d{bottom:2075.586667pt;}
.y112{bottom:2081.306667pt;}
.yc2{bottom:2085.466667pt;}
.y30{bottom:2096.773333pt;}
.y136{bottom:2108.960000pt;}
.y9f{bottom:2109.186667pt;}
.yc1{bottom:2123.866667pt;}
.y8c{bottom:2133.186667pt;}
.y111{bottom:2138.906667pt;}
.y135{bottom:2153.760000pt;}
.yc0{bottom:2162.266667pt;}
.y9e{bottom:2166.786667pt;}
.y2f{bottom:2167.173333pt;}
.y110{bottom:2196.506667pt;}
.y134{bottom:2198.560000pt;}
.y8b{bottom:2199.106667pt;}
.y161{bottom:2200.320000pt;}
.ybf{bottom:2200.666667pt;}
.yc9{bottom:2223.840000pt;}
.y9d{bottom:2231.106667pt;}
.y63{bottom:2231.746667pt;}
.y4a{bottom:2234.586667pt;}
.y2e{bottom:2237.600000pt;}
.y133{bottom:2243.360000pt;}
.y62{bottom:2284.226667pt;}
.y49{bottom:2287.066667pt;}
.y132{bottom:2288.160000pt;}
.y8a{bottom:2303.106667pt;}
.y2d{bottom:2308.000000pt;}
.y9c{bottom:2327.106667pt;}
.y131{bottom:2332.960000pt;}
.y45{bottom:2377.120000pt;}
.y130{bottom:2377.760000pt;}
.y2c{bottom:2378.400000pt;}
.y10c{bottom:2387.546667pt;}
.y120{bottom:2395.040000pt;}
.y89{bottom:2399.106667pt;}
.y48{bottom:2415.866667pt;}
.y11f{bottom:2417.440000pt;}
.y61{bottom:2418.786667pt;}
.y10b{bottom:2422.106667pt;}
.y12f{bottom:2422.586667pt;}
.y9b{bottom:2423.133333pt;}
.y11e{bottom:2439.840000pt;}
.y2b{bottom:2448.800000pt;}
.y10a{bottom:2456.666667pt;}
.y11d{bottom:2462.240000pt;}
.y12e{bottom:2467.386667pt;}
.y11c{bottom:2484.640000pt;}
.y109{bottom:2485.466667pt;}
.y12d{bottom:2512.186667pt;}
.y108{bottom:2514.266667pt;}
.yb3{bottom:2529.440000pt;}
.y107{bottom:2543.066667pt;}
.y12c{bottom:2556.986667pt;}
.yb2{bottom:2567.840000pt;}
.y106{bottom:2571.866667pt;}
.y12b{bottom:2601.786667pt;}
.yb1{bottom:2606.240000pt;}
.y105{bottom:2609.146667pt;}
.y6d{bottom:2620.346667pt;}
.y55{bottom:2632.506667pt;}
.yf9{bottom:2639.813333pt;}
.yb0{bottom:2644.640000pt;}
.y12a{bottom:2646.586667pt;}
.y27{bottom:2647.066667pt;}
.y104{bottom:2656.186667pt;}
.yf8{bottom:2665.413333pt;}
.yaf{bottom:2683.040000pt;}
.y103{bottom:2713.786667pt;}
.y26{bottom:2717.466667pt;}
.y102{bottom:2771.386667pt;}
.ya8{bottom:2781.600000pt;}
.y25{bottom:2787.866667pt;}
.y101{bottom:2828.986667pt;}
.y168{bottom:2840.640000pt;}
.y24{bottom:2858.266667pt;}
.ya7{bottom:2858.400000pt;}
.y5d{bottom:2870.853333pt;}
.y60{bottom:2874.240000pt;}
.y167{bottom:2885.440000pt;}
.y100{bottom:2886.586667pt;}
.y23{bottom:2928.666667pt;}
.y166{bottom:2930.240000pt;}
.ya6{bottom:2935.200000pt;}
.yff{bottom:2944.186667pt;}
.y13c{bottom:2954.786667pt;}
.y5f{bottom:2960.640000pt;}
.ye1{bottom:2971.013333pt;}
.y13b{bottom:2973.986667pt;}
.y165{bottom:2975.040000pt;}
.y13a{bottom:2993.186667pt;}
.y22{bottom:2999.066667pt;}
.yfe{bottom:3001.786667pt;}
.ya5{bottom:3012.000000pt;}
.y164{bottom:3019.840000pt;}
.y5e{bottom:3047.040000pt;}
.yfd{bottom:3059.386667pt;}
.y163{bottom:3064.640000pt;}
.ye0{bottom:3067.013333pt;}
.y21{bottom:3069.466667pt;}
.y1b{bottom:3084.320000pt;}
.ya4{bottom:3088.800000pt;}
.y7{bottom:3090.973333pt;}
.y162{bottom:3109.440000pt;}
.yfc{bottom:3116.986667pt;}
.y129{bottom:3161.693333pt;}
.ydf{bottom:3163.013333pt;}
.ya3{bottom:3165.600000pt;}
.y6{bottom:3166.813333pt;}
.yfb{bottom:3174.626667pt;}
.y128{bottom:3206.493333pt;}
.yfa{bottom:3232.226667pt;}
.y5{bottom:3233.373333pt;}
.ya2{bottom:3242.400000pt;}
.y127{bottom:3251.293333pt;}
.yde{bottom:3259.013333pt;}
.y126{bottom:3296.093333pt;}
.y4{bottom:3300.133333pt;}
.ya1{bottom:3319.200000pt;}
.y125{bottom:3340.893333pt;}
.ydd{bottom:3355.013333pt;}
.y3{bottom:3366.853333pt;}
.y124{bottom:3385.693333pt;}
.yab{bottom:3423.653333pt;}
.y123{bottom:3430.493333pt;}
.y2{bottom:3433.413333pt;}
.yaa{bottom:3441.253333pt;}
.ydc{bottom:3451.013333pt;}
.ya9{bottom:3458.853333pt;}
.y122{bottom:3475.333333pt;}
.y1{bottom:3515.333333pt;}
.y121{bottom:3520.133333pt;}
.ydb{bottom:3547.013333pt;}
.y118{bottom:3883.386667pt;}
.y20{bottom:3885.280000pt;}
.y1f{bottom:3922.720000pt;}
.y12{bottom:3925.120000pt;}
.yae{bottom:3968.093333pt;}
.ye2{bottom:3971.773333pt;}
.y1e{bottom:3979.040000pt;}
.y117{bottom:3979.386667pt;}
.y1d{bottom:4011.520000pt;}
.y6b{bottom:4056.893333pt;}
.y1c{bottom:4094.240000pt;}
.y8{bottom:4101.280000pt;}
.y116{bottom:4106.466667pt;}
.y6a{bottom:4123.613333pt;}
.y47{bottom:4138.693333pt;}
.yad{bottom:4174.560000pt;}
.y69{bottom:4190.173333pt;}
.y115{bottom:4247.266667pt;}
.h37{height:40.618125pt;}
.h34{height:45.022500pt;}
.he{height:48.625000pt;}
.h43{height:48.937500pt;}
.h44{height:52.375000pt;}
.h41{height:57.256875pt;}
.hc{height:58.500000pt;}
.h3b{height:73.406250pt;}
.h3a{height:77.805000pt;}
.h10{height:81.725625pt;}
.h3c{height:87.750000pt;}
.h12{height:91.875000pt;}
.h6{height:97.875000pt;}
.h21{height:106.194375pt;}
.h7{height:114.024375pt;}
.h13{height:117.000000pt;}
.h42{height:122.033750pt;}
.h4{height:122.653125pt;}
.h20{height:124.000000pt;}
.h1c{height:129.828750pt;}
.h8{height:130.663125pt;}
.h15{height:136.305000pt;}
.h31{height:146.812500pt;}
.hf{height:161.921250pt;}
.h3d{height:162.961875pt;}
.h3{height:168.590625pt;}
.h18{height:175.500000pt;}
.hb{height:179.600625pt;}
.h19{height:190.125000pt;}
.h1a{height:194.500000pt;}
.h1f{height:195.750000pt;}
.h38{height:195.847875pt;}
.h11{height:214.695000pt;}
.h23{height:216.160000pt;}
.h2{height:218.750000pt;}
.h1b{height:218.812500pt;}
.h33{height:220.218750pt;}
.h39{height:229.062500pt;}
.hd{height:244.687500pt;}
.h2f{height:244.785375pt;}
.h30{height:269.156250pt;}
.h25{height:276.000000pt;}
.h29{height:279.680000pt;}
.h27{height:282.080000pt;}
.h32{height:293.625000pt;}
.h1e{height:326.413125pt;}
.h40{height:326.511000pt;}
.h2b{height:340.960000pt;}
.h2d{height:347.040000pt;}
.h3f{height:358.711875pt;}
.h3e{height:358.809750pt;}
.h35{height:391.500000pt;}
.h36{height:437.500000pt;}
.h1d{height:450.306062pt;}
.h9{height:450.644500pt;}
.h16{height:473.474062pt;}
.h17{height:486.331042pt;}
.h5{height:489.375000pt;}
.h22{height:526.880000pt;}
.h14{height:655.781250pt;}
.ha{height:656.250000pt;}
.h28{height:676.320000pt;}
.h24{height:781.280000pt;}
.h2a{height:854.720000pt;}
.h2e{height:1196.160000pt;}
.h26{height:1349.760000pt;}
.h2c{height:1516.480000pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w3{width:477.120000pt;}
.w4{width:1651.680000pt;}
.w2{width:3179.039999pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x3c{left:8.826667pt;}
.x6e{left:50.431999pt;}
.x49{left:60.607999pt;}
.x4c{left:63.263999pt;}
.x57{left:82.943999pt;}
.x72{left:90.271999pt;}
.x4a{left:108.607999pt;}
.x14{left:112.095999pt;}
.x10{left:118.943999pt;}
.x5f{left:139.453332pt;}
.x15{left:144.093332pt;}
.x52{left:170.266665pt;}
.x4b{left:180.613332pt;}
.x8{left:184.613332pt;}
.xa{left:192.093332pt;}
.x3{left:197.119999pt;}
.x1{left:200.613332pt;}
.x69{left:220.959999pt;}
.x60{left:223.453332pt;}
.x28{left:236.453333pt;}
.x50{left:243.933332pt;}
.x7{left:284.133332pt;}
.x61{left:319.453332pt;}
.x51{left:323.106665pt;}
.x29{left:332.453333pt;}
.x64{left:342.786665pt;}
.x3a{left:386.559999pt;}
.x4f{left:451.613332pt;}
.x1c{left:468.386667pt;}
.x73{left:522.786665pt;}
.x6a{left:543.813332pt;}
.xf{left:554.466665pt;}
.x1f{left:566.173333pt;}
.x4{left:570.146665pt;}
.x23{left:573.853333pt;}
.x26{left:590.173333pt;}
.x24{left:603.453333pt;}
.x25{left:609.373333pt;}
.x21{left:612.573333pt;}
.x1b{left:631.426667pt;}
.x1e{left:637.213333pt;}
.x20{left:674.333333pt;}
.x3b{left:708.000000pt;}
.xc{left:729.506665pt;}
.x42{left:738.146665pt;}
.x1d{left:781.026667pt;}
.x6b{left:786.973332pt;}
.x12{left:791.546665pt;}
.x43{left:793.826665pt;}
.x22{left:809.053333pt;}
.x46{left:813.346665pt;}
.x47{left:816.226665pt;}
.x6f{left:825.306665pt;}
.x3e{left:839.426665pt;}
.x44{left:876.546665pt;}
.x1a{left:902.333333pt;}
.x2{left:909.573332pt;}
.x68{left:924.479999pt;}
.x13{left:953.186665pt;}
.x63{left:984.639999pt;}
.x62{left:986.653332pt;}
.x4e{left:1080.639999pt;}
.x4d{left:1082.653332pt;}
.x11{left:1085.986665pt;}
.x39{left:1124.226665pt;}
.x27{left:1125.440000pt;}
.x41{left:1149.373332pt;}
.x3d{left:1185.120000pt;}
.x3f{left:1213.533332pt;}
.x6c{left:1226.813332pt;}
.x2a{left:1233.986667pt;}
.x37{left:1294.466665pt;}
.x45{left:1326.973332pt;}
.x77{left:1370.653332pt;}
.x40{left:1515.293332pt;}
.x75{left:1549.186665pt;}
.x48{left:1663.493332pt;}
.x9{left:1674.533332pt;}
.x16{left:1676.346665pt;}
.x17{left:1681.693332pt;}
.x5d{left:1703.773332pt;}
.x18{left:1713.693332pt;}
.x76{left:1732.026665pt;}
.x5c{left:1749.853332pt;}
.x2b{left:1752.506667pt;}
.x5e{left:1807.613332pt;}
.x5a{left:1808.733332pt;}
.xb{left:1849.893332pt;}
.x2d{left:1875.520000pt;}
.x53{left:1914.373332pt;}
.x36{left:1923.066667pt;}
.x65{left:1932.706665pt;}
.x34{left:1939.546667pt;}
.x38{left:1948.573332pt;}
.x30{left:1956.346667pt;}
.x5b{left:1980.253332pt;}
.x54{left:1983.679999pt;}
.x32{left:1984.666667pt;}
.x31{left:1986.586667pt;}
.x33{left:1997.626667pt;}
.x35{left:2001.946667pt;}
.x66{left:2003.519999pt;}
.x2f{left:2026.266667pt;}
.x2c{left:2032.026667pt;}
.x67{left:2078.146665pt;}
.x6d{left:2106.373332pt;}
.xe{left:2173.733332pt;}
.x2e{left:2190.266667pt;}
.x5{left:2276.733332pt;}
.x74{left:2424.706665pt;}
.x55{left:2436.066665pt;}
.x6{left:2506.693332pt;}
.x70{left:2588.226665pt;}
.x56{left:2621.733332pt;}
.x71{left:2628.733332pt;}
.x58{left:2659.546665pt;}
.x59{left:2780.733332pt;}
.x19{left:2838.906665pt;}
.xd{left:3145.466665pt;}
}




    .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; }
  