
    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_4bdb28bd4a12b168cb4eb1c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079000;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_3c881e90039fb97e928ea91d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.139000;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_f9f4b95003221bb4c8b1d378.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_36e63ebcedf69658a898b734.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.079000;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_5cf4cb3725996988d48f0e80.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.061000;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_b7f59a2e644b15103408d332.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.062000;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_780a6fcc624ccc52fb83ab1e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_9e728dbbdf829731d989e479.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.139000;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_14501331bcc22e9fec2059d1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005000;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;}
.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;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.992499px;}
.ws3{word-spacing:-20.780549px;}
.ws1{word-spacing:-16.492499px;}
.ws5{word-spacing:-14.996249px;}
.ws7{word-spacing:-10.500723px;}
.ws4{word-spacing:-6.993414px;}
.ws6{word-spacing:-5.899237px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-1.004159px;}
._10{width:1.989159px;}
._2{width:3.933708px;}
._3{width:5.134013px;}
._24{width:6.167406px;}
._16{width:7.245335px;}
._31{width:8.295626px;}
._13{width:9.393993px;}
._2b{width:10.756311px;}
._b{width:12.410870px;}
._7{width:13.432814px;}
._8{width:14.607192px;}
._39{width:17.552193px;}
._d{width:18.613620px;}
._33{width:19.615412px;}
._1a{width:20.898788px;}
._29{width:21.940280px;}
._30{width:23.273296px;}
._1e{width:24.634636px;}
._15{width:25.657501px;}
._17{width:26.849571px;}
._34{width:27.856862px;}
._18{width:28.901048px;}
._26{width:29.922347px;}
._35{width:31.132736px;}
._19{width:32.610945px;}
._6{width:34.684260px;}
._2d{width:36.683701px;}
._1d{width:37.773640px;}
._28{width:39.001329px;}
._0{width:41.008252px;}
._f{width:42.531542px;}
._32{width:44.002699px;}
._20{width:45.045948px;}
._2e{width:46.095181px;}
._2f{width:47.996810px;}
._45{width:49.026132px;}
._9{width:50.585376px;}
._4{width:52.130545px;}
._11{width:54.352297px;}
._c{width:55.647077px;}
._1f{width:56.740864px;}
._23{width:58.064221px;}
._5{width:59.106338px;}
._3d{width:60.233382px;}
._14{width:61.253448px;}
._38{width:62.747238px;}
._1c{width:63.982868px;}
._36{width:65.595261px;}
._3e{width:68.279269px;}
._22{width:70.790583px;}
._42{width:72.276950px;}
._25{width:75.574878px;}
._3b{width:78.778370px;}
._21{width:84.095666px;}
._2a{width:86.540791px;}
._1{width:88.448067px;}
._27{width:92.819017px;}
._3f{width:94.136975px;}
._3c{width:96.594608px;}
._3a{width:97.752687px;}
._e{width:105.585251px;}
._41{width:108.318844px;}
._40{width:111.057262px;}
._43{width:113.703787px;}
._37{width:115.607135px;}
._1b{width:120.501720px;}
._44{width:131.629890px;}
._2c{width:141.925708px;}
._12{width:180.019296px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs5{font-size:18.668471px;}
.fs3{font-size:27.973655px;}
.fs6{font-size:29.739314px;}
.fs8{font-size:42.000523px;}
.fs7{font-size:42.002892px;}
.fs2{font-size:53.999998px;}
.fs4{font-size:59.984997px;}
.fs1{font-size:65.969996px;}
.fs0{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y6c{bottom:5.720482px;}
.y6b{bottom:15.633587px;}
.y6a{bottom:25.546692px;}
.y67{bottom:30.015019px;}
.y69{bottom:35.459796px;}
.y63{bottom:35.977753px;}
.y68{bottom:45.372901px;}
.y62{bottom:54.326772px;}
.y66{bottom:55.199585px;}
.y2d{bottom:68.173086px;}
.y61{bottom:71.458487px;}
.y2c{bottom:90.673085px;}
.y59{bottom:101.928963px;}
.y2b{bottom:113.173084px;}
.y58{bottom:124.428962px;}
.y2a{bottom:135.673083px;}
.y6d{bottom:144.297559px;}
.y5d{bottom:146.928961px;}
.y2f{bottom:158.173082px;}
.y57{bottom:169.428960px;}
.y29{bottom:180.673081px;}
.y6f{bottom:189.930256px;}
.y56{bottom:191.928959px;}
.y28{bottom:203.173080px;}
.y6e{bottom:203.930430px;}
.y55{bottom:214.428958px;}
.y27{bottom:225.673079px;}
.y64{bottom:227.002239px;}
.y54{bottom:236.928957px;}
.y26{bottom:248.173078px;}
.y53{bottom:259.428956px;}
.y25{bottom:270.673077px;}
.y52{bottom:281.928955px;}
.y70{bottom:282.991035px;}
.y24{bottom:293.173076px;}
.y51{bottom:304.428955px;}
.y65{bottom:307.187915px;}
.y23{bottom:315.673075px;}
.y50{bottom:326.928954px;}
.y22{bottom:338.173074px;}
.y4f{bottom:349.428953px;}
.y21{bottom:360.673073px;}
.y60{bottom:371.928952px;}
.y20{bottom:383.173072px;}
.y4e{bottom:394.428951px;}
.y1f{bottom:405.673071px;}
.y5c{bottom:416.928950px;}
.y1e{bottom:428.173071px;}
.y4d{bottom:439.428949px;}
.y1d{bottom:450.673070px;}
.y4c{bottom:461.928948px;}
.y1c{bottom:473.173069px;}
.y4b{bottom:484.428947px;}
.y1b{bottom:495.673068px;}
.y4a{bottom:506.928946px;}
.y1a{bottom:518.173067px;}
.y49{bottom:529.428945px;}
.y19{bottom:540.673066px;}
.y48{bottom:551.928944px;}
.y18{bottom:563.173065px;}
.y47{bottom:574.428943px;}
.y46{bottom:596.928942px;}
.y17{bottom:608.173063px;}
.y45{bottom:619.428941px;}
.y16{bottom:630.673062px;}
.y44{bottom:641.928940px;}
.y15{bottom:653.173061px;}
.y5f{bottom:664.428940px;}
.y14{bottom:675.673060px;}
.y43{bottom:686.928939px;}
.y13{bottom:698.173059px;}
.y5b{bottom:709.428938px;}
.y12{bottom:720.673058px;}
.y42{bottom:731.928937px;}
.y11{bottom:743.173057px;}
.y41{bottom:754.428936px;}
.y10{bottom:765.673056px;}
.y40{bottom:776.928935px;}
.y2e{bottom:788.173056px;}
.y3f{bottom:799.428934px;}
.yf{bottom:810.673055px;}
.y3e{bottom:821.928933px;}
.ye{bottom:833.173054px;}
.y3d{bottom:844.428932px;}
.yd{bottom:855.673053px;}
.y3c{bottom:866.928931px;}
.yc{bottom:878.173052px;}
.y3b{bottom:889.428930px;}
.yb{bottom:900.673051px;}
.y3a{bottom:911.928929px;}
.ya{bottom:923.173050px;}
.y39{bottom:934.428928px;}
.y9{bottom:945.673049px;}
.y38{bottom:956.928927px;}
.y8{bottom:968.173048px;}
.y5e{bottom:979.428926px;}
.y7{bottom:990.673047px;}
.y37{bottom:1001.928925px;}
.y6{bottom:1013.173046px;}
.y5a{bottom:1024.428925px;}
.y5{bottom:1035.673045px;}
.y36{bottom:1046.928924px;}
.y4{bottom:1058.173044px;}
.y35{bottom:1069.428923px;}
.y34{bottom:1091.928922px;}
.y30{bottom:1100.833536px;}
.y33{bottom:1114.428921px;}
.y32{bottom:1136.928920px;}
.y3{bottom:1147.697751px;}
.y31{bottom:1159.428919px;}
.y2{bottom:1176.947749px;}
.hb{height:15.028119px;}
.h9{height:24.924527px;}
.hd{height:26.497729px;}
.hf{height:37.422466px;}
.he{height:37.424576px;}
.h6{height:48.113998px;}
.h8{height:50.005257px;}
.ha{height:53.446632px;}
.h7{height:53.633607px;}
.hc{height:53.639998px;}
.h5{height:54.623157px;}
.h4{height:58.779267px;}
.h3{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:43.535941px;}
.x9{left:49.006937px;}
.xa{left:50.881715px;}
.xe{left:53.371651px;}
.xd{left:56.523403px;}
.x1{left:57.967581px;}
.x4{left:71.573049px;}
.xb{left:119.519995px;}
.xc{left:127.235486px;}
.x2{left:384.112104px;}
.x5{left:469.058798px;}
.x6{left:497.095906px;}
.x8{left:618.425974px;}
.x7{left:620.329942px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-18.659999pt;}
.ws3{word-spacing:-18.471599pt;}
.ws1{word-spacing:-14.659999pt;}
.ws5{word-spacing:-13.329999pt;}
.ws7{word-spacing:-9.333976pt;}
.ws4{word-spacing:-6.216368pt;}
.ws6{word-spacing:-5.243766pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-0.892586pt;}
._10{width:1.768142pt;}
._2{width:3.496629pt;}
._3{width:4.563567pt;}
._24{width:5.482138pt;}
._16{width:6.440297pt;}
._31{width:7.373890pt;}
._13{width:8.350216pt;}
._2b{width:9.561166pt;}
._b{width:11.031885pt;}
._7{width:11.940279pt;}
._8{width:12.984170pt;}
._39{width:15.601950pt;}
._d{width:16.545440pt;}
._33{width:17.435922pt;}
._1a{width:18.576700pt;}
._29{width:19.502471pt;}
._30{width:20.687375pt;}
._1e{width:21.897454pt;}
._15{width:22.806667pt;}
._17{width:23.866285pt;}
._34{width:24.761655pt;}
._18{width:25.689821pt;}
._26{width:26.597642pt;}
._35{width:27.673543pt;}
._19{width:28.987506pt;}
._6{width:30.830453pt;}
._2d{width:32.607734pt;}
._1d{width:33.576568pt;}
._28{width:34.667848pt;}
._0{width:36.451780pt;}
._f{width:37.805815pt;}
._32{width:39.113510pt;}
._20{width:40.040843pt;}
._2e{width:40.973494pt;}
._2f{width:42.663831pt;}
._45{width:43.578784pt;}
._9{width:44.964778pt;}
._4{width:46.338263pt;}
._11{width:48.313153pt;}
._c{width:49.464069pt;}
._1f{width:50.436324pt;}
._23{width:51.612641pt;}
._5{width:52.538967pt;}
._3d{width:53.540784pt;}
._14{width:54.447510pt;}
._38{width:55.775323pt;}
._1c{width:56.873660pt;}
._36{width:58.306898pt;}
._3e{width:60.692683pt;}
._22{width:62.924963pt;}
._42{width:64.246178pt;}
._25{width:67.177669pt;}
._3b{width:70.025218pt;}
._21{width:74.751703pt;}
._2a{width:76.925147pt;}
._1{width:78.620504pt;}
._27{width:82.505793pt;}
._3f{width:83.677311pt;}
._3c{width:85.861873pt;}
._3a{width:86.891277pt;}
._e{width:93.853556pt;}
._41{width:96.283416pt;}
._40{width:98.717567pt;}
._43{width:101.070032pt;}
._37{width:102.761898pt;}
._1b{width:107.112640pt;}
._44{width:117.004347pt;}
._2c{width:126.156185pt;}
._12{width:160.017152pt;}
.fs5{font-size:16.594196pt;}
.fs3{font-size:24.865471pt;}
.fs6{font-size:26.434946pt;}
.fs8{font-size:37.333798pt;}
.fs7{font-size:37.335904pt;}
.fs2{font-size:47.999998pt;}
.fs4{font-size:53.319997pt;}
.fs1{font-size:58.639997pt;}
.fs0{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y6c{bottom:5.084873pt;}
.y6b{bottom:13.896522pt;}
.y6a{bottom:22.708170pt;}
.y67{bottom:26.680017pt;}
.y69{bottom:31.519819pt;}
.y63{bottom:31.980225pt;}
.y68{bottom:40.331468pt;}
.y62{bottom:48.290464pt;}
.y66{bottom:49.066298pt;}
.y2d{bottom:60.598298pt;}
.y61{bottom:63.518656pt;}
.y2c{bottom:80.598297pt;}
.y59{bottom:90.603523pt;}
.y2b{bottom:100.598297pt;}
.y58{bottom:110.603522pt;}
.y2a{bottom:120.598296pt;}
.y6d{bottom:128.264497pt;}
.y5d{bottom:130.603521pt;}
.y2f{bottom:140.598295pt;}
.y57{bottom:150.603520pt;}
.y29{bottom:160.598294pt;}
.y6f{bottom:168.826894pt;}
.y56{bottom:170.603519pt;}
.y28{bottom:180.598293pt;}
.y6e{bottom:181.271494pt;}
.y55{bottom:190.603518pt;}
.y27{bottom:200.598292pt;}
.y64{bottom:201.779768pt;}
.y54{bottom:210.603518pt;}
.y26{bottom:220.598292pt;}
.y53{bottom:230.603517pt;}
.y25{bottom:240.598291pt;}
.y52{bottom:250.603516pt;}
.y70{bottom:251.547587pt;}
.y24{bottom:260.598290pt;}
.y51{bottom:270.603515pt;}
.y65{bottom:273.055925pt;}
.y23{bottom:280.598289pt;}
.y50{bottom:290.603514pt;}
.y22{bottom:300.598288pt;}
.y4f{bottom:310.603513pt;}
.y21{bottom:320.598287pt;}
.y60{bottom:330.603513pt;}
.y20{bottom:340.598287pt;}
.y4e{bottom:350.603512pt;}
.y1f{bottom:360.598286pt;}
.y5c{bottom:370.603511pt;}
.y1e{bottom:380.598285pt;}
.y4d{bottom:390.603510pt;}
.y1d{bottom:400.598284pt;}
.y4c{bottom:410.603509pt;}
.y1c{bottom:420.598283pt;}
.y4b{bottom:430.603508pt;}
.y1b{bottom:440.598282pt;}
.y4a{bottom:450.603508pt;}
.y1a{bottom:460.598282pt;}
.y49{bottom:470.603507pt;}
.y19{bottom:480.598281pt;}
.y48{bottom:490.603506pt;}
.y18{bottom:500.598280pt;}
.y47{bottom:510.603505pt;}
.y46{bottom:530.603504pt;}
.y17{bottom:540.598278pt;}
.y45{bottom:550.603503pt;}
.y16{bottom:560.598277pt;}
.y44{bottom:570.603503pt;}
.y15{bottom:580.598277pt;}
.y5f{bottom:590.603502pt;}
.y14{bottom:600.598276pt;}
.y43{bottom:610.603501pt;}
.y13{bottom:620.598275pt;}
.y5b{bottom:630.603500pt;}
.y12{bottom:640.598274pt;}
.y42{bottom:650.603499pt;}
.y11{bottom:660.598273pt;}
.y41{bottom:670.603498pt;}
.y10{bottom:680.598272pt;}
.y40{bottom:690.603498pt;}
.y2e{bottom:700.598272pt;}
.y3f{bottom:710.603497pt;}
.yf{bottom:720.598271pt;}
.y3e{bottom:730.603496pt;}
.ye{bottom:740.598270pt;}
.y3d{bottom:750.603495pt;}
.yd{bottom:760.598269pt;}
.y3c{bottom:770.603494pt;}
.yc{bottom:780.598268pt;}
.y3b{bottom:790.603493pt;}
.yb{bottom:800.598267pt;}
.y3a{bottom:810.603493pt;}
.ya{bottom:820.598267pt;}
.y39{bottom:830.603492pt;}
.y9{bottom:840.598266pt;}
.y38{bottom:850.603491pt;}
.y8{bottom:860.598265pt;}
.y5e{bottom:870.603490pt;}
.y7{bottom:880.598264pt;}
.y37{bottom:890.603489pt;}
.y6{bottom:900.598263pt;}
.y5a{bottom:910.603488pt;}
.y5{bottom:920.598262pt;}
.y36{bottom:930.603488pt;}
.y4{bottom:940.598262pt;}
.y35{bottom:950.603487pt;}
.y34{bottom:970.603486pt;}
.y30{bottom:978.518698pt;}
.y33{bottom:990.603485pt;}
.y32{bottom:1010.603484pt;}
.y3{bottom:1020.175778pt;}
.y31{bottom:1030.603483pt;}
.y2{bottom:1046.175777pt;}
.hb{height:13.358328pt;}
.h9{height:22.155135pt;}
.hd{height:23.553537pt;}
.hf{height:33.264414pt;}
.he{height:33.266290pt;}
.h6{height:42.767998pt;}
.h8{height:44.449118pt;}
.ha{height:47.508118pt;}
.h7{height:47.674317pt;}
.hc{height:47.679998pt;}
.h5{height:48.553917pt;}
.h4{height:52.248237pt;}
.h3{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:38.698614pt;}
.x9{left:43.561722pt;}
.xa{left:45.228191pt;}
.xe{left:47.441468pt;}
.xd{left:50.243025pt;}
.x1{left:51.526739pt;}
.x4{left:63.620488pt;}
.xb{left:106.239996pt;}
.xc{left:113.098210pt;}
.x2{left:341.432981pt;}
.x5{left:416.941154pt;}
.x6{left:441.863028pt;}
.x8{left:549.711977pt;}
.x7{left:551.404393pt;}
}




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