
    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_99bcf1166593b0cbedad1eef.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_a44c2afc7bdb7fd8a6a767be.woff')format("woff");}.ff2{font-family:ff2;line-height:0.935059;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_0f516d7a0591a46bffc65d9e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_4cb2fb0f023fac26aeb2ff4d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.940000;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_dd3af5297dfbe659f16adc31.woff')format("woff");}.ff5{font-family:ff5;line-height:0.936035;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;}
.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;}
}
.ws3{word-spacing:-57.654468px;}
.ws1{word-spacing:-31.165066px;}
.ws0{word-spacing:-29.673564px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:2261.150320px;}
._46{margin-left:-16.171094px;}
._12{margin-left:-15.042361px;}
._d{margin-left:-9.719636px;}
._31{margin-left:-7.634351px;}
._c{margin-left:-6.480146px;}
._e{margin-left:-4.859604px;}
._b{margin-left:-2.590786px;}
._0{margin-left:-1.001774px;}
._2{width:1.450777px;}
._7{width:2.949093px;}
._21{width:4.163265px;}
._13{width:5.461574px;}
._6{width:7.013146px;}
._3{width:8.991986px;}
._8{width:11.331596px;}
._1f{width:12.472681px;}
._a{width:14.569925px;}
._5{width:15.786277px;}
._1e{width:17.101070px;}
._1{width:18.431256px;}
._2b{width:19.948036px;}
._2c{width:20.973333px;}
._28{width:23.437037px;}
._1c{width:25.084510px;}
._f{width:26.092952px;}
._47{width:30.306488px;}
._15{width:31.486825px;}
._4{width:32.599636px;}
._48{width:33.955464px;}
._1b{width:35.526533px;}
._40{width:37.396510px;}
._24{width:38.705282px;}
._10{width:40.148923px;}
._38{width:41.941230px;}
._3b{width:43.392570px;}
._3a{width:48.206672px;}
._2d{width:49.972043px;}
._3c{width:57.126902px;}
._37{width:60.259632px;}
._27{width:61.576277px;}
._2f{width:63.977034px;}
._14{width:67.387710px;}
._23{width:68.901920px;}
._2e{width:70.645327px;}
._3f{width:73.574065px;}
._30{width:75.316667px;}
._9{width:83.228460px;}
._20{width:85.061745px;}
._1d{width:99.224137px;}
._33{width:104.246438px;}
._29{width:105.900709px;}
._2a{width:107.186437px;}
._32{width:111.301874px;}
._17{width:124.200871px;}
._16{width:125.213672px;}
._26{width:126.347742px;}
._36{width:143.084567px;}
._19{width:156.525261px;}
._18{width:157.855591px;}
._1a{width:159.409204px;}
._25{width:165.256084px;}
._39{width:182.551337px;}
._35{width:196.065587px;}
._34{width:197.417989px;}
._3e{width:209.701689px;}
._3d{width:236.422439px;}
._22{width:237.677081px;}
._44{width:651.116591px;}
._42{width:1160.881401px;}
._43{width:1257.112086px;}
._45{width:1276.839741px;}
._41{width:1284.773122px;}
._11{width:2341.037424px;}
.fc2{color:transparent;}
.fc1{color:rgb(45,58,4);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:72.002271px;}
.fs0{font-size:89.957837px;}
.fs1{font-size:119.973784px;}
.fs2{font-size:123.519222px;}
.fs6{font-size:207.504761px;}
.fs5{font-size:239.992579px;}
.fs3{font-size:324.010220px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.000119px;}
.y14{bottom:9.568103px;}
.y16{bottom:9.600995px;}
.y11{bottom:9.618619px;}
.y4{bottom:14.625638px;}
.y62{bottom:14.671975px;}
.y23{bottom:18.000465px;}
.yc{bottom:21.375639px;}
.y3{bottom:45.001597px;}
.y10{bottom:52.475063px;}
.y22{bottom:59.626778px;}
.yb{bottom:63.001952px;}
.y2{bottom:75.377555px;}
.y13{bottom:95.280991px;}
.y21{bottom:101.253091px;}
.ya{bottom:104.628265px;}
.y1{bottom:129.599405px;}
.y17{bottom:130.288823px;}
.yf{bottom:138.187952px;}
.y20{bottom:142.879404px;}
.y9{bottom:146.254578px;}
.ye{bottom:181.044396px;}
.y1f{bottom:184.505717px;}
.y8{bottom:187.880891px;}
.y1e{bottom:226.132030px;}
.y7{bottom:229.507203px;}
.y31{bottom:247.353425px;}
.y1d{bottom:267.758343px;}
.y6{bottom:271.133516px;}
.y5{bottom:306.518672px;}
.y1c{bottom:309.384656px;}
.y1b{bottom:351.010969px;}
.y1a{bottom:392.637282px;}
.y19{bottom:434.263595px;}
.y18{bottom:475.889908px;}
.y30{bottom:651.234384px;}
.y76{bottom:657.555480px;}
.y78{bottom:732.963907px;}
.y75{bottom:770.096941px;}
.y74{bottom:811.723254px;}
.y73{bottom:853.349567px;}
.y72{bottom:894.975880px;}
.y71{bottom:936.602193px;}
.y70{bottom:978.228506px;}
.y6f{bottom:1019.854818px;}
.y6e{bottom:1061.481131px;}
.y6d{bottom:1103.107444px;}
.y6c{bottom:1144.733757px;}
.y6b{bottom:1186.360070px;}
.y6a{bottom:1227.986383px;}
.y69{bottom:1269.612696px;}
.y68{bottom:1311.239009px;}
.y67{bottom:1352.865322px;}
.y66{bottom:1394.491635px;}
.y2f{bottom:1443.993375px;}
.y65{bottom:1541.871379px;}
.y64{bottom:1583.497692px;}
.y63{bottom:1625.124005px;}
.y77{bottom:1695.626366px;}
.y2e{bottom:2488.116055px;}
.y4c{bottom:2547.567124px;}
.y79{bottom:2575.198958px;}
.y4b{bottom:2589.193437px;}
.y4a{bottom:2630.819750px;}
.y49{bottom:2672.446063px;}
.y48{bottom:2714.072376px;}
.y47{bottom:2755.698689px;}
.y46{bottom:2797.325002px;}
.y45{bottom:2838.951315px;}
.y44{bottom:2880.577627px;}
.y43{bottom:2922.203940px;}
.y42{bottom:2963.830253px;}
.y41{bottom:3005.456566px;}
.y40{bottom:3047.082879px;}
.y3f{bottom:3088.709192px;}
.y3e{bottom:3130.335505px;}
.y3d{bottom:3171.961818px;}
.y3c{bottom:3213.588131px;}
.y3b{bottom:3255.214444px;}
.y3a{bottom:3296.840757px;}
.y39{bottom:3338.467070px;}
.y38{bottom:3380.093383px;}
.y37{bottom:3421.719696px;}
.y36{bottom:3463.346009px;}
.y35{bottom:3504.972322px;}
.y34{bottom:3546.598635px;}
.y33{bottom:3588.224948px;}
.y32{bottom:3665.923326px;}
.y7a{bottom:3670.551652px;}
.y60{bottom:3722.189299px;}
.yd{bottom:3744.989963px;}
.y5f{bottom:3763.815612px;}
.y12{bottom:3795.749961px;}
.y5e{bottom:3805.441925px;}
.y5d{bottom:3847.068238px;}
.y15{bottom:3881.429957px;}
.y5c{bottom:3888.694551px;}
.y5b{bottom:3930.320864px;}
.y5a{bottom:3971.947177px;}
.y61{bottom:3975.749954px;}
.y59{bottom:4013.573490px;}
.y58{bottom:4055.199803px;}
.y86{bottom:4059.306448px;}
.y57{bottom:4096.826116px;}
.y85{bottom:4100.932761px;}
.y56{bottom:4138.452429px;}
.y84{bottom:4142.559074px;}
.y55{bottom:4180.078741px;}
.y83{bottom:4184.185387px;}
.y54{bottom:4221.705054px;}
.y82{bottom:4225.811700px;}
.y53{bottom:4263.331367px;}
.y81{bottom:4267.438013px;}
.y52{bottom:4304.957680px;}
.y80{bottom:4309.064326px;}
.y51{bottom:4346.583993px;}
.y7f{bottom:4350.690639px;}
.y50{bottom:4388.210306px;}
.y7e{bottom:4392.316952px;}
.y4f{bottom:4429.836619px;}
.y7d{bottom:4433.943265px;}
.y4e{bottom:4471.462932px;}
.y7c{bottom:4475.569578px;}
.y4d{bottom:4513.089245px;}
.y7b{bottom:4517.195891px;}
.y2d{bottom:4562.094761px;}
.y2b{bottom:4616.949009px;}
.y2c{bottom:4629.324399px;}
.y29{bottom:4658.575322px;}
.y2a{bottom:4670.950712px;}
.y27{bottom:4700.201635px;}
.y28{bottom:4712.577025px;}
.y26{bottom:4747.650595px;}
.y25{bottom:4860.154144px;}
.h9{height:42.119998px;}
.he{height:53.281681px;}
.h3{height:68.917894px;}
.h11{height:70.199997px;}
.hd{height:88.780600px;}
.h13{height:89.043043px;}
.h10{height:89.160205px;}
.h7{height:91.674422px;}
.h5{height:91.913509px;}
.h2{height:105.753513px;}
.h8{height:127.799995px;}
.h12{height:154.007440px;}
.hf{height:178.119492px;}
.h6{height:213.479991px;}
.hc{height:239.767563px;}
.h4{height:312.759829px;}
.ha{height:515.266150px;}
.hb{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w3{width:143.999994px;}
.w6{width:145.439994px;}
.w5{width:181.079992px;}
.w4{width:186.839992px;}
.w9{width:322.559987px;}
.w7{width:1587.425046px;}
.w2{width:1650.427131px;}
.w8{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x5{left:4.500142px;}
.x3{left:8.156507px;}
.x2{left:10.406578px;}
.xb{left:55.495891px;}
.xa{left:129.862643px;}
.x19{left:134.091898px;}
.x15{left:139.642079px;}
.x14{left:143.595545px;}
.x1b{left:173.082078px;}
.x1d{left:178.459477px;}
.xc{left:413.875914px;}
.x4{left:452.018164px;}
.x6{left:460.439981px;}
.x1c{left:826.272470px;}
.x13{left:854.585795px;}
.x12{left:864.570485px;}
.xe{left:879.846363px;}
.x8{left:910.799962px;}
.xd{left:941.851557px;}
.x11{left:1015.483454px;}
.x10{left:1022.145768px;}
.xf{left:1136.442341px;}
.x7{left:1407.599941px;}
.x1{left:1788.009009px;}
.x9{left:1875.599922px;}
.x17{left:2045.831927px;}
.x1e{left:2074.182970px;}
.x18{left:2701.939099px;}
.x16{left:2751.109157px;}
.x1a{left:2781.442864px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-51.248416pt;}
.ws1{word-spacing:-27.702281pt;}
.ws0{word-spacing:-26.376501pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:2009.911395pt;}
._46{margin-left:-14.374306pt;}
._12{margin-left:-13.370988pt;}
._d{margin-left:-8.639677pt;}
._31{margin-left:-6.786089pt;}
._c{margin-left:-5.760130pt;}
._e{margin-left:-4.319648pt;}
._b{margin-left:-2.302921pt;}
._0{margin-left:-0.890466pt;}
._2{width:1.289580pt;}
._7{width:2.621416pt;}
._21{width:3.700680pt;}
._13{width:4.854732pt;}
._6{width:6.233908pt;}
._3{width:7.992876pt;}
._8{width:10.072530pt;}
._1f{width:11.086828pt;}
._a{width:12.951044pt;}
._5{width:14.032246pt;}
._1e{width:15.200951pt;}
._1{width:16.383339pt;}
._2b{width:17.731587pt;}
._2c{width:18.642962pt;}
._28{width:20.832921pt;}
._1c{width:22.297342pt;}
._f{width:23.193735pt;}
._47{width:26.939100pt;}
._15{width:27.988289pt;}
._4{width:28.977454pt;}
._48{width:30.182635pt;}
._1b{width:31.579140pt;}
._40{width:33.241342pt;}
._24{width:34.404695pt;}
._10{width:35.687931pt;}
._38{width:37.281093pt;}
._3b{width:38.571174pt;}
._3a{width:42.850375pt;}
._2d{width:44.419593pt;}
._3c{width:50.779468pt;}
._37{width:53.564118pt;}
._27{width:54.734468pt;}
._2f{width:56.868475pt;}
._14{width:59.900187pt;}
._23{width:61.246151pt;}
._2e{width:62.795846pt;}
._3f{width:65.399169pt;}
._30{width:66.948148pt;}
._9{width:73.980853pt;}
._20{width:75.610440pt;}
._1d{width:88.199233pt;}
._33{width:92.663500pt;}
._29{width:94.133964pt;}
._2a{width:95.276833pt;}
._32{width:98.934999pt;}
._17{width:110.400774pt;}
._16{width:111.301042pt;}
._26{width:112.309104pt;}
._36{width:127.186282pt;}
._19{width:139.133565pt;}
._18{width:140.316081pt;}
._1a{width:141.697070pt;}
._25{width:146.894297pt;}
._39{width:162.267855pt;}
._35{width:174.280522pt;}
._34{width:175.482657pt;}
._3e{width:186.401501pt;}
._3d{width:210.153279pt;}
._22{width:211.268517pt;}
._44{width:578.770303pt;}
._42{width:1031.894579pt;}
._43{width:1117.432966pt;}
._45{width:1134.968659pt;}
._41{width:1142.020553pt;}
._11{width:2080.922155pt;}
.fs4{font-size:64.002019pt;}
.fs0{font-size:79.962522pt;}
.fs1{font-size:106.643364pt;}
.fs2{font-size:109.794864pt;}
.fs6{font-size:184.448677pt;}
.fs5{font-size:213.326737pt;}
.fs3{font-size:288.009084pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.000106pt;}
.y14{bottom:8.504980pt;}
.y16{bottom:8.534218pt;}
.y11{bottom:8.549884pt;}
.y4{bottom:13.000568pt;}
.y62{bottom:13.041756pt;}
.y23{bottom:16.000414pt;}
.yc{bottom:19.000568pt;}
.y3{bottom:40.001419pt;}
.y10{bottom:46.644501pt;}
.y22{bottom:53.001581pt;}
.yb{bottom:56.001735pt;}
.y2{bottom:67.002271pt;}
.y13{bottom:84.694215pt;}
.y21{bottom:90.002748pt;}
.ya{bottom:93.002902pt;}
.y1{bottom:115.199471pt;}
.y17{bottom:115.812287pt;}
.yf{bottom:122.833735pt;}
.y20{bottom:127.003915pt;}
.y9{bottom:130.004069pt;}
.ye{bottom:160.928352pt;}
.y1f{bottom:164.005082pt;}
.y8{bottom:167.005236pt;}
.y1e{bottom:201.006249pt;}
.y7{bottom:204.006403pt;}
.y31{bottom:219.869711pt;}
.y1d{bottom:238.007416pt;}
.y6{bottom:241.007570pt;}
.y5{bottom:272.461042pt;}
.y1c{bottom:275.008583pt;}
.y1b{bottom:312.009750pt;}
.y1a{bottom:349.010917pt;}
.y19{bottom:386.012084pt;}
.y18{bottom:423.013251pt;}
.y30{bottom:578.875008pt;}
.y76{bottom:584.493760pt;}
.y78{bottom:651.523473pt;}
.y75{bottom:684.530614pt;}
.y74{bottom:721.531781pt;}
.y73{bottom:758.532948pt;}
.y72{bottom:795.534115pt;}
.y71{bottom:832.535282pt;}
.y70{bottom:869.536449pt;}
.y6f{bottom:906.537616pt;}
.y6e{bottom:943.538783pt;}
.y6d{bottom:980.539951pt;}
.y6c{bottom:1017.541118pt;}
.y6b{bottom:1054.542285pt;}
.y6a{bottom:1091.543452pt;}
.y69{bottom:1128.544619pt;}
.y68{bottom:1165.545786pt;}
.y67{bottom:1202.546953pt;}
.y66{bottom:1239.548120pt;}
.y2f{bottom:1283.549667pt;}
.y65{bottom:1370.552337pt;}
.y64{bottom:1407.553504pt;}
.y63{bottom:1444.554671pt;}
.y77{bottom:1507.223437pt;}
.y2e{bottom:2211.658716pt;}
.y4c{bottom:2264.504110pt;}
.y79{bottom:2289.065740pt;}
.y4b{bottom:2301.505277pt;}
.y4a{bottom:2338.506444pt;}
.y49{bottom:2375.507611pt;}
.y48{bottom:2412.508778pt;}
.y47{bottom:2449.509945pt;}
.y46{bottom:2486.511112pt;}
.y45{bottom:2523.512280pt;}
.y44{bottom:2560.513447pt;}
.y43{bottom:2597.514614pt;}
.y42{bottom:2634.515781pt;}
.y41{bottom:2671.516948pt;}
.y40{bottom:2708.518115pt;}
.y3f{bottom:2745.519282pt;}
.y3e{bottom:2782.520449pt;}
.y3d{bottom:2819.521616pt;}
.y3c{bottom:2856.522783pt;}
.y3b{bottom:2893.523950pt;}
.y3a{bottom:2930.525117pt;}
.y39{bottom:2967.526284pt;}
.y38{bottom:3004.527451pt;}
.y37{bottom:3041.528618pt;}
.y36{bottom:3078.529786pt;}
.y35{bottom:3115.530953pt;}
.y34{bottom:3152.532120pt;}
.y33{bottom:3189.533287pt;}
.y32{bottom:3258.598512pt;}
.y7a{bottom:3262.712580pt;}
.y60{bottom:3308.612710pt;}
.yd{bottom:3328.879967pt;}
.y5f{bottom:3345.613877pt;}
.y12{bottom:3373.999965pt;}
.y5e{bottom:3382.615044pt;}
.y5d{bottom:3419.616211pt;}
.y15{bottom:3450.159962pt;}
.y5c{bottom:3456.617379pt;}
.y5b{bottom:3493.618546pt;}
.y5a{bottom:3530.619713pt;}
.y61{bottom:3533.999959pt;}
.y59{bottom:3567.620880pt;}
.y58{bottom:3604.622047pt;}
.y86{bottom:3608.272399pt;}
.y57{bottom:3641.623214pt;}
.y85{bottom:3645.273566pt;}
.y56{bottom:3678.624381pt;}
.y84{bottom:3682.274733pt;}
.y55{bottom:3715.625548pt;}
.y83{bottom:3719.275900pt;}
.y54{bottom:3752.626715pt;}
.y82{bottom:3756.277067pt;}
.y53{bottom:3789.627882pt;}
.y81{bottom:3793.278234pt;}
.y52{bottom:3826.629049pt;}
.y80{bottom:3830.279401pt;}
.y51{bottom:3863.630216pt;}
.y7f{bottom:3867.280568pt;}
.y50{bottom:3900.631383pt;}
.y7e{bottom:3904.281735pt;}
.y4f{bottom:3937.632550pt;}
.y7d{bottom:3941.282902pt;}
.y4e{bottom:3974.633717pt;}
.y7c{bottom:3978.284069pt;}
.y4d{bottom:4011.634884pt;}
.y7b{bottom:4015.285236pt;}
.y2d{bottom:4055.195343pt;}
.y2b{bottom:4103.954675pt;}
.y2c{bottom:4114.955022pt;}
.y29{bottom:4140.955842pt;}
.y2a{bottom:4151.956189pt;}
.y27{bottom:4177.957009pt;}
.y28{bottom:4188.957356pt;}
.y26{bottom:4220.133863pt;}
.y25{bottom:4320.137017pt;}
.h9{height:37.439998pt;}
.he{height:47.361494pt;}
.h3{height:61.260350pt;}
.h11{height:62.399997pt;}
.hd{height:78.916089pt;}
.h13{height:79.149371pt;}
.h10{height:79.253515pt;}
.h7{height:81.488376pt;}
.h5{height:81.700897pt;}
.h2{height:94.003122pt;}
.h8{height:113.599995pt;}
.h12{height:136.895502pt;}
.hf{height:158.328437pt;}
.h6{height:189.759992pt;}
.hc{height:213.126722pt;}
.h4{height:278.008737pt;}
.ha{height:458.014355pt;}
.hb{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w3{width:127.999995pt;}
.w6{width:129.279995pt;}
.w5{width:160.959993pt;}
.w4{width:166.079993pt;}
.w9{width:286.719988pt;}
.w7{width:1411.044485pt;}
.w2{width:1467.046339pt;}
.w8{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x5{left:4.000126pt;}
.x3{left:7.250229pt;}
.x2{left:9.250292pt;}
.xb{left:49.329681pt;}
.xa{left:115.433461pt;}
.x19{left:119.192798pt;}
.x15{left:124.126292pt;}
.x14{left:127.640484pt;}
.x1b{left:153.850736pt;}
.x1d{left:158.630646pt;}
.xc{left:367.889702pt;}
.x4{left:401.793923pt;}
.x6{left:409.279983pt;}
.x1c{left:734.464417pt;}
.x13{left:759.631818pt;}
.x12{left:768.507098pt;}
.xe{left:782.085656pt;}
.x8{left:809.599966pt;}
.xd{left:837.201384pt;}
.x11{left:902.651959pt;}
.x10{left:908.574016pt;}
.xf{left:1010.170970pt;}
.x7{left:1251.199948pt;}
.x1{left:1589.341342pt;}
.x9{left:1667.199931pt;}
.x17{left:1818.517268pt;}
.x1e{left:1843.718195pt;}
.x18{left:2401.723644pt;}
.x16{left:2445.430362pt;}
.x1a{left:2472.393657pt;}
}




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