
    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_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_610043151915d2e73e7b0059.woff2')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_b5c52a870ecffd7a0f097de9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_76592d4250a97727692e811e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_d89543c896ca32d789ed1ab3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_495d862db37710bb72c4140c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.750000;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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-9.281250px;}
._10{margin-left:-7.886210px;}
._19{margin-left:-6.609388px;}
._0{margin-left:-5.343750px;}
._2{margin-left:-3.972643px;}
._3{margin-left:-2.671875px;}
._1{margin-left:-1.300770px;}
._4{width:4.405751px;}
._a{width:5.468074px;}
._7{width:8.064510px;}
._6{width:9.079735px;}
._5{width:13.424039px;}
._9{width:18.062625px;}
._8{width:22.399390px;}
._11{width:23.405487px;}
._b{width:26.862932px;}
._f{width:27.959486px;}
._d{width:31.499994px;}
._c{width:35.999997px;}
._e{width:40.499999px;}
._14{width:44.748747px;}
._15{width:45.753781px;}
._13{width:62.618383px;}
._12{width:67.337307px;}
._18{width:72.000001px;}
._17{width:94.500001px;}
._16{width:99.000001px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:96.000003px;}
.fs1{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y2f{bottom:3.121589px;}
.ya9{bottom:3.569086px;}
.y8e{bottom:3.569092px;}
.y9e{bottom:3.569094px;}
.y92{bottom:3.569101px;}
.y96{bottom:3.569467px;}
.y9d{bottom:22.542474px;}
.y91{bottom:22.542481px;}
.ya3{bottom:22.542489px;}
.y95{bottom:22.542847px;}
.y9c{bottom:41.515869px;}
.yac{bottom:82.322754px;}
.y7a{bottom:82.323120px;}
.y2{bottom:82.323198px;}
.y31{bottom:82.323303px;}
.y111{bottom:82.323486px;}
.yf4{bottom:108.454099px;}
.ybe{bottom:118.201171px;}
.y52{bottom:118.803037px;}
.y2e{bottom:122.388787px;}
.ydb{bottom:125.104978px;}
.y78{bottom:125.702643px;}
.yab{bottom:128.364258px;}
.yf3{bottom:139.501462px;}
.yaa{bottom:145.937263px;}
.ybd{bottom:149.248534px;}
.y51{bottom:149.850405px;}
.y2d{bottom:151.438114px;}
.y10f{bottom:152.548096px;}
.yda{bottom:156.152341px;}
.y77{bottom:156.750006px;}
.ya8{bottom:162.466557px;}
.yf2{bottom:169.199707px;}
.y10e{bottom:173.246338px;}
.y2c{bottom:177.686648px;}
.ybc{bottom:180.295898px;}
.y50{bottom:180.897760px;}
.ya7{bottom:181.439946px;}
.y13c{bottom:185.392826px;}
.yd9{bottom:187.199704px;}
.y76{bottom:187.797369px;}
.y10d{bottom:193.944580px;}
.y2b{bottom:194.935182px;}
.ya6{bottom:201.538326px;}
.ybb{bottom:211.343259px;}
.y4f{bottom:211.945123px;}
.y2a{bottom:212.183715px;}
.y10c{bottom:214.642823px;}
.yd8{bottom:218.247067px;}
.yf1{bottom:218.247069px;}
.y75{bottom:218.844733px;}
.ya5{bottom:221.636712px;}
.y13b{bottom:222.293707px;}
.y29{bottom:229.432251px;}
.ya4{bottom:240.610101px;}
.yba{bottom:242.390623px;}
.y4e{bottom:242.992306px;}
.y28{bottom:246.680786px;}
.yd7{bottom:249.294429px;}
.yf0{bottom:249.294433px;}
.y74{bottom:249.892096px;}
.ya2{bottom:260.708495px;}
.y10b{bottom:262.341068px;}
.y27{bottom:263.929321px;}
.y13a{bottom:269.912836px;}
.yb9{bottom:273.437986px;}
.y4d{bottom:274.039669px;}
.yd6{bottom:280.341793px;}
.yef{bottom:280.341796px;}
.y73{bottom:280.939459px;}
.y26{bottom:281.177865px;}
.y139{bottom:290.611081px;}
.y25{bottom:298.426401px;}
.ya1{bottom:298.655271px;}
.yb8{bottom:304.485349px;}
.y4c{bottom:305.087033px;}
.y138{bottom:311.309326px;}
.y10a{bottom:311.388423px;}
.yd5{bottom:311.389156px;}
.yee{bottom:311.389159px;}
.y72{bottom:311.986823px;}
.y24{bottom:315.674936px;}
.ya0{bottom:318.753657px;}
.y137{bottom:332.086675px;}
.y23{bottom:332.923471px;}
.yb7{bottom:335.532712px;}
.y4b{bottom:336.134394px;}
.y9f{bottom:337.727046px;}
.y109{bottom:342.435786px;}
.yd4{bottom:342.436519px;}
.yed{bottom:342.436523px;}
.y71{bottom:343.034183px;}
.y22{bottom:350.172006px;}
.y136{bottom:352.784917px;}
.y9b{bottom:357.825440px;}
.y70{bottom:363.407972px;}
.yb6{bottom:366.580073px;}
.y4a{bottom:367.181758px;}
.y21{bottom:367.420542px;}
.y135{bottom:373.483148px;}
.y108{bottom:373.483149px;}
.yd3{bottom:373.483883px;}
.yec{bottom:373.483889px;}
.y6f{bottom:382.381361px;}
.y20{bottom:384.669074px;}
.yb5{bottom:386.953858px;}
.y134{bottom:394.181398px;}
.y9a{bottom:395.772216px;}
.y49{bottom:398.229121px;}
.y6e{bottom:401.354749px;}
.y1f{bottom:401.917609px;}
.y107{bottom:404.530513px;}
.yd2{bottom:404.531244px;}
.yeb{bottom:404.531245px;}
.yb4{bottom:406.251713px;}
.y133{bottom:414.879640px;}
.y99{bottom:415.870602px;}
.y6d{bottom:420.328130px;}
.y48{bottom:429.276484px;}
.y98{bottom:434.843991px;}
.y106{bottom:435.577876px;}
.y132{bottom:435.577883px;}
.yd1{bottom:435.578608px;}
.yea{bottom:435.578613px;}
.y1e{bottom:437.166139px;}
.y6c{bottom:439.301518px;}
.yb3{bottom:440.588742px;}
.y97{bottom:454.942386px;}
.y131{bottom:456.276128px;}
.y6b{bottom:458.274906px;}
.y47{bottom:460.323848px;}
.y1d{bottom:463.414668px;}
.y105{bottom:466.625239px;}
.yd0{bottom:466.625971px;}
.ye9{bottom:466.625976px;}
.y94{bottom:475.040766px;}
.y130{bottom:476.974360px;}
.y6a{bottom:477.248295px;}
.y1c{bottom:480.663202px;}
.y46{bottom:491.371218px;}
.y93{bottom:494.014521px;}
.y69{bottom:496.221684px;}
.y104{bottom:497.672603px;}
.ycf{bottom:497.673334px;}
.ye8{bottom:497.673339px;}
.y1b{bottom:497.911769px;}
.y90{bottom:514.112907px;}
.y1a{bottom:515.160303px;}
.y68{bottom:515.195075px;}
.y12f{bottom:518.370848px;}
.y45{bottom:522.418581px;}
.y103{bottom:528.719968px;}
.yce{bottom:528.720698px;}
.ye7{bottom:528.720703px;}
.y19{bottom:532.408844px;}
.y8f{bottom:533.086296px;}
.y67{bottom:534.168463px;}
.y12e{bottom:539.069098px;}
.y18{bottom:549.657379px;}
.y8d{bottom:553.184691px;}
.y44{bottom:553.465944px;}
.y102{bottom:559.767331px;}
.y12d{bottom:559.767340px;}
.ycd{bottom:559.768059px;}
.ye6{bottom:559.768066px;}
.y66{bottom:563.815439px;}
.y17{bottom:566.905931px;}
.y12c{bottom:580.465582px;}
.y16{bottom:584.154466px;}
.y43{bottom:584.513308px;}
.y101{bottom:590.814694px;}
.ycc{bottom:590.815423px;}
.ye5{bottom:590.815429px;}
.y8c{bottom:590.815433px;}
.y65{bottom:594.862800px;}
.y12b{bottom:601.163813px;}
.y15{bottom:601.403001px;}
.y42{bottom:615.560671px;}
.y14{bottom:618.651537px;}
.y100{bottom:621.862058px;}
.y12a{bottom:621.862063px;}
.ycb{bottom:621.862786px;}
.ye4{bottom:621.862793px;}
.y8b{bottom:621.862798px;}
.y64{bottom:625.910155px;}
.y13{bottom:635.900063px;}
.y129{bottom:642.560305px;}
.y41{bottom:646.608034px;}
.yff{bottom:652.909428px;}
.yca{bottom:652.910149px;}
.ye3{bottom:652.910155px;}
.y8a{bottom:652.910161px;}
.y12{bottom:653.148599px;}
.y63{bottom:656.957518px;}
.y128{bottom:663.258548px;}
.y11{bottom:670.397138px;}
.y40{bottom:677.655398px;}
.yfe{bottom:683.956791px;}
.y127{bottom:683.956792px;}
.yc9{bottom:683.957513px;}
.ye2{bottom:683.957523px;}
.y89{bottom:683.957524px;}
.y10{bottom:687.645718px;}
.y62{bottom:688.004890px;}
.y126{bottom:704.655025px;}
.yf{bottom:704.894253px;}
.y3f{bottom:708.702753px;}
.yfd{bottom:715.004154px;}
.ye1{bottom:715.004886px;}
.y88{bottom:715.004887px;}
.yc8{bottom:715.004889px;}
.y61{bottom:719.052244px;}
.y125{bottom:725.353268px;}
.y3e{bottom:739.750116px;}
.ye{bottom:740.791718px;}
.y124{bottom:746.051513px;}
.yfc{bottom:746.051518px;}
.y87{bottom:746.052243px;}
.ye0{bottom:746.052249px;}
.yc7{bottom:746.052253px;}
.y60{bottom:750.099428px;}
.y123{bottom:766.749751px;}
.y3d{bottom:770.797479px;}
.yfb{bottom:777.098881px;}
.y86{bottom:777.099606px;}
.ydf{bottom:777.099613px;}
.yc6{bottom:777.099616px;}
.yd{bottom:779.489963px;}
.y5f{bottom:781.146793px;}
.y122{bottom:787.447993px;}
.yb2{bottom:791.496098px;}
.y3c{bottom:801.844843px;}
.y121{bottom:808.146235px;}
.yfa{bottom:808.146244px;}
.y85{bottom:808.146969px;}
.yde{bottom:808.146976px;}
.yc5{bottom:808.146979px;}
.y5e{bottom:812.194149px;}
.yc{bottom:818.188208px;}
.yb1{bottom:822.543463px;}
.y120{bottom:828.844478px;}
.y3b{bottom:832.892206px;}
.yf9{bottom:839.193607px;}
.y84{bottom:839.194333px;}
.ydd{bottom:839.194339px;}
.yc4{bottom:839.194342px;}
.y5d{bottom:843.241516px;}
.y11f{bottom:849.542723px;}
.yb0{bottom:853.590826px;}
.yb{bottom:856.886438px;}
.y3a{bottom:863.939569px;}
.yf8{bottom:870.240963px;}
.y11e{bottom:870.240973px;}
.y83{bottom:870.241696px;}
.yc3{bottom:870.241699px;}
.ydc{bottom:870.241702px;}
.y5c{bottom:874.288879px;}
.yaf{bottom:884.638189px;}
.y11d{bottom:890.939215px;}
.y39{bottom:894.986932px;}
.ya{bottom:895.584685px;}
.yf7{bottom:901.288318px;}
.y82{bottom:901.289059px;}
.yc2{bottom:901.289062px;}
.y5b{bottom:905.336242px;}
.y11c{bottom:911.637457px;}
.yae{bottom:915.685552px;}
.y9{bottom:916.282928px;}
.y38{bottom:926.034301px;}
.y11b{bottom:932.335688px;}
.yf6{bottom:932.335690px;}
.y81{bottom:932.336423px;}
.yc1{bottom:932.336425px;}
.y5a{bottom:936.383606px;}
.yad{bottom:945.383783px;}
.y11a{bottom:953.033938px;}
.y8{bottom:954.981175px;}
.y37{bottom:957.081665px;}
.yf5{bottom:963.383783px;}
.y80{bottom:963.383788px;}
.yc0{bottom:963.383789px;}
.y59{bottom:967.430969px;}
.y119{bottom:973.732180px;}
.y7{bottom:975.679417px;}
.y36{bottom:988.129028px;}
.y118{bottom:994.430423px;}
.y7f{bottom:994.431151px;}
.ybf{bottom:994.431152px;}
.y58{bottom:998.478332px;}
.y117{bottom:1015.128661px;}
.y6{bottom:1015.675507px;}
.y35{bottom:1019.176391px;}
.y7e{bottom:1025.478515px;}
.y57{bottom:1029.525696px;}
.y116{bottom:1035.826905px;}
.y34{bottom:1050.223755px;}
.y5{bottom:1050.975312px;}
.y115{bottom:1056.525147px;}
.y7d{bottom:1056.525878px;}
.y56{bottom:1059.223938px;}
.y114{bottom:1077.223388px;}
.y33{bottom:1079.921997px;}
.y55{bottom:1079.922180px;}
.y4{bottom:1080.673542px;}
.y7c{bottom:1087.573241px;}
.y113{bottom:1097.921631px;}
.y3{bottom:1104.616403px;}
.y112{bottom:1118.619873px;}
.y32{bottom:1118.620239px;}
.y54{bottom:1118.620422px;}
.y7b{bottom:1118.620605px;}
.y110{bottom:1135.424561px;}
.y30{bottom:1135.424927px;}
.y1{bottom:1135.424996px;}
.y53{bottom:1135.425109px;}
.y79{bottom:1135.425293px;}
.h11{height:18.973389px;}
.h13{height:37.946778px;}
.h14{height:37.947144px;}
.h2{height:43.989259px;}
.h19{height:44.999999px;}
.h18{height:47.988281px;}
.h7{height:48.796875px;}
.h8{height:49.992188px;}
.h9{height:53.789061px;}
.h15{height:56.920166px;}
.h12{height:58.620119px;}
.he{height:59.167970px;}
.h6{height:63.949219px;}
.h4{height:64.546875px;}
.h16{height:84.674565px;}
.ha{height:84.674925px;}
.hc{height:84.675105px;}
.hf{height:84.675300px;}
.h5{height:85.265628px;}
.h3{height:118.335940px;}
.h10{height:127.574707px;}
.hd{height:127.574891px;}
.h1{height:127.575004px;}
.hb{height:127.575073px;}
.h17{height:127.575439px;}
.h0{height:1263.000000px;}
.w2{width:253.124970px;}
.w3{width:436.500090px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x16{left:6.750000px;}
.x13{left:75.766732px;}
.x12{left:126.450005px;}
.x1{left:127.575005px;}
.x5{left:143.033650px;}
.x3{left:147.028279px;}
.x15{left:168.214606px;}
.x7{left:177.491171px;}
.x10{left:180.450005px;}
.x6{left:188.859822px;}
.x8{left:191.417441px;}
.xd{left:213.075005px;}
.x17{left:231.038535px;}
.x2{left:282.239210px;}
.xf{left:297.450005px;}
.xe{left:301.950005px;}
.x11{left:304.260207px;}
.x14{left:380.699985px;}
.x4{left:467.719205px;}
.x9{left:515.073335px;}
.xb{left:574.882913px;}
.xc{left:597.839945px;}
.xa{left:620.823335px;}
.x18{left:774.844205px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-8.250000pt;}
._10{margin-left:-7.009964pt;}
._19{margin-left:-5.875012pt;}
._0{margin-left:-4.750000pt;}
._2{margin-left:-3.531238pt;}
._3{margin-left:-2.375000pt;}
._1{margin-left:-1.156240pt;}
._4{width:3.916223pt;}
._a{width:4.860511pt;}
._7{width:7.168453pt;}
._6{width:8.070875pt;}
._5{width:11.932479pt;}
._9{width:16.055666pt;}
._8{width:19.910569pt;}
._11{width:20.804877pt;}
._b{width:23.878161pt;}
._f{width:24.852877pt;}
._d{width:27.999995pt;}
._c{width:31.999998pt;}
._e{width:35.999999pt;}
._14{width:39.776664pt;}
._15{width:40.670027pt;}
._13{width:55.660785pt;}
._12{width:59.855384pt;}
._18{width:64.000001pt;}
._17{width:84.000001pt;}
._16{width:88.000001pt;}
.fs4{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:85.333336pt;}
.fs1{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:2.774745pt;}
.ya9{bottom:3.172521pt;}
.y8e{bottom:3.172526pt;}
.y9e{bottom:3.172528pt;}
.y92{bottom:3.172535pt;}
.y96{bottom:3.172860pt;}
.y9d{bottom:20.037755pt;}
.y91{bottom:20.037761pt;}
.ya3{bottom:20.037768pt;}
.y95{bottom:20.038087pt;}
.y9c{bottom:36.902995pt;}
.yac{bottom:73.175781pt;}
.y7a{bottom:73.176107pt;}
.y2{bottom:73.176176pt;}
.y31{bottom:73.176269pt;}
.y111{bottom:73.176432pt;}
.yf4{bottom:96.403643pt;}
.ybe{bottom:105.067708pt;}
.y52{bottom:105.602700pt;}
.y2e{bottom:108.790033pt;}
.ydb{bottom:111.204425pt;}
.y78{bottom:111.735683pt;}
.yab{bottom:114.101563pt;}
.yf3{bottom:124.001300pt;}
.yaa{bottom:129.722012pt;}
.ybd{bottom:132.665364pt;}
.y51{bottom:133.200360pt;}
.y2d{bottom:134.611657pt;}
.y10f{bottom:135.598308pt;}
.yda{bottom:138.802081pt;}
.y77{bottom:139.333339pt;}
.ya8{bottom:144.414717pt;}
.yf2{bottom:150.399740pt;}
.y10e{bottom:153.996745pt;}
.y2c{bottom:157.943687pt;}
.ybc{bottom:160.263020pt;}
.y50{bottom:160.798009pt;}
.ya7{bottom:161.279952pt;}
.y13c{bottom:164.793623pt;}
.yd9{bottom:166.399737pt;}
.y76{bottom:166.930995pt;}
.y10d{bottom:172.395183pt;}
.y2b{bottom:173.275717pt;}
.ya6{bottom:179.145179pt;}
.ybb{bottom:187.860674pt;}
.y4f{bottom:188.395665pt;}
.y2a{bottom:188.607747pt;}
.y10c{bottom:190.793620pt;}
.yd8{bottom:193.997393pt;}
.yf1{bottom:193.997394pt;}
.y75{bottom:194.528652pt;}
.ya5{bottom:197.010411pt;}
.y13b{bottom:197.594406pt;}
.y29{bottom:203.939779pt;}
.ya4{bottom:213.875646pt;}
.yba{bottom:215.458331pt;}
.y4e{bottom:215.993161pt;}
.y28{bottom:219.271810pt;}
.yd7{bottom:221.595048pt;}
.yf0{bottom:221.595051pt;}
.y74{bottom:222.126308pt;}
.ya2{bottom:231.740884pt;}
.y10b{bottom:233.192060pt;}
.y27{bottom:234.603841pt;}
.y13a{bottom:239.922521pt;}
.yb9{bottom:243.055987pt;}
.y4d{bottom:243.590817pt;}
.yd6{bottom:249.192705pt;}
.yef{bottom:249.192708pt;}
.y73{bottom:249.723964pt;}
.y26{bottom:249.935880pt;}
.y139{bottom:258.320961pt;}
.y25{bottom:265.267912pt;}
.ya1{bottom:265.471352pt;}
.yb8{bottom:270.653643pt;}
.y4c{bottom:271.188473pt;}
.y138{bottom:276.719401pt;}
.y10a{bottom:276.789709pt;}
.yd5{bottom:276.790361pt;}
.yee{bottom:276.790364pt;}
.y72{bottom:277.321620pt;}
.y24{bottom:280.599943pt;}
.ya0{bottom:283.336584pt;}
.y137{bottom:295.188156pt;}
.y23{bottom:295.931974pt;}
.yb7{bottom:298.251300pt;}
.y4b{bottom:298.786128pt;}
.y9f{bottom:300.201819pt;}
.y109{bottom:304.387365pt;}
.yd4{bottom:304.388017pt;}
.yed{bottom:304.388020pt;}
.y71{bottom:304.919273pt;}
.y22{bottom:311.264005pt;}
.y136{bottom:313.586593pt;}
.y9b{bottom:318.067057pt;}
.y70{bottom:323.029308pt;}
.yb6{bottom:325.848953pt;}
.y4a{bottom:326.383785pt;}
.y21{bottom:326.596037pt;}
.y135{bottom:331.985020pt;}
.y108{bottom:331.985021pt;}
.yd3{bottom:331.985673pt;}
.yec{bottom:331.985679pt;}
.y6f{bottom:339.894543pt;}
.y20{bottom:341.928066pt;}
.yb5{bottom:343.958985pt;}
.y134{bottom:350.383465pt;}
.y9a{bottom:351.797526pt;}
.y49{bottom:353.981441pt;}
.y6e{bottom:356.759777pt;}
.y1f{bottom:357.260097pt;}
.y107{bottom:359.582678pt;}
.yd2{bottom:359.583328pt;}
.yeb{bottom:359.583329pt;}
.yb4{bottom:361.112633pt;}
.y133{bottom:368.781903pt;}
.y99{bottom:369.662757pt;}
.y6d{bottom:373.625004pt;}
.y48{bottom:381.579097pt;}
.y98{bottom:386.527992pt;}
.y106{bottom:387.180334pt;}
.y132{bottom:387.180340pt;}
.yd1{bottom:387.180985pt;}
.yea{bottom:387.180989pt;}
.y1e{bottom:388.592124pt;}
.y6c{bottom:390.490238pt;}
.yb3{bottom:391.634437pt;}
.y97{bottom:404.393232pt;}
.y131{bottom:405.578780pt;}
.y6b{bottom:407.355472pt;}
.y47{bottom:409.176753pt;}
.y1d{bottom:411.924149pt;}
.y105{bottom:414.777990pt;}
.yd0{bottom:414.778641pt;}
.ye9{bottom:414.778645pt;}
.y94{bottom:422.258459pt;}
.y130{bottom:423.977209pt;}
.y6a{bottom:424.220707pt;}
.y1c{bottom:427.256179pt;}
.y46{bottom:436.774416pt;}
.y93{bottom:439.124019pt;}
.y69{bottom:441.085941pt;}
.y104{bottom:442.375647pt;}
.ycf{bottom:442.376297pt;}
.ye8{bottom:442.376301pt;}
.y1b{bottom:442.588239pt;}
.y90{bottom:456.989251pt;}
.y1a{bottom:457.920269pt;}
.y68{bottom:457.951178pt;}
.y12f{bottom:460.774087pt;}
.y45{bottom:464.372072pt;}
.y103{bottom:469.973305pt;}
.yce{bottom:469.973953pt;}
.ye7{bottom:469.973958pt;}
.y19{bottom:473.252305pt;}
.y8f{bottom:473.854486pt;}
.y67{bottom:474.816412pt;}
.y12e{bottom:479.172531pt;}
.y18{bottom:488.584336pt;}
.y8d{bottom:491.719726pt;}
.y44{bottom:491.969728pt;}
.y102{bottom:497.570961pt;}
.y12d{bottom:497.570969pt;}
.ycd{bottom:497.571608pt;}
.ye6{bottom:497.571614pt;}
.y66{bottom:501.169279pt;}
.y17{bottom:503.916383pt;}
.y12c{bottom:515.969407pt;}
.y16{bottom:519.248414pt;}
.y43{bottom:519.567385pt;}
.y101{bottom:525.168617pt;}
.ycc{bottom:525.169265pt;}
.ye5{bottom:525.169270pt;}
.y8c{bottom:525.169273pt;}
.y65{bottom:528.766933pt;}
.y12b{bottom:534.367833pt;}
.y15{bottom:534.580445pt;}
.y42{bottom:547.165041pt;}
.y14{bottom:549.912477pt;}
.y100{bottom:552.766273pt;}
.y12a{bottom:552.766278pt;}
.ycb{bottom:552.766921pt;}
.ye4{bottom:552.766927pt;}
.y8b{bottom:552.766931pt;}
.y64{bottom:556.364582pt;}
.y13{bottom:565.244500pt;}
.y129{bottom:571.164716pt;}
.y41{bottom:574.762697pt;}
.yff{bottom:580.363936pt;}
.yca{bottom:580.364577pt;}
.ye3{bottom:580.364582pt;}
.y8a{bottom:580.364587pt;}
.y12{bottom:580.576532pt;}
.y63{bottom:583.962238pt;}
.y128{bottom:589.563153pt;}
.y11{bottom:595.908567pt;}
.y40{bottom:602.360353pt;}
.yfe{bottom:607.961592pt;}
.y127{bottom:607.961593pt;}
.yc9{bottom:607.962233pt;}
.ye2{bottom:607.962242pt;}
.y89{bottom:607.962243pt;}
.y10{bottom:611.240638pt;}
.y62{bottom:611.559902pt;}
.y126{bottom:626.360023pt;}
.yf{bottom:626.572670pt;}
.y3f{bottom:629.958002pt;}
.yfd{bottom:635.559248pt;}
.ye1{bottom:635.559898pt;}
.y88{bottom:635.559900pt;}
.yc8{bottom:635.559901pt;}
.y61{bottom:639.157550pt;}
.y125{bottom:644.758460pt;}
.y3e{bottom:657.555658pt;}
.ye{bottom:658.481527pt;}
.y124{bottom:663.156900pt;}
.yfc{bottom:663.156905pt;}
.y87{bottom:663.157549pt;}
.ye0{bottom:663.157554pt;}
.yc7{bottom:663.157558pt;}
.y60{bottom:666.755047pt;}
.y123{bottom:681.555334pt;}
.y3d{bottom:685.153314pt;}
.yfb{bottom:690.754561pt;}
.y86{bottom:690.755205pt;}
.ydf{bottom:690.755211pt;}
.yc6{bottom:690.755214pt;}
.yd{bottom:692.879967pt;}
.y5f{bottom:694.352704pt;}
.y122{bottom:699.953771pt;}
.yb2{bottom:703.552087pt;}
.y3c{bottom:712.750971pt;}
.y121{bottom:718.352209pt;}
.yfa{bottom:718.352217pt;}
.y85{bottom:718.352861pt;}
.yde{bottom:718.352867pt;}
.yc5{bottom:718.352870pt;}
.y5e{bottom:721.950354pt;}
.yc{bottom:727.278407pt;}
.yb1{bottom:731.149745pt;}
.y120{bottom:736.750647pt;}
.y3b{bottom:740.348627pt;}
.yf9{bottom:745.949873pt;}
.y84{bottom:745.950518pt;}
.ydd{bottom:745.950523pt;}
.yc4{bottom:745.950527pt;}
.y5d{bottom:749.548014pt;}
.y11f{bottom:755.149087pt;}
.yb0{bottom:758.747401pt;}
.yb{bottom:761.676833pt;}
.y3a{bottom:767.946283pt;}
.yf8{bottom:773.547523pt;}
.y11e{bottom:773.547531pt;}
.y83{bottom:773.548174pt;}
.yc3{bottom:773.548177pt;}
.ydc{bottom:773.548180pt;}
.y5c{bottom:777.145670pt;}
.yaf{bottom:786.345057pt;}
.y11d{bottom:791.945969pt;}
.y39{bottom:795.543940pt;}
.ya{bottom:796.075276pt;}
.yf7{bottom:801.145172pt;}
.y82{bottom:801.145830pt;}
.yc2{bottom:801.145833pt;}
.y5b{bottom:804.743326pt;}
.y11c{bottom:810.344407pt;}
.yae{bottom:813.942713pt;}
.y9{bottom:814.473713pt;}
.y38{bottom:823.141601pt;}
.y11b{bottom:828.742833pt;}
.yf6{bottom:828.742836pt;}
.y81{bottom:828.743487pt;}
.yc1{bottom:828.743489pt;}
.y5a{bottom:832.340983pt;}
.yad{bottom:840.341140pt;}
.y11a{bottom:847.141278pt;}
.y8{bottom:848.872156pt;}
.y37{bottom:850.739258pt;}
.yf5{bottom:856.341140pt;}
.y80{bottom:856.341145pt;}
.yc0{bottom:856.341146pt;}
.y59{bottom:859.938639pt;}
.y119{bottom:865.539716pt;}
.y7{bottom:867.270593pt;}
.y36{bottom:878.336914pt;}
.y118{bottom:883.938153pt;}
.y7f{bottom:883.938801pt;}
.ybf{bottom:883.938802pt;}
.y58{bottom:887.536295pt;}
.y117{bottom:902.336588pt;}
.y6{bottom:902.822673pt;}
.y35{bottom:905.934570pt;}
.y7e{bottom:911.536458pt;}
.y57{bottom:915.133952pt;}
.y116{bottom:920.735027pt;}
.y34{bottom:933.532227pt;}
.y5{bottom:934.200277pt;}
.y115{bottom:939.133464pt;}
.y7d{bottom:939.134114pt;}
.y56{bottom:941.532389pt;}
.y114{bottom:957.531901pt;}
.y33{bottom:959.930664pt;}
.y55{bottom:959.930827pt;}
.y4{bottom:960.598704pt;}
.y7c{bottom:966.731770pt;}
.y113{bottom:975.930339pt;}
.y3{bottom:981.881247pt;}
.y112{bottom:994.328776pt;}
.y32{bottom:994.329101pt;}
.y54{bottom:994.329264pt;}
.y7b{bottom:994.329427pt;}
.y110{bottom:1009.266276pt;}
.y30{bottom:1009.266601pt;}
.y1{bottom:1009.266663pt;}
.y53{bottom:1009.266764pt;}
.y79{bottom:1009.266927pt;}
.h11{height:16.865234pt;}
.h13{height:33.730469pt;}
.h14{height:33.730795pt;}
.h2{height:39.101563pt;}
.h19{height:39.999999pt;}
.h18{height:42.656250pt;}
.h7{height:43.375000pt;}
.h8{height:44.437500pt;}
.h9{height:47.812499pt;}
.h15{height:50.595703pt;}
.h12{height:52.106772pt;}
.he{height:52.593751pt;}
.h6{height:56.843750pt;}
.h4{height:57.375000pt;}
.h16{height:75.266280pt;}
.ha{height:75.266600pt;}
.hc{height:75.266760pt;}
.hf{height:75.266933pt;}
.h5{height:75.791669pt;}
.h3{height:105.187502pt;}
.h10{height:113.399740pt;}
.hd{height:113.399903pt;}
.h1{height:113.400004pt;}
.hb{height:113.400065pt;}
.h17{height:113.400391pt;}
.h0{height:1122.666667pt;}
.w2{width:224.999973pt;}
.w3{width:388.000080pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x16{left:6.000000pt;}
.x13{left:67.348206pt;}
.x12{left:112.400004pt;}
.x1{left:113.400004pt;}
.x5{left:127.141022pt;}
.x3{left:130.691804pt;}
.x15{left:149.524094pt;}
.x7{left:157.769930pt;}
.x10{left:160.400004pt;}
.x6{left:167.875397pt;}
.x8{left:170.148836pt;}
.xd{left:189.400004pt;}
.x17{left:205.367587pt;}
.x2{left:250.879298pt;}
.xf{left:264.400004pt;}
.xe{left:268.400004pt;}
.x11{left:270.453517pt;}
.x14{left:338.399987pt;}
.x4{left:415.750404pt;}
.x9{left:457.842964pt;}
.xb{left:511.007034pt;}
.xc{left:531.413284pt;}
.xa{left:551.842964pt;}
.x18{left:688.750404pt;}
}




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