
    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_a85a1e8e395c83ebf619932c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_29131bccaf74dad2a9833402.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5110873b6f3641624da9b7c8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.710938;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_5110873b6f3641624da9b7c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710938;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_2ca5ec630bb427155d3a1659.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861816;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_3e9b57ac65b17bee031b5862.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.759766;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_f65d25790b45c8b7fbf35252.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970703;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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e09a2c3129726c1c1439bb43.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.861328;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:ffa;src:url('chunks/assets/font_edbea4a77634a46e659252be.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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:ffb;src:url('chunks/assets/font_baec303cfdd7d31b7651b575.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_42002ce7069b69a060f81c70.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.677734;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:ffd;src:url('chunks/assets/font_7b83cc374e1b10d1285704ce.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_5b19db4f904c63377f451b68.woff2')format("woff");}.fff{font-family:fff;line-height:0.710938;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_c0afe0b94d0177f420c964f7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.746094;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_3fc7fc7a833d9d164a79e3cf.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_92182813b0fce692de50489d.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_da44cd1c199c453197e87e0b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.675293;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:ff14;src:url('chunks/assets/font_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_cce5afeffd1b6ae253885258.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_c33e93e53959ef7f6dbbcbb3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.710938;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.084962px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.084957px;}
.v1{vertical-align:26.586900px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.749999px;}
.ls3{letter-spacing:894.627496px;}
.ls7{letter-spacing:1094.095711px;}
.ls6{letter-spacing:1150.099201px;}
.ls8{letter-spacing:1469.399086px;}
.lsa{letter-spacing:1734.164191px;}
.ls4{letter-spacing:1887.560056px;}
.ls5{letter-spacing:2310.963710px;}
.ls9{letter-spacing:2429.053282px;}
.ls2{letter-spacing:2465.252065px;}
.lsb{letter-spacing:2473.335739px;}
.ls1{letter-spacing:2545.052702px;}
.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;}
}
.ws1{word-spacing:-14.920899px;}
.ws2{word-spacing:-8.952539px;}
.ws3{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-8.490234px;}
._17{margin-left:-7.433261px;}
._11{margin-left:-6.271565px;}
._9{margin-left:-5.213609px;}
._3{margin-left:-3.506067px;}
._4{margin-left:-2.434538px;}
._1{margin-left:-1.308747px;}
._15{width:1.002056px;}
._10{width:3.561577px;}
._a{width:4.614461px;}
._8{width:8.840076px;}
._e{width:9.857085px;}
._d{width:12.505762px;}
._c{width:13.715216px;}
._b{width:17.772918px;}
._14{width:18.801895px;}
._13{width:21.564634px;}
._12{width:22.599330px;}
._7{width:26.351715px;}
._16{width:27.712863px;}
._6{width:31.489402px;}
._2{width:48.888364px;}
._0{width:53.812310px;}
._5{width:62.005089px;}
.fc8{color:rgb(19,115,51);}
.fc7{color:rgb(79,189,177);}
.fc5{color:rgb(17,85,204);}
.fc4{color:rgb(32,33,34);}
.fc3{color:rgb(255,0,0);}
.fca{color:rgb(68,71,70);}
.fc2{color:rgb(126,179,224);}
.fc9{color:rgb(70,70,70);}
.fc6{color:rgb(68,84,106);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:39.600001px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.999999px;}
.fs7{font-size:63.000000px;}
.fs0{font-size:66.000002px;}
.fs6{font-size:83.999997px;}
.fs4{font-size:108.000000px;}
.fs1{font-size:167.999994px;}
.y0{bottom:0.000000px;}
.y1f{bottom:3.749909px;}
.y3b{bottom:3.750000px;}
.yd9{bottom:3.750733px;}
.y87{bottom:4.124267px;}
.y69{bottom:4.124633px;}
.y1d{bottom:4.124909px;}
.y4{bottom:4.124988px;}
.y8{bottom:4.124995px;}
.y39{bottom:4.125000px;}
.y9{bottom:4.125008px;}
.y20{bottom:4.125091px;}
.y3c{bottom:4.125365px;}
.yd7{bottom:4.125732px;}
.y7{bottom:24.266578px;}
.yd1{bottom:29.999254px;}
.yce{bottom:29.999273px;}
.yc2{bottom:30.000000px;}
.y6{bottom:44.408203px;}
.yd0{bottom:50.142334px;}
.ycd{bottom:50.142338px;}
.y64{bottom:56.849858px;}
.y19{bottom:56.850038px;}
.y35{bottom:56.850218px;}
.ycc{bottom:70.283198px;}
.ycb{bottom:90.424073px;}
.y86{bottom:124.015868px;}
.y66{bottom:124.016236px;}
.y1b{bottom:124.016693px;}
.y37{bottom:124.016968px;}
.yca{bottom:128.567138px;}
.y9f{bottom:133.450924px;}
.y85{bottom:136.409191px;}
.yd5{bottom:140.627198px;}
.yb9{bottom:145.874996px;}
.y9e{bottom:163.663328px;}
.y84{bottom:166.621594px;}
.yc9{bottom:166.708013px;}
.y18{bottom:169.395077px;}
.yd4{bottom:170.839598px;}
.yb8{bottom:176.087399px;}
.yc8{bottom:186.848873px;}
.y9d{bottom:193.875732px;}
.y83{bottom:196.833998px;}
.y63{bottom:202.692265px;}
.yb7{bottom:206.299801px;}
.yc7{bottom:206.991938px;}
.y17{bottom:211.099922px;}
.y2{bottom:223.816400px;}
.y9c{bottom:224.088131px;}
.y82{bottom:227.046762px;}
.yc6{bottom:227.132813px;}
.yd3{bottom:228.084965px;}
.yb6{bottom:236.512203px;}
.yc5{bottom:247.273673px;}
.y62{bottom:249.273191px;}
.y9b{bottom:254.300534px;}
.y81{bottom:257.259161px;}
.yb5{bottom:266.724605px;}
.yc4{bottom:267.416754px;}
.y61{bottom:279.485594px;}
.y9a{bottom:284.512936px;}
.y80{bottom:287.471564px;}
.yd2{bottom:295.524171px;}
.yb4{bottom:296.937008px;}
.y60{bottom:309.697996px;}
.y99{bottom:314.725338px;}
.y7f{bottom:317.683966px;}
.yc3{bottom:322.858155px;}
.y5f{bottom:339.910398px;}
.yb3{bottom:342.150146px;}
.y98{bottom:344.937740px;}
.y7e{bottom:347.896368px;}
.y16{bottom:357.501527px;}
.y34{bottom:369.791558px;}
.y5e{bottom:370.122800px;}
.yb2{bottom:372.362549px;}
.y97{bottom:375.150143px;}
.y7d{bottom:378.108770px;}
.y15{bottom:399.206447px;}
.y5d{bottom:400.335203px;}
.yb1{bottom:402.574951px;}
.y33{bottom:404.933343px;}
.y7c{bottom:408.321173px;}
.y96{bottom:420.361811px;}
.y32{bottom:425.074763px;}
.yb0{bottom:432.787353px;}
.y14{bottom:440.911187px;}
.y5c{bottom:443.419195px;}
.y31{bottom:445.216363px;}
.y95{bottom:450.574214px;}
.y7b{bottom:451.405150px;}
.yaf{bottom:462.999755px;}
.y30{bottom:465.358148px;}
.y94{bottom:480.786616px;}
.y13{bottom:482.616032px;}
.yae{bottom:493.212158px;}
.y5b{bottom:505.033446px;}
.y2f{bottom:506.520818px;}
.y93{bottom:510.999018px;}
.y7a{bottom:513.019775px;}
.yea{bottom:522.537593px;}
.y12{bottom:524.320952px;}
.yad{bottom:538.424564px;}
.ycf{bottom:540.132574px;}
.y92{bottom:541.211420px;}
.y2e{bottom:547.683653px;}
.yc1{bottom:560.274909px;}
.y5a{bottom:563.437868px;}
.ye9{bottom:564.748538px;}
.yac{bottom:568.636966px;}
.y91{bottom:571.423823px;}
.y79{bottom:571.424194px;}
.y11{bottom:588.133850px;}
.y2d{bottom:588.846683px;}
.y59{bottom:593.650272px;}
.ye8{bottom:594.960938px;}
.yab{bottom:598.849368px;}
.y78{bottom:601.636598px;}
.y90{bottom:614.507815px;}
.y58{bottom:623.862664px;}
.ye7{bottom:625.173338px;}
.yaa{bottom:629.061770px;}
.y2c{bottom:630.009338px;}
.y77{bottom:631.849002px;}
.y57{bottom:654.075068px;}
.ya9{bottom:659.274173px;}
.yc0{bottom:659.485838px;}
.y8f{bottom:661.089115px;}
.y76{bottom:662.061401px;}
.ye6{bottom:667.386473px;}
.y2b{bottom:671.172179px;}
.y10{bottom:677.038190px;}
.y56{bottom:684.287472px;}
.y8e{bottom:691.301508px;}
.y4a{bottom:691.374758px;}
.y75{bottom:692.273804px;}
.y2a{bottom:694.335203px;}
.ye5{bottom:697.598873px;}
.ya8{bottom:704.485842px;}
.y49{bottom:711.515994px;}
.y55{bottom:714.499876px;}
.ybf{bottom:716.733395px;}
.y8d{bottom:721.513912px;}
.y74{bottom:722.486206px;}
.ya7{bottom:734.698241px;}
.y29{bottom:735.497858px;}
.y48{bottom:736.157964px;}
.ye4{bottom:739.812005px;}
.yf{bottom:743.834342px;}
.y54{bottom:744.712279px;}
.y8c{bottom:751.726315px;}
.y73{bottom:752.698608px;}
.y47{bottom:760.799379px;}
.ya6{bottom:764.910644px;}
.ye3{bottom:770.024408px;}
.y53{bottom:774.924683px;}
.ybe{bottom:775.136723px;}
.y28{bottom:776.660708px;}
.y8b{bottom:781.938719px;}
.y72{bottom:782.911010px;}
.y46{bottom:785.440794px;}
.ye{bottom:785.539127px;}
.ya5{bottom:795.123046px;}
.y52{bottom:805.137087px;}
.y45{bottom:810.082764px;}
.y8a{bottom:812.151123px;}
.ye2{bottom:812.235350px;}
.y71{bottom:813.123413px;}
.ybd{bottom:817.349858px;}
.y27{bottom:817.823723px;}
.ya4{bottom:825.335448px;}
.yd{bottom:827.413193px;}
.y44{bottom:834.724179px;}
.y51{bottom:835.349486px;}
.y26{bottom:840.986393px;}
.y89{bottom:842.363527px;}
.ye1{bottom:842.447753px;}
.ybc{bottom:847.562255px;}
.ya3{bottom:855.547850px;}
.y70{bottom:856.207405px;}
.y43{bottom:859.365594px;}
.y50{bottom:865.561889px;}
.yc{bottom:869.625593px;}
.y88{bottom:872.575930px;}
.ybb{bottom:877.774658px;}
.y25{bottom:882.149228px;}
.y42{bottom:884.007564px;}
.ye0{bottom:884.660888px;}
.ya2{bottom:885.760253px;}
.y4f{bottom:895.774291px;}
.y6f{bottom:902.788330px;}
.y41{bottom:908.648994px;}
.yb{bottom:911.837978px;}
.ydf{bottom:914.873288px;}
.y24{bottom:923.312258px;}
.y4e{bottom:925.986693px;}
.ya1{bottom:928.844245px;}
.y6e{bottom:933.000732px;}
.y40{bottom:933.290409px;}
.yba{bottom:935.021481px;}
.yde{bottom:938.036138px;}
.ya{bottom:954.050393px;}
.y4d{bottom:956.199095px;}
.y3f{bottom:957.932378px;}
.ydd{bottom:961.199714px;}
.y6d{bottom:963.213135px;}
.y23{bottom:964.474913px;}
.y1{bottom:970.066995px;}
.ya0{bottom:978.425543px;}
.ydc{bottom:984.361823px;}
.y4c{bottom:986.411498px;}
.y5{bottom:990.208603px;}
.y6c{bottom:993.425536px;}
.y22{bottom:1005.637847px;}
.ydb{bottom:1007.523926px;}
.y3e{bottom:1009.178285px;}
.y6b{bottom:1023.637939px;}
.yda{bottom:1030.687499px;}
.y4b{bottom:1043.657593px;}
.y3{bottom:1050.633408px;}
.y21{bottom:1053.850159px;}
.y6a{bottom:1053.850342px;}
.y3d{bottom:1056.762085px;}
.y36{bottom:1069.866577px;}
.y1a{bottom:1069.866761px;}
.y65{bottom:1069.866943px;}
.yd6{bottom:1090.007812px;}
.y38{bottom:1090.008178px;}
.y1c{bottom:1090.008453px;}
.y67{bottom:1090.008544px;}
.yd8{bottom:1171.754882px;}
.y3a{bottom:1171.755249px;}
.y1e{bottom:1171.755523px;}
.y68{bottom:1171.755615px;}
.hc{height:18.002838px;}
.h13{height:18.002930px;}
.h22{height:18.003662px;}
.hf{height:35.991211px;}
.h23{height:43.989259px;}
.h5{height:44.891603px;}
.he{height:45.117189px;}
.hd{height:45.615233px;}
.h6{height:46.921876px;}
.h2{height:47.373048px;}
.h1b{height:48.210939px;}
.h8{height:49.500001px;}
.h18{height:55.010729px;}
.h1c{height:55.010742px;}
.h19{height:57.421873px;}
.h4{height:60.424804px;}
.h1d{height:71.891601px;}
.h14{height:71.982422px;}
.h17{height:73.828125px;}
.h15{height:76.781250px;}
.h1f{height:92.033935px;}
.hb{height:99.749909px;}
.h12{height:99.750000px;}
.h21{height:99.750732px;}
.h7{height:114.843746px;}
.h16{height:127.199700px;}
.h10{height:127.199895px;}
.h9{height:127.200075px;}
.h20{height:127.200435px;}
.h3{height:139.124988px;}
.h1a{height:193.133057px;}
.ha{height:193.133239px;}
.h11{height:193.133423px;}
.h1{height:292.933005px;}
.h1e{height:309.308355px;}
.h0{height:1263.000000px;}
.w5{width:57.375012px;}
.w7{width:92.249954px;}
.w3{width:153.000023px;}
.w2{width:296.999955px;}
.w4{width:569.249910px;}
.w6{width:574.874955px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x12{left:6.750000px;}
.x4{left:7.875000px;}
.x5{left:85.049996px;}
.x11{left:86.174995px;}
.x10{left:112.049996px;}
.x13{left:144.675007px;}
.xd{left:150.522189px;}
.xb{left:151.875000px;}
.x6{left:208.845357px;}
.x7{left:225.485103px;}
.xc{left:238.050018px;}
.x3{left:252.000000px;}
.xe{left:259.424996px;}
.x2{left:297.675015px;}
.xf{left:331.133204px;}
.x8{left:387.334897px;}
.x1{left:446.456696px;}
.x14{left:720.674970px;}
.xa{left:799.506502px;}
.x9{left:812.924996px;}
@media print{
.v2{vertical-align:-10.742188pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.742184pt;}
.v1{vertical-align:23.632800pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.666666pt;}
.ls3{letter-spacing:795.224441pt;}
.ls7{letter-spacing:972.529521pt;}
.ls6{letter-spacing:1022.310401pt;}
.ls8{letter-spacing:1306.132521pt;}
.lsa{letter-spacing:1541.479281pt;}
.ls4{letter-spacing:1677.831161pt;}
.ls5{letter-spacing:2054.189965pt;}
.ls9{letter-spacing:2159.158473pt;}
.ls2{letter-spacing:2191.335169pt;}
.lsb{letter-spacing:2198.520657pt;}
.ls1{letter-spacing:2262.269069pt;}
.ws1{word-spacing:-13.263021pt;}
.ws2{word-spacing:-7.957813pt;}
.ws3{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-7.546875pt;}
._17{margin-left:-6.607343pt;}
._11{margin-left:-5.574724pt;}
._9{margin-left:-4.634319pt;}
._3{margin-left:-3.116504pt;}
._4{margin-left:-2.164033pt;}
._1{margin-left:-1.163330pt;}
._15{width:0.890717pt;}
._10{width:3.165846pt;}
._a{width:4.101743pt;}
._8{width:7.857846pt;}
._e{width:8.761853pt;}
._d{width:11.116233pt;}
._c{width:12.191303pt;}
._b{width:15.798149pt;}
._14{width:16.712795pt;}
._13{width:19.168563pt;}
._12{width:20.088293pt;}
._7{width:23.423746pt;}
._16{width:24.633656pt;}
._6{width:27.990580pt;}
._2{width:43.456324pt;}
._0{width:47.833164pt;}
._5{width:55.115635pt;}
.fs5{font-size:35.200001pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.333332pt;}
.fs7{font-size:56.000000pt;}
.fs0{font-size:58.666668pt;}
.fs6{font-size:74.666664pt;}
.fs4{font-size:96.000000pt;}
.fs1{font-size:149.333328pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:3.333252pt;}
.y3b{bottom:3.333334pt;}
.yd9{bottom:3.333985pt;}
.y87{bottom:3.666015pt;}
.y69{bottom:3.666341pt;}
.y1d{bottom:3.666585pt;}
.y4{bottom:3.666656pt;}
.y8{bottom:3.666662pt;}
.y39{bottom:3.666667pt;}
.y9{bottom:3.666674pt;}
.y20{bottom:3.666747pt;}
.y3c{bottom:3.666991pt;}
.yd7{bottom:3.667317pt;}
.y7{bottom:21.570291pt;}
.yd1{bottom:26.666003pt;}
.yce{bottom:26.666020pt;}
.yc2{bottom:26.666666pt;}
.y6{bottom:39.473958pt;}
.yd0{bottom:44.570964pt;}
.ycd{bottom:44.570967pt;}
.y64{bottom:50.533207pt;}
.y19{bottom:50.533367pt;}
.y35{bottom:50.533527pt;}
.ycc{bottom:62.473954pt;}
.ycb{bottom:80.376954pt;}
.y86{bottom:110.236327pt;}
.y66{bottom:110.236654pt;}
.y1b{bottom:110.237061pt;}
.y37{bottom:110.237305pt;}
.yca{bottom:114.281901pt;}
.y9f{bottom:118.623044pt;}
.y85{bottom:121.252614pt;}
.yd5{bottom:125.001954pt;}
.yb9{bottom:129.666663pt;}
.y9e{bottom:145.478514pt;}
.y84{bottom:148.108084pt;}
.yc9{bottom:148.184901pt;}
.y18{bottom:150.573402pt;}
.yd4{bottom:151.857421pt;}
.yb8{bottom:156.522132pt;}
.yc8{bottom:166.087887pt;}
.y9d{bottom:172.333984pt;}
.y83{bottom:174.963554pt;}
.y63{bottom:180.170902pt;}
.yb7{bottom:183.377601pt;}
.yc7{bottom:183.992834pt;}
.y17{bottom:187.644375pt;}
.y2{bottom:198.947911pt;}
.y9c{bottom:199.189450pt;}
.y82{bottom:201.819344pt;}
.yc6{bottom:201.895834pt;}
.yd3{bottom:202.742191pt;}
.yb6{bottom:210.233069pt;}
.yc5{bottom:219.798821pt;}
.y62{bottom:221.576170pt;}
.y9b{bottom:226.044919pt;}
.y81{bottom:228.674810pt;}
.yb5{bottom:237.088538pt;}
.yc4{bottom:237.703781pt;}
.y61{bottom:248.431639pt;}
.y9a{bottom:252.900388pt;}
.y80{bottom:255.530279pt;}
.yd2{bottom:262.688152pt;}
.yb4{bottom:263.944007pt;}
.y60{bottom:275.287108pt;}
.y99{bottom:279.755856pt;}
.y7f{bottom:282.385748pt;}
.yc3{bottom:286.985027pt;}
.y5f{bottom:302.142576pt;}
.yb3{bottom:304.133463pt;}
.y98{bottom:306.611325pt;}
.y7e{bottom:309.241216pt;}
.y16{bottom:317.779135pt;}
.y34{bottom:328.703607pt;}
.y5e{bottom:328.998045pt;}
.yb2{bottom:330.988932pt;}
.y97{bottom:333.466794pt;}
.y7d{bottom:336.096685pt;}
.y15{bottom:354.850175pt;}
.y5d{bottom:355.853514pt;}
.yb1{bottom:357.844401pt;}
.y33{bottom:359.940749pt;}
.y7c{bottom:362.952154pt;}
.y96{bottom:373.654943pt;}
.y32{bottom:377.844234pt;}
.yb0{bottom:384.699869pt;}
.y14{bottom:391.921055pt;}
.y5c{bottom:394.150396pt;}
.y31{bottom:395.747878pt;}
.y95{bottom:400.510412pt;}
.y7b{bottom:401.249022pt;}
.yaf{bottom:411.555338pt;}
.y30{bottom:413.651687pt;}
.y94{bottom:427.365881pt;}
.y13{bottom:428.992028pt;}
.yae{bottom:438.410807pt;}
.y5b{bottom:448.918619pt;}
.y2f{bottom:450.240727pt;}
.y93{bottom:454.221349pt;}
.y7a{bottom:456.017578pt;}
.yea{bottom:464.477861pt;}
.y12{bottom:466.063068pt;}
.yad{bottom:478.599612pt;}
.ycf{bottom:480.117844pt;}
.y92{bottom:481.076818pt;}
.y2e{bottom:486.829914pt;}
.yc1{bottom:498.022141pt;}
.y5a{bottom:500.833660pt;}
.ye9{bottom:501.998700pt;}
.yac{bottom:505.455081pt;}
.y91{bottom:507.932287pt;}
.y79{bottom:507.932617pt;}
.y11{bottom:522.785645pt;}
.y2d{bottom:523.419274pt;}
.y59{bottom:527.689131pt;}
.ye8{bottom:528.854167pt;}
.yab{bottom:532.310549pt;}
.y78{bottom:534.788087pt;}
.y90{bottom:546.229169pt;}
.y58{bottom:554.544590pt;}
.ye7{bottom:555.709634pt;}
.yaa{bottom:559.166018pt;}
.y2c{bottom:560.008300pt;}
.y77{bottom:561.643557pt;}
.y57{bottom:581.400061pt;}
.ya9{bottom:586.021487pt;}
.yc0{bottom:586.209634pt;}
.y8f{bottom:587.634769pt;}
.y76{bottom:588.499023pt;}
.ye6{bottom:593.232420pt;}
.y2b{bottom:596.597492pt;}
.y10{bottom:601.811725pt;}
.y56{bottom:608.255530pt;}
.y8e{bottom:614.490229pt;}
.y4a{bottom:614.555341pt;}
.y75{bottom:615.354492pt;}
.y2a{bottom:617.186847pt;}
.ye5{bottom:620.087887pt;}
.ya8{bottom:626.209637pt;}
.y49{bottom:632.458661pt;}
.y55{bottom:635.111001pt;}
.ybf{bottom:637.096351pt;}
.y8d{bottom:641.345699pt;}
.y74{bottom:642.209961pt;}
.ya7{bottom:653.065103pt;}
.y29{bottom:653.775874pt;}
.y48{bottom:654.362635pt;}
.ye4{bottom:657.610671pt;}
.yf{bottom:661.186082pt;}
.y54{bottom:661.966471pt;}
.y8c{bottom:668.201169pt;}
.y73{bottom:669.065429pt;}
.y47{bottom:676.266115pt;}
.ya6{bottom:679.920572pt;}
.ye3{bottom:684.466140pt;}
.y53{bottom:688.821940pt;}
.ybe{bottom:689.010420pt;}
.y28{bottom:690.365074pt;}
.y8b{bottom:695.056639pt;}
.y72{bottom:695.920898pt;}
.y46{bottom:698.169595pt;}
.ye{bottom:698.257002pt;}
.ya5{bottom:706.776041pt;}
.y52{bottom:715.677410pt;}
.y45{bottom:720.073568pt;}
.y8a{bottom:721.912109pt;}
.ye2{bottom:721.986978pt;}
.y71{bottom:722.776367pt;}
.ybd{bottom:726.533207pt;}
.y27{bottom:726.954420pt;}
.ya4{bottom:733.631509pt;}
.yd{bottom:735.478394pt;}
.y44{bottom:741.977048pt;}
.y51{bottom:742.532877pt;}
.y26{bottom:747.543460pt;}
.y89{bottom:748.767579pt;}
.ye1{bottom:748.842447pt;}
.ybc{bottom:753.388671pt;}
.ya3{bottom:760.486978pt;}
.y70{bottom:761.073249pt;}
.y43{bottom:763.880528pt;}
.y50{bottom:769.388346pt;}
.yc{bottom:773.000527pt;}
.y88{bottom:775.623049pt;}
.ybb{bottom:780.244140pt;}
.y25{bottom:784.132647pt;}
.y42{bottom:785.784501pt;}
.ye0{bottom:786.365234pt;}
.ya2{bottom:787.342447pt;}
.y4f{bottom:796.243814pt;}
.y6f{bottom:802.478515pt;}
.y41{bottom:807.687995pt;}
.yb{bottom:810.522647pt;}
.ydf{bottom:813.220700pt;}
.y24{bottom:820.722007pt;}
.y4e{bottom:823.099283pt;}
.ya1{bottom:825.639329pt;}
.y6e{bottom:829.333984pt;}
.y40{bottom:829.591475pt;}
.yba{bottom:831.130206pt;}
.yde{bottom:833.809900pt;}
.ya{bottom:848.044794pt;}
.y4d{bottom:849.954752pt;}
.y3f{bottom:851.495447pt;}
.ydd{bottom:854.399746pt;}
.y6d{bottom:856.189453pt;}
.y23{bottom:857.311034pt;}
.y1{bottom:862.281773pt;}
.ya0{bottom:869.711594pt;}
.ydc{bottom:874.988287pt;}
.y4c{bottom:876.810221pt;}
.y5{bottom:880.185425pt;}
.y6c{bottom:883.044921pt;}
.y22{bottom:893.900309pt;}
.ydb{bottom:895.576823pt;}
.y3e{bottom:897.047364pt;}
.y6b{bottom:909.900390pt;}
.yda{bottom:916.166666pt;}
.y4b{bottom:927.695638pt;}
.y3{bottom:933.896363pt;}
.y21{bottom:936.755697pt;}
.y6a{bottom:936.755859pt;}
.y3d{bottom:939.344076pt;}
.y36{bottom:950.992513pt;}
.y1a{bottom:950.992676pt;}
.y65{bottom:950.992839pt;}
.yd6{bottom:968.895833pt;}
.y38{bottom:968.896159pt;}
.y1c{bottom:968.896403pt;}
.y67{bottom:968.896484pt;}
.yd8{bottom:1041.559895pt;}
.y3a{bottom:1041.560221pt;}
.y1e{bottom:1041.560465pt;}
.y68{bottom:1041.560547pt;}
.hc{height:16.002523pt;}
.h13{height:16.002604pt;}
.h22{height:16.003255pt;}
.hf{height:31.992188pt;}
.h23{height:39.101563pt;}
.h5{height:39.903647pt;}
.he{height:40.104168pt;}
.hd{height:40.546874pt;}
.h6{height:41.708334pt;}
.h2{height:42.109376pt;}
.h1b{height:42.854168pt;}
.h8{height:44.000001pt;}
.h18{height:48.898426pt;}
.h1c{height:48.898438pt;}
.h19{height:51.041665pt;}
.h4{height:53.710937pt;}
.h1d{height:63.903645pt;}
.h14{height:63.984375pt;}
.h17{height:65.625000pt;}
.h15{height:68.250000pt;}
.h1f{height:81.807943pt;}
.hb{height:88.666585pt;}
.h12{height:88.666667pt;}
.h21{height:88.667317pt;}
.h7{height:102.083330pt;}
.h16{height:113.066400pt;}
.h10{height:113.066573pt;}
.h9{height:113.066733pt;}
.h20{height:113.067053pt;}
.h3{height:123.666656pt;}
.h1a{height:171.673828pt;}
.ha{height:171.673991pt;}
.h11{height:171.674153pt;}
.h1{height:260.384893pt;}
.h1e{height:274.940760pt;}
.h0{height:1122.666667pt;}
.w5{width:51.000011pt;}
.w7{width:81.999959pt;}
.w3{width:136.000020pt;}
.w2{width:263.999960pt;}
.w4{width:505.999920pt;}
.w6{width:510.999960pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x12{left:6.000000pt;}
.x4{left:7.000000pt;}
.x5{left:75.599996pt;}
.x11{left:76.599996pt;}
.x10{left:99.599996pt;}
.x13{left:128.600007pt;}
.xd{left:133.797501pt;}
.xb{left:135.000000pt;}
.x6{left:185.640317pt;}
.x7{left:200.431203pt;}
.xc{left:211.600016pt;}
.x3{left:224.000000pt;}
.xe{left:230.599996pt;}
.x2{left:264.600013pt;}
.xf{left:294.340626pt;}
.x8{left:344.297686pt;}
.x1{left:396.850396pt;}
.x14{left:640.599973pt;}
.xa{left:710.672446pt;}
.x9{left:722.599996pt;}
}




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