
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_108d6181cdd1174fe120302d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f259fd98f9ecfe9f89bfbd87.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cb96a20fff3f08bca068d20e.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_31aa44f107881a16ac7738ca.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d656c55ab5c5a952a9a6a1af.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_115337fc24ff5e1e7d6e0ca5.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c9c7ff200fc3848f0c2ca29d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_c8ab15d199619e6b6ccc69cd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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_36c7daca4a712b1a73fd646a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1ec9af848948b5c9e6def9cb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900391;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_e14537598cc7fd5bf65c1293.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.680176;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:-25.044871px;}
.v3{vertical-align:-23.899221px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321705px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000023px;}
.ls2{letter-spacing:9.000000px;}
.ls1{letter-spacing:22.500000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.500000px;}
.ws0{word-spacing:-15.000000px;}
.ws5{word-spacing:-11.250000px;}
.ws3{word-spacing:-10.800000px;}
.ws4{word-spacing:-9.900000px;}
.ws1{word-spacing:0.000000px;}
._13{margin-left:-22.500017px;}
._16{margin-left:-9.295308px;}
._17{margin-left:-7.980464px;}
._d{margin-left:-6.396698px;}
._0{margin-left:-5.343750px;}
._2{margin-left:-3.972637px;}
._3{margin-left:-2.671873px;}
._1{margin-left:-1.441404px;}
._5{width:4.114916px;}
._6{width:5.356373px;}
._4{width:8.905751px;}
._9{width:9.921194px;}
._8{width:13.043782px;}
._10{width:14.398373px;}
._7{width:17.983773px;}
._c{width:22.500006px;}
._b{width:27.000000px;}
._a{width:31.500002px;}
._e{width:36.000000px;}
._f{width:40.500003px;}
._12{width:44.999999px;}
._11{width:49.499999px;}
._15{width:54.000022px;}
._14{width:58.499997px;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(26,26,26);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:39.600001px;}
.fs4{font-size:43.200002px;}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.y6c{bottom:3.496581px;}
.y28{bottom:3.496583px;}
.y26{bottom:32.896544px;}
.y2{bottom:82.323198px;}
.y10d{bottom:88.171139px;}
.y47{bottom:88.171694px;}
.y6a{bottom:88.171874px;}
.y67{bottom:107.757932px;}
.y8a{bottom:114.018785px;}
.y45{bottom:114.343621px;}
.y10c{bottom:128.553952px;}
.y8b{bottom:132.992174px;}
.y66{bottom:132.992540px;}
.y46{bottom:134.430986px;}
.y8d{bottom:145.704345px;}
.y10b{bottom:149.252197px;}
.ydf{bottom:151.575443px;}
.yb6{bottom:151.815676px;}
.y68{bottom:151.965930px;}
.y8c{bottom:164.677731px;}
.ya8{bottom:167.474857px;}
.y10a{bottom:169.950443px;}
.y69{bottom:170.939318px;}
.yde{bottom:172.273688px;}
.yb5{bottom:182.863039px;}
.y109{bottom:190.648688px;}
.ydd{bottom:192.971918px;}
.ya7{bottom:198.522224px;}
.y108{bottom:211.346924px;}
.y65{bottom:213.670159px;}
.y89{bottom:213.670162px;}
.ydc{bottom:213.670168px;}
.yb4{bottom:213.910402px;}
.ya6{bottom:229.569580px;}
.y107{bottom:231.720705px;}
.ydb{bottom:234.368410px;}
.yb3{bottom:243.608648px;}
.y44{bottom:244.717158px;}
.y64{bottom:244.717523px;}
.y88{bottom:244.717529px;}
.y106{bottom:251.018560px;}
.yda{bottom:255.066653px;}
.y25{bottom:259.483883px;}
.ya5{bottom:260.616948px;}
.y105{bottom:271.716803px;}
.y63{bottom:274.415768px;}
.y43{bottom:275.764521px;}
.y87{bottom:275.764885px;}
.yd9{bottom:275.764898px;}
.y24{bottom:280.182127px;}
.yb2{bottom:291.469483px;}
.ya4{bottom:291.664311px;}
.y104{bottom:292.415033px;}
.yd8{bottom:296.463130px;}
.y23{bottom:300.880373px;}
.y42{bottom:306.811884px;}
.y86{bottom:306.812253px;}
.y103{bottom:313.113278px;}
.yd7{bottom:317.161373px;}
.yb1{bottom:321.116457px;}
.y22{bottom:321.578618px;}
.ya3{bottom:322.711674px;}
.y62{bottom:323.463129px;}
.y102{bottom:333.811525px;}
.y41{bottom:337.859248px;}
.y85{bottom:337.859616px;}
.yd6{bottom:337.859618px;}
.y21{bottom:341.627929px;}
.ya2{bottom:353.759038px;}
.y101{bottom:354.509768px;}
.y61{bottom:354.510493px;}
.yd5{bottom:358.557856px;}
.y40{bottom:368.906611px;}
.y84{bottom:368.906979px;}
.y100{bottom:375.208012px;}
.y20{bottom:376.876472px;}
.yd4{bottom:379.256098px;}
.ya1{bottom:384.806401px;}
.y60{bottom:385.557856px;}
.y1f{bottom:394.125007px;}
.yff{bottom:395.906242px;}
.y3f{bottom:399.953974px;}
.yd3{bottom:399.954340px;}
.y83{bottom:399.954343px;}
.y1e{bottom:411.373543px;}
.ya0{bottom:415.853764px;}
.yfe{bottom:416.604493px;}
.y5f{bottom:416.605219px;}
.yd2{bottom:420.652583px;}
.y1d{bottom:428.622069px;}
.y3e{bottom:431.001338px;}
.y82{bottom:431.001706px;}
.yfd{bottom:437.302735px;}
.yd1{bottom:441.350828px;}
.y1c{bottom:445.870605px;}
.y9f{bottom:446.901128px;}
.y5e{bottom:447.652583px;}
.yfc{bottom:458.000978px;}
.y3d{bottom:462.048711px;}
.y81{bottom:462.049069px;}
.yd0{bottom:462.049075px;}
.y1b{bottom:463.119144px;}
.y9e{bottom:477.948486px;}
.yfb{bottom:478.699222px;}
.y5d{bottom:478.699949px;}
.y1a{bottom:480.367679px;}
.ycf{bottom:482.747318px;}
.y3c{bottom:493.096074px;}
.y80{bottom:493.096432px;}
.y19{bottom:497.616259px;}
.yfa{bottom:499.397467px;}
.yce{bottom:503.445563px;}
.y9d{bottom:508.995849px;}
.y5c{bottom:509.747305px;}
.yf9{bottom:520.095698px;}
.y7f{bottom:522.794678px;}
.y3b{bottom:524.143438px;}
.ycd{bottom:524.143798px;}
.y18{bottom:532.864788px;}
.y9c{bottom:540.043213px;}
.yf8{bottom:540.793942px;}
.y5b{bottom:540.794673px;}
.ycc{bottom:544.842040px;}
.y3a{bottom:555.190801px;}
.y17{bottom:559.113331px;}
.yf7{bottom:561.492188px;}
.ycb{bottom:565.540282px;}
.y9b{bottom:571.090576px;}
.y5a{bottom:571.842036px;}
.y7e{bottom:571.842048px;}
.y16{bottom:576.361866px;}
.yf6{bottom:582.190432px;}
.y39{bottom:586.238164px;}
.yca{bottom:586.238528px;}
.y15{bottom:593.610402px;}
.y9a{bottom:602.137939px;}
.yf5{bottom:602.888665px;}
.y59{bottom:602.889399px;}
.y7d{bottom:602.889404px;}
.yc9{bottom:606.936760px;}
.y14{bottom:610.858928px;}
.y38{bottom:617.285528px;}
.yf4{bottom:623.586908px;}
.yc8{bottom:627.635003px;}
.y13{bottom:628.107464px;}
.y99{bottom:633.185303px;}
.y58{bottom:633.936763px;}
.y7c{bottom:633.936772px;}
.yf3{bottom:644.285152px;}
.y12{bottom:645.356003px;}
.y37{bottom:648.332883px;}
.yc7{bottom:648.333250px;}
.y11{bottom:662.604538px;}
.y98{bottom:664.232673px;}
.yf2{bottom:664.983400px;}
.y57{bottom:664.984126px;}
.yb0{bottom:664.984132px;}
.y7b{bottom:664.984139px;}
.yc6{bottom:669.031493px;}
.y36{bottom:679.380246px;}
.y10{bottom:679.853118px;}
.yf1{bottom:685.681642px;}
.yc5{bottom:689.729738px;}
.y97{bottom:695.280036px;}
.y56{bottom:696.031489px;}
.y7a{bottom:696.031495px;}
.yf0{bottom:706.379887px;}
.y35{bottom:710.427609px;}
.yc4{bottom:710.427973px;}
.yf{bottom:715.750582px;}
.y96{bottom:726.327399px;}
.yef{bottom:727.078120px;}
.y55{bottom:727.078852px;}
.y79{bottom:727.078863px;}
.yc3{bottom:731.126215px;}
.y34{bottom:741.474973px;}
.yee{bottom:747.776363px;}
.yc2{bottom:751.824458px;}
.ye{bottom:754.448827px;}
.y95{bottom:757.374763px;}
.y54{bottom:758.126034px;}
.yaf{bottom:758.126219px;}
.y78{bottom:758.126226px;}
.yed{bottom:768.474608px;}
.y33{bottom:772.522336px;}
.yc1{bottom:772.522703px;}
.y94{bottom:788.422126px;}
.yec{bottom:789.172852px;}
.y53{bottom:789.173398px;}
.yae{bottom:789.173587px;}
.y77{bottom:789.173589px;}
.yd{bottom:793.147058px;}
.yc0{bottom:793.220948px;}
.y32{bottom:803.569699px;}
.yeb{bottom:809.871098px;}
.ybf{bottom:813.919192px;}
.y93{bottom:819.469489px;}
.y52{bottom:820.220761px;}
.yad{bottom:820.220943px;}
.y76{bottom:820.220953px;}
.y11a{bottom:830.569330px;}
.yea{bottom:830.569342px;}
.yc{bottom:831.845303px;}
.y31{bottom:834.617062px;}
.ybe{bottom:834.617438px;}
.y92{bottom:850.516853px;}
.ye9{bottom:851.267573px;}
.y51{bottom:851.268124px;}
.yac{bottom:851.268310px;}
.y75{bottom:851.268316px;}
.ybd{bottom:855.315673px;}
.y30{bottom:865.664428px;}
.yb{bottom:870.543548px;}
.y119{bottom:871.965817px;}
.ye8{bottom:871.965826px;}
.ybc{bottom:876.013915px;}
.y91{bottom:879.890624px;}
.y50{bottom:882.315488px;}
.yab{bottom:882.315673px;}
.y74{bottom:882.315679px;}
.y118{bottom:892.664056px;}
.ye7{bottom:892.664068px;}
.y2f{bottom:896.711791px;}
.ybb{bottom:896.712157px;}
.y90{bottom:898.864013px;}
.ya{bottom:909.241795px;}
.y117{bottom:913.362298px;}
.ye6{bottom:913.362310px;}
.y4f{bottom:913.362853px;}
.yaa{bottom:913.363036px;}
.y73{bottom:913.363042px;}
.yba{bottom:917.410402px;}
.y8f{bottom:917.837404px;}
.y2e{bottom:927.759154px;}
.y9{bottom:929.940038px;}
.y116{bottom:934.060540px;}
.ye5{bottom:934.060552px;}
.y8e{bottom:936.810792px;}
.yb9{bottom:938.108647px;}
.y4e{bottom:944.410217px;}
.y72{bottom:944.410401px;}
.ye4{bottom:954.758783px;}
.y2d{bottom:958.806518px;}
.yb8{bottom:958.806877px;}
.y8{bottom:968.638282px;}
.y115{bottom:975.457027px;}
.y4d{bottom:975.457580px;}
.y71{bottom:975.457764px;}
.yb7{bottom:988.505127px;}
.y2c{bottom:989.853881px;}
.y114{bottom:996.155274px;}
.ye3{bottom:996.156006px;}
.y4c{bottom:1006.504943px;}
.ya9{bottom:1006.505126px;}
.y70{bottom:1006.505128px;}
.y7{bottom:1007.336517px;}
.y113{bottom:1016.853516px;}
.ye2{bottom:1016.854248px;}
.y2b{bottom:1020.901244px;}
.y6{bottom:1037.034759px;}
.y112{bottom:1037.551757px;}
.y4b{bottom:1037.552307px;}
.y6f{bottom:1037.552491px;}
.y2a{bottom:1051.948608px;}
.y111{bottom:1058.250000px;}
.ye1{bottom:1058.250732px;}
.y5{bottom:1060.977620px;}
.y4a{bottom:1068.599671px;}
.y6e{bottom:1068.599854px;}
.y110{bottom:1078.948242px;}
.ye0{bottom:1078.948974px;}
.y29{bottom:1081.646850px;}
.y4{bottom:1098.128804px;}
.y10f{bottom:1099.646484px;}
.y49{bottom:1099.647033px;}
.y6d{bottom:1099.647217px;}
.y10e{bottom:1116.451171px;}
.y27{bottom:1116.451538px;}
.y48{bottom:1116.451720px;}
.y6b{bottom:1116.451905px;}
.y3{bottom:1119.948189px;}
.y1{bottom:1135.424996px;}
.hd{height:35.268750px;}
.h12{height:35.500782px;}
.hc{height:39.502004px;}
.h2{height:43.989259px;}
.h6{height:48.796875px;}
.h7{height:49.992188px;}
.h8{height:53.789061px;}
.h13{height:59.167970px;}
.h5{height:63.949219px;}
.h4{height:64.546875px;}
.h17{height:65.691148px;}
.h16{height:65.691224px;}
.hb{height:65.691238px;}
.h11{height:66.049805px;}
.h10{height:66.049832px;}
.h9{height:84.674925px;}
.h18{height:103.647945px;}
.he{height:103.648500px;}
.h14{height:103.648680px;}
.h3{height:118.335940px;}
.h1{height:127.575004px;}
.h15{height:146.548095px;}
.hf{height:146.548280px;}
.ha{height:146.548462px;}
.h19{height:146.548829px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:127.575005px;}
.x7{left:135.382772px;}
.x3{left:147.028279px;}
.x5{left:150.267049px;}
.xb{left:213.075005px;}
.xf{left:233.325005px;}
.x2{left:282.239210px;}
.xc{left:297.450005px;}
.xd{left:326.716261px;}
.x9{left:378.763790px;}
.x6{left:422.706015px;}
.x4{left:467.719205px;}
.xa{left:628.988382px;}
.xe{left:709.594205px;}
.x8{left:807.863416px;}
@media print{
.v2{vertical-align:-22.262108pt;}
.v3{vertical-align:-21.243752pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000020pt;}
.ls2{letter-spacing:8.000000pt;}
.ls1{letter-spacing:20.000000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.666667pt;}
.ws0{word-spacing:-13.333333pt;}
.ws5{word-spacing:-10.000000pt;}
.ws3{word-spacing:-9.600000pt;}
.ws4{word-spacing:-8.800000pt;}
.ws1{word-spacing:0.000000pt;}
._13{margin-left:-20.000015pt;}
._16{margin-left:-8.262496pt;}
._17{margin-left:-7.093746pt;}
._d{margin-left:-5.685954pt;}
._0{margin-left:-4.750000pt;}
._2{margin-left:-3.531233pt;}
._3{margin-left:-2.374999pt;}
._1{margin-left:-1.281248pt;}
._5{width:3.657703pt;}
._6{width:4.761220pt;}
._4{width:7.916223pt;}
._9{width:8.818839pt;}
._8{width:11.594473pt;}
._10{width:12.798554pt;}
._7{width:15.985576pt;}
._c{width:20.000005pt;}
._b{width:24.000000pt;}
._a{width:28.000002pt;}
._e{width:32.000000pt;}
._f{width:36.000002pt;}
._12{width:39.999999pt;}
._11{width:43.999999pt;}
._15{width:48.000019pt;}
._14{width:51.999997pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:35.200001pt;}
.fs4{font-size:38.400002pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.y6c{bottom:3.108072pt;}
.y28{bottom:3.108073pt;}
.y26{bottom:29.241372pt;}
.y2{bottom:73.176176pt;}
.y10d{bottom:78.374345pt;}
.y47{bottom:78.374839pt;}
.y6a{bottom:78.374999pt;}
.y67{bottom:95.784828pt;}
.y8a{bottom:101.350031pt;}
.y45{bottom:101.638774pt;}
.y10c{bottom:114.270180pt;}
.y8b{bottom:118.215265pt;}
.y66{bottom:118.215591pt;}
.y46{bottom:119.494210pt;}
.y8d{bottom:129.514973pt;}
.y10b{bottom:132.668620pt;}
.ydf{bottom:134.733727pt;}
.yb6{bottom:134.947267pt;}
.y68{bottom:135.080826pt;}
.y8c{bottom:146.380205pt;}
.ya8{bottom:148.866539pt;}
.y10a{bottom:151.067060pt;}
.y69{bottom:151.946060pt;}
.yde{bottom:153.132167pt;}
.yb5{bottom:162.544923pt;}
.y109{bottom:169.465500pt;}
.ydd{bottom:171.530593pt;}
.ya7{bottom:176.464199pt;}
.y108{bottom:187.863933pt;}
.y65{bottom:189.929030pt;}
.y89{bottom:189.929032pt;}
.ydc{bottom:189.929038pt;}
.yb4{bottom:190.142580pt;}
.ya6{bottom:204.061849pt;}
.y107{bottom:205.973960pt;}
.ydb{bottom:208.327476pt;}
.yb3{bottom:216.541020pt;}
.y44{bottom:217.526363pt;}
.y64{bottom:217.526687pt;}
.y88{bottom:217.526692pt;}
.y106{bottom:223.127609pt;}
.yda{bottom:226.725913pt;}
.y25{bottom:230.652340pt;}
.ya5{bottom:231.659509pt;}
.y105{bottom:241.526047pt;}
.y63{bottom:243.925127pt;}
.y43{bottom:245.124019pt;}
.y87{bottom:245.124342pt;}
.yd9{bottom:245.124353pt;}
.y24{bottom:249.050780pt;}
.yb2{bottom:259.083985pt;}
.ya4{bottom:259.257165pt;}
.y104{bottom:259.924473pt;}
.yd8{bottom:263.522783pt;}
.y23{bottom:267.449220pt;}
.y42{bottom:272.721675pt;}
.y86{bottom:272.722002pt;}
.y103{bottom:278.322913pt;}
.yd7{bottom:281.921220pt;}
.yb1{bottom:285.436851pt;}
.y22{bottom:285.847660pt;}
.ya3{bottom:286.854821pt;}
.y62{bottom:287.522781pt;}
.y102{bottom:296.721356pt;}
.y41{bottom:300.319332pt;}
.y85{bottom:300.319659pt;}
.yd6{bottom:300.319660pt;}
.y21{bottom:303.669271pt;}
.ya2{bottom:314.452478pt;}
.y101{bottom:315.119793pt;}
.y61{bottom:315.120438pt;}
.yd5{bottom:318.718094pt;}
.y40{bottom:327.916988pt;}
.y84{bottom:327.917314pt;}
.y100{bottom:333.518233pt;}
.y20{bottom:335.001309pt;}
.yd4{bottom:337.116531pt;}
.ya1{bottom:342.050134pt;}
.y60{bottom:342.718094pt;}
.y1f{bottom:350.333340pt;}
.yff{bottom:351.916660pt;}
.y3f{bottom:355.514644pt;}
.yd3{bottom:355.514969pt;}
.y83{bottom:355.514971pt;}
.y1e{bottom:365.665372pt;}
.ya0{bottom:369.647790pt;}
.yfe{bottom:370.315105pt;}
.y5f{bottom:370.315750pt;}
.yd2{bottom:373.913407pt;}
.y1d{bottom:380.997395pt;}
.y3e{bottom:383.112300pt;}
.y82{bottom:383.112627pt;}
.yfd{bottom:388.713543pt;}
.yd1{bottom:392.311847pt;}
.y1c{bottom:396.329427pt;}
.y9f{bottom:397.245447pt;}
.y5e{bottom:397.913407pt;}
.yfc{bottom:407.111980pt;}
.y3d{bottom:410.709965pt;}
.y81{bottom:410.710284pt;}
.yd0{bottom:410.710289pt;}
.y1b{bottom:411.661462pt;}
.y9e{bottom:424.843098pt;}
.yfb{bottom:425.510420pt;}
.y5d{bottom:425.511066pt;}
.y1a{bottom:426.993493pt;}
.ycf{bottom:429.108727pt;}
.y3c{bottom:438.307621pt;}
.y80{bottom:438.307940pt;}
.y19{bottom:442.325564pt;}
.yfa{bottom:443.908860pt;}
.yce{bottom:447.507167pt;}
.y9d{bottom:452.440754pt;}
.y5c{bottom:453.108716pt;}
.yf9{bottom:462.307287pt;}
.y7f{bottom:464.706380pt;}
.y3b{bottom:465.905278pt;}
.ycd{bottom:465.905598pt;}
.y18{bottom:473.657590pt;}
.y9c{bottom:480.038411pt;}
.yf8{bottom:480.705727pt;}
.y5b{bottom:480.706376pt;}
.ycc{bottom:484.304036pt;}
.y3a{bottom:493.502934pt;}
.y17{bottom:496.989628pt;}
.yf7{bottom:499.104167pt;}
.ycb{bottom:502.702473pt;}
.y9b{bottom:507.636068pt;}
.y5a{bottom:508.304032pt;}
.y7e{bottom:508.304042pt;}
.y16{bottom:512.321659pt;}
.yf6{bottom:517.502607pt;}
.y39{bottom:521.100590pt;}
.yca{bottom:521.100913pt;}
.y15{bottom:527.653691pt;}
.y9a{bottom:535.233723pt;}
.yf5{bottom:535.901036pt;}
.y59{bottom:535.901688pt;}
.y7d{bottom:535.901692pt;}
.yc9{bottom:539.499343pt;}
.y14{bottom:542.985714pt;}
.y38{bottom:548.698247pt;}
.yf4{bottom:554.299473pt;}
.yc8{bottom:557.897780pt;}
.y13{bottom:558.317746pt;}
.y99{bottom:562.831380pt;}
.y58{bottom:563.499345pt;}
.y7c{bottom:563.499352pt;}
.yf3{bottom:572.697913pt;}
.y12{bottom:573.649781pt;}
.y37{bottom:576.295896pt;}
.yc7{bottom:576.296222pt;}
.y11{bottom:588.981812pt;}
.y98{bottom:590.429043pt;}
.yf2{bottom:591.096356pt;}
.y57{bottom:591.097001pt;}
.yb0{bottom:591.097007pt;}
.y7b{bottom:591.097012pt;}
.yc6{bottom:594.694660pt;}
.y36{bottom:603.893552pt;}
.y10{bottom:604.313883pt;}
.yf1{bottom:609.494793pt;}
.yc5{bottom:613.093100pt;}
.y97{bottom:618.026698pt;}
.y56{bottom:618.694657pt;}
.y7a{bottom:618.694662pt;}
.yf0{bottom:627.893233pt;}
.y35{bottom:631.491208pt;}
.yc4{bottom:631.491531pt;}
.yf{bottom:636.222740pt;}
.y96{bottom:645.624354pt;}
.yef{bottom:646.291662pt;}
.y55{bottom:646.292313pt;}
.y79{bottom:646.292322pt;}
.yc3{bottom:649.889969pt;}
.y34{bottom:659.088865pt;}
.yee{bottom:664.690100pt;}
.yc2{bottom:668.288407pt;}
.ye{bottom:670.621180pt;}
.y95{bottom:673.222012pt;}
.y54{bottom:673.889808pt;}
.yaf{bottom:673.889972pt;}
.y78{bottom:673.889978pt;}
.yed{bottom:683.088540pt;}
.y33{bottom:686.686521pt;}
.yc1{bottom:686.686847pt;}
.y94{bottom:700.819668pt;}
.yec{bottom:701.486980pt;}
.y53{bottom:701.487465pt;}
.yae{bottom:701.487633pt;}
.y77{bottom:701.487634pt;}
.yd{bottom:705.019607pt;}
.yc0{bottom:705.085287pt;}
.y32{bottom:714.284177pt;}
.yeb{bottom:719.885420pt;}
.ybf{bottom:723.483727pt;}
.y93{bottom:728.417323pt;}
.y52{bottom:729.085121pt;}
.yad{bottom:729.085282pt;}
.y76{bottom:729.085291pt;}
.y11a{bottom:738.283849pt;}
.yea{bottom:738.283860pt;}
.yc{bottom:739.418047pt;}
.y31{bottom:741.881833pt;}
.ybe{bottom:741.882167pt;}
.y92{bottom:756.014980pt;}
.ye9{bottom:756.682287pt;}
.y51{bottom:756.682777pt;}
.yac{bottom:756.682942pt;}
.y75{bottom:756.682947pt;}
.ybd{bottom:760.280598pt;}
.y30{bottom:769.479492pt;}
.yb{bottom:773.816487pt;}
.y119{bottom:775.080727pt;}
.ye8{bottom:775.080734pt;}
.ybc{bottom:778.679036pt;}
.y91{bottom:782.124999pt;}
.y50{bottom:784.280433pt;}
.yab{bottom:784.280598pt;}
.y74{bottom:784.280603pt;}
.y118{bottom:793.479161pt;}
.ye7{bottom:793.479171pt;}
.y2f{bottom:797.077148pt;}
.ybb{bottom:797.077473pt;}
.y90{bottom:798.990233pt;}
.ya{bottom:808.214929pt;}
.y117{bottom:811.877598pt;}
.ye6{bottom:811.877609pt;}
.y4f{bottom:811.878092pt;}
.yaa{bottom:811.878255pt;}
.y73{bottom:811.878260pt;}
.yba{bottom:815.475913pt;}
.y8f{bottom:815.855470pt;}
.y2e{bottom:824.674804pt;}
.y9{bottom:826.613367pt;}
.y116{bottom:830.276036pt;}
.ye5{bottom:830.276047pt;}
.y8e{bottom:832.720704pt;}
.yb9{bottom:833.874353pt;}
.y4e{bottom:839.475749pt;}
.y72{bottom:839.475912pt;}
.ye4{bottom:848.674473pt;}
.y2d{bottom:852.272461pt;}
.yb8{bottom:852.272780pt;}
.y8{bottom:861.011807pt;}
.y115{bottom:867.072913pt;}
.y4d{bottom:867.073405pt;}
.y71{bottom:867.073568pt;}
.yb7{bottom:878.671224pt;}
.y2c{bottom:879.870117pt;}
.y114{bottom:885.471355pt;}
.ye3{bottom:885.472005pt;}
.y4c{bottom:894.671061pt;}
.ya9{bottom:894.671223pt;}
.y70{bottom:894.671225pt;}
.y7{bottom:895.410237pt;}
.y113{bottom:903.869792pt;}
.ye2{bottom:903.870443pt;}
.y2b{bottom:907.467773pt;}
.y6{bottom:921.808675pt;}
.y112{bottom:922.268228pt;}
.y4b{bottom:922.268717pt;}
.y6f{bottom:922.268881pt;}
.y2a{bottom:935.065429pt;}
.y111{bottom:940.666666pt;}
.ye1{bottom:940.667317pt;}
.y5{bottom:943.091217pt;}
.y4a{bottom:949.866374pt;}
.y6e{bottom:949.866537pt;}
.y110{bottom:959.065104pt;}
.ye0{bottom:959.065755pt;}
.y29{bottom:961.463867pt;}
.y4{bottom:976.114492pt;}
.y10f{bottom:977.463541pt;}
.y49{bottom:977.464029pt;}
.y6d{bottom:977.464193pt;}
.y10e{bottom:992.401041pt;}
.y27{bottom:992.401367pt;}
.y48{bottom:992.401529pt;}
.y6b{bottom:992.401693pt;}
.y3{bottom:995.509501pt;}
.y1{bottom:1009.266663pt;}
.hd{height:31.350000pt;}
.h12{height:31.556251pt;}
.hc{height:35.112892pt;}
.h2{height:39.101563pt;}
.h6{height:43.375000pt;}
.h7{height:44.437500pt;}
.h8{height:47.812499pt;}
.h13{height:52.593751pt;}
.h5{height:56.843750pt;}
.h4{height:57.375000pt;}
.h17{height:58.392131pt;}
.h16{height:58.392199pt;}
.hb{height:58.392211pt;}
.h11{height:58.710937pt;}
.h10{height:58.710961pt;}
.h9{height:75.266600pt;}
.h18{height:92.131507pt;}
.he{height:92.132000pt;}
.h14{height:92.132160pt;}
.h3{height:105.187502pt;}
.h1{height:113.400004pt;}
.h15{height:130.264973pt;}
.hf{height:130.265137pt;}
.ha{height:130.265300pt;}
.h19{height:130.265625pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:113.400004pt;}
.x7{left:120.340241pt;}
.x3{left:130.691804pt;}
.x5{left:133.570710pt;}
.xb{left:189.400004pt;}
.xf{left:207.400004pt;}
.x2{left:250.879298pt;}
.xc{left:264.400004pt;}
.xd{left:290.414454pt;}
.x9{left:336.678924pt;}
.x6{left:375.738680pt;}
.x4{left:415.750404pt;}
.xa{left:559.100784pt;}
.xe{left:630.750404pt;}
.x8{left:718.100814pt;}
}




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