
    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_4330937a07f18fe297e1bcf4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_639189dac868b16a072c9b4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_d1c4e2253b004ce79d4b2eed.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_5fb37d0f10b413a3f03e6e08.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_e2677acc91a75b4ccab237ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_ade8e92423c04b8c7a7ef495.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_9c6e8f1e4fc68887ad627432.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_ab6099a64e3a72db3ed2d6af.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.364746;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_1b2ae176d6f526a06befbd5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.364746;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_61912d0995a60485cc7380d6.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_f6e7fa1e02d10e75f06930e1.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_812017696d5001c2dbe87032.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_0e55debf976ed58fd0727624.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.364746;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_91ed4a94fc6e97dcaa1ce904.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;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_19fb4a053aa219f909fd7142.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;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_5046f07ac7c1ab64d455c9f5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_ab6099a64e3a72db3ed2d6af.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.364746;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_97d5070f2d6d0630d6455a1a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.281250;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;}
.m1a{transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.091549,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091549,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091549,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092715,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.122727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122727,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.128247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128247,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.151869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151869,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202020,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.207071,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207071,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207071,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209091,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210784,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214646,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222222,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234211,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235437,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237374,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.240602,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240602,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240602,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.241206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241206,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241848,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242188,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243151,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247222,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248120,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m20{transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251457,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252604,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252717,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258333,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261905,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265152,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268817,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271226,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.316176,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330882,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.356061,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395161,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.401961,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467742,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.538043,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.600962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600962,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-8.330850px;}
.ls3a{letter-spacing:-6.187500px;}
.ls14{letter-spacing:-5.355000px;}
.ls16{letter-spacing:-4.590000px;}
.ls18{letter-spacing:-3.824250px;}
.ls28{letter-spacing:-3.786008px;}
.ls15{letter-spacing:-3.442350px;}
.ls26{letter-spacing:-3.029400px;}
.ls2e{letter-spacing:-2.998800px;}
.ls17{letter-spacing:-2.294250px;}
.ls1f{letter-spacing:-2.271308px;}
.ls2f{letter-spacing:-2.248365px;}
.ls25{letter-spacing:-2.226150px;}
.ls39{letter-spacing:-1.545000px;}
.ls12{letter-spacing:-1.530000px;}
.ls21{letter-spacing:-1.514700px;}
.ls30{letter-spacing:-1.499400px;}
.ls38{letter-spacing:-0.772500px;}
.ls13{letter-spacing:-0.764250px;}
.ls20{letter-spacing:-0.756608px;}
.lse{letter-spacing:-0.750600px;}
.ls2d{letter-spacing:-0.748965px;}
.ls31{letter-spacing:-0.734265px;}
.ls22{letter-spacing:-0.668880px;}
.lsd{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.748965px;}
.ls19{letter-spacing:0.756608px;}
.ls4{letter-spacing:0.758100px;}
.ls6{letter-spacing:0.764250px;}
.ls5{letter-spacing:0.771975px;}
.ls33{letter-spacing:0.772500px;}
.ls3{letter-spacing:0.776100px;}
.ls2b{letter-spacing:1.499400px;}
.ls1a{letter-spacing:1.514700px;}
.ls9{letter-spacing:1.530000px;}
.ls11{letter-spacing:1.543950px;}
.ls32{letter-spacing:1.545000px;}
.ls1{letter-spacing:1.553693px;}
.lsa{letter-spacing:1.560000px;}
.ls2a{letter-spacing:2.248365px;}
.ls1d{letter-spacing:2.271308px;}
.ls7{letter-spacing:2.294250px;}
.ls10{letter-spacing:2.316375px;}
.ls35{letter-spacing:2.317500px;}
.lsc{letter-spacing:2.335148px;}
.ls2c{letter-spacing:2.998800px;}
.ls1c{letter-spacing:3.029400px;}
.ls8{letter-spacing:3.060000px;}
.ls34{letter-spacing:3.090000px;}
.ls0{letter-spacing:3.104400px;}
.ls1b{letter-spacing:3.786008px;}
.lsf{letter-spacing:3.854400px;}
.ls36{letter-spacing:3.862500px;}
.ls2{letter-spacing:3.880500px;}
.ls1e{letter-spacing:4.544100px;}
.ls23{letter-spacing:4.640625px;}
.ls37{letter-spacing:4.642500px;}
.lsb{letter-spacing:4.671525px;}
.ls27{letter-spacing:6.227865px;}
.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:0.000000px;}
._f{margin-left:-55.192027px;}
._11{margin-left:-50.533703px;}
._1c{margin-left:-48.875685px;}
._1b{margin-left:-42.990750px;}
._1d{margin-left:-36.688568px;}
._1a{margin-left:-33.489720px;}
._2{margin-left:-16.180192px;}
._8{margin-left:-10.779615px;}
._5{margin-left:-8.159550px;}
._19{margin-left:-7.137120px;}
._17{margin-left:-5.754352px;}
._1{margin-left:-4.668540px;}
._e{margin-left:-3.283845px;}
._4{margin-left:-1.913385px;}
._a{width:1.083953px;}
._10{width:2.537250px;}
._6{width:4.052047px;}
._7{width:5.074087px;}
._3{width:6.119250px;}
._9{width:7.596135px;}
._12{width:9.222960px;}
._0{width:10.477350px;}
._13{width:11.773703px;}
._b{width:13.098203px;}
._c{width:14.126047px;}
._d{width:15.840000px;}
._15{width:17.343210px;}
._18{width:18.710205px;}
._14{width:20.102040px;}
._16{width:68.165797px;}
.fc0{color:transparent;}
.fs1c{font-size:23.250000px;}
.fs11{font-size:24.750000px;}
.fs12{font-size:25.500000px;}
.fs1d{font-size:27.000000px;}
.fsf{font-size:34.500000px;}
.fs1f{font-size:38.250000px;}
.fs1e{font-size:47.250000px;}
.fs5{font-size:53.250000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:54.750000px;}
.fs2{font-size:56.250000px;}
.fs16{font-size:67.500000px;}
.fs9{font-size:69.000000px;}
.fs18{font-size:69.750000px;}
.fs1a{font-size:71.250000px;}
.fsa{font-size:72.000000px;}
.fs15{font-size:73.500000px;}
.fs8{font-size:74.250000px;}
.fs6{font-size:75.000000px;}
.fs17{font-size:75.268800px;}
.fsb{font-size:76.500000px;}
.fs19{font-size:77.250000px;}
.fsc{font-size:78.000000px;}
.fs7{font-size:79.500000px;}
.fs13{font-size:80.250000px;}
.fsd{font-size:82.500000px;}
.fs14{font-size:93.750000px;}
.fs1{font-size:99.750000px;}
.fse{font-size:106.500000px;}
.fs10{font-size:113.250000px;}
.fs1b{font-size:115.500000px;}
.fs0{font-size:149.250000px;}
.y0{bottom:0.000000px;}
.y20{bottom:71.997075px;}
.y80{bottom:73.439738px;}
.y55{bottom:76.678612px;}
.y1f{bottom:93.237075px;}
.y7f{bottom:94.679400px;}
.y54{bottom:97.919681px;}
.y1e{bottom:114.117262px;}
.y7d{bottom:115.560457px;}
.y7e{bottom:115.560750px;}
.y53{bottom:119.160750px;}
.y1d{bottom:134.998950px;}
.y7c{bottom:136.440154px;}
.y52{bottom:140.039850px;}
.y1c{bottom:155.878950px;}
.y7a{bottom:157.319719px;}
.y7b{bottom:157.319850px;}
.y50{bottom:160.918147px;}
.y51{bottom:160.918950px;}
.y1b{bottom:177.118950px;}
.y78{bottom:178.199085px;}
.y79{bottom:178.199415px;}
.y4f{bottom:181.798918px;}
.y1a{bottom:197.998950px;}
.y76{bottom:199.079291px;}
.y77{bottom:199.080435px;}
.y4e{bottom:202.678204px;}
.y18{bottom:218.878463px;}
.y19{bottom:218.878950px;}
.y75{bottom:220.318954px;}
.y4d{bottom:223.557304px;}
.y16{bottom:239.758283px;}
.y17{bottom:239.760150px;}
.y74{bottom:241.200304px;}
.y4c{bottom:244.798372px;}
.y15{bottom:260.996595px;}
.y73{bottom:262.080000px;}
.y72{bottom:262.080330px;}
.y4b{bottom:265.319216px;}
.y14{bottom:281.878283px;}
.y71{bottom:283.319992px;}
.y4a{bottom:286.560285px;}
.y49{bottom:286.560585px;}
.y13{bottom:302.758283px;}
.y70{bottom:304.199689px;}
.y48{bottom:307.439685px;}
.y12{bottom:323.638283px;}
.y6f{bottom:325.078102px;}
.y47{bottom:325.079385px;}
.y46{bottom:327.960000px;}
.y45{bottom:338.759100px;}
.y11{bottom:344.878283px;}
.y6e{bottom:345.959452px;}
.y44{bottom:347.760135px;}
.y43{bottom:349.559685px;}
.y42{bottom:363.959385px;}
.y10{bottom:365.758283px;}
.y6d{bottom:367.199115px;}
.y41{bottom:370.080000px;}
.yf{bottom:386.638283px;}
.y6b{bottom:388.078575px;}
.y6c{bottom:388.080465px;}
.y3f{bottom:391.318770px;}
.y40{bottom:399.238770px;}
.y3e{bottom:405.359250px;}
.ye{bottom:407.878283px;}
.y3d{bottom:408.959970px;}
.y6a{bottom:409.318238px;}
.y3c{bottom:412.558556px;}
.yd{bottom:428.759970px;}
.y69{bottom:430.199587px;}
.y3b{bottom:433.079400px;}
.y3a{bottom:448.560285px;}
.yc{bottom:449.998282px;}
.y68{bottom:451.439250px;}
.y67{bottom:451.440274px;}
.y39{bottom:454.319820px;}
.y96{bottom:467.279250px;}
.ya{bottom:470.879400px;}
.yb{bottom:470.879970px;}
.y66{bottom:472.321624px;}
.y38{bottom:475.559364px;}
.y95{bottom:483.119385px;}
.y9{bottom:492.117712px;}
.y65{bottom:493.561286px;}
.y37{bottom:496.078166px;}
.y94{bottom:496.078770px;}
.y93{bottom:507.238770px;}
.y8{bottom:512.999400px;}
.y92{bottom:513.720150px;}
.y64{bottom:514.440983px;}
.y36{bottom:517.319235px;}
.y91{bottom:519.838950px;}
.y7{bottom:533.879400px;}
.y35{bottom:534.238770px;}
.y63{bottom:535.680645px;}
.y34{bottom:538.198785px;}
.y90{bottom:538.559685px;}
.y6{bottom:555.119400px;}
.y33{bottom:556.199385px;}
.y62{bottom:556.200007px;}
.y32{bottom:559.439250px;}
.y5{bottom:575.999400px;}
.y31{bottom:577.439670px;}
.y61{bottom:577.442561px;}
.y2f{bottom:580.317908px;}
.y8f{bottom:580.318620px;}
.y30{bottom:580.318770px;}
.y60{bottom:598.322258px;}
.y2e{bottom:600.838751px;}
.y8e{bottom:601.200308px;}
.y5f{bottom:619.561920px;}
.y2d{bottom:622.079820px;}
.y8c{bottom:622.438133px;}
.y8d{bottom:622.438620px;}
.y5e{bottom:640.801582px;}
.y2c{bottom:642.958920px;}
.y8a{bottom:643.319385px;}
.y8b{bottom:643.319820px;}
.y4{bottom:651.599070px;}
.y5d{bottom:661.681095px;}
.y89{bottom:664.199235px;}
.y2b{bottom:664.199385px;}
.y2a{bottom:664.200099px;}
.y5c{bottom:682.920758px;}
.y29{bottom:685.079199px;}
.y88{bottom:685.439235px;}
.y5b{bottom:704.160420px;}
.y28{bottom:705.959970px;}
.y86{bottom:706.318785px;}
.y87{bottom:706.319235px;}
.y5a{bottom:725.041316px;}
.y27{bottom:726.839535px;}
.y26{bottom:726.840264px;}
.y84{bottom:727.198118px;}
.y85{bottom:727.198785px;}
.y3{bottom:729.359250px;}
.y59{bottom:745.920829px;}
.y2{bottom:747.718492px;}
.y25{bottom:747.719364px;}
.y83{bottom:748.079805px;}
.y58{bottom:767.160491px;}
.y24{bottom:768.600135px;}
.y23{bottom:768.600975px;}
.y82{bottom:768.959805px;}
.y1{bottom:787.680180px;}
.y57{bottom:788.040188px;}
.y81{bottom:790.199805px;}
.y22{bottom:790.200300px;}
.y56{bottom:809.279850px;}
.y21{bottom:811.079400px;}
.h28{height:23.431641px;}
.h29{height:24.249023px;}
.h26{height:24.459961px;}
.h17{height:24.943359px;}
.h18{height:25.201172px;}
.h2a{height:28.160156px;}
.h15{height:35.982422px;}
.h2c{height:39.893555px;}
.h2b{height:46.350220px;}
.h7{height:55.538086px;}
.h5{height:56.320312px;}
.h6{height:57.102539px;}
.h4{height:58.666992px;}
.h1f{height:70.400391px;}
.hd{height:71.964844px;}
.h21{height:72.747070px;}
.h25{height:74.311523px;}
.he{height:75.093750px;}
.h1d{height:76.658203px;}
.h1e{height:76.658938px;}
.h10{height:77.097656px;}
.hc{height:77.440430px;}
.h8{height:78.222656px;}
.h20{height:78.503006px;}
.hf{height:79.787109px;}
.h24{height:80.569336px;}
.h19{height:80.876953px;}
.h11{height:81.351562px;}
.h9{height:82.916016px;}
.h13{height:83.144531px;}
.h12{height:86.044922px;}
.h1a{height:94.482422px;}
.h3{height:104.036133px;}
.h14{height:111.076172px;}
.h16{height:111.148682px;}
.h27{height:113.300537px;}
.h2{height:155.663086px;}
.h1{height:897.750000px;}
.h0{height:897.838500px;}
.h1c{height:902.250000px;}
.h1b{height:902.518500px;}
.ha{height:904.318500px;}
.hb{height:904.500000px;}
.h23{height:907.500000px;}
.h22{height:907.558500px;}
.w1{width:1152.000000px;}
.w0{width:1152.001185px;}
.w2{width:1157.758500px;}
.w3{width:1158.000000px;}
.w4{width:1160.638500px;}
.w5{width:1161.000000px;}
.x0{left:0.000000px;}
.x10{left:42.485925px;}
.x1{left:43.560285px;}
.x2{left:45.360285px;}
.x27{left:46.436344px;}
.x25{left:47.518665px;}
.xd{left:60.474124px;}
.xa{left:61.560720px;}
.x33{left:63.718410px;}
.x26{left:64.796644px;}
.x28{left:83.878950px;}
.xf{left:143.280885px;}
.x29{left:178.199415px;}
.x2a{left:193.319250px;}
.x2b{left:226.439685px;}
.x36{left:229.318800px;}
.x2c{left:242.639100px;}
.x37{left:244.799535px;}
.xb{left:313.921200px;}
.xc{left:333.721215px;}
.x34{left:380.519685px;}
.x38{left:388.798920px;}
.x31{left:394.199385px;}
.x2d{left:398.879565px;}
.x35{left:401.039985px;}
.x39{left:406.438665px;}
.x32{left:410.039385px;}
.x1c{left:412.918350px;}
.x11{left:413.999400px;}
.x3c{left:427.319820px;}
.x20{left:430.198785px;}
.x12{left:432.002306px;}
.x49{left:434.878920px;}
.x3d{left:447.119985px;}
.x4a{left:449.639700px;}
.x2f{left:473.399820px;}
.x30{left:488.519670px;}
.x2e{left:540.718500px;}
.x13{left:543.239820px;}
.x14{left:558.359850px;}
.x4c{left:646.559685px;}
.x18{left:653.398635px;}
.x4d{left:664.199385px;}
.x42{left:677.878920px;}
.x3a{left:678.958335px;}
.x43{left:693.719100px;}
.x3b{left:700.918950px;}
.xe{left:716.399835px;}
.x44{left:785.158815px;}
.x5{left:801.720705px;}
.x45{left:802.798560px;}
.x23{left:813.599115px;}
.x6{left:815.761230px;}
.x3{left:820.800750px;}
.x7{left:830.161020px;}
.x24{left:833.758575px;}
.x48{left:898.559055px;}
.x46{left:900.719520px;}
.x19{left:903.239220px;}
.x8{left:907.560240px;}
.x4{left:914.400885px;}
.x47{left:917.639100px;}
.x9{left:925.560705px;}
.x1a{left:927.719520px;}
.x40{left:932.759040px;}
.x21{left:938.159370px;}
.x41{left:950.039340px;}
.x22{left:953.279205px;}
.x16{left:985.318815px;}
.x3e{left:1002.958275px;}
.x17{left:1008.358605px;}
.x3f{left:1017.719055px;}
.x1d{left:1062.358605px;}
.x1e{left:1076.758575px;}
.x15{left:1097.278755px;}
.x4e{left:1100.518620px;}
.x1f{left:1136.519715px;}
.x1b{left:1137.599025px;}
.x4b{left:1139.039340px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-7.405200pt;}
.ls3a{letter-spacing:-5.500000pt;}
.ls14{letter-spacing:-4.760000pt;}
.ls16{letter-spacing:-4.080000pt;}
.ls18{letter-spacing:-3.399333pt;}
.ls28{letter-spacing:-3.365340pt;}
.ls15{letter-spacing:-3.059867pt;}
.ls26{letter-spacing:-2.692800pt;}
.ls2e{letter-spacing:-2.665600pt;}
.ls17{letter-spacing:-2.039333pt;}
.ls1f{letter-spacing:-2.018940pt;}
.ls2f{letter-spacing:-1.998547pt;}
.ls25{letter-spacing:-1.978800pt;}
.ls39{letter-spacing:-1.373333pt;}
.ls12{letter-spacing:-1.360000pt;}
.ls21{letter-spacing:-1.346400pt;}
.ls30{letter-spacing:-1.332800pt;}
.ls38{letter-spacing:-0.686667pt;}
.ls13{letter-spacing:-0.679333pt;}
.ls20{letter-spacing:-0.672540pt;}
.lse{letter-spacing:-0.667200pt;}
.ls2d{letter-spacing:-0.665747pt;}
.ls31{letter-spacing:-0.652680pt;}
.ls22{letter-spacing:-0.594560pt;}
.lsd{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.665747pt;}
.ls19{letter-spacing:0.672540pt;}
.ls4{letter-spacing:0.673867pt;}
.ls6{letter-spacing:0.679333pt;}
.ls5{letter-spacing:0.686200pt;}
.ls33{letter-spacing:0.686667pt;}
.ls3{letter-spacing:0.689867pt;}
.ls2b{letter-spacing:1.332800pt;}
.ls1a{letter-spacing:1.346400pt;}
.ls9{letter-spacing:1.360000pt;}
.ls11{letter-spacing:1.372400pt;}
.ls32{letter-spacing:1.373333pt;}
.ls1{letter-spacing:1.381060pt;}
.lsa{letter-spacing:1.386667pt;}
.ls2a{letter-spacing:1.998547pt;}
.ls1d{letter-spacing:2.018940pt;}
.ls7{letter-spacing:2.039333pt;}
.ls10{letter-spacing:2.059000pt;}
.ls35{letter-spacing:2.060000pt;}
.lsc{letter-spacing:2.075687pt;}
.ls2c{letter-spacing:2.665600pt;}
.ls1c{letter-spacing:2.692800pt;}
.ls8{letter-spacing:2.720000pt;}
.ls34{letter-spacing:2.746667pt;}
.ls0{letter-spacing:2.759467pt;}
.ls1b{letter-spacing:3.365340pt;}
.lsf{letter-spacing:3.426133pt;}
.ls36{letter-spacing:3.433333pt;}
.ls2{letter-spacing:3.449333pt;}
.ls1e{letter-spacing:4.039200pt;}
.ls23{letter-spacing:4.125000pt;}
.ls37{letter-spacing:4.126667pt;}
.lsb{letter-spacing:4.152467pt;}
.ls27{letter-spacing:5.535880pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-49.059580pt;}
._11{margin-left:-44.918847pt;}
._1c{margin-left:-43.445053pt;}
._1b{margin-left:-38.214000pt;}
._1d{margin-left:-32.612060pt;}
._1a{margin-left:-29.768640pt;}
._2{margin-left:-14.382393pt;}
._8{margin-left:-9.581880pt;}
._5{margin-left:-7.252933pt;}
._19{margin-left:-6.344107pt;}
._17{margin-left:-5.114980pt;}
._1{margin-left:-4.149813pt;}
._e{margin-left:-2.918973pt;}
._4{margin-left:-1.700787pt;}
._a{width:0.963513pt;}
._10{width:2.255333pt;}
._6{width:3.601820pt;}
._7{width:4.510300pt;}
._3{width:5.439333pt;}
._9{width:6.752120pt;}
._12{width:8.198187pt;}
._0{width:9.313200pt;}
._13{width:10.465513pt;}
._b{width:11.642847pt;}
._c{width:12.556487pt;}
._d{width:14.080000pt;}
._15{width:15.416187pt;}
._18{width:16.631293pt;}
._14{width:17.868480pt;}
._16{width:60.591820pt;}
.fs1c{font-size:20.666667pt;}
.fs11{font-size:22.000000pt;}
.fs12{font-size:22.666667pt;}
.fs1d{font-size:24.000000pt;}
.fsf{font-size:30.666667pt;}
.fs1f{font-size:34.000000pt;}
.fs1e{font-size:42.000000pt;}
.fs5{font-size:47.333333pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:48.666667pt;}
.fs2{font-size:50.000000pt;}
.fs16{font-size:60.000000pt;}
.fs9{font-size:61.333333pt;}
.fs18{font-size:62.000000pt;}
.fs1a{font-size:63.333333pt;}
.fsa{font-size:64.000000pt;}
.fs15{font-size:65.333333pt;}
.fs8{font-size:66.000000pt;}
.fs6{font-size:66.666667pt;}
.fs17{font-size:66.905600pt;}
.fsb{font-size:68.000000pt;}
.fs19{font-size:68.666667pt;}
.fsc{font-size:69.333333pt;}
.fs7{font-size:70.666667pt;}
.fs13{font-size:71.333333pt;}
.fsd{font-size:73.333333pt;}
.fs14{font-size:83.333333pt;}
.fs1{font-size:88.666667pt;}
.fse{font-size:94.666667pt;}
.fs10{font-size:100.666667pt;}
.fs1b{font-size:102.666667pt;}
.fs0{font-size:132.666667pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:63.997400pt;}
.y80{bottom:65.279767pt;}
.y55{bottom:68.158767pt;}
.y1f{bottom:82.877400pt;}
.y7f{bottom:84.159467pt;}
.y54{bottom:87.039717pt;}
.y1e{bottom:101.437567pt;}
.y7d{bottom:102.720407pt;}
.y7e{bottom:102.720667pt;}
.y53{bottom:105.920667pt;}
.y1d{bottom:119.999067pt;}
.y7c{bottom:121.280137pt;}
.y52{bottom:124.479867pt;}
.y1c{bottom:138.559067pt;}
.y7a{bottom:139.839750pt;}
.y7b{bottom:139.839867pt;}
.y50{bottom:143.038353pt;}
.y51{bottom:143.039067pt;}
.y1b{bottom:157.439067pt;}
.y78{bottom:158.399187pt;}
.y79{bottom:158.399480pt;}
.y4f{bottom:161.599038pt;}
.y1a{bottom:175.999067pt;}
.y76{bottom:176.959370pt;}
.y77{bottom:176.960387pt;}
.y4e{bottom:180.158403pt;}
.y18{bottom:194.558633pt;}
.y19{bottom:194.559067pt;}
.y75{bottom:195.839070pt;}
.y4d{bottom:198.717603pt;}
.y16{bottom:213.118473pt;}
.y17{bottom:213.120133pt;}
.y74{bottom:214.400270pt;}
.y4c{bottom:217.598553pt;}
.y15{bottom:231.996973pt;}
.y73{bottom:232.960000pt;}
.y72{bottom:232.960293pt;}
.y4b{bottom:235.839303pt;}
.y14{bottom:250.558473pt;}
.y71{bottom:251.839993pt;}
.y4a{bottom:254.720253pt;}
.y49{bottom:254.720520pt;}
.y13{bottom:269.118473pt;}
.y70{bottom:270.399723pt;}
.y48{bottom:273.279720pt;}
.y12{bottom:287.678473pt;}
.y6f{bottom:288.958313pt;}
.y47{bottom:288.959453pt;}
.y46{bottom:291.520000pt;}
.y45{bottom:301.119200pt;}
.y11{bottom:306.558473pt;}
.y6e{bottom:307.519513pt;}
.y44{bottom:309.120120pt;}
.y43{bottom:310.719720pt;}
.y42{bottom:323.519453pt;}
.y10{bottom:325.118473pt;}
.y6d{bottom:326.399213pt;}
.y41{bottom:328.960000pt;}
.yf{bottom:343.678473pt;}
.y6b{bottom:344.958733pt;}
.y6c{bottom:344.960413pt;}
.y3f{bottom:347.838907pt;}
.y40{bottom:354.878907pt;}
.y3e{bottom:360.319333pt;}
.ye{bottom:362.558473pt;}
.y3d{bottom:363.519973pt;}
.y6a{bottom:363.838433pt;}
.y3c{bottom:366.718717pt;}
.yd{bottom:381.119973pt;}
.y69{bottom:382.399633pt;}
.y3b{bottom:384.959467pt;}
.y3a{bottom:398.720253pt;}
.yc{bottom:399.998473pt;}
.y68{bottom:401.279333pt;}
.y67{bottom:401.280243pt;}
.y39{bottom:403.839840pt;}
.y96{bottom:415.359333pt;}
.ya{bottom:418.559467pt;}
.yb{bottom:418.559973pt;}
.y66{bottom:419.841443pt;}
.y38{bottom:422.719435pt;}
.y95{bottom:429.439453pt;}
.y9{bottom:437.437967pt;}
.y65{bottom:438.721143pt;}
.y37{bottom:440.958370pt;}
.y94{bottom:440.958907pt;}
.y93{bottom:450.878907pt;}
.y8{bottom:455.999467pt;}
.y92{bottom:456.640133pt;}
.y64{bottom:457.280873pt;}
.y36{bottom:459.839320pt;}
.y91{bottom:462.079067pt;}
.y7{bottom:474.559467pt;}
.y35{bottom:474.878907pt;}
.y63{bottom:476.160573pt;}
.y34{bottom:478.398920pt;}
.y90{bottom:478.719720pt;}
.y6{bottom:493.439467pt;}
.y33{bottom:494.399453pt;}
.y62{bottom:494.400007pt;}
.y32{bottom:497.279333pt;}
.y5{bottom:511.999467pt;}
.y31{bottom:513.279707pt;}
.y61{bottom:513.282277pt;}
.y2f{bottom:515.838140pt;}
.y8f{bottom:515.838773pt;}
.y30{bottom:515.838907pt;}
.y60{bottom:531.842007pt;}
.y2e{bottom:534.078890pt;}
.y8e{bottom:534.400273pt;}
.y5f{bottom:550.721707pt;}
.y2d{bottom:552.959840pt;}
.y8c{bottom:553.278340pt;}
.y8d{bottom:553.278773pt;}
.y5e{bottom:569.601407pt;}
.y2c{bottom:571.519040pt;}
.y8a{bottom:571.839453pt;}
.y8b{bottom:571.839840pt;}
.y4{bottom:579.199173pt;}
.y5d{bottom:588.160973pt;}
.y89{bottom:590.399320pt;}
.y2b{bottom:590.399453pt;}
.y2a{bottom:590.400088pt;}
.y5c{bottom:607.040673pt;}
.y29{bottom:608.959288pt;}
.y88{bottom:609.279320pt;}
.y5b{bottom:625.920373pt;}
.y28{bottom:627.519973pt;}
.y86{bottom:627.838920pt;}
.y87{bottom:627.839320pt;}
.y5a{bottom:644.481170pt;}
.y27{bottom:646.079587pt;}
.y26{bottom:646.080235pt;}
.y84{bottom:646.398327pt;}
.y85{bottom:646.398920pt;}
.y3{bottom:648.319333pt;}
.y59{bottom:663.040737pt;}
.y2{bottom:664.638660pt;}
.y25{bottom:664.639435pt;}
.y83{bottom:664.959827pt;}
.y58{bottom:681.920437pt;}
.y24{bottom:683.200120pt;}
.y23{bottom:683.200867pt;}
.y82{bottom:683.519827pt;}
.y1{bottom:700.160160pt;}
.y57{bottom:700.480167pt;}
.y81{bottom:702.399827pt;}
.y22{bottom:702.400267pt;}
.y56{bottom:719.359867pt;}
.y21{bottom:720.959467pt;}
.h28{height:20.828125pt;}
.h29{height:21.554687pt;}
.h26{height:21.742187pt;}
.h17{height:22.171875pt;}
.h18{height:22.401042pt;}
.h2a{height:25.031250pt;}
.h15{height:31.984375pt;}
.h2c{height:35.460938pt;}
.h2b{height:41.200195pt;}
.h7{height:49.367188pt;}
.h5{height:50.062500pt;}
.h6{height:50.757812pt;}
.h4{height:52.148438pt;}
.h1f{height:62.578125pt;}
.hd{height:63.968750pt;}
.h21{height:64.664062pt;}
.h25{height:66.054688pt;}
.he{height:66.750000pt;}
.h1d{height:68.140625pt;}
.h1e{height:68.141278pt;}
.h10{height:68.531250pt;}
.hc{height:68.835938pt;}
.h8{height:69.531250pt;}
.h20{height:69.780450pt;}
.hf{height:70.921875pt;}
.h24{height:71.617188pt;}
.h19{height:71.890625pt;}
.h11{height:72.312500pt;}
.h9{height:73.703125pt;}
.h13{height:73.906250pt;}
.h12{height:76.484375pt;}
.h1a{height:83.984375pt;}
.h3{height:92.476562pt;}
.h14{height:98.734375pt;}
.h16{height:98.798828pt;}
.h27{height:100.711589pt;}
.h2{height:138.367188pt;}
.h1{height:798.000000pt;}
.h0{height:798.078667pt;}
.h1c{height:802.000000pt;}
.h1b{height:802.238667pt;}
.ha{height:803.838667pt;}
.hb{height:804.000000pt;}
.h23{height:806.666667pt;}
.h22{height:806.718667pt;}
.w1{width:1024.000000pt;}
.w0{width:1024.001053pt;}
.w2{width:1029.118667pt;}
.w3{width:1029.333333pt;}
.w4{width:1031.678667pt;}
.w5{width:1032.000000pt;}
.x0{left:0.000000pt;}
.x10{left:37.765267pt;}
.x1{left:38.720253pt;}
.x2{left:40.320253pt;}
.x27{left:41.276750pt;}
.x25{left:42.238813pt;}
.xd{left:53.754777pt;}
.xa{left:54.720640pt;}
.x33{left:56.638587pt;}
.x26{left:57.597017pt;}
.x28{left:74.559067pt;}
.xf{left:127.360787pt;}
.x29{left:158.399480pt;}
.x2a{left:171.839333pt;}
.x2b{left:201.279720pt;}
.x36{left:203.838933pt;}
.x2c{left:215.679200pt;}
.x37{left:217.599587pt;}
.xb{left:279.041067pt;}
.xc{left:296.641080pt;}
.x34{left:338.239720pt;}
.x38{left:345.599040pt;}
.x31{left:350.399453pt;}
.x2d{left:354.559613pt;}
.x35{left:356.479987pt;}
.x39{left:361.278813pt;}
.x32{left:364.479453pt;}
.x1c{left:367.038533pt;}
.x11{left:367.999467pt;}
.x3c{left:379.839840pt;}
.x20{left:382.398920pt;}
.x12{left:384.002050pt;}
.x49{left:386.559040pt;}
.x3d{left:397.439987pt;}
.x4a{left:399.679733pt;}
.x2f{left:420.799840pt;}
.x30{left:434.239707pt;}
.x2e{left:480.638667pt;}
.x13{left:482.879840pt;}
.x14{left:496.319867pt;}
.x4c{left:574.719720pt;}
.x18{left:580.798787pt;}
.x4d{left:590.399453pt;}
.x42{left:602.559040pt;}
.x3a{left:603.518520pt;}
.x43{left:616.639200pt;}
.x3b{left:623.039067pt;}
.xe{left:636.799853pt;}
.x44{left:697.918947pt;}
.x5{left:712.640627pt;}
.x45{left:713.598720pt;}
.x23{left:723.199213pt;}
.x6{left:725.121093pt;}
.x3{left:729.600667pt;}
.x7{left:737.920907pt;}
.x24{left:741.118733pt;}
.x48{left:798.719160pt;}
.x46{left:800.639573pt;}
.x19{left:802.879307pt;}
.x8{left:806.720213pt;}
.x4{left:812.800787pt;}
.x47{left:815.679200pt;}
.x9{left:822.720627pt;}
.x1a{left:824.639573pt;}
.x40{left:829.119147pt;}
.x21{left:833.919440pt;}
.x41{left:844.479413pt;}
.x22{left:847.359293pt;}
.x16{left:875.838947pt;}
.x3e{left:891.518467pt;}
.x17{left:896.318760pt;}
.x3f{left:904.639160pt;}
.x1d{left:944.318760pt;}
.x1e{left:957.118733pt;}
.x15{left:975.358893pt;}
.x4e{left:978.238773pt;}
.x1f{left:1010.239747pt;}
.x1b{left:1011.199133pt;}
.x4b{left:1012.479413pt;}
}




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