
    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_f2c8c71efd3ef9e43f63f739.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.123000;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_61cb602dca853f067ddd4406.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_e0066660d35a64be9f893bc2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.062000;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_605c77c4ec8f9cc6a24a64d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_d73ca4dabffe7d3f1bea37ca.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.120000;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_9bb6bc653d08020fbf4e95fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.075000;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);}
.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;}
}
.ws0{word-spacing:-17.999999px;}
.ws2{word-spacing:-16.492499px;}
.ws3{word-spacing:-14.996249px;}
.ws6{word-spacing:-10.500723px;}
.ws4{word-spacing:-6.993414px;}
.ws5{word-spacing:-4.667118px;}
.ws1{word-spacing:0.000000px;}
._19{margin-left:-1.005018px;}
._e{width:1.211386px;}
._d{width:2.759051px;}
._10{width:4.276149px;}
._9{width:5.562641px;}
._1{width:6.827759px;}
._18{width:8.672299px;}
._1b{width:9.698654px;}
._12{width:10.712665px;}
._1f{width:11.768590px;}
._8{width:13.209205px;}
._5{width:15.194036px;}
._21{width:17.888982px;}
._f{width:19.312992px;}
._0{width:20.513940px;}
._2{width:21.659245px;}
._6{width:23.231915px;}
._c{width:25.037705px;}
._2a{width:26.063153px;}
._2b{width:27.088087px;}
._1d{width:28.677906px;}
._1c{width:30.503781px;}
._3{width:31.920668px;}
._17{width:33.344264px;}
._a{width:34.382137px;}
._11{width:35.735835px;}
._13{width:37.131135px;}
._23{width:38.282236px;}
._25{width:39.493910px;}
._20{width:40.713877px;}
._7{width:42.614454px;}
._16{width:43.880050px;}
._29{width:47.361157px;}
._4{width:48.487831px;}
._22{width:50.006035px;}
._27{width:51.305455px;}
._28{width:53.242552px;}
._34{width:54.897239px;}
._2f{width:56.306793px;}
._24{width:58.146823px;}
._2e{width:63.628662px;}
._2c{width:64.852411px;}
._26{width:66.245603px;}
._14{width:68.106324px;}
._30{width:72.304211px;}
._33{width:74.262138px;}
._b{width:77.211667px;}
._31{width:79.148890px;}
._1e{width:80.725890px;}
._15{width:88.220758px;}
._2d{width:93.395784px;}
._32{width:99.973464px;}
._35{width:117.258361px;}
._1a{width:129.375689px;}
.fc4{color:transparent;}
.fc3{color:rgb(1,52,44);}
.fc2{color:rgb(74,106,240);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:18.668471px;}
.fs4{font-size:27.973655px;}
.fs6{font-size:29.739314px;}
.fs7{font-size:42.002892px;}
.fs3{font-size:59.984997px;}
.fs0{font-size:65.969996px;}
.fs2{font-size:71.999997px;}
.fs1{font-size:83.969997px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yd0{bottom:5.720482px;}
.ycf{bottom:15.633587px;}
.yce{bottom:25.546692px;}
.ycb{bottom:30.015019px;}
.ycd{bottom:35.459796px;}
.yc9{bottom:35.977753px;}
.ycc{bottom:45.372901px;}
.yc8{bottom:54.326772px;}
.yca{bottom:55.199585px;}
.yc7{bottom:71.458487px;}
.y2b{bottom:130.047709px;}
.yd1{bottom:144.297559px;}
.y36{bottom:145.652502px;}
.y2a{bottom:152.547708px;}
.y35{bottom:168.152501px;}
.y29{bottom:175.047707px;}
.y82{bottom:188.182699px;}
.y34{bottom:190.652500px;}
.y28{bottom:197.547706px;}
.y65{bottom:205.259888px;}
.y81{bottom:210.682698px;}
.y33{bottom:213.152499px;}
.y27{bottom:220.047705px;}
.y64{bottom:227.759887px;}
.yab{bottom:232.564955px;}
.y80{bottom:233.182697px;}
.y32{bottom:235.652498px;}
.yc5{bottom:239.242418px;}
.y26{bottom:242.547704px;}
.y63{bottom:250.259886px;}
.yaa{bottom:255.064954px;}
.y7f{bottom:255.682696px;}
.y31{bottom:258.152497px;}
.y25{bottom:265.047703px;}
.yc3{bottom:269.253097px;}
.y62{bottom:272.759885px;}
.ya9{bottom:277.564953px;}
.y7e{bottom:278.182695px;}
.y30{bottom:280.652496px;}
.y24{bottom:287.547702px;}
.y61{bottom:295.259884px;}
.ya8{bottom:300.064952px;}
.y7d{bottom:300.682694px;}
.y2f{bottom:303.152495px;}
.y23{bottom:310.047701px;}
.y60{bottom:317.759884px;}
.ya7{bottom:322.564951px;}
.y2e{bottom:325.652494px;}
.yc6{bottom:331.352986px;}
.y22{bottom:332.547700px;}
.y5f{bottom:340.259883px;}
.ya6{bottom:345.064950px;}
.y7c{bottom:345.682692px;}
.y2d{bottom:348.152493px;}
.y21{bottom:355.047699px;}
.y5e{bottom:362.759882px;}
.yc4{bottom:362.938701px;}
.ya5{bottom:367.564949px;}
.y7b{bottom:368.182691px;}
.y2c{bottom:370.652493px;}
.y20{bottom:377.547698px;}
.y5d{bottom:385.259881px;}
.ya4{bottom:390.064948px;}
.y7a{bottom:390.682690px;}
.y1f{bottom:400.047697px;}
.y3a{bottom:401.247667px;}
.y5c{bottom:407.759880px;}
.ya3{bottom:412.564947px;}
.y79{bottom:413.182689px;}
.y1e{bottom:422.547696px;}
.y39{bottom:425.997666px;}
.y5b{bottom:430.259879px;}
.ya2{bottom:435.064946px;}
.y78{bottom:435.682688px;}
.ybe{bottom:441.031006px;}
.y1d{bottom:445.047695px;}
.y38{bottom:450.747665px;}
.y5a{bottom:452.759878px;}
.ya1{bottom:457.564945px;}
.y77{bottom:458.182687px;}
.ybd{bottom:463.531005px;}
.y1c{bottom:467.547695px;}
.y59{bottom:475.259877px;}
.ya0{bottom:480.064944px;}
.y76{bottom:480.682686px;}
.ybc{bottom:486.031005px;}
.y1b{bottom:490.047694px;}
.y58{bottom:497.759876px;}
.y9f{bottom:502.564943px;}
.y75{bottom:503.182685px;}
.ybb{bottom:508.531004px;}
.y1a{bottom:512.547693px;}
.y57{bottom:520.259875px;}
.y9e{bottom:525.064943px;}
.y74{bottom:525.682684px;}
.yba{bottom:531.031003px;}
.y19{bottom:535.047692px;}
.y56{bottom:542.759874px;}
.y9d{bottom:547.564942px;}
.y73{bottom:548.182684px;}
.yb9{bottom:553.531002px;}
.y18{bottom:557.547691px;}
.y55{bottom:565.259873px;}
.y9c{bottom:570.064941px;}
.y72{bottom:570.682683px;}
.yb8{bottom:576.031001px;}
.y17{bottom:580.047690px;}
.y54{bottom:587.759872px;}
.y9b{bottom:592.564940px;}
.y71{bottom:593.182682px;}
.y16{bottom:602.547689px;}
.y53{bottom:610.259871px;}
.y9a{bottom:615.064939px;}
.y70{bottom:615.682681px;}
.yb7{bottom:621.030999px;}
.y15{bottom:625.047688px;}
.y52{bottom:632.759870px;}
.y99{bottom:637.564938px;}
.y6f{bottom:638.182680px;}
.yb6{bottom:643.530998px;}
.y14{bottom:647.547687px;}
.y51{bottom:655.259869px;}
.y98{bottom:660.064937px;}
.y6e{bottom:660.682679px;}
.yb5{bottom:666.030997px;}
.y13{bottom:670.047686px;}
.y50{bottom:677.759869px;}
.y97{bottom:682.564936px;}
.y6d{bottom:683.182678px;}
.y12{bottom:692.547685px;}
.y4f{bottom:700.259868px;}
.y96{bottom:705.064935px;}
.y6c{bottom:705.682677px;}
.yb4{bottom:711.030995px;}
.y11{bottom:715.047684px;}
.y4e{bottom:722.759867px;}
.y95{bottom:727.564934px;}
.y6b{bottom:728.182676px;}
.yb3{bottom:733.530994px;}
.y10{bottom:737.547683px;}
.y4d{bottom:745.259866px;}
.y94{bottom:750.064933px;}
.y6a{bottom:750.682675px;}
.yb2{bottom:756.030993px;}
.yf{bottom:760.047682px;}
.y4c{bottom:767.759865px;}
.y93{bottom:772.564932px;}
.y69{bottom:773.182674px;}
.yb1{bottom:778.530992px;}
.ye{bottom:782.547681px;}
.y4b{bottom:790.259864px;}
.y68{bottom:795.682673px;}
.yb0{bottom:801.030991px;}
.yd{bottom:805.047680px;}
.yc1{bottom:811.125668px;}
.y4a{bottom:812.759863px;}
.y67{bottom:818.182672px;}
.yaf{bottom:823.530990px;}
.yc{bottom:827.547680px;}
.y49{bottom:835.259862px;}
.yc0{bottom:835.875667px;}
.y66{bottom:840.682671px;}
.yb{bottom:850.047679px;}
.y48{bottom:857.759861px;}
.ybf{bottom:860.625666px;}
.yae{bottom:868.530989px;}
.ya{bottom:872.547678px;}
.y84{bottom:877.034869px;}
.y47{bottom:880.259860px;}
.yad{bottom:891.030988px;}
.y9{bottom:895.047677px;}
.y83{bottom:901.784868px;}
.y46{bottom:902.759859px;}
.y92{bottom:903.300640px;}
.yac{bottom:913.530987px;}
.y8{bottom:917.547676px;}
.y91{bottom:925.800639px;}
.y7{bottom:940.047675px;}
.y86{bottom:941.586048px;}
.y90{bottom:948.300638px;}
.y45{bottom:948.957455px;}
.yc2{bottom:950.625641px;}
.y6{bottom:962.547674px;}
.y85{bottom:966.336047px;}
.y8f{bottom:970.800638px;}
.y44{bottom:971.457454px;}
.y5{bottom:985.047673px;}
.y8e{bottom:993.300637px;}
.y43{bottom:993.957453px;}
.y4{bottom:1007.547672px;}
.y8d{bottom:1015.800636px;}
.y42{bottom:1016.457452px;}
.y3{bottom:1030.047671px;}
.y8c{bottom:1038.300635px;}
.y41{bottom:1038.957451px;}
.y2{bottom:1052.547670px;}
.y8b{bottom:1060.800634px;}
.y40{bottom:1061.457450px;}
.y8a{bottom:1083.300633px;}
.y3f{bottom:1083.957449px;}
.y3b{bottom:1097.722859px;}
.y89{bottom:1105.800632px;}
.y3e{bottom:1106.457448px;}
.y88{bottom:1128.300631px;}
.y3d{bottom:1128.957447px;}
.y87{bottom:1150.800630px;}
.y3c{bottom:1151.457446px;}
.y37{bottom:1168.443815px;}
.ha{height:15.457494px;}
.h9{height:24.393027px;}
.hc{height:25.932682px;}
.hd{height:36.626522px;}
.h8{height:52.306917px;}
.hb{height:53.639998px;}
.h6{height:53.699577px;}
.h7{height:57.525837px;}
.h3{height:57.723747px;}
.h5{height:59.615998px;}
.h4{height:69.527157px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:43.535941px;}
.x5{left:46.302603px;}
.xa{left:119.519995px;}
.xb{left:127.235486px;}
.x4{left:155.157030px;}
.x2{left:469.058798px;}
.x3{left:470.161078px;}
.x6{left:473.700785px;}
.x9{left:496.232558px;}
.x8{left:618.425974px;}
.x7{left:620.329942px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-15.999999pt;}
.ws2{word-spacing:-14.659999pt;}
.ws3{word-spacing:-13.329999pt;}
.ws6{word-spacing:-9.333976pt;}
.ws4{word-spacing:-6.216368pt;}
.ws5{word-spacing:-4.148549pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-0.893349pt;}
._e{width:1.076788pt;}
._d{width:2.452490pt;}
._10{width:3.801021pt;}
._9{width:4.944569pt;}
._1{width:6.069119pt;}
._18{width:7.708710pt;}
._1b{width:8.621026pt;}
._12{width:9.522369pt;}
._1f{width:10.460968pt;}
._8{width:11.741515pt;}
._5{width:13.505810pt;}
._21{width:15.901317pt;}
._f{width:17.167104pt;}
._0{width:18.234614pt;}
._2{width:19.252662pt;}
._6{width:20.650591pt;}
._c{width:22.255738pt;}
._2a{width:23.167247pt;}
._2b{width:24.078299pt;}
._1d{width:25.491472pt;}
._1c{width:27.114472pt;}
._3{width:28.373927pt;}
._17{width:29.639346pt;}
._a{width:30.561899pt;}
._11{width:31.765187pt;}
._13{width:33.005453pt;}
._23{width:34.028654pt;}
._25{width:35.105698pt;}
._20{width:36.190113pt;}
._7{width:37.879515pt;}
._16{width:39.004489pt;}
._29{width:42.098806pt;}
._4{width:43.100295pt;}
._22{width:44.449809pt;}
._27{width:45.604849pt;}
._28{width:47.326713pt;}
._34{width:48.797546pt;}
._2f{width:50.050483pt;}
._24{width:51.686065pt;}
._2e{width:56.558811pt;}
._2c{width:57.646587pt;}
._26{width:58.884980pt;}
._14{width:60.538955pt;}
._30{width:64.270410pt;}
._33{width:66.010790pt;}
._b{width:68.632593pt;}
._31{width:70.354569pt;}
._1e{width:71.756347pt;}
._15{width:78.418451pt;}
._2d{width:83.018475pt;}
._32{width:88.865301pt;}
._35{width:104.229654pt;}
._1a{width:115.000612pt;}
.fs5{font-size:16.594196pt;}
.fs4{font-size:24.865471pt;}
.fs6{font-size:26.434946pt;}
.fs7{font-size:37.335904pt;}
.fs3{font-size:53.319997pt;}
.fs0{font-size:58.639997pt;}
.fs2{font-size:63.999997pt;}
.fs1{font-size:74.639997pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yd0{bottom:5.084873pt;}
.ycf{bottom:13.896522pt;}
.yce{bottom:22.708170pt;}
.ycb{bottom:26.680017pt;}
.ycd{bottom:31.519819pt;}
.yc9{bottom:31.980225pt;}
.ycc{bottom:40.331468pt;}
.yc8{bottom:48.290464pt;}
.yca{bottom:49.066298pt;}
.yc7{bottom:63.518656pt;}
.y2b{bottom:115.597963pt;}
.yd1{bottom:128.264497pt;}
.y36{bottom:129.468891pt;}
.y2a{bottom:135.597962pt;}
.y35{bottom:149.468890pt;}
.y29{bottom:155.597962pt;}
.y82{bottom:167.273510pt;}
.y34{bottom:169.468889pt;}
.y28{bottom:175.597961pt;}
.y65{bottom:182.453234pt;}
.y81{bottom:187.273509pt;}
.y33{bottom:189.468888pt;}
.y27{bottom:195.597960pt;}
.y64{bottom:202.453233pt;}
.yab{bottom:206.724404pt;}
.y80{bottom:207.273508pt;}
.y32{bottom:209.468887pt;}
.yc5{bottom:212.659927pt;}
.y26{bottom:215.597959pt;}
.y63{bottom:222.453232pt;}
.yaa{bottom:226.724403pt;}
.y7f{bottom:227.273507pt;}
.y31{bottom:229.468886pt;}
.y25{bottom:235.597958pt;}
.yc3{bottom:239.336086pt;}
.y62{bottom:242.453231pt;}
.ya9{bottom:246.724403pt;}
.y7e{bottom:247.273506pt;}
.y30{bottom:249.468886pt;}
.y24{bottom:255.597957pt;}
.y61{bottom:262.453231pt;}
.ya8{bottom:266.724402pt;}
.y7d{bottom:267.273506pt;}
.y2f{bottom:269.468885pt;}
.y23{bottom:275.597957pt;}
.y60{bottom:282.453230pt;}
.ya7{bottom:286.724401pt;}
.y2e{bottom:289.468884pt;}
.yc6{bottom:294.535988pt;}
.y22{bottom:295.597956pt;}
.y5f{bottom:302.453229pt;}
.ya6{bottom:306.724400pt;}
.y7c{bottom:307.273504pt;}
.y2d{bottom:309.468883pt;}
.y21{bottom:315.597955pt;}
.y5e{bottom:322.453228pt;}
.yc4{bottom:322.612179pt;}
.ya5{bottom:326.724399pt;}
.y7b{bottom:327.273503pt;}
.y2c{bottom:329.468882pt;}
.y20{bottom:335.597954pt;}
.y5d{bottom:342.453227pt;}
.ya4{bottom:346.724398pt;}
.y7a{bottom:347.273502pt;}
.y1f{bottom:355.597953pt;}
.y3a{bottom:356.664593pt;}
.y5c{bottom:362.453226pt;}
.ya3{bottom:366.724398pt;}
.y79{bottom:367.273501pt;}
.y1e{bottom:375.597952pt;}
.y39{bottom:378.664592pt;}
.y5b{bottom:382.453226pt;}
.ya2{bottom:386.724397pt;}
.y78{bottom:387.273501pt;}
.ybe{bottom:392.027561pt;}
.y1d{bottom:395.597952pt;}
.y38{bottom:400.664591pt;}
.y5a{bottom:402.453225pt;}
.ya1{bottom:406.724396pt;}
.y77{bottom:407.273500pt;}
.ybd{bottom:412.027560pt;}
.y1c{bottom:415.597951pt;}
.y59{bottom:422.453224pt;}
.ya0{bottom:426.724395pt;}
.y76{bottom:427.273499pt;}
.ybc{bottom:432.027560pt;}
.y1b{bottom:435.597950pt;}
.y58{bottom:442.453223pt;}
.y9f{bottom:446.724394pt;}
.y75{bottom:447.273498pt;}
.ybb{bottom:452.027559pt;}
.y1a{bottom:455.597949pt;}
.y57{bottom:462.453222pt;}
.y9e{bottom:466.724393pt;}
.y74{bottom:467.273497pt;}
.yba{bottom:472.027558pt;}
.y19{bottom:475.597948pt;}
.y56{bottom:482.453221pt;}
.y9d{bottom:486.724393pt;}
.y73{bottom:487.273496pt;}
.yb9{bottom:492.027557pt;}
.y18{bottom:495.597947pt;}
.y55{bottom:502.453221pt;}
.y9c{bottom:506.724392pt;}
.y72{bottom:507.273496pt;}
.yb8{bottom:512.027556pt;}
.y17{bottom:515.597947pt;}
.y54{bottom:522.453220pt;}
.y9b{bottom:526.724391pt;}
.y71{bottom:527.273495pt;}
.y16{bottom:535.597946pt;}
.y53{bottom:542.453219pt;}
.y9a{bottom:546.724390pt;}
.y70{bottom:547.273494pt;}
.yb7{bottom:552.027555pt;}
.y15{bottom:555.597945pt;}
.y52{bottom:562.453218pt;}
.y99{bottom:566.724389pt;}
.y6f{bottom:567.273493pt;}
.yb6{bottom:572.027554pt;}
.y14{bottom:575.597944pt;}
.y51{bottom:582.453217pt;}
.y98{bottom:586.724388pt;}
.y6e{bottom:587.273492pt;}
.yb5{bottom:592.027553pt;}
.y13{bottom:595.597943pt;}
.y50{bottom:602.453216pt;}
.y97{bottom:606.724388pt;}
.y6d{bottom:607.273491pt;}
.y12{bottom:615.597942pt;}
.y4f{bottom:622.453216pt;}
.y96{bottom:626.724387pt;}
.y6c{bottom:627.273491pt;}
.yb4{bottom:632.027551pt;}
.y11{bottom:635.597942pt;}
.y4e{bottom:642.453215pt;}
.y95{bottom:646.724386pt;}
.y6b{bottom:647.273490pt;}
.yb3{bottom:652.027550pt;}
.y10{bottom:655.597941pt;}
.y4d{bottom:662.453214pt;}
.y94{bottom:666.724385pt;}
.y6a{bottom:667.273489pt;}
.yb2{bottom:672.027550pt;}
.yf{bottom:675.597940pt;}
.y4c{bottom:682.453213pt;}
.y93{bottom:686.724384pt;}
.y69{bottom:687.273488pt;}
.yb1{bottom:692.027549pt;}
.ye{bottom:695.597939pt;}
.y4b{bottom:702.453212pt;}
.y68{bottom:707.273487pt;}
.yb0{bottom:712.027548pt;}
.yd{bottom:715.597938pt;}
.yc1{bottom:721.000594pt;}
.y4a{bottom:722.453211pt;}
.y67{bottom:727.273486pt;}
.yaf{bottom:732.027547pt;}
.yc{bottom:735.597937pt;}
.y49{bottom:742.453211pt;}
.yc0{bottom:743.000593pt;}
.y66{bottom:747.273486pt;}
.yb{bottom:755.597937pt;}
.y48{bottom:762.453210pt;}
.ybf{bottom:765.000592pt;}
.yae{bottom:772.027545pt;}
.ya{bottom:775.597936pt;}
.y84{bottom:779.586550pt;}
.y47{bottom:782.453209pt;}
.yad{bottom:792.027545pt;}
.y9{bottom:795.597935pt;}
.y83{bottom:801.586549pt;}
.y46{bottom:802.453208pt;}
.y92{bottom:802.933903pt;}
.yac{bottom:812.027544pt;}
.y8{bottom:815.597934pt;}
.y91{bottom:822.933902pt;}
.y7{bottom:835.597933pt;}
.y86{bottom:836.965376pt;}
.y90{bottom:842.933901pt;}
.y45{bottom:843.517738pt;}
.yc2{bottom:845.000570pt;}
.y6{bottom:855.597932pt;}
.y85{bottom:858.965375pt;}
.y8f{bottom:862.933900pt;}
.y44{bottom:863.517737pt;}
.y5{bottom:875.597932pt;}
.y8e{bottom:882.933899pt;}
.y43{bottom:883.517736pt;}
.y4{bottom:895.597931pt;}
.y8d{bottom:902.933898pt;}
.y42{bottom:903.517735pt;}
.y3{bottom:915.597930pt;}
.y8c{bottom:922.933898pt;}
.y41{bottom:923.517734pt;}
.y2{bottom:935.597929pt;}
.y8b{bottom:942.933897pt;}
.y40{bottom:943.517733pt;}
.y8a{bottom:962.933896pt;}
.y3f{bottom:963.517733pt;}
.y3b{bottom:975.753652pt;}
.y89{bottom:982.933895pt;}
.y3e{bottom:983.517732pt;}
.y88{bottom:1002.933894pt;}
.y3d{bottom:1003.517731pt;}
.y87{bottom:1022.933893pt;}
.y3c{bottom:1023.517730pt;}
.y37{bottom:1038.616725pt;}
.ha{height:13.739994pt;}
.h9{height:21.682691pt;}
.hc{height:23.051273pt;}
.hd{height:32.556908pt;}
.h8{height:46.495038pt;}
.hb{height:47.679998pt;}
.h6{height:47.732957pt;}
.h7{height:51.134077pt;}
.h3{height:51.309997pt;}
.h5{height:52.991998pt;}
.h4{height:61.801917pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:38.698614pt;}
.x5{left:41.157869pt;}
.xa{left:106.239996pt;}
.xb{left:113.098210pt;}
.x4{left:137.917360pt;}
.x2{left:416.941154pt;}
.x3{left:417.920959pt;}
.x6{left:421.067365pt;}
.x9{left:441.095607pt;}
.x8{left:549.711977pt;}
.x7{left:551.404393pt;}
}




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