
    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_121d1daec2739501f4654daa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_c2ec3009f81f8009ae9b1ff5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_a03516461be5ce321f5dc872.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910645;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_c04e3af8773b3d49b86bfd87.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28e927d0a03f1030675bb9ff.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_8c9af26878d52834da8af98f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734375;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_3c241e00039fa686985a44f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.858398;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:ff8;src:url('chunks/assets/font_4f6c649d559794b49453e1e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.681641;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:ff9;src:url('chunks/assets/font_df5fadd061e3d2d79c913884.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.886000;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;}
.m6{transform:matrix(0.204596,-0.143668,0.143595,0.204647,0,0);-ms-transform:matrix(0.204596,-0.143668,0.143595,0.204647,0,0);-webkit-transform:matrix(0.204596,-0.143668,0.143595,0.204647,0,0);}
.m5{transform:matrix(0.228042,-0.102453,0.102348,0.228090,0,0);-ms-transform:matrix(0.228042,-0.102453,0.102348,0.228090,0,0);-webkit-transform:matrix(0.228042,-0.102453,0.102348,0.228090,0,0);}
.m3{transform:matrix(0.228076,-0.102378,0.102348,0.228090,0,0);-ms-transform:matrix(0.228076,-0.102378,0.102348,0.228090,0,0);-webkit-transform:matrix(0.228076,-0.102378,0.102348,0.228090,0,0);}
.m4{transform:matrix(0.228076,-0.102378,0.102348,0.228090,0,0);-ms-transform:matrix(0.228076,-0.102378,0.102348,0.228090,0,0);-webkit-transform:matrix(0.228076,-0.102378,0.102348,0.228090,0,0);}
.m2{transform:matrix(0.239457,0.000000,-0.071837,0.239457,0,0);-ms-transform:matrix(0.239457,0.000000,-0.071837,0.239457,0,0);-webkit-transform:matrix(0.239457,0.000000,-0.071837,0.239457,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-67.500002px;}
.v5{vertical-align:-27.000001px;}
.v4{vertical-align:-3.258009px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:27.000001px;}
.v2{vertical-align:31.500001px;}
.v3{vertical-align:38.250001px;}
.v1{vertical-align:40.500001px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000855px;}
.ls5{letter-spacing:0.057452px;}
.ls4{letter-spacing:107.972075px;}
.ls1{letter-spacing:107.972091px;}
.ls7{letter-spacing:107.986185px;}
.ls6{letter-spacing:107.986253px;}
.ls2{letter-spacing:108.000426px;}
.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;}
}
.wsb{word-spacing:-45.000001px;}
.wsa{word-spacing:-30.000002px;}
.ws5{word-spacing:-27.000001px;}
.ws1{word-spacing:-25.500000px;}
.wsc{word-spacing:-22.500001px;}
.ws2{word-spacing:-19.774820px;}
.ws4{word-spacing:-18.000001px;}
.ws7{word-spacing:-17.000001px;}
.ws3{word-spacing:-14.487777px;}
.ws6{word-spacing:-14.000001px;}
.ws9{word-spacing:-12.000001px;}
.ws8{word-spacing:-0.078000px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-16.380001px;}
._b{margin-left:-9.282000px;}
._4{margin-left:-7.644000px;}
._5{margin-left:-5.610000px;}
._2{margin-left:-4.104000px;}
._1{margin-left:-2.805000px;}
._3{margin-left:-1.512000px;}
._8{width:1.724220px;}
._6{width:12.750000px;}
._7{width:20.355644px;}
._9{width:27.234000px;}
._a{width:28.458000px;}
._0{width:32.016610px;}
._d{width:102.506223px;}
._e{width:224.036227px;}
._c{width:712.253695px;}
.fce{color:rgb(74,134,232);}
.fc3{color:rgb(255,255,255);}
.fc5{color:rgb(0,0,0);}
.fcb{color:rgb(13,13,13);}
.fcc{color:rgb(15,15,15);}
.fc1{color:rgb(0,151,167);}
.fcd{color:rgb(60,120,216);}
.fc8{color:rgb(61,133,198);}
.fc2{color:rgb(255,229,153);}
.fc4{color:transparent;}
.fc7{color:rgb(224,102,102);}
.fc0{color:rgb(89,89,89);}
.fc6{color:rgb(255,153,0);}
.fca{color:rgb(230,145,56);}
.fc9{color:rgb(153,0,0);}
.fs18{font-size:48.000004px;}
.fs19{font-size:50.113475px;}
.fs0{font-size:51.000000px;}
.fs13{font-size:56.000003px;}
.fs14{font-size:58.465719px;}
.fs4{font-size:60.000000px;}
.fs9{font-size:64.105207px;}
.fs15{font-size:68.000004px;}
.fs16{font-size:70.994088px;}
.fs17{font-size:72.000002px;}
.fsb{font-size:72.000006px;}
.fsc{font-size:75.170213px;}
.fs10{font-size:78.000005px;}
.fs12{font-size:78.000013px;}
.fs3{font-size:84.000000px;}
.fs8{font-size:87.233403px;}
.fs7{font-size:87.499204px;}
.fsf{font-size:90.000003px;}
.fs11{font-size:91.523401px;}
.fsd{font-size:92.755803px;}
.fse{font-size:96.000006px;}
.fs6{font-size:102.000000px;}
.fsa{font-size:108.000003px;}
.fs2{font-size:114.000007px;}
.fs1a{font-size:120.000010px;}
.fs1b{font-size:144.000005px;}
.fs1c{font-size:162.000012px;}
.fs5{font-size:180.000006px;}
.fs1{font-size:228.000013px;}
.y0{bottom:0.000000px;}
.yc{bottom:10.574340px;}
.y1{bottom:29.588719px;}
.yb{bottom:54.368094px;}
.y35{bottom:71.824226px;}
.y4d{bottom:75.645590px;}
.y5d{bottom:76.207775px;}
.y7a{bottom:78.338059px;}
.ya{bottom:79.568128px;}
.y34{bottom:79.699227px;}
.y4a{bottom:82.773523px;}
.y1d{bottom:89.263116px;}
.y29{bottom:92.201785px;}
.y78{bottom:96.500813px;}
.y4c{bottom:97.245591px;}
.y5c{bottom:97.807776px;}
.y2b{bottom:104.650141px;}
.y49{bottom:113.373535px;}
.y2e{bottom:114.659648px;}
.y9{bottom:129.968163px;}
.y2a{bottom:133.450140px;}
.y77{bottom:136.280792px;}
.y5b{bottom:137.075272px;}
.y28{bottom:143.687820px;}
.y48{bottom:143.973548px;}
.y17{bottom:148.325551px;}
.y6d{bottom:151.887619px;}
.y8{bottom:155.168153px;}
.y2d{bottom:163.151582px;}
.y27{bottom:170.822821px;}
.y47{bottom:174.573560px;}
.y76{bottom:176.060782px;}
.y5a{bottom:180.271156px;}
.y26{bottom:180.947821px;}
.y64{bottom:187.828108px;}
.y6c{bottom:194.007621px;}
.y46{bottom:195.611094px;}
.y45{bottom:205.173595px;}
.y7{bottom:205.568143px;}
.y63{bottom:214.828109px;}
.y75{bottom:215.840794px;}
.y25{bottom:218.207856px;}
.y59{bottom:223.467040px;}
.y13{bottom:234.027499px;}
.y44{bottom:235.773596px;}
.y6b{bottom:236.127633px;}
.y62{bottom:241.828110px;}
.y2f{bottom:244.218206px;}
.y19{bottom:249.745807px;}
.y24{bottom:255.467846px;}
.y74{bottom:255.620796px;}
.y58{bottom:259.912305px;}
.y57{bottom:266.662305px;}
.y61{bottom:268.828110px;}
.y31{bottom:273.211897px;}
.y6a{bottom:278.247634px;}
.y6{bottom:281.168135px;}
.y16{bottom:281.850396px;}
.y43{bottom:284.373597px;}
.y1c{bottom:284.786814px;}
.y56{bottom:288.262306px;}
.y73{bottom:295.400786px;}
.y60{bottom:295.828115px;}
.y1b{bottom:304.018374px;}
.y15{bottom:308.100156px;}
.y5{bottom:308.168135px;}
.y69{bottom:320.367625px;}
.y5f{bottom:322.828113px;}
.y23{bottom:329.987837px;}
.y55{bottom:330.564445px;}
.y3c{bottom:332.952269px;}
.y42{bottom:332.973599px;}
.y72{bottom:335.180764px;}
.y54{bottom:353.964446px;}
.y2c{bottom:361.957088px;}
.y68{bottom:362.487619px;}
.y3b{bottom:363.552270px;}
.y41{bottom:363.573588px;}
.y22{bottom:367.247827px;}
.y71{bottom:374.960766px;}
.y53{bottom:377.364458px;}
.y1a{bottom:379.659810px;}
.y4{bottom:382.165661px;}
.y3a{bottom:394.152265px;}
.y40{bottom:394.173589px;}
.y11{bottom:397.050108px;}
.y52{bottom:400.764447px;}
.y21{bottom:404.507817px;}
.y67{bottom:404.607627px;}
.y14{bottom:411.337674px;}
.y70{bottom:414.740773px;}
.y51{bottom:424.164448px;}
.y39{bottom:424.752260px;}
.y3f{bottom:424.773579px;}
.y18{bottom:431.404198px;}
.y10{bottom:432.240108px;}
.y3{bottom:440.305674px;}
.y20{bottom:441.767830px;}
.y33{bottom:445.531405px;}
.y66{bottom:446.727629px;}
.y50{bottom:447.564449px;}
.y6f{bottom:454.520757px;}
.y38{bottom:455.352256px;}
.y3e{bottom:455.373580px;}
.yf{bottom:467.430104px;}
.y1f{bottom:479.027831px;}
.y32{bottom:480.721398px;}
.y12{bottom:481.959822px;}
.y4f{bottom:484.340074px;}
.y6e{bottom:494.300750px;}
.y2{bottom:498.445676px;}
.y30{bottom:500.934966px;}
.y5e{bottom:501.651490px;}
.ye{bottom:502.620098px;}
.y37{bottom:503.952254px;}
.y3d{bottom:503.973581px;}
.y79{bottom:506.774641px;}
.y4e{bottom:514.550551px;}
.y65{bottom:539.055000px;}
.y4b{bottom:549.180000px;}
.y1e{bottom:549.410051px;}
.y36{bottom:553.729253px;}
.yd{bottom:553.730051px;}
.h22{height:36.410572px;}
.h1{height:37.179199px;}
.h5{height:41.660157px;}
.h17{height:42.478999px;}
.hb{height:43.571508px;}
.h1c{height:49.992189px;}
.h20{height:50.027345px;}
.h1a{height:51.581642px;}
.h13{height:52.863285px;}
.h15{height:52.863290px;}
.h1f{height:54.196293px;}
.hf{height:54.615858px;}
.h1e{height:56.862309px;}
.h4{height:58.365234px;}
.h9{height:59.472115px;}
.h23{height:60.328129px;}
.h21{height:60.351566px;}
.ha{height:60.569287px;}
.h12{height:61.215822px;}
.h14{height:62.252001px;}
.h24{height:62.534182px;}
.h10{height:64.403687px;}
.h11{height:65.062504px;}
.h18{height:69.128906px;}
.h1d{height:69.984379px;}
.h16{height:70.410159px;}
.h8{height:70.872070px;}
.h7{height:74.358399px;}
.hd{height:75.041018px;}
.h3{height:77.261723px;}
.hc{height:78.732424px;}
.h1b{height:85.464847px;}
.h19{height:85.498051px;}
.he{height:90.527349px;}
.h25{height:100.054691px;}
.h26{height:109.792977px;}
.h6{height:121.992191px;}
.h2{height:154.523447px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:10.125000px;}
.x25{left:19.023307px;}
.xd{left:23.568897px;}
.x18{left:33.475359px;}
.x24{left:35.173876px;}
.x2d{left:39.681652px;}
.xe{left:44.835294px;}
.x36{left:46.751634px;}
.x35{left:63.228013px;}
.x19{left:76.783466px;}
.xf{left:87.230317px;}
.x37{left:89.146657px;}
.x27{left:102.673882px;}
.x3{left:122.873525px;}
.x2a{left:145.068901px;}
.x2b{left:170.173884px;}
.x1e{left:190.067294px;}
.x1f{left:192.331403px;}
.x2{left:209.844772px;}
.x7{left:212.518990px;}
.x17{left:227.098290px;}
.x9{left:312.078835px;}
.x4{left:329.317076px;}
.x6{left:336.254900px;}
.x5{left:402.302285px;}
.x1a{left:414.503190px;}
.x1b{left:432.503190px;}
.xb{left:450.254433px;}
.xa{left:464.776114px;}
.x2e{left:473.459674px;}
.x21{left:512.810676px;}
.x8{left:515.827457px;}
.x20{left:568.126031px;}
.x26{left:606.175544px;}
.x12{left:702.605835px;}
.x11{left:722.401448px;}
.xc{left:735.177174px;}
.x1c{left:749.589549px;}
.x16{left:785.068405px;}
.x13{left:789.527894px;}
.x15{left:799.571276px;}
.x22{left:844.009857px;}
.x2c{left:852.428165px;}
.x1d{left:856.671249px;}
.x2f{left:859.424244px;}
.x34{left:887.955722px;}
.x31{left:889.139773px;}
.x30{left:898.198791px;}
.x10{left:926.345246px;}
.x23{left:938.312349px;}
.x14{left:948.987030px;}
.x32{left:953.273562px;}
.x33{left:965.648562px;}
.x28{left:1013.548454px;}
.x29{left:1030.423454px;}
@media print{
.v7{vertical-align:-60.000002pt;}
.v5{vertical-align:-24.000001pt;}
.v4{vertical-align:-2.896008pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:24.000001pt;}
.v2{vertical-align:28.000001pt;}
.v3{vertical-align:34.000001pt;}
.v1{vertical-align:36.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000760pt;}
.ls5{letter-spacing:0.051068pt;}
.ls4{letter-spacing:95.975178pt;}
.ls1{letter-spacing:95.975192pt;}
.ls7{letter-spacing:95.987720pt;}
.ls6{letter-spacing:95.987780pt;}
.ls2{letter-spacing:96.000379pt;}
.wsb{word-spacing:-40.000001pt;}
.wsa{word-spacing:-26.666669pt;}
.ws5{word-spacing:-24.000001pt;}
.ws1{word-spacing:-22.666667pt;}
.wsc{word-spacing:-20.000001pt;}
.ws2{word-spacing:-17.577618pt;}
.ws4{word-spacing:-16.000001pt;}
.ws7{word-spacing:-15.111112pt;}
.ws3{word-spacing:-12.878024pt;}
.ws6{word-spacing:-12.444445pt;}
.ws9{word-spacing:-10.666668pt;}
.ws8{word-spacing:-0.069333pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-14.560000pt;}
._b{margin-left:-8.250667pt;}
._4{margin-left:-6.794667pt;}
._5{margin-left:-4.986667pt;}
._2{margin-left:-3.648000pt;}
._1{margin-left:-2.493333pt;}
._3{margin-left:-1.344000pt;}
._8{width:1.532640pt;}
._6{width:11.333333pt;}
._7{width:18.093905pt;}
._9{width:24.208000pt;}
._a{width:25.296000pt;}
._0{width:28.459209pt;}
._d{width:91.116643pt;}
._e{width:199.143313pt;}
._c{width:633.114395pt;}
.fs18{font-size:42.666670pt;}
.fs19{font-size:44.545311pt;}
.fs0{font-size:45.333333pt;}
.fs13{font-size:49.777780pt;}
.fs14{font-size:51.969528pt;}
.fs4{font-size:53.333334pt;}
.fs9{font-size:56.982406pt;}
.fs15{font-size:60.444448pt;}
.fs16{font-size:63.105856pt;}
.fs17{font-size:64.000002pt;}
.fsb{font-size:64.000005pt;}
.fsc{font-size:66.817967pt;}
.fs10{font-size:69.333338pt;}
.fs12{font-size:69.333345pt;}
.fs3{font-size:74.666666pt;}
.fs8{font-size:77.540802pt;}
.fs7{font-size:77.777070pt;}
.fsf{font-size:80.000003pt;}
.fs11{font-size:81.354135pt;}
.fsd{font-size:82.449603pt;}
.fse{font-size:85.333339pt;}
.fs6{font-size:90.666667pt;}
.fsa{font-size:96.000003pt;}
.fs2{font-size:101.333339pt;}
.fs1a{font-size:106.666675pt;}
.fs1b{font-size:128.000004pt;}
.fs1c{font-size:144.000011pt;}
.fs5{font-size:160.000005pt;}
.fs1{font-size:202.666678pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:9.399413pt;}
.y1{bottom:26.301084pt;}
.yb{bottom:48.327194pt;}
.y35{bottom:63.843757pt;}
.y4d{bottom:67.240525pt;}
.y5d{bottom:67.740245pt;}
.y7a{bottom:69.633830pt;}
.ya{bottom:70.727225pt;}
.y34{bottom:70.843757pt;}
.y4a{bottom:73.576465pt;}
.y1d{bottom:79.344992pt;}
.y29{bottom:81.957142pt;}
.y78{bottom:85.778500pt;}
.y4c{bottom:86.440525pt;}
.y5c{bottom:86.940246pt;}
.y2b{bottom:93.022348pt;}
.y49{bottom:100.776476pt;}
.y2e{bottom:101.919687pt;}
.y9{bottom:115.527256pt;}
.y2a{bottom:118.622347pt;}
.y77{bottom:121.138482pt;}
.y5b{bottom:121.844687pt;}
.y28{bottom:127.722507pt;}
.y48{bottom:127.976487pt;}
.y17{bottom:131.844934pt;}
.y6d{bottom:135.011217pt;}
.y8{bottom:137.927247pt;}
.y2d{bottom:145.023628pt;}
.y27{bottom:151.842508pt;}
.y47{bottom:155.176498pt;}
.y76{bottom:156.498473pt;}
.y5a{bottom:160.241028pt;}
.y26{bottom:160.842508pt;}
.y64{bottom:166.958318pt;}
.y6c{bottom:172.451218pt;}
.y46{bottom:173.876528pt;}
.y45{bottom:182.376529pt;}
.y7{bottom:182.727239pt;}
.y63{bottom:190.958319pt;}
.y75{bottom:191.858484pt;}
.y25{bottom:193.962539pt;}
.y59{bottom:198.637369pt;}
.y13{bottom:208.024443pt;}
.y44{bottom:209.576529pt;}
.y6b{bottom:209.891229pt;}
.y62{bottom:214.958320pt;}
.y2f{bottom:217.082849pt;}
.y19{bottom:221.996273pt;}
.y24{bottom:227.082530pt;}
.y74{bottom:227.218485pt;}
.y58{bottom:231.033160pt;}
.y57{bottom:237.033160pt;}
.y61{bottom:238.958320pt;}
.y31{bottom:242.855019pt;}
.y6a{bottom:247.331231pt;}
.y6{bottom:249.927231pt;}
.y16{bottom:250.533686pt;}
.y43{bottom:252.776531pt;}
.y1c{bottom:253.143835pt;}
.y56{bottom:256.233161pt;}
.y73{bottom:262.578476pt;}
.y60{bottom:262.958324pt;}
.y1b{bottom:270.238554pt;}
.y15{bottom:273.866805pt;}
.y5{bottom:273.927231pt;}
.y69{bottom:284.771222pt;}
.y5f{bottom:286.958323pt;}
.y23{bottom:293.322522pt;}
.y55{bottom:293.835062pt;}
.y3c{bottom:295.957572pt;}
.y42{bottom:295.976532pt;}
.y72{bottom:297.938457pt;}
.y54{bottom:314.635063pt;}
.y2c{bottom:321.739634pt;}
.y68{bottom:322.211217pt;}
.y3b{bottom:323.157573pt;}
.y41{bottom:323.176523pt;}
.y22{bottom:326.442513pt;}
.y71{bottom:333.298458pt;}
.y53{bottom:335.435073pt;}
.y1a{bottom:337.475387pt;}
.y4{bottom:339.702810pt;}
.y3a{bottom:350.357569pt;}
.y40{bottom:350.376524pt;}
.y11{bottom:352.933429pt;}
.y52{bottom:356.235064pt;}
.y21{bottom:359.562504pt;}
.y67{bottom:359.651224pt;}
.y14{bottom:365.633488pt;}
.y70{bottom:368.658465pt;}
.y51{bottom:377.035065pt;}
.y39{bottom:377.557565pt;}
.y3f{bottom:377.576515pt;}
.y18{bottom:383.470398pt;}
.y10{bottom:384.213429pt;}
.y3{bottom:391.382821pt;}
.y20{bottom:392.682515pt;}
.y33{bottom:396.027915pt;}
.y66{bottom:397.091225pt;}
.y50{bottom:397.835065pt;}
.y6f{bottom:404.018451pt;}
.y38{bottom:404.757561pt;}
.y3e{bottom:404.776516pt;}
.yf{bottom:415.493426pt;}
.y1f{bottom:425.802516pt;}
.y32{bottom:427.307909pt;}
.y12{bottom:428.408730pt;}
.y4f{bottom:430.524510pt;}
.y6e{bottom:439.378445pt;}
.y2{bottom:443.062823pt;}
.y30{bottom:445.275525pt;}
.y5e{bottom:445.912436pt;}
.ye{bottom:446.773420pt;}
.y37{bottom:447.957559pt;}
.y3d{bottom:447.976516pt;}
.y79{bottom:450.466347pt;}
.y4e{bottom:457.378267pt;}
.y65{bottom:479.160000pt;}
.y4b{bottom:488.160000pt;}
.y1e{bottom:488.364489pt;}
.y36{bottom:492.203780pt;}
.yd{bottom:492.204489pt;}
.h22{height:32.364953pt;}
.h1{height:33.048177pt;}
.h5{height:37.031250pt;}
.h17{height:37.759110pt;}
.hb{height:38.730229pt;}
.h1c{height:44.437501pt;}
.h20{height:44.468751pt;}
.h1a{height:45.850348pt;}
.h13{height:46.989586pt;}
.h15{height:46.989591pt;}
.h1f{height:48.174483pt;}
.hf{height:48.547429pt;}
.h1e{height:50.544274pt;}
.h4{height:51.880208pt;}
.h9{height:52.864103pt;}
.h23{height:53.625003pt;}
.h21{height:53.645837pt;}
.ha{height:53.839366pt;}
.h12{height:54.414064pt;}
.h14{height:55.335112pt;}
.h24{height:55.585939pt;}
.h10{height:57.247722pt;}
.h11{height:57.833337pt;}
.h18{height:61.447917pt;}
.h1d{height:62.208337pt;}
.h16{height:62.586808pt;}
.h8{height:62.997396pt;}
.h7{height:66.096354pt;}
.hd{height:66.703127pt;}
.h3{height:68.677087pt;}
.hc{height:69.984377pt;}
.h1b{height:75.968753pt;}
.h19{height:75.998267pt;}
.he{height:80.468755pt;}
.h25{height:88.937503pt;}
.h26{height:97.593757pt;}
.h6{height:108.437503pt;}
.h2{height:137.354175pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.000000pt;}
.x25{left:16.909606pt;}
.xd{left:20.950131pt;}
.x18{left:29.755875pt;}
.x24{left:31.265668pt;}
.x2d{left:35.272579pt;}
.xe{left:39.853595pt;}
.x36{left:41.557008pt;}
.x35{left:56.202678pt;}
.x19{left:68.251970pt;}
.xf{left:77.538059pt;}
.x37{left:79.241473pt;}
.x27{left:91.265673pt;}
.x3{left:109.220911pt;}
.x2a{left:128.950134pt;}
.x2b{left:151.265675pt;}
.x1e{left:168.948705pt;}
.x1f{left:170.961247pt;}
.x2{left:186.528686pt;}
.x7{left:188.905769pt;}
.x17{left:201.865146pt;}
.x9{left:277.403409pt;}
.x4{left:292.726289pt;}
.x6{left:298.893245pt;}
.x5{left:357.602031pt;}
.x1a{left:368.447280pt;}
.x1b{left:384.447280pt;}
.xb{left:400.226163pt;}
.xa{left:413.134323pt;}
.x2e{left:420.853043pt;}
.x21{left:455.831712pt;}
.x8{left:458.513295pt;}
.x20{left:505.000916pt;}
.x26{left:538.822706pt;}
.x12{left:624.538520pt;}
.x11{left:642.134621pt;}
.xc{left:653.490821pt;}
.x1c{left:666.301821pt;}
.x16{left:697.838582pt;}
.x13{left:701.802572pt;}
.x15{left:710.730023pt;}
.x22{left:750.230984pt;}
.x2c{left:757.713924pt;}
.x1d{left:761.485554pt;}
.x2f{left:763.932661pt;}
.x34{left:789.293975pt;}
.x31{left:790.346465pt;}
.x30{left:798.398926pt;}
.x10{left:823.417996pt;}
.x23{left:834.055421pt;}
.x14{left:843.544027pt;}
.x32{left:847.354277pt;}
.x33{left:858.354277pt;}
.x28{left:900.931959pt;}
.x29{left:915.931959pt;}
}




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