
    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_bdba59726746c8726c0a8694.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933000;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_ea763e48f376c4623edb5b1a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914000;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_e6eab00510dd2024a88c328b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914000;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_065c41e4930fc535347b616b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_0952d8e7708435317927f299.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.775000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3a2720f090141e75a519bbf3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.905000;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_b1628407536df65194c9bd52.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.775000;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_023a5a394a3a07a6c404cfe9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.005371;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_a27accc5d720447bcfc4e297.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.770000;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_bc9bb3d659934ec5cf90edb2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005371;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{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:-36.001136px;}
.v3{vertical-align:-25.074863px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:148.504684px;}
.lsf{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000137px;}
.lsb{letter-spacing:0.000180px;}
.ls0{letter-spacing:0.011250px;}
.ls8{letter-spacing:0.020251px;}
.lse{letter-spacing:0.048020px;}
.ls7{letter-spacing:0.070315px;}
.ls6{letter-spacing:3.530678px;}
.ls4{letter-spacing:3.809445px;}
.lsd{letter-spacing:3.855724px;}
.ls5{letter-spacing:4.831476px;}
.ls3{letter-spacing:8.641010px;}
.ls2{letter-spacing:10.592209px;}
.ls1{letter-spacing:18.489955px;}
.lsc{letter-spacing:22.160364px;}
.ls9{letter-spacing:328.200066px;}
.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;}
}
.wsf{word-spacing:-178.487790px;}
.ws11{word-spacing:-113.430572px;}
.ws13{word-spacing:-107.976411px;}
.ws10{word-spacing:-86.375724px;}
.wsb{word-spacing:-85.907711px;}
.wsa{word-spacing:-74.994870px;}
.ws12{word-spacing:-47.262738px;}
.ws6{word-spacing:-45.001419px;}
.ws1{word-spacing:-41.174191px;}
.wsc{word-spacing:-37.395741px;}
.ws7{word-spacing:-36.034885px;}
.wse{word-spacing:-36.001316px;}
.wsd{word-spacing:-36.001273px;}
.ws8{word-spacing:-36.001136px;}
.ws0{word-spacing:-35.989885px;}
.ws2{word-spacing:-33.276444px;}
.ws3{word-spacing:-31.325245px;}
.ws4{word-spacing:-27.515711px;}
.ws9{word-spacing:-21.600682px;}
.ws5{word-spacing:-21.589432px;}
.ws15{word-spacing:0.000000px;}
.ws14{word-spacing:8404.900544px;}
._1b{margin-left:-29.013774px;}
._3{margin-left:-18.489955px;}
._c{margin-left:-16.593192px;}
._2c{margin-left:-14.964852px;}
._2a{margin-left:-13.355018px;}
._1f{margin-left:-12.021996px;}
._4{margin-left:-10.592209px;}
._5{margin-left:-8.641010px;}
._19{margin-left:-7.594406px;}
._18{margin-left:-6.587960px;}
._13{margin-left:-5.445580px;}
._2{margin-left:-4.290211px;}
._11{margin-left:-3.151174px;}
._0{margin-left:-2.128875px;}
._b{margin-left:-1.066493px;}
._f{width:1.190906px;}
._9{width:2.816893px;}
._20{width:4.228541px;}
._32{width:5.349115px;}
._2e{width:6.643906px;}
._2d{width:7.757856px;}
._27{width:9.612909px;}
._26{width:11.348806px;}
._23{width:13.039654px;}
._1{width:14.378336px;}
._2f{width:17.270268px;}
._14{width:18.571787px;}
._e{width:19.904417px;}
._d{width:20.931781px;}
._29{width:22.001387px;}
._10{width:23.096547px;}
._25{width:24.681105px;}
._24{width:25.707602px;}
._28{width:26.833831px;}
._17{width:28.312678px;}
._16{width:29.609569px;}
._21{width:33.102475px;}
._22{width:34.152216px;}
._30{width:36.996134px;}
._2b{width:38.505084px;}
._1c{width:40.900351px;}
._12{width:42.969496px;}
._1e{width:56.849466px;}
._1d{width:57.884555px;}
._a{width:81.702618px;}
._7{width:86.228997px;}
._8{width:92.867179px;}
._15{width:95.498034px;}
._1a{width:162.058711px;}
._31{width:178.249716px;}
._6{width:577.438181px;}
._33{width:10086.992438px;}
.fc2{color:transparent;}
.fc1{color:rgb(3,45,79);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:83.972649px;}
.fs3{font-size:86.357728px;}
.fs8{font-size:86.402730px;}
.fs7{font-size:86.492724px;}
.fs1{font-size:92.914625px;}
.fs0{font-size:143.959541px;}
.fs2{font-size:144.004542px;}
.fs6{font-size:144.139542px;}
.fsa{font-size:162.005110px;}
.fse{font-size:179.960685px;}
.fs5{font-size:180.005678px;}
.fsd{font-size:189.050954px;}
.fsc{font-size:206.196504px;}
.fsf{font-size:239.992579px;}
.fs9{font-size:270.008516px;}
.fs4{font-size:299.979480px;}
.fsb{font-size:343.630843px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000119px;}
.y4{bottom:27.000867px;}
.y15{bottom:27.001023px;}
.y19{bottom:43.876541px;}
.y18{bottom:49.501719px;}
.y12{bottom:60.752065px;}
.y3{bottom:76.502428px;}
.y14{bottom:76.502584px;}
.y4e{bottom:85.635508px;}
.y17{bottom:99.003280px;}
.y11{bottom:110.253626px;}
.y4c{bottom:114.886431px;}
.y2{bottom:126.003990px;}
.y4b{bottom:144.137354px;}
.y4a{bottom:173.388276px;}
.y32{bottom:236.224279px;}
.y47{bottom:333.081645px;}
.y46{bottom:394.958597px;}
.y45{bottom:456.835549px;}
.y44{bottom:518.712501px;}
.y43{bottom:580.589452px;}
.y3e{bottom:783.600018px;}
.y3d{bottom:833.101580px;}
.y3c{bottom:882.603141px;}
.y3b{bottom:932.104702px;}
.y1c{bottom:1120.011930px;}
.y42{bottom:1332.987344px;}
.y41{bottom:1398.239402px;}
.y40{bottom:1463.491460px;}
.y3f{bottom:1528.743518px;}
.y28{bottom:1622.436549px;}
.y4f{bottom:1730.374789px;}
.y10{bottom:1757.824498px;}
.y1{bottom:1766.606536px;}
.y13{bottom:1791.357222px;}
.y2c{bottom:1878.209469px;}
.y51{bottom:1973.986167px;}
.y16{bottom:1984.913838px;}
.yd{bottom:2140.450989px;}
.y50{bottom:2161.927579px;}
.yc{bottom:2183.036467px;}
.ya{bottom:2183.814720px;}
.y9{bottom:2251.565529px;}
.yb{bottom:2263.179956px;}
.y30{bottom:2269.425796px;}
.y2f{bottom:2318.927358px;}
.y2e{bottom:2368.428919px;}
.y2d{bottom:2417.930480px;}
.y8{bottom:2441.266729px;}
.yf{bottom:2457.671730px;}
.y26{bottom:2574.817224px;}
.y7{bottom:2623.224221px;}
.y25{bottom:2624.318786px;}
.y27{bottom:2668.195169px;}
.y24{bottom:2673.820347px;}
.y23{bottom:2723.321908px;}
.y22{bottom:2772.823470px;}
.y6{bottom:2793.567142px;}
.ye{bottom:2855.510684px;}
.y49{bottom:2929.074820px;}
.y48{bottom:2938.075104px;}
.y31{bottom:3073.431068px;}
.y20{bottom:3230.275044px;}
.y21{bottom:3246.025541px;}
.y1f{bottom:3279.776606px;}
.y1e{bottom:3329.278167px;}
.y1d{bottom:3378.779728px;}
.y39{bottom:3505.877163px;}
.y3a{bottom:3521.627659px;}
.y38{bottom:3555.378724px;}
.y37{bottom:3604.880285px;}
.y36{bottom:3654.381847px;}
.y35{bottom:3703.883408px;}
.y34{bottom:3753.384969px;}
.y33{bottom:3802.886531px;}
.y4d{bottom:3936.915799px;}
.y1b{bottom:4076.590651px;}
.y1a{bottom:4087.841006px;}
.y2b{bottom:4234.879260px;}
.y29{bottom:4355.666700px;}
.y2a{bottom:4384.917623px;}
.h20{height:60.544280px;}
.h13{height:60.654716px;}
.hc{height:62.263922px;}
.h12{height:62.361254px;}
.h5{height:68.461020px;}
.hb{height:82.039842px;}
.h3{height:103.794829px;}
.h8{height:103.827275px;}
.h10{height:103.924610px;}
.h19{height:109.409251px;}
.h18{height:110.129049px;}
.h17{height:110.148731px;}
.h7{height:110.163475px;}
.h11{height:110.266750px;}
.h15{height:116.805684px;}
.h9{height:117.003862px;}
.he{height:126.363986px;}
.h1e{height:129.751654px;}
.h1b{height:136.305738px;}
.h1c{height:136.770121px;}
.h1d{height:137.669924px;}
.h1a{height:144.623980px;}
.ha{height:162.005267px;}
.h2{height:166.505267px;}
.h1f{height:183.627134px;}
.h6{height:184.505968px;}
.h14{height:194.676140px;}
.hf{height:210.585595px;}
.hd{height:229.484302px;}
.h16{height:297.172363px;}
.h4{height:5055.749789px;}
.h0{height:5055.749908px;}
.h1{height:5055.750000px;}
.w5{width:244.132723px;}
.w2{width:433.138648px;}
.w4{width:588.393433px;}
.w6{width:698.647111px;}
.w3{width:3576.374851px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x2{left:6.750213px;}
.x14{left:10.599944px;}
.x10{left:20.356111px;}
.x11{left:22.799547px;}
.x3{left:36.598811px;}
.x13{left:73.303093px;}
.x23{left:85.042055px;}
.x19{left:89.294159px;}
.x17{left:103.384572px;}
.x18{left:148.016840px;}
.x1{left:149.705007px;}
.xc{left:157.586555px;}
.xe{left:159.280415px;}
.x5{left:183.900236px;}
.x1e{left:184.901302px;}
.x27{left:188.770135px;}
.x15{left:201.820824px;}
.x4{left:212.936082px;}
.x6{left:253.586218px;}
.x2c{left:258.850757px;}
.x16{left:266.158791px;}
.x7{left:288.429202px;}
.x8{left:456.836993px;}
.x9{left:493.615175px;}
.x1f{left:571.776525px;}
.x29{left:597.697522px;}
.x28{left:759.145553px;}
.xa{left:859.466556px;}
.xb{left:1025.939045px;}
.x1c{left:1124.027197px;}
.x2a{left:1223.776327px;}
.x1d{left:1242.314131px;}
.x20{left:1281.709073px;}
.xf{left:1295.633430px;}
.x21{left:1312.083164px;}
.x1a{left:1358.247939px;}
.x1b{left:1561.668418px;}
.x2b{left:1586.233950px;}
.x25{left:1620.500548px;}
.x26{left:1675.589108px;}
.x24{left:1713.938687px;}
.x2e{left:2618.073179px;}
.x22{left:2700.550255px;}
.x12{left:2718.379219px;}
.xd{left:2771.887565px;}
.x2d{left:3218.958838px;}
@media print{
.v2{vertical-align:-32.001009pt;}
.v3{vertical-align:-22.288767pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:132.004164pt;}
.lsf{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000122pt;}
.lsb{letter-spacing:0.000160pt;}
.ls0{letter-spacing:0.010000pt;}
.ls8{letter-spacing:0.018001pt;}
.lse{letter-spacing:0.042684pt;}
.ls7{letter-spacing:0.062502pt;}
.ls6{letter-spacing:3.138380pt;}
.ls4{letter-spacing:3.386174pt;}
.lsd{letter-spacing:3.427310pt;}
.ls5{letter-spacing:4.294645pt;}
.ls3{letter-spacing:7.680898pt;}
.ls2{letter-spacing:9.415297pt;}
.ls1{letter-spacing:16.435516pt;}
.lsc{letter-spacing:19.698101pt;}
.ls9{letter-spacing:291.733392pt;}
.wsf{word-spacing:-158.655814pt;}
.ws11{word-spacing:-100.827175pt;}
.ws13{word-spacing:-95.979032pt;}
.ws10{word-spacing:-76.778422pt;}
.wsb{word-spacing:-76.362410pt;}
.wsa{word-spacing:-66.662107pt;}
.ws12{word-spacing:-42.011323pt;}
.ws6{word-spacing:-40.001262pt;}
.ws1{word-spacing:-36.599281pt;}
.wsc{word-spacing:-33.240658pt;}
.ws7{word-spacing:-32.031009pt;}
.wse{word-spacing:-32.001169pt;}
.wsd{word-spacing:-32.001131pt;}
.ws8{word-spacing:-32.001009pt;}
.ws0{word-spacing:-31.991009pt;}
.ws2{word-spacing:-29.579061pt;}
.ws3{word-spacing:-27.844662pt;}
.ws4{word-spacing:-24.458410pt;}
.ws9{word-spacing:-19.200607pt;}
.ws5{word-spacing:-19.190606pt;}
.ws15{word-spacing:0.000000pt;}
.ws14{word-spacing:7471.022706pt;}
._1b{margin-left:-25.790021pt;}
._3{margin-left:-16.435516pt;}
._c{margin-left:-14.749504pt;}
._2c{margin-left:-13.302090pt;}
._2a{margin-left:-11.871127pt;}
._1f{margin-left:-10.686219pt;}
._4{margin-left:-9.415297pt;}
._5{margin-left:-7.680898pt;}
._19{margin-left:-6.750583pt;}
._18{margin-left:-5.855964pt;}
._13{margin-left:-4.840516pt;}
._2{margin-left:-3.813521pt;}
._11{margin-left:-2.801043pt;}
._0{margin-left:-1.892334pt;}
._b{margin-left:-0.947994pt;}
._f{width:1.058583pt;}
._9{width:2.503905pt;}
._20{width:3.758703pt;}
._32{width:4.754769pt;}
._2e{width:5.905695pt;}
._2d{width:6.895872pt;}
._27{width:8.544808pt;}
._26{width:10.087827pt;}
._23{width:11.590804pt;}
._1{width:12.780743pt;}
._2f{width:15.351349pt;}
._14{width:16.508255pt;}
._e{width:17.692815pt;}
._d{width:18.606027pt;}
._29{width:19.556788pt;}
._10{width:20.530264pt;}
._25{width:21.938760pt;}
._24{width:22.851202pt;}
._28{width:23.852295pt;}
._17{width:25.166825pt;}
._16{width:26.319617pt;}
._21{width:29.424422pt;}
._22{width:30.357526pt;}
._30{width:32.885453pt;}
._2b{width:34.226742pt;}
._1c{width:36.355868pt;}
._12{width:38.195107pt;}
._1e{width:50.532858pt;}
._1d{width:51.452938pt;}
._a{width:72.624549pt;}
._7{width:76.647998pt;}
._8{width:82.548604pt;}
._15{width:84.887142pt;}
._1a{width:144.052188pt;}
._31{width:158.444192pt;}
._6{width:513.278383pt;}
._33{width:8966.215500pt;}
.fs10{font-size:74.642354pt;}
.fs3{font-size:76.762425pt;}
.fs8{font-size:76.802426pt;}
.fs7{font-size:76.882421pt;}
.fs1{font-size:82.590778pt;}
.fs0{font-size:127.964036pt;}
.fs2{font-size:128.004037pt;}
.fs6{font-size:128.124037pt;}
.fsa{font-size:144.004542pt;}
.fse{font-size:159.965054pt;}
.fs5{font-size:160.005047pt;}
.fsd{font-size:168.045292pt;}
.fsc{font-size:183.285781pt;}
.fsf{font-size:213.326737pt;}
.fs9{font-size:240.007570pt;}
.fs4{font-size:266.648426pt;}
.fsb{font-size:305.449638pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000106pt;}
.y4{bottom:24.000771pt;}
.y15{bottom:24.000909pt;}
.y19{bottom:39.001370pt;}
.y18{bottom:44.001528pt;}
.y12{bottom:54.001836pt;}
.y3{bottom:68.002158pt;}
.y14{bottom:68.002297pt;}
.y4e{bottom:76.120452pt;}
.y17{bottom:88.002916pt;}
.y11{bottom:98.003223pt;}
.y4c{bottom:102.121272pt;}
.y2{bottom:112.003546pt;}
.y4b{bottom:128.122092pt;}
.y4a{bottom:154.122912pt;}
.y32{bottom:209.977137pt;}
.y47{bottom:296.072574pt;}
.y46{bottom:351.074309pt;}
.y45{bottom:406.076043pt;}
.y44{bottom:461.077778pt;}
.y43{bottom:516.079513pt;}
.y3e{bottom:696.533350pt;}
.y3d{bottom:740.534737pt;}
.y3c{bottom:784.536125pt;}
.y3b{bottom:828.537513pt;}
.y1c{bottom:995.566160pt;}
.y42{bottom:1184.877639pt;}
.y41{bottom:1242.879468pt;}
.y40{bottom:1300.881298pt;}
.y3f{bottom:1358.883127pt;}
.y28{bottom:1442.165821pt;}
.y4f{bottom:1538.110924pt;}
.y10{bottom:1562.510665pt;}
.y1{bottom:1570.316920pt;}
.y13{bottom:1592.317531pt;}
.y2c{bottom:1669.519528pt;}
.y51{bottom:1754.654371pt;}
.y16{bottom:1764.367856pt;}
.yd{bottom:1902.623102pt;}
.y50{bottom:1921.713404pt;}
.yc{bottom:1940.476860pt;}
.ya{bottom:1941.168640pt;}
.y9{bottom:2001.391581pt;}
.yb{bottom:2011.715517pt;}
.y30{bottom:2017.267375pt;}
.y2f{bottom:2061.268762pt;}
.y2e{bottom:2105.270150pt;}
.y2d{bottom:2149.271538pt;}
.y8{bottom:2170.014870pt;}
.yf{bottom:2184.597093pt;}
.y26{bottom:2288.726422pt;}
.y7{bottom:2331.754863pt;}
.y25{bottom:2332.727809pt;}
.y27{bottom:2371.729040pt;}
.y24{bottom:2376.729197pt;}
.y23{bottom:2420.730585pt;}
.y22{bottom:2464.731973pt;}
.y6{bottom:2483.170793pt;}
.ye{bottom:2538.231719pt;}
.y49{bottom:2603.622063pt;}
.y48{bottom:2611.622315pt;}
.y31{bottom:2731.938728pt;}
.y20{bottom:2871.355595pt;}
.y21{bottom:2885.356037pt;}
.y1f{bottom:2915.356983pt;}
.y1e{bottom:2959.358371pt;}
.y1d{bottom:3003.359759pt;}
.y39{bottom:3116.335256pt;}
.y3a{bottom:3130.335697pt;}
.y38{bottom:3160.336643pt;}
.y37{bottom:3204.338031pt;}
.y36{bottom:3248.339419pt;}
.y35{bottom:3292.340807pt;}
.y34{bottom:3336.342195pt;}
.y33{bottom:3380.343583pt;}
.y4d{bottom:3499.480710pt;}
.y1b{bottom:3623.636135pt;}
.y1a{bottom:3633.636450pt;}
.y2b{bottom:3764.337120pt;}
.y29{bottom:3871.703734pt;}
.y2a{bottom:3897.704554pt;}
.h20{height:53.817137pt;}
.h13{height:53.915303pt;}
.hc{height:55.345709pt;}
.h12{height:55.432226pt;}
.h5{height:60.854240pt;}
.hb{height:72.924304pt;}
.h3{height:92.262070pt;}
.h8{height:92.290911pt;}
.h10{height:92.377431pt;}
.h19{height:97.252667pt;}
.h18{height:97.892488pt;}
.h17{height:97.909983pt;}
.h7{height:97.923089pt;}
.h11{height:98.014888pt;}
.h15{height:103.827275pt;}
.h9{height:104.003432pt;}
.he{height:112.323543pt;}
.h1e{height:115.334804pt;}
.h1b{height:121.160656pt;}
.h1c{height:121.573441pt;}
.h1d{height:122.373266pt;}
.h1a{height:128.554649pt;}
.ha{height:144.004682pt;}
.h2{height:148.004682pt;}
.h1f{height:163.224119pt;}
.h6{height:164.005305pt;}
.h14{height:173.045458pt;}
.hf{height:187.187195pt;}
.hd{height:203.986046pt;}
.h16{height:264.153212pt;}
.h4{height:4493.999813pt;}
.h0{height:4493.999919pt;}
.h1{height:4494.000000pt;}
.w5{width:217.006865pt;}
.w2{width:385.012131pt;}
.w4{width:523.016385pt;}
.w6{width:621.019654pt;}
.w3{width:3178.999868pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x2{left:6.000189pt;}
.x14{left:9.422172pt;}
.x10{left:18.094321pt;}
.x11{left:20.266264pt;}
.x3{left:32.532276pt;}
.x13{left:65.158305pt;}
.x23{left:75.592938pt;}
.x19{left:79.372585pt;}
.x17{left:91.897398pt;}
.x18{left:131.570524pt;}
.x1{left:133.071118pt;}
.xc{left:140.076938pt;}
.xe{left:141.582591pt;}
.x5{left:163.466876pt;}
.x1e{left:164.356713pt;}
.x27{left:167.795676pt;}
.x15{left:179.396288pt;}
.x4{left:189.276517pt;}
.x6{left:225.409971pt;}
.x2c{left:230.089562pt;}
.x16{left:236.585592pt;}
.x7{left:256.381513pt;}
.x8{left:406.077327pt;}
.x9{left:438.769044pt;}
.x1f{left:508.245800pt;}
.x29{left:531.286686pt;}
.x28{left:674.796047pt;}
.xa{left:763.970272pt;}
.xb{left:911.945818pt;}
.x1c{left:999.135286pt;}
.x2a{left:1087.801180pt;}
.x1d{left:1104.279228pt;}
.x20{left:1139.296954pt;}
.xf{left:1151.674160pt;}
.x21{left:1166.296145pt;}
.x1a{left:1207.331502pt;}
.x1b{left:1388.149705pt;}
.x2b{left:1409.985733pt;}
.x25{left:1440.444932pt;}
.x26{left:1489.412540pt;}
.x24{left:1523.501055pt;}
.x2e{left:2327.176159pt;}
.x22{left:2400.489116pt;}
.x12{left:2416.337083pt;}
.xd{left:2463.900057pt;}
.x2d{left:2861.296745pt;}
}




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