
    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_4922157048ff34d90c2a3cdd.woff')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_f3fab4341e2cfd326b8d7f3a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_bd135f21ed4d88f64b7d1b86.woff')format("woff");}.ff3{font-family:ff3;line-height:0.964000;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_72255f12208588216ebf6b25.woff')format("woff");}.ff4{font-family:ff4;line-height:0.968000;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_6c6f4b5a8d6c59e414db086c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.967000;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_1da7ee68d7ec32b588911c0e.woff')format("woff");}.ff6{font-family:ff6;line-height:0.770000;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_c6adea78832ca41937656fca.woff')format("woff");}.ff7{font-family:ff7;line-height:0.785000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6babd1e9b1afcdbb1692001d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.539000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-1.447200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:75.835860px;}
.ls12{letter-spacing:-15.785435px;}
.ls14{letter-spacing:-7.024518px;}
.ls6{letter-spacing:-3.946359px;}
.ls15{letter-spacing:-2.788760px;}
.ls7{letter-spacing:-2.630906px;}
.ls11{letter-spacing:-2.499361px;}
.lsa{letter-spacing:-2.446742px;}
.ls1{letter-spacing:-2.288888px;}
.lsb{letter-spacing:-2.104725px;}
.ls0{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.357803px;}
.ls8{letter-spacing:43.575472px;}
.lse{letter-spacing:44.674078px;}
.lsc{letter-spacing:44.674138px;}
.lsf{letter-spacing:45.040360px;}
.ls13{letter-spacing:45.090814px;}
.ls9{letter-spacing:45.090874px;}
.lsd{letter-spacing:46.138967px;}
.ls10{letter-spacing:46.488411px;}
.ls3{letter-spacing:46.837795px;}
.ls2{letter-spacing:48.269008px;}
.ls5{letter-spacing:48.584717px;}
.ls4{letter-spacing:49.931741px;}
.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;}
}
.ws11{word-spacing:-59.261153px;}
.ws1{word-spacing:-55.249022px;}
.ws2{word-spacing:-44.199217px;}
.wsd{word-spacing:-44.188694px;}
.ws5{word-spacing:-39.463587px;}
.ws14{word-spacing:-32.491687px;}
.wse{word-spacing:-31.192019px;}
.ws8{word-spacing:-27.624511px;}
.ws15{word-spacing:-25.993349px;}
.ws7{word-spacing:-24.262213px;}
.ws9{word-spacing:-23.983337px;}
.ws4{word-spacing:-22.541601px;}
.wsa{word-spacing:-21.539752px;}
.ws12{word-spacing:-0.223627px;}
.wsc{word-spacing:-0.178902px;}
.ws13{word-spacing:-0.131545px;}
.wsf{word-spacing:-0.126283px;}
.ws3{word-spacing:-0.094713px;}
.ws6{word-spacing:-0.091556px;}
.wsb{word-spacing:-0.090503px;}
.ws0{word-spacing:0.000000px;}
.ws10{word-spacing:1494.526959px;}
._6{margin-left:-25.217232px;}
._c{margin-left:-15.400270px;}
._b{margin-left:-12.880915px;}
._d{margin-left:-11.153988px;}
._8{margin-left:-8.972441px;}
._3{margin-left:-6.866664px;}
._2{margin-left:-5.722220px;}
._5{margin-left:-4.025286px;}
._0{margin-left:-2.170497px;}
._1{margin-left:-1.144444px;}
._4{width:1.315453px;}
._7{width:2.959769px;}
._a{width:4.683012px;}
._9{width:13.812255px;}
.fc4{color:transparent;}
.fc3{color:rgb(33,33,33);}
.fc2{color:rgb(148,17,0);}
.fc1{color:rgb(83,88,95);}
.fc0{color:rgb(83,88,95);}
.fs9{font-size:75.770087px;}
.fs8{font-size:77.874812px;}
.fs6{font-size:79.979536px;}
.fs5{font-size:84.188986px;}
.fs0{font-size:86.819891px;}
.fs4{font-size:89.450797px;}
.fs10{font-size:90.503160px;}
.fse{font-size:91.555522px;}
.fsc{font-size:94.712609px;}
.fs7{font-size:95.764971px;}
.fs18{font-size:105.236232px;}
.fs15{font-size:126.283478px;}
.fs17{font-size:131.545290px;}
.fs12{font-size:139.438007px;}
.fs1{font-size:144.699819px;}
.fs14{font-size:178.901594px;}
.fs13{font-size:181.532500px;}
.fsd{font-size:197.317935px;}
.fsb{font-size:210.472464px;}
.fs16{font-size:223.626993px;}
.fs2{font-size:228.888805px;}
.fs11{font-size:234.150616px;}
.fsa{font-size:244.674239px;}
.fsf{font-size:249.936051px;}
.fs3{font-size:263.090580px;}
.y0{bottom:0.000000px;}
.y42{bottom:37.517400px;}
.y2{bottom:48.402705px;}
.y4b{bottom:56.476365px;}
.y32{bottom:78.706815px;}
.y41{bottom:82.637415px;}
.y26{bottom:86.941065px;}
.y1b{bottom:88.876515px;}
.y3e{bottom:89.534265px;}
.y1{bottom:91.284435px;}
.y10{bottom:110.149965px;}
.y31{bottom:119.485815px;}
.y3d{bottom:123.735915px;}
.y25{bottom:127.720065px;}
.y1a{bottom:130.971015px;}
.yf{bottom:136.291965px;}
.y4a{bottom:157.854165px;}
.y3c{bottom:157.937715px;}
.y30{bottom:160.264965px;}
.y19{bottom:165.172665px;}
.y24{bottom:168.499065px;}
.ye{bottom:173.412765px;}
.y3b{bottom:192.139515px;}
.y18{bottom:199.374465px;}
.yd{bottom:200.749215px;}
.y2f{bottom:201.043965px;}
.y23{bottom:201.385365px;}
.y49{bottom:201.921915px;}
.y3a{bottom:226.341315px;}
.y17{bottom:233.576265px;}
.y2e{bottom:233.930265px;}
.y22{bottom:234.271665px;}
.yc{bottom:237.990915px;}
.y48{bottom:245.989515px;}
.yb{bottom:264.541965px;}
.y2d{bottom:266.816565px;}
.y21{bottom:267.157965px;}
.y39{bottom:268.435815px;}
.y16{bottom:275.670765px;}
.y3{bottom:288.577515px;}
.y47{bottom:290.057265px;}
.ya{bottom:301.677315px;}
.y38{bottom:302.637615px;}
.y2c{bottom:307.595565px;}
.y20{bottom:307.937115px;}
.y15{bottom:309.872565px;}
.y46{bottom:334.124865px;}
.y37{bottom:336.839265px;}
.y2b{bottom:340.482015px;}
.y1f{bottom:340.823415px;}
.y9{bottom:341.140815px;}
.y14{bottom:344.074365px;}
.y5{bottom:368.488065px;}
.y36{bottom:371.041065px;}
.y2a{bottom:373.368315px;}
.y1e{bottom:373.709715px;}
.y45{bottom:378.192615px;}
.y13{bottom:378.276015px;}
.y8{bottom:380.604465px;}
.y40{bottom:390.406965px;}
.y35{bottom:405.242865px;}
.y29{bottom:406.254615px;}
.y1d{bottom:406.596015px;}
.y44{bottom:422.260215px;}
.y4{bottom:436.028115px;}
.y3f{bottom:455.607465px;}
.y7{bottom:463.717365px;}
.y43{bottom:466.327965px;}
.y1c{bottom:480.653715px;}
.y12{bottom:482.861715px;}
.y28{bottom:484.208865px;}
.y34{bottom:504.996915px;}
.y6{bottom:541.329015px;}
.y27{bottom:544.453215px;}
.y11{bottom:546.097515px;}
.y33{bottom:549.386265px;}
.h8{height:65.330653px;}
.h3{height:67.372236px;}
.ha{height:67.966619px;}
.h7{height:69.413819px;}
.h11{height:70.230452px;}
.hf{height:71.047085px;}
.hd{height:73.496984px;}
.h9{height:74.313618px;}
.h17{height:102.079145px;}
.h13{height:108.203894px;}
.h4{height:111.852960px;}
.h15{height:138.827637px;}
.h14{height:140.869220px;}
.he{height:153.118718px;}
.hc{height:163.326632px;}
.h18{height:173.534547px;}
.h5{height:177.617712px;}
.h12{height:181.700878px;}
.hb{height:189.867210px;}
.h10{height:193.950376px;}
.h6{height:204.158290px;}
.h16{height:249.370407px;}
.h2{height:710.344500px;}
.h0{height:892.913400px;}
.h1{height:893.250000px;}
.w0{width:1262.834700px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:64.851825px;}
.x2{left:69.499755px;}
.x6{left:90.546990px;}
.x3{left:93.177900px;}
.xa{left:102.758955px;}
.x9{left:108.373665px;}
.x4{left:112.311765px;}
.x7{left:114.225150px;}
.x5{left:116.856045px;}
.xb{left:664.509750px;}
.x8{left:688.336200px;}
@media print{
.v1{vertical-align:-1.286400pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:67.409653pt;}
.ls12{letter-spacing:-14.031498pt;}
.ls14{letter-spacing:-6.244016pt;}
.ls6{letter-spacing:-3.507874pt;}
.ls15{letter-spacing:-2.478898pt;}
.ls7{letter-spacing:-2.338583pt;}
.ls11{letter-spacing:-2.221654pt;}
.lsa{letter-spacing:-2.174882pt;}
.ls1{letter-spacing:-2.034567pt;}
.lsb{letter-spacing:-1.870866pt;}
.ls0{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.318047pt;}
.ls8{letter-spacing:38.733753pt;}
.lse{letter-spacing:39.710292pt;}
.lsc{letter-spacing:39.710345pt;}
.lsf{letter-spacing:40.035876pt;}
.ls13{letter-spacing:40.080723pt;}
.ls9{letter-spacing:40.080777pt;}
.lsd{letter-spacing:41.012415pt;}
.ls10{letter-spacing:41.323032pt;}
.ls3{letter-spacing:41.633596pt;}
.ls2{letter-spacing:42.905785pt;}
.ls5{letter-spacing:43.186415pt;}
.ls4{letter-spacing:44.383769pt;}
.ws11{word-spacing:-52.676581pt;}
.ws1{word-spacing:-49.110242pt;}
.ws2{word-spacing:-39.288193pt;}
.wsd{word-spacing:-39.278839pt;}
.ws5{word-spacing:-35.078744pt;}
.ws14{word-spacing:-28.881499pt;}
.wse{word-spacing:-27.726239pt;}
.ws8{word-spacing:-24.555121pt;}
.ws15{word-spacing:-23.105199pt;}
.ws7{word-spacing:-21.566412pt;}
.ws9{word-spacing:-21.318522pt;}
.ws4{word-spacing:-20.036979pt;}
.wsa{word-spacing:-19.146446pt;}
.ws12{word-spacing:-0.198780pt;}
.wsc{word-spacing:-0.159024pt;}
.ws13{word-spacing:-0.116929pt;}
.wsf{word-spacing:-0.112252pt;}
.ws3{word-spacing:-0.084189pt;}
.ws6{word-spacing:-0.081383pt;}
.wsb{word-spacing:-0.080447pt;}
.ws0{word-spacing:0.000000pt;}
.ws10{word-spacing:1328.468408pt;}
._6{margin-left:-22.415317pt;}
._c{margin-left:-13.689129pt;}
._b{margin-left:-11.449702pt;}
._d{margin-left:-9.914656pt;}
._8{margin-left:-7.975503pt;}
._3{margin-left:-6.103701pt;}
._2{margin-left:-5.086418pt;}
._5{margin-left:-3.578032pt;}
._0{margin-left:-1.929331pt;}
._1{margin-left:-1.017284pt;}
._4{width:1.169291pt;}
._7{width:2.630906pt;}
._a{width:4.162678pt;}
._9{width:12.277560pt;}
.fs9{font-size:67.351188pt;}
.fs8{font-size:69.222055pt;}
.fs6{font-size:71.092921pt;}
.fs5{font-size:74.834654pt;}
.fs0{font-size:77.173237pt;}
.fs4{font-size:79.511820pt;}
.fs10{font-size:80.447253pt;}
.fse{font-size:81.382686pt;}
.fsc{font-size:84.188986pt;}
.fs7{font-size:85.124419pt;}
.fs18{font-size:93.543317pt;}
.fs15{font-size:112.251981pt;}
.fs17{font-size:116.929147pt;}
.fs12{font-size:123.944895pt;}
.fs1{font-size:128.622061pt;}
.fs14{font-size:159.023639pt;}
.fs13{font-size:161.362222pt;}
.fsd{font-size:175.393720pt;}
.fsb{font-size:187.086635pt;}
.fs16{font-size:198.779549pt;}
.fs2{font-size:203.456715pt;}
.fs11{font-size:208.133881pt;}
.fsa{font-size:217.488213pt;}
.fsf{font-size:222.165379pt;}
.fs3{font-size:233.858293pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:33.348800pt;}
.y2{bottom:43.024627pt;}
.y4b{bottom:50.201213pt;}
.y32{bottom:69.961613pt;}
.y41{bottom:73.455480pt;}
.y26{bottom:77.280947pt;}
.y1b{bottom:79.001347pt;}
.y3e{bottom:79.586013pt;}
.y1{bottom:81.141720pt;}
.y10{bottom:97.911080pt;}
.y31{bottom:106.209613pt;}
.y3d{bottom:109.987480pt;}
.y25{bottom:113.528947pt;}
.y1a{bottom:116.418680pt;}
.yf{bottom:121.148413pt;}
.y4a{bottom:140.314813pt;}
.y3c{bottom:140.389080pt;}
.y30{bottom:142.457747pt;}
.y19{bottom:146.820147pt;}
.y24{bottom:149.776947pt;}
.ye{bottom:154.144680pt;}
.y3b{bottom:170.790680pt;}
.y18{bottom:177.221747pt;}
.yd{bottom:178.443747pt;}
.y2f{bottom:178.705747pt;}
.y23{bottom:179.009213pt;}
.y49{bottom:179.486147pt;}
.y3a{bottom:201.192280pt;}
.y17{bottom:207.623347pt;}
.y2e{bottom:207.938013pt;}
.y22{bottom:208.241480pt;}
.yc{bottom:211.547480pt;}
.y48{bottom:218.657347pt;}
.yb{bottom:235.148413pt;}
.y2d{bottom:237.170280pt;}
.y21{bottom:237.473747pt;}
.y39{bottom:238.609613pt;}
.y16{bottom:245.040680pt;}
.y3{bottom:256.513347pt;}
.y47{bottom:257.828680pt;}
.ya{bottom:268.157613pt;}
.y38{bottom:269.011213pt;}
.y2c{bottom:273.418280pt;}
.y20{bottom:273.721880pt;}
.y15{bottom:275.442280pt;}
.y46{bottom:296.999880pt;}
.y37{bottom:299.412680pt;}
.y2b{bottom:302.650680pt;}
.y1f{bottom:302.954147pt;}
.y9{bottom:303.236280pt;}
.y14{bottom:305.843880pt;}
.y5{bottom:327.544947pt;}
.y36{bottom:329.814280pt;}
.y2a{bottom:331.882947pt;}
.y1e{bottom:332.186413pt;}
.y45{bottom:336.171213pt;}
.y13{bottom:336.245347pt;}
.y8{bottom:338.315080pt;}
.y40{bottom:347.028413pt;}
.y35{bottom:360.215880pt;}
.y29{bottom:361.115213pt;}
.y1d{bottom:361.418680pt;}
.y44{bottom:375.342413pt;}
.y4{bottom:387.580547pt;}
.y3f{bottom:404.984413pt;}
.y7{bottom:412.193213pt;}
.y43{bottom:414.513747pt;}
.y1c{bottom:427.247747pt;}
.y12{bottom:429.210413pt;}
.y28{bottom:430.407880pt;}
.y34{bottom:448.886147pt;}
.y6{bottom:481.181347pt;}
.y27{bottom:483.958413pt;}
.y11{bottom:485.420013pt;}
.y33{bottom:488.343347pt;}
.h8{height:58.071691pt;}
.h3{height:59.886432pt;}
.ha{height:60.414772pt;}
.h7{height:61.701172pt;}
.h11{height:62.427068pt;}
.hf{height:63.152964pt;}
.hd{height:65.330653pt;}
.h9{height:66.056549pt;}
.h17{height:90.737018pt;}
.h13{height:96.181239pt;}
.h4{height:99.424853pt;}
.h15{height:123.402344pt;}
.h14{height:125.217085pt;}
.he{height:136.105527pt;}
.hc{height:145.179229pt;}
.h18{height:154.252930pt;}
.h5{height:157.882411pt;}
.h12{height:161.511892pt;}
.hb{height:168.770853pt;}
.h10{height:172.400334pt;}
.h6{height:181.474036pt;}
.h16{height:221.662584pt;}
.h2{height:631.417333pt;}
.h0{height:793.700800pt;}
.h1{height:794.000000pt;}
.w0{width:1122.519733pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:57.646067pt;}
.x2{left:61.777560pt;}
.x6{left:80.486213pt;}
.x3{left:82.824800pt;}
.xa{left:91.341293pt;}
.x9{left:96.332147pt;}
.x4{left:99.832680pt;}
.x7{left:101.533467pt;}
.x5{left:103.872040pt;}
.xb{left:590.675333pt;}
.x8{left:611.854400pt;}
}




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