
    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_7d9d8559fad48098145d77dd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919434;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_13efcd3cf7c199a43e376251.woff2')format("woff");}.ff2{font-family:ff2;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.440031px;}
.v3{vertical-align:5.039978px;}
.v1{vertical-align:28.800041px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:147.174062px;}
.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:-12.665925px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-3.191813px;}
._6{margin-left:-2.135198px;}
._0{margin-left:-1.056511px;}
._9{width:1.200492px;}
._13{width:2.472645px;}
._33{width:3.816146px;}
._15{width:5.268525px;}
._14{width:6.434290px;}
._2e{width:35.803799px;}
._35{width:51.515835px;}
._16{width:55.023011px;}
._34{width:61.083952px;}
._2d{width:62.628843px;}
._18{width:64.655391px;}
._3{width:70.942814px;}
._2f{width:74.061182px;}
._8{width:77.472120px;}
._1{width:79.527155px;}
._4{width:85.498045px;}
._38{width:97.983596px;}
._19{width:106.336180px;}
._5{width:110.677613px;}
._21{width:117.539784px;}
._36{width:120.588116px;}
._24{width:147.174062px;}
._3b{width:186.442416px;}
._1c{width:188.334837px;}
._29{width:192.522060px;}
._12{width:198.601704px;}
._30{width:202.654800px;}
._31{width:204.174711px;}
._10{width:207.214533px;}
._32{width:210.760992px;}
._11{width:211.774266px;}
._27{width:215.320725px;}
._28{width:216.840636px;}
._39{width:224.440191px;}
._d{width:226.973376px;}
._e{width:227.986650px;}
._1d{width:229.253846px;}
._b{width:235.586205px;}
._3a{width:246.225582px;}
._c{width:250.278678px;}
._1b{width:266.694152px;}
._a{width:444.677535px;}
._f{width:569.938680px;}
._2c{width:582.776427px;}
._2b{width:617.092376px;}
._26{width:759.058272px;}
._20{width:840.946248px;}
._1f{width:841.967532px;}
._2a{width:911.984080px;}
._1e{width:944.764179px;}
._25{width:964.515012px;}
._1a{width:1112.234820px;}
._2{width:1140.714162px;}
._17{width:1151.442816px;}
._37{width:1152.743052px;}
._23{width:1155.973134px;}
._22{width:1315.736289px;}
.fc1{color:rgb(30,30,35);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:45.259650px;}
.fs3{font-size:50.663700px;}
.fs1{font-size:56.068200px;}
.fs0{font-size:62.147700px;}
.y0{bottom:0.000000px;}
.y17{bottom:2.699993px;}
.y1f{bottom:3.059967px;}
.y39{bottom:3.060001px;}
.y3f{bottom:3.060002px;}
.y24{bottom:3.060035px;}
.y69{bottom:3.420009px;}
.y35{bottom:174.779983px;}
.y34{bottom:205.740006px;}
.y33{bottom:223.379998px;}
.y32{bottom:239.039977px;}
.y30{bottom:251.820030px;}
.y2f{bottom:254.879998px;}
.y31{bottom:255.059967px;}
.y2e{bottom:286.559967px;}
.y64{bottom:293.220017px;}
.y63{bottom:307.440033px;}
.y2c{bottom:313.379998px;}
.y65{bottom:314.639992px;}
.y2b{bottom:329.220017px;}
.y61{bottom:338.580025px;}
.y2a{bottom:341.820030px;}
.y29{bottom:344.879998px;}
.y2d{bottom:345.240006px;}
.y60{bottom:353.159981px;}
.y5f{bottom:367.740006px;}
.y62{bottom:374.759994px;}
.y28{bottom:376.379998px;}
.y27{bottom:396.539977px;}
.y5d{bottom:403.740006px;}
.y26{bottom:412.200027px;}
.y5c{bottom:418.320030px;}
.y5e{bottom:425.340019px;}
.y25{bottom:427.860008px;}
.y23{bottom:440.639992px;}
.y22{bottom:443.700027px;}
.y5a{bottom:453.600013px;}
.y59{bottom:468.179970px;}
.y21{bottom:474.840019px;}
.y5b{bottom:475.379998px;}
.y57{bottom:503.279983px;}
.y20{bottom:505.980011px;}
.y56{bottom:517.679970px;}
.y58{bottom:524.700027px;}
.y1c{bottom:531.000000px;}
.y7a{bottom:536.220017px;}
.y1e{bottom:543.600013px;}
.y1b{bottom:545.399986px;}
.y1d{bottom:546.659981px;}
.y54{bottom:552.419975px;}
.y53{bottom:567.179970px;}
.y79{bottom:573.120002px;}
.y55{bottom:574.379998px;}
.y1a{bottom:578.519989px;}
.y78{bottom:587.879998px;}
.y19{bottom:595.440033px;}
.y51{bottom:603.539977px;}
.y50{bottom:617.939999px;}
.y52{bottom:625.139992px;}
.y16{bottom:625.680004px;}
.y77{bottom:629.100013px;}
.y15{bottom:642.959988px;}
.y4e{bottom:654.300007px;}
.y14{bottom:657.720017px;}
.y18{bottom:664.740006px;}
.y4f{bottom:665.819995px;}
.y4d{bottom:668.879998px;}
.y76{bottom:670.500000px;}
.y12{bottom:683.639992px;}
.y75{bottom:685.079990px;}
.y11{bottom:698.399986px;}
.y4c{bottom:701.459988px;}
.y13{bottom:705.420010px;}
.y4b{bottom:726.300007px;}
.y74{bottom:726.660015px;}
.yf{bottom:728.639992px;}
.y73{bottom:741.060001px;}
.ye{bottom:743.220017px;}
.y4a{bottom:749.879998px;}
.y10{bottom:750.240006px;}
.y49{bottom:766.079990px;}
.y48{bottom:782.279983px;}
.y72{bottom:782.459988px;}
.yc{bottom:787.860008px;}
.y71{bottom:797.220017px;}
.yb{bottom:802.439999px;}
.yd{bottom:809.459988px;}
.y47{bottom:818.100013px;}
.y9{bottom:827.459988px;}
.y46{bottom:830.879998px;}
.y45{bottom:833.939999px;}
.y70{bottom:838.439999px;}
.y8{bottom:841.680004px;}
.ya{bottom:848.699993px;}
.y6f{bottom:853.019989px;}
.y44{bottom:865.079990px;}
.y7{bottom:872.639992px;}
.y43{bottom:889.019989px;}
.y6e{bottom:894.420010px;}
.y6{bottom:902.159998px;}
.y42{bottom:904.680004px;}
.y6d{bottom:909.000000px;}
.y41{bottom:920.520006px;}
.y3e{bottom:933.120002px;}
.y3d{bottom:936.180004px;}
.y40{bottom:936.360008px;}
.y5{bottom:937.259994px;}
.y6c{bottom:947.340002px;}
.y6b{bottom:950.400003px;}
.y4{bottom:952.020006px;}
.y6a{bottom:964.979994px;}
.y3c{bottom:986.039995px;}
.y3{bottom:987.840002px;}
.y68{bottom:1003.139992px;}
.y67{bottom:1006.560001px;}
.y3b{bottom:1012.680004px;}
.y2{bottom:1013.039996px;}
.y3a{bottom:1028.340002px;}
.y66{bottom:1031.400003px;}
.y1{bottom:1038.240006px;}
.y38{bottom:1040.759994px;}
.y37{bottom:1043.819996px;}
.y36{bottom:1075.319996px;}
.h8{height:14.219982px;}
.hb{height:14.579956px;}
.hf{height:14.579990px;}
.he{height:14.579991px;}
.hd{height:14.580008px;}
.hc{height:14.580025px;}
.h11{height:16.740006px;}
.h4{height:35.375533px;}
.h12{height:35.746605px;}
.h10{height:36.815294px;}
.h7{height:36.815564px;}
.h9{height:39.149183px;}
.h3{height:39.559838px;}
.ha{height:40.415510px;}
.h2{height:43.394146px;}
.h1{height:43.849329px;}
.h6{height:63.455623px;}
.h5{height:64.175573px;}
.h0{height:1188.000000px;}
.w4{width:3.240006px;}
.w5{width:3.599945px;}
.w3{width:3.960021px;}
.w7{width:6.300007px;}
.w2{width:6.480011px;}
.w6{width:7.920009px;}
.w1{width:35.460005px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:129.060001px;}
.x10{left:134.640000px;}
.x1c{left:136.799998px;}
.xa{left:142.200002px;}
.x15{left:143.640000px;}
.x3{left:150.659998px;}
.x2{left:155.520006px;}
.x16{left:162.000000px;}
.x11{left:163.259994px;}
.x12{left:174.599997px;}
.x22{left:185.580008px;}
.x7{left:188.639992px;}
.x1b{left:197.099997px;}
.x9{left:223.919992px;}
.x1d{left:290.879998px;}
.x13{left:499.319996px;}
.x14{left:507.959988px;}
.xb{left:510.480011px;}
.x8{left:511.740006px;}
.x4{left:520.740006px;}
.x1e{left:521.819996px;}
.x17{left:528.660015px;}
.x1f{left:567.000000px;}
.xc{left:571.860008px;}
.x20{left:581.039978px;}
.x5{left:583.559967px;}
.xd{left:674.639992px;}
.x18{left:685.440033px;}
.xe{left:686.519989px;}
.x19{left:706.320030px;}
.xf{left:747.179970px;}
.x21{left:755.820030px;}
.x1a{left:757.259994px;}
.x6{left:772.740006px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.280028pt;}
.v3{vertical-align:4.479980pt;}
.v1{vertical-align:25.600036pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:130.821388pt;}
.ws0{word-spacing:-11.258600pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-2.837167pt;}
._6{margin-left:-1.897954pt;}
._0{margin-left:-0.939121pt;}
._9{width:1.067104pt;}
._13{width:2.197907pt;}
._33{width:3.392130pt;}
._15{width:4.683133pt;}
._14{width:5.719369pt;}
._2e{width:31.825599pt;}
._35{width:45.791854pt;}
._16{width:48.909343pt;}
._34{width:54.296846pt;}
._2d{width:55.670083pt;}
._18{width:57.471459pt;}
._3{width:63.060279pt;}
._2f{width:65.832162pt;}
._8{width:68.864106pt;}
._1{width:70.690805pt;}
._4{width:75.998262pt;}
._38{width:87.096530pt;}
._19{width:94.521049pt;}
._5{width:98.380100pt;}
._21{width:104.479808pt;}
._36{width:107.189436pt;}
._24{width:130.821388pt;}
._3b{width:165.726592pt;}
._1c{width:167.408744pt;}
._29{width:171.130720pt;}
._12{width:176.534848pt;}
._30{width:180.137600pt;}
._31{width:181.488632pt;}
._10{width:184.190696pt;}
._32{width:187.343104pt;}
._11{width:188.243792pt;}
._27{width:191.396200pt;}
._28{width:192.747232pt;}
._39{width:199.502392pt;}
._d{width:201.754112pt;}
._e{width:202.654800pt;}
._1d{width:203.781196pt;}
._b{width:209.409960pt;}
._3a{width:218.867184pt;}
._c{width:222.469936pt;}
._1b{width:237.061468pt;}
._a{width:395.268920pt;}
._f{width:506.612160pt;}
._2c{width:518.023491pt;}
._2b{width:548.526556pt;}
._26{width:674.718464pt;}
._20{width:747.507776pt;}
._1f{width:748.415584pt;}
._2a{width:810.652516pt;}
._1e{width:839.790381pt;}
._25{width:857.346677pt;}
._1a{width:988.653174pt;}
._2{width:1013.968144pt;}
._17{width:1023.504725pt;}
._37{width:1024.660491pt;}
._23{width:1027.531675pt;}
._22{width:1169.543368pt;}
.fs2{font-size:40.230800pt;}
.fs3{font-size:45.034400pt;}
.fs1{font-size:49.838400pt;}
.fs0{font-size:55.242400pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:2.399994pt;}
.y1f{bottom:2.719971pt;}
.y39{bottom:2.720001pt;}
.y3f{bottom:2.720002pt;}
.y24{bottom:2.720031pt;}
.y69{bottom:3.040008pt;}
.y35{bottom:155.359985pt;}
.y34{bottom:182.880005pt;}
.y33{bottom:198.559998pt;}
.y32{bottom:212.479980pt;}
.y30{bottom:223.840027pt;}
.y2f{bottom:226.559998pt;}
.y31{bottom:226.719971pt;}
.y2e{bottom:254.719971pt;}
.y64{bottom:260.640015pt;}
.y63{bottom:273.280029pt;}
.y2c{bottom:278.559998pt;}
.y65{bottom:279.679993pt;}
.y2b{bottom:292.640015pt;}
.y61{bottom:300.960022pt;}
.y2a{bottom:303.840027pt;}
.y29{bottom:306.559998pt;}
.y2d{bottom:306.880005pt;}
.y60{bottom:313.919983pt;}
.y5f{bottom:326.880005pt;}
.y62{bottom:333.119995pt;}
.y28{bottom:334.559998pt;}
.y27{bottom:352.479980pt;}
.y5d{bottom:358.880005pt;}
.y26{bottom:366.400024pt;}
.y5c{bottom:371.840027pt;}
.y5e{bottom:378.080017pt;}
.y25{bottom:380.320007pt;}
.y23{bottom:391.679993pt;}
.y22{bottom:394.400024pt;}
.y5a{bottom:403.200012pt;}
.y59{bottom:416.159973pt;}
.y21{bottom:422.080017pt;}
.y5b{bottom:422.559998pt;}
.y57{bottom:447.359985pt;}
.y20{bottom:449.760010pt;}
.y56{bottom:460.159973pt;}
.y58{bottom:466.400024pt;}
.y1c{bottom:472.000000pt;}
.y7a{bottom:476.640015pt;}
.y1e{bottom:483.200012pt;}
.y1b{bottom:484.799988pt;}
.y1d{bottom:485.919983pt;}
.y54{bottom:491.039978pt;}
.y53{bottom:504.159973pt;}
.y79{bottom:509.440002pt;}
.y55{bottom:510.559998pt;}
.y1a{bottom:514.239990pt;}
.y78{bottom:522.559998pt;}
.y19{bottom:529.280029pt;}
.y51{bottom:536.479980pt;}
.y50{bottom:549.279999pt;}
.y52{bottom:555.679993pt;}
.y16{bottom:556.160004pt;}
.y77{bottom:559.200012pt;}
.y15{bottom:571.519989pt;}
.y4e{bottom:581.600006pt;}
.y14{bottom:584.640015pt;}
.y18{bottom:590.880005pt;}
.y4f{bottom:591.839996pt;}
.y4d{bottom:594.559998pt;}
.y76{bottom:596.000000pt;}
.y12{bottom:607.679993pt;}
.y75{bottom:608.959991pt;}
.y11{bottom:620.799988pt;}
.y4c{bottom:623.519989pt;}
.y13{bottom:627.040009pt;}
.y4b{bottom:645.600006pt;}
.y74{bottom:645.920013pt;}
.yf{bottom:647.679993pt;}
.y73{bottom:658.720001pt;}
.ye{bottom:660.640015pt;}
.y4a{bottom:666.559998pt;}
.y10{bottom:666.880005pt;}
.y49{bottom:680.959991pt;}
.y48{bottom:695.359985pt;}
.y72{bottom:695.519989pt;}
.yc{bottom:700.320007pt;}
.y71{bottom:708.640015pt;}
.yb{bottom:713.279999pt;}
.yd{bottom:719.519989pt;}
.y47{bottom:727.200012pt;}
.y9{bottom:735.519989pt;}
.y46{bottom:738.559998pt;}
.y45{bottom:741.279999pt;}
.y70{bottom:745.279999pt;}
.y8{bottom:748.160004pt;}
.ya{bottom:754.399994pt;}
.y6f{bottom:758.239990pt;}
.y44{bottom:768.959991pt;}
.y7{bottom:775.679993pt;}
.y43{bottom:790.239990pt;}
.y6e{bottom:795.040009pt;}
.y6{bottom:801.919998pt;}
.y42{bottom:804.160004pt;}
.y6d{bottom:808.000000pt;}
.y41{bottom:818.240005pt;}
.y3e{bottom:829.440002pt;}
.y3d{bottom:832.160004pt;}
.y40{bottom:832.320007pt;}
.y5{bottom:833.119995pt;}
.y6c{bottom:842.080002pt;}
.y6b{bottom:844.800003pt;}
.y4{bottom:846.240005pt;}
.y6a{bottom:857.759995pt;}
.y3c{bottom:876.479996pt;}
.y3{bottom:878.080002pt;}
.y68{bottom:891.679993pt;}
.y67{bottom:894.720001pt;}
.y3b{bottom:900.160004pt;}
.y2{bottom:900.479996pt;}
.y3a{bottom:914.080002pt;}
.y66{bottom:916.800003pt;}
.y1{bottom:922.880005pt;}
.y38{bottom:925.119995pt;}
.y37{bottom:927.839996pt;}
.y36{bottom:955.839996pt;}
.h8{height:12.639984pt;}
.hb{height:12.959961pt;}
.hf{height:12.959991pt;}
.he{height:12.959992pt;}
.hd{height:12.960007pt;}
.hc{height:12.960022pt;}
.h11{height:14.880005pt;}
.h4{height:31.444918pt;}
.h12{height:31.774760pt;}
.h10{height:32.724706pt;}
.h7{height:32.724946pt;}
.h9{height:34.799273pt;}
.h3{height:35.164301pt;}
.ha{height:35.924898pt;}
.h2{height:38.572574pt;}
.h1{height:38.977182pt;}
.h6{height:56.404998pt;}
.h5{height:57.044954pt;}
.h0{height:1056.000000pt;}
.w4{width:2.880005pt;}
.w5{width:3.199951pt;}
.w3{width:3.520019pt;}
.w7{width:5.600006pt;}
.w2{width:5.760010pt;}
.w6{width:7.040008pt;}
.w1{width:31.520004pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:114.720001pt;}
.x10{left:119.680000pt;}
.x1c{left:121.599998pt;}
.xa{left:126.400002pt;}
.x15{left:127.680000pt;}
.x3{left:133.919998pt;}
.x2{left:138.240005pt;}
.x16{left:144.000000pt;}
.x11{left:145.119995pt;}
.x12{left:155.199997pt;}
.x22{left:164.960007pt;}
.x7{left:167.679993pt;}
.x1b{left:175.199997pt;}
.x9{left:199.039993pt;}
.x1d{left:258.559998pt;}
.x13{left:443.839996pt;}
.x14{left:451.519989pt;}
.xb{left:453.760010pt;}
.x8{left:454.880005pt;}
.x4{left:462.880005pt;}
.x1e{left:463.839996pt;}
.x17{left:469.920013pt;}
.x1f{left:504.000000pt;}
.xc{left:508.320007pt;}
.x20{left:516.479980pt;}
.x5{left:518.719971pt;}
.xd{left:599.679993pt;}
.x18{left:609.280029pt;}
.xe{left:610.239990pt;}
.x19{left:627.840027pt;}
.xf{left:664.159973pt;}
.x21{left:671.840027pt;}
.x1a{left:673.119995pt;}
.x6{left:686.880005pt;}
}




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