
    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_36b7ab750cb6103a247f4167.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.995000;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_ce46d6e33835aafad4f57386.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.082000;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_f9f9d1aae606427ef9a2ea9c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_40565e2ced8994e0e8c9ad24.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.103000;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_cfeaa2ff5cabce28a0b82cd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.042000;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_9dfe83091ef576677531133b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.706000;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_0e08b994d19a9a509b3fcf95.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.250000;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_f4867cb4d6f23bdc16fe0c0a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.121000;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_3129a63a566238128781bfb5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.043000;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_6c722ecb0af3596a283e057b.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.021000;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_adb68113377b1b5812f7ee1d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.076000;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_f875bd730a8b988cc4315b8f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.941000;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_8830ed833b0a164626ba36f5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.200000;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_61bb85cf10dcecd71be2a0b9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.200000;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_4adf145c90da5edc6a24db1d.woff2')format("woff");}.fff{font-family:fff;line-height:1.200000;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;}
.m2{transform:matrix(0.248429,-0.027553,0.032418,0.247889,0,0);-ms-transform:matrix(0.248429,-0.027553,0.032418,0.247889,0,0);-webkit-transform:matrix(0.248429,-0.027553,0.032418,0.247889,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.766430px;}
.v3{vertical-align:3.537500px;}
.v1{vertical-align:4.642025px;}
.v4{vertical-align:18.753526px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:76.037206px;}
.ls1{letter-spacing:107.972075px;}
.ls3{letter-spacing:108.000566px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc3{text-shadow:-0.015em 0 rgb(166,166,166),0 0.015em rgb(166,166,166),0.015em 0 rgb(166,166,166),0 -0.015em  rgb(166,166,166);}
.sc2{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 rgb(238,238,238),0 0.015em rgb(238,238,238),0.015em 0 rgb(238,238,238),0 -0.015em  rgb(238,238,238);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(166,166,166);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(238,238,238);text-shadow:none;}
}
.wsd{word-spacing:-79.200004px;}
.ws7{word-spacing:-70.200002px;}
.wse{word-spacing:-69.168004px;}
.wsb{word-spacing:-54.000002px;}
.ws15{word-spacing:-47.544000px;}
.ws0{word-spacing:-40.560003px;}
.ws10{word-spacing:-34.560001px;}
.wsa{word-spacing:-33.960000px;}
.ws14{word-spacing:-31.200000px;}
.wsc{word-spacing:-31.080832px;}
.ws5{word-spacing:-28.080001px;}
.ws17{word-spacing:-24.960002px;}
.ws12{word-spacing:-23.040001px;}
.ws1{word-spacing:-21.840000px;}
.ws3{word-spacing:-19.944001px;}
.ws11{word-spacing:-18.720001px;}
.wsf{word-spacing:-18.518869px;}
.ws8{word-spacing:-18.216001px;}
.ws9{word-spacing:-17.754001px;}
.ws6{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:9.340289px;}
.ws13{word-spacing:82.807321px;}
.ws4{word-spacing:2106.629545px;}
._1{margin-left:-22.302001px;}
._13{margin-left:-13.200000px;}
._6{margin-left:-10.098000px;}
._9{margin-left:-8.046000px;}
._14{margin-left:-6.678000px;}
._4{margin-left:-5.603964px;}
._c{margin-left:-4.494000px;}
._0{margin-left:-3.402000px;}
._2{margin-left:-1.890000px;}
._d{width:1.028319px;}
._11{width:2.244000px;}
._12{width:3.796178px;}
._8{width:22.500676px;}
._7{width:30.375271px;}
._5{width:44.848870px;}
._1b{width:51.472543px;}
._19{width:55.307874px;}
._17{width:59.227211px;}
._18{width:74.674627px;}
._16{width:76.037206px;}
._1a{width:89.541800px;}
._1c{width:108.000125px;}
._15{width:110.967057px;}
._3{width:141.374705px;}
._b{width:549.990018px;}
._e{width:615.157863px;}
._10{width:687.716122px;}
._a{width:1624.212052px;}
._f{width:2151.508668px;}
.fc8{color:rgb(255,192,0);}
.fc7{color:rgb(42,150,134);}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc6{color:rgb(30,30,30);}
.fc3{color:rgb(166,166,166);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(238,238,238);}
.fs1c{font-size:37.500000px;}
.fs19{font-size:42.000000px;}
.fs10{font-size:54.000002px;}
.fsb{font-size:60.000000px;}
.fsf{font-size:66.000004px;}
.fs1e{font-size:69.000001px;}
.fsc{font-size:72.000002px;}
.fs1b{font-size:77.161952px;}
.fs1d{font-size:78.000005px;}
.fs4{font-size:84.000000px;}
.fs17{font-size:84.149998px;}
.fs1a{font-size:96.000006px;}
.fs20{font-size:102.000000px;}
.fsd{font-size:108.000003px;}
.fs15{font-size:109.500007px;}
.fs16{font-size:109.800004px;}
.fs12{font-size:120.000001px;}
.fs8{font-size:144.000005px;}
.fs14{font-size:146.607696px;}
.fs3{font-size:156.000011px;}
.fs6{font-size:162.000005px;}
.fs7{font-size:167.999999px;}
.fsa{font-size:180.000006px;}
.fs1f{font-size:180.034510px;}
.fs13{font-size:186.000000px;}
.fs9{font-size:198.000006px;}
.fse{font-size:222.000001px;}
.fs11{font-size:234.000007px;}
.fs5{font-size:240.000002px;}
.fs18{font-size:264.000014px;}
.fs21{font-size:288.000009px;}
.fs2{font-size:324.000010px;}
.fs0{font-size:378.000012px;}
.fs1{font-size:396.000013px;}
.yb5{bottom:-11.756979px;}
.y0{bottom:0.000000px;}
.y1c{bottom:4.840948px;}
.y39{bottom:11.307626px;}
.y2a{bottom:17.113785px;}
.y74{bottom:22.434596px;}
.y6e{bottom:22.579271px;}
.y8c{bottom:26.638744px;}
.y38{bottom:31.107627px;}
.y68{bottom:34.110735px;}
.y11{bottom:35.016340px;}
.y56{bottom:47.491632px;}
.y9b{bottom:49.595388px;}
.y37{bottom:50.907605px;}
.y73{bottom:51.414597px;}
.y6d{bottom:51.559272px;}
.y6{bottom:57.195916px;}
.y63{bottom:58.675021px;}
.y17{bottom:62.775005px;}
.y8b{bottom:67.197796px;}
.y47{bottom:67.890684px;}
.y36{bottom:70.707617px;}
.y20{bottom:73.352009px;}
.y22{bottom:75.019597px;}
.y72{bottom:80.394587px;}
.y6c{bottom:80.539262px;}
.y80{bottom:83.094339px;}
.y25{bottom:83.116649px;}
.y62{bottom:87.655019px;}
.y4d{bottom:87.690685px;}
.yb4{bottom:92.643115px;}
.y10{bottom:105.160304px;}
.y46{bottom:107.490696px;}
.y8a{bottom:107.756849px;}
.y54{bottom:109.020708px;}
.y71{bottom:109.374584px;}
.y6b{bottom:109.519259px;}
.y35{bottom:110.307629px;}
.y7f{bottom:112.692573px;}
.y61{bottom:116.635014px;}
.yaa{bottom:120.027787px;}
.y45{bottom:127.290697px;}
.y91{bottom:129.561762px;}
.yf{bottom:130.360293px;}
.y7e{bottom:134.683736px;}
.y5{bottom:134.955907px;}
.yb3{bottom:135.843105px;}
.y70{bottom:138.354580px;}
.y6a{bottom:138.499255px;}
.ya5{bottom:146.622810px;}
.y4c{bottom:147.090709px;}
.y29{bottom:149.360183px;}
.y34{bottom:149.907642px;}
.y53{bottom:150.803895px;}
.y60{bottom:152.676461px;}
.y89{bottom:152.959643px;}
.ye{bottom:155.560283px;}
.y7d{bottom:156.674888px;}
.ya9{bottom:165.027788px;}
.y44{bottom:166.890721px;}
.y28{bottom:169.160183px;}
.y90{bottom:170.790579px;}
.y67{bottom:172.465276px;}
.y88{bottom:175.999649px;}
.y69{bottom:178.046822px;}
.y6f{bottom:178.047160px;}
.y7c{bottom:178.666051px;}
.yb2{bottom:179.043106px;}
.yd{bottom:180.760284px;}
.y4b{bottom:186.690699px;}
.y27{bottom:188.960184px;}
.y33{bottom:189.507632px;}
.y52{bottom:192.587083px;}
.ya4{bottom:197.022801px;}
.y5f{bottom:200.649323px;}
.y7b{bottom:200.657214px;}
.yc{bottom:205.960273px;}
.y43{bottom:206.490706px;}
.y32{bottom:209.307639px;}
.ya8{bottom:210.027790px;}
.y4{bottom:212.715910px;}
.y16{bottom:213.974999px;}
.y9a{bottom:215.589554px;}
.yb1{bottom:222.243085px;}
.y7a{bottom:222.648371px;}
.y5e{bottom:223.369821px;}
.y42{bottom:226.290705px;}
.y31{bottom:229.107637px;}
.yb{bottom:231.160269px;}
.y51{bottom:234.370271px;}
.y66{bottom:243.745245px;}
.y1b{bottom:243.924699px;}
.y79{bottom:244.639524px;}
.y4a{bottom:246.090701px;}
.ya3{bottom:247.422802px;}
.y30{bottom:248.907634px;}
.y99{bottom:250.779555px;}
.ya{bottom:256.360275px;}
.y5d{bottom:258.172864px;}
.yb0{bottom:265.443075px;}
.y41{bottom:265.890702px;}
.y78{bottom:266.630678px;}
.y15{bottom:271.304989px;}
.y50{bottom:276.153458px;}
.ya0{bottom:280.188721px;}
.y9{bottom:281.560269px;}
.y40{bottom:285.690702px;}
.y98{bottom:285.969556px;}
.y2f{bottom:288.507635px;}
.y77{bottom:288.621834px;}
.y86{bottom:289.643740px;}
.y3{bottom:290.475901px;}
.y2d{bottom:295.792561px;}
.ya2{bottom:297.822804px;}
.y5c{bottom:300.902554px;}
.y1a{bottom:302.244690px;}
.y3f{bottom:305.490703px;}
.y8{bottom:306.760268px;}
.y2e{bottom:308.307635px;}
.y24{bottom:309.940427px;}
.y1f{bottom:309.944803px;}
.y76{bottom:310.612991px;}
.y26{bottom:310.989682px;}
.y21{bottom:311.105309px;}
.y65{bottom:315.025247px;}
.y14{bottom:316.988996px;}
.yaf{bottom:319.443077px;}
.y97{bottom:321.159557px;}
.y5b{bottom:323.582551px;}
.y85{bottom:330.092732px;}
.yac{bottom:336.027794px;}
.y9f{bottom:337.188715px;}
.ya1{bottom:348.222799px;}
.y13{bottom:351.009003px;}
.y3d{bottom:352.332864px;}
.y96{bottom:356.349558px;}
.y92{bottom:357.130279px;}
.y5a{bottom:358.353195px;}
.y2c{bottom:365.992552px;}
.yae{bottom:367.318008px;}
.y2{bottom:371.691892px;}
.y84{bottom:373.264238px;}
.yab{bottom:381.027773px;}
.y9e{bottom:382.188717px;}
.y49{bottom:384.597634px;}
.y3c{bottom:388.332865px;}
.y95{bottom:391.539556px;}
.y59{bottom:401.082885px;}
.ybc{bottom:401.534993px;}
.y8f{bottom:406.750410px;}
.y83{bottom:416.435754px;}
.y48{bottom:420.597635px;}
.y4f{bottom:420.907674px;}
.y58{bottom:423.762881px;}
.y3b{bottom:424.332866px;}
.y94{bottom:426.729551px;}
.ybb{bottom:430.334994px;}
.y2b{bottom:436.552558px;}
.ya7{bottom:438.027767px;}
.y9d{bottom:439.188711px;}
.y12{bottom:442.762082px;}
.y4e{bottom:456.907675px;}
.y64{bottom:457.585240px;}
.y57{bottom:458.517327px;}
.yba{bottom:459.135007px;}
.y82{bottom:459.607259px;}
.y3a{bottom:460.332867px;}
.y75{bottom:462.769247px;}
.y8e{bottom:463.990400px;}
.y1{bottom:465.867895px;}
.y93{bottom:467.753380px;}
.y19{bottom:476.124686px;}
.ya6{bottom:483.027757px;}
.y55{bottom:485.142105px;}
.yad{bottom:485.253989px;}
.yb9{bottom:487.935019px;}
.y9c{bottom:496.188705px;}
.y87{bottom:504.130950px;}
.y81{bottom:507.370123px;}
.yb8{bottom:516.735008px;}
.y1e{bottom:533.949442px;}
.y8d{bottom:534.190391px;}
.y18{bottom:538.305351px;}
.y23{bottom:541.329350px;}
.yb7{bottom:545.535000px;}
.y3e{bottom:552.735003px;}
.y7{bottom:559.934998px;}
.y1d{bottom:570.386095px;}
.yb6{bottom:574.334999px;}
.h29{height:35.625000px;}
.h25{height:39.900000px;}
.he{height:43.681641px;}
.h17{height:45.468001px;}
.hd{height:52.417970px;}
.h16{height:55.572003px;}
.h15{height:59.466003px;}
.h1f{height:61.154297px;}
.h21{height:61.263500px;}
.h2c{height:65.550001px;}
.h6{height:68.880000px;}
.h28{height:73.303855px;}
.h2b{height:74.100005px;}
.h26{height:76.896005px;}
.h36{height:78.720005px;}
.h32{height:83.640000px;}
.h22{height:86.508003px;}
.h1e{height:87.709505px;}
.h20{height:87.949803px;}
.h10{height:88.560003px;}
.h11{height:90.326433px;}
.h2d{height:91.200006px;}
.h13{height:92.097502px;}
.hf{height:93.202027px;}
.h33{height:98.400001px;}
.h14{height:107.313528px;}
.h1a{height:108.120001px;}
.h1d{height:111.568457px;}
.h1c{height:117.432765px;}
.ha{height:118.080004px;}
.h31{height:118.512004px;}
.h5{height:127.920009px;}
.h8{height:132.840004px;}
.h2a{height:136.800004px;}
.h9{height:137.759999px;}
.hc{height:147.600005px;}
.h34{height:151.367999px;}
.hb{height:162.360005px;}
.h2e{height:172.800006px;}
.h2f{height:172.833129px;}
.h1b{height:178.560000px;}
.h12{height:182.706001px;}
.h24{height:195.888011px;}
.h7{height:197.520001px;}
.h19{height:214.578007px;}
.h27{height:220.080002px;}
.h18{height:230.400002px;}
.h35{height:237.024008px;}
.h23{height:242.088013px;}
.h4{height:265.680009px;}
.h3{height:266.652009px;}
.h1{height:309.960010px;}
.h2{height:324.720010px;}
.h30{height:325.908010px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x13{left:10.374803px;}
.x1b{left:17.751248px;}
.x2{left:19.139173px;}
.x30{left:25.378938px;}
.x29{left:28.851420px;}
.x20{left:33.625984px;}
.x1e{left:34.659451px;}
.x1f{left:37.316932px;}
.x25{left:43.254924px;}
.xf{left:46.178152px;}
.x9{left:53.628441px;}
.x7{left:55.191890px;}
.x10{left:56.338584px;}
.x1a{left:58.423557px;}
.x37{left:61.234848px;}
.x44{left:62.728348px;}
.x46{left:65.353345px;}
.xd{left:71.906103px;}
.xb{left:73.367877px;}
.x47{left:74.533315px;}
.x6{left:77.019707px;}
.x8{left:82.350644px;}
.xa{left:84.585906px;}
.xe{left:87.339569px;}
.x3{left:90.275398px;}
.x5{left:91.491045px;}
.x4{left:92.855282px;}
.x38{left:96.744150px;}
.x18{left:101.591139px;}
.x21{left:105.826779px;}
.x14{left:112.131600px;}
.x42{left:116.530226px;}
.x15{left:121.426961px;}
.x48{left:124.609206px;}
.x41{left:125.684911px;}
.x34{left:130.920534px;}
.x36{left:134.335600px;}
.x28{left:142.172251px;}
.x1d{left:145.601974px;}
.x23{left:161.528855px;}
.x1c{left:169.982570px;}
.x45{left:182.712415px;}
.x43{left:192.329774px;}
.x35{left:205.032348px;}
.x33{left:266.093514px;}
.x1{left:268.048235px;}
.xc{left:277.276183px;}
.x40{left:400.327197px;}
.x26{left:403.582603px;}
.x3e{left:409.544872px;}
.x19{left:437.800244px;}
.x17{left:449.595529px;}
.x3d{left:451.245113px;}
.x3f{left:459.539025px;}
.x16{left:464.337544px;}
.x22{left:514.653564px;}
.x2a{left:536.803510px;}
.x2e{left:543.907817px;}
.x2f{left:552.893980px;}
.x2b{left:558.634180px;}
.x3a{left:693.761681px;}
.x39{left:699.242021px;}
.x3b{left:716.375757px;}
.x3c{left:742.412078px;}
.x12{left:762.762962px;}
.x27{left:782.607175px;}
.x49{left:789.044313px;}
.x11{left:833.281519px;}
.x2c{left:837.137164px;}
.x31{left:838.548773px;}
.x2d{left:851.863527px;}
.x32{left:858.709824px;}
.x24{left:1034.695091px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.570160pt;}
.v3{vertical-align:3.144444pt;}
.v1{vertical-align:4.126244pt;}
.v4{vertical-align:16.669801pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:67.588628pt;}
.ls1{letter-spacing:95.975178pt;}
.ls3{letter-spacing:96.000503pt;}
.wsd{word-spacing:-70.400004pt;}
.ws7{word-spacing:-62.400002pt;}
.wse{word-spacing:-61.482670pt;}
.wsb{word-spacing:-48.000002pt;}
.ws15{word-spacing:-42.261333pt;}
.ws0{word-spacing:-36.053336pt;}
.ws10{word-spacing:-30.720001pt;}
.wsa{word-spacing:-30.186667pt;}
.ws14{word-spacing:-27.733334pt;}
.wsc{word-spacing:-27.627406pt;}
.ws5{word-spacing:-24.960001pt;}
.ws17{word-spacing:-22.186668pt;}
.ws12{word-spacing:-20.480001pt;}
.ws1{word-spacing:-19.413333pt;}
.ws3{word-spacing:-17.728001pt;}
.ws11{word-spacing:-16.640001pt;}
.wsf{word-spacing:-16.461217pt;}
.ws8{word-spacing:-16.192001pt;}
.ws9{word-spacing:-15.781334pt;}
.ws6{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:8.302480pt;}
.ws13{word-spacing:73.606507pt;}
.ws4{word-spacing:1872.559596pt;}
._1{margin-left:-19.824001pt;}
._13{margin-left:-11.733333pt;}
._6{margin-left:-8.976000pt;}
._9{margin-left:-7.152000pt;}
._14{margin-left:-5.936000pt;}
._4{margin-left:-4.981301pt;}
._c{margin-left:-3.994666pt;}
._0{margin-left:-3.024000pt;}
._2{margin-left:-1.680000pt;}
._d{width:0.914061pt;}
._11{width:1.994667pt;}
._12{width:3.374380pt;}
._8{width:20.000601pt;}
._7{width:27.000241pt;}
._5{width:39.865662pt;}
._1b{width:45.753372pt;}
._19{width:49.162555pt;}
._17{width:52.646409pt;}
._18{width:66.377446pt;}
._16{width:67.588628pt;}
._1a{width:79.592711pt;}
._1c{width:96.000111pt;}
._15{width:98.637384pt;}
._3{width:125.666404pt;}
._b{width:488.880016pt;}
._e{width:546.806989pt;}
._10{width:611.303220pt;}
._a{width:1443.744046pt;}
._f{width:1912.452149pt;}
.fs1c{font-size:33.333333pt;}
.fs19{font-size:37.333333pt;}
.fs10{font-size:48.000002pt;}
.fsb{font-size:53.333334pt;}
.fsf{font-size:58.666670pt;}
.fs1e{font-size:61.333334pt;}
.fsc{font-size:64.000002pt;}
.fs1b{font-size:68.588402pt;}
.fs1d{font-size:69.333338pt;}
.fs4{font-size:74.666666pt;}
.fs17{font-size:74.799998pt;}
.fs1a{font-size:85.333339pt;}
.fs20{font-size:90.666667pt;}
.fsd{font-size:96.000003pt;}
.fs15{font-size:97.333339pt;}
.fs16{font-size:97.600003pt;}
.fs12{font-size:106.666667pt;}
.fs8{font-size:128.000004pt;}
.fs14{font-size:130.317952pt;}
.fs3{font-size:138.666676pt;}
.fs6{font-size:144.000005pt;}
.fs7{font-size:149.333333pt;}
.fsa{font-size:160.000005pt;}
.fs1f{font-size:160.030675pt;}
.fs13{font-size:165.333333pt;}
.fs9{font-size:176.000006pt;}
.fse{font-size:197.333334pt;}
.fs11{font-size:208.000007pt;}
.fs5{font-size:213.333335pt;}
.fs18{font-size:234.666680pt;}
.fs21{font-size:256.000008pt;}
.fs2{font-size:288.000009pt;}
.fs0{font-size:336.000011pt;}
.fs1{font-size:352.000011pt;}
.yb5{bottom:-10.450648pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:4.303065pt;}
.y39{bottom:10.051223pt;}
.y2a{bottom:15.212253pt;}
.y74{bottom:19.941863pt;}
.y6e{bottom:20.070463pt;}
.y8c{bottom:23.678883pt;}
.y38{bottom:27.651224pt;}
.y68{bottom:30.320654pt;}
.y11{bottom:31.125636pt;}
.y56{bottom:42.214784pt;}
.y9b{bottom:44.084789pt;}
.y37{bottom:45.251204pt;}
.y73{bottom:45.701864pt;}
.y6d{bottom:45.830464pt;}
.y6{bottom:50.840814pt;}
.y63{bottom:52.155574pt;}
.y17{bottom:55.800005pt;}
.y8b{bottom:59.731375pt;}
.y47{bottom:60.347275pt;}
.y36{bottom:62.851215pt;}
.y20{bottom:65.201786pt;}
.y22{bottom:66.684086pt;}
.y72{bottom:71.461855pt;}
.y6c{bottom:71.590455pt;}
.y80{bottom:73.861635pt;}
.y25{bottom:73.881466pt;}
.y62{bottom:77.915572pt;}
.y4d{bottom:77.947275pt;}
.yb4{bottom:82.349435pt;}
.y10{bottom:93.475826pt;}
.y46{bottom:95.547286pt;}
.y8a{bottom:95.783866pt;}
.y54{bottom:96.907296pt;}
.y71{bottom:97.221853pt;}
.y6b{bottom:97.350453pt;}
.y35{bottom:98.051226pt;}
.y7f{bottom:100.171176pt;}
.y61{bottom:103.675568pt;}
.yaa{bottom:106.691366pt;}
.y45{bottom:113.147286pt;}
.y91{bottom:115.166011pt;}
.yf{bottom:115.875816pt;}
.y7e{bottom:119.718877pt;}
.y5{bottom:119.960807pt;}
.yb3{bottom:120.749427pt;}
.y70{bottom:122.981849pt;}
.y6a{bottom:123.110449pt;}
.ya5{bottom:130.331387pt;}
.y4c{bottom:130.747297pt;}
.y29{bottom:132.764607pt;}
.y34{bottom:133.251237pt;}
.y53{bottom:134.047907pt;}
.y60{bottom:135.712410pt;}
.y89{bottom:135.964127pt;}
.ye{bottom:138.275807pt;}
.y7d{bottom:139.266567pt;}
.ya9{bottom:146.691367pt;}
.y44{bottom:148.347307pt;}
.y28{bottom:150.364608pt;}
.y90{bottom:151.813848pt;}
.y67{bottom:153.302468pt;}
.y88{bottom:156.444133pt;}
.y69{bottom:158.263842pt;}
.y6f{bottom:158.264142pt;}
.y7c{bottom:158.814268pt;}
.yb2{bottom:159.149428pt;}
.yd{bottom:160.675808pt;}
.y4b{bottom:165.947288pt;}
.y27{bottom:167.964608pt;}
.y33{bottom:168.451228pt;}
.y52{bottom:171.188518pt;}
.ya4{bottom:175.131378pt;}
.y5f{bottom:178.354953pt;}
.y7b{bottom:178.361968pt;}
.yc{bottom:183.075799pt;}
.y43{bottom:183.547295pt;}
.y32{bottom:186.051235pt;}
.ya8{bottom:186.691369pt;}
.y4{bottom:189.080809pt;}
.y16{bottom:190.199999pt;}
.y9a{bottom:191.635159pt;}
.yb1{bottom:197.549409pt;}
.y7a{bottom:197.909663pt;}
.y5e{bottom:198.550952pt;}
.y42{bottom:201.147293pt;}
.y31{bottom:203.651233pt;}
.yb{bottom:205.475794pt;}
.y51{bottom:208.329129pt;}
.y66{bottom:216.662440pt;}
.y1b{bottom:216.821955pt;}
.y79{bottom:217.457355pt;}
.y4a{bottom:218.747290pt;}
.ya3{bottom:219.931380pt;}
.y30{bottom:221.251230pt;}
.y99{bottom:222.915160pt;}
.ya{bottom:227.875800pt;}
.y5d{bottom:229.486990pt;}
.yb0{bottom:235.949400pt;}
.y41{bottom:236.347290pt;}
.y78{bottom:237.005047pt;}
.y15{bottom:241.159990pt;}
.y50{bottom:245.469741pt;}
.ya0{bottom:249.056641pt;}
.y9{bottom:250.275795pt;}
.y40{bottom:253.947291pt;}
.y98{bottom:254.195161pt;}
.y2f{bottom:256.451231pt;}
.y77{bottom:256.552741pt;}
.y86{bottom:257.461102pt;}
.y3{bottom:258.200801pt;}
.y2d{bottom:262.926721pt;}
.ya2{bottom:264.731381pt;}
.y5c{bottom:267.468937pt;}
.y1a{bottom:268.661946pt;}
.y3f{bottom:271.547291pt;}
.y8{bottom:272.675793pt;}
.y2e{bottom:274.051231pt;}
.y24{bottom:275.502602pt;}
.y1f{bottom:275.506492pt;}
.y76{bottom:276.100437pt;}
.y26{bottom:276.435273pt;}
.y21{bottom:276.538053pt;}
.y65{bottom:280.022442pt;}
.y14{bottom:281.767997pt;}
.yaf{bottom:283.949402pt;}
.y97{bottom:285.475162pt;}
.y5b{bottom:287.628934pt;}
.y85{bottom:293.415762pt;}
.yac{bottom:298.691372pt;}
.y9f{bottom:299.723302pt;}
.ya1{bottom:309.531377pt;}
.y13{bottom:312.008003pt;}
.y3d{bottom:313.184768pt;}
.y96{bottom:316.755163pt;}
.y92{bottom:317.449137pt;}
.y5a{bottom:318.536173pt;}
.y2c{bottom:325.326713pt;}
.yae{bottom:326.504896pt;}
.y2{bottom:330.392793pt;}
.y84{bottom:331.790433pt;}
.yab{bottom:338.691354pt;}
.y9e{bottom:339.723304pt;}
.y49{bottom:341.864564pt;}
.y3c{bottom:345.184769pt;}
.y95{bottom:348.035161pt;}
.y59{bottom:356.518120pt;}
.ybc{bottom:356.919994pt;}
.y8f{bottom:361.555920pt;}
.y83{bottom:370.165115pt;}
.y48{bottom:373.864565pt;}
.y4f{bottom:374.140155pt;}
.y58{bottom:376.678117pt;}
.y3b{bottom:377.184770pt;}
.y94{bottom:379.315157pt;}
.ybb{bottom:382.519995pt;}
.y2b{bottom:388.046718pt;}
.ya7{bottom:389.358015pt;}
.y9d{bottom:390.389965pt;}
.y12{bottom:393.566295pt;}
.y4e{bottom:406.140156pt;}
.y64{bottom:406.742436pt;}
.y57{bottom:407.570958pt;}
.yba{bottom:408.120006pt;}
.y82{bottom:408.539786pt;}
.y3a{bottom:409.184771pt;}
.y75{bottom:411.350442pt;}
.y8e{bottom:412.435912pt;}
.y1{bottom:414.104796pt;}
.y93{bottom:415.780782pt;}
.y19{bottom:423.221943pt;}
.ya6{bottom:429.358006pt;}
.y55{bottom:431.237427pt;}
.yad{bottom:431.336880pt;}
.yb9{bottom:433.720017pt;}
.y9c{bottom:441.056627pt;}
.y87{bottom:448.116400pt;}
.y81{bottom:450.995665pt;}
.yb8{bottom:459.320007pt;}
.y1e{bottom:474.621726pt;}
.y8d{bottom:474.835904pt;}
.y18{bottom:478.493645pt;}
.y23{bottom:481.181644pt;}
.yb7{bottom:484.920000pt;}
.y3e{bottom:491.320002pt;}
.y7{bottom:497.719999pt;}
.y1d{bottom:507.009862pt;}
.yb6{bottom:510.519999pt;}
.h29{height:31.666666pt;}
.h25{height:35.466667pt;}
.he{height:38.828125pt;}
.h17{height:40.416001pt;}
.hd{height:46.593751pt;}
.h16{height:49.397336pt;}
.h15{height:52.858670pt;}
.h1f{height:54.359375pt;}
.h21{height:54.456444pt;}
.h2c{height:58.266667pt;}
.h6{height:61.226666pt;}
.h28{height:65.158982pt;}
.h2b{height:65.866671pt;}
.h26{height:68.352004pt;}
.h36{height:69.973338pt;}
.h32{height:74.346667pt;}
.h22{height:76.896002pt;}
.h1e{height:77.964005pt;}
.h20{height:78.177603pt;}
.h10{height:78.720003pt;}
.h11{height:80.290163pt;}
.h2d{height:81.066672pt;}
.h13{height:81.864447pt;}
.hf{height:82.846247pt;}
.h33{height:87.466667pt;}
.h14{height:95.389803pt;}
.h1a{height:96.106667pt;}
.h1d{height:99.171962pt;}
.h1c{height:104.384680pt;}
.ha{height:104.960003pt;}
.h31{height:105.344003pt;}
.h5{height:113.706675pt;}
.h8{height:118.080004pt;}
.h2a{height:121.600004pt;}
.h9{height:122.453333pt;}
.hc{height:131.200004pt;}
.h34{height:134.549333pt;}
.hb{height:144.320005pt;}
.h2e{height:153.600005pt;}
.h2f{height:153.629448pt;}
.h1b{height:158.720000pt;}
.h12{height:162.405334pt;}
.h24{height:174.122676pt;}
.h7{height:175.573335pt;}
.h19{height:190.736006pt;}
.h27{height:195.626668pt;}
.h18{height:204.800001pt;}
.h35{height:210.688007pt;}
.h23{height:215.189345pt;}
.h4{height:236.160008pt;}
.h3{height:237.024008pt;}
.h1{height:275.520009pt;}
.h2{height:288.640009pt;}
.h30{height:289.696009pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x13{left:9.222047pt;}
.x1b{left:15.778887pt;}
.x2{left:17.012599pt;}
.x30{left:22.559056pt;}
.x29{left:25.645707pt;}
.x20{left:29.889764pt;}
.x1e{left:30.808401pt;}
.x1f{left:33.170606pt;}
.x25{left:38.448821pt;}
.xf{left:41.047246pt;}
.x9{left:47.669726pt;}
.x7{left:49.059458pt;}
.x10{left:50.078742pt;}
.x1a{left:51.932051pt;}
.x37{left:54.430976pt;}
.x44{left:55.758532pt;}
.x46{left:58.091862pt;}
.xd{left:63.916536pt;}
.xb{left:65.215891pt;}
.x47{left:66.251835pt;}
.x6{left:68.461962pt;}
.x8{left:73.200572pt;}
.xa{left:75.187472pt;}
.xe{left:77.635172pt;}
.x3{left:80.244799pt;}
.x5{left:81.325374pt;}
.x4{left:82.538029pt;}
.x38{left:85.994800pt;}
.x18{left:90.303235pt;}
.x21{left:94.068248pt;}
.x14{left:99.672533pt;}
.x42{left:103.582423pt;}
.x15{left:107.935076pt;}
.x48{left:110.763739pt;}
.x41{left:111.719921pt;}
.x34{left:116.373808pt;}
.x36{left:119.409422pt;}
.x28{left:126.375334pt;}
.x1d{left:129.423977pt;}
.x23{left:143.581205pt;}
.x1c{left:151.095618pt;}
.x45{left:162.411035pt;}
.x43{left:170.959799pt;}
.x35{left:182.250976pt;}
.x33{left:236.527568pt;}
.x1{left:238.265098pt;}
.xc{left:246.467718pt;}
.x40{left:355.846397pt;}
.x26{left:358.740091pt;}
.x3e{left:364.039887pt;}
.x19{left:389.155772pt;}
.x17{left:399.640470pt;}
.x3d{left:401.106767pt;}
.x3f{left:408.479133pt;}
.x16{left:412.744483pt;}
.x22{left:457.469835pt;}
.x2a{left:477.158675pt;}
.x2e{left:483.473615pt;}
.x2f{left:491.461316pt;}
.x2b{left:496.563716pt;}
.x3a{left:616.677050pt;}
.x39{left:621.548463pt;}
.x3b{left:636.778450pt;}
.x3c{left:659.921847pt;}
.x12{left:678.011522pt;}
.x27{left:695.650822pt;}
.x49{left:701.372722pt;}
.x11{left:740.694684pt;}
.x2c{left:744.121924pt;}
.x31{left:745.376687pt;}
.x2d{left:757.212024pt;}
.x32{left:763.297621pt;}
.x24{left:919.728969pt;}
}




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