
    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_5e73b59ec1183ac57e7e7049.woff')format("woff");}.ff1{font-family:ff1;line-height:1.006348;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_ae865d355be589c36c6362ae.woff')format("woff");}.ff2{font-family:ff2;line-height:1.008301;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_ad27bb0d83a4a6ed80e49103.woff')format("woff");}.ff3{font-family:ff3;line-height:0.717300;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_49f3355afe3878c6b21f8b21.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_21634cccfabb503a765df83b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.783691;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_804b7fe6c7a61256b889c902.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_62f6e59ccc718a74d9610aee.woff')format("woff");}.ff7{font-family:ff7;line-height:0.940918;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_b5df382e99b0578b7c55370a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_d078f2cebf36d052e4f29e81.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_e0a53442a2b6fe4ab35c259d.woff')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_67c5ed24dd005983cca9a2f3.woff')format("woff");}.ffb{font-family:ffb;line-height:1.057617;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_4e83819c70f66ab747a29765.woff')format("woff");}.ffc{font-family:ffc;line-height:0.941406;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_36b752e6d7d31c0521825c75.woff')format("woff");}.ffd{font-family:ffd;line-height:1.006348;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_9c07004efe68f45a84a4a630.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_ad83150a6369030642c0934c.woff')format("woff");}.fff{font-family:fff;line-height:0.941406;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_ea4e211b023d1459d0ae9c71.woff')format("woff");}.ff10{font-family:ff10;line-height:0.940918;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_68113c9c084d806c315dd24e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.130371;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_130a82d628a37765c6402154.woff')format("woff");}.ff12{font-family:ff12;line-height:0.961914;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;}
.m3{transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250004,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249900,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,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);}
.m4{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-59.040000px;}
.v2{vertical-align:-29.520000px;}
.v4{vertical-align:-23.040000px;}
.v6{vertical-align:-20.160000px;}
.v7{vertical-align:-13.246490px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.600000px;}
.v5{vertical-align:32.400000px;}
.v8{vertical-align:43.200000px;}
.ls20{letter-spacing:-1.980000px;}
.lsf{letter-spacing:-0.479400px;}
.ls10{letter-spacing:-0.406200px;}
.lse{letter-spacing:-0.310200px;}
.ls3{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.247800px;}
.lsc{letter-spacing:-0.235200px;}
.ls18{letter-spacing:-0.109200px;}
.ls21{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.085800px;}
.lsa{letter-spacing:-0.082200px;}
.ls22{letter-spacing:-0.036000px;}
.ls5{letter-spacing:-0.011940px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.040320px;}
.ls1e{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.082323px;}
.ls1d{letter-spacing:0.094800px;}
.ls14{letter-spacing:0.105523px;}
.ls7{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.113764px;}
.ls13{letter-spacing:0.124800px;}
.ls6{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.151800px;}
.ls1f{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.238800px;}
.ls4{letter-spacing:0.321120px;}
.ls1{letter-spacing:0.324000px;}
.ls16{letter-spacing:0.349056px;}
.lsd{letter-spacing:3.558000px;}
.ls11{letter-spacing:18.326880px;}
.ls2{letter-spacing:67.491360px;}
.ls8{letter-spacing:97.560000px;}
.ls1a{letter-spacing:106.930080px;}
.ls1b{letter-spacing:107.074080px;}
.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;}
}
.ws7{word-spacing:-120.240000px;}
.ws2{word-spacing:-108.000000px;}
.ws13{word-spacing:-95.760000px;}
.ws2e{word-spacing:-90.112032px;}
.ws26{word-spacing:-81.000000px;}
.ws18{word-spacing:-66.298800px;}
.ws1f{word-spacing:-66.247800px;}
.ws22{word-spacing:-66.060000px;}
.ws21{word-spacing:-65.812200px;}
.ws3{word-spacing:-54.185760px;}
.ws2a{word-spacing:-43.478784px;}
.ws29{word-spacing:-43.339440px;}
.ws28{word-spacing:-41.498784px;}
.wsf{word-spacing:-37.913760px;}
.ws27{word-spacing:-30.154800px;}
.ws6{word-spacing:-30.060000px;}
.ws0{word-spacing:-27.036000px;}
.ws5{word-spacing:-27.024060px;}
.ws2d{word-spacing:-24.588000px;}
.ws2b{word-spacing:-24.552000px;}
.ws4{word-spacing:-24.408000px;}
.ws2c{word-spacing:-24.372000px;}
.wse{word-spacing:-24.354744px;}
.wsd{word-spacing:-23.940000px;}
.wsc{word-spacing:-22.500000px;}
.ws15{word-spacing:-21.674304px;}
.ws12{word-spacing:-21.641760px;}
.ws10{word-spacing:-21.406560px;}
.ws16{word-spacing:-21.194904px;}
.ws8{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.016000px;}
.ws1c{word-spacing:-19.163040px;}
.ws1b{word-spacing:-19.038240px;}
.wsb{word-spacing:-18.000000px;}
.ws19{word-spacing:-16.272000px;}
.ws11{word-spacing:-14.482080px;}
.ws25{word-spacing:-13.734918px;}
.wsa{word-spacing:-13.410720px;}
.ws17{word-spacing:-0.412560px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.351000px;}
.ws1d{word-spacing:0.989280px;}
.ws20{word-spacing:10.447920px;}
.ws1e{word-spacing:123.780750px;}
.ws24{word-spacing:133.555518px;}
.ws23{word-spacing:149.769465px;}
.ws1a{word-spacing:841.915200px;}
._a{margin-left:-25.367040px;}
._8{margin-left:-19.833120px;}
._7{margin-left:-15.259680px;}
._f{margin-left:-14.024448px;}
._9{margin-left:-11.626560px;}
._4{margin-left:-10.152000px;}
._0{margin-left:-9.084096px;}
._1{margin-left:-7.560000px;}
._2{margin-left:-5.616000px;}
._d{margin-left:-4.448736px;}
._c{margin-left:-3.171168px;}
._6{margin-left:-2.142000px;}
._3{margin-left:-1.080000px;}
._5{width:1.152000px;}
._b{width:3.076080px;}
._e{width:4.100160px;}
._11{width:27.446160px;}
._12{width:39.150144px;}
._10{width:180.946675px;}
.fc7{color:rgb(0,32,96);}
.fc6{color:rgb(189,32,35);}
.fc5{color:rgb(20,18,18);}
.fc3{color:rgb(67,77,214);}
.fc4{color:rgb(255,0,0);}
.fc2{color:rgb(56,87,35);}
.fc1{color:rgb(47,85,151);}
.fc0{color:rgb(0,0,0);}
.fs1e{font-size:33.237839px;}
.fse{font-size:48.240000px;}
.fs1a{font-size:48.731368px;}
.fs22{font-size:49.406180px;}
.fs1b{font-size:52.323636px;}
.fs19{font-size:56.160000px;}
.fs20{font-size:56.409869px;}
.fs14{font-size:64.080000px;}
.fs1f{font-size:66.240000px;}
.fs1c{font-size:67.361541px;}
.fs1d{font-size:67.362519px;}
.fsd{font-size:72.000000px;}
.fsf{font-size:72.144000px;}
.fs23{font-size:72.635321px;}
.fs21{font-size:72.664455px;}
.fs17{font-size:77.760000px;}
.fsb{font-size:79.920000px;}
.fsc{font-size:84.240000px;}
.fs18{font-size:84.384000px;}
.fs10{font-size:90.000000px;}
.fs6{font-size:95.760000px;}
.fs15{font-size:95.904000px;}
.fs1{font-size:108.000000px;}
.fs0{font-size:108.144000px;}
.fs5{font-size:120.240000px;}
.fs24{font-size:120.384000px;}
.fs2{font-size:144.000000px;}
.fs4{font-size:144.144000px;}
.fs13{font-size:156.240000px;}
.fsa{font-size:159.840000px;}
.fs12{font-size:167.760000px;}
.fs26{font-size:192.240000px;}
.fs25{font-size:192.384000px;}
.fs9{font-size:239.760000px;}
.fs3{font-size:264.240000px;}
.fs16{font-size:264.384000px;}
.fs7{font-size:300.240000px;}
.fs8{font-size:300.384000px;}
.fs11{font-size:324.000000px;}
.fs27{font-size:324.144000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:9.376633px;}
.y1a{bottom:11.988000px;}
.ya6{bottom:14.580000px;}
.y52{bottom:14.616000px;}
.y75{bottom:20.318782px;}
.y83{bottom:24.203661px;}
.y84{bottom:31.164002px;}
.y51{bottom:43.416000px;}
.y68{bottom:44.288757px;}
.y19{bottom:44.424000px;}
.y85{bottom:45.026436px;}
.y7f{bottom:53.712000px;}
.y69{bottom:56.414536px;}
.y64{bottom:66.240000px;}
.y66{bottom:66.420000px;}
.y6{bottom:71.532000px;}
.y50{bottom:72.216000px;}
.y86{bottom:75.590354px;}
.y18{bottom:77.904000px;}
.y6a{bottom:82.856065px;}
.y54{bottom:84.960000px;}
.y8d{bottom:86.424131px;}
.y7e{bottom:96.912000px;}
.y4f{bottom:101.016000px;}
.y4c{bottom:105.120000px;}
.y74{bottom:105.705326px;}
.y87{bottom:106.156289px;}
.y6b{bottom:109.297594px;}
.ya5{bottom:111.780000px;}
.y53{bottom:113.796000px;}
.y5{bottom:114.732000px;}
.y6c{bottom:135.795252px;}
.y88{bottom:136.720208px;}
.y7d{bottom:140.112000px;}
.y9e{bottom:144.864000px;}
.y13{bottom:145.476000px;}
.y4b{bottom:151.920000px;}
.y49{bottom:154.365000px;}
.y6d{bottom:162.236781px;}
.y89{bottom:167.347664px;}
.y9d{bottom:177.270000px;}
.y33{bottom:179.175000px;}
.y35{bottom:180.465000px;}
.y12{bottom:181.470000px;}
.y7c{bottom:183.345000px;}
.y48{bottom:186.765000px;}
.y6e{bottom:188.678309px;}
.y8a{bottom:197.913600px;}
.y57{bottom:201.390000px;}
.y3a{bottom:203.010000px;}
.y36{bottom:209.055000px;}
.ya{bottom:211.470000px;}
.y34{bottom:212.910000px;}
.y6f{bottom:215.119838px;}
.y5c{bottom:216.645000px;}
.y11{bottom:217.470000px;}
.y47{bottom:219.165000px;}
.y39{bottom:224.640000px;}
.y7b{bottom:226.545000px;}
.y8b{bottom:228.477518px;}
.y70{bottom:241.561367px;}
.y38{bottom:246.240000px;}
.y46{bottom:251.610000px;}
.y10{bottom:253.470000px;}
.y3f{bottom:258.225000px;}
.y8c{bottom:259.044462px;}
.y37{bottom:262.695000px;}
.y78{bottom:264.803528px;}
.y73{bottom:265.196425px;}
.ya0{bottom:268.305000px;}
.y77{bottom:279.736701px;}
.y72{bottom:280.129598px;}
.y32{bottom:283.425000px;}
.y45{bottom:284.010000px;}
.y3e{bottom:285.225000px;}
.y9{bottom:290.700000px;}
.y71{bottom:295.061835px;}
.y76{bottom:297.475398px;}
.y9f{bottom:300.705000px;}
.y15{bottom:301.470000px;}
.y31{bottom:308.625000px;}
.y3d{bottom:312.225000px;}
.y44{bottom:316.410000px;}
.y67{bottom:322.169775px;}
.y82{bottom:322.560000px;}
.y14{bottom:330.270000px;}
.y30{bottom:336.165000px;}
.y43{bottom:348.810000px;}
.ya4{bottom:349.170000px;}
.y98{bottom:355.650000px;}
.y8{bottom:369.900000px;}
.y63{bottom:380.490000px;}
.y62{bottom:380.700000px;}
.y1d{bottom:381.165000px;}
.ya3{bottom:381.570000px;}
.yf{bottom:382.935000px;}
.ya9{bottom:383.325000px;}
.y65{bottom:387.645000px;}
.y97{bottom:388.050000px;}
.y61{bottom:390.495000px;}
.y2f{bottom:391.575000px;}
.y1c{bottom:413.565000px;}
.y41{bottom:413.715000px;}
.ya2{bottom:413.970000px;}
.ya8{bottom:415.725000px;}
.y3c{bottom:420.150000px;}
.y96{bottom:420.450000px;}
.ye{bottom:426.165000px;}
.y2e{bottom:440.280000px;}
.y40{bottom:442.515000px;}
.y3b{bottom:445.350000px;}
.y1b{bottom:445.605000px;}
.ya1{bottom:446.370000px;}
.ya7{bottom:448.170000px;}
.y7{bottom:449.130000px;}
.y95{bottom:452.850000px;}
.y28{bottom:454.890000px;}
.y60{bottom:461.730000px;}
.yd{bottom:469.365000px;}
.y27{bottom:487.290000px;}
.y9c{bottom:496.905000px;}
.y2b{bottom:497.595000px;}
.y7a{bottom:499.890000px;}
.y94{bottom:500.220000px;}
.yc{bottom:512.565000px;}
.y8f{bottom:513.210000px;}
.y26{bottom:519.690000px;}
.y4{bottom:526.290000px;}
.y2d{bottom:527.400000px;}
.y93{bottom:532.620000px;}
.y22{bottom:536.940000px;}
.y59{bottom:541.365000px;}
.y9b{bottom:548.745000px;}
.y25{bottom:552.090000px;}
.yb{bottom:555.765000px;}
.y3{bottom:558.690000px;}
.y21{bottom:569.340000px;}
.y92{bottom:579.960000px;}
.y24{bottom:584.490000px;}
.y2{bottom:591.090000px;}
.y5f{bottom:595.515000px;}
.y29{bottom:599.505000px;}
.y2a{bottom:600.045000px;}
.y9a{bottom:600.585000px;}
.y91{bottom:612.360000px;}
.y20{bottom:616.350000px;}
.y23{bottom:616.935000px;}
.y2c{bottom:620.850000px;}
.y4e{bottom:622.260000px;}
.y1{bottom:623.520000px;}
.y4a{bottom:625.710000px;}
.y58{bottom:626.010000px;}
.y56{bottom:631.290000px;}
.y81{bottom:640.980000px;}
.y99{bottom:652.470000px;}
.y55{bottom:660.090000px;}
.y5e{bottom:666.825000px;}
.y17{bottom:679.710000px;}
.y4d{bottom:685.290000px;}
.y1f{bottom:690.915000px;}
.y79{bottom:695.955000px;}
.y80{bottom:700.305000px;}
.y90{bottom:711.150000px;}
.y42{bottom:729.210000px;}
.y5d{bottom:738.105000px;}
.y5b{bottom:738.645000px;}
.y16{bottom:742.710000px;}
.y1e{bottom:762.915000px;}
.y5a{bottom:767.490000px;}
.h2a{height:35.620536px;}
.h2b{height:38.246330px;}
.h34{height:41.233190px;}
.h2c{height:49.238392px;}
.h2d{height:49.239107px;}
.h13{height:52.628906px;}
.h36{height:53.093298px;}
.h35{height:53.114595px;}
.h15{height:55.863281px;}
.h16{height:55.975008px;}
.h14{height:56.861367px;}
.h17{height:58.819922px;}
.h11{height:62.028281px;}
.h12{height:65.360039px;}
.h2e{height:65.884219px;}
.h19{height:66.269531px;}
.h1a{height:67.565039px;}
.h25{height:68.554688px;}
.h18{height:69.829102px;}
.hd{height:75.991785px;}
.hc{height:76.093108px;}
.h3f{height:78.943359px;}
.h3e{height:79.048617px;}
.h2{height:79.523438px;}
.h1{height:79.629469px;}
.h1c{height:82.371094px;}
.h1d{height:82.480922px;}
.h28{height:83.787539px;}
.h27{height:83.930766px;}
.h38{height:87.420586px;}
.h39{height:87.525281px;}
.h10{height:88.536094px;}
.h26{height:88.935469px;}
.h21{height:91.177734px;}
.h22{height:91.314844px;}
.hb{height:91.706484px;}
.h37{height:92.058750px;}
.h8{height:95.245664px;}
.h3{height:104.695312px;}
.h1e{height:107.419922px;}
.h32{height:107.563148px;}
.h31{height:109.828125px;}
.hf{height:110.583984px;}
.h7{height:119.594180px;}
.h1f{height:127.949766px;}
.h2f{height:143.226562px;}
.h30{height:143.369789px;}
.h5{height:147.445312px;}
.h6{height:147.592758px;}
.h20{height:148.763672px;}
.h3b{height:183.041016px;}
.h3a{height:183.178125px;}
.h4{height:185.926568px;}
.h23{height:192.115898px;}
.h24{height:192.220594px;}
.h9{height:218.289727px;}
.ha{height:218.394422px;}
.h1b{height:235.564453px;}
.h3c{height:243.474609px;}
.h3d{height:243.582820px;}
.he{height:245.496445px;}
.h33{height:297.949839px;}
.h29{height:339.225225px;}
.h0{height:810.000000px;}
.w2{width:340.698335px;}
.w3{width:389.433858px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3d{left:21.995979px;}
.x37{left:25.631979px;}
.x58{left:29.244366px;}
.x5{left:32.759979px;}
.x39{left:40.031979px;}
.x4e{left:45.920499px;}
.x57{left:46.923158px;}
.x19{left:48.203979px;}
.x4d{left:53.219060px;}
.x56{left:54.793963px;}
.x11{left:57.059979px;}
.x23{left:59.183979px;}
.x53{left:62.999979px;}
.x61{left:69.443979px;}
.x16{left:73.511979px;}
.x38{left:77.831979px;}
.xe{left:80.135979px;}
.x4c{left:84.262731px;}
.x5c{left:86.543979px;}
.x55{left:92.394439px;}
.x51{left:97.061873px;}
.x2{left:98.315979px;}
.x3{left:105.335979px;}
.x17{left:108.611979px;}
.xf{left:113.975979px;}
.x5f{left:122.219979px;}
.x50{left:126.084923px;}
.x3a{left:129.671979px;}
.x22{left:136.115979px;}
.x34{left:139.967979px;}
.x5e{left:141.839979px;}
.x8{left:145.259979px;}
.x52{left:152.924979px;}
.x4a{left:156.884979px;}
.x46{left:159.554979px;}
.x7{left:162.899979px;}
.x5b{left:166.319979px;}
.x9{left:170.279979px;}
.x33{left:189.644979px;}
.x6{left:192.239979px;}
.x62{left:200.339979px;}
.x4{left:209.009979px;}
.x4f{left:224.382556px;}
.x2f{left:226.724979px;}
.x1{left:227.729979px;}
.x5a{left:253.439979px;}
.x1a{left:264.629979px;}
.x35{left:282.959979px;}
.x36{left:311.399979px;}
.x3f{left:315.434979px;}
.x40{left:347.609979px;}
.x5d{left:371.339979px;}
.x2a{left:380.669979px;}
.x2b{left:388.769979px;}
.x59{left:401.549979px;}
.x45{left:406.514979px;}
.x47{left:417.164979px;}
.x2c{left:424.079979px;}
.x25{left:442.874979px;}
.x12{left:457.274979px;}
.x63{left:477.029979px;}
.x15{left:503.969979px;}
.x24{left:520.589979px;}
.x14{left:536.009979px;}
.x18{left:546.449979px;}
.x54{left:575.894979px;}
.x20{left:582.089979px;}
.x60{left:586.109979px;}
.x41{left:606.854979px;}
.x28{left:623.489979px;}
.x42{left:624.494979px;}
.x48{left:626.039979px;}
.x1d{left:660.269979px;}
.x29{left:667.409979px;}
.x49{left:705.029979px;}
.x1c{left:708.449979px;}
.x44{left:751.214979px;}
.x43{left:772.304979px;}
.x26{left:775.904979px;}
.x1f{left:842.549979px;}
.x1e{left:844.169979px;}
.x2d{left:848.519979px;}
.x10{left:850.394979px;}
.x3c{left:865.289979px;}
.x2e{left:877.859979px;}
.x3e{left:895.424979px;}
.x3b{left:940.574979px;}
.x65{left:948.059979px;}
.x64{left:963.179979px;}
.x4b{left:978.075036px;}
.x66{left:999.719979px;}
.x1b{left:1038.704979px;}
.x32{left:1043.849979px;}
.x30{left:1073.009979px;}
.x31{left:1106.849979px;}
.xa{left:1184.579979px;}
.xb{left:1189.619979px;}
.xc{left:1193.939979px;}
.x21{left:1217.594979px;}
.x13{left:1233.254979px;}
.x27{left:1247.474979px;}
.xd{left:1273.859979px;}
@media print{
.v1{vertical-align:-52.480000pt;}
.v2{vertical-align:-26.240000pt;}
.v4{vertical-align:-20.480000pt;}
.v6{vertical-align:-17.920000pt;}
.v7{vertical-align:-11.774658pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.200000pt;}
.v5{vertical-align:28.800000pt;}
.v8{vertical-align:38.400000pt;}
.ls20{letter-spacing:-1.760000pt;}
.lsf{letter-spacing:-0.426133pt;}
.ls10{letter-spacing:-0.361067pt;}
.lse{letter-spacing:-0.275733pt;}
.ls3{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.220267pt;}
.lsc{letter-spacing:-0.209067pt;}
.ls18{letter-spacing:-0.097067pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.076267pt;}
.lsa{letter-spacing:-0.073067pt;}
.ls22{letter-spacing:-0.032000pt;}
.ls5{letter-spacing:-0.010613pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.035840pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.073176pt;}
.ls1d{letter-spacing:0.084267pt;}
.ls14{letter-spacing:0.093798pt;}
.ls7{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.101123pt;}
.ls13{letter-spacing:0.110933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.134933pt;}
.ls1f{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.212267pt;}
.ls4{letter-spacing:0.285440pt;}
.ls1{letter-spacing:0.288000pt;}
.ls16{letter-spacing:0.310272pt;}
.lsd{letter-spacing:3.162667pt;}
.ls11{letter-spacing:16.290560pt;}
.ls2{letter-spacing:59.992320pt;}
.ls8{letter-spacing:86.720000pt;}
.ls1a{letter-spacing:95.048960pt;}
.ls1b{letter-spacing:95.176960pt;}
.ws7{word-spacing:-106.880000pt;}
.ws2{word-spacing:-96.000000pt;}
.ws13{word-spacing:-85.120000pt;}
.ws2e{word-spacing:-80.099584pt;}
.ws26{word-spacing:-72.000000pt;}
.ws18{word-spacing:-58.932267pt;}
.ws1f{word-spacing:-58.886933pt;}
.ws22{word-spacing:-58.720000pt;}
.ws21{word-spacing:-58.499733pt;}
.ws3{word-spacing:-48.165120pt;}
.ws2a{word-spacing:-38.647808pt;}
.ws29{word-spacing:-38.523947pt;}
.ws28{word-spacing:-36.887808pt;}
.wsf{word-spacing:-33.701120pt;}
.ws27{word-spacing:-26.804267pt;}
.ws6{word-spacing:-26.720000pt;}
.ws0{word-spacing:-24.032000pt;}
.ws5{word-spacing:-24.021387pt;}
.ws2d{word-spacing:-21.856000pt;}
.ws2b{word-spacing:-21.824000pt;}
.ws4{word-spacing:-21.696000pt;}
.ws2c{word-spacing:-21.664000pt;}
.wse{word-spacing:-21.648661pt;}
.wsd{word-spacing:-21.280000pt;}
.wsc{word-spacing:-20.000000pt;}
.ws15{word-spacing:-19.266048pt;}
.ws12{word-spacing:-19.237120pt;}
.ws10{word-spacing:-19.028053pt;}
.ws16{word-spacing:-18.839915pt;}
.ws8{word-spacing:-18.720000pt;}
.ws9{word-spacing:-17.792000pt;}
.ws1c{word-spacing:-17.033813pt;}
.ws1b{word-spacing:-16.922880pt;}
.wsb{word-spacing:-16.000000pt;}
.ws19{word-spacing:-14.464000pt;}
.ws11{word-spacing:-12.872960pt;}
.ws25{word-spacing:-12.208816pt;}
.wsa{word-spacing:-11.920640pt;}
.ws17{word-spacing:-0.366720pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.312000pt;}
.ws1d{word-spacing:0.879360pt;}
.ws20{word-spacing:9.287040pt;}
.ws1e{word-spacing:110.027333pt;}
.ws24{word-spacing:118.716016pt;}
.ws23{word-spacing:133.128413pt;}
.ws1a{word-spacing:748.369067pt;}
._a{margin-left:-22.548480pt;}
._8{margin-left:-17.629440pt;}
._7{margin-left:-13.564160pt;}
._f{margin-left:-12.466176pt;}
._9{margin-left:-10.334720pt;}
._4{margin-left:-9.024000pt;}
._0{margin-left:-8.074752pt;}
._1{margin-left:-6.720000pt;}
._2{margin-left:-4.992000pt;}
._d{margin-left:-3.954432pt;}
._c{margin-left:-2.818816pt;}
._6{margin-left:-1.904000pt;}
._3{margin-left:-0.960000pt;}
._5{width:1.024000pt;}
._b{width:2.734293pt;}
._e{width:3.644587pt;}
._11{width:24.396587pt;}
._12{width:34.800128pt;}
._10{width:160.841489pt;}
.fs1e{font-size:29.544746pt;}
.fse{font-size:42.880000pt;}
.fs1a{font-size:43.316771pt;}
.fs22{font-size:43.916604pt;}
.fs1b{font-size:46.509899pt;}
.fs19{font-size:49.920000pt;}
.fs20{font-size:50.142106pt;}
.fs14{font-size:56.960000pt;}
.fs1f{font-size:58.880000pt;}
.fs1c{font-size:59.876925pt;}
.fs1d{font-size:59.877795pt;}
.fsd{font-size:64.000000pt;}
.fsf{font-size:64.128000pt;}
.fs23{font-size:64.564730pt;}
.fs21{font-size:64.590627pt;}
.fs17{font-size:69.120000pt;}
.fsb{font-size:71.040000pt;}
.fsc{font-size:74.880000pt;}
.fs18{font-size:75.008000pt;}
.fs10{font-size:80.000000pt;}
.fs6{font-size:85.120000pt;}
.fs15{font-size:85.248000pt;}
.fs1{font-size:96.000000pt;}
.fs0{font-size:96.128000pt;}
.fs5{font-size:106.880000pt;}
.fs24{font-size:107.008000pt;}
.fs2{font-size:128.000000pt;}
.fs4{font-size:128.128000pt;}
.fs13{font-size:138.880000pt;}
.fsa{font-size:142.080000pt;}
.fs12{font-size:149.120000pt;}
.fs26{font-size:170.880000pt;}
.fs25{font-size:171.008000pt;}
.fs9{font-size:213.120000pt;}
.fs3{font-size:234.880000pt;}
.fs16{font-size:235.008000pt;}
.fs7{font-size:266.880000pt;}
.fs8{font-size:267.008000pt;}
.fs11{font-size:288.000000pt;}
.fs27{font-size:288.128000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:8.334785pt;}
.y1a{bottom:10.656000pt;}
.ya6{bottom:12.960000pt;}
.y52{bottom:12.992000pt;}
.y75{bottom:18.061139pt;}
.y83{bottom:21.514365pt;}
.y84{bottom:27.701335pt;}
.y51{bottom:38.592000pt;}
.y68{bottom:39.367784pt;}
.y19{bottom:39.488000pt;}
.y85{bottom:40.023498pt;}
.y7f{bottom:47.744000pt;}
.y69{bottom:50.146255pt;}
.y64{bottom:58.880000pt;}
.y66{bottom:59.040000pt;}
.y6{bottom:63.584000pt;}
.y50{bottom:64.192000pt;}
.y86{bottom:67.191426pt;}
.y18{bottom:69.248000pt;}
.y6a{bottom:73.649836pt;}
.y54{bottom:75.520000pt;}
.y8d{bottom:76.821450pt;}
.y7e{bottom:86.144000pt;}
.y4f{bottom:89.792000pt;}
.y4c{bottom:93.440000pt;}
.y74{bottom:93.960290pt;}
.y87{bottom:94.361146pt;}
.y6b{bottom:97.153417pt;}
.ya5{bottom:99.360000pt;}
.y53{bottom:101.152000pt;}
.y5{bottom:101.984000pt;}
.y6c{bottom:120.706891pt;}
.y88{bottom:121.529074pt;}
.y7d{bottom:124.544000pt;}
.y9e{bottom:128.768000pt;}
.y13{bottom:129.312000pt;}
.y4b{bottom:135.040000pt;}
.y49{bottom:137.213333pt;}
.y6d{bottom:144.210472pt;}
.y89{bottom:148.753479pt;}
.y9d{bottom:157.573333pt;}
.y33{bottom:159.266667pt;}
.y35{bottom:160.413333pt;}
.y12{bottom:161.306667pt;}
.y7c{bottom:162.973333pt;}
.y48{bottom:166.013333pt;}
.y6e{bottom:167.714053pt;}
.y8a{bottom:175.923200pt;}
.y57{bottom:179.013333pt;}
.y3a{bottom:180.453333pt;}
.y36{bottom:185.826667pt;}
.ya{bottom:187.973333pt;}
.y34{bottom:189.253333pt;}
.y6f{bottom:191.217634pt;}
.y5c{bottom:192.573333pt;}
.y11{bottom:193.306667pt;}
.y47{bottom:194.813333pt;}
.y39{bottom:199.680000pt;}
.y7b{bottom:201.373333pt;}
.y8b{bottom:203.091127pt;}
.y70{bottom:214.721215pt;}
.y38{bottom:218.880000pt;}
.y46{bottom:223.653333pt;}
.y10{bottom:225.306667pt;}
.y3f{bottom:229.533333pt;}
.y8c{bottom:230.261744pt;}
.y37{bottom:233.506667pt;}
.y78{bottom:235.380914pt;}
.y73{bottom:235.730156pt;}
.ya0{bottom:238.493333pt;}
.y77{bottom:248.654845pt;}
.y72{bottom:249.004087pt;}
.y32{bottom:251.933333pt;}
.y45{bottom:252.453333pt;}
.y3e{bottom:253.533333pt;}
.y9{bottom:258.400000pt;}
.y71{bottom:262.277186pt;}
.y76{bottom:264.422576pt;}
.y9f{bottom:267.293333pt;}
.y15{bottom:267.973333pt;}
.y31{bottom:274.333333pt;}
.y3d{bottom:277.533333pt;}
.y44{bottom:281.253333pt;}
.y67{bottom:286.373133pt;}
.y82{bottom:286.720000pt;}
.y14{bottom:293.573333pt;}
.y30{bottom:298.813333pt;}
.y43{bottom:310.053333pt;}
.ya4{bottom:310.373333pt;}
.y98{bottom:316.133333pt;}
.y8{bottom:328.800000pt;}
.y63{bottom:338.213333pt;}
.y62{bottom:338.400000pt;}
.y1d{bottom:338.813333pt;}
.ya3{bottom:339.173333pt;}
.yf{bottom:340.386667pt;}
.ya9{bottom:340.733333pt;}
.y65{bottom:344.573333pt;}
.y97{bottom:344.933333pt;}
.y61{bottom:347.106667pt;}
.y2f{bottom:348.066667pt;}
.y1c{bottom:367.613333pt;}
.y41{bottom:367.746667pt;}
.ya2{bottom:367.973333pt;}
.ya8{bottom:369.533333pt;}
.y3c{bottom:373.466667pt;}
.y96{bottom:373.733333pt;}
.ye{bottom:378.813333pt;}
.y2e{bottom:391.360000pt;}
.y40{bottom:393.346667pt;}
.y3b{bottom:395.866667pt;}
.y1b{bottom:396.093333pt;}
.ya1{bottom:396.773333pt;}
.ya7{bottom:398.373333pt;}
.y7{bottom:399.226667pt;}
.y95{bottom:402.533333pt;}
.y28{bottom:404.346667pt;}
.y60{bottom:410.426667pt;}
.yd{bottom:417.213333pt;}
.y27{bottom:433.146667pt;}
.y9c{bottom:441.693333pt;}
.y2b{bottom:442.306667pt;}
.y7a{bottom:444.346667pt;}
.y94{bottom:444.640000pt;}
.yc{bottom:455.613333pt;}
.y8f{bottom:456.186667pt;}
.y26{bottom:461.946667pt;}
.y4{bottom:467.813333pt;}
.y2d{bottom:468.800000pt;}
.y93{bottom:473.440000pt;}
.y22{bottom:477.280000pt;}
.y59{bottom:481.213333pt;}
.y9b{bottom:487.773333pt;}
.y25{bottom:490.746667pt;}
.yb{bottom:494.013333pt;}
.y3{bottom:496.613333pt;}
.y21{bottom:506.080000pt;}
.y92{bottom:515.520000pt;}
.y24{bottom:519.546667pt;}
.y2{bottom:525.413333pt;}
.y5f{bottom:529.346667pt;}
.y29{bottom:532.893333pt;}
.y2a{bottom:533.373333pt;}
.y9a{bottom:533.853333pt;}
.y91{bottom:544.320000pt;}
.y20{bottom:547.866667pt;}
.y23{bottom:548.386667pt;}
.y2c{bottom:551.866667pt;}
.y4e{bottom:553.120000pt;}
.y1{bottom:554.240000pt;}
.y4a{bottom:556.186667pt;}
.y58{bottom:556.453333pt;}
.y56{bottom:561.146667pt;}
.y81{bottom:569.760000pt;}
.y99{bottom:579.973333pt;}
.y55{bottom:586.746667pt;}
.y5e{bottom:592.733333pt;}
.y17{bottom:604.186667pt;}
.y4d{bottom:609.146667pt;}
.y1f{bottom:614.146667pt;}
.y79{bottom:618.626667pt;}
.y80{bottom:622.493333pt;}
.y90{bottom:632.133333pt;}
.y42{bottom:648.186667pt;}
.y5d{bottom:656.093333pt;}
.y5b{bottom:656.573333pt;}
.y16{bottom:660.186667pt;}
.y1e{bottom:678.146667pt;}
.y5a{bottom:682.213333pt;}
.h2a{height:31.662699pt;}
.h2b{height:33.996738pt;}
.h34{height:36.651725pt;}
.h2c{height:43.767459pt;}
.h2d{height:43.768095pt;}
.h13{height:46.781250pt;}
.h36{height:47.194043pt;}
.h35{height:47.212973pt;}
.h15{height:49.656250pt;}
.h16{height:49.755562pt;}
.h14{height:50.543438pt;}
.h17{height:52.284375pt;}
.h11{height:55.136250pt;}
.h12{height:58.097812pt;}
.h2e{height:58.563750pt;}
.h19{height:58.906250pt;}
.h1a{height:60.057813pt;}
.h25{height:60.937500pt;}
.h18{height:62.070312pt;}
.hd{height:67.548254pt;}
.hc{height:67.638318pt;}
.h3f{height:70.171875pt;}
.h3e{height:70.265437pt;}
.h2{height:70.687500pt;}
.h1{height:70.781750pt;}
.h1c{height:73.218750pt;}
.h1d{height:73.316375pt;}
.h28{height:74.477812pt;}
.h27{height:74.605125pt;}
.h38{height:77.707187pt;}
.h39{height:77.800250pt;}
.h10{height:78.698750pt;}
.h26{height:79.053750pt;}
.h21{height:81.046875pt;}
.h22{height:81.168750pt;}
.hb{height:81.516875pt;}
.h37{height:81.830000pt;}
.h8{height:84.662813pt;}
.h3{height:93.062500pt;}
.h1e{height:95.484375pt;}
.h32{height:95.611688pt;}
.h31{height:97.625000pt;}
.hf{height:98.296875pt;}
.h7{height:106.305937pt;}
.h1f{height:113.733125pt;}
.h2f{height:127.312500pt;}
.h30{height:127.439813pt;}
.h5{height:131.062500pt;}
.h6{height:131.193562pt;}
.h20{height:132.234375pt;}
.h3b{height:162.703125pt;}
.h3a{height:162.825000pt;}
.h4{height:165.268061pt;}
.h23{height:170.769687pt;}
.h24{height:170.862750pt;}
.h9{height:194.035312pt;}
.ha{height:194.128375pt;}
.h1b{height:209.390625pt;}
.h3c{height:216.421875pt;}
.h3d{height:216.518062pt;}
.he{height:218.219062pt;}
.h33{height:264.844301pt;}
.h29{height:301.533534pt;}
.h0{height:720.000000pt;}
.w2{width:302.842964pt;}
.w3{width:346.163430pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:19.551981pt;}
.x37{left:22.783981pt;}
.x58{left:25.994992pt;}
.x5{left:29.119981pt;}
.x39{left:35.583981pt;}
.x4e{left:40.818221pt;}
.x57{left:41.709474pt;}
.x19{left:42.847981pt;}
.x4d{left:47.305831pt;}
.x56{left:48.705745pt;}
.x11{left:50.719981pt;}
.x23{left:52.607981pt;}
.x53{left:55.999981pt;}
.x61{left:61.727981pt;}
.x16{left:65.343981pt;}
.x38{left:69.183981pt;}
.xe{left:71.231981pt;}
.x4c{left:74.900206pt;}
.x5c{left:76.927981pt;}
.x55{left:82.128390pt;}
.x51{left:86.277221pt;}
.x2{left:87.391981pt;}
.x3{left:93.631981pt;}
.x17{left:96.543981pt;}
.xf{left:101.311981pt;}
.x5f{left:108.639981pt;}
.x50{left:112.075487pt;}
.x3a{left:115.263981pt;}
.x22{left:120.991981pt;}
.x34{left:124.415981pt;}
.x5e{left:126.079981pt;}
.x8{left:129.119981pt;}
.x52{left:135.933314pt;}
.x4a{left:139.453314pt;}
.x46{left:141.826648pt;}
.x7{left:144.799981pt;}
.x5b{left:147.839981pt;}
.x9{left:151.359981pt;}
.x33{left:168.573314pt;}
.x6{left:170.879981pt;}
.x62{left:178.079981pt;}
.x4{left:185.786648pt;}
.x4f{left:199.451161pt;}
.x2f{left:201.533314pt;}
.x1{left:202.426648pt;}
.x5a{left:225.279981pt;}
.x1a{left:235.226648pt;}
.x35{left:251.519981pt;}
.x36{left:276.799981pt;}
.x3f{left:280.386648pt;}
.x40{left:308.986648pt;}
.x5d{left:330.079981pt;}
.x2a{left:338.373314pt;}
.x2b{left:345.573314pt;}
.x59{left:356.933314pt;}
.x45{left:361.346648pt;}
.x47{left:370.813314pt;}
.x2c{left:376.959981pt;}
.x25{left:393.666648pt;}
.x12{left:406.466648pt;}
.x63{left:424.026648pt;}
.x15{left:447.973314pt;}
.x24{left:462.746648pt;}
.x14{left:476.453314pt;}
.x18{left:485.733314pt;}
.x54{left:511.906648pt;}
.x20{left:517.413314pt;}
.x60{left:520.986648pt;}
.x41{left:539.426648pt;}
.x28{left:554.213314pt;}
.x42{left:555.106648pt;}
.x48{left:556.479981pt;}
.x1d{left:586.906648pt;}
.x29{left:593.253314pt;}
.x49{left:626.693314pt;}
.x1c{left:629.733314pt;}
.x44{left:667.746648pt;}
.x43{left:686.493314pt;}
.x26{left:689.693314pt;}
.x1f{left:748.933314pt;}
.x1e{left:750.373314pt;}
.x2d{left:754.239981pt;}
.x10{left:755.906648pt;}
.x3c{left:769.146648pt;}
.x2e{left:780.319981pt;}
.x3e{left:795.933314pt;}
.x3b{left:836.066648pt;}
.x65{left:842.719981pt;}
.x64{left:856.159981pt;}
.x4b{left:869.400032pt;}
.x66{left:888.639981pt;}
.x1b{left:923.293314pt;}
.x32{left:927.866648pt;}
.x30{left:953.786648pt;}
.x31{left:983.866648pt;}
.xa{left:1052.959981pt;}
.xb{left:1057.439981pt;}
.xc{left:1061.279981pt;}
.x21{left:1082.306648pt;}
.x13{left:1096.226648pt;}
.x27{left:1108.866648pt;}
.xd{left:1132.319981pt;}
}




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