
    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_14d7a49f57dde43d26e454ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_a4e63b3c83296c966ea680b5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_702a8536179ff7006ccbc333.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.935059;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.035156;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_d13404ca1a26d75f25628d6f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_361e5e41aca3586f7f0ff7e0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1baf65ef2f9aad763c8a44f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_56d052220d8e724a57db1fb7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9ed822d3c1e8841fb08e91b4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_484d2d92a263a728a78c130e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.142090;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_c7fe4cd47249278196b5ad98.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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_fd7512d07b716c29164473dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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;}
.m13{transform:matrix(0.135838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135838,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.156246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156246,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.185783,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185783,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185783,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.188378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188378,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190580,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.190743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190743,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.191808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191808,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.191919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191919,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245845,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);}
.m14{transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.253365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253365,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253866,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254267,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.254779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254779,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254926,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.255126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255126,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255308,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.255683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255683,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.265046,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265046,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265046,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-64.590474px;}
.v4{vertical-align:-59.590325px;}
.v3{vertical-align:-14.546422px;}
.v1{vertical-align:-9.161477px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-8.483940px;}
.ls14{letter-spacing:-0.219910px;}
.ls1{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.174033px;}
.ls15{letter-spacing:-0.146607px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.540000px;}
.ls12{letter-spacing:4.424610px;}
.ls6{letter-spacing:17.278086px;}
.ls3{letter-spacing:20.653946px;}
.lsc{letter-spacing:27.531630px;}
.ls7{letter-spacing:39.005784px;}
.lsa{letter-spacing:73.553891px;}
.ls10{letter-spacing:82.765267px;}
.ls17{letter-spacing:139.574498px;}
.ls8{letter-spacing:155.030901px;}
.ls16{letter-spacing:186.357581px;}
.ls18{letter-spacing:196.429353px;}
.ls13{letter-spacing:251.615512px;}
.ls9{letter-spacing:275.160786px;}
.lsd{letter-spacing:359.087750px;}
.ls19{letter-spacing:390.951625px;}
.lse{letter-spacing:392.031581px;}
.ls5{letter-spacing:538.023289px;}
.lsb{letter-spacing:558.809722px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-320.660103px;}
.ws14{word-spacing:-32.808240px;}
.ws1d{word-spacing:-21.420000px;}
.ws0{word-spacing:-21.060000px;}
.ws11{word-spacing:-0.047497px;}
.ws1{word-spacing:0.000000px;}
.ws13{word-spacing:0.090642px;}
.ws1f{word-spacing:2.329782px;}
.ws1c{word-spacing:21.547946px;}
.ws17{word-spacing:22.419306px;}
.ws18{word-spacing:26.197841px;}
.ws7{word-spacing:26.596946px;}
.ws15{word-spacing:26.783941px;}
.ws10{word-spacing:27.884232px;}
.ws22{word-spacing:28.308885px;}
.ws1a{word-spacing:28.618030px;}
.ws2{word-spacing:32.298888px;}
.ws6{word-spacing:35.185342px;}
.ws24{word-spacing:46.990478px;}
.wsf{word-spacing:49.311646px;}
.wsd{word-spacing:53.592894px;}
.wse{word-spacing:60.582879px;}
.ws12{word-spacing:83.405236px;}
.ws4{word-spacing:99.037676px;}
.wsb{word-spacing:109.480142px;}
.ws9{word-spacing:133.431513px;}
.ws23{word-spacing:145.084454px;}
.ws1b{word-spacing:152.824664px;}
.wsa{word-spacing:158.957541px;}
.ws3{word-spacing:197.545406px;}
.wsc{word-spacing:349.238345px;}
.ws1e{word-spacing:420.927143px;}
.ws21{word-spacing:438.061607px;}
.ws20{word-spacing:566.687514px;}
.ws19{word-spacing:751.886178px;}
.ws8{word-spacing:963.704113px;}
.ws16{word-spacing:991.075890px;}
._1f{margin-left:-1090.665439px;}
._23{margin-left:-773.455167px;}
._36{margin-left:-642.255103px;}
._32{margin-left:-577.151435px;}
._19{margin-left:-460.676763px;}
._18{margin-left:-425.986520px;}
._26{margin-left:-400.591317px;}
._29{margin-left:-355.935434px;}
._1b{margin-left:-335.832107px;}
._2a{margin-left:-328.716774px;}
._2d{margin-left:-317.530703px;}
._15{margin-left:-271.181247px;}
._1d{margin-left:-7.885743px;}
._14{margin-left:-3.523515px;}
._1c{margin-left:-2.392080px;}
._1{margin-left:-1.204800px;}
._0{width:1.915200px;}
._f{width:3.410400px;}
._d{width:5.896800px;}
._e{width:7.006320px;}
._3e{width:8.508240px;}
._3d{width:9.713040px;}
._2{width:11.372400px;}
._33{width:13.011644px;}
._3c{width:14.760720px;}
._12{width:16.089840px;}
._c{width:17.294640px;}
._b{width:18.810960px;}
._10{width:19.990320px;}
._3f{width:22.576320px;}
._3{width:26.198640px;}
._4{width:27.644640px;}
._11{width:29.256720px;}
._38{width:30.591077px;}
._31{width:32.165324px;}
._7{width:36.054720px;}
._8{width:37.065600px;}
._6{width:39.584880px;}
._5{width:40.603680px;}
._2e{width:46.672176px;}
._34{width:50.886304px;}
._21{width:54.201372px;}
._a{width:59.088480px;}
._9{width:60.594000px;}
._1a{width:82.531516px;}
._2f{width:84.415999px;}
._17{width:100.612333px;}
._13{width:107.802782px;}
._39{width:110.931093px;}
._2c{width:112.029519px;}
._20{width:115.615637px;}
._27{width:121.165759px;}
._1e{width:128.376033px;}
._25{width:138.238362px;}
._22{width:142.299321px;}
._28{width:143.956856px;}
._35{width:145.200006px;}
._16{width:148.183568px;}
._3b{width:158.592864px;}
._24{width:160.283569px;}
._30{width:168.869172px;}
._37{width:197.718318px;}
._2b{width:255.315438px;}
._3a{width:419.725664px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,103,152);}
.fs8{font-size:46.839979px;}
.fsc{font-size:47.497356px;}
.fs5{font-size:47.936399px;}
.fs3{font-size:48.489730px;}
.fs17{font-size:48.557265px;}
.fs13{font-size:48.583518px;}
.fs10{font-size:59.760000px;}
.fs15{font-size:63.666710px;}
.fs7{font-size:81.072216px;}
.fsd{font-size:82.253685px;}
.fs6{font-size:82.876716px;}
.fsf{font-size:83.390813px;}
.fs2{font-size:83.893216px;}
.fs18{font-size:83.911568px;}
.fs12{font-size:83.967440px;}
.fs11{font-size:84.097694px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fsb{font-size:107.738091px;}
.fs9{font-size:108.580288px;}
.fs4{font-size:109.014351px;}
.fsa{font-size:112.475124px;}
.fse{font-size:123.374644px;}
.fs19{font-size:125.867352px;}
.fs14{font-size:132.911633px;}
.fs16{font-size:152.858509px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.074507px;}
.y33{bottom:3.951206px;}
.y56{bottom:4.408273px;}
.y67{bottom:5.018781px;}
.y2d{bottom:5.322552px;}
.y5a{bottom:5.322566px;}
.y43{bottom:5.322578px;}
.y6b{bottom:5.322610px;}
.y76{bottom:7.357491px;}
.y7d{bottom:7.357492px;}
.y7b{bottom:7.357493px;}
.y4b{bottom:7.407980px;}
.y49{bottom:7.407981px;}
.y66{bottom:8.182731px;}
.y26{bottom:8.497910px;}
.y28{bottom:8.497968px;}
.y3c{bottom:9.052004px;}
.y52{bottom:9.059749px;}
.y32{bottom:9.231502px;}
.y34{bottom:9.231559px;}
.y59{bottom:9.232943px;}
.y3b{bottom:9.232970px;}
.y2c{bottom:9.269153px;}
.y42{bottom:9.269183px;}
.y6a{bottom:9.269219px;}
.y60{bottom:9.964800px;}
.y2e{bottom:10.717545px;}
.y5b{bottom:10.717564px;}
.y3d{bottom:10.717568px;}
.y6c{bottom:10.717596px;}
.y5f{bottom:12.255906px;}
.y4e{bottom:19.064796px;}
.y48{bottom:21.642940px;}
.y4f{bottom:22.223880px;}
.y7f{bottom:22.476774px;}
.y61{bottom:22.947879px;}
.y73{bottom:23.323035px;}
.y6{bottom:24.480000px;}
.y71{bottom:24.684851px;}
.y47{bottom:25.491777px;}
.y4d{bottom:26.981620px;}
.y4a{bottom:26.981625px;}
.y7e{bottom:27.296633px;}
.y78{bottom:27.296647px;}
.y7c{bottom:27.296669px;}
.y4c{bottom:27.815501px;}
.y63{bottom:28.403524px;}
.y7a{bottom:36.750111px;}
.y75{bottom:36.750112px;}
.y72{bottom:37.118079px;}
.y79{bottom:38.001592px;}
.y77{bottom:40.465917px;}
.y65{bottom:40.550582px;}
.y62{bottom:43.860202px;}
.y64{bottom:44.514173px;}
.y5e{bottom:46.150572px;}
.y74{bottom:48.633582px;}
.y5{bottom:60.660000px;}
.y4{bottom:84.600000px;}
.y5d{bottom:147.840000px;}
.y68{bottom:176.250000px;}
.y95{bottom:178.950000px;}
.y21{bottom:187.770000px;}
.y94{bottom:215.130000px;}
.y20{bottom:223.950000px;}
.y5c{bottom:232.590000px;}
.y93{bottom:251.310000px;}
.ya4{bottom:255.090000px;}
.y1f{bottom:260.130000px;}
.y58{bottom:263.789980px;}
.y57{bottom:274.170000px;}
.y92{bottom:287.490000px;}
.ya3{bottom:291.270000px;}
.y1e{bottom:296.310000px;}
.y55{bottom:307.890000px;}
.y54{bottom:312.330000px;}
.y91{bottom:323.850000px;}
.ya2{bottom:327.450000px;}
.y1d{bottom:332.670000px;}
.y53{bottom:348.510000px;}
.y90{bottom:360.030000px;}
.ya1{bottom:363.630000px;}
.y1c{bottom:368.895000px;}
.y46{bottom:379.889959px;}
.y8f{bottom:395.895000px;}
.y51{bottom:397.889959px;}
.ya0{bottom:400.035000px;}
.y1b{bottom:405.075000px;}
.y50{bottom:406.875000px;}
.y8e{bottom:432.435000px;}
.y9f{bottom:436.215000px;}
.y1a{bottom:440.895000px;}
.y45{bottom:447.555000px;}
.y8d{bottom:468.615000px;}
.y9e{bottom:472.395000px;}
.y19{bottom:477.615000px;}
.y41{bottom:478.739959px;}
.y44{bottom:489.135000px;}
.y8c{bottom:504.975000px;}
.y9d{bottom:508.215000px;}
.y18{bottom:513.795000px;}
.y40{bottom:527.295000px;}
.y8b{bottom:541.155000px;}
.y9c{bottom:544.935000px;}
.y17{bottom:549.975000px;}
.y3f{bottom:563.475000px;}
.y8a{bottom:577.335000px;}
.y9b{bottom:581.115000px;}
.y16{bottom:586.155000px;}
.y3a{bottom:594.614959px;}
.y3e{bottom:605.055000px;}
.y89{bottom:613.515000px;}
.y9a{bottom:617.295000px;}
.y15{bottom:622.515000px;}
.y39{bottom:643.425000px;}
.y88{bottom:649.905000px;}
.y99{bottom:653.505000px;}
.y14{bottom:658.725000px;}
.y38{bottom:679.245000px;}
.y87{bottom:686.085000px;}
.y98{bottom:689.865000px;}
.y13{bottom:694.905000px;}
.y37{bottom:715.785000px;}
.y86{bottom:722.265000px;}
.y97{bottom:725.685000px;}
.y12{bottom:730.725000px;}
.y36{bottom:751.965000px;}
.y96{bottom:757.185000px;}
.y85{bottom:758.445000px;}
.y11{bottom:767.085000px;}
.y31{bottom:783.239919px;}
.y35{bottom:792.285000px;}
.y84{bottom:794.805000px;}
.y10{bottom:803.625000px;}
.y30{bottom:828.465000px;}
.y83{bottom:830.985000px;}
.yf{bottom:839.805000px;}
.y2b{bottom:859.590000px;}
.y82{bottom:866.805000px;}
.y2f{bottom:870.045000px;}
.ye{bottom:875.985000px;}
.y81{bottom:903.390000px;}
.y2a{bottom:908.250000px;}
.yd{bottom:912.210000px;}
.y70{bottom:934.664919px;}
.y25{bottom:939.539919px;}
.yc{bottom:948.210000px;}
.y29{bottom:948.570000px;}
.y80{bottom:961.710000px;}
.yb{bottom:984.390000px;}
.y24{bottom:984.750000px;}
.y6f{bottom:1013.550000px;}
.ya{bottom:1020.570000px;}
.y6e{bottom:1049.550000px;}
.y9{bottom:1056.750000px;}
.y69{bottom:1080.989919px;}
.y6d{bottom:1091.490000px;}
.y8{bottom:1093.110000px;}
.y23{bottom:1093.470000px;}
.y7{bottom:1129.290000px;}
.y22{bottom:1129.650000px;}
.y3{bottom:1168.740000px;}
.y2{bottom:1193.760000px;}
.y1{bottom:1225.620000px;}
.h24{height:22.499847px;}
.h21{height:26.999810px;}
.h8{height:28.049829px;}
.h10{height:28.125425px;}
.hc{height:31.500367px;}
.h26{height:31.500387px;}
.h14{height:31.500408px;}
.h2d{height:31.500448px;}
.h1e{height:43.995353px;}
.h36{height:44.977115px;}
.h12{height:45.948007px;}
.h1c{height:46.592865px;}
.h1b{height:46.616057px;}
.he{height:47.023548px;}
.h18{height:47.046954px;}
.ha{height:47.566342px;}
.h34{height:47.632590px;}
.h32{height:47.656300px;}
.h2a{height:47.658344px;}
.h19{height:50.548230px;}
.h7{height:58.819922px;}
.h30{height:58.972534px;}
.h5{height:59.436914px;}
.h23{height:61.423863px;}
.h2e{height:61.877413px;}
.h28{height:67.498875px;}
.h2{height:70.884844px;}
.h1f{height:76.189082px;}
.h37{height:77.724729px;}
.h2c{height:77.776481px;}
.h13{height:79.528361px;}
.h11{height:79.567947px;}
.h1d{height:80.687331px;}
.h27{height:81.298497px;}
.h17{height:81.338964px;}
.h22{height:81.843522px;}
.hb{height:82.295640px;}
.h35{height:82.313643px;}
.h9{height:82.336603px;}
.h33{height:82.354615px;}
.h2b{height:82.368450px;}
.h29{height:82.409450px;}
.h25{height:82.496225px;}
.h3{height:82.676953px;}
.h6{height:84.898125px;}
.hf{height:85.184204px;}
.h4{height:86.255508px;}
.h1a{height:99.794511px;}
.h15{height:100.574613px;}
.hd{height:100.976672px;}
.h16{height:104.182281px;}
.h20{height:114.278174px;}
.h38{height:116.587093px;}
.h2f{height:123.111996px;}
.h31{height:141.588180px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:19.049925px;}
.w9{width:61.875223px;}
.w7{width:89.998800px;}
.w2{width:108.000610px;}
.w4{width:128.326429px;}
.w3{width:135.000884px;}
.w6{width:176.624713px;}
.wb{width:210.452213px;}
.w5{width:289.270852px;}
.wc{width:319.495157px;}
.wa{width:367.860383px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:2.011478px;}
.x10{left:3.322502px;}
.xf{left:11.172359px;}
.x36{left:16.077051px;}
.x31{left:18.356491px;}
.x1b{left:21.422043px;}
.x28{left:24.031408px;}
.x30{left:27.553407px;}
.x38{left:28.946769px;}
.x2c{left:31.655395px;}
.x1f{left:34.565134px;}
.x13{left:38.707828px;}
.x29{left:40.689279px;}
.x25{left:41.716248px;}
.x37{left:45.061253px;}
.x26{left:47.183415px;}
.x20{left:48.714622px;}
.x21{left:55.606206px;}
.x3b{left:59.050253px;}
.x33{left:61.912781px;}
.x27{left:66.407914px;}
.x35{left:70.210473px;}
.x45{left:75.793284px;}
.xe{left:80.069341px;}
.x1c{left:83.113221px;}
.x43{left:88.615604px;}
.x24{left:90.953532px;}
.x16{left:92.194877px;}
.x23{left:100.126087px;}
.x17{left:108.651672px;}
.x1d{left:121.872076px;}
.x3{left:127.656000px;}
.x47{left:141.600842px;}
.x42{left:163.115566px;}
.xd{left:170.130000px;}
.x6{left:173.910000px;}
.x5{left:180.390000px;}
.x2e{left:181.739980px;}
.x1{left:183.270000px;}
.x40{left:186.152624px;}
.x46{left:190.643293px;}
.x41{left:196.496113px;}
.x2f{left:200.730000px;}
.x3f{left:205.597169px;}
.x4{left:215.850000px;}
.x3e{left:230.071234px;}
.x44{left:234.786421px;}
.x32{left:243.570000px;}
.x34{left:258.712692px;}
.xb{left:266.430000px;}
.xa{left:306.435000px;}
.x2{left:315.615000px;}
.x3d{left:339.914980px;}
.x8{left:340.995000px;}
.x1a{left:355.065000px;}
.x22{left:361.139959px;}
.x9{left:362.955000px;}
.x3a{left:394.439959px;}
.x12{left:432.240000px;}
.x15{left:435.539959px;}
.xc{left:445.395000px;}
.x7{left:499.785000px;}
.x2a{left:537.765000px;}
.x2b{left:548.190000px;}
.x11{left:553.785000px;}
.x19{left:563.865000px;}
.x14{left:567.285000px;}
.x3c{left:604.905000px;}
.x2d{left:638.205000px;}
.x1e{left:644.325000px;}
.x48{left:659.445000px;}
.x39{left:683.745000px;}
.x49{left:872.250000px;}
@media print{
.v2{vertical-align:-57.413755pt;}
.v4{vertical-align:-52.969177pt;}
.v3{vertical-align:-12.930153pt;}
.v1{vertical-align:-8.143535pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-7.541280pt;}
.ls14{letter-spacing:-0.195476pt;}
.ls1{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.154696pt;}
.ls15{letter-spacing:-0.130317pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls12{letter-spacing:3.932987pt;}
.ls6{letter-spacing:15.358299pt;}
.ls3{letter-spacing:18.359063pt;}
.lsc{letter-spacing:24.472560pt;}
.ls7{letter-spacing:34.671808pt;}
.lsa{letter-spacing:65.381237pt;}
.ls10{letter-spacing:73.569127pt;}
.ls17{letter-spacing:124.066220pt;}
.ls8{letter-spacing:137.805246pt;}
.ls16{letter-spacing:165.651183pt;}
.ls18{letter-spacing:174.603869pt;}
.ls13{letter-spacing:223.658233pt;}
.ls9{letter-spacing:244.587365pt;}
.lsd{letter-spacing:319.189111pt;}
.ls19{letter-spacing:347.512555pt;}
.lse{letter-spacing:348.472516pt;}
.ls5{letter-spacing:478.242924pt;}
.lsb{letter-spacing:496.719752pt;}
.ws5{word-spacing:-285.031203pt;}
.ws14{word-spacing:-29.162880pt;}
.ws1d{word-spacing:-19.040000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws11{word-spacing:-0.042220pt;}
.ws1{word-spacing:0.000000pt;}
.ws13{word-spacing:0.080571pt;}
.ws1f{word-spacing:2.070917pt;}
.ws1c{word-spacing:19.153730pt;}
.ws17{word-spacing:19.928272pt;}
.ws18{word-spacing:23.286970pt;}
.ws7{word-spacing:23.641730pt;}
.ws15{word-spacing:23.807948pt;}
.ws10{word-spacing:24.785984pt;}
.ws22{word-spacing:25.163454pt;}
.ws1a{word-spacing:25.438249pt;}
.ws2{word-spacing:28.710123pt;}
.ws6{word-spacing:31.275860pt;}
.ws24{word-spacing:41.769314pt;}
.wsf{word-spacing:43.832574pt;}
.wsd{word-spacing:47.638128pt;}
.wse{word-spacing:53.851448pt;}
.ws12{word-spacing:74.137988pt;}
.ws4{word-spacing:88.033489pt;}
.wsb{word-spacing:97.315682pt;}
.ws9{word-spacing:118.605789pt;}
.ws23{word-spacing:128.963959pt;}
.ws1b{word-spacing:135.844146pt;}
.wsa{word-spacing:141.295592pt;}
.ws3{word-spacing:175.595916pt;}
.wsc{word-spacing:310.434084pt;}
.ws1e{word-spacing:374.157461pt;}
.ws21{word-spacing:389.388095pt;}
.ws20{word-spacing:503.722234pt;}
.ws19{word-spacing:668.343269pt;}
.ws8{word-spacing:856.625878pt;}
.ws16{word-spacing:880.956346pt;}
._1f{margin-left:-969.480390pt;}
._23{margin-left:-687.515704pt;}
._36{margin-left:-570.893425pt;}
._32{margin-left:-513.023498pt;}
._19{margin-left:-409.490456pt;}
._18{margin-left:-378.654684pt;}
._26{margin-left:-356.081170pt;}
._29{margin-left:-316.387053pt;}
._1b{margin-left:-298.517429pt;}
._2a{margin-left:-292.192688pt;}
._2d{margin-left:-282.249514pt;}
._15{margin-left:-241.049997pt;}
._1d{margin-left:-7.009549pt;}
._14{margin-left:-3.132013pt;}
._1c{margin-left:-2.126293pt;}
._1{margin-left:-1.070933pt;}
._0{width:1.702400pt;}
._f{width:3.031467pt;}
._d{width:5.241600pt;}
._e{width:6.227840pt;}
._3e{width:7.562880pt;}
._3d{width:8.633813pt;}
._2{width:10.108800pt;}
._33{width:11.565906pt;}
._3c{width:13.120640pt;}
._12{width:14.302080pt;}
._c{width:15.373013pt;}
._b{width:16.720853pt;}
._10{width:17.769173pt;}
._3f{width:20.067840pt;}
._3{width:23.287680pt;}
._4{width:24.573013pt;}
._11{width:26.005973pt;}
._38{width:27.192068pt;}
._31{width:28.591399pt;}
._7{width:32.048640pt;}
._8{width:32.947200pt;}
._6{width:35.186560pt;}
._5{width:36.092160pt;}
._2e{width:41.486379pt;}
._34{width:45.232270pt;}
._21{width:48.178998pt;}
._a{width:52.523093pt;}
._9{width:53.861333pt;}
._1a{width:73.361348pt;}
._2f{width:75.036444pt;}
._17{width:89.433185pt;}
._13{width:95.824695pt;}
._39{width:98.605416pt;}
._2c{width:99.581794pt;}
._20{width:102.769455pt;}
._27{width:107.702897pt;}
._1e{width:114.112029pt;}
._25{width:122.878544pt;}
._22{width:126.488286pt;}
._28{width:127.961650pt;}
._35{width:129.066672pt;}
._16{width:131.718727pt;}
._3b{width:140.971435pt;}
._24{width:142.474283pt;}
._30{width:150.105930pt;}
._37{width:175.749616pt;}
._2b{width:226.947056pt;}
._3a{width:373.089479pt;}
.fs8{font-size:41.635537pt;}
.fsc{font-size:42.219872pt;}
.fs5{font-size:42.610133pt;}
.fs3{font-size:43.101982pt;}
.fs17{font-size:43.162013pt;}
.fs13{font-size:43.185349pt;}
.fs10{font-size:53.120000pt;}
.fs15{font-size:56.592632pt;}
.fs7{font-size:72.064192pt;}
.fsd{font-size:73.114387pt;}
.fs6{font-size:73.668192pt;}
.fsf{font-size:74.125167pt;}
.fs2{font-size:74.571747pt;}
.fs18{font-size:74.588061pt;}
.fs12{font-size:74.637724pt;}
.fs11{font-size:74.753506pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fsb{font-size:95.767192pt;}
.fs9{font-size:96.515812pt;}
.fs4{font-size:96.901645pt;}
.fsa{font-size:99.977888pt;}
.fse{font-size:109.666351pt;}
.fs19{font-size:111.882091pt;}
.fs14{font-size:118.143674pt;}
.fs16{font-size:135.874231pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:2.732895pt;}
.y33{bottom:3.512184pt;}
.y56{bottom:3.918465pt;}
.y67{bottom:4.461138pt;}
.y2d{bottom:4.731157pt;}
.y5a{bottom:4.731170pt;}
.y43{bottom:4.731180pt;}
.y6b{bottom:4.731209pt;}
.y76{bottom:6.539992pt;}
.y7d{bottom:6.539993pt;}
.y7b{bottom:6.539994pt;}
.y4b{bottom:6.584871pt;}
.y49{bottom:6.584872pt;}
.y66{bottom:7.273538pt;}
.y26{bottom:7.553697pt;}
.y28{bottom:7.553749pt;}
.y3c{bottom:8.046225pt;}
.y52{bottom:8.053110pt;}
.y32{bottom:8.205779pt;}
.y34{bottom:8.205830pt;}
.y59{bottom:8.207061pt;}
.y3b{bottom:8.207084pt;}
.y2c{bottom:8.239247pt;}
.y42{bottom:8.239274pt;}
.y6a{bottom:8.239306pt;}
.y60{bottom:8.857600pt;}
.y2e{bottom:9.526707pt;}
.y5b{bottom:9.526724pt;}
.y3d{bottom:9.526728pt;}
.y6c{bottom:9.526752pt;}
.y5f{bottom:10.894138pt;}
.y4e{bottom:16.946486pt;}
.y48{bottom:19.238169pt;}
.y4f{bottom:19.754560pt;}
.y7f{bottom:19.979354pt;}
.y61{bottom:20.398115pt;}
.y73{bottom:20.731587pt;}
.y6{bottom:21.760000pt;}
.y71{bottom:21.942089pt;}
.y47{bottom:22.659357pt;}
.y4d{bottom:23.983663pt;}
.y4a{bottom:23.983667pt;}
.y7e{bottom:24.263674pt;}
.y78{bottom:24.263686pt;}
.y7c{bottom:24.263706pt;}
.y4c{bottom:24.724890pt;}
.y63{bottom:25.247577pt;}
.y7a{bottom:32.666765pt;}
.y75{bottom:32.666766pt;}
.y72{bottom:32.993848pt;}
.y79{bottom:33.779193pt;}
.y77{bottom:35.969704pt;}
.y65{bottom:36.044962pt;}
.y62{bottom:38.986847pt;}
.y64{bottom:39.568154pt;}
.y5e{bottom:41.022730pt;}
.y74{bottom:43.229850pt;}
.y5{bottom:53.920000pt;}
.y4{bottom:75.200000pt;}
.y5d{bottom:131.413333pt;}
.y68{bottom:156.666667pt;}
.y95{bottom:159.066667pt;}
.y21{bottom:166.906667pt;}
.y94{bottom:191.226667pt;}
.y20{bottom:199.066667pt;}
.y5c{bottom:206.746667pt;}
.y93{bottom:223.386667pt;}
.ya4{bottom:226.746667pt;}
.y1f{bottom:231.226667pt;}
.y58{bottom:234.479982pt;}
.y57{bottom:243.706667pt;}
.y92{bottom:255.546667pt;}
.ya3{bottom:258.906667pt;}
.y1e{bottom:263.386667pt;}
.y55{bottom:273.680000pt;}
.y54{bottom:277.626667pt;}
.y91{bottom:287.866667pt;}
.ya2{bottom:291.066667pt;}
.y1d{bottom:295.706667pt;}
.y53{bottom:309.786667pt;}
.y90{bottom:320.026667pt;}
.ya1{bottom:323.226667pt;}
.y1c{bottom:327.906667pt;}
.y46{bottom:337.679964pt;}
.y8f{bottom:351.906667pt;}
.y51{bottom:353.679964pt;}
.ya0{bottom:355.586667pt;}
.y1b{bottom:360.066667pt;}
.y50{bottom:361.666667pt;}
.y8e{bottom:384.386667pt;}
.y9f{bottom:387.746667pt;}
.y1a{bottom:391.906667pt;}
.y45{bottom:397.826667pt;}
.y8d{bottom:416.546667pt;}
.y9e{bottom:419.906667pt;}
.y19{bottom:424.546667pt;}
.y41{bottom:425.546630pt;}
.y44{bottom:434.786667pt;}
.y8c{bottom:448.866667pt;}
.y9d{bottom:451.746667pt;}
.y18{bottom:456.706667pt;}
.y40{bottom:468.706667pt;}
.y8b{bottom:481.026667pt;}
.y9c{bottom:484.386667pt;}
.y17{bottom:488.866667pt;}
.y3f{bottom:500.866667pt;}
.y8a{bottom:513.186667pt;}
.y9b{bottom:516.546667pt;}
.y16{bottom:521.026667pt;}
.y3a{bottom:528.546630pt;}
.y3e{bottom:537.826667pt;}
.y89{bottom:545.346667pt;}
.y9a{bottom:548.706667pt;}
.y15{bottom:553.346667pt;}
.y39{bottom:571.933333pt;}
.y88{bottom:577.693333pt;}
.y99{bottom:580.893333pt;}
.y14{bottom:585.533333pt;}
.y38{bottom:603.773333pt;}
.y87{bottom:609.853333pt;}
.y98{bottom:613.213333pt;}
.y13{bottom:617.693333pt;}
.y37{bottom:636.253333pt;}
.y86{bottom:642.013333pt;}
.y97{bottom:645.053333pt;}
.y12{bottom:649.533333pt;}
.y36{bottom:668.413333pt;}
.y96{bottom:673.053333pt;}
.y85{bottom:674.173333pt;}
.y11{bottom:681.853333pt;}
.y31{bottom:696.213261pt;}
.y35{bottom:704.253333pt;}
.y84{bottom:706.493333pt;}
.y10{bottom:714.333333pt;}
.y30{bottom:736.413333pt;}
.y83{bottom:738.653333pt;}
.yf{bottom:746.493333pt;}
.y2b{bottom:764.080000pt;}
.y82{bottom:770.493333pt;}
.y2f{bottom:773.373333pt;}
.ye{bottom:778.653333pt;}
.y81{bottom:803.013333pt;}
.y2a{bottom:807.333333pt;}
.yd{bottom:810.853333pt;}
.y70{bottom:830.813261pt;}
.y25{bottom:835.146594pt;}
.yc{bottom:842.853333pt;}
.y29{bottom:843.173333pt;}
.y80{bottom:854.853333pt;}
.yb{bottom:875.013333pt;}
.y24{bottom:875.333333pt;}
.y6f{bottom:900.933333pt;}
.ya{bottom:907.173333pt;}
.y6e{bottom:932.933333pt;}
.y9{bottom:939.333333pt;}
.y69{bottom:960.879928pt;}
.y6d{bottom:970.213333pt;}
.y8{bottom:971.653333pt;}
.y23{bottom:971.973333pt;}
.y7{bottom:1003.813333pt;}
.y22{bottom:1004.133333pt;}
.y3{bottom:1038.880000pt;}
.y2{bottom:1061.120000pt;}
.y1{bottom:1089.440000pt;}
.h24{height:19.999864pt;}
.h21{height:23.999831pt;}
.h8{height:24.933182pt;}
.h10{height:25.000378pt;}
.hc{height:28.000326pt;}
.h26{height:28.000344pt;}
.h14{height:28.000362pt;}
.h2d{height:28.000399pt;}
.h1e{height:39.106981pt;}
.h36{height:39.979657pt;}
.h12{height:40.842673pt;}
.h1c{height:41.415880pt;}
.h1b{height:41.436495pt;}
.he{height:41.798709pt;}
.h18{height:41.819515pt;}
.ha{height:42.281193pt;}
.h34{height:42.340080pt;}
.h32{height:42.361155pt;}
.h2a{height:42.362972pt;}
.h19{height:44.931760pt;}
.h7{height:52.284375pt;}
.h30{height:52.420030pt;}
.h5{height:52.832812pt;}
.h23{height:54.598989pt;}
.h2e{height:55.002145pt;}
.h28{height:59.999000pt;}
.h2{height:63.008750pt;}
.h1f{height:67.723629pt;}
.h37{height:69.088648pt;}
.h2c{height:69.134650pt;}
.h13{height:70.691876pt;}
.h11{height:70.727064pt;}
.h1d{height:71.722072pt;}
.h27{height:72.265331pt;}
.h17{height:72.301302pt;}
.h22{height:72.749797pt;}
.hb{height:73.151680pt;}
.h35{height:73.167683pt;}
.h9{height:73.188092pt;}
.h33{height:73.204102pt;}
.h2b{height:73.216400pt;}
.h29{height:73.252844pt;}
.h25{height:73.329977pt;}
.h3{height:73.490625pt;}
.h6{height:75.465000pt;}
.hf{height:75.719293pt;}
.h4{height:76.671562pt;}
.h1a{height:88.706232pt;}
.h15{height:89.399656pt;}
.hd{height:89.757042pt;}
.h16{height:92.606472pt;}
.h20{height:101.580599pt;}
.h38{height:103.632972pt;}
.h2f{height:109.432885pt;}
.h31{height:125.856160pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:16.933266pt;}
.w9{width:55.000198pt;}
.w7{width:79.998934pt;}
.w2{width:96.000543pt;}
.w4{width:114.067937pt;}
.w3{width:120.000785pt;}
.w6{width:156.999745pt;}
.wb{width:187.068634pt;}
.w5{width:257.129647pt;}
.wc{width:283.995695pt;}
.wa{width:326.987007pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:1.787981pt;}
.x10{left:2.953335pt;}
.xf{left:9.930986pt;}
.x36{left:14.290712pt;}
.x31{left:16.316881pt;}
.x1b{left:19.041816pt;}
.x28{left:21.361251pt;}
.x30{left:24.491917pt;}
.x38{left:25.730462pt;}
.x2c{left:28.138129pt;}
.x1f{left:30.724564pt;}
.x13{left:34.406958pt;}
.x29{left:36.168248pt;}
.x25{left:37.081110pt;}
.x37{left:40.054448pt;}
.x26{left:41.940814pt;}
.x20{left:43.301886pt;}
.x21{left:49.427738pt;}
.x3b{left:52.489113pt;}
.x33{left:55.033583pt;}
.x27{left:59.029257pt;}
.x35{left:62.409309pt;}
.x45{left:67.371808pt;}
.xe{left:71.172748pt;}
.x1c{left:73.878418pt;}
.x43{left:78.769426pt;}
.x24{left:80.847584pt;}
.x16{left:81.951002pt;}
.x23{left:89.000967pt;}
.x17{left:96.579264pt;}
.x1d{left:108.330734pt;}
.x3{left:113.472000pt;}
.x47{left:125.867416pt;}
.x42{left:144.991615pt;}
.xd{left:151.226667pt;}
.x6{left:154.586667pt;}
.x5{left:160.346667pt;}
.x2e{left:161.546649pt;}
.x1{left:162.906667pt;}
.x40{left:165.468999pt;}
.x46{left:169.460705pt;}
.x41{left:174.663212pt;}
.x2f{left:178.426667pt;}
.x3f{left:182.753039pt;}
.x4{left:191.866667pt;}
.x3e{left:204.507763pt;}
.x44{left:208.699041pt;}
.x32{left:216.506667pt;}
.x34{left:229.966837pt;}
.xb{left:236.826667pt;}
.xa{left:272.386667pt;}
.x2{left:280.546667pt;}
.x3d{left:302.146649pt;}
.x8{left:303.106667pt;}
.x1a{left:315.613333pt;}
.x22{left:321.013297pt;}
.x9{left:322.626667pt;}
.x3a{left:350.613297pt;}
.x12{left:384.213333pt;}
.x15{left:387.146630pt;}
.xc{left:395.906667pt;}
.x7{left:444.253333pt;}
.x2a{left:478.013333pt;}
.x2b{left:487.280000pt;}
.x11{left:492.253333pt;}
.x19{left:501.213333pt;}
.x14{left:504.253333pt;}
.x3c{left:537.693333pt;}
.x2d{left:567.293333pt;}
.x1e{left:572.733333pt;}
.x48{left:586.173333pt;}
.x39{left:607.773333pt;}
.x49{left:775.333333pt;}
}




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