
    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_56e7ab03b7afd83ae96505a2.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_84428b5e5e9fdeaa9c60d503.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_20cd7d775631c97ab34c96a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894531;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_809acf5aac5189ad77176cbe.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_07cee1aa11984d1a95d09ce1.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.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);}
.v2{vertical-align:-25.044871px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321696px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.500000px;}
.ls2{letter-spacing:9.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;}
.ws5{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.000000px;}
.ws2{word-spacing:-10.800000px;}
.ws4{word-spacing:-9.900000px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-14.672109px;}
._13{margin-left:-9.079616px;}
._8{margin-left:-7.640433px;}
._7{margin-left:-6.604546px;}
._1{margin-left:-5.343750px;}
._2{margin-left:-3.972656px;}
._e{margin-left:-2.942184px;}
._0{margin-left:-1.300782px;}
._4{width:4.399182px;}
._5{width:5.466751px;}
._3{width:8.905751px;}
._d{width:9.942504px;}
._6{width:13.429213px;}
._9{width:17.983773px;}
._10{width:22.500025px;}
._15{width:25.996287px;}
._f{width:26.999999px;}
._12{width:31.499999px;}
._b{width:35.888093px;}
._14{width:36.934990px;}
._a{width:40.411106px;}
._11{width:45.000000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.600001px;}
.fs4{font-size:43.200002px;}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y72{bottom:3.496581px;}
.y34{bottom:3.496583px;}
.y9c{bottom:6.414917px;}
.yac{bottom:6.415272px;}
.y9a{bottom:6.415278px;}
.y97{bottom:6.415284px;}
.yab{bottom:28.234497px;}
.y99{bottom:28.234863px;}
.y70{bottom:88.784540px;}
.ybf{bottom:95.045391px;}
.y54{bottom:95.045765px;}
.y93{bottom:107.480719px;}
.y6f{bottom:114.019146px;}
.y55{bottom:114.019154px;}
.y32{bottom:114.248854px;}
.y31{bottom:131.497388px;}
.y92{bottom:138.528082px;}
.ydc{bottom:138.971920px;}
.y53{bottom:148.723198px;}
.y30{bottom:148.745910px;}
.ybe{bottom:149.332754px;}
.y6e{bottom:151.621589px;}
.ydb{bottom:159.670163px;}
.y2f{bottom:165.994444px;}
.y91{bottom:169.575438px;}
.y52{bottom:179.770570px;}
.ybd{bottom:180.380122px;}
.y6d{bottom:182.668945px;}
.y2e{bottom:183.242978px;}
.yda{bottom:198.368410px;}
.y2d{bottom:200.491512px;}
.y90{bottom:200.622801px;}
.y51{bottom:210.817924px;}
.ybc{bottom:211.427489px;}
.y6c{bottom:213.716313px;}
.y2c{bottom:217.740045px;}
.yd9{bottom:219.066653px;}
.y8f{bottom:231.670164px;}
.y2b{bottom:234.988581px;}
.y50{bottom:241.865107px;}
.ybb{bottom:242.474845px;}
.y6b{bottom:244.763676px;}
.y2a{bottom:252.237116px;}
.yd8{bottom:257.764898px;}
.y8e{bottom:262.717528px;}
.y29{bottom:269.485651px;}
.y4f{bottom:271.563353px;}
.yba{bottom:273.522213px;}
.y6a{bottom:275.811039px;}
.y28{bottom:286.734195px;}
.y8d{bottom:293.764891px;}
.y27{bottom:303.982731px;}
.yb9{bottom:304.569576px;}
.yd7{bottom:306.812253px;}
.y69{bottom:306.858403px;}
.y4e{bottom:320.610719px;}
.y26{bottom:321.231266px;}
.y8c{bottom:324.812254px;}
.yb8{bottom:335.616939px;}
.yd6{bottom:337.859616px;}
.y68{bottom:337.905766px;}
.y25{bottom:338.479801px;}
.y4d{bottom:351.658075px;}
.y24{bottom:355.728336px;}
.y8b{bottom:355.859618px;}
.yb7{bottom:366.664303px;}
.yd5{bottom:368.906979px;}
.y67{bottom:368.953129px;}
.y23{bottom:372.976872px;}
.y4c{bottom:382.705443px;}
.y8a{bottom:386.906984px;}
.y22{bottom:390.225404px;}
.yb6{bottom:397.711666px;}
.yd4{bottom:399.954343px;}
.y66{bottom:400.000492px;}
.y21{bottom:407.473939px;}
.y4b{bottom:413.752806px;}
.y89{bottom:417.954352px;}
.yb5{bottom:428.759029px;}
.yd3{bottom:431.001706px;}
.y20{bottom:442.722468px;}
.y4a{bottom:444.800169px;}
.y88{bottom:449.001719px;}
.y65{bottom:449.047853px;}
.yb4{bottom:459.806393px;}
.yd2{bottom:462.049069px;}
.y1f{bottom:468.971013px;}
.y49{bottom:475.847533px;}
.y64{bottom:478.836177px;}
.y87{bottom:480.049075px;}
.y1e{bottom:486.219547px;}
.yb3{bottom:490.774651px;}
.yd1{bottom:493.096432px;}
.y1d{bottom:503.468114px;}
.y48{bottom:506.894896px;}
.y86{bottom:511.096443px;}
.yb2{bottom:511.227538px;}
.y1c{bottom:520.716648px;}
.yd0{bottom:524.143799px;}
.yb1{bottom:527.756840px;}
.y47{bottom:537.942259px;}
.y1b{bottom:537.965182px;}
.y85{bottom:542.143799px;}
.yb0{bottom:549.576410px;}
.ycf{bottom:555.191167px;}
.y1a{bottom:555.213716px;}
.y46{bottom:568.989622px;}
.yaf{bottom:571.396001px;}
.y19{bottom:572.462249px;}
.y84{bottom:573.191167px;}
.yce{bottom:586.238534px;}
.y18{bottom:589.710783px;}
.yae{bottom:593.215211px;}
.y45{bottom:600.036988px;}
.y83{bottom:604.238534px;}
.y17{bottom:606.959324px;}
.yad{bottom:615.034430px;}
.ycd{bottom:617.285890px;}
.y16{bottom:624.207859px;}
.y44{bottom:631.084355px;}
.y82{bottom:635.285890px;}
.yaa{bottom:636.854012px;}
.y15{bottom:641.456411px;}
.ycc{bottom:648.333258px;}
.ya9{bottom:658.673591px;}
.y14{bottom:658.704946px;}
.y43{bottom:662.131711px;}
.y81{bottom:666.333258px;}
.y13{bottom:675.953481px;}
.ycb{bottom:679.380621px;}
.ya8{bottom:681.617801px;}
.yea{bottom:688.824460px;}
.y42{bottom:693.179079px;}
.y12{bottom:693.202060px;}
.y80{bottom:697.380621px;}
.ya7{bottom:703.437005px;}
.y63{bottom:709.078852px;}
.ye9{bottom:709.522703px;}
.yca{bottom:710.427984px;}
.y11{bottom:710.450595px;}
.y41{bottom:724.226435px;}
.ya6{bottom:725.256590px;}
.y10{bottom:727.699130px;}
.y7f{bottom:728.427984px;}
.yc9{bottom:741.475348px;}
.yf{bottom:744.947666px;}
.ya5{bottom:747.076166px;}
.ye8{bottom:748.220943px;}
.y40{bottom:755.273803px;}
.y62{bottom:758.126038px;}
.y7e{bottom:759.475348px;}
.ye{bottom:762.196198px;}
.ya4{bottom:768.895391px;}
.ye7{bottom:768.919186px;}
.yc8{bottom:772.522711px;}
.yd{bottom:779.444733px;}
.y3f{bottom:786.321170px;}
.y61{bottom:789.173395px;}
.ye6{bottom:789.617428px;}
.y7d{bottom:790.522711px;}
.ya3{bottom:790.714600px;}
.yc7{bottom:803.570074px;}
.ye5{bottom:810.315670px;}
.ya2{bottom:812.534180px;}
.yc{bottom:815.342198px;}
.y3e{bottom:817.368526px;}
.y60{bottom:820.220762px;}
.y7c{bottom:821.570074px;}
.ye4{bottom:831.013913px;}
.yc6{bottom:834.617438px;}
.ya1{bottom:835.478756px;}
.y3d{bottom:848.415894px;}
.y5f{bottom:851.268130px;}
.y7b{bottom:852.617438px;}
.yb{bottom:854.040443px;}
.ya0{bottom:857.297966px;}
.yc5{bottom:864.315668px;}
.y9f{bottom:879.117185px;}
.y3c{bottom:879.463257px;}
.ye3{bottom:880.061272px;}
.y5e{bottom:882.315486px;}
.y7a{bottom:883.664794px;}
.ya{bottom:892.738675px;}
.y9e{bottom:900.936770px;}
.y3b{bottom:910.510620px;}
.y5d{bottom:913.362853px;}
.yc4{bottom:913.363036px;}
.y9{bottom:913.436917px;}
.y79{bottom:914.712157px;}
.ye2{bottom:918.759520px;}
.y9d{bottom:922.756346px;}
.ye1{bottom:939.457762px;}
.y3a{bottom:941.557984px;}
.y5c{bottom:944.410216px;}
.yc3{bottom:944.410400px;}
.y9b{bottom:944.575556px;}
.y78{bottom:945.759520px;}
.y8{bottom:952.135165px;}
.y98{bottom:966.394781px;}
.y39{bottom:972.605347px;}
.y7{bottom:972.833408px;}
.y5b{bottom:975.457579px;}
.yc2{bottom:975.457763px;}
.y77{bottom:976.806884px;}
.ye0{bottom:978.156005px;}
.y96{bottom:988.214360px;}
.ydf{bottom:998.854247px;}
.y38{bottom:1003.652710px;}
.y5a{bottom:1006.504943px;}
.yc1{bottom:1006.505126px;}
.y76{bottom:1007.854247px;}
.y6{bottom:1012.829500px;}
.y95{bottom:1019.552490px;}
.y37{bottom:1034.700073px;}
.y59{bottom:1037.552306px;}
.yc0{bottom:1037.552490px;}
.y75{bottom:1038.901610px;}
.yde{bottom:1040.250732px;}
.y5{bottom:1048.129303px;}
.y36{bottom:1064.398316px;}
.y58{bottom:1068.599669px;}
.y94{bottom:1068.599854px;}
.y74{bottom:1069.948974px;}
.y4{bottom:1077.827534px;}
.ydd{bottom:1078.948975px;}
.y57{bottom:1099.647033px;}
.y73{bottom:1099.647217px;}
.y3{bottom:1100.974812px;}
.y35{bottom:1102.447631px;}
.y33{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y56{bottom:1116.451720px;}
.y71{bottom:1116.451905px;}
.h16{height:21.819214px;}
.h11{height:21.819580px;}
.hc{height:35.500782px;}
.h17{height:43.638794px;}
.h13{height:43.639160px;}
.h2{height:43.989259px;}
.h14{height:45.826173px;}
.h15{height:47.988281px;}
.h6{height:49.007813px;}
.h7{height:49.992188px;}
.h8{height:53.789061px;}
.h12{height:58.620119px;}
.hf{height:59.167970px;}
.h5{height:63.949219px;}
.h3{height:64.546875px;}
.hb{height:66.049787px;}
.he{height:66.049818px;}
.ha{height:66.049823px;}
.h18{height:66.049832px;}
.h4{height:85.265628px;}
.h10{height:146.548095px;}
.hd{height:146.548280px;}
.h1{height:146.548382px;}
.h9{height:146.548462px;}
.h0{height:1263.000000px;}
.w2{width:186.749978px;}
.w3{width:492.750090px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x10{left:6.750000px;}
.xe{left:7.875000px;}
.x1{left:127.575005px;}
.x3{left:147.028279px;}
.x7{left:166.157676px;}
.x5{left:186.596640px;}
.xb{left:213.075005px;}
.x6{left:238.601523px;}
.xc{left:249.337364px;}
.x2{left:282.239210px;}
.x8{left:309.182091px;}
.xf{left:315.449985px;}
.x9{left:368.735461px;}
.x4{left:467.719205px;}
.xa{left:640.809668px;}
.xd{left:739.406705px;}
@media print{
.v2{vertical-align:-22.262108pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285952pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:4.000000pt;}
.ls2{letter-spacing:8.000000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws2{word-spacing:-9.600000pt;}
.ws4{word-spacing:-8.800000pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-13.041874pt;}
._13{margin-left:-8.070770pt;}
._8{margin-left:-6.791496pt;}
._7{margin-left:-5.870707pt;}
._1{margin-left:-4.750000pt;}
._2{margin-left:-3.531250pt;}
._e{margin-left:-2.615275pt;}
._0{margin-left:-1.156251pt;}
._4{width:3.910384pt;}
._5{width:4.859335pt;}
._3{width:7.916223pt;}
._d{width:8.837781pt;}
._6{width:11.937078pt;}
._9{width:15.985576pt;}
._10{width:20.000023pt;}
._15{width:23.107810pt;}
._f{width:23.999999pt;}
._12{width:27.999999pt;}
._b{width:31.900527pt;}
._14{width:32.831102pt;}
._a{width:35.920983pt;}
._11{width:40.000000pt;}
.fs5{font-size:35.200001pt;}
.fs4{font-size:38.400002pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y72{bottom:3.108072pt;}
.y34{bottom:3.108073pt;}
.y9c{bottom:5.702149pt;}
.yac{bottom:5.702464pt;}
.y9a{bottom:5.702469pt;}
.y97{bottom:5.702474pt;}
.yab{bottom:25.097331pt;}
.y99{bottom:25.097656pt;}
.y70{bottom:78.919591pt;}
.ybf{bottom:84.484792pt;}
.y54{bottom:84.485125pt;}
.y93{bottom:95.538417pt;}
.y6f{bottom:101.350352pt;}
.y55{bottom:101.350359pt;}
.y32{bottom:101.554537pt;}
.y31{bottom:116.886567pt;}
.y92{bottom:123.136073pt;}
.ydc{bottom:123.530596pt;}
.y53{bottom:132.198398pt;}
.y30{bottom:132.218587pt;}
.ybe{bottom:132.740226pt;}
.y6e{bottom:134.774746pt;}
.ydb{bottom:141.929033pt;}
.y2f{bottom:147.550617pt;}
.y91{bottom:150.733723pt;}
.y52{bottom:159.796062pt;}
.ybd{bottom:160.337886pt;}
.y6d{bottom:162.372396pt;}
.y2e{bottom:162.882647pt;}
.yda{bottom:176.327476pt;}
.y2d{bottom:178.214677pt;}
.y90{bottom:178.331379pt;}
.y51{bottom:187.393710pt;}
.ybc{bottom:187.935546pt;}
.y6c{bottom:189.970056pt;}
.y2c{bottom:193.546707pt;}
.yd9{bottom:194.725913pt;}
.y8f{bottom:205.929035pt;}
.y2b{bottom:208.878739pt;}
.y50{bottom:214.991207pt;}
.ybb{bottom:215.533196pt;}
.y6b{bottom:217.567712pt;}
.y2a{bottom:224.210770pt;}
.yd8{bottom:229.124353pt;}
.y8e{bottom:233.526692pt;}
.y29{bottom:239.542801pt;}
.y4f{bottom:241.389647pt;}
.yba{bottom:243.130856pt;}
.y6a{bottom:245.165368pt;}
.y28{bottom:254.874840pt;}
.y8d{bottom:261.124348pt;}
.y27{bottom:270.206872pt;}
.yb9{bottom:270.728512pt;}
.yd7{bottom:272.722002pt;}
.y69{bottom:272.763025pt;}
.y4e{bottom:284.987306pt;}
.y26{bottom:285.538903pt;}
.y8c{bottom:288.722004pt;}
.yb8{bottom:298.326168pt;}
.yd6{bottom:300.319659pt;}
.y68{bottom:300.360681pt;}
.y25{bottom:300.870934pt;}
.y4d{bottom:312.584956pt;}
.y24{bottom:316.202965pt;}
.y8b{bottom:316.319660pt;}
.yb7{bottom:325.923825pt;}
.yd5{bottom:327.917314pt;}
.y67{bottom:327.958337pt;}
.y23{bottom:331.534997pt;}
.y4c{bottom:340.182616pt;}
.y8a{bottom:343.917319pt;}
.y22{bottom:346.867026pt;}
.yb6{bottom:353.521481pt;}
.yd4{bottom:355.514971pt;}
.y66{bottom:355.555993pt;}
.y21{bottom:362.199057pt;}
.y4b{bottom:367.780272pt;}
.y89{bottom:371.514979pt;}
.yb5{bottom:381.119137pt;}
.yd3{bottom:383.112627pt;}
.y20{bottom:393.531083pt;}
.y4a{bottom:395.377928pt;}
.y88{bottom:399.112639pt;}
.y65{bottom:399.153647pt;}
.yb4{bottom:408.716793pt;}
.yd2{bottom:410.710284pt;}
.y1f{bottom:416.863123pt;}
.y49{bottom:422.975585pt;}
.y64{bottom:425.632157pt;}
.y87{bottom:426.710289pt;}
.y1e{bottom:432.195153pt;}
.yb3{bottom:436.244134pt;}
.yd1{bottom:438.307940pt;}
.y1d{bottom:447.527213pt;}
.y48{bottom:450.573241pt;}
.y86{bottom:454.307949pt;}
.yb2{bottom:454.424479pt;}
.y1c{bottom:462.859243pt;}
.yd0{bottom:465.905599pt;}
.yb1{bottom:469.117191pt;}
.y47{bottom:478.170897pt;}
.y1b{bottom:478.191273pt;}
.y85{bottom:481.905599pt;}
.yb0{bottom:488.512364pt;}
.ycf{bottom:493.503259pt;}
.y1a{bottom:493.523303pt;}
.y46{bottom:505.768553pt;}
.yaf{bottom:507.907557pt;}
.y19{bottom:508.855333pt;}
.y84{bottom:509.503259pt;}
.yce{bottom:521.100919pt;}
.y18{bottom:524.187363pt;}
.yae{bottom:527.302410pt;}
.y45{bottom:533.366211pt;}
.y83{bottom:537.100919pt;}
.y17{bottom:539.519399pt;}
.yad{bottom:546.697271pt;}
.ycd{bottom:548.698569pt;}
.y16{bottom:554.851430pt;}
.y44{bottom:560.963871pt;}
.y82{bottom:564.698569pt;}
.yaa{bottom:566.092455pt;}
.y15{bottom:570.183477pt;}
.ycc{bottom:576.296229pt;}
.ya9{bottom:585.487637pt;}
.y14{bottom:585.515508pt;}
.y43{bottom:588.561521pt;}
.y81{bottom:592.296229pt;}
.y13{bottom:600.847539pt;}
.ycb{bottom:603.893885pt;}
.ya8{bottom:605.882490pt;}
.yea{bottom:612.288409pt;}
.y42{bottom:616.159181pt;}
.y12{bottom:616.179609pt;}
.y80{bottom:619.893885pt;}
.ya7{bottom:625.277338pt;}
.y63{bottom:630.292313pt;}
.ye9{bottom:630.686847pt;}
.yca{bottom:631.491541pt;}
.y11{bottom:631.511640pt;}
.y41{bottom:643.756831pt;}
.ya6{bottom:644.672524pt;}
.y10{bottom:646.843671pt;}
.y7f{bottom:647.491541pt;}
.yc9{bottom:659.089198pt;}
.yf{bottom:662.175703pt;}
.ya5{bottom:664.067703pt;}
.ye8{bottom:665.085283pt;}
.y40{bottom:671.354491pt;}
.y62{bottom:673.889812pt;}
.y7e{bottom:675.089198pt;}
.ye{bottom:677.507732pt;}
.ya4{bottom:683.462570pt;}
.ye7{bottom:683.483721pt;}
.yc8{bottom:686.686854pt;}
.yd{bottom:692.839763pt;}
.y3f{bottom:698.952151pt;}
.y61{bottom:701.487462pt;}
.ye6{bottom:701.882158pt;}
.y7d{bottom:702.686854pt;}
.ya3{bottom:702.857423pt;}
.yc7{bottom:714.284510pt;}
.ye5{bottom:720.280596pt;}
.ya2{bottom:722.252604pt;}
.yc{bottom:724.748620pt;}
.y3e{bottom:726.549801pt;}
.y60{bottom:729.085122pt;}
.y7c{bottom:730.284510pt;}
.ye4{bottom:738.679033pt;}
.yc6{bottom:741.882167pt;}
.ya1{bottom:742.647783pt;}
.y3d{bottom:754.147461pt;}
.y5f{bottom:756.682782pt;}
.y7b{bottom:757.882167pt;}
.yb{bottom:759.147060pt;}
.ya0{bottom:762.042637pt;}
.yc5{bottom:768.280593pt;}
.y9f{bottom:781.437498pt;}
.y3c{bottom:781.745117pt;}
.ye3{bottom:782.276687pt;}
.y5e{bottom:784.280432pt;}
.y7a{bottom:785.479817pt;}
.ya{bottom:793.545489pt;}
.y9e{bottom:800.832684pt;}
.y3b{bottom:809.342773pt;}
.y5d{bottom:811.878092pt;}
.yc4{bottom:811.878255pt;}
.y9{bottom:811.943927pt;}
.y79{bottom:813.077473pt;}
.ye2{bottom:816.675129pt;}
.y9d{bottom:820.227863pt;}
.ye1{bottom:835.073567pt;}
.y3a{bottom:836.940430pt;}
.y5c{bottom:839.475748pt;}
.yc3{bottom:839.475911pt;}
.y9b{bottom:839.622717pt;}
.y78{bottom:840.675129pt;}
.y8{bottom:846.342369pt;}
.y98{bottom:859.017583pt;}
.y39{bottom:864.538086pt;}
.y7{bottom:864.740807pt;}
.y5b{bottom:867.073404pt;}
.yc2{bottom:867.073567pt;}
.y77{bottom:868.272786pt;}
.ye0{bottom:869.472005pt;}
.y96{bottom:878.412764pt;}
.ydf{bottom:887.870442pt;}
.y38{bottom:892.135742pt;}
.y5a{bottom:894.671061pt;}
.yc1{bottom:894.671223pt;}
.y76{bottom:895.870442pt;}
.y6{bottom:900.292889pt;}
.y95{bottom:906.268880pt;}
.y37{bottom:919.733399pt;}
.y59{bottom:922.268717pt;}
.yc0{bottom:922.268880pt;}
.y75{bottom:923.468098pt;}
.yde{bottom:924.667317pt;}
.y5{bottom:931.670492pt;}
.y36{bottom:946.131836pt;}
.y58{bottom:949.866373pt;}
.y94{bottom:949.866537pt;}
.y74{bottom:951.065755pt;}
.y4{bottom:958.068919pt;}
.ydd{bottom:959.065756pt;}
.y57{bottom:977.464029pt;}
.y73{bottom:977.464193pt;}
.y3{bottom:978.644277pt;}
.y35{bottom:979.953450pt;}
.y33{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y56{bottom:992.401529pt;}
.y71{bottom:992.401693pt;}
.h16{height:19.394857pt;}
.h11{height:19.395182pt;}
.hc{height:31.556251pt;}
.h17{height:38.790039pt;}
.h13{height:38.790364pt;}
.h2{height:39.101563pt;}
.h14{height:40.734376pt;}
.h15{height:42.656250pt;}
.h6{height:43.562500pt;}
.h7{height:44.437500pt;}
.h8{height:47.812499pt;}
.h12{height:52.106772pt;}
.hf{height:52.593751pt;}
.h5{height:56.843750pt;}
.h3{height:57.375000pt;}
.hb{height:58.710921pt;}
.he{height:58.710949pt;}
.ha{height:58.710953pt;}
.h18{height:58.710961pt;}
.h4{height:75.791669pt;}
.h10{height:130.264973pt;}
.hd{height:130.265137pt;}
.h1{height:130.265228pt;}
.h9{height:130.265300pt;}
.h0{height:1122.666667pt;}
.w2{width:165.999980pt;}
.w3{width:438.000080pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x10{left:6.000000pt;}
.xe{left:7.000000pt;}
.x1{left:113.400004pt;}
.x3{left:130.691804pt;}
.x7{left:147.695712pt;}
.x5{left:165.863680pt;}
.xb{left:189.400004pt;}
.x6{left:212.090243pt;}
.xc{left:221.633212pt;}
.x2{left:250.879298pt;}
.x8{left:274.828525pt;}
.xf{left:280.399987pt;}
.x9{left:327.764854pt;}
.x4{left:415.750404pt;}
.xa{left:569.608594pt;}
.xd{left:657.250404pt;}
}




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