
    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_99d94713c03d8cbcf3595942.woff')format("woff");}.ff1{font-family:ff1;line-height:1.097168;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_4c315c2c152dddae7318ce13.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_ad4a55889024f92519e8ec92.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_ce4ed45327a9b57aa304ba25.woff')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_fbdb99ba16b589ae31ddd601.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_4af68be9f8fa5c3b4d59ba0a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_9018294311198731ededc8b0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_8d0d0d3497e71f3168f06e35.woff')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_e7f4df00ed731a4b35284f89.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_195c8ba4b89d1d648a4a8805.woff')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.231227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231227,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-96.000000px;}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-2.400000px;}
.ls4{letter-spacing:-0.540000px;}
.ls1b{letter-spacing:-0.096000px;}
.ls3{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.540000px;}
.lsc{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.630000px;}
.ls19{letter-spacing:0.660000px;}
.ls15{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.768000px;}
.ls5{letter-spacing:0.828000px;}
.ls0{letter-spacing:5.340000px;}
.ls2{letter-spacing:5.400000px;}
.ls6{letter-spacing:6.600000px;}
.ls17{letter-spacing:7.740000px;}
.ls1a{letter-spacing:9.000000px;}
.lsd{letter-spacing:13.740000px;}
.ls11{letter-spacing:13.800000px;}
.ls9{letter-spacing:15.180000px;}
.lsb{letter-spacing:16.380000px;}
.ls1{letter-spacing:18.600000px;}
.lsf{letter-spacing:19.800000px;}
.lse{letter-spacing:29.340000px;}
.ls13{letter-spacing:31.800000px;}
.lsa{letter-spacing:34.140000px;}
.ls14{letter-spacing:40.218000px;}
.ls10{letter-spacing:61.920000px;}
.ls7{letter-spacing:84.618000px;}
.ls18{letter-spacing:96.780000px;}
.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:-84.000000px;}
.ws0{word-spacing:-21.000000px;}
.ws3{word-spacing:-20.904000px;}
.ws1{word-spacing:0.000000px;}
._3d{margin-left:-4.020000px;}
._19{margin-left:-2.520000px;}
._0{margin-left:-1.512000px;}
._1{width:1.092000px;}
._d{width:2.208000px;}
._c{width:3.456000px;}
._4{width:4.500000px;}
._2{width:5.760000px;}
._3{width:6.882000px;}
._14{width:8.070000px;}
._12{width:9.126000px;}
._11{width:10.416000px;}
._10{width:11.760000px;}
._9{width:13.020000px;}
._a{width:14.112000px;}
._8{width:15.204000px;}
._2e{width:16.212000px;}
._7{width:17.220000px;}
._b{width:19.068000px;}
._1f{width:22.656000px;}
._1e{width:23.688000px;}
._17{width:25.368000px;}
._18{width:26.460000px;}
._e{width:28.728000px;}
._f{width:29.880000px;}
._39{width:30.924000px;}
._25{width:32.172000px;}
._24{width:33.432000px;}
._21{width:34.524000px;}
._20{width:35.616000px;}
._31{width:37.086000px;}
._32{width:38.280000px;}
._22{width:39.648000px;}
._23{width:41.496000px;}
._37{width:43.344000px;}
._38{width:44.856000px;}
._15{width:45.864000px;}
._2d{width:46.956000px;}
._16{width:47.970000px;}
._29{width:49.728000px;}
._1a{width:51.324000px;}
._1b{width:53.340000px;}
._5{width:54.768000px;}
._6{width:55.944000px;}
._26{width:57.372000px;}
._27{width:58.506000px;}
._28{width:59.712000px;}
._33{width:61.236000px;}
._34{width:62.328000px;}
._3b{width:63.504000px;}
._3a{width:64.512000px;}
._3c{width:66.624000px;}
._2a{width:71.232000px;}
._13{width:72.408000px;}
._35{width:85.428000px;}
._36{width:87.612000px;}
._30{width:90.972000px;}
._1d{width:92.316000px;}
._1c{width:93.744000px;}
._40{width:95.760000px;}
._3e{width:96.762000px;}
._3f{width:98.166000px;}
._2f{width:135.996000px;}
._2b{width:165.480000px;}
._2c{width:209.832000px;}
._41{width:843.330000px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs2{font-size:73.622457px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:3.334833px;}
.y51{bottom:4.500000px;}
.y74{bottom:4.800000px;}
.y5d{bottom:5.070000px;}
.y59{bottom:5.082000px;}
.y80{bottom:5.370000px;}
.y7b{bottom:5.385000px;}
.y55{bottom:5.685000px;}
.y70{bottom:16.800000px;}
.y77{bottom:17.985000px;}
.y5c{bottom:29.370000px;}
.y58{bottom:29.382000px;}
.y7a{bottom:29.385000px;}
.y82{bottom:29.415000px;}
.y4d{bottom:29.985000px;}
.y50{bottom:31.200000px;}
.y6c{bottom:41.985000px;}
.y6f{bottom:43.200000px;}
.y2{bottom:53.137500px;}
.y5b{bottom:53.370000px;}
.y57{bottom:53.374500px;}
.y7f{bottom:53.670000px;}
.y79{bottom:53.685000px;}
.y7d{bottom:53.715000px;}
.y54{bottom:53.985000px;}
.y4f{bottom:55.200000px;}
.y73{bottom:55.545000px;}
.y1{bottom:59.137500px;}
.y76{bottom:66.315000px;}
.y6e{bottom:67.545000px;}
.y72{bottom:79.545000px;}
.y2f{bottom:96.037500px;}
.y56{bottom:106.555500px;}
.y8b{bottom:111.037500px;}
.y2e{bottom:120.037500px;}
.y8a{bottom:135.037500px;}
.y2d{bottom:144.337500px;}
.y89{bottom:159.330000px;}
.y2c{bottom:168.375000px;}
.y4e{bottom:179.775000px;}
.y4c{bottom:179.790000px;}
.y52{bottom:181.350000px;}
.y88{bottom:183.375000px;}
.y2b{bottom:192.675000px;}
.y87{bottom:207.675000px;}
.y93{bottom:216.075000px;}
.y2a{bottom:216.675000px;}
.y86{bottom:231.675000px;}
.y29{bottom:240.975000px;}
.y85{bottom:255.975000px;}
.y4b{bottom:260.475000px;}
.y28{bottom:264.975000px;}
.y84{bottom:279.975000px;}
.y4a{bottom:284.175000px;}
.y27{bottom:289.275000px;}
.y83{bottom:304.275000px;}
.y49{bottom:308.175000px;}
.y26{bottom:313.275000px;}
.y81{bottom:323.790000px;}
.y48{bottom:332.505000px;}
.y25{bottom:337.620000px;}
.y47{bottom:356.505000px;}
.y24{bottom:361.620000px;}
.y46{bottom:380.820000px;}
.y23{bottom:385.905000px;}
.y7e{bottom:397.035000px;}
.y45{bottom:405.405000px;}
.y22{bottom:409.905000px;}
.y44{bottom:429.705000px;}
.y21{bottom:434.205000px;}
.y43{bottom:453.705000px;}
.y20{bottom:458.205000px;}
.y7c{bottom:470.235000px;}
.y42{bottom:478.005000px;}
.y1f{bottom:482.505000px;}
.y41{bottom:502.050000px;}
.y1e{bottom:506.550000px;}
.y40{bottom:526.350000px;}
.y1d{bottom:530.250000px;}
.y8e{bottom:530.850000px;}
.y78{bottom:543.465000px;}
.y3f{bottom:550.350000px;}
.y1c{bottom:554.850000px;}
.y3e{bottom:574.650000px;}
.y1b{bottom:579.150000px;}
.y3d{bottom:598.650000px;}
.y92{bottom:602.550000px;}
.y1a{bottom:603.150000px;}
.y6d{bottom:616.650000px;}
.y6b{bottom:616.665000px;}
.y75{bottom:618.450000px;}
.y3c{bottom:622.950000px;}
.y19{bottom:627.450000px;}
.y71{bottom:630.450000px;}
.y3b{bottom:646.950000px;}
.y18{bottom:651.450000px;}
.y3a{bottom:671.280000px;}
.y17{bottom:675.780000px;}
.y39{bottom:695.280000px;}
.y16{bottom:699.780000px;}
.y38{bottom:719.580000px;}
.y6a{bottom:721.080000px;}
.y15{bottom:723.480000px;}
.y8d{bottom:724.080000px;}
.y37{bottom:745.080000px;}
.y69{bottom:745.380000px;}
.y14{bottom:748.080000px;}
.y36{bottom:769.380000px;}
.y13{bottom:772.380000px;}
.y68{bottom:793.695000px;}
.y35{bottom:794.880000px;}
.y12{bottom:796.380000px;}
.y67{bottom:817.695000px;}
.y11{bottom:820.695000px;}
.y66{bottom:842.625000px;}
.y91{bottom:844.125000px;}
.y10{bottom:844.725000px;}
.y65{bottom:866.625000px;}
.y90{bottom:868.425000px;}
.yf{bottom:869.025000px;}
.y64{bottom:890.925000px;}
.y8f{bottom:892.425000px;}
.ye{bottom:893.025000px;}
.y63{bottom:914.925000px;}
.yd{bottom:917.325000px;}
.y62{bottom:939.225000px;}
.yc{bottom:941.325000px;}
.y61{bottom:963.225000px;}
.yb{bottom:965.025000px;}
.y34{bottom:965.625000px;}
.y60{bottom:987.525000px;}
.ya{bottom:989.625000px;}
.y5f{bottom:1011.570000px;}
.y9{bottom:1013.955000px;}
.y5e{bottom:1031.385000px;}
.y8{bottom:1037.955000px;}
.y7{bottom:1061.670000px;}
.y8c{bottom:1062.255000px;}
.y6{bottom:1085.655000px;}
.y33{bottom:1086.255000px;}
.y5a{bottom:1104.585000px;}
.y5{bottom:1109.955000px;}
.y32{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y31{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y30{bottom:1158.870000px;}
.hb{height:24.900455px;}
.h3{height:61.670545px;}
.hc{height:72.220467px;}
.hf{height:72.270000px;}
.he{height:72.285000px;}
.hd{height:72.319500px;}
.h14{height:72.570000px;}
.h12{height:72.585000px;}
.h13{height:72.607500px;}
.h15{height:72.622500px;}
.h4{height:72.638672px;}
.h7{height:74.033203px;}
.h9{height:74.685000px;}
.ha{height:74.700000px;}
.h6{height:82.400391px;}
.h2{height:82.441406px;}
.h5{height:84.656250px;}
.h8{height:86.338763px;}
.h10{height:99.022500px;}
.h11{height:99.037500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w4{width:20.099121px;}
.w6{width:138.945000px;}
.w7{width:161.160000px;}
.w3{width:161.175000px;}
.w5{width:187.230000px;}
.w2{width:228.327000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:3.896855px;}
.x18{left:7.500000px;}
.xb{left:8.745000px;}
.x12{left:10.200000px;}
.x11{left:20.100000px;}
.x17{left:30.330000px;}
.xa{left:49.845000px;}
.xc{left:52.545000px;}
.x13{left:65.100000px;}
.x8{left:68.737500px;}
.xf{left:79.545000px;}
.x2{left:84.937500px;}
.x1a{left:87.337500px;}
.x15{left:92.145000px;}
.x3{left:119.737500px;}
.x6{left:127.537500px;}
.x4{left:131.137500px;}
.x1c{left:149.737500px;}
.x7{left:247.575000px;}
.x1d{left:258.375000px;}
.x9{left:297.975000px;}
.xd{left:357.450000px;}
.x5{left:367.020000px;}
.x19{left:373.620000px;}
.x1b{left:403.320000px;}
.x1{left:430.650000px;}
.x10{left:460.050000px;}
.x14{left:532.050000px;}
.x16{left:647.895000px;}
@media print{
.v1{vertical-align:-85.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-2.133333pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls1b{letter-spacing:-0.085333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.480000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.560000pt;}
.ls19{letter-spacing:0.586667pt;}
.ls15{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.682667pt;}
.ls5{letter-spacing:0.736000pt;}
.ls0{letter-spacing:4.746667pt;}
.ls2{letter-spacing:4.800000pt;}
.ls6{letter-spacing:5.866667pt;}
.ls17{letter-spacing:6.880000pt;}
.ls1a{letter-spacing:8.000000pt;}
.lsd{letter-spacing:12.213333pt;}
.ls11{letter-spacing:12.266667pt;}
.ls9{letter-spacing:13.493333pt;}
.lsb{letter-spacing:14.560000pt;}
.ls1{letter-spacing:16.533333pt;}
.lsf{letter-spacing:17.600000pt;}
.lse{letter-spacing:26.080000pt;}
.ls13{letter-spacing:28.266667pt;}
.lsa{letter-spacing:30.346667pt;}
.ls14{letter-spacing:35.749333pt;}
.ls10{letter-spacing:55.040000pt;}
.ls7{letter-spacing:75.216000pt;}
.ls18{letter-spacing:86.026667pt;}
.ws2{word-spacing:-74.666667pt;}
.ws0{word-spacing:-18.666667pt;}
.ws3{word-spacing:-18.581333pt;}
.ws1{word-spacing:0.000000pt;}
._3d{margin-left:-3.573333pt;}
._19{margin-left:-2.240000pt;}
._0{margin-left:-1.344000pt;}
._1{width:0.970667pt;}
._d{width:1.962667pt;}
._c{width:3.072000pt;}
._4{width:4.000000pt;}
._2{width:5.120000pt;}
._3{width:6.117333pt;}
._14{width:7.173333pt;}
._12{width:8.112000pt;}
._11{width:9.258667pt;}
._10{width:10.453333pt;}
._9{width:11.573333pt;}
._a{width:12.544000pt;}
._8{width:13.514667pt;}
._2e{width:14.410667pt;}
._7{width:15.306667pt;}
._b{width:16.949333pt;}
._1f{width:20.138667pt;}
._1e{width:21.056000pt;}
._17{width:22.549333pt;}
._18{width:23.520000pt;}
._e{width:25.536000pt;}
._f{width:26.560000pt;}
._39{width:27.488000pt;}
._25{width:28.597333pt;}
._24{width:29.717333pt;}
._21{width:30.688000pt;}
._20{width:31.658667pt;}
._31{width:32.965333pt;}
._32{width:34.026667pt;}
._22{width:35.242667pt;}
._23{width:36.885333pt;}
._37{width:38.528000pt;}
._38{width:39.872000pt;}
._15{width:40.768000pt;}
._2d{width:41.738667pt;}
._16{width:42.640000pt;}
._29{width:44.202667pt;}
._1a{width:45.621333pt;}
._1b{width:47.413333pt;}
._5{width:48.682667pt;}
._6{width:49.728000pt;}
._26{width:50.997333pt;}
._27{width:52.005333pt;}
._28{width:53.077333pt;}
._33{width:54.432000pt;}
._34{width:55.402667pt;}
._3b{width:56.448000pt;}
._3a{width:57.344000pt;}
._3c{width:59.221333pt;}
._2a{width:63.317333pt;}
._13{width:64.362667pt;}
._35{width:75.936000pt;}
._36{width:77.877333pt;}
._30{width:80.864000pt;}
._1d{width:82.058667pt;}
._1c{width:83.328000pt;}
._40{width:85.120000pt;}
._3e{width:86.010667pt;}
._3f{width:87.258667pt;}
._2f{width:120.885333pt;}
._2b{width:147.093333pt;}
._2c{width:186.517333pt;}
._41{width:749.626667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:65.442184pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:2.964296pt;}
.y51{bottom:4.000000pt;}
.y74{bottom:4.266667pt;}
.y5d{bottom:4.506667pt;}
.y59{bottom:4.517333pt;}
.y80{bottom:4.773333pt;}
.y7b{bottom:4.786667pt;}
.y55{bottom:5.053333pt;}
.y70{bottom:14.933333pt;}
.y77{bottom:15.986667pt;}
.y5c{bottom:26.106667pt;}
.y58{bottom:26.117333pt;}
.y7a{bottom:26.120000pt;}
.y82{bottom:26.146667pt;}
.y4d{bottom:26.653333pt;}
.y50{bottom:27.733333pt;}
.y6c{bottom:37.320000pt;}
.y6f{bottom:38.400000pt;}
.y2{bottom:47.233333pt;}
.y5b{bottom:47.440000pt;}
.y57{bottom:47.444000pt;}
.y7f{bottom:47.706667pt;}
.y79{bottom:47.720000pt;}
.y7d{bottom:47.746667pt;}
.y54{bottom:47.986667pt;}
.y4f{bottom:49.066667pt;}
.y73{bottom:49.373333pt;}
.y1{bottom:52.566667pt;}
.y76{bottom:58.946667pt;}
.y6e{bottom:60.040000pt;}
.y72{bottom:70.706667pt;}
.y2f{bottom:85.366667pt;}
.y56{bottom:94.716000pt;}
.y8b{bottom:98.700000pt;}
.y2e{bottom:106.700000pt;}
.y8a{bottom:120.033333pt;}
.y2d{bottom:128.300000pt;}
.y89{bottom:141.626667pt;}
.y2c{bottom:149.666667pt;}
.y4e{bottom:159.800000pt;}
.y4c{bottom:159.813333pt;}
.y52{bottom:161.200000pt;}
.y88{bottom:163.000000pt;}
.y2b{bottom:171.266667pt;}
.y87{bottom:184.600000pt;}
.y93{bottom:192.066667pt;}
.y2a{bottom:192.600000pt;}
.y86{bottom:205.933333pt;}
.y29{bottom:214.200000pt;}
.y85{bottom:227.533333pt;}
.y4b{bottom:231.533333pt;}
.y28{bottom:235.533333pt;}
.y84{bottom:248.866667pt;}
.y4a{bottom:252.600000pt;}
.y27{bottom:257.133333pt;}
.y83{bottom:270.466667pt;}
.y49{bottom:273.933333pt;}
.y26{bottom:278.466667pt;}
.y81{bottom:287.813333pt;}
.y48{bottom:295.560000pt;}
.y25{bottom:300.106667pt;}
.y47{bottom:316.893333pt;}
.y24{bottom:321.440000pt;}
.y46{bottom:338.506667pt;}
.y23{bottom:343.026667pt;}
.y7e{bottom:352.920000pt;}
.y45{bottom:360.360000pt;}
.y22{bottom:364.360000pt;}
.y44{bottom:381.960000pt;}
.y21{bottom:385.960000pt;}
.y43{bottom:403.293333pt;}
.y20{bottom:407.293333pt;}
.y7c{bottom:417.986667pt;}
.y42{bottom:424.893333pt;}
.y1f{bottom:428.893333pt;}
.y41{bottom:446.266667pt;}
.y1e{bottom:450.266667pt;}
.y40{bottom:467.866667pt;}
.y1d{bottom:471.333333pt;}
.y8e{bottom:471.866667pt;}
.y78{bottom:483.080000pt;}
.y3f{bottom:489.200000pt;}
.y1c{bottom:493.200000pt;}
.y3e{bottom:510.800000pt;}
.y1b{bottom:514.800000pt;}
.y3d{bottom:532.133333pt;}
.y92{bottom:535.600000pt;}
.y1a{bottom:536.133333pt;}
.y6d{bottom:548.133333pt;}
.y6b{bottom:548.146667pt;}
.y75{bottom:549.733333pt;}
.y3c{bottom:553.733333pt;}
.y19{bottom:557.733333pt;}
.y71{bottom:560.400000pt;}
.y3b{bottom:575.066667pt;}
.y18{bottom:579.066667pt;}
.y3a{bottom:596.693333pt;}
.y17{bottom:600.693333pt;}
.y39{bottom:618.026667pt;}
.y16{bottom:622.026667pt;}
.y38{bottom:639.626667pt;}
.y6a{bottom:640.960000pt;}
.y15{bottom:643.093333pt;}
.y8d{bottom:643.626667pt;}
.y37{bottom:662.293333pt;}
.y69{bottom:662.560000pt;}
.y14{bottom:664.960000pt;}
.y36{bottom:683.893333pt;}
.y13{bottom:686.560000pt;}
.y68{bottom:705.506667pt;}
.y35{bottom:706.560000pt;}
.y12{bottom:707.893333pt;}
.y67{bottom:726.840000pt;}
.y11{bottom:729.506667pt;}
.y66{bottom:749.000000pt;}
.y91{bottom:750.333333pt;}
.y10{bottom:750.866667pt;}
.y65{bottom:770.333333pt;}
.y90{bottom:771.933333pt;}
.yf{bottom:772.466667pt;}
.y64{bottom:791.933333pt;}
.y8f{bottom:793.266667pt;}
.ye{bottom:793.800000pt;}
.y63{bottom:813.266667pt;}
.yd{bottom:815.400000pt;}
.y62{bottom:834.866667pt;}
.yc{bottom:836.733333pt;}
.y61{bottom:856.200000pt;}
.yb{bottom:857.800000pt;}
.y34{bottom:858.333333pt;}
.y60{bottom:877.800000pt;}
.ya{bottom:879.666667pt;}
.y5f{bottom:899.173333pt;}
.y9{bottom:901.293333pt;}
.y5e{bottom:916.786667pt;}
.y8{bottom:922.626667pt;}
.y7{bottom:943.706667pt;}
.y8c{bottom:944.226667pt;}
.y6{bottom:965.026667pt;}
.y33{bottom:965.560000pt;}
.y5a{bottom:981.853333pt;}
.y5{bottom:986.626667pt;}
.y32{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y31{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y30{bottom:1030.106667pt;}
.hb{height:22.133738pt;}
.h3{height:54.818262pt;}
.hc{height:64.195970pt;}
.hf{height:64.240000pt;}
.he{height:64.253333pt;}
.hd{height:64.284000pt;}
.h14{height:64.506667pt;}
.h12{height:64.520000pt;}
.h13{height:64.540000pt;}
.h15{height:64.553333pt;}
.h4{height:64.567708pt;}
.h7{height:65.807292pt;}
.h9{height:66.386667pt;}
.ha{height:66.400000pt;}
.h6{height:73.244792pt;}
.h2{height:73.281250pt;}
.h5{height:75.250000pt;}
.h8{height:76.745567pt;}
.h10{height:88.020000pt;}
.h11{height:88.033333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w4{width:17.865886pt;}
.w6{width:123.506667pt;}
.w7{width:143.253333pt;}
.w3{width:143.266667pt;}
.w5{width:166.426667pt;}
.w2{width:202.957333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:3.463871pt;}
.x18{left:6.666667pt;}
.xb{left:7.773333pt;}
.x12{left:9.066667pt;}
.x11{left:17.866667pt;}
.x17{left:26.960000pt;}
.xa{left:44.306667pt;}
.xc{left:46.706667pt;}
.x13{left:57.866667pt;}
.x8{left:61.100000pt;}
.xf{left:70.706667pt;}
.x2{left:75.500000pt;}
.x1a{left:77.633333pt;}
.x15{left:81.906667pt;}
.x3{left:106.433333pt;}
.x6{left:113.366667pt;}
.x4{left:116.566667pt;}
.x1c{left:133.100000pt;}
.x7{left:220.066667pt;}
.x1d{left:229.666667pt;}
.x9{left:264.866667pt;}
.xd{left:317.733333pt;}
.x5{left:326.240000pt;}
.x19{left:332.106667pt;}
.x1b{left:358.506667pt;}
.x1{left:382.800000pt;}
.x10{left:408.933333pt;}
.x14{left:472.933333pt;}
.x16{left:575.906667pt;}
}




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