
    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_657674e9e411e8442cd0931e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_b5534e98f728b60a5be0e2f0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.963000;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_294e5bdd521903a66256b26c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_8a45ab47d000cf9056aac2f0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948500;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_8b290ecfd4cdf4f271fe6097.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.912500;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_5a43ff775e2d178585939ca3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.998000;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_c851af27335d3af317366758.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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);}
.v2{vertical-align:-53.970000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:77.724000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.990649px;}
.ls0{letter-spacing:264.494922px;}
.ls1{letter-spacing:271.778922px;}
.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:-292.774428px;}
.ws0{word-spacing:-281.300335px;}
.ws2b{word-spacing:-178.490640px;}
.ws2{word-spacing:-165.558697px;}
.ws3{word-spacing:-159.561746px;}
.ws6{word-spacing:-148.722300px;}
.ws5{word-spacing:-140.650624px;}
.wsb{word-spacing:-135.652886px;}
.ws16{word-spacing:-116.003394px;}
.ws1d{word-spacing:-115.854672px;}
.ws21{word-spacing:-115.261334px;}
.ws1a{word-spacing:-114.813616px;}
.ws18{word-spacing:-113.908905px;}
.ws36{word-spacing:-113.028948px;}
.ws12{word-spacing:-111.690447px;}
.ws23{word-spacing:-111.544472px;}
.ws1b{word-spacing:-110.935334px;}
.ws4{word-spacing:-110.798113px;}
.ws10{word-spacing:-110.649391px;}
.wse{word-spacing:-108.416150px;}
.wsf{word-spacing:-108.347181px;}
.ws1e{word-spacing:-108.345017px;}
.ws30{word-spacing:-103.292640px;}
.wsc{word-spacing:-86.184573px;}
.ws17{word-spacing:-86.035851px;}
.ws2c{word-spacing:-85.143517px;}
.ws22{word-spacing:-84.399905px;}
.ws20{word-spacing:-84.251183px;}
.ws14{word-spacing:-83.061405px;}
.ws15{word-spacing:-82.912682px;}
.ws26{word-spacing:-82.615238px;}
.ws19{word-spacing:-81.722904px;}
.ws24{word-spacing:-80.533125px;}
.ws1c{word-spacing:-80.086959px;}
.ws13{word-spacing:-78.451013px;}
.ws11{word-spacing:-78.448078px;}
.wsa{word-spacing:-78.153569px;}
.ws8{word-spacing:-77.409957px;}
.wsd{word-spacing:-77.406375px;}
.ws25{word-spacing:-77.336546px;}
.ws7{word-spacing:-76.666346px;}
.ws2f{word-spacing:-74.267408px;}
.ws9{word-spacing:-73.989344px;}
.ws28{word-spacing:-71.758510px;}
.ws29{word-spacing:-69.825120px;}
.ws33{word-spacing:-69.515947px;}
.ws27{word-spacing:-69.230231px;}
.ws2a{word-spacing:-68.188373px;}
.ws1f{word-spacing:-64.529050px;}
.ws34{word-spacing:-56.707909px;}
.ws31{word-spacing:-53.451515px;}
.ws2e{word-spacing:-50.458455px;}
.ws2d{word-spacing:-50.355162px;}
.ws32{word-spacing:-42.195043px;}
.ws37{word-spacing:0.000000px;}
.ws35{word-spacing:8839.879862px;}
._2a{margin-left:-37.478020px;}
._1{margin-left:-28.870298px;}
._8{margin-left:-23.052075px;}
._d{margin-left:-16.954342px;}
._10{margin-left:-13.922270px;}
._25{margin-left:-12.341759px;}
._a{margin-left:-10.708842px;}
._4{margin-left:-9.623433px;}
._19{margin-left:-8.315463px;}
._23{margin-left:-6.963229px;}
._7{margin-left:-5.922112px;}
._2{margin-left:-4.071452px;}
._0{margin-left:-2.220792px;}
._b{margin-left:-1.069038px;}
._18{width:27.531565px;}
._22{width:29.028830px;}
._c{width:30.031862px;}
._1a{width:31.147654px;}
._e{width:33.313795px;}
._f{width:34.698216px;}
._17{width:35.898024px;}
._12{width:37.095587px;}
._1d{width:38.452077px;}
._13{width:40.006299px;}
._14{width:41.362738px;}
._11{width:43.095149px;}
._1c{width:44.645236px;}
._1f{width:46.083264px;}
._27{width:47.518966px;}
._1b{width:49.014625px;}
._24{width:50.133042px;}
._26{width:51.465101px;}
._16{width:52.786025px;}
._9{width:54.973961px;}
._15{width:60.483064px;}
._20{width:66.109984px;}
._21{width:71.581334px;}
._1e{width:73.942867px;}
._28{width:76.595400px;}
._3{width:78.467988px;}
._29{width:79.480463px;}
._6{width:84.390101px;}
._5{width:88.831685px;}
.fc1{color:rgb(79,70,229);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:103.292640px;}
.fs3{font-size:123.975120px;}
.fs4{font-size:148.722300px;}
.fs2{font-size:149.923080px;}
.fs5{font-size:178.490640px;}
.fs1{font-size:214.176840px;}
.fs0{font-size:370.132020px;}
.y0{bottom:0.000000px;}
.y35{bottom:37.590000px;}
.y1f{bottom:170.764500px;}
.y34{bottom:185.410500px;}
.y33{bottom:218.287500px;}
.y32{bottom:251.164500px;}
.y31{bottom:292.053000px;}
.y30{bottom:324.930000px;}
.y2f{bottom:357.807000px;}
.y2e{bottom:440.338500px;}
.y2d{bottom:541.017000px;}
.y2c{bottom:585.849000px;}
.y2b{bottom:667.489500px;}
.y2a{bottom:790.993500px;}
.y29{bottom:828.352500px;}
.y1e{bottom:1770.615000px;}
.y28{bottom:1922.890500px;}
.y1d{bottom:3014.334000px;}
.y1c{bottom:3059.166000px;}
.y1b{bottom:3122.496000px;}
.y1a{bottom:3167.326500px;}
.y19{bottom:3212.158500px;}
.y18{bottom:3256.990500px;}
.y17{bottom:3338.631000px;}
.y16{bottom:3455.836500px;}
.y15{bottom:3500.668500px;}
.y14{bottom:3545.500500px;}
.y13{bottom:3599.580000px;}
.y12{bottom:3644.412000px;}
.y11{bottom:3698.493000px;}
.y10{bottom:3743.325000px;}
.y27{bottom:3801.634500px;}
.yf{bottom:3825.151500px;}
.y26{bottom:3846.466500px;}
.ye{bottom:3869.983500px;}
.y25{bottom:3891.298500px;}
.y24{bottom:3936.129000px;}
.yd{bottom:3951.622500px;}
.y23{bottom:4017.957000px;}
.yc{bottom:4045.702500px;}
.y22{bottom:4072.036500px;}
.yb{bottom:4090.534500px;}
.y21{bottom:4126.117500px;}
.ya{bottom:4153.863000px;}
.y20{bottom:4180.198500px;}
.y9{bottom:4198.695000px;}
.y8{bottom:4262.025000px;}
.y7{bottom:4306.857000px;}
.y6{bottom:4388.496000px;}
.y5{bottom:4577.955000px;}
.y4{bottom:4637.190000px;}
.y3{bottom:4704.438000px;}
.y2{bottom:4795.930500px;}
.y1{bottom:4910.998500px;}
.h8{height:78.812284px;}
.h4{height:91.741589px;}
.h7{height:94.593017px;}
.h9{height:112.504781px;}
.h6{height:113.475115px;}
.h5{height:135.117414px;}
.h3{height:188.667079px;}
.h2{height:280.189939px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x7{left:71.533500px;}
.x14{left:99.976500px;}
.x9{left:136.987500px;}
.xc{left:229.273500px;}
.xb{left:331.855500px;}
.x8{left:452.283000px;}
.xa{left:456.522000px;}
.x6{left:604.735500px;}
.x1{left:719.058000px;}
.x5{left:741.358500px;}
.x3{left:912.219000px;}
.x2{left:998.277000px;}
.x4{left:1515.612000px;}
.xe{left:1823.746500px;}
.x13{left:1870.426500px;}
.xf{left:1889.202000px;}
.xd{left:2087.539500px;}
.x10{left:2350.600500px;}
.x11{left:2449.585500px;}
.x12{left:2543.472000px;}
@media print{
.v2{vertical-align:-47.973333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:69.088000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.658354pt;}
.ls0{letter-spacing:235.106597pt;}
.ls1{letter-spacing:241.581264pt;}
.ws1{word-spacing:-260.243936pt;}
.ws0{word-spacing:-250.044742pt;}
.ws2b{word-spacing:-158.658347pt;}
.ws2{word-spacing:-147.163287pt;}
.ws3{word-spacing:-141.832663pt;}
.ws6{word-spacing:-132.197600pt;}
.ws5{word-spacing:-125.022777pt;}
.wsb{word-spacing:-120.580343pt;}
.ws16{word-spacing:-103.114128pt;}
.ws1d{word-spacing:-102.981930pt;}
.ws21{word-spacing:-102.454519pt;}
.ws1a{word-spacing:-102.056547pt;}
.ws18{word-spacing:-101.252360pt;}
.ws36{word-spacing:-100.470176pt;}
.ws12{word-spacing:-99.280398pt;}
.ws23{word-spacing:-99.150642pt;}
.ws1b{word-spacing:-98.609186pt;}
.ws4{word-spacing:-98.487212pt;}
.ws10{word-spacing:-98.355014pt;}
.wse{word-spacing:-96.369911pt;}
.wsf{word-spacing:-96.308606pt;}
.ws1e{word-spacing:-96.306682pt;}
.ws30{word-spacing:-91.815680pt;}
.wsc{word-spacing:-76.608509pt;}
.ws17{word-spacing:-76.476312pt;}
.ws2c{word-spacing:-75.683126pt;}
.ws22{word-spacing:-75.022138pt;}
.ws20{word-spacing:-74.889940pt;}
.ws14{word-spacing:-73.832360pt;}
.ws15{word-spacing:-73.700162pt;}
.ws26{word-spacing:-73.435767pt;}
.ws19{word-spacing:-72.642581pt;}
.ws24{word-spacing:-71.585000pt;}
.ws1c{word-spacing:-71.188408pt;}
.ws13{word-spacing:-69.734234pt;}
.ws11{word-spacing:-69.731625pt;}
.wsa{word-spacing:-69.469839pt;}
.ws8{word-spacing:-68.808851pt;}
.wsd{word-spacing:-68.805666pt;}
.ws25{word-spacing:-68.743596pt;}
.ws7{word-spacing:-68.147863pt;}
.ws2f{word-spacing:-66.015474pt;}
.ws9{word-spacing:-65.768306pt;}
.ws28{word-spacing:-63.785342pt;}
.ws29{word-spacing:-62.066773pt;}
.ws33{word-spacing:-61.791953pt;}
.ws27{word-spacing:-61.537983pt;}
.ws2a{word-spacing:-60.611887pt;}
.ws1f{word-spacing:-57.359156pt;}
.ws34{word-spacing:-50.407031pt;}
.ws31{word-spacing:-47.512457pt;}
.ws2e{word-spacing:-44.851960pt;}
.ws2d{word-spacing:-44.760144pt;}
.ws32{word-spacing:-37.506705pt;}
.ws37{word-spacing:0.000000pt;}
.ws35{word-spacing:7857.670988pt;}
._2a{margin-left:-33.313795pt;}
._1{margin-left:-25.662487pt;}
._8{margin-left:-20.490733pt;}
._d{margin-left:-15.070526pt;}
._10{margin-left:-12.375351pt;}
._25{margin-left:-10.970452pt;}
._a{margin-left:-9.518971pt;}
._4{margin-left:-8.554162pt;}
._19{margin-left:-7.391523pt;}
._23{margin-left:-6.189537pt;}
._7{margin-left:-5.264100pt;}
._2{margin-left:-3.619069pt;}
._0{margin-left:-1.974037pt;}
._b{margin-left:-0.950256pt;}
._18{width:24.472502pt;}
._22{width:25.803404pt;}
._c{width:26.694989pt;}
._1a{width:27.686804pt;}
._e{width:29.612262pt;}
._f{width:30.842859pt;}
._17{width:31.909355pt;}
._12{width:32.973855pt;}
._1d{width:34.179624pt;}
._13{width:35.561154pt;}
._14{width:36.766879pt;}
._11{width:38.306799pt;}
._1c{width:39.684654pt;}
._1f{width:40.962901pt;}
._27{width:42.239081pt;}
._1b{width:43.568555pt;}
._24{width:44.562704pt;}
._26{width:45.746757pt;}
._16{width:46.920911pt;}
._9{width:48.865743pt;}
._15{width:53.762724pt;}
._20{width:58.764430pt;}
._21{width:63.627852pt;}
._1e{width:65.726993pt;}
._28{width:68.084800pt;}
._3{width:69.749323pt;}
._29{width:70.649301pt;}
._6{width:75.013423pt;}
._5{width:78.961498pt;}
.fs6{font-size:91.815680pt;}
.fs3{font-size:110.200107pt;}
.fs4{font-size:132.197600pt;}
.fs2{font-size:133.264960pt;}
.fs5{font-size:158.658347pt;}
.fs1{font-size:190.379413pt;}
.fs0{font-size:329.006240pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:33.413333pt;}
.y1f{bottom:151.790667pt;}
.y34{bottom:164.809333pt;}
.y33{bottom:194.033333pt;}
.y32{bottom:223.257333pt;}
.y31{bottom:259.602667pt;}
.y30{bottom:288.826667pt;}
.y2f{bottom:318.050667pt;}
.y2e{bottom:391.412000pt;}
.y2d{bottom:480.904000pt;}
.y2c{bottom:520.754667pt;}
.y2b{bottom:593.324000pt;}
.y2a{bottom:703.105333pt;}
.y29{bottom:736.313333pt;}
.y1e{bottom:1573.880000pt;}
.y28{bottom:1709.236000pt;}
.y1d{bottom:2679.408000pt;}
.y1c{bottom:2719.258667pt;}
.y1b{bottom:2775.552000pt;}
.y1a{bottom:2815.401333pt;}
.y19{bottom:2855.252000pt;}
.y18{bottom:2895.102667pt;}
.y17{bottom:2967.672000pt;}
.y16{bottom:3071.854667pt;}
.y15{bottom:3111.705333pt;}
.y14{bottom:3151.556000pt;}
.y13{bottom:3199.626667pt;}
.y12{bottom:3239.477333pt;}
.y11{bottom:3287.549333pt;}
.y10{bottom:3327.400000pt;}
.y27{bottom:3379.230667pt;}
.yf{bottom:3400.134667pt;}
.y26{bottom:3419.081333pt;}
.ye{bottom:3439.985333pt;}
.y25{bottom:3458.932000pt;}
.y24{bottom:3498.781333pt;}
.yd{bottom:3512.553333pt;}
.y23{bottom:3571.517333pt;}
.yc{bottom:3596.180000pt;}
.y22{bottom:3619.588000pt;}
.yb{bottom:3636.030667pt;}
.y21{bottom:3667.660000pt;}
.ya{bottom:3692.322667pt;}
.y20{bottom:3715.732000pt;}
.y9{bottom:3732.173333pt;}
.y8{bottom:3788.466667pt;}
.y7{bottom:3828.317333pt;}
.y6{bottom:3900.885333pt;}
.y5{bottom:4069.293333pt;}
.y4{bottom:4121.946667pt;}
.y3{bottom:4181.722667pt;}
.y2{bottom:4263.049333pt;}
.y1{bottom:4365.332000pt;}
.h8{height:70.055364pt;}
.h4{height:81.548079pt;}
.h7{height:84.082681pt;}
.h9{height:100.004250pt;}
.h6{height:100.866769pt;}
.h5{height:120.104368pt;}
.h3{height:167.704070pt;}
.h2{height:249.057724pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x7{left:63.585333pt;}
.x14{left:88.868000pt;}
.x9{left:121.766667pt;}
.xc{left:203.798667pt;}
.xb{left:294.982667pt;}
.x8{left:402.029333pt;}
.xa{left:405.797333pt;}
.x6{left:537.542667pt;}
.x1{left:639.162667pt;}
.x5{left:658.985333pt;}
.x3{left:810.861333pt;}
.x2{left:887.357333pt;}
.x4{left:1347.210667pt;}
.xe{left:1621.108000pt;}
.x13{left:1662.601333pt;}
.xf{left:1679.290667pt;}
.xd{left:1855.590667pt;}
.x10{left:2089.422667pt;}
.x11{left:2177.409333pt;}
.x12{left:2260.864000pt;}
}




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