
    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_0c5c783198a81d129b5fefad.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.983398;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_e768a7787d4d3341a1b86b39.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993652;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_d5d900e21494298bb7efd9ee.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.993652;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_77578302d53ec2f8fe543699.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.993652;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_2ed9f19772851550ee2bc22d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_9932cd4ff16cf034cc19b31f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921036;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_aa630cf76102003674dac6b9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921036;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2ab28c774f8c9ac0d028ef47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.713867;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_32f8ac016afdb52b72b8aa47.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911000;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;}
.ffc{font-family:sans-serif;visibility:hidden;}
.ffd{font-family:sans-serif;visibility:hidden;}
.ffe{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:fff;src:url('chunks/assets/font_33d1f2c688385ae750d81a3d.woff2')format("woff");}.fff{font-family:fff;line-height:0.921000;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:ff10;src:url('chunks/assets/font_aa5f0dfaf0238bcd985728ee.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.921036;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:ff11;src:url('chunks/assets/font_669201da8907da7da43091d6.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.900000;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:ff12;src:url('chunks/assets/font_68d13e9e525ec19429c14407.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921036;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5817b034a1082316b360d6cb.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.713867;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);}
.v1{vertical-align:-47.137534px;}
.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;}
}
.wsc{word-spacing:-150.950244px;}
.ws8{word-spacing:-129.690851px;}
.ws5{word-spacing:-129.209657px;}
.ws7{word-spacing:-102.078583px;}
.ws9{word-spacing:-69.914205px;}
.wsd{word-spacing:-67.700359px;}
.ws2{word-spacing:-60.555147px;}
.wse{word-spacing:-50.932401px;}
.ws6{word-spacing:-49.832780px;}
.ws10{word-spacing:-47.679961px;}
.ws1{word-spacing:-42.452510px;}
.ws0{word-spacing:-39.666114px;}
.ws12{word-spacing:-39.601249px;}
.ws11{word-spacing:-38.207259px;}
.ws3{word-spacing:-32.644284px;}
.wsa{word-spacing:-16.027962px;}
.wsb{word-spacing:-8.640411px;}
.ws4{word-spacing:0.000000px;}
.wsf{word-spacing:2377.011827px;}
.ws13{word-spacing:6082.625837px;}
._14{margin-left:-68.718907px;}
._e{margin-left:-41.628499px;}
._15{margin-left:-40.628214px;}
._12{margin-left:-37.112299px;}
._17{margin-left:-35.628953px;}
._11{margin-left:-29.086857px;}
._13{margin-left:-25.583601px;}
._d{margin-left:-24.078361px;}
._10{margin-left:-22.507954px;}
._16{margin-left:-21.140823px;}
._c{margin-left:-19.061881px;}
._f{margin-left:-18.042868px;}
._2{margin-left:-16.864481px;}
._1a{margin-left:-15.653207px;}
._1c{margin-left:-14.022451px;}
._4{margin-left:-12.644390px;}
._1b{margin-left:-11.619220px;}
._19{margin-left:-10.542600px;}
._1e{margin-left:-9.512326px;}
._9{margin-left:-8.339494px;}
._5{margin-left:-6.966670px;}
._a{margin-left:-5.309842px;}
._18{margin-left:-3.817489px;}
._1{margin-left:-2.577381px;}
._0{margin-left:-1.476610px;}
._7{width:1.494188px;}
._3{width:3.388742px;}
._6{width:4.619538px;}
._b{width:9.307718px;}
._8{width:11.781581px;}
._1d{width:2669.362298px;}
.fc7{color:rgb(45,69,82);}
.fc6{color:rgb(36,105,189);}
.fc5{color:rgb(33,103,186);}
.fc8{color:rgb(75,18,47);}
.fc3{color:rgb(0,110,185);}
.fc9{color:transparent;}
.fc2{color:rgb(212,82,71);}
.fc4{color:rgb(186,34,46);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsa{font-size:43.202053px;}
.fs16{font-size:113.178570px;}
.fsb{font-size:119.678194px;}
.fs0{font-size:144.004542px;}
.fs6{font-size:151.467417px;}
.fs1{font-size:161.825100px;}
.fs14{font-size:162.005110px;}
.fs3{font-size:163.221420px;}
.fs11{font-size:179.960685px;}
.fs2{font-size:180.005678px;}
.fsf{font-size:182.480751px;}
.fs15{font-size:198.006245px;}
.fs12{font-size:202.170934px;}
.fs10{font-size:215.961821px;}
.fse{font-size:228.787216px;}
.fs17{font-size:275.993714px;}
.fs13{font-size:280.628856px;}
.fs7{font-size:310.269250px;}
.fs8{font-size:349.571026px;}
.fs5{font-size:392.734519px;}
.fsd{font-size:402.807714px;}
.fs4{font-size:452.155488px;}
.fsc{font-size:501.495827px;}
.fs9{font-size:968.385544px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000119px;}
.y1a{bottom:6.150925px;}
.y1c{bottom:9.091717px;}
.y39{bottom:15.911471px;}
.y12{bottom:21.050053px;}
.yc{bottom:22.661550px;}
.ye{bottom:33.656988px;}
.y14{bottom:43.041983px;}
.y16{bottom:48.644606px;}
.y10{bottom:54.060220px;}
.y18{bottom:72.200986px;}
.y38{bottom:86.475401px;}
.y45{bottom:156.248806px;}
.y37{bottom:157.039331px;}
.y44{bottom:212.500580px;}
.y36{bottom:227.603262px;}
.y4f{bottom:249.898002px;}
.y46{bottom:264.252177px;}
.y43{bottom:268.752355px;}
.y35{bottom:298.167192px;}
.y4e{bottom:306.149776px;}
.y41{bottom:359.026178px;}
.y4d{bottom:362.401550px;}
.y50{bottom:413.477787px;}
.y40{bottom:415.277952px;}
.y4c{bottom:418.653324px;}
.y42{bottom:466.354549px;}
.y3f{bottom:471.529726px;}
.y4a{bottom:508.887403px;}
.y49{bottom:565.139178px;}
.y3d{bottom:566.512038px;}
.y3e{bottom:617.588634px;}
.y4b{bottom:618.263634px;}
.y48{bottom:621.390952px;}
.y3c{bottom:622.763812px;}
.y3b{bottom:704.193655px;}
.y11{bottom:837.990084px;}
.yf{bottom:849.870084px;}
.y13{bottom:863.910083px;}
.y47{bottom:882.974493px;}
.y5f{bottom:888.731306px;}
.y5e{bottom:944.983080px;}
.y5d{bottom:1001.234854px;}
.y5c{bottom:1057.486629px;}
.y5b{bottom:1113.738403px;}
.y5a{bottom:1169.990177px;}
.y59{bottom:1206.031465px;}
.y57{bottom:1364.334522px;}
.y56{bottom:1420.586296px;}
.y55{bottom:1476.838070px;}
.y54{bottom:1533.089845px;}
.y53{bottom:1589.341619px;}
.y52{bottom:1645.593393px;}
.y58{bottom:1672.523262px;}
.y8{bottom:1808.653235px;}
.y7{bottom:1864.905010px;}
.y6{bottom:1921.156784px;}
.y5{bottom:1977.408558px;}
.y4{bottom:2033.660332px;}
.y3{bottom:2089.912107px;}
.y19{bottom:2101.230032px;}
.y1b{bottom:2113.110031px;}
.y2{bottom:2126.705435px;}
.y51{bottom:2196.406793px;}
.y3a{bottom:2236.019536px;}
.ya{bottom:2455.628498px;}
.y33{bottom:2462.378678px;}
.y32{bottom:2545.631302px;}
.y9{bottom:2601.883064px;}
.y31{bottom:2628.884061px;}
.y30{bottom:2691.886048px;}
.y2f{bottom:2774.013529px;}
.y2e{bottom:2853.380313px;}
.y2d{bottom:2855.016153px;}
.y2c{bottom:2936.018732px;}
.y2b{bottom:2999.020719px;}
.y2a{bottom:3080.023298px;}
.y29{bottom:3143.025285px;}
.yb{bottom:3204.989986px;}
.y28{bottom:3224.162144px;}
.yd{bottom:3249.989984px;}
.y27{bottom:3287.164131px;}
.y26{bottom:3398.542475px;}
.y34{bottom:3586.949970px;}
.y25{bottom:3641.434058px;}
.y24{bottom:3716.811436px;}
.y23{bottom:3792.188813px;}
.y22{bottom:3867.566191px;}
.y60{bottom:3974.100957px;}
.y21{bottom:4217.705612px;}
.y20{bottom:4269.457244px;}
.y15{bottom:4307.669940px;}
.y1f{bottom:4370.710438px;}
.y17{bottom:4403.789936px;}
.y1e{bottom:4527.929691px;}
.y1d{bottom:4666.309055px;}
.h19{height:16.199999px;}
.h1a{height:30.675000px;}
.h1b{height:41.039998px;}
.he{height:56.159998px;}
.h6{height:60.119997px;}
.h1d{height:85.434336px;}
.h29{height:86.597080px;}
.h10{height:107.693334px;}
.h3{height:108.706554px;}
.h1c{height:113.694284px;}
.h11{height:115.199995px;}
.h7{height:115.893037px;}
.h4{height:123.818326px;}
.h27{height:123.956058px;}
.h14{height:128.879995px;}
.h21{height:129.567851px;}
.h5{height:137.728954px;}
.h28{height:140.591506px;}
.hf{height:143.894046px;}
.hb{height:145.439994px;}
.h8{height:154.079994px;}
.h25{height:154.688405px;}
.h20{height:162.447095px;}
.h22{height:165.240319px;}
.h23{height:170.962651px;}
.h2a{height:197.022857px;}
.h26{height:199.256510px;}
.h13{height:220.601437px;}
.h15{height:248.207913px;}
.hd{height:279.234243px;}
.h1f{height:286.007863px;}
.h12{height:294.755787px;}
.ha{height:322.778967px;}
.h16{height:330.119986px;}
.h24{height:350.999985px;}
.h1e{height:356.079948px;}
.hc{height:373.097793px;}
.h9{height:429.547714px;}
.h18{height:691.298665px;}
.h17{height:919.966267px;}
.h2{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.wc{width:20.879999px;}
.wb{width:60.479997px;}
.w4{width:77.039997px;}
.w5{width:87.119996px;}
.w6{width:128.519995px;}
.w7{width:134.279994px;}
.w8{width:157.319993px;}
.wa{width:165.959993px;}
.w3{width:226.799991px;}
.w9{width:485.279980px;}
.wd{width:1487.519938px;}
.w2{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.xd{left:1.315154px;}
.xb{left:3.223231px;}
.xe{left:31.037065px;}
.xf{left:50.649880px;}
.x21{left:158.874470px;}
.x24{left:205.090479px;}
.x1a{left:209.342562px;}
.x2b{left:231.449074px;}
.x22{left:280.302220px;}
.x23{left:286.360872px;}
.x13{left:319.679987px;}
.x12{left:322.919987px;}
.x4{left:442.215334px;}
.x3{left:456.344189px;}
.x14{left:476.639980px;}
.xc{left:520.199978px;}
.xa{left:540.719977px;}
.x15{left:649.799973px;}
.x16{left:668.879972px;}
.x11{left:791.639967px;}
.x10{left:803.879967px;}
.x18{left:1031.521668px;}
.x17{left:1083.484245px;}
.x5{left:1172.499467px;}
.x8{left:1237.679948px;}
.x7{left:1239.119948px;}
.x6{left:1254.877508px;}
.x9{left:1311.119945px;}
.x19{left:1609.308401px;}
.x1d{left:1877.947122px;}
.x27{left:1879.415598px;}
.x25{left:1882.947918px;}
.x20{left:1900.439921px;}
.x2{left:1930.664620px;}
.x26{left:1954.480167px;}
.x1c{left:1956.338702px;}
.x1b{left:2197.826357px;}
.x28{left:2288.124240px;}
.x1f{left:2677.791524px;}
.x1e{left:2756.183429px;}
.x2a{left:3151.067122px;}
.x1{left:3181.363173px;}
.x29{left:3273.324649px;}
@media print{
.v1{vertical-align:-41.900030pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.wsc{word-spacing:-134.177995pt;}
.ws8{word-spacing:-115.280756pt;}
.ws5{word-spacing:-114.853028pt;}
.ws7{word-spacing:-90.736518pt;}
.ws9{word-spacing:-62.145960pt;}
.wsd{word-spacing:-60.178097pt;}
.ws2{word-spacing:-53.826797pt;}
.wse{word-spacing:-45.273246pt;}
.ws6{word-spacing:-44.295805pt;}
.ws10{word-spacing:-42.382187pt;}
.ws1{word-spacing:-37.735565pt;}
.ws0{word-spacing:-35.258768pt;}
.ws12{word-spacing:-35.201110pt;}
.ws11{word-spacing:-33.962008pt;}
.ws3{word-spacing:-29.017141pt;}
.wsa{word-spacing:-14.247077pt;}
.wsb{word-spacing:-7.680365pt;}
.ws4{word-spacing:0.000000pt;}
.wsf{word-spacing:2112.899402pt;}
.ws13{word-spacing:5406.778522pt;}
._14{margin-left:-61.083473pt;}
._e{margin-left:-37.003110pt;}
._15{margin-left:-36.113968pt;}
._12{margin-left:-32.988710pt;}
._17{margin-left:-31.670181pt;}
._11{margin-left:-25.854984pt;}
._13{margin-left:-22.740979pt;}
._d{margin-left:-21.402988pt;}
._10{margin-left:-20.007071pt;}
._16{margin-left:-18.791843pt;}
._c{margin-left:-16.943894pt;}
._f{margin-left:-16.038105pt;}
._2{margin-left:-14.990650pt;}
._1a{margin-left:-13.913961pt;}
._1c{margin-left:-12.464401pt;}
._4{margin-left:-11.239457pt;}
._1b{margin-left:-10.328195pt;}
._19{margin-left:-9.371200pt;}
._1e{margin-left:-8.455401pt;}
._9{margin-left:-7.412883pt;}
._5{margin-left:-6.192596pt;}
._a{margin-left:-4.719859pt;}
._18{margin-left:-3.393324pt;}
._1{margin-left:-2.291006pt;}
._0{margin-left:-1.312542pt;}
._7{width:1.328167pt;}
._3{width:3.012215pt;}
._6{width:4.106256pt;}
._b{width:8.273527pt;}
._8{width:10.472516pt;}
._1d{width:2372.766487pt;}
.fsa{font-size:38.401825pt;}
.fs16{font-size:100.603173pt;}
.fsb{font-size:106.380617pt;}
.fs0{font-size:128.004037pt;}
.fs6{font-size:134.637704pt;}
.fs1{font-size:143.844533pt;}
.fs14{font-size:144.004542pt;}
.fs3{font-size:145.085707pt;}
.fs11{font-size:159.965054pt;}
.fs2{font-size:160.005047pt;}
.fsf{font-size:162.205112pt;}
.fs15{font-size:176.005551pt;}
.fs12{font-size:179.707497pt;}
.fs10{font-size:191.966063pt;}
.fse{font-size:203.366414pt;}
.fs17{font-size:245.327746pt;}
.fs13{font-size:249.447872pt;}
.fs7{font-size:275.794889pt;}
.fs8{font-size:310.729801pt;}
.fs5{font-size:349.097350pt;}
.fsd{font-size:358.051301pt;}
.fs4{font-size:401.915990pt;}
.fsc{font-size:445.774068pt;}
.fs9{font-size:860.787150pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000106pt;}
.y1a{bottom:5.467489pt;}
.y1c{bottom:8.081526pt;}
.y39{bottom:14.143530pt;}
.y12{bottom:18.711158pt;}
.yc{bottom:20.143600pt;}
.ye{bottom:29.917323pt;}
.y14{bottom:38.259541pt;}
.y16{bottom:43.239650pt;}
.y10{bottom:48.053529pt;}
.y18{bottom:64.178654pt;}
.y38{bottom:76.867023pt;}
.y45{bottom:138.887828pt;}
.y37{bottom:139.590517pt;}
.y44{bottom:188.889405pt;}
.y36{bottom:202.314010pt;}
.y4f{bottom:222.131557pt;}
.y46{bottom:234.890824pt;}
.y43{bottom:238.890982pt;}
.y35{bottom:265.037504pt;}
.y4e{bottom:272.133134pt;}
.y41{bottom:319.134380pt;}
.y4d{bottom:322.134711pt;}
.y50{bottom:367.535811pt;}
.y40{bottom:369.135957pt;}
.y4c{bottom:372.136288pt;}
.y42{bottom:414.537377pt;}
.y3f{bottom:419.137534pt;}
.y4a{bottom:452.344359pt;}
.y49{bottom:502.345936pt;}
.y3d{bottom:503.566256pt;}
.y3e{bottom:548.967675pt;}
.y4b{bottom:549.567675pt;}
.y48{bottom:552.347513pt;}
.y3c{bottom:553.567833pt;}
.y3b{bottom:625.949915pt;}
.y11{bottom:744.880075pt;}
.yf{bottom:755.440074pt;}
.y13{bottom:767.920074pt;}
.y47{bottom:784.866216pt;}
.y5f{bottom:789.983383pt;}
.y5e{bottom:839.984960pt;}
.y5d{bottom:889.986537pt;}
.y5c{bottom:939.988114pt;}
.y5b{bottom:989.989691pt;}
.y5a{bottom:1039.991268pt;}
.y59{bottom:1072.027969pt;}
.y57{bottom:1212.741797pt;}
.y56{bottom:1262.743374pt;}
.y55{bottom:1312.744952pt;}
.y54{bottom:1362.746529pt;}
.y53{bottom:1412.748106pt;}
.y52{bottom:1462.749683pt;}
.y58{bottom:1486.687344pt;}
.y8{bottom:1607.691765pt;}
.y7{bottom:1657.693342pt;}
.y6{bottom:1707.694919pt;}
.y5{bottom:1757.696496pt;}
.y4{bottom:1807.698073pt;}
.y3{bottom:1857.699650pt;}
.y19{bottom:1867.760028pt;}
.y1b{bottom:1878.320028pt;}
.y2{bottom:1890.404831pt;}
.y51{bottom:1952.361593pt;}
.y3a{bottom:1987.572921pt;}
.ya{bottom:2182.780887pt;}
.y33{bottom:2188.781047pt;}
.y32{bottom:2262.783380pt;}
.y9{bottom:2312.784946pt;}
.y31{bottom:2336.785832pt;}
.y30{bottom:2392.787598pt;}
.y2f{bottom:2465.789803pt;}
.y2e{bottom:2536.338056pt;}
.y2d{bottom:2537.792136pt;}
.y2c{bottom:2609.794428pt;}
.y2b{bottom:2665.796195pt;}
.y2a{bottom:2737.798487pt;}
.y29{bottom:2793.800253pt;}
.yb{bottom:2848.879987pt;}
.y28{bottom:2865.921906pt;}
.yd{bottom:2888.879986pt;}
.y27{bottom:2921.923672pt;}
.y26{bottom:3020.926644pt;}
.y34{bottom:3188.399973pt;}
.y25{bottom:3236.830274pt;}
.y24{bottom:3303.832387pt;}
.y23{bottom:3370.834501pt;}
.y22{bottom:3437.836614pt;}
.y60{bottom:3532.534184pt;}
.y21{bottom:3749.071655pt;}
.y20{bottom:3795.073106pt;}
.y15{bottom:3829.039946pt;}
.y1f{bottom:3885.075945pt;}
.y17{bottom:3914.479943pt;}
.y1e{bottom:4024.826392pt;}
.y1d{bottom:4147.830271pt;}
.h19{height:14.399999pt;}
.h1a{height:27.266667pt;}
.h1b{height:36.479998pt;}
.he{height:49.919998pt;}
.h6{height:53.439998pt;}
.h1d{height:75.941632pt;}
.h29{height:76.975182pt;}
.h10{height:95.727408pt;}
.h3{height:96.628048pt;}
.h1c{height:101.061586pt;}
.h11{height:102.399996pt;}
.h7{height:103.016033pt;}
.h4{height:110.060734pt;}
.h27{height:110.183163pt;}
.h14{height:114.559995pt;}
.h21{height:115.171423pt;}
.h5{height:122.425736pt;}
.h28{height:124.970227pt;}
.hf{height:127.905819pt;}
.hb{height:129.279995pt;}
.h8{height:136.959994pt;}
.h25{height:137.500805pt;}
.h20{height:144.397417pt;}
.h22{height:146.880283pt;}
.h23{height:151.966801pt;}
.h2a{height:175.131428pt;}
.h26{height:177.116898pt;}
.h13{height:196.090166pt;}
.h15{height:220.629256pt;}
.hd{height:248.208216pt;}
.h1f{height:254.229212pt;}
.h12{height:262.005144pt;}
.ha{height:286.914637pt;}
.h16{height:293.439988pt;}
.h24{height:311.999987pt;}
.h1e{height:316.515509pt;}
.hc{height:331.642482pt;}
.h9{height:381.820190pt;}
.h18{height:614.487702pt;}
.h17{height:817.747793pt;}
.h2{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.wc{width:18.559999pt;}
.wb{width:53.759998pt;}
.w4{width:68.479997pt;}
.w5{width:77.439997pt;}
.w6{width:114.239995pt;}
.w7{width:119.359995pt;}
.w8{width:139.839994pt;}
.wa{width:147.519994pt;}
.w3{width:201.599992pt;}
.w9{width:431.359982pt;}
.wd{width:1322.239945pt;}
.w2{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.xd{left:1.169025pt;}
.xb{left:2.865094pt;}
.xe{left:27.588503pt;}
.xf{left:45.022115pt;}
.x21{left:141.221751pt;}
.x24{left:182.302648pt;}
.x1a{left:186.082277pt;}
.x2b{left:205.732510pt;}
.x22{left:249.157529pt;}
.x23{left:254.542997pt;}
.x13{left:284.159988pt;}
.x12{left:287.039988pt;}
.x4{left:393.080297pt;}
.x3{left:405.639279pt;}
.x14{left:423.679982pt;}
.xc{left:462.399981pt;}
.xa{left:480.639980pt;}
.x15{left:577.599976pt;}
.x16{left:594.559975pt;}
.x11{left:703.679971pt;}
.x10{left:714.559970pt;}
.x18{left:916.908150pt;}
.x17{left:963.097107pt;}
.x5{left:1042.221749pt;}
.x8{left:1100.159954pt;}
.x7{left:1101.439954pt;}
.x6{left:1115.446674pt;}
.x9{left:1165.439951pt;}
.x19{left:1430.496356pt;}
.x1d{left:1669.286330pt;}
.x27{left:1670.591642pt;}
.x25{left:1673.731482pt;}
.x20{left:1689.279930pt;}
.x2{left:1716.146328pt;}
.x26{left:1737.315704pt;}
.x1c{left:1738.967736pt;}
.x1b{left:1953.623429pt;}
.x28{left:2033.888213pt;}
.x1f{left:2380.259133pt;}
.x1e{left:2449.940826pt;}
.x2a{left:2800.948553pt;}
.x1{left:2827.878376pt;}
.x29{left:2909.621910pt;}
}




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