
    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_ef2a8cce35d1d811aac145ab.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.196289;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_a0a33c4e9f852d55d9e0b4d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_b63054a86317630b4a5c29d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_6414e002c20dbf5a8892e407.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_c127fb6b5e6607288850b7c3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.965000;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_1d0f311a52377c4761615050.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.967000;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_3a98590e987dc6ecd89a3fbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963379;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_451371f3281ff34f322f88bb.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.730469;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_5076d52779a0253e4c963d85.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_185a53cf23476b7aabb1d4a2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.125000;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_f3f90861e8f644f21a41de53.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.953000;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_4e0a85e8e8f46235071445c0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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_e08020e500df8d10d324a06e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.196289;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;}
.m4{transform:matrix(0.220850,-0.117154,0.116972,0.220947,0,0);-ms-transform:matrix(0.220850,-0.117154,0.116972,0.220947,0,0);-webkit-transform:matrix(0.220850,-0.117154,0.116972,0.220947,0,0);}
.m2{transform:matrix(0.220855,-0.117145,0.116972,0.220947,0,0);-ms-transform:matrix(0.220855,-0.117145,0.116972,0.220947,0,0);-webkit-transform:matrix(0.220855,-0.117145,0.116972,0.220947,0,0);}
.m7{transform:matrix(0.220857,-0.117141,0.116972,0.220947,0,0);-ms-transform:matrix(0.220857,-0.117141,0.116972,0.220947,0,0);-webkit-transform:matrix(0.220857,-0.117141,0.116972,0.220947,0,0);}
.m8{transform:matrix(0.220873,-0.117112,0.116972,0.220947,0,0);-ms-transform:matrix(0.220873,-0.117112,0.116972,0.220947,0,0);-webkit-transform:matrix(0.220873,-0.117112,0.116972,0.220947,0,0);}
.mb{transform:matrix(0.232439,-0.092044,0.092026,0.232446,0,0);-ms-transform:matrix(0.232439,-0.092044,0.092026,0.232446,0,0);-webkit-transform:matrix(0.232439,-0.092044,0.092026,0.232446,0,0);}
.ma{transform:matrix(0.234273,-0.087271,0.087200,0.234299,0,0);-ms-transform:matrix(0.234273,-0.087271,0.087200,0.234299,0,0);-webkit-transform:matrix(0.234273,-0.087271,0.087200,0.234299,0,0);}
.m12{transform:matrix(0.235559,-0.083735,0.083367,0.235691,0,0);-ms-transform:matrix(0.235559,-0.083735,0.083367,0.235691,0,0);-webkit-transform:matrix(0.235559,-0.083735,0.083367,0.235691,0,0);}
.me{transform:matrix(0.235561,-0.083730,0.083487,0.235648,0,0);-ms-transform:matrix(0.235561,-0.083730,0.083487,0.235648,0,0);-webkit-transform:matrix(0.235561,-0.083730,0.083487,0.235648,0,0);}
.m10{transform:matrix(0.235563,-0.083724,0.083367,0.235691,0,0);-ms-transform:matrix(0.235563,-0.083724,0.083367,0.235691,0,0);-webkit-transform:matrix(0.235563,-0.083724,0.083367,0.235691,0,0);}
.mf{transform:matrix(0.235569,-0.083709,0.083367,0.235691,0,0);-ms-transform:matrix(0.235569,-0.083709,0.083367,0.235691,0,0);-webkit-transform:matrix(0.235569,-0.083709,0.083367,0.235691,0,0);}
.m11{transform:matrix(0.235569,-0.083709,0.083367,0.235691,0,0);-ms-transform:matrix(0.235569,-0.083709,0.083367,0.235691,0,0);-webkit-transform:matrix(0.235569,-0.083709,0.083367,0.235691,0,0);}
.md{transform:matrix(0.235801,-0.083051,0.082499,0.235995,0,0);-ms-transform:matrix(0.235801,-0.083051,0.082499,0.235995,0,0);-webkit-transform:matrix(0.235801,-0.083051,0.082499,0.235995,0,0);}
.mc{transform:matrix(0.237472,-0.078148,0.077864,0.237565,0,0);-ms-transform:matrix(0.237472,-0.078148,0.077864,0.237565,0,0);-webkit-transform:matrix(0.237472,-0.078148,0.077864,0.237565,0,0);}
.m14{transform:matrix(0.249999,-0.000367,0.000000,0.250000,0,0);-ms-transform:matrix(0.249999,-0.000367,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249999,-0.000367,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250000,-0.000332,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,-0.000332,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,-0.000332,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250000,0.002282,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.002282,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.002282,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250000,0.001538,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.001538,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001538,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250000,0.001332,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.001332,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001332,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250000,0.001305,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.001305,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.001305,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);}
.m1{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);}
.v1{vertical-align:-2.587754px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.142324px;}
.v3{vertical-align:4.218614px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.042690px;}
.ls9{letter-spacing:11.986110px;}
.lsa{letter-spacing:21.586106px;}
.ls8{letter-spacing:107.971879px;}
.ls2{letter-spacing:107.971938px;}
.ls5{letter-spacing:107.971947px;}
.ls6{letter-spacing:107.972033px;}
.ls4{letter-spacing:108.000215px;}
.ls3{letter-spacing:108.000273px;}
.ls1{letter-spacing:108.000282px;}
.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;}
}
.ws4{word-spacing:-20.748000px;}
.ws5{word-spacing:-20.232001px;}
.wsa{word-spacing:-18.546001px;}
.wsd{word-spacing:-15.576001px;}
.ws2{word-spacing:-14.729066px;}
.ws6{word-spacing:-14.400004px;}
.ws9{word-spacing:-14.236125px;}
.ws8{word-spacing:-14.236122px;}
.ws7{word-spacing:-14.236108px;}
.ws0{word-spacing:-14.160000px;}
.wsb{word-spacing:-12.768001px;}
.wsc{word-spacing:-11.328001px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:79.352987px;}
._6{margin-left:-1145.127584px;}
._e{margin-left:-9.936000px;}
._4{margin-left:-8.736000px;}
._a{margin-left:-7.512000px;}
._f{margin-left:-5.997600px;}
._2{margin-left:-4.704000px;}
._3{margin-left:-2.880000px;}
._1{margin-left:-1.056000px;}
._0{width:1.536000px;}
._7{width:2.937600px;}
._b{width:244.506442px;}
._c{width:262.209570px;}
._d{width:485.363247px;}
._8{width:614.810618px;}
._9{width:692.479867px;}
._5{width:2166.022396px;}
.fc5{color:rgb(104,58,177);}
.fc8{color:rgb(255,255,255);}
.fc7{color:rgb(32,33,36);}
.fc6{color:rgb(36,36,36);}
.fc4{color:rgb(26,26,26);}
.fc3{color:rgb(89,89,89);}
.fc2{color:rgb(84,33,153);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,244,220);}
.fs1e{font-size:42.000000px;}
.fs1b{font-size:45.015056px;}
.fs22{font-size:48.000003px;}
.fs3{font-size:52.416605px;}
.fse{font-size:54.000002px;}
.fs14{font-size:56.269200px;}
.fs13{font-size:56.269201px;}
.fs17{font-size:56.269228px;}
.fs15{font-size:56.269239px;}
.fs18{font-size:56.269258px;}
.fs1d{font-size:56.269261px;}
.fs19{font-size:56.269264px;}
.fs1a{font-size:56.269268px;}
.fs16{font-size:56.269354px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:60.000006px;}
.fs6{font-size:60.000012px;}
.fs5{font-size:60.000018px;}
.fs7{font-size:60.000020px;}
.fs8{font-size:60.000024px;}
.fsd{font-size:66.000004px;}
.fs11{font-size:66.000010px;}
.fs10{font-size:66.000017px;}
.fs1c{font-size:66.000056px;}
.fs1{font-size:72.000002px;}
.fs20{font-size:74.400001px;}
.fsf{font-size:78.000005px;}
.fsb{font-size:84.000000px;}
.fs1f{font-size:86.399998px;}
.fs0{font-size:96.000006px;}
.fs23{font-size:114.000007px;}
.fs21{font-size:120.000001px;}
.fsc{font-size:122.399999px;}
.fsa{font-size:132.000007px;}
.fs12{font-size:140.400000px;}
.fs4{font-size:155.400003px;}
.y0{bottom:0.000000px;}
.y8a{bottom:32.993196px;}
.yb8{bottom:36.031257px;}
.y2f{bottom:42.736561px;}
.y5f{bottom:47.897489px;}
.y60{bottom:47.905767px;}
.y41{bottom:48.455240px;}
.y1e{bottom:54.726075px;}
.y1a{bottom:54.792953px;}
.y1b{bottom:56.487833px;}
.ya6{bottom:60.424297px;}
.yb7{bottom:66.379460px;}
.y89{bottom:72.615819px;}
.y5{bottom:75.061052px;}
.y2e{bottom:85.936551px;}
.yb6{bottom:86.179461px;}
.ya3{bottom:88.402495px;}
.y88{bottom:92.464862px;}
.y4{bottom:95.761052px;}
.y1d{bottom:97.772799px;}
.y19{bottom:104.026380px;}
.y5e{bottom:104.379447px;}
.yb5{bottom:105.979473px;}
.y1c{bottom:106.208814px;}
.y11{bottom:106.357402px;}
.yfb{bottom:106.883309px;}
.y2d{bottom:107.536552px;}
.y61{bottom:110.470984px;}
.y5d{bottom:110.774068px;}
.ya2{bottom:111.172491px;}
.y87{bottom:112.215845px;}
.y62{bottom:115.732789px;}
.y1f{bottom:118.140636px;}
.yfa{bottom:121.283309px;}
.y27{bottom:121.901366px;}
.y10{bottom:122.265590px;}
.y53{bottom:122.270267px;}
.yb4{bottom:125.779485px;}
.yf2{bottom:127.116277px;}
.y8{bottom:127.338348px;}
.y2c{bottom:129.136541px;}
.y95{bottom:131.017873px;}
.y86{bottom:132.015862px;}
.ya1{bottom:133.942485px;}
.y3f{bottom:134.489932px;}
.yf5{bottom:134.563916px;}
.yf9{bottom:135.683310px;}
.y52{bottom:138.470272px;}
.yf1{bottom:141.516289px;}
.y3{bottom:142.561054px;}
.y7{bottom:143.088348px;}
.y26{bottom:143.501363px;}
.y6f{bottom:145.092675px;}
.yb3{bottom:145.579474px;}
.y102{bottom:146.364730px;}
.yf4{bottom:148.963920px;}
.yf8{bottom:150.083315px;}
.yc1{bottom:151.558287px;}
.y51{bottom:154.670267px;}
.yf0{bottom:155.916289px;}
.ya0{bottom:156.712486px;}
.y6{bottom:158.838349px;}
.y3e{bottom:159.329899px;}
.yf7{bottom:164.483311px;}
.y6e{bottom:164.892653px;}
.y25{bottom:165.101361px;}
.yb2{bottom:165.379470px;}
.y94{bottom:166.657863px;}
.ycc{bottom:168.734776px;}
.yef{bottom:170.316290px;}
.y50{bottom:170.870269px;}
.y85{bottom:171.593289px;}
.y2b{bottom:172.336542px;}
.ydd{bottom:176.510765px;}
.yf6{bottom:178.883311px;}
.y9f{bottom:179.482486px;}
.y3d{bottom:183.539889px;}
.y4e{bottom:184.640274px;}
.y6d{bottom:184.692665px;}
.yf3{bottom:184.716301px;}
.yb1{bottom:185.179468px;}
.y24{bottom:186.701364px;}
.y4f{bottom:187.070272px;}
.ycb{bottom:191.504765px;}
.yc0{bottom:194.758277px;}
.yee{bottom:199.116302px;}
.ydc{bottom:199.280754px;}
.y101{bottom:200.364675px;}
.y93{bottom:202.297853px;}
.y9e{bottom:202.882487px;}
.y4d{bottom:203.270275px;}
.y6c{bottom:204.492666px;}
.yb0{bottom:204.979468px;}
.y3c{bottom:206.939890px;}
.y23{bottom:208.301365px;}
.yed{bottom:213.516302px;}
.yca{bottom:214.274755px;}
.y2a{bottom:215.536526px;}
.y2{bottom:219.601068px;}
.y7c{bottom:221.768905px;}
.ydb{bottom:222.050733px;}
.y5c{bottom:222.479864px;}
.y6b{bottom:224.292678px;}
.yaf{bottom:224.779465px;}
.ya4{bottom:225.939588px;}
.yec{bottom:227.916314px;}
.y7f{bottom:233.739051px;}
.ya{bottom:235.422591px;}
.y74{bottom:236.048085px;}
.yc9{bottom:237.044744px;}
.y78{bottom:237.317863px;}
.y7b{bottom:237.683465px;}
.y92{bottom:237.937865px;}
.ybf{bottom:237.958267px;}
.yeb{bottom:242.316315px;}
.y6a{bottom:244.092678px;}
.y84{bottom:244.613340px;}
.yda{bottom:244.820745px;}
.yae{bottom:244.939466px;}
.y3b{bottom:246.149865px;}
.y5b{bottom:247.319865px;}
.y7e{bottom:249.653610px;}
.y9{bottom:251.172592px;}
.y73{bottom:251.743547px;}
.y1{bottom:252.721069px;}
.y77{bottom:253.253042px;}
.y100{bottom:254.364677px;}
.y4a{bottom:256.140233px;}
.yea{bottom:256.716315px;}
.y9d{bottom:257.316863px;}
.y29{bottom:258.736520px;}
.ybe{bottom:259.558268px;}
.yc8{bottom:259.814734px;}
.y110{bottom:260.931560px;}
.y4c{bottom:261.000232px;}
.y69{bottom:263.892690px;}
.yd9{bottom:267.590745px;}
.y3a{bottom:268.919865px;}
.ye9{bottom:271.116327px;}
.y5a{bottom:272.159866px;}
.yf{bottom:272.787514px;}
.y91{bottom:273.577855px;}
.y49{bottom:274.770237px;}
.y4b{bottom:277.200235px;}
.y10f{bottom:278.931560px;}
.y9c{bottom:280.086852px;}
.yc7{bottom:282.584723px;}
.y68{bottom:283.692702px;}
.ye8{bottom:285.516334px;}
.yd3{bottom:286.198043px;}
.yd8{bottom:290.360746px;}
.y39{bottom:291.689866px;}
.yad{bottom:293.226042px;}
.y48{bottom:293.400237px;}
.y10e{bottom:296.931561px;}
.y59{bottom:296.999866px;}
.ye7{bottom:299.916339px;}
.y28{bottom:301.936524px;}
.ybd{bottom:302.758258px;}
.y9b{bottom:302.856842px;}
.yc6{bottom:305.354713px;}
.yff{bottom:308.364679px;}
.yd2{bottom:308.968033px;}
.y90{bottom:309.217856px;}
.yd7{bottom:313.130741px;}
.ye6{bottom:314.316339px;}
.yac{bottom:314.826043px;}
.y10d{bottom:314.931561px;}
.y38{bottom:315.089867px;}
.y58{bottom:321.839873px;}
.ye{bottom:322.467516px;}
.y67{bottom:323.292688px;}
.y9a{bottom:326.256842px;}
.yc5{bottom:328.124714px;}
.ye5{bottom:328.716340px;}
.yd1{bottom:331.738034px;}
.y70{bottom:331.760684px;}
.y47{bottom:334.305936px;}
.yd6{bottom:335.900739px;}
.yab{bottom:336.066021px;}
.y66{bottom:343.092686px;}
.ye4{bottom:343.116340px;}
.y8f{bottom:344.857846px;}
.ybc{bottom:345.958259px;}
.y14{bottom:346.092366px;}
.y8b{bottom:346.099362px;}
.y46{bottom:350.505931px;}
.y76{bottom:350.872637px;}
.yc4{bottom:350.894710px;}
.y10c{bottom:350.931563px;}
.y81{bottom:354.126259px;}
.y7a{bottom:354.403019px;}
.yd0{bottom:354.508030px;}
.y37{bottom:354.929871px;}
.y57{bottom:355.499868px;}
.y72{bottom:355.777828px;}
.yaa{bottom:356.226028px;}
.ye3{bottom:357.516345px;}
.y83{bottom:358.147008px;}
.yd5{bottom:358.670737px;}
.y7d{bottom:360.268509px;}
.y13{bottom:361.842366px;}
.yfe{bottom:362.364680px;}
.y45{bottom:366.705933px;}
.y75{bottom:366.913768px;}
.y80{bottom:370.040820px;}
.y79{bottom:370.314697px;}
.ye2{bottom:371.916341px;}
.yd{bottom:372.147517px;}
.yc3{bottom:373.664708px;}
.y82{bottom:374.061570px;}
.y99{bottom:375.936849px;}
.ycf{bottom:377.278028px;}
.y12{bottom:377.592367px;}
.y106{bottom:379.687561px;}
.y36{bottom:379.769876px;}
.y8e{bottom:380.497836px;}
.yd4{bottom:381.440738px;}
.y65{bottom:382.692683px;}
.y44{bottom:382.905936px;}
.ye1{bottom:386.316342px;}
.y10b{bottom:386.931564px;}
.ybb{bottom:389.158243px;}
.y56{bottom:395.999874px;}
.ya9{bottom:397.266023px;}
.y43{bottom:399.105938px;}
.y98{bottom:400.146845px;}
.y105{bottom:402.457555px;}
.y35{bottom:403.979870px;}
.y10a{bottom:404.931564px;}
.y22{bottom:413.111136px;}
.yc2{bottom:415.064705px;}
.y8d{bottom:416.137831px;}
.yfd{bottom:416.364682px;}
.ya8{bottom:417.066024px;}
.y32{bottom:417.614532px;}
.yc{bottom:417.687519px;}
.yce{bottom:418.678025px;}
.y64{bottom:422.292684px;}
.ye0{bottom:422.670560px;}
.y97{bottom:422.916845px;}
.y109{bottom:422.931565px;}
.ydf{bottom:425.100558px;}
.y55{bottom:431.099871px;}
.yba{bottom:432.358237px;}
.y34{bottom:432.539871px;}
.ya7{bottom:437.226022px;}
.y21{bottom:438.311134px;}
.y108{bottom:440.931565px;}
.y42{bottom:441.120707px;}
.yde{bottom:441.300561px;}
.yfc{bottom:443.364683px;}
.y96{bottom:446.316846px;}
.y8c{bottom:451.777819px;}
.y18{bottom:459.685885px;}
.y104{bottom:471.667558px;}
.y17{bottom:475.435886px;}
.y107{bottom:479.091552px;}
.yb{bottom:488.525396px;}
.y16{bottom:491.185886px;}
.ycd{bottom:502.846325px;}
.y71{bottom:505.769667px;}
.yb9{bottom:506.345667px;}
.y15{bottom:506.935887px;}
.y40{bottom:507.166321px;}
.y33{bottom:507.167797px;}
.y63{bottom:507.978215px;}
.y103{bottom:509.933051px;}
.y20{bottom:517.440426px;}
.y31{bottom:531.806695px;}
.y54{bottom:535.224885px;}
.ya5{bottom:547.472490px;}
.y30{bottom:549.806693px;}
.h25{height:38.062500px;}
.h1b{height:41.639209px;}
.h1e{height:41.639229px;}
.h1c{height:41.639237px;}
.h1f{height:41.639251px;}
.h24{height:41.639253px;}
.h20{height:41.639255px;}
.h21{height:41.639259px;}
.h1d{height:41.639322px;}
.hf{height:43.301273px;}
.hb{height:44.400005px;}
.h8{height:44.400009px;}
.h7{height:44.400014px;}
.h9{height:44.400015px;}
.ha{height:44.400018px;}
.he{height:45.000000px;}
.h2a{height:46.171878px;}
.h4{height:47.502548px;}
.h18{height:48.180007px;}
.h14{height:48.937502px;}
.h13{height:51.943361px;}
.h19{height:52.808694px;}
.h12{height:54.375000px;}
.h17{height:55.540950px;}
.h3{height:57.714844px;}
.h11{height:59.812503px;}
.h23{height:59.812551px;}
.hd{height:62.160000px;}
.h29{height:63.486332px;}
.h22{height:63.486382px;}
.h6{height:65.250002px;}
.h2{height:69.257815px;}
.h16{height:70.687505px;}
.h27{height:71.566407px;}
.h15{height:75.029302px;}
.h26{height:83.109373px;}
.h1{height:92.343756px;}
.hc{height:97.680005px;}
.h2b{height:109.658210px;}
.h5{height:114.996003px;}
.h28{height:115.429688px;}
.h10{height:117.738281px;}
.h1a{height:135.052734px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x3c{left:15.546803px;}
.x5f{left:39.546261px;}
.x2f{left:51.403367px;}
.x1{left:54.664370px;}
.x55{left:55.675335px;}
.x61{left:59.305293px;}
.x3d{left:60.948397px;}
.x38{left:62.846460px;}
.x11{left:67.555474px;}
.x2a{left:73.697837px;}
.x57{left:74.866768px;}
.x24{left:77.916093px;}
.x7{left:80.102365px;}
.x68{left:84.106281px;}
.x52{left:85.515427px;}
.x9{left:90.396974px;}
.x1f{left:92.300200px;}
.x62{left:93.546263px;}
.x8{left:96.230296px;}
.xa{left:98.818956px;}
.x26{left:107.279506px;}
.x20{left:108.428131px;}
.x29{left:112.028398px;}
.x50{left:117.020612px;}
.x25{left:128.013777px;}
.x18{left:130.081185px;}
.x3b{left:131.286059px;}
.x30{left:132.332505px;}
.x53{left:135.549218px;}
.x69{left:138.106285px;}
.x1b{left:139.978330px;}
.x21{left:146.300202px;}
.x31{left:160.445398px;}
.x27{left:162.192594px;}
.x58{left:165.312998px;}
.x5b{left:170.178733px;}
.x1c{left:177.850401px;}
.x59{left:182.354014px;}
.x3e{left:184.846046px;}
.x10{left:187.717152px;}
.x3f{left:190.103674px;}
.x28{left:199.151579px;}
.x40{left:227.019157px;}
.x41{left:232.589774px;}
.x12{left:245.242454px;}
.x19{left:255.020599px;}
.x13{left:268.844845px;}
.x23{left:289.508504px;}
.x14{left:309.833750px;}
.x2b{left:333.346942px;}
.x15{left:341.174316px;}
.x42{left:344.379354px;}
.x43{left:350.016635px;}
.x2e{left:368.500996px;}
.x44{left:372.347131px;}
.x45{left:377.976297px;}
.x5e{left:379.908257px;}
.x63{left:399.084822px;}
.x32{left:427.033451px;}
.x64{left:433.325793px;}
.x22{left:457.126991px;}
.x46{left:523.506478px;}
.x6b{left:533.465177px;}
.x56{left:536.631430px;}
.x6a{left:538.021705px;}
.x34{left:539.911546px;}
.x6c{left:548.821703px;}
.x47{left:559.540537px;}
.x48{left:565.169704px;}
.x16{left:574.501244px;}
.x1d{left:583.780505px;}
.x17{left:591.610214px;}
.x33{left:600.903557px;}
.x1e{left:621.652576px;}
.x1a{left:630.602008px;}
.x39{left:642.555772px;}
.x65{left:669.103041px;}
.x3a{left:679.514759px;}
.x54{left:686.568847px;}
.x49{left:688.020834px;}
.x4a{left:693.650002px;}
.x2c{left:696.317414px;}
.x5c{left:698.172885px;}
.x5a{left:707.227526px;}
.x5d{left:715.213899px;}
.x4b{left:726.896330px;}
.x36{left:729.273959px;}
.x2d{left:731.471468px;}
.x4c{left:732.525497px;}
.x60{left:740.438990px;}
.xe{left:756.281986px;}
.x35{left:759.428099px;}
.x66{left:760.761680px;}
.x5{left:776.338800px;}
.xd{left:779.714221px;}
.x6{left:781.764244px;}
.xf{left:785.545968px;}
.x67{left:795.002650px;}
.x4d{left:847.622907px;}
.x4e{left:853.252075px;}
.x4f{left:890.056502px;}
.xc{left:901.656003px;}
.xb{left:908.456549px;}
.x2{left:909.587035px;}
.x3{left:917.854848px;}
.x4{left:933.639516px;}
.x37{left:948.735230px;}
.x51{left:951.131607px;}
@media print{
.v1{vertical-align:-2.300225pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.793177pt;}
.v3{vertical-align:3.749879pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.037946pt;}
.ls9{letter-spacing:10.654320pt;}
.lsa{letter-spacing:19.187650pt;}
.ls8{letter-spacing:95.975004pt;}
.ls2{letter-spacing:95.975056pt;}
.ls5{letter-spacing:95.975064pt;}
.ls6{letter-spacing:95.975140pt;}
.ls4{letter-spacing:96.000191pt;}
.ls3{letter-spacing:96.000243pt;}
.ls1{letter-spacing:96.000251pt;}
.ws4{word-spacing:-18.442667pt;}
.ws5{word-spacing:-17.984001pt;}
.wsa{word-spacing:-16.485334pt;}
.wsd{word-spacing:-13.845334pt;}
.ws2{word-spacing:-13.092503pt;}
.ws6{word-spacing:-12.800004pt;}
.ws9{word-spacing:-12.654333pt;}
.ws8{word-spacing:-12.654331pt;}
.ws7{word-spacing:-12.654318pt;}
.ws0{word-spacing:-12.586667pt;}
.wsb{word-spacing:-11.349334pt;}
.wsc{word-spacing:-10.069334pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:70.535988pt;}
._6{margin-left:-1017.891186pt;}
._e{margin-left:-8.832000pt;}
._4{margin-left:-7.765333pt;}
._a{margin-left:-6.677333pt;}
._f{margin-left:-5.331200pt;}
._2{margin-left:-4.181334pt;}
._3{margin-left:-2.560000pt;}
._1{margin-left:-0.938667pt;}
._0{width:1.365333pt;}
._7{width:2.611200pt;}
._b{width:217.339060pt;}
._c{width:233.075174pt;}
._d{width:431.433997pt;}
._8{width:546.498327pt;}
._9{width:615.537660pt;}
._5{width:1925.353241pt;}
.fs1e{font-size:37.333333pt;}
.fs1b{font-size:40.013383pt;}
.fs22{font-size:42.666669pt;}
.fs3{font-size:46.592537pt;}
.fse{font-size:48.000002pt;}
.fs14{font-size:50.017066pt;}
.fs13{font-size:50.017067pt;}
.fs17{font-size:50.017092pt;}
.fs15{font-size:50.017101pt;}
.fs18{font-size:50.017118pt;}
.fs1d{font-size:50.017121pt;}
.fs19{font-size:50.017124pt;}
.fs1a{font-size:50.017127pt;}
.fs16{font-size:50.017204pt;}
.fs2{font-size:53.333334pt;}
.fs9{font-size:53.333339pt;}
.fs6{font-size:53.333344pt;}
.fs5{font-size:53.333350pt;}
.fs7{font-size:53.333351pt;}
.fs8{font-size:53.333355pt;}
.fsd{font-size:58.666670pt;}
.fs11{font-size:58.666676pt;}
.fs10{font-size:58.666682pt;}
.fs1c{font-size:58.666717pt;}
.fs1{font-size:64.000002pt;}
.fs20{font-size:66.133334pt;}
.fsf{font-size:69.333338pt;}
.fsb{font-size:74.666666pt;}
.fs1f{font-size:76.799998pt;}
.fs0{font-size:85.333339pt;}
.fs23{font-size:101.333339pt;}
.fs21{font-size:106.666667pt;}
.fsc{font-size:108.799999pt;}
.fsa{font-size:117.333340pt;}
.fs12{font-size:124.800000pt;}
.fs4{font-size:138.133336pt;}
.y0{bottom:0.000000pt;}
.y8a{bottom:29.327286pt;}
.yb8{bottom:32.027784pt;}
.y2f{bottom:37.988054pt;}
.y5f{bottom:42.575546pt;}
.y60{bottom:42.582904pt;}
.y41{bottom:43.071324pt;}
.y1e{bottom:48.645400pt;}
.y1a{bottom:48.704847pt;}
.y1b{bottom:50.211407pt;}
.ya6{bottom:53.710486pt;}
.yb7{bottom:59.003965pt;}
.y89{bottom:64.547395pt;}
.y5{bottom:66.720935pt;}
.y2e{bottom:76.388045pt;}
.yb6{bottom:76.603965pt;}
.ya3{bottom:78.579995pt;}
.y88{bottom:82.190988pt;}
.y4{bottom:85.120935pt;}
.y1d{bottom:86.909155pt;}
.y19{bottom:92.467894pt;}
.y5e{bottom:92.781730pt;}
.yb5{bottom:94.203976pt;}
.y1c{bottom:94.407835pt;}
.y11{bottom:94.539913pt;}
.yfb{bottom:95.007386pt;}
.y2d{bottom:95.588046pt;}
.y61{bottom:98.196430pt;}
.y5d{bottom:98.465838pt;}
.ya2{bottom:98.819992pt;}
.y87{bottom:99.747418pt;}
.y62{bottom:102.873591pt;}
.y1f{bottom:105.013899pt;}
.yfa{bottom:107.807386pt;}
.y27{bottom:108.356770pt;}
.y10{bottom:108.680524pt;}
.y53{bottom:108.684682pt;}
.yb4{bottom:111.803986pt;}
.yf2{bottom:112.992246pt;}
.y8{bottom:113.189642pt;}
.y2c{bottom:114.788036pt;}
.y95{bottom:116.460331pt;}
.y86{bottom:117.347433pt;}
.ya1{bottom:119.059987pt;}
.y3f{bottom:119.546607pt;}
.yf5{bottom:119.612370pt;}
.yf9{bottom:120.607387pt;}
.y52{bottom:123.084687pt;}
.yf1{bottom:125.792257pt;}
.y3{bottom:126.720937pt;}
.y7{bottom:127.189643pt;}
.y26{bottom:127.556767pt;}
.y6f{bottom:128.971267pt;}
.yb3{bottom:129.403977pt;}
.y102{bottom:130.101982pt;}
.yf4{bottom:132.412373pt;}
.yf8{bottom:133.407391pt;}
.yc1{bottom:134.718477pt;}
.y51{bottom:137.484682pt;}
.yf0{bottom:138.592257pt;}
.ya0{bottom:139.299987pt;}
.y6{bottom:141.189643pt;}
.y3e{bottom:141.626577pt;}
.yf7{bottom:146.207387pt;}
.y6e{bottom:146.571247pt;}
.y25{bottom:146.756765pt;}
.yb2{bottom:147.003973pt;}
.y94{bottom:148.140322pt;}
.ycc{bottom:149.986468pt;}
.yef{bottom:151.392258pt;}
.y50{bottom:151.884684pt;}
.y85{bottom:152.527368pt;}
.y2b{bottom:153.188038pt;}
.ydd{bottom:156.898458pt;}
.yf6{bottom:159.007388pt;}
.y9f{bottom:159.539988pt;}
.y3d{bottom:163.146568pt;}
.y4e{bottom:164.124688pt;}
.y6d{bottom:164.171258pt;}
.yf3{bottom:164.192268pt;}
.yb1{bottom:164.603972pt;}
.y24{bottom:165.956768pt;}
.y4f{bottom:166.284686pt;}
.ycb{bottom:170.226458pt;}
.yc0{bottom:173.118468pt;}
.yee{bottom:176.992268pt;}
.ydc{bottom:177.138448pt;}
.y101{bottom:178.101933pt;}
.y93{bottom:179.820313pt;}
.y9e{bottom:180.339988pt;}
.y4d{bottom:180.684689pt;}
.y6c{bottom:181.771259pt;}
.yb0{bottom:182.203972pt;}
.y3c{bottom:183.946569pt;}
.y23{bottom:185.156769pt;}
.yed{bottom:189.792269pt;}
.yca{bottom:190.466449pt;}
.y2a{bottom:191.588023pt;}
.y2{bottom:195.200949pt;}
.y7c{bottom:197.127916pt;}
.ydb{bottom:197.378429pt;}
.y5c{bottom:197.759879pt;}
.y6b{bottom:199.371269pt;}
.yaf{bottom:199.803969pt;}
.ya4{bottom:200.835189pt;}
.yec{bottom:202.592279pt;}
.y7f{bottom:207.768045pt;}
.ya{bottom:209.264525pt;}
.y74{bottom:209.820520pt;}
.yc9{bottom:210.706439pt;}
.y78{bottom:210.949212pt;}
.y7b{bottom:211.274191pt;}
.y92{bottom:211.500324pt;}
.ybf{bottom:211.518459pt;}
.yeb{bottom:215.392280pt;}
.y6a{bottom:216.971270pt;}
.y84{bottom:217.434080pt;}
.yda{bottom:217.618440pt;}
.yae{bottom:217.723970pt;}
.y3b{bottom:218.799880pt;}
.y5b{bottom:219.839880pt;}
.y7e{bottom:221.914320pt;}
.y9{bottom:223.264526pt;}
.y73{bottom:223.772042pt;}
.y1{bottom:224.640950pt;}
.y77{bottom:225.113815pt;}
.y100{bottom:226.101935pt;}
.y4a{bottom:227.680207pt;}
.yea{bottom:228.192280pt;}
.y9d{bottom:228.726100pt;}
.y29{bottom:229.988018pt;}
.ybe{bottom:230.718460pt;}
.yc8{bottom:230.946430pt;}
.y110{bottom:231.939164pt;}
.y4c{bottom:232.000206pt;}
.y69{bottom:234.571280pt;}
.yd9{bottom:237.858440pt;}
.y3a{bottom:239.039880pt;}
.ye9{bottom:240.992290pt;}
.y5a{bottom:241.919880pt;}
.yf{bottom:242.477790pt;}
.y91{bottom:243.180316pt;}
.y49{bottom:244.240211pt;}
.y4b{bottom:246.400209pt;}
.y10f{bottom:247.939165pt;}
.y9c{bottom:248.966091pt;}
.yc7{bottom:251.186421pt;}
.y68{bottom:252.171291pt;}
.ye8{bottom:253.792297pt;}
.yd3{bottom:254.398261pt;}
.yd8{bottom:258.098441pt;}
.y39{bottom:259.279881pt;}
.yad{bottom:260.645371pt;}
.y48{bottom:260.800211pt;}
.y10e{bottom:263.939165pt;}
.y59{bottom:263.999881pt;}
.ye7{bottom:266.592301pt;}
.y28{bottom:268.388021pt;}
.ybd{bottom:269.118451pt;}
.y9b{bottom:269.206081pt;}
.yc6{bottom:271.426411pt;}
.yff{bottom:274.101936pt;}
.yd2{bottom:274.638252pt;}
.y90{bottom:274.860317pt;}
.yd7{bottom:278.338437pt;}
.ye6{bottom:279.392302pt;}
.yac{bottom:279.845372pt;}
.y10d{bottom:279.939166pt;}
.y38{bottom:280.079882pt;}
.y58{bottom:286.079887pt;}
.ye{bottom:286.637792pt;}
.y67{bottom:287.371278pt;}
.y9a{bottom:290.006082pt;}
.yc5{bottom:291.666412pt;}
.ye5{bottom:292.192302pt;}
.yd1{bottom:294.878252pt;}
.y70{bottom:294.898386pt;}
.y47{bottom:297.160832pt;}
.yd6{bottom:298.578434pt;}
.yab{bottom:298.725352pt;}
.y66{bottom:304.971276pt;}
.ye4{bottom:304.992302pt;}
.y8f{bottom:306.540308pt;}
.ybc{bottom:307.518453pt;}
.y14{bottom:307.637659pt;}
.y8b{bottom:307.643877pt;}
.y46{bottom:311.560828pt;}
.y76{bottom:311.886789pt;}
.yc4{bottom:311.906409pt;}
.y10c{bottom:311.939167pt;}
.y81{bottom:314.778897pt;}
.y7a{bottom:315.024906pt;}
.yd0{bottom:315.118249pt;}
.y37{bottom:315.493219pt;}
.y57{bottom:315.999883pt;}
.y72{bottom:316.246958pt;}
.yaa{bottom:316.645358pt;}
.ye3{bottom:317.792307pt;}
.y83{bottom:318.352896pt;}
.yd5{bottom:318.818433pt;}
.y7d{bottom:320.238674pt;}
.y13{bottom:321.637659pt;}
.yfe{bottom:322.101938pt;}
.y45{bottom:325.960829pt;}
.y75{bottom:326.145571pt;}
.y80{bottom:328.925173pt;}
.y79{bottom:329.168620pt;}
.ye2{bottom:330.592303pt;}
.yd{bottom:330.797793pt;}
.yc3{bottom:332.146407pt;}
.y82{bottom:332.499173pt;}
.y99{bottom:334.166088pt;}
.ycf{bottom:335.358247pt;}
.y12{bottom:335.637659pt;}
.y106{bottom:337.500055pt;}
.y36{bottom:337.573224pt;}
.y8e{bottom:338.220299pt;}
.yd4{bottom:339.058434pt;}
.y65{bottom:340.171274pt;}
.y44{bottom:340.360832pt;}
.ye1{bottom:343.392304pt;}
.y10b{bottom:343.939168pt;}
.ybb{bottom:345.918438pt;}
.y56{bottom:351.999888pt;}
.ya9{bottom:353.125354pt;}
.y43{bottom:354.760834pt;}
.y98{bottom:355.686084pt;}
.y105{bottom:357.740049pt;}
.y35{bottom:359.093218pt;}
.y10a{bottom:359.939168pt;}
.y22{bottom:367.209898pt;}
.yc2{bottom:368.946405pt;}
.y8d{bottom:369.900295pt;}
.yfd{bottom:370.101940pt;}
.ya8{bottom:370.725355pt;}
.y32{bottom:371.212918pt;}
.yc{bottom:371.277795pt;}
.yce{bottom:372.158245pt;}
.y64{bottom:375.371275pt;}
.ye0{bottom:375.707165pt;}
.y97{bottom:375.926085pt;}
.y109{bottom:375.939169pt;}
.ydf{bottom:377.867163pt;}
.y55{bottom:383.199885pt;}
.yba{bottom:384.318433pt;}
.y34{bottom:384.479885pt;}
.ya7{bottom:388.645353pt;}
.y21{bottom:389.609897pt;}
.y108{bottom:391.939169pt;}
.y42{bottom:392.107295pt;}
.yde{bottom:392.267165pt;}
.yfc{bottom:394.101940pt;}
.y96{bottom:396.726085pt;}
.y8c{bottom:401.580284pt;}
.y18{bottom:408.609676pt;}
.y104{bottom:419.260051pt;}
.y17{bottom:422.609676pt;}
.y107{bottom:425.859157pt;}
.yb{bottom:434.244797pt;}
.y16{bottom:436.609677pt;}
.ycd{bottom:446.974511pt;}
.y71{bottom:449.573037pt;}
.yb9{bottom:450.085037pt;}
.y15{bottom:450.609677pt;}
.y40{bottom:450.814507pt;}
.y33{bottom:450.815819pt;}
.y63{bottom:451.536191pt;}
.y103{bottom:453.273823pt;}
.y20{bottom:459.947045pt;}
.y31{bottom:472.717062pt;}
.y54{bottom:475.755453pt;}
.ya5{bottom:486.642213pt;}
.y30{bottom:488.717060pt;}
.h25{height:33.833333pt;}
.h1b{height:37.012630pt;}
.h1e{height:37.012648pt;}
.h1c{height:37.012655pt;}
.h1f{height:37.012667pt;}
.h24{height:37.012669pt;}
.h20{height:37.012671pt;}
.h21{height:37.012674pt;}
.h1d{height:37.012731pt;}
.hf{height:38.490020pt;}
.hb{height:39.466671pt;}
.h8{height:39.466675pt;}
.h7{height:39.466679pt;}
.h9{height:39.466680pt;}
.ha{height:39.466683pt;}
.he{height:40.000000pt;}
.h2a{height:41.041669pt;}
.h4{height:42.224487pt;}
.h18{height:42.826673pt;}
.h14{height:43.500001pt;}
.h13{height:46.171876pt;}
.h19{height:46.941061pt;}
.h12{height:48.333334pt;}
.h17{height:49.369734pt;}
.h3{height:51.302084pt;}
.h11{height:53.166670pt;}
.h23{height:53.166712pt;}
.hd{height:55.253333pt;}
.h29{height:56.432295pt;}
.h22{height:56.432340pt;}
.h6{height:58.000002pt;}
.h2{height:61.562502pt;}
.h16{height:62.833338pt;}
.h27{height:63.614584pt;}
.h15{height:66.692713pt;}
.h26{height:73.874999pt;}
.h1{height:82.083339pt;}
.hc{height:86.826671pt;}
.h2b{height:97.473964pt;}
.h5{height:102.218669pt;}
.h28{height:102.604167pt;}
.h10{height:104.656250pt;}
.h1a{height:120.046875pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:13.819381pt;}
.x5f{left:35.152232pt;}
.x2f{left:45.691881pt;}
.x1{left:48.590552pt;}
.x55{left:49.489187pt;}
.x61{left:52.715816pt;}
.x3d{left:54.176352pt;}
.x38{left:55.863520pt;}
.x11{left:60.049310pt;}
.x2a{left:65.509188pt;}
.x57{left:66.548239pt;}
.x24{left:69.258749pt;}
.x7{left:71.202102pt;}
.x68{left:74.761138pt;}
.x52{left:76.013713pt;}
.x9{left:80.352866pt;}
.x1f{left:82.044623pt;}
.x62{left:83.152234pt;}
.x8{left:85.538041pt;}
.xa{left:87.839072pt;}
.x26{left:95.359561pt;}
.x20{left:96.380561pt;}
.x29{left:99.580798pt;}
.x50{left:104.018322pt;}
.x25{left:113.790024pt;}
.x18{left:115.627720pt;}
.x3b{left:116.698719pt;}
.x30{left:117.628894pt;}
.x53{left:120.488194pt;}
.x69{left:122.761142pt;}
.x1b{left:124.425182pt;}
.x21{left:130.044624pt;}
.x31{left:142.618132pt;}
.x27{left:144.171195pt;}
.x58{left:146.944887pt;}
.x5b{left:151.269985pt;}
.x1c{left:158.089245pt;}
.x59{left:162.092457pt;}
.x3e{left:164.307596pt;}
.x10{left:166.859691pt;}
.x3f{left:168.981044pt;}
.x28{left:177.023626pt;}
.x40{left:201.794806pt;}
.x41{left:206.746466pt;}
.x12{left:217.993292pt;}
.x19{left:226.684977pt;}
.x13{left:238.973196pt;}
.x23{left:257.340892pt;}
.x14{left:275.407778pt;}
.x2b{left:296.308392pt;}
.x15{left:303.266059pt;}
.x42{left:306.114982pt;}
.x43{left:311.125897pt;}
.x2e{left:327.556440pt;}
.x44{left:330.975227pt;}
.x45{left:335.978931pt;}
.x5e{left:337.696229pt;}
.x63{left:354.742064pt;}
.x32{left:379.585290pt;}
.x64{left:385.178482pt;}
.x22{left:406.335103pt;}
.x46{left:465.339092pt;}
.x6b{left:474.191268pt;}
.x56{left:477.005715pt;}
.x6a{left:478.241515pt;}
.x34{left:479.921374pt;}
.x6c{left:487.841514pt;}
.x47{left:497.369366pt;}
.x48{left:502.373070pt;}
.x16{left:510.667773pt;}
.x1d{left:518.916005pt;}
.x17{left:525.875746pt;}
.x33{left:534.136495pt;}
.x1e{left:552.580068pt;}
.x1a{left:560.535118pt;}
.x39{left:571.160686pt;}
.x65{left:594.758259pt;}
.x3a{left:604.013119pt;}
.x54{left:610.283420pt;}
.x49{left:611.574075pt;}
.x4a{left:616.577779pt;}
.x2c{left:618.948813pt;}
.x5c{left:620.598120pt;}
.x5a{left:628.646690pt;}
.x5d{left:635.745688pt;}
.x4b{left:646.130071pt;}
.x36{left:648.243519pt;}
.x2d{left:650.196861pt;}
.x4c{left:651.133775pt;}
.x60{left:658.167991pt;}
.xe{left:672.250655pt;}
.x35{left:675.047199pt;}
.x66{left:676.232605pt;}
.x5{left:690.078933pt;}
.xd{left:693.079307pt;}
.x6{left:694.901550pt;}
.xf{left:698.263082pt;}
.x67{left:706.669023pt;}
.x4d{left:753.442584pt;}
.x4e{left:758.446289pt;}
.x4f{left:791.161335pt;}
.xc{left:801.472003pt;}
.xb{left:807.516933pt;}
.x2{left:808.521809pt;}
.x3{left:815.870976pt;}
.x4{left:829.901792pt;}
.x37{left:843.320205pt;}
.x51{left:845.450317pt;}
}




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