
    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_d7a10cf3ea420be210664a4e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.782000;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_5812599df5f870384364a573.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c86933e46810fae2e52d5411.woff')format("woff");}.ff3{font-family:ff3;line-height:0.985000;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_5f6fc30d3131bef315f13a09.woff')format("woff");}.ff4{font-family:ff4;line-height:0.982000;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_108364b66069588d9427e282.woff')format("woff");}.ff5{font-family:ff5;line-height:0.734863;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_236ce55295778367dabe58dd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.782000;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_8cde18256d92601402ef2ea9.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7d2e3fecc61e5f2fdec5151e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.985000;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_7dde3a64b4780698d553ba20.woff')format("woff");}.ff9{font-family:ff9;line-height:0.982000;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_b7cbb7954f8a4bc6dee4363a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.704000;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_c0f1e6718bfe779b99c203d8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.985000;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_108364b66069588d9427e282.woff')format("woff");}.ffc{font-family:ffc;line-height:0.734863;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_236ce55295778367dabe58dd.woff')format("woff");}.ffd{font-family:ffd;line-height:0.782000;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_8cde18256d92601402ef2ea9.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7d2e3fecc61e5f2fdec5151e.woff')format("woff");}.fff{font-family:fff;line-height:0.985000;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_7dde3a64b4780698d553ba20.woff')format("woff");}.ff10{font-family:ff10;line-height:0.982000;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_b7cbb7954f8a4bc6dee4363a.woff')format("woff");}.ff11{font-family:ff11;line-height:0.704000;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_c0f1e6718bfe779b99c203d8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.985000;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_108364b66069588d9427e282.woff')format("woff");}.ff13{font-family:ff13;line-height:0.734863;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_236ce55295778367dabe58dd.woff')format("woff");}.ff14{font-family:ff14;line-height:0.782000;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_8cde18256d92601402ef2ea9.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_7d2e3fecc61e5f2fdec5151e.woff')format("woff");}.ff16{font-family:ff16;line-height:0.985000;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_7dde3a64b4780698d553ba20.woff')format("woff");}.ff17{font-family:ff17;line-height:0.982000;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_b7cbb7954f8a4bc6dee4363a.woff')format("woff");}.ff18{font-family:ff18;line-height:0.704000;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_c0f1e6718bfe779b99c203d8.woff')format("woff");}.ff19{font-family:ff19;line-height:0.985000;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_d7a10cf3ea420be210664a4e.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.782000;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_5812599df5f870384364a573.woff')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_c86933e46810fae2e52d5411.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.985000;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_5f6fc30d3131bef315f13a09.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.982000;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_d7a10cf3ea420be210664a4e.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.782000;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_5812599df5f870384364a573.woff')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_c86933e46810fae2e52d5411.woff')format("woff");}.ff20{font-family:ff20;line-height:0.985000;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_5f6fc30d3131bef315f13a09.woff')format("woff");}.ff21{font-family:ff21;line-height:0.982000;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;}
.md{transform:matrix(0.238393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238393,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.238811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238811,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.239198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239198,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.239327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239327,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.239505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239505,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.240457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240457,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.241732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241732,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242430,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243716,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.244664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244664,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246652,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246677,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246839,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247886,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249595,0.000000,0.000000,0.250000,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);}
.m1b{transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251082,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251825,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252464,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252993,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253043,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254664,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254870,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.256152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256152,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256530,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.257098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257098,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258139,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.259093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259093,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.259532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259532,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.259543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259543,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.261175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261175,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261245,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.261391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261391,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261743,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.671712px;}
.ls4{letter-spacing:0.840000px;}
.ls1{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.320000px;}
.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;}
}
.ws0{word-spacing:-30.360000px;}
.ws1{word-spacing:-14.520000px;}
.wsd{word-spacing:-9.831228px;}
.ws4{word-spacing:-0.726000px;}
.ws10{word-spacing:-0.660000px;}
.ws6{word-spacing:-0.450000px;}
.wse{word-spacing:-0.420000px;}
.ws5{word-spacing:-0.396000px;}
.wsa{word-spacing:-0.335856px;}
.wsf{word-spacing:-0.264000px;}
.ws7{word-spacing:-0.198000px;}
.wsb{word-spacing:-0.002500px;}
.ws2{word-spacing:0.000000px;}
.ws3{word-spacing:0.726000px;}
.ws9{word-spacing:0.858000px;}
.ws8{word-spacing:10.560000px;}
.wsc{word-spacing:159.354980px;}
._2{margin-left:-11.515800px;}
._5{margin-left:-7.009200px;}
._4{margin-left:-5.853000px;}
._1{margin-left:-3.696000px;}
._3{margin-left:-2.652000px;}
._0{margin-left:-1.440000px;}
.fc7{color:rgb(222,236,208);}
.fc6{color:transparent;}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(102,178,61);}
.fc3{color:rgb(111,195,186);}
.fc2{color:rgb(40,40,39);}
.fc1{color:rgb(149,198,107);}
.fc8{color:rgb(64,63,63);}
.fc0{color:rgb(64,63,63);}
.fs7{font-size:2.499600px;}
.fs6{font-size:3.424800px;}
.fs8{font-size:6.156000px;}
.fs3{font-size:30.112200px;}
.fsc{font-size:44.687400px;}
.fsa{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:67.171200px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fsb{font-size:84.684600px;}
.fs4{font-size:90.000000px;}
.fs0{font-size:132.000000px;}
.y41{bottom:-98.509050px;}
.y40{bottom:-36.716550px;}
.y0{bottom:0.000000px;}
.y17{bottom:45.747423px;}
.y8a{bottom:46.444323px;}
.y16{bottom:56.444782px;}
.y89{bottom:57.141682px;}
.y15{bottom:67.142141px;}
.y88{bottom:67.839041px;}
.y14{bottom:77.839500px;}
.y87{bottom:78.536400px;}
.y13{bottom:85.051200px;}
.y86{bottom:85.748100px;}
.y12{bottom:104.851200px;}
.y85{bottom:105.548100px;}
.y3b{bottom:106.897800px;}
.yae{bottom:107.594700px;}
.y11{bottom:124.651200px;}
.y84{bottom:125.348100px;}
.y6e{bottom:125.844750px;}
.y3a{bottom:126.697800px;}
.yad{bottom:127.394700px;}
.y70{bottom:139.511550px;}
.y6f{bottom:140.758500px;}
.y10{bottom:144.451200px;}
.y83{bottom:145.148100px;}
.y6d{bottom:145.644750px;}
.y73{bottom:146.233410px;}
.y39{bottom:146.497800px;}
.yac{bottom:147.194700px;}
.y3f{bottom:150.731100px;}
.yb2{bottom:151.428000px;}
.y42{bottom:151.794600px;}
.y44{bottom:152.463900px;}
.yb3{bottom:152.491500px;}
.yb7{bottom:153.526950px;}
.y72{bottom:159.639630px;}
.yf{bottom:164.251200px;}
.y82{bottom:164.948100px;}
.y6c{bottom:165.444750px;}
.y38{bottom:166.297800px;}
.yab{bottom:166.994700px;}
.y71{bottom:173.045850px;}
.y54{bottom:174.320400px;}
.y46{bottom:177.661500px;}
.yb5{bottom:178.358400px;}
.y3e{bottom:178.819050px;}
.yb9{bottom:179.421450px;}
.yb1{bottom:179.515950px;}
.ye{bottom:184.051200px;}
.y81{bottom:184.748100px;}
.y6b{bottom:185.244750px;}
.y37{bottom:186.097800px;}
.yaa{bottom:186.794700px;}
.y53{bottom:194.120400px;}
.yd{bottom:203.851200px;}
.y80{bottom:204.548100px;}
.y6a{bottom:205.044750px;}
.y52{bottom:213.920400px;}
.y43{bottom:217.259400px;}
.yb6{bottom:218.322450px;}
.yc{bottom:223.651200px;}
.y7f{bottom:224.348100px;}
.y69{bottom:224.844750px;}
.y36{bottom:225.697800px;}
.ya9{bottom:226.394700px;}
.y51{bottom:233.720400px;}
.y45{bottom:239.454000px;}
.yb4{bottom:240.150900px;}
.yb8{bottom:241.213950px;}
.y3d{bottom:243.614550px;}
.yb0{bottom:244.311450px;}
.y68{bottom:244.644750px;}
.y35{bottom:245.497800px;}
.ya8{bottom:246.194700px;}
.y50{bottom:253.520400px;}
.yb{bottom:263.251200px;}
.y7e{bottom:263.948100px;}
.y4f{bottom:273.320400px;}
.y67{bottom:284.244750px;}
.y5d{bottom:304.114950px;}
.y4e{bottom:311.120400px;}
.y34{bottom:320.440800px;}
.ya7{bottom:321.137700px;}
.y66{bottom:323.844750px;}
.y5c{bottom:323.914950px;}
.y33{bottom:340.240800px;}
.ya6{bottom:340.937700px;}
.y65{bottom:343.644750px;}
.y5b{bottom:343.714950px;}
.ya{bottom:344.251200px;}
.y7d{bottom:344.948100px;}
.y32{bottom:360.040800px;}
.ya5{bottom:360.737700px;}
.y64{bottom:363.444750px;}
.y5a{bottom:363.514950px;}
.y9{bottom:364.051200px;}
.y7c{bottom:364.748100px;}
.y8{bottom:383.851200px;}
.y7b{bottom:384.548100px;}
.y31{bottom:399.640800px;}
.ya4{bottom:400.337700px;}
.y63{bottom:403.044750px;}
.y59{bottom:403.114950px;}
.y7{bottom:403.651200px;}
.y7a{bottom:404.348100px;}
.y30{bottom:419.440800px;}
.ya3{bottom:420.137700px;}
.y62{bottom:422.844750px;}
.y58{bottom:422.914950px;}
.y6{bottom:423.451200px;}
.y79{bottom:424.148100px;}
.y25{bottom:436.524150px;}
.y98{bottom:437.221050px;}
.y2f{bottom:439.240800px;}
.ya2{bottom:439.937700px;}
.y49{bottom:441.121500px;}
.y61{bottom:442.644750px;}
.y57{bottom:442.714950px;}
.y5{bottom:443.251200px;}
.y78{bottom:443.948100px;}
.y24{bottom:456.324000px;}
.y97{bottom:457.020900px;}
.y60{bottom:462.444750px;}
.y56{bottom:462.514950px;}
.y4{bottom:463.051200px;}
.y77{bottom:463.748100px;}
.y48{bottom:478.068300px;}
.y3c{bottom:478.599600px;}
.y2e{bottom:478.840800px;}
.yaf{bottom:479.296500px;}
.ya1{bottom:479.537700px;}
.y5f{bottom:482.244750px;}
.y55{bottom:482.314950px;}
.y23{bottom:495.924000px;}
.y96{bottom:496.620900px;}
.y2d{bottom:498.640800px;}
.ya0{bottom:499.337700px;}
.y3{bottom:502.651200px;}
.y76{bottom:503.348100px;}
.y47{bottom:504.620250px;}
.y2c{bottom:518.440800px;}
.y9f{bottom:519.137700px;}
.y5e{bottom:520.044750px;}
.y2{bottom:524.251200px;}
.y75{bottom:524.948100px;}
.y1{bottom:545.851200px;}
.y74{bottom:546.548100px;}
.y22{bottom:555.324000px;}
.y95{bottom:556.020900px;}
.y21{bottom:575.124000px;}
.y94{bottom:575.820900px;}
.y2b{bottom:585.835200px;}
.y9e{bottom:586.532100px;}
.y20{bottom:594.924000px;}
.y93{bottom:595.620900px;}
.y2a{bottom:605.635200px;}
.y9d{bottom:606.332100px;}
.y1f{bottom:614.724000px;}
.y92{bottom:615.420900px;}
.y29{bottom:625.435200px;}
.y9c{bottom:626.132100px;}
.y1e{bottom:634.524000px;}
.y91{bottom:635.220900px;}
.y1d{bottom:654.324000px;}
.y90{bottom:655.020900px;}
.y28{bottom:665.035200px;}
.y9b{bottom:665.732100px;}
.y1c{bottom:674.124000px;}
.y8f{bottom:674.820900px;}
.y27{bottom:684.835200px;}
.y9a{bottom:685.532100px;}
.y1b{bottom:713.724000px;}
.y8e{bottom:714.420900px;}
.y26{bottom:733.524150px;}
.y99{bottom:734.221050px;}
.y4d{bottom:735.920400px;}
.y1a{bottom:753.324000px;}
.y8d{bottom:754.020900px;}
.y4c{bottom:755.720400px;}
.y19{bottom:773.124000px;}
.y8c{bottom:773.820900px;}
.y4b{bottom:775.520400px;}
.y18{bottom:812.724000px;}
.y8b{bottom:813.420900px;}
.y4a{bottom:815.120400px;}
.hd{height:1.812454px;}
.hc{height:2.483314px;}
.he{height:4.463701px;}
.h5{height:22.584150px;}
.h12{height:33.515550px;}
.h7{height:47.825894px;}
.h4{height:49.500000px;}
.h3{height:51.264000px;}
.h11{height:58.601743px;}
.hf{height:59.808000px;}
.h6{height:64.080000px;}
.h2{height:93.984000px;}
.h9{height:131.050500px;}
.h8{height:131.052000px;}
.h10{height:131.862000px;}
.h13{height:892.125000px;}
.h0{height:892.217100px;}
.h1{height:892.500000px;}
.ha{height:892.914000px;}
.hb{height:893.250000px;}
.w2{width:-325.950000px;}
.w10{width:-295.273500px;}
.wc{width:-193.728000px;}
.wf{width:-47.652000px;}
.w6{width:-46.102500px;}
.w3{width:-30.438000px;}
.w13{width:258.252000px;}
.w14{width:306.142500px;}
.w9{width:386.937000px;}
.w12{width:618.750000px;}
.w11{width:618.834000px;}
.we{width:620.250000px;}
.wd{width:620.316000px;}
.wb{width:621.000000px;}
.wa{width:621.220500px;}
.w1{width:627.000000px;}
.w0{width:627.195000px;}
.w8{width:628.500000px;}
.w7{width:628.611000px;}
.w4{width:630.455293px;}
.w5{width:630.750000px;}
.x34{left:-1200.742950px;}
.x9{left:-1199.120700px;}
.x35{left:-1187.136750px;}
.xb{left:-1184.563800px;}
.x36{left:-1179.480750px;}
.xa{left:-1130.138550px;}
.x33{left:-1115.591400px;}
.x53{left:-575.284200px;}
.x27{left:-572.131950px;}
.x6{left:-570.254700px;}
.x38{left:-568.822500px;}
.x37{left:-566.289300px;}
.x55{left:-560.727300px;}
.x28{left:-558.525750px;}
.x7{left:-556.760550px;}
.x29{left:-550.869750px;}
.x8{left:-549.104550px;}
.xd{left:-513.036150px;}
.x54{left:-506.302050px;}
.x26{left:-486.980400px;}
.x39{left:-465.494131px;}
.x3d{left:-367.880700px;}
.x5{left:-346.518750px;}
.x3a{left:-280.941750px;}
.x3b{left:-275.221763px;}
.xc{left:-264.907050px;}
.x3c{left:-261.592106px;}
.x0{left:0.000000px;}
.x1a{left:14.375700px;}
.x58{left:39.634500px;}
.x2a{left:47.946000px;}
.x46{left:53.049300px;}
.x16{left:56.479844px;}
.x1{left:57.600750px;}
.x23{left:59.179050px;}
.x48{left:67.606200px;}
.x17{left:70.086044px;}
.x4c{left:71.165850px;}
.x24{left:72.785400px;}
.x52{left:74.731950px;}
.x18{left:77.742044px;}
.x25{left:80.438850px;}
.x2{left:82.948050px;}
.x3{left:96.554250px;}
.x4{left:104.208000px;}
.x57{left:110.800350px;}
.x47{left:122.031450px;}
.x15{left:141.631394px;}
.x2b{left:163.116869px;}
.x32{left:246.791850px;}
.x2f{left:260.730300px;}
.x51{left:277.317750px;}
.x30{left:282.151200px;}
.x59{left:287.256000px;}
.x31{left:303.914850px;}
.x2c{left:347.669250px;}
.x2d{left:353.389237px;}
.x56{left:358.929450px;}
.x2e{left:367.018894px;}
.x4b{left:667.968000px;}
.x19{left:676.557794px;}
.x43{left:681.915300px;}
.x12{left:687.790843px;}
.x44{left:695.409450px;}
.x13{left:701.397193px;}
.x45{left:703.065450px;}
.x4e{left:706.784550px;}
.x14{left:709.050643px;}
.x4f{left:720.390750px;}
.x50{left:728.044500px;}
.x4a{left:739.133850px;}
.x1b{left:791.728662px;}
.x22{left:875.402850px;}
.x1f{left:889.342093px;}
.x42{left:905.651250px;}
.x20{left:910.762200px;}
.x4d{left:915.589500px;}
.x21{left:932.525850px;}
.x1c{left:976.281043px;}
.x1d{left:982.001031px;}
.x49{left:987.262950px;}
.x1e{left:995.630688px;}
.x3e{left:1309.770750px;}
.x11{left:1316.125543px;}
.x3f{left:1335.118050px;}
.x40{left:1348.724250px;}
.x41{left:1356.378000px;}
.x10{left:1504.014644px;}
.xe{left:1539.373993px;}
.xf{left:1561.137643px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.597077pt;}
.ls4{letter-spacing:0.746667pt;}
.ls1{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.173333pt;}
.ws0{word-spacing:-26.986667pt;}
.ws1{word-spacing:-12.906667pt;}
.wsd{word-spacing:-8.738869pt;}
.ws4{word-spacing:-0.645333pt;}
.ws10{word-spacing:-0.586667pt;}
.ws6{word-spacing:-0.400000pt;}
.wse{word-spacing:-0.373333pt;}
.ws5{word-spacing:-0.352000pt;}
.wsa{word-spacing:-0.298539pt;}
.wsf{word-spacing:-0.234667pt;}
.ws7{word-spacing:-0.176000pt;}
.wsb{word-spacing:-0.002222pt;}
.ws2{word-spacing:0.000000pt;}
.ws3{word-spacing:0.645333pt;}
.ws9{word-spacing:0.762667pt;}
.ws8{word-spacing:9.386667pt;}
.wsc{word-spacing:141.648871pt;}
._2{margin-left:-10.236267pt;}
._5{margin-left:-6.230400pt;}
._4{margin-left:-5.202667pt;}
._1{margin-left:-3.285333pt;}
._3{margin-left:-2.357333pt;}
._0{margin-left:-1.280000pt;}
.fs7{font-size:2.221867pt;}
.fs6{font-size:3.044267pt;}
.fs8{font-size:5.472000pt;}
.fs3{font-size:26.766400pt;}
.fsc{font-size:39.722133pt;}
.fsa{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:59.707733pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fsb{font-size:75.275200pt;}
.fs4{font-size:80.000000pt;}
.fs0{font-size:117.333333pt;}
.y41{bottom:-87.563600pt;}
.y40{bottom:-32.636933pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:40.664376pt;}
.y8a{bottom:41.283843pt;}
.y16{bottom:50.173139pt;}
.y89{bottom:50.792606pt;}
.y15{bottom:59.681903pt;}
.y88{bottom:60.301370pt;}
.y14{bottom:69.190667pt;}
.y87{bottom:69.810133pt;}
.y13{bottom:75.601067pt;}
.y86{bottom:76.220533pt;}
.y12{bottom:93.201067pt;}
.y85{bottom:93.820533pt;}
.y3b{bottom:95.020267pt;}
.yae{bottom:95.639733pt;}
.y11{bottom:110.801067pt;}
.y84{bottom:111.420533pt;}
.y6e{bottom:111.862000pt;}
.y3a{bottom:112.620267pt;}
.yad{bottom:113.239733pt;}
.y70{bottom:124.010267pt;}
.y6f{bottom:125.118667pt;}
.y10{bottom:128.401067pt;}
.y83{bottom:129.020533pt;}
.y6d{bottom:129.462000pt;}
.y73{bottom:129.985253pt;}
.y39{bottom:130.220267pt;}
.yac{bottom:130.839733pt;}
.y3f{bottom:133.983200pt;}
.yb2{bottom:134.602667pt;}
.y42{bottom:134.928533pt;}
.y44{bottom:135.523467pt;}
.yb3{bottom:135.548000pt;}
.yb7{bottom:136.468400pt;}
.y72{bottom:141.901893pt;}
.yf{bottom:146.001067pt;}
.y82{bottom:146.620533pt;}
.y6c{bottom:147.062000pt;}
.y38{bottom:147.820267pt;}
.yab{bottom:148.439733pt;}
.y71{bottom:153.818533pt;}
.y54{bottom:154.951467pt;}
.y46{bottom:157.921333pt;}
.yb5{bottom:158.540800pt;}
.y3e{bottom:158.950267pt;}
.yb9{bottom:159.485733pt;}
.yb1{bottom:159.569733pt;}
.ye{bottom:163.601067pt;}
.y81{bottom:164.220533pt;}
.y6b{bottom:164.662000pt;}
.y37{bottom:165.420267pt;}
.yaa{bottom:166.039733pt;}
.y53{bottom:172.551467pt;}
.yd{bottom:181.201067pt;}
.y80{bottom:181.820533pt;}
.y6a{bottom:182.262000pt;}
.y52{bottom:190.151467pt;}
.y43{bottom:193.119467pt;}
.yb6{bottom:194.064400pt;}
.yc{bottom:198.801067pt;}
.y7f{bottom:199.420533pt;}
.y69{bottom:199.862000pt;}
.y36{bottom:200.620267pt;}
.ya9{bottom:201.239733pt;}
.y51{bottom:207.751467pt;}
.y45{bottom:212.848000pt;}
.yb4{bottom:213.467467pt;}
.yb8{bottom:214.412400pt;}
.y3d{bottom:216.546267pt;}
.yb0{bottom:217.165733pt;}
.y68{bottom:217.462000pt;}
.y35{bottom:218.220267pt;}
.ya8{bottom:218.839733pt;}
.y50{bottom:225.351467pt;}
.yb{bottom:234.001067pt;}
.y7e{bottom:234.620533pt;}
.y4f{bottom:242.951467pt;}
.y67{bottom:252.662000pt;}
.y5d{bottom:270.324400pt;}
.y4e{bottom:276.551467pt;}
.y34{bottom:284.836267pt;}
.ya7{bottom:285.455733pt;}
.y66{bottom:287.862000pt;}
.y5c{bottom:287.924400pt;}
.y33{bottom:302.436267pt;}
.ya6{bottom:303.055733pt;}
.y65{bottom:305.462000pt;}
.y5b{bottom:305.524400pt;}
.ya{bottom:306.001067pt;}
.y7d{bottom:306.620533pt;}
.y32{bottom:320.036267pt;}
.ya5{bottom:320.655733pt;}
.y64{bottom:323.062000pt;}
.y5a{bottom:323.124400pt;}
.y9{bottom:323.601067pt;}
.y7c{bottom:324.220533pt;}
.y8{bottom:341.201067pt;}
.y7b{bottom:341.820533pt;}
.y31{bottom:355.236267pt;}
.ya4{bottom:355.855733pt;}
.y63{bottom:358.262000pt;}
.y59{bottom:358.324400pt;}
.y7{bottom:358.801067pt;}
.y7a{bottom:359.420533pt;}
.y30{bottom:372.836267pt;}
.ya3{bottom:373.455733pt;}
.y62{bottom:375.862000pt;}
.y58{bottom:375.924400pt;}
.y6{bottom:376.401067pt;}
.y79{bottom:377.020533pt;}
.y25{bottom:388.021467pt;}
.y98{bottom:388.640933pt;}
.y2f{bottom:390.436267pt;}
.ya2{bottom:391.055733pt;}
.y49{bottom:392.108000pt;}
.y61{bottom:393.462000pt;}
.y57{bottom:393.524400pt;}
.y5{bottom:394.001067pt;}
.y78{bottom:394.620533pt;}
.y24{bottom:405.621333pt;}
.y97{bottom:406.240800pt;}
.y60{bottom:411.062000pt;}
.y56{bottom:411.124400pt;}
.y4{bottom:411.601067pt;}
.y77{bottom:412.220533pt;}
.y48{bottom:424.949600pt;}
.y3c{bottom:425.421867pt;}
.y2e{bottom:425.636267pt;}
.yaf{bottom:426.041333pt;}
.ya1{bottom:426.255733pt;}
.y5f{bottom:428.662000pt;}
.y55{bottom:428.724400pt;}
.y23{bottom:440.821333pt;}
.y96{bottom:441.440800pt;}
.y2d{bottom:443.236267pt;}
.ya0{bottom:443.855733pt;}
.y3{bottom:446.801067pt;}
.y76{bottom:447.420533pt;}
.y47{bottom:448.551333pt;}
.y2c{bottom:460.836267pt;}
.y9f{bottom:461.455733pt;}
.y5e{bottom:462.262000pt;}
.y2{bottom:466.001067pt;}
.y75{bottom:466.620533pt;}
.y1{bottom:485.201067pt;}
.y74{bottom:485.820533pt;}
.y22{bottom:493.621333pt;}
.y95{bottom:494.240800pt;}
.y21{bottom:511.221333pt;}
.y94{bottom:511.840800pt;}
.y2b{bottom:520.742400pt;}
.y9e{bottom:521.361867pt;}
.y20{bottom:528.821333pt;}
.y93{bottom:529.440800pt;}
.y2a{bottom:538.342400pt;}
.y9d{bottom:538.961867pt;}
.y1f{bottom:546.421333pt;}
.y92{bottom:547.040800pt;}
.y29{bottom:555.942400pt;}
.y9c{bottom:556.561867pt;}
.y1e{bottom:564.021333pt;}
.y91{bottom:564.640800pt;}
.y1d{bottom:581.621333pt;}
.y90{bottom:582.240800pt;}
.y28{bottom:591.142400pt;}
.y9b{bottom:591.761867pt;}
.y1c{bottom:599.221333pt;}
.y8f{bottom:599.840800pt;}
.y27{bottom:608.742400pt;}
.y9a{bottom:609.361867pt;}
.y1b{bottom:634.421333pt;}
.y8e{bottom:635.040800pt;}
.y26{bottom:652.021467pt;}
.y99{bottom:652.640933pt;}
.y4d{bottom:654.151467pt;}
.y1a{bottom:669.621333pt;}
.y8d{bottom:670.240800pt;}
.y4c{bottom:671.751467pt;}
.y19{bottom:687.221333pt;}
.y8c{bottom:687.840800pt;}
.y4b{bottom:689.351467pt;}
.y18{bottom:722.421333pt;}
.y8b{bottom:723.040800pt;}
.y4a{bottom:724.551467pt;}
.hd{height:1.611070pt;}
.hc{height:2.207391pt;}
.he{height:3.967734pt;}
.h5{height:20.074800pt;}
.h12{height:29.791600pt;}
.h7{height:42.511906pt;}
.h4{height:44.000000pt;}
.h3{height:45.568000pt;}
.h11{height:52.090438pt;}
.hf{height:53.162667pt;}
.h6{height:56.960000pt;}
.h2{height:83.541333pt;}
.h9{height:116.489333pt;}
.h8{height:116.490667pt;}
.h10{height:117.210667pt;}
.h13{height:793.000000pt;}
.h0{height:793.081867pt;}
.h1{height:793.333333pt;}
.ha{height:793.701333pt;}
.hb{height:794.000000pt;}
.w2{width:-289.733333pt;}
.w10{width:-262.465333pt;}
.wc{width:-172.202667pt;}
.wf{width:-42.357333pt;}
.w6{width:-40.980000pt;}
.w3{width:-27.056000pt;}
.w13{width:229.557333pt;}
.w14{width:272.126667pt;}
.w9{width:343.944000pt;}
.w12{width:550.000000pt;}
.w11{width:550.074667pt;}
.we{width:551.333333pt;}
.wd{width:551.392000pt;}
.wb{width:552.000000pt;}
.wa{width:552.196000pt;}
.w1{width:557.333333pt;}
.w0{width:557.506667pt;}
.w8{width:558.666667pt;}
.w7{width:558.765333pt;}
.w4{width:560.404705pt;}
.w5{width:560.666667pt;}
.x34{left:-1067.327067pt;}
.x9{left:-1065.885067pt;}
.x35{left:-1055.232667pt;}
.xb{left:-1052.945600pt;}
.x36{left:-1048.427333pt;}
.xa{left:-1004.567600pt;}
.x33{left:-991.636800pt;}
.x53{left:-511.363733pt;}
.x27{left:-508.561733pt;}
.x6{left:-506.893067pt;}
.x38{left:-505.620000pt;}
.x37{left:-503.368267pt;}
.x55{left:-498.424267pt;}
.x28{left:-496.467333pt;}
.x7{left:-494.898267pt;}
.x29{left:-489.662000pt;}
.x8{left:-488.092933pt;}
.xd{left:-456.032133pt;}
.x54{left:-450.046267pt;}
.x26{left:-432.871467pt;}
.x39{left:-413.772561pt;}
.x3d{left:-327.005067pt;}
.x5{left:-308.016667pt;}
.x3a{left:-249.726000pt;}
.x3b{left:-244.641567pt;}
.xc{left:-235.472933pt;}
.x3c{left:-232.526316pt;}
.x0{left:0.000000pt;}
.x1a{left:12.778400pt;}
.x58{left:35.230667pt;}
.x2a{left:42.618667pt;}
.x46{left:47.154933pt;}
.x16{left:50.204305pt;}
.x1{left:51.200667pt;}
.x23{left:52.603600pt;}
.x48{left:60.094400pt;}
.x17{left:62.298705pt;}
.x4c{left:63.258533pt;}
.x24{left:64.698133pt;}
.x52{left:66.428400pt;}
.x18{left:69.104039pt;}
.x25{left:71.501200pt;}
.x2{left:73.731600pt;}
.x3{left:85.826000pt;}
.x4{left:92.629333pt;}
.x57{left:98.489200pt;}
.x47{left:108.472400pt;}
.x15{left:125.894572pt;}
.x2b{left:144.992772pt;}
.x32{left:219.370533pt;}
.x2f{left:231.760267pt;}
.x51{left:246.504667pt;}
.x30{left:250.801067pt;}
.x59{left:255.338667pt;}
.x31{left:270.146533pt;}
.x2c{left:309.039333pt;}
.x2d{left:314.123766pt;}
.x56{left:319.048400pt;}
.x2e{left:326.239017pt;}
.x4b{left:593.749333pt;}
.x19{left:601.384705pt;}
.x43{left:606.146933pt;}
.x12{left:611.369639pt;}
.x44{left:618.141733pt;}
.x13{left:623.464172pt;}
.x45{left:624.947067pt;}
.x4e{left:628.252933pt;}
.x14{left:630.267239pt;}
.x4f{left:640.347333pt;}
.x50{left:647.150667pt;}
.x4a{left:657.007867pt;}
.x1b{left:703.758811pt;}
.x22{left:778.135867pt;}
.x1f{left:790.526305pt;}
.x42{left:805.023333pt;}
.x20{left:809.566400pt;}
.x4d{left:813.857333pt;}
.x21{left:828.911867pt;}
.x1c{left:867.805372pt;}
.x1d{left:872.889805pt;}
.x49{left:877.567067pt;}
.x1e{left:885.005056pt;}
.x3e{left:1164.240667pt;}
.x11{left:1169.889372pt;}
.x3f{left:1186.771600pt;}
.x40{left:1198.866000pt;}
.x41{left:1205.669333pt;}
.x10{left:1336.901905pt;}
.xe{left:1368.332439pt;}
.xf{left:1387.677905pt;}
}




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