
    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_1ae4faf7eef5df2ed43a5986.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.768500;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_9a07818c28705c22d5db8834.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.102000;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_6fea40f922dc1f0bdf2b7270.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.868000;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_75afbec666351fdbb47f9bb5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.102000;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_77f4470906b0afd8a881174e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.954000;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:-55.569439px;}
.ws4{word-spacing:-51.569998px;}
.ws7{word-spacing:-38.807998px;}
.ws1{word-spacing:-35.107379px;}
.ws0{word-spacing:-30.371503px;}
.ws5{word-spacing:-27.719999px;}
.ws6{word-spacing:-23.270940px;}
.ws8{word-spacing:0.000000px;}
.ws2{word-spacing:421.511597px;}
._5{margin-left:-84.504054px;}
._12{margin-left:-25.733288px;}
._a{margin-left:-17.009721px;}
._d{margin-left:-12.592697px;}
._8{margin-left:-11.331445px;}
._0{margin-left:-9.690682px;}
._e{margin-left:-8.417054px;}
._2{margin-left:-7.275146px;}
._6{margin-left:-5.520579px;}
._3{margin-left:-3.971657px;}
._1{margin-left:-1.940899px;}
._7{width:1.387236px;}
._c{width:2.551643px;}
._4{width:3.597593px;}
._10{width:4.646854px;}
._b{width:5.658624px;}
._9{width:7.189119px;}
._f{width:57.371178px;}
._11{width:63.098261px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:71.999997px;}
.fsb{font-size:75.555001px;}
.fsc{font-size:89.999996px;}
.fs0{font-size:96.878797px;}
.fs2{font-size:113.984995px;}
.fs8{font-size:125.999995px;}
.fsa{font-size:141.614990px;}
.fs7{font-size:149.985003px;}
.fs4{font-size:177.254988px;}
.fs6{font-size:209.969991px;}
.fs9{font-size:223.739995px;}
.fs5{font-size:299.970006px;}
.fs3{font-size:734.714987px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000028px;}
.y85{bottom:172.326449px;}
.y5c{bottom:176.274137px;}
.y8f{bottom:176.418965px;}
.y84{bottom:198.201448px;}
.y5b{bottom:212.274135px;}
.y8e{bottom:212.418963px;}
.y5a{bottom:248.274134px;}
.y8d{bottom:248.418962px;}
.y83{bottom:249.951446px;}
.y82{bottom:275.826445px;}
.y59{bottom:284.274132px;}
.y8b{bottom:284.418960px;}
.y5d{bottom:297.774132px;}
.y81{bottom:301.701443px;}
.y58{bottom:320.274131px;}
.y8a{bottom:320.418959px;}
.y80{bottom:327.576442px;}
.y7f{bottom:353.451441px;}
.y57{bottom:356.274129px;}
.y89{bottom:356.418957px;}
.y7e{bottom:379.326440px;}
.y56{bottom:392.274128px;}
.y88{bottom:392.418956px;}
.y7d{bottom:405.201439px;}
.y55{bottom:428.274126px;}
.y87{bottom:428.418954px;}
.y7c{bottom:456.951437px;}
.y86{bottom:464.418953px;}
.y8c{bottom:477.918952px;}
.y7b{bottom:482.826436px;}
.y54{bottom:500.274123px;}
.y7a{bottom:508.701435px;}
.y79{bottom:534.576434px;}
.y53{bottom:536.274122px;}
.y9{bottom:554.738521px;}
.yc{bottom:558.262957px;}
.y78{bottom:560.451433px;}
.y52{bottom:572.274120px;}
.y8{bottom:574.988520px;}
.y77{bottom:586.326432px;}
.yb{bottom:586.387956px;}
.y7{bottom:595.238519px;}
.y51{bottom:608.274119px;}
.y76{bottom:612.201430px;}
.ya{bottom:614.512954px;}
.y6{bottom:615.488518px;}
.y75{bottom:638.076429px;}
.y50{bottom:644.274117px;}
.y74{bottom:663.951428px;}
.y4f{bottom:680.274116px;}
.y73{bottom:689.826427px;}
.y72{bottom:715.701426px;}
.y4e{bottom:716.274114px;}
.y71{bottom:741.576425px;}
.y4d{bottom:752.274113px;}
.y70{bottom:767.451424px;}
.y4c{bottom:788.274111px;}
.y6f{bottom:793.326423px;}
.y6e{bottom:819.201422px;}
.y6d{bottom:845.076421px;}
.y6c{bottom:870.951420px;}
.y2c{bottom:882.980819px;}
.y6b{bottom:896.826419px;}
.y2b{bottom:915.605818px;}
.y2a{bottom:948.230816px;}
.y6a{bottom:963.798008px;}
.y29{bottom:980.855815px;}
.y28{bottom:1013.480814px;}
.y27{bottom:1046.105812px;}
.y26{bottom:1078.730811px;}
.yc7{bottom:1150.243908px;}
.yc6{bottom:1186.243907px;}
.yc5{bottom:1222.243905px;}
.yc4{bottom:1258.243904px;}
.yc8{bottom:1349.631520px;}
.y5{bottom:1384.117098px;}
.y4{bottom:1581.392157px;}
.y69{bottom:1651.850787px;}
.y68{bottom:1687.850786px;}
.y67{bottom:1723.850784px;}
.yc3{bottom:1745.733095px;}
.y66{bottom:1759.850783px;}
.y3{bottom:1767.048794px;}
.yc2{bottom:1781.733094px;}
.y65{bottom:1795.850781px;}
.yc1{bottom:1817.733092px;}
.y64{bottom:1831.850780px;}
.yc0{bottom:1853.733091px;}
.y63{bottom:1867.850778px;}
.ybf{bottom:1889.733089px;}
.y62{bottom:1903.850777px;}
.y2{bottom:1922.824711px;}
.ybe{bottom:1925.733088px;}
.y61{bottom:1939.850775px;}
.ybd{bottom:1961.733086px;}
.y60{bottom:1975.850774px;}
.y40{bottom:1994.825293px;}
.ybc{bottom:1997.733085px;}
.y3f{bottom:2022.950292px;}
.y4b{bottom:2023.271988px;}
.y3e{bottom:2051.075291px;}
.y4a{bottom:2059.271986px;}
.y5f{bottom:2075.344726px;}
.yb9{bottom:2076.201129px;}
.y3d{bottom:2079.200289px;}
.y49{bottom:2095.271985px;}
.y3c{bottom:2107.325288px;}
.y48{bottom:2131.271983px;}
.y47{bottom:2167.271982px;}
.y46{bottom:2203.271980px;}
.y45{bottom:2239.271979px;}
.ya4{bottom:2264.309726px;}
.y44{bottom:2275.271977px;}
.ya3{bottom:2300.309724px;}
.y43{bottom:2311.271976px;}
.ya2{bottom:2336.309723px;}
.y42{bottom:2347.271974px;}
.ya1{bottom:2372.309721px;}
.y41{bottom:2383.271973px;}
.ya0{bottom:2408.309720px;}
.y9f{bottom:2444.309718px;}
.y30{bottom:2467.232285px;}
.y9e{bottom:2480.309717px;}
.y2f{bottom:2495.357284px;}
.y2e{bottom:2523.482283px;}
.y3b{bottom:2533.269962px;}
.y2d{bottom:2551.607282px;}
.y9d{bottom:2552.309714px;}
.y3a{bottom:2569.269961px;}
.y9c{bottom:2588.309712px;}
.y39{bottom:2605.269959px;}
.y9b{bottom:2624.309711px;}
.y38{bottom:2641.269958px;}
.y9a{bottom:2660.309709px;}
.y37{bottom:2677.269956px;}
.y99{bottom:2696.309708px;}
.y36{bottom:2713.269955px;}
.y98{bottom:2732.309706px;}
.y35{bottom:2749.269953px;}
.y97{bottom:2768.309705px;}
.y34{bottom:2785.269952px;}
.y96{bottom:2804.309703px;}
.y33{bottom:2821.269950px;}
.y95{bottom:2840.309702px;}
.y32{bottom:2857.269949px;}
.y94{bottom:2876.309700px;}
.y31{bottom:2893.269947px;}
.y93{bottom:2912.309699px;}
.y92{bottom:2948.309697px;}
.y25{bottom:2973.465596px;}
.y91{bottom:2984.309696px;}
.y90{bottom:3058.048889px;}
.yb8{bottom:3165.680532px;}
.yb7{bottom:3201.680531px;}
.yb6{bottom:3237.680529px;}
.yb5{bottom:3273.680528px;}
.yb4{bottom:3309.680526px;}
.yb3{bottom:3345.680525px;}
.ybb{bottom:3348.258952px;}
.yb2{bottom:3381.680523px;}
.yba{bottom:3383.133951px;}
.yb1{bottom:3417.680522px;}
.yb0{bottom:3453.680520px;}
.y5e{bottom:3467.589804px;}
.yaf{bottom:3525.680517px;}
.yae{bottom:3561.680516px;}
.yad{bottom:3597.680514px;}
.yac{bottom:3633.680513px;}
.yab{bottom:3669.680511px;}
.y24{bottom:3692.699306px;}
.yaa{bottom:3705.680510px;}
.y23{bottom:3727.574305px;}
.ya9{bottom:3741.680508px;}
.ya8{bottom:3777.680507px;}
.ya7{bottom:3813.680505px;}
.ya6{bottom:3849.680504px;}
.ya5{bottom:3885.680502px;}
.y22{bottom:3964.062039px;}
.y1e{bottom:4142.156047px;}
.y21{bottom:4192.629773px;}
.y1d{bottom:4231.031044px;}
.y20{bottom:4233.129772px;}
.y1f{bottom:4273.629770px;}
.y1c{bottom:4305.281041px;}
.y1b{bottom:4381.664837px;}
.y1a{bottom:4439.039834px;}
.y19{bottom:4496.414832px;}
.y18{bottom:4553.789829px;}
.yf{bottom:4568.512310px;}
.y17{bottom:4611.164827px;}
.y16{bottom:4668.539825px;}
.y15{bottom:4725.914822px;}
.ye{bottom:4751.887302px;}
.y14{bottom:4783.289820px;}
.y13{bottom:4840.664818px;}
.y12{bottom:4898.039815px;}
.yd{bottom:4935.262294px;}
.y11{bottom:4955.414813px;}
.y10{bottom:5012.789810px;}
.h4{height:60.335997px;}
.he{height:63.315091px;}
.h3{height:72.949734px;}
.h10{height:75.419997px;}
.h5{height:95.519426px;}
.hb{height:105.587996px;}
.hd{height:106.636087px;}
.ha{height:125.687432px;}
.hf{height:133.473006px;}
.h7{height:148.539680px;}
.hc{height:168.476216px;}
.h9{height:175.954853px;}
.h8{height:254.374565px;}
.h6{height:553.240386px;}
.h2{height:5183.999784px;}
.h0{height:5183.999963px;}
.h1{height:5184.000000px;}
.w1{width:3887.999838px;}
.w0{width:3888.000000px;}
.x0{left:0.000000px;}
.x4{left:107.097810px;}
.x9{left:130.244233px;}
.xc{left:147.272613px;}
.x8{left:167.402574px;}
.x18{left:172.614951px;}
.x1{left:183.232587px;}
.x17{left:357.800490px;}
.xa{left:601.140604px;}
.x6{left:622.515970px;}
.xb{left:662.943824px;}
.xd{left:762.494206px;}
.x7{left:893.365271px;}
.x12{left:1361.720931px;}
.x14{left:1374.712323px;}
.x16{left:1391.882450px;}
.x19{left:1396.012874px;}
.x13{left:1412.962321px;}
.x5{left:2319.586247px;}
.xe{left:2674.625865px;}
.x11{left:2698.075436px;}
.x10{left:2787.402376px;}
.x2{left:2809.849455px;}
.xf{left:3048.656021px;}
.x3{left:3274.182296px;}
.x15{left:3288.735567px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-49.395057pt;}
.ws4{word-spacing:-45.839998pt;}
.ws7{word-spacing:-34.495999pt;}
.ws1{word-spacing:-31.206559pt;}
.ws0{word-spacing:-26.996891pt;}
.ws5{word-spacing:-24.639999pt;}
.ws6{word-spacing:-20.685280pt;}
.ws8{word-spacing:0.000000pt;}
.ws2{word-spacing:374.676975pt;}
._5{margin-left:-75.114715pt;}
._12{margin-left:-22.874033pt;}
._a{margin-left:-15.119752pt;}
._d{margin-left:-11.193509pt;}
._8{margin-left:-10.072395pt;}
._0{margin-left:-8.613940pt;}
._e{margin-left:-7.481826pt;}
._2{margin-left:-6.466796pt;}
._6{margin-left:-4.907181pt;}
._3{margin-left:-3.530362pt;}
._1{margin-left:-1.725244pt;}
._7{width:1.233098pt;}
._c{width:2.268127pt;}
._4{width:3.197860pt;}
._10{width:4.130537pt;}
._b{width:5.029888pt;}
._9{width:6.390328pt;}
._f{width:50.996602pt;}
._11{width:56.087343pt;}
.fs1{font-size:63.999997pt;}
.fsb{font-size:67.160001pt;}
.fsc{font-size:79.999997pt;}
.fs0{font-size:86.114486pt;}
.fs2{font-size:101.319996pt;}
.fs8{font-size:111.999995pt;}
.fsa{font-size:125.879991pt;}
.fs7{font-size:133.320002pt;}
.fs4{font-size:157.559989pt;}
.fs6{font-size:186.639992pt;}
.fs9{font-size:198.879996pt;}
.fs5{font-size:266.640005pt;}
.fs3{font-size:653.079989pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000025pt;}
.y85{bottom:153.179066pt;}
.y5c{bottom:156.688121pt;}
.y8f{bottom:156.816857pt;}
.y84{bottom:176.179065pt;}
.y5b{bottom:188.688120pt;}
.y8e{bottom:188.816856pt;}
.y5a{bottom:220.688119pt;}
.y8d{bottom:220.816855pt;}
.y83{bottom:222.179063pt;}
.y82{bottom:245.179062pt;}
.y59{bottom:252.688117pt;}
.y8b{bottom:252.816853pt;}
.y5d{bottom:264.688117pt;}
.y81{bottom:268.179061pt;}
.y58{bottom:284.688116pt;}
.y8a{bottom:284.816852pt;}
.y80{bottom:291.179060pt;}
.y7f{bottom:314.179059pt;}
.y57{bottom:316.688115pt;}
.y89{bottom:316.816851pt;}
.y7e{bottom:337.179058pt;}
.y56{bottom:348.688113pt;}
.y88{bottom:348.816849pt;}
.y7d{bottom:360.179057pt;}
.y55{bottom:380.688112pt;}
.y87{bottom:380.816848pt;}
.y7c{bottom:406.179055pt;}
.y86{bottom:412.816847pt;}
.y8c{bottom:424.816846pt;}
.y7b{bottom:429.179054pt;}
.y54{bottom:444.688109pt;}
.y7a{bottom:452.179053pt;}
.y79{bottom:475.179052pt;}
.y53{bottom:476.688108pt;}
.y9{bottom:493.100907pt;}
.yc{bottom:496.233739pt;}
.y78{bottom:498.179051pt;}
.y52{bottom:508.688107pt;}
.y8{bottom:511.100907pt;}
.y77{bottom:521.179050pt;}
.yb{bottom:521.233738pt;}
.y7{bottom:529.100906pt;}
.y51{bottom:540.688105pt;}
.y76{bottom:544.179049pt;}
.ya{bottom:546.233737pt;}
.y6{bottom:547.100905pt;}
.y75{bottom:567.179048pt;}
.y50{bottom:572.688104pt;}
.y74{bottom:590.179047pt;}
.y4f{bottom:604.688103pt;}
.y73{bottom:613.179046pt;}
.y72{bottom:636.179045pt;}
.y4e{bottom:636.688101pt;}
.y71{bottom:659.179045pt;}
.y4d{bottom:668.688100pt;}
.y70{bottom:682.179044pt;}
.y4c{bottom:700.688099pt;}
.y6f{bottom:705.179043pt;}
.y6e{bottom:728.179042pt;}
.y6d{bottom:751.179041pt;}
.y6c{bottom:774.179040pt;}
.y2c{bottom:784.871839pt;}
.y6b{bottom:797.179039pt;}
.y2b{bottom:813.871838pt;}
.y2a{bottom:842.871837pt;}
.y6a{bottom:856.709340pt;}
.y29{bottom:871.871836pt;}
.y28{bottom:900.871834pt;}
.y27{bottom:929.871833pt;}
.y26{bottom:958.871832pt;}
.yc7{bottom:1022.439029pt;}
.yc6{bottom:1054.439028pt;}
.yc5{bottom:1086.439027pt;}
.yc4{bottom:1118.439025pt;}
.yc8{bottom:1199.672462pt;}
.y5{bottom:1230.326309pt;}
.y4{bottom:1405.681918pt;}
.y69{bottom:1468.311811pt;}
.y68{bottom:1500.311809pt;}
.y67{bottom:1532.311808pt;}
.yc3{bottom:1551.762751pt;}
.y66{bottom:1564.311807pt;}
.y3{bottom:1570.710039pt;}
.yc2{bottom:1583.762750pt;}
.y65{bottom:1596.311805pt;}
.yc1{bottom:1615.762749pt;}
.y64{bottom:1628.311804pt;}
.yc0{bottom:1647.762747pt;}
.y63{bottom:1660.311803pt;}
.ybf{bottom:1679.762746pt;}
.y62{bottom:1692.311801pt;}
.y2{bottom:1709.177521pt;}
.ybe{bottom:1711.762745pt;}
.y61{bottom:1724.311800pt;}
.ybd{bottom:1743.762743pt;}
.y60{bottom:1756.311799pt;}
.y40{bottom:1773.178038pt;}
.ybc{bottom:1775.762742pt;}
.y3f{bottom:1798.178037pt;}
.y4b{bottom:1798.463989pt;}
.y3e{bottom:1823.178036pt;}
.y4a{bottom:1830.463988pt;}
.y5f{bottom:1844.750867pt;}
.yb9{bottom:1845.512115pt;}
.y3d{bottom:1848.178035pt;}
.y49{bottom:1862.463986pt;}
.y3c{bottom:1873.178034pt;}
.y48{bottom:1894.463985pt;}
.y47{bottom:1926.463984pt;}
.y46{bottom:1958.463982pt;}
.y45{bottom:1990.463981pt;}
.ya4{bottom:2012.719756pt;}
.y44{bottom:2022.463980pt;}
.ya3{bottom:2044.719755pt;}
.y43{bottom:2054.463978pt;}
.ya2{bottom:2076.719753pt;}
.y42{bottom:2086.463977pt;}
.ya1{bottom:2108.719752pt;}
.y41{bottom:2118.463976pt;}
.ya0{bottom:2140.719751pt;}
.y9f{bottom:2172.719749pt;}
.y30{bottom:2193.095365pt;}
.y9e{bottom:2204.719748pt;}
.y2f{bottom:2218.095364pt;}
.y2e{bottom:2243.095363pt;}
.y3b{bottom:2251.795522pt;}
.y2d{bottom:2268.095361pt;}
.y9d{bottom:2268.719745pt;}
.y3a{bottom:2283.795521pt;}
.y9c{bottom:2300.719744pt;}
.y39{bottom:2315.795520pt;}
.y9b{bottom:2332.719743pt;}
.y38{bottom:2347.795518pt;}
.y9a{bottom:2364.719741pt;}
.y37{bottom:2379.795517pt;}
.y99{bottom:2396.719740pt;}
.y36{bottom:2411.795516pt;}
.y98{bottom:2428.719739pt;}
.y35{bottom:2443.795514pt;}
.y97{bottom:2460.719737pt;}
.y34{bottom:2475.795513pt;}
.y96{bottom:2492.719736pt;}
.y33{bottom:2507.795512pt;}
.y95{bottom:2524.719735pt;}
.y32{bottom:2539.795510pt;}
.y94{bottom:2556.719733pt;}
.y31{bottom:2571.795509pt;}
.y93{bottom:2588.719732pt;}
.y92{bottom:2620.719731pt;}
.y25{bottom:2643.080530pt;}
.y91{bottom:2652.719729pt;}
.y90{bottom:2718.265679pt;}
.yb8{bottom:2813.938251pt;}
.yb7{bottom:2845.938249pt;}
.yb6{bottom:2877.938248pt;}
.yb5{bottom:2909.938247pt;}
.yb4{bottom:2941.938245pt;}
.yb3{bottom:2973.938244pt;}
.ybb{bottom:2976.230180pt;}
.yb2{bottom:3005.938243pt;}
.yba{bottom:3007.230179pt;}
.yb1{bottom:3037.938241pt;}
.yb0{bottom:3069.938240pt;}
.y5e{bottom:3082.302048pt;}
.yaf{bottom:3133.938237pt;}
.yae{bottom:3165.938236pt;}
.yad{bottom:3197.938235pt;}
.yac{bottom:3229.938233pt;}
.yab{bottom:3261.938232pt;}
.y24{bottom:3282.399383pt;}
.yaa{bottom:3293.938231pt;}
.y23{bottom:3313.399382pt;}
.ya9{bottom:3325.938229pt;}
.ya8{bottom:3357.938228pt;}
.ya7{bottom:3389.938227pt;}
.ya6{bottom:3421.938225pt;}
.ya5{bottom:3453.938224pt;}
.y22{bottom:3523.610701pt;}
.y1e{bottom:3681.916487pt;}
.y21{bottom:3726.782021pt;}
.y1d{bottom:3760.916483pt;}
.y20{bottom:3762.782019pt;}
.y1f{bottom:3798.782018pt;}
.y1c{bottom:3826.916481pt;}
.y1b{bottom:3894.813188pt;}
.y1a{bottom:3945.813186pt;}
.y19{bottom:3996.813184pt;}
.y18{bottom:4047.813182pt;}
.yf{bottom:4060.899831pt;}
.y17{bottom:4098.813180pt;}
.y16{bottom:4149.813177pt;}
.y15{bottom:4200.813175pt;}
.ye{bottom:4223.899824pt;}
.y14{bottom:4251.813173pt;}
.y13{bottom:4302.813171pt;}
.y12{bottom:4353.813169pt;}
.yd{bottom:4386.899817pt;}
.y11{bottom:4404.813167pt;}
.y10{bottom:4455.813165pt;}
.h4{height:53.631998pt;}
.he{height:56.280081pt;}
.h3{height:64.844208pt;}
.h10{height:67.039997pt;}
.h5{height:84.906156pt;}
.hb{height:93.855996pt;}
.hd{height:94.787633pt;}
.ha{height:111.722162pt;}
.hf{height:118.642672pt;}
.h7{height:132.035271pt;}
.hc{height:149.756637pt;}
.h9{height:156.404313pt;}
.h8{height:226.110724pt;}
.h6{height:491.769232pt;}
.h2{height:4607.999808pt;}
.h0{height:4607.999967pt;}
.h1{height:4608.000000pt;}
.w1{width:3455.999856pt;}
.w0{width:3456.000000pt;}
.x0{left:0.000000pt;}
.x4{left:95.198054pt;}
.x9{left:115.772651pt;}
.xc{left:130.908990pt;}
.x8{left:148.802288pt;}
.x18{left:153.435512pt;}
.x1{left:162.873411pt;}
.x17{left:318.044880pt;}
.xa{left:534.347203pt;}
.x6{left:553.347529pt;}
.xb{left:589.283399pt;}
.xd{left:677.772628pt;}
.x7{left:794.102463pt;}
.x12{left:1210.418606pt;}
.x14{left:1221.966509pt;}
.x16{left:1237.228844pt;}
.x19{left:1240.900332pt;}
.x13{left:1255.966508pt;}
.x5{left:2061.854442pt;}
.xe{left:2377.445213pt;}
.x11{left:2398.289276pt;}
.x10{left:2477.691001pt;}
.x2{left:2497.643960pt;}
.xf{left:2709.916463pt;}
.x3{left:2910.384263pt;}
.x15{left:2923.320504pt;}
}




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