
    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_59d54bec1f100775d5e37b32.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_074d43952cb1b8c2cf7c9330.woff')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_1bc836d6b16aa133a0a75787.woff')format("woff");}.ff3{font-family:ff3;line-height:0.715820;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_aa1f152df80b7c3b9108392c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_3bd5553e6702c09934188fd0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_3dd3dcff064afa891d2450f0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_8a04aea0c7cf4a67866badde.woff')format("woff");}.ff7{font-family:ff7;line-height:0.710449;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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:13.493534px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.250000px;}
.ws3{word-spacing:-16.669921px;}
.ws0{word-spacing:-15.000000px;}
.ws4{word-spacing:0.000000px;}
._f{margin-left:-9.140647px;}
._10{margin-left:-7.980466px;}
._a{margin-left:-6.749978px;}
._e{margin-left:-5.625049px;}
._8{margin-left:-4.141372px;}
._0{margin-left:-2.531248px;}
._7{margin-left:-1.300800px;}
._2{width:4.500001px;}
._1{width:9.000002px;}
._4{width:13.500002px;}
._3{width:22.500002px;}
._5{width:27.000001px;}
._6{width:31.500002px;}
._9{width:36.000001px;}
._b{width:40.500000px;}
._d{width:45.000025px;}
._c{width:49.499999px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(32,32,32);}
.fc1{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs1{font-size:66.000002px;}
.fs3{font-size:68.999999px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:45.389283px;}
.y60{bottom:45.713743px;}
.yb9{bottom:45.714118px;}
.y2e{bottom:62.637813px;}
.y5f{bottom:64.038204px;}
.yb8{bottom:64.038579px;}
.y5e{bottom:79.561884px;}
.yb7{bottom:79.562259px;}
.y2d{bottom:79.886358px;}
.y5d{bottom:95.085564px;}
.yb6{bottom:95.085939px;}
.y2c{bottom:97.621578px;}
.y2b{bottom:116.970708px;}
.y5c{bottom:119.393920px;}
.y8d{bottom:119.393923px;}
.yb5{bottom:129.742673px;}
.y2a{bottom:134.219238px;}
.y5b{bottom:140.092163px;}
.y8c{bottom:140.092165px;}
.y29{bottom:151.467768px;}
.yb4{bottom:160.790033px;}
.y5a{bottom:160.790404px;}
.y8b{bottom:160.790407px;}
.y28{bottom:168.716313px;}
.yb3{bottom:181.488282px;}
.y8a{bottom:181.488642px;}
.y59{bottom:181.488655px;}
.y27{bottom:200.999641px;}
.yb2{bottom:202.186524px;}
.y89{bottom:202.186884px;}
.y58{bottom:202.186893px;}
.y26{bottom:221.697883px;}
.yb1{bottom:222.884767px;}
.y57{bottom:222.884950px;}
.y88{bottom:222.885127px;}
.y25{bottom:242.396125px;}
.yb0{bottom:243.583008px;}
.y56{bottom:243.583192px;}
.y87{bottom:243.583368px;}
.y24{bottom:263.094368px;}
.yaf{bottom:264.281251px;}
.y55{bottom:264.281437px;}
.y86{bottom:264.281611px;}
.ydc{bottom:272.451127px;}
.y23{bottom:283.792606px;}
.yae{bottom:284.979493px;}
.y54{bottom:284.979678px;}
.y85{bottom:284.979853px;}
.ydb{bottom:296.224807px;}
.y22{bottom:304.490848px;}
.yad{bottom:305.677735px;}
.y53{bottom:305.677921px;}
.y84{bottom:305.678095px;}
.yda{bottom:319.997392px;}
.y21{bottom:325.189090px;}
.yac{bottom:326.375977px;}
.y52{bottom:326.376163px;}
.y83{bottom:326.376338px;}
.yd9{bottom:343.770697px;}
.y20{bottom:345.887332px;}
.yab{bottom:347.074218px;}
.y51{bottom:347.074405px;}
.y82{bottom:347.074584px;}
.y1f{bottom:366.261103px;}
.yd8{bottom:367.544017px;}
.yaa{bottom:367.772461px;}
.y50{bottom:367.772648px;}
.y81{bottom:367.772827px;}
.y1e{bottom:385.558967px;}
.ya9{bottom:388.470703px;}
.y4f{bottom:388.470888px;}
.y80{bottom:388.471068px;}
.yd7{bottom:391.317337px;}
.y1d{bottom:406.257098px;}
.ya8{bottom:409.168945px;}
.y4e{bottom:409.169131px;}
.y7f{bottom:409.169311px;}
.yd6{bottom:415.090642px;}
.y1c{bottom:426.705868px;}
.ya7{bottom:429.867187px;}
.y4d{bottom:429.867373px;}
.y7e{bottom:429.867553px;}
.yd5{bottom:438.863962px;}
.y1b{bottom:446.003798px;}
.ya6{bottom:450.565425px;}
.y4c{bottom:450.565615px;}
.y7d{bottom:450.565795px;}
.yd4{bottom:462.637282px;}
.y1a{bottom:466.777043px;}
.y4b{bottom:471.263857px;}
.y7c{bottom:471.264037px;}
.yd3{bottom:486.410602px;}
.y19{bottom:490.579969px;}
.y4a{bottom:491.962098px;}
.ya5{bottom:491.962278px;}
.y7b{bottom:491.962287px;}
.yd2{bottom:510.183547px;}
.y49{bottom:512.660341px;}
.ya4{bottom:512.660521px;}
.y7a{bottom:512.660529px;}
.y18{bottom:514.382948px;}
.y48{bottom:533.358583px;}
.ya3{bottom:533.358763px;}
.y79{bottom:533.358772px;}
.yd1{bottom:533.956492px;}
.y17{bottom:535.081193px;}
.y47{bottom:554.056825px;}
.ya2{bottom:554.057005px;}
.y78{bottom:554.057013px;}
.y16{bottom:555.779440px;}
.yd0{bottom:557.730172px;}
.y46{bottom:574.755067px;}
.ya1{bottom:574.755248px;}
.y77{bottom:574.755256px;}
.y15{bottom:576.477685px;}
.ycf{bottom:581.503117px;}
.y45{bottom:595.453308px;}
.ya0{bottom:595.453492px;}
.y76{bottom:595.453498px;}
.y14{bottom:597.175908px;}
.yce{bottom:605.276812px;}
.y44{bottom:616.151551px;}
.y9f{bottom:616.151733px;}
.y75{bottom:616.151740px;}
.y13{bottom:617.874153px;}
.ycd{bottom:629.049757px;}
.y43{bottom:636.849793px;}
.y9e{bottom:636.849976px;}
.y74{bottom:636.849983px;}
.y12{bottom:638.572398px;}
.ycc{bottom:652.823437px;}
.y42{bottom:657.548035px;}
.y73{bottom:657.548212px;}
.y9d{bottom:657.548218px;}
.y11{bottom:659.270643px;}
.ycb{bottom:676.596673px;}
.y41{bottom:678.246277px;}
.y72{bottom:678.246453px;}
.y9c{bottom:678.246460px;}
.y10{bottom:679.968933px;}
.yca{bottom:697.294915px;}
.y40{bottom:698.944518px;}
.y71{bottom:698.944696px;}
.y9b{bottom:698.944703px;}
.yf{bottom:700.667174px;}
.yc9{bottom:717.993158px;}
.y3f{bottom:719.642761px;}
.y70{bottom:719.642938px;}
.y9a{bottom:719.642943px;}
.ye{bottom:721.365417px;}
.yc8{bottom:738.691402px;}
.y3e{bottom:740.341003px;}
.y6f{bottom:740.341180px;}
.y99{bottom:740.341186px;}
.yd{bottom:742.063659px;}
.yc7{bottom:759.389641px;}
.y3d{bottom:761.039245px;}
.y6e{bottom:761.039423px;}
.y98{bottom:761.039428px;}
.yc{bottom:762.761902px;}
.yc6{bottom:780.087883px;}
.y3c{bottom:781.737488px;}
.y97{bottom:781.737670px;}
.y6d{bottom:781.737674px;}
.yb{bottom:783.460143px;}
.yc5{bottom:800.786125px;}
.y3b{bottom:802.435728px;}
.y96{bottom:802.435912px;}
.y6c{bottom:802.435917px;}
.ya{bottom:804.158386px;}
.yc4{bottom:821.484367px;}
.y3a{bottom:823.133971px;}
.y95{bottom:823.134158px;}
.y6b{bottom:823.134159px;}
.y9{bottom:824.856628px;}
.yc3{bottom:842.182613px;}
.y39{bottom:843.832213px;}
.y6a{bottom:843.832402px;}
.y8{bottom:845.554870px;}
.yc2{bottom:862.880863px;}
.y38{bottom:864.530455px;}
.y94{bottom:864.530633px;}
.y69{bottom:864.530643px;}
.y7{bottom:866.253113px;}
.yc1{bottom:883.579105px;}
.y37{bottom:885.228697px;}
.y93{bottom:885.228882px;}
.y68{bottom:885.228886px;}
.y6{bottom:890.056087px;}
.yc0{bottom:904.277348px;}
.y36{bottom:905.926942px;}
.y92{bottom:905.927124px;}
.y67{bottom:905.927128px;}
.y5{bottom:913.859074px;}
.ybf{bottom:924.975592px;}
.y35{bottom:926.625183px;}
.y91{bottom:926.625367px;}
.y66{bottom:926.625370px;}
.y4{bottom:937.662052px;}
.ybe{bottom:945.673826px;}
.y34{bottom:947.323426px;}
.y90{bottom:947.323608px;}
.y65{bottom:947.323613px;}
.y3{bottom:962.535823px;}
.ybd{bottom:966.372064px;}
.y33{bottom:968.021668px;}
.y8f{bottom:968.021851px;}
.y64{bottom:968.021858px;}
.y2{bottom:984.938416px;}
.ybc{bottom:987.069577px;}
.y32{bottom:988.719910px;}
.y63{bottom:988.720087px;}
.y8e{bottom:988.720093px;}
.y1{bottom:1008.741395px;}
.ybb{bottom:1009.267968px;}
.y31{bottom:1009.418152px;}
.y62{bottom:1009.418336px;}
.yba{bottom:1030.116211px;}
.y30{bottom:1030.116395px;}
.y61{bottom:1030.116577px;}
.ha{height:47.961914px;}
.h9{height:48.410156px;}
.hc{height:49.992188px;}
.hd{height:50.167969px;}
.h6{height:53.789061px;}
.h2{height:59.167970px;}
.h7{height:61.857421px;}
.h1{height:63.949219px;}
.h4{height:64.546875px;}
.he{height:64.546901px;}
.h3{height:79.936523px;}
.h8{height:107.689080px;}
.hb{height:107.689455px;}
.h5{height:194.720220px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x3{left:95.669289px;}
.x4{left:127.224343px;}
.x1{left:142.066728px;}
.x7{left:169.919289px;}
.x6{left:181.169289px;}
.x2{left:190.015459px;}
.x8{left:222.629469px;}
.x9{left:386.485052px;}
.xa{left:396.306830px;}
.x5{left:407.436137px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:11.994252pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.333333pt;}
.ws3{word-spacing:-14.817708pt;}
.ws0{word-spacing:-13.333333pt;}
.ws4{word-spacing:0.000000pt;}
._f{margin-left:-8.125019pt;}
._10{margin-left:-7.093748pt;}
._a{margin-left:-5.999980pt;}
._e{margin-left:-5.000044pt;}
._8{margin-left:-3.681219pt;}
._0{margin-left:-2.249998pt;}
._7{margin-left:-1.156266pt;}
._2{width:4.000001pt;}
._1{width:8.000002pt;}
._4{width:12.000001pt;}
._3{width:20.000002pt;}
._5{width:24.000001pt;}
._6{width:28.000002pt;}
._9{width:32.000001pt;}
._b{width:36.000000pt;}
._d{width:40.000022pt;}
._c{width:43.999999pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs1{font-size:58.666668pt;}
.fs3{font-size:61.333332pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:40.346030pt;}
.y60{bottom:40.634439pt;}
.yb9{bottom:40.634772pt;}
.y2e{bottom:55.678056pt;}
.y5f{bottom:56.922848pt;}
.yb8{bottom:56.923182pt;}
.y5e{bottom:70.721675pt;}
.yb7{bottom:70.722008pt;}
.y2d{bottom:71.010096pt;}
.y5d{bottom:84.520502pt;}
.yb6{bottom:84.520835pt;}
.y2c{bottom:86.774736pt;}
.y2b{bottom:103.973963pt;}
.y5c{bottom:106.127929pt;}
.y8d{bottom:106.127931pt;}
.yb5{bottom:115.326820pt;}
.y2a{bottom:119.305990pt;}
.y5b{bottom:124.526367pt;}
.y8c{bottom:124.526369pt;}
.y29{bottom:134.638016pt;}
.yb4{bottom:142.924473pt;}
.y5a{bottom:142.924804pt;}
.y8b{bottom:142.924807pt;}
.y28{bottom:149.970056pt;}
.yb3{bottom:161.322917pt;}
.y8a{bottom:161.323238pt;}
.y59{bottom:161.323249pt;}
.y27{bottom:178.666348pt;}
.yb2{bottom:179.721354pt;}
.y89{bottom:179.721675pt;}
.y58{bottom:179.721683pt;}
.y26{bottom:197.064785pt;}
.yb1{bottom:198.119792pt;}
.y57{bottom:198.119956pt;}
.y88{bottom:198.120113pt;}
.y25{bottom:215.463223pt;}
.yb0{bottom:216.518229pt;}
.y56{bottom:216.518393pt;}
.y87{bottom:216.518550pt;}
.y24{bottom:233.861660pt;}
.yaf{bottom:234.916667pt;}
.y55{bottom:234.916833pt;}
.y86{bottom:234.916988pt;}
.ydc{bottom:242.178780pt;}
.y23{bottom:252.260094pt;}
.yae{bottom:253.315104pt;}
.y54{bottom:253.315270pt;}
.y85{bottom:253.315425pt;}
.ydb{bottom:263.310940pt;}
.y22{bottom:270.658531pt;}
.yad{bottom:271.713542pt;}
.y53{bottom:271.713708pt;}
.y84{bottom:271.713863pt;}
.yda{bottom:284.442126pt;}
.y21{bottom:289.056969pt;}
.yac{bottom:290.111980pt;}
.y52{bottom:290.112144pt;}
.y83{bottom:290.112300pt;}
.yd9{bottom:305.573953pt;}
.y20{bottom:307.455407pt;}
.yab{bottom:308.510416pt;}
.y51{bottom:308.510583pt;}
.y82{bottom:308.510741pt;}
.y1f{bottom:325.565425pt;}
.yd8{bottom:326.705793pt;}
.yaa{bottom:326.908854pt;}
.y50{bottom:326.909020pt;}
.y81{bottom:326.909179pt;}
.y1e{bottom:342.719082pt;}
.ya9{bottom:345.307291pt;}
.y4f{bottom:345.307456pt;}
.y80{bottom:345.307616pt;}
.yd7{bottom:347.837633pt;}
.y1d{bottom:361.117420pt;}
.ya8{bottom:363.705729pt;}
.y4e{bottom:363.705894pt;}
.y7f{bottom:363.706054pt;}
.yd6{bottom:368.969460pt;}
.y1c{bottom:379.294105pt;}
.ya7{bottom:382.104167pt;}
.y4d{bottom:382.104331pt;}
.y7e{bottom:382.104491pt;}
.yd5{bottom:390.101300pt;}
.y1b{bottom:396.447820pt;}
.ya6{bottom:400.502600pt;}
.y4c{bottom:400.502769pt;}
.y7d{bottom:400.502929pt;}
.yd4{bottom:411.233140pt;}
.y1a{bottom:414.912927pt;}
.y4b{bottom:418.901207pt;}
.y7c{bottom:418.901367pt;}
.yd3{bottom:432.364980pt;}
.y19{bottom:436.071083pt;}
.y4a{bottom:437.299643pt;}
.ya5{bottom:437.299803pt;}
.y7b{bottom:437.299811pt;}
.yd2{bottom:453.496486pt;}
.y49{bottom:455.698081pt;}
.ya4{bottom:455.698241pt;}
.y7a{bottom:455.698248pt;}
.y18{bottom:457.229287pt;}
.y48{bottom:474.096518pt;}
.ya3{bottom:474.096678pt;}
.y79{bottom:474.096686pt;}
.yd1{bottom:474.627993pt;}
.y17{bottom:475.627727pt;}
.y47{bottom:492.494956pt;}
.ya2{bottom:492.495116pt;}
.y78{bottom:492.495123pt;}
.y16{bottom:494.026169pt;}
.yd0{bottom:495.760153pt;}
.y46{bottom:510.893393pt;}
.ya1{bottom:510.893553pt;}
.y77{bottom:510.893561pt;}
.y15{bottom:512.424609pt;}
.ycf{bottom:516.891660pt;}
.y45{bottom:529.291829pt;}
.ya0{bottom:529.291992pt;}
.y76{bottom:529.291998pt;}
.y14{bottom:530.823029pt;}
.yce{bottom:538.023833pt;}
.y44{bottom:547.690267pt;}
.y9f{bottom:547.690429pt;}
.y75{bottom:547.690436pt;}
.y13{bottom:549.221469pt;}
.ycd{bottom:559.155340pt;}
.y43{bottom:566.088704pt;}
.y9e{bottom:566.088867pt;}
.y74{bottom:566.088873pt;}
.y12{bottom:567.619909pt;}
.ycc{bottom:580.287500pt;}
.y42{bottom:584.487142pt;}
.y73{bottom:584.487299pt;}
.y9d{bottom:584.487305pt;}
.y11{bottom:586.018349pt;}
.ycb{bottom:601.419265pt;}
.y41{bottom:602.885580pt;}
.y72{bottom:602.885736pt;}
.y9c{bottom:602.885742pt;}
.y10{bottom:604.416829pt;}
.yca{bottom:619.817702pt;}
.y40{bottom:621.284016pt;}
.y71{bottom:621.284174pt;}
.y9b{bottom:621.284180pt;}
.yf{bottom:622.815266pt;}
.yc9{bottom:638.216140pt;}
.y3f{bottom:639.682454pt;}
.y70{bottom:639.682611pt;}
.y9a{bottom:639.682616pt;}
.ye{bottom:641.213704pt;}
.yc8{bottom:656.614580pt;}
.y3e{bottom:658.080891pt;}
.y6f{bottom:658.081049pt;}
.y99{bottom:658.081054pt;}
.yd{bottom:659.612141pt;}
.yc7{bottom:675.013014pt;}
.y3d{bottom:676.479329pt;}
.y6e{bottom:676.479487pt;}
.y98{bottom:676.479491pt;}
.yc{bottom:678.010579pt;}
.yc6{bottom:693.411451pt;}
.y3c{bottom:694.877767pt;}
.y97{bottom:694.877929pt;}
.y6d{bottom:694.877933pt;}
.yb{bottom:696.409016pt;}
.yc5{bottom:711.809889pt;}
.y3b{bottom:713.276203pt;}
.y96{bottom:713.276367pt;}
.y6c{bottom:713.276371pt;}
.ya{bottom:714.807454pt;}
.yc4{bottom:730.208327pt;}
.y3a{bottom:731.674641pt;}
.y95{bottom:731.674807pt;}
.y6b{bottom:731.674808pt;}
.y9{bottom:733.205891pt;}
.yc3{bottom:748.606767pt;}
.y39{bottom:750.073078pt;}
.y6a{bottom:750.073246pt;}
.y8{bottom:751.604329pt;}
.yc2{bottom:767.005211pt;}
.y38{bottom:768.471516pt;}
.y94{bottom:768.471673pt;}
.y69{bottom:768.471683pt;}
.y7{bottom:770.002767pt;}
.yc1{bottom:785.403649pt;}
.y37{bottom:786.869953pt;}
.y93{bottom:786.870117pt;}
.y68{bottom:786.870121pt;}
.y6{bottom:791.160967pt;}
.yc0{bottom:803.802087pt;}
.y36{bottom:805.268392pt;}
.y92{bottom:805.268554pt;}
.y67{bottom:805.268558pt;}
.y5{bottom:812.319176pt;}
.ybf{bottom:822.200527pt;}
.y35{bottom:823.666829pt;}
.y91{bottom:823.666992pt;}
.y66{bottom:823.666996pt;}
.y4{bottom:833.477380pt;}
.ybe{bottom:840.598957pt;}
.y34{bottom:842.065267pt;}
.y90{bottom:842.065429pt;}
.y65{bottom:842.065433pt;}
.y3{bottom:855.587399pt;}
.ybd{bottom:858.997390pt;}
.y33{bottom:860.463704pt;}
.y8f{bottom:860.463867pt;}
.y64{bottom:860.463873pt;}
.y2{bottom:875.500814pt;}
.ybc{bottom:877.395179pt;}
.y32{bottom:878.862142pt;}
.y63{bottom:878.862300pt;}
.y8e{bottom:878.862304pt;}
.y1{bottom:896.659017pt;}
.ybb{bottom:897.127083pt;}
.y31{bottom:897.260580pt;}
.y62{bottom:897.260743pt;}
.yba{bottom:915.658855pt;}
.y30{bottom:915.659017pt;}
.y61{bottom:915.659180pt;}
.ha{height:42.632813pt;}
.h9{height:43.031250pt;}
.hc{height:44.437500pt;}
.hd{height:44.593750pt;}
.h6{height:47.812499pt;}
.h2{height:52.593751pt;}
.h7{height:54.984374pt;}
.h1{height:56.843750pt;}
.h4{height:57.375000pt;}
.he{height:57.375023pt;}
.h3{height:71.054688pt;}
.h8{height:95.723627pt;}
.hb{height:95.723960pt;}
.h5{height:173.084640pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x3{left:85.039368pt;}
.x4{left:113.088305pt;}
.x1{left:126.281536pt;}
.x7{left:151.039368pt;}
.x6{left:161.039368pt;}
.x2{left:168.902630pt;}
.x8{left:197.892861pt;}
.x9{left:343.542268pt;}
.xa{left:352.272738pt;}
.x5{left:362.165455pt;}
}




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