
    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_9c9c5ff68a3a13bf8665a915.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_678891d4e9f18457aac4cfa9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_47b7e841a7a883c71d5e1dae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_1a9bc21035ac64fd5de47ad8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.087402;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_0072aa0873baf825f3a4ce96.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_7e8d54bcf4d18e1b3f0cd5aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_34c025d5089b20a79798c24d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.850586;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_f46bdceb743c6ed7dbc081da.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.087402;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_9cd16735189609f6ff0145cd.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1f{letter-spacing:-0.756000px;}
.ls20{letter-spacing:-0.708000px;}
.ls8{letter-spacing:-0.648000px;}
.ls12{letter-spacing:-0.391200px;}
.ls9{letter-spacing:-0.370200px;}
.lsb{letter-spacing:-0.357000px;}
.ls24{letter-spacing:-0.346200px;}
.lsa{letter-spacing:-0.326400px;}
.ls19{letter-spacing:-0.291600px;}
.ls1a{letter-spacing:-0.226200px;}
.ls18{letter-spacing:-0.157800px;}
.ls21{letter-spacing:-0.075000px;}
.ls25{letter-spacing:-0.064200px;}
.lsf{letter-spacing:-0.036000px;}
.lsc{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls14{letter-spacing:0.111600px;}
.ls7{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.211680px;}
.ls13{letter-spacing:0.221040px;}
.ls23{letter-spacing:0.319680px;}
.ls1{letter-spacing:0.351360px;}
.ls5{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.365040px;}
.lse{letter-spacing:0.385800px;}
.ls17{letter-spacing:0.480000px;}
.ls11{letter-spacing:0.666720px;}
.ls1b{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.732960px;}
.lsd{letter-spacing:0.786000px;}
.ls15{letter-spacing:0.831600px;}
.ls1d{letter-spacing:2.692800px;}
.ls1c{letter-spacing:7.012800px;}
.ls22{letter-spacing:48.186720px;}
.ls1e{letter-spacing:82.026720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-14.958600px;}
.ws8{word-spacing:-14.572800px;}
.ws3{word-spacing:-14.215800px;}
.ws12{word-spacing:-13.466880px;}
.ws5{word-spacing:-13.160400px;}
.wsb{word-spacing:-13.160160px;}
.ws6{word-spacing:-13.147200px;}
.ws9{word-spacing:-13.111200px;}
.ws11{word-spacing:-13.083000px;}
.wsd{word-spacing:-12.989400px;}
.wsf{word-spacing:-12.921000px;}
.wse{word-spacing:-12.855600px;}
.ws10{word-spacing:-12.801000px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws4{word-spacing:-9.187200px;}
.wsa{word-spacing:0.000000px;}
.ws7{word-spacing:2.552040px;}
._10{margin-left:-3.356160px;}
._4{margin-left:-2.321040px;}
._0{margin-left:-1.159200px;}
._1{width:1.056000px;}
._8{width:2.101680px;}
._6{width:3.193200px;}
._5{width:4.852800px;}
._7{width:6.031439px;}
._9{width:7.051800px;}
._d{width:8.426399px;}
._e{width:10.219199px;}
._a{width:11.832600px;}
._16{width:14.168634px;}
._b{width:15.178801px;}
._c{width:16.255198px;}
._15{width:18.884160px;}
._f{width:20.190501px;}
._14{width:22.092973px;}
._3{width:23.418636px;}
._2{width:24.662413px;}
._13{width:25.995600px;}
._12{width:27.131040px;}
._19{width:32.987520px;}
._11{width:36.035280px;}
._18{width:55.457280px;}
._17{width:270.832320px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y51{bottom:7.740000px;}
.y4c{bottom:7.920000px;}
.y2{bottom:73.296000px;}
.y2b{bottom:74.196000px;}
.y1{bottom:101.376000px;}
.y49{bottom:112.716000px;}
.yac{bottom:126.216000px;}
.y48{bottom:130.176000px;}
.y107{bottom:134.856000px;}
.y29{bottom:140.256000px;}
.yab{bottom:143.856000px;}
.y98{bottom:146.736000px;}
.y47{bottom:147.816000px;}
.yd6{bottom:151.590000px;}
.y106{bottom:152.490000px;}
.y28{bottom:157.890000px;}
.yd5{bottom:169.230000px;}
.yaa{bottom:170.670000px;}
.y46{bottom:174.270000px;}
.y27{bottom:175.350000px;}
.y105{bottom:176.070000px;}
.y97{bottom:182.370000px;}
.y6f{bottom:184.530000px;}
.yd4{bottom:186.690000px;}
.y26{bottom:192.990000px;}
.y104{bottom:193.710000px;}
.y96{bottom:200.010000px;}
.y45{bottom:209.910000px;}
.y25{bottom:210.630000px;}
.y103{bottom:211.350000px;}
.yd3{bottom:213.510000px;}
.y95{bottom:217.650000px;}
.ya9{bottom:218.910000px;}
.y6e{bottom:219.990000px;}
.y44{bottom:227.550000px;}
.y24{bottom:228.090000px;}
.y102{bottom:234.750000px;}
.y94{bottom:235.110000px;}
.ya8{bottom:236.550000px;}
.y6d{bottom:237.630000px;}
.y43{bottom:245.190000px;}
.y23{bottom:245.730000px;}
.y101{bottom:252.390000px;}
.y93{bottom:252.750000px;}
.ya7{bottom:254.190000px;}
.y6c{bottom:255.270000px;}
.yd2{bottom:261.930000px;}
.y42{bottom:262.830000px;}
.y22{bottom:263.370000px;}
.y92{bottom:270.390000px;}
.ya6{bottom:271.830000px;}
.y100{bottom:275.970000px;}
.yd1{bottom:279.570000px;}
.y41{bottom:280.290000px;}
.y21{bottom:281.010000px;}
.y6b{bottom:281.730000px;}
.yff{bottom:293.610000px;}
.y40{bottom:297.930000px;}
.y20{bottom:298.470000px;}
.ya5{bottom:303.870000px;}
.y91{bottom:305.850000px;}
.yd0{bottom:306.390000px;}
.y82{bottom:312.015000px;}
.y3f{bottom:315.615000px;}
.y1f{bottom:316.155000px;}
.yfe{bottom:317.235000px;}
.y6a{bottom:317.595000px;}
.y90{bottom:323.535000px;}
.y3e{bottom:333.075000px;}
.y1e{bottom:333.795000px;}
.yfd{bottom:334.875000px;}
.y8f{bottom:341.175000px;}
.ycf{bottom:343.335000px;}
.y81{bottom:347.655000px;}
.y3d{bottom:350.715000px;}
.yfc{bottom:358.275000px;}
.y8e{bottom:358.815000px;}
.y1d{bottom:360.435000px;}
.y80{bottom:365.295000px;}
.y69{bottom:366.015000px;}
.y3c{bottom:368.355000px;}
.yce{bottom:370.335000px;}
.yfb{bottom:375.915000px;}
.y8d{bottom:376.275000px;}
.y7f{bottom:382.935000px;}
.y68{bottom:383.655000px;}
.y8c{bottom:393.915000px;}
.y3b{bottom:394.815000px;}
.yfa{bottom:399.495000px;}
.y7e{bottom:400.395000px;}
.y67{bottom:401.295000px;}
.ycd{bottom:407.415000px;}
.y1c{bottom:409.215000px;}
.yf9{bottom:417.135000px;}
.y7d{bottom:418.035000px;}
.y66{bottom:418.935000px;}
.y8b{bottom:420.375000px;}
.y3a{bottom:430.455000px;}
.ycc{bottom:434.235000px;}
.yf8{bottom:434.775000px;}
.y7c{bottom:435.675000px;}
.y65{bottom:445.395000px;}
.y1b{bottom:446.115000px;}
.y7b{bottom:453.315000px;}
.y8a{bottom:456.015000px;}
.yf7{bottom:458.355000px;}
.y39{bottom:462.675000px;}
.y1a{bottom:463.755000px;}
.ycb{bottom:471.495000px;}
.y89{bottom:473.655000px;}
.yf6{bottom:475.995000px;}
.y7a{bottom:479.775000px;}
.y64{bottom:481.035000px;}
.y19{bottom:481.395000px;}
.y88{bottom:491.295000px;}
.yf5{bottom:493.455000px;}
.y63{bottom:498.675000px;}
.y18{bottom:499.035000px;}
.y79{bottom:515.415000px;}
.y62{bottom:516.135000px;}
.y17{bottom:516.675000px;}
.yf4{bottom:517.035000px;}
.yca{bottom:519.915000px;}
.y87{bottom:523.335000px;}
.y78{bottom:533.055000px;}
.y61{bottom:533.775000px;}
.y16{bottom:534.135000px;}
.yf3{bottom:534.675000px;}
.yc9{bottom:537.555000px;}
.y77{bottom:550.515000px;}
.y60{bottom:551.415000px;}
.y15{bottom:551.775000px;}
.yf2{bottom:552.315000px;}
.yc8{bottom:555.015000px;}
.y5f{bottom:568.875000px;}
.y14{bottom:569.415000px;}
.yf1{bottom:569.775000px;}
.yc7{bottom:572.655000px;}
.y76{bottom:582.735000px;}
.y5e{bottom:586.545000px;}
.y13{bottom:586.905000px;}
.yc6{bottom:590.325000px;}
.yf0{bottom:593.385000px;}
.y5d{bottom:604.185000px;}
.y12{bottom:604.545000px;}
.yc5{bottom:607.965000px;}
.yef{bottom:611.025000px;}
.ya4{bottom:620.205000px;}
.y11{bottom:622.185000px;}
.yc4{bottom:625.425000px;}
.yee{bottom:628.665000px;}
.y5c{bottom:630.645000px;}
.ya3{bottom:637.845000px;}
.y10{bottom:639.645000px;}
.yc3{bottom:652.245000px;}
.ya2{bottom:655.305000px;}
.yf{bottom:657.285000px;}
.y5b{bottom:666.285000px;}
.yed{bottom:669.885000px;}
.ya1{bottom:672.945000px;}
.ye{bottom:674.925000px;}
.y5a{bottom:683.925000px;}
.ya0{bottom:690.585000px;}
.yec{bottom:693.285000px;}
.yc2{bottom:700.665000px;}
.y59{bottom:701.565000px;}
.yd{bottom:701.745000px;}
.y9f{bottom:708.045000px;}
.yeb{bottom:710.925000px;}
.yc1{bottom:718.305000px;}
.y58{bottom:719.025000px;}
.y9e{bottom:725.685000px;}
.yea{bottom:734.505000px;}
.yc0{bottom:735.765000px;}
.y57{bottom:736.665000px;}
.yc{bottom:749.985000px;}
.ye9{bottom:752.145000px;}
.ybf{bottom:753.405000px;}
.y56{bottom:754.305000px;}
.y9d{bottom:761.145000px;}
.ybe{bottom:771.045000px;}
.y55{bottom:771.765000px;}
.ye8{bottom:775.725000px;}
.y9c{bottom:778.785000px;}
.yb{bottom:785.805000px;}
.ybd{bottom:788.505000px;}
.y54{bottom:789.405000px;}
.y9b{bottom:796.425000px;}
.y75{bottom:797.685000px;}
.ye7{bottom:799.305000px;}
.ybc{bottom:806.145000px;}
.y9a{bottom:814.065000px;}
.y74{bottom:815.325000px;}
.y53{bottom:815.865000px;}
.ye6{bottom:816.945000px;}
.ya{bottom:821.805000px;}
.ybb{bottom:823.785000px;}
.y73{bottom:832.785000px;}
.ye5{bottom:834.585000px;}
.yba{bottom:841.245000px;}
.y99{bottom:846.105000px;}
.y52{bottom:848.985000px;}
.y86{bottom:855.285000px;}
.ye4{bottom:857.985000px;}
.yb9{bottom:858.930000px;}
.y9{bottom:861.630000px;}
.y72{bottom:868.470000px;}
.y38{bottom:871.170000px;}
.ye3{bottom:875.670000px;}
.y8{bottom:875.850000px;}
.y50{bottom:876.390000px;}
.yb8{bottom:876.570000px;}
.y71{bottom:886.110000px;}
.y37{bottom:888.810000px;}
.y85{bottom:890.970000px;}
.yb7{bottom:894.210000px;}
.y7{bottom:897.630000px;}
.ye2{bottom:899.250000px;}
.y4f{bottom:903.570000px;}
.y36{bottom:906.450000px;}
.y84{bottom:908.610000px;}
.yb6{bottom:911.670000px;}
.ye1{bottom:916.890000px;}
.y70{bottom:918.150000px;}
.y35{bottom:924.090000px;}
.yb5{bottom:929.310000px;}
.y6{bottom:930.030000px;}
.y4e{bottom:930.930000px;}
.ye0{bottom:940.470000px;}
.y83{bottom:940.650000px;}
.y34{bottom:941.550000px;}
.yb4{bottom:946.950000px;}
.y5{bottom:949.290000px;}
.ydf{bottom:958.110000px;}
.y4d{bottom:958.290000px;}
.y33{bottom:959.190000px;}
.yb3{bottom:964.410000px;}
.yde{bottom:975.570000px;}
.yb2{bottom:982.050000px;}
.y4b{bottom:985.650000px;}
.y32{bottom:985.830000px;}
.y4{bottom:987.630000px;}
.ydd{bottom:999.150000px;}
.yb1{bottom:999.690000px;}
.y3{bottom:1012.290000px;}
.ydc{bottom:1016.790000px;}
.yb0{bottom:1017.150000px;}
.y31{bottom:1021.650000px;}
.y4a{bottom:1034.430000px;}
.yaf{bottom:1034.790000px;}
.ydb{bottom:1040.370000px;}
.yae{bottom:1052.430000px;}
.yda{bottom:1058.010000px;}
.y30{bottom:1069.890000px;}
.yad{bottom:1070.070000px;}
.yd9{bottom:1081.590000px;}
.y2f{bottom:1087.530000px;}
.yd8{bottom:1099.230000px;}
.y2e{bottom:1105.170000px;}
.yd7{bottom:1122.630000px;}
.y2d{bottom:1122.810000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.h10{height:26.460000px;}
.h11{height:26.496000px;}
.he{height:26.640000px;}
.h2{height:29.717578px;}
.h8{height:36.639844px;}
.h6{height:36.819844px;}
.h3{height:39.468516px;}
.hf{height:50.597578px;}
.h7{height:51.939844px;}
.h9{height:51.998203px;}
.ha{height:56.084062px;}
.h12{height:57.571875px;}
.h5{height:57.636562px;}
.hb{height:60.960938px;}
.h13{height:61.423863px;}
.hd{height:62.211094px;}
.hc{height:68.956875px;}
.h4{height:73.298672px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:96.336000px;}
.w4{width:403.815000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.xa{left:70.739987px;}
.x15{left:71.819987px;}
.xd{left:76.319987px;}
.x18{left:78.659987px;}
.x11{left:82.259987px;}
.x12{left:91.475987px;}
.x19{left:111.455987px;}
.xe{left:137.555987px;}
.x6{left:196.230000px;}
.x2{left:201.449987px;}
.x13{left:261.569987px;}
.x5{left:263.189987px;}
.x8{left:293.295000px;}
.xb{left:418.754987px;}
.x16{left:429.734987px;}
.x9{left:685.229987px;}
.x4{left:696.389987px;}
.x17{left:710.969987px;}
.x14{left:718.889987px;}
.x10{left:719.969987px;}
.xf{left:744.809987px;}
.xc{left:746.969987px;}
.x3{left:791.969987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1f{letter-spacing:-0.672000pt;}
.ls20{letter-spacing:-0.629333pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls12{letter-spacing:-0.347733pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsb{letter-spacing:-0.317333pt;}
.ls24{letter-spacing:-0.307733pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls19{letter-spacing:-0.259200pt;}
.ls1a{letter-spacing:-0.201067pt;}
.ls18{letter-spacing:-0.140267pt;}
.ls21{letter-spacing:-0.066667pt;}
.ls25{letter-spacing:-0.057067pt;}
.lsf{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls14{letter-spacing:0.099200pt;}
.ls7{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.188160pt;}
.ls13{letter-spacing:0.196480pt;}
.ls23{letter-spacing:0.284160pt;}
.ls1{letter-spacing:0.312320pt;}
.ls5{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.324480pt;}
.lse{letter-spacing:0.342933pt;}
.ls17{letter-spacing:0.426667pt;}
.ls11{letter-spacing:0.592640pt;}
.ls1b{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.651520pt;}
.lsd{letter-spacing:0.698667pt;}
.ls15{letter-spacing:0.739200pt;}
.ls1d{letter-spacing:2.393600pt;}
.ls1c{letter-spacing:6.233600pt;}
.ls22{letter-spacing:42.832640pt;}
.ls1e{letter-spacing:72.912640pt;}
.wsc{word-spacing:-13.296533pt;}
.ws8{word-spacing:-12.953600pt;}
.ws3{word-spacing:-12.636267pt;}
.ws12{word-spacing:-11.970560pt;}
.ws5{word-spacing:-11.698133pt;}
.wsb{word-spacing:-11.697920pt;}
.ws6{word-spacing:-11.686400pt;}
.ws9{word-spacing:-11.654400pt;}
.ws11{word-spacing:-11.629333pt;}
.wsd{word-spacing:-11.546133pt;}
.wsf{word-spacing:-11.485333pt;}
.wse{word-spacing:-11.427200pt;}
.ws10{word-spacing:-11.378667pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws4{word-spacing:-8.166400pt;}
.wsa{word-spacing:0.000000pt;}
.ws7{word-spacing:2.268480pt;}
._10{margin-left:-2.983253pt;}
._4{margin-left:-2.063147pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.938667pt;}
._8{width:1.868160pt;}
._6{width:2.838400pt;}
._5{width:4.313600pt;}
._7{width:5.361279pt;}
._9{width:6.268266pt;}
._d{width:7.490132pt;}
._e{width:9.083732pt;}
._a{width:10.517866pt;}
._16{width:12.594342pt;}
._b{width:13.492268pt;}
._c{width:14.449065pt;}
._15{width:16.785920pt;}
._f{width:17.947112pt;}
._14{width:19.638198pt;}
._3{width:20.816565pt;}
._2{width:21.922145pt;}
._13{width:23.107200pt;}
._12{width:24.116480pt;}
._19{width:29.322240pt;}
._11{width:32.031360pt;}
._18{width:49.295360pt;}
._17{width:240.739840pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:6.880000pt;}
.y4c{bottom:7.040000pt;}
.y2{bottom:65.152000pt;}
.y2b{bottom:65.952000pt;}
.y1{bottom:90.112000pt;}
.y49{bottom:100.192000pt;}
.yac{bottom:112.192000pt;}
.y48{bottom:115.712000pt;}
.y107{bottom:119.872000pt;}
.y29{bottom:124.672000pt;}
.yab{bottom:127.872000pt;}
.y98{bottom:130.432000pt;}
.y47{bottom:131.392000pt;}
.yd6{bottom:134.746667pt;}
.y106{bottom:135.546667pt;}
.y28{bottom:140.346667pt;}
.yd5{bottom:150.426667pt;}
.yaa{bottom:151.706667pt;}
.y46{bottom:154.906667pt;}
.y27{bottom:155.866667pt;}
.y105{bottom:156.506667pt;}
.y97{bottom:162.106667pt;}
.y6f{bottom:164.026667pt;}
.yd4{bottom:165.946667pt;}
.y26{bottom:171.546667pt;}
.y104{bottom:172.186667pt;}
.y96{bottom:177.786667pt;}
.y45{bottom:186.586667pt;}
.y25{bottom:187.226667pt;}
.y103{bottom:187.866667pt;}
.yd3{bottom:189.786667pt;}
.y95{bottom:193.466667pt;}
.ya9{bottom:194.586667pt;}
.y6e{bottom:195.546667pt;}
.y44{bottom:202.266667pt;}
.y24{bottom:202.746667pt;}
.y102{bottom:208.666667pt;}
.y94{bottom:208.986667pt;}
.ya8{bottom:210.266667pt;}
.y6d{bottom:211.226667pt;}
.y43{bottom:217.946667pt;}
.y23{bottom:218.426667pt;}
.y101{bottom:224.346667pt;}
.y93{bottom:224.666667pt;}
.ya7{bottom:225.946667pt;}
.y6c{bottom:226.906667pt;}
.yd2{bottom:232.826667pt;}
.y42{bottom:233.626667pt;}
.y22{bottom:234.106667pt;}
.y92{bottom:240.346667pt;}
.ya6{bottom:241.626667pt;}
.y100{bottom:245.306667pt;}
.yd1{bottom:248.506667pt;}
.y41{bottom:249.146667pt;}
.y21{bottom:249.786667pt;}
.y6b{bottom:250.426667pt;}
.yff{bottom:260.986667pt;}
.y40{bottom:264.826667pt;}
.y20{bottom:265.306667pt;}
.ya5{bottom:270.106667pt;}
.y91{bottom:271.866667pt;}
.yd0{bottom:272.346667pt;}
.y82{bottom:277.346667pt;}
.y3f{bottom:280.546667pt;}
.y1f{bottom:281.026667pt;}
.yfe{bottom:281.986667pt;}
.y6a{bottom:282.306667pt;}
.y90{bottom:287.586667pt;}
.y3e{bottom:296.066667pt;}
.y1e{bottom:296.706667pt;}
.yfd{bottom:297.666667pt;}
.y8f{bottom:303.266667pt;}
.ycf{bottom:305.186667pt;}
.y81{bottom:309.026667pt;}
.y3d{bottom:311.746667pt;}
.yfc{bottom:318.466667pt;}
.y8e{bottom:318.946667pt;}
.y1d{bottom:320.386667pt;}
.y80{bottom:324.706667pt;}
.y69{bottom:325.346667pt;}
.y3c{bottom:327.426667pt;}
.yce{bottom:329.186667pt;}
.yfb{bottom:334.146667pt;}
.y8d{bottom:334.466667pt;}
.y7f{bottom:340.386667pt;}
.y68{bottom:341.026667pt;}
.y8c{bottom:350.146667pt;}
.y3b{bottom:350.946667pt;}
.yfa{bottom:355.106667pt;}
.y7e{bottom:355.906667pt;}
.y67{bottom:356.706667pt;}
.ycd{bottom:362.146667pt;}
.y1c{bottom:363.746667pt;}
.yf9{bottom:370.786667pt;}
.y7d{bottom:371.586667pt;}
.y66{bottom:372.386667pt;}
.y8b{bottom:373.666667pt;}
.y3a{bottom:382.626667pt;}
.ycc{bottom:385.986667pt;}
.yf8{bottom:386.466667pt;}
.y7c{bottom:387.266667pt;}
.y65{bottom:395.906667pt;}
.y1b{bottom:396.546667pt;}
.y7b{bottom:402.946667pt;}
.y8a{bottom:405.346667pt;}
.yf7{bottom:407.426667pt;}
.y39{bottom:411.266667pt;}
.y1a{bottom:412.226667pt;}
.ycb{bottom:419.106667pt;}
.y89{bottom:421.026667pt;}
.yf6{bottom:423.106667pt;}
.y7a{bottom:426.466667pt;}
.y64{bottom:427.586667pt;}
.y19{bottom:427.906667pt;}
.y88{bottom:436.706667pt;}
.yf5{bottom:438.626667pt;}
.y63{bottom:443.266667pt;}
.y18{bottom:443.586667pt;}
.y79{bottom:458.146667pt;}
.y62{bottom:458.786667pt;}
.y17{bottom:459.266667pt;}
.yf4{bottom:459.586667pt;}
.yca{bottom:462.146667pt;}
.y87{bottom:465.186667pt;}
.y78{bottom:473.826667pt;}
.y61{bottom:474.466667pt;}
.y16{bottom:474.786667pt;}
.yf3{bottom:475.266667pt;}
.yc9{bottom:477.826667pt;}
.y77{bottom:489.346667pt;}
.y60{bottom:490.146667pt;}
.y15{bottom:490.466667pt;}
.yf2{bottom:490.946667pt;}
.yc8{bottom:493.346667pt;}
.y5f{bottom:505.666667pt;}
.y14{bottom:506.146667pt;}
.yf1{bottom:506.466667pt;}
.yc7{bottom:509.026667pt;}
.y76{bottom:517.986667pt;}
.y5e{bottom:521.373333pt;}
.y13{bottom:521.693333pt;}
.yc6{bottom:524.733333pt;}
.yf0{bottom:527.453333pt;}
.y5d{bottom:537.053333pt;}
.y12{bottom:537.373333pt;}
.yc5{bottom:540.413333pt;}
.yef{bottom:543.133333pt;}
.ya4{bottom:551.293333pt;}
.y11{bottom:553.053333pt;}
.yc4{bottom:555.933333pt;}
.yee{bottom:558.813333pt;}
.y5c{bottom:560.573333pt;}
.ya3{bottom:566.973333pt;}
.y10{bottom:568.573333pt;}
.yc3{bottom:579.773333pt;}
.ya2{bottom:582.493333pt;}
.yf{bottom:584.253333pt;}
.y5b{bottom:592.253333pt;}
.yed{bottom:595.453333pt;}
.ya1{bottom:598.173333pt;}
.ye{bottom:599.933333pt;}
.y5a{bottom:607.933333pt;}
.ya0{bottom:613.853333pt;}
.yec{bottom:616.253333pt;}
.yc2{bottom:622.813333pt;}
.y59{bottom:623.613333pt;}
.yd{bottom:623.773333pt;}
.y9f{bottom:629.373333pt;}
.yeb{bottom:631.933333pt;}
.yc1{bottom:638.493333pt;}
.y58{bottom:639.133333pt;}
.y9e{bottom:645.053333pt;}
.yea{bottom:652.893333pt;}
.yc0{bottom:654.013333pt;}
.y57{bottom:654.813333pt;}
.yc{bottom:666.653333pt;}
.ye9{bottom:668.573333pt;}
.ybf{bottom:669.693333pt;}
.y56{bottom:670.493333pt;}
.y9d{bottom:676.573333pt;}
.ybe{bottom:685.373333pt;}
.y55{bottom:686.013333pt;}
.ye8{bottom:689.533333pt;}
.y9c{bottom:692.253333pt;}
.yb{bottom:698.493333pt;}
.ybd{bottom:700.893333pt;}
.y54{bottom:701.693333pt;}
.y9b{bottom:707.933333pt;}
.y75{bottom:709.053333pt;}
.ye7{bottom:710.493333pt;}
.ybc{bottom:716.573333pt;}
.y9a{bottom:723.613333pt;}
.y74{bottom:724.733333pt;}
.y53{bottom:725.213333pt;}
.ye6{bottom:726.173333pt;}
.ya{bottom:730.493333pt;}
.ybb{bottom:732.253333pt;}
.y73{bottom:740.253333pt;}
.ye5{bottom:741.853333pt;}
.yba{bottom:747.773333pt;}
.y99{bottom:752.093333pt;}
.y52{bottom:754.653333pt;}
.y86{bottom:760.253333pt;}
.ye4{bottom:762.653333pt;}
.yb9{bottom:763.493333pt;}
.y9{bottom:765.893333pt;}
.y72{bottom:771.973333pt;}
.y38{bottom:774.373333pt;}
.ye3{bottom:778.373333pt;}
.y8{bottom:778.533333pt;}
.y50{bottom:779.013333pt;}
.yb8{bottom:779.173333pt;}
.y71{bottom:787.653333pt;}
.y37{bottom:790.053333pt;}
.y85{bottom:791.973333pt;}
.yb7{bottom:794.853333pt;}
.y7{bottom:797.893333pt;}
.ye2{bottom:799.333333pt;}
.y4f{bottom:803.173333pt;}
.y36{bottom:805.733333pt;}
.y84{bottom:807.653333pt;}
.yb6{bottom:810.373333pt;}
.ye1{bottom:815.013333pt;}
.y70{bottom:816.133333pt;}
.y35{bottom:821.413333pt;}
.yb5{bottom:826.053333pt;}
.y6{bottom:826.693333pt;}
.y4e{bottom:827.493333pt;}
.ye0{bottom:835.973333pt;}
.y83{bottom:836.133333pt;}
.y34{bottom:836.933333pt;}
.yb4{bottom:841.733333pt;}
.y5{bottom:843.813333pt;}
.ydf{bottom:851.653333pt;}
.y4d{bottom:851.813333pt;}
.y33{bottom:852.613333pt;}
.yb3{bottom:857.253333pt;}
.yde{bottom:867.173333pt;}
.yb2{bottom:872.933333pt;}
.y4b{bottom:876.133333pt;}
.y32{bottom:876.293333pt;}
.y4{bottom:877.893333pt;}
.ydd{bottom:888.133333pt;}
.yb1{bottom:888.613333pt;}
.y3{bottom:899.813333pt;}
.ydc{bottom:903.813333pt;}
.yb0{bottom:904.133333pt;}
.y31{bottom:908.133333pt;}
.y4a{bottom:919.493333pt;}
.yaf{bottom:919.813333pt;}
.ydb{bottom:924.773333pt;}
.yae{bottom:935.493333pt;}
.yda{bottom:940.453333pt;}
.y30{bottom:951.013333pt;}
.yad{bottom:951.173333pt;}
.yd9{bottom:961.413333pt;}
.y2f{bottom:966.693333pt;}
.yd8{bottom:977.093333pt;}
.y2e{bottom:982.373333pt;}
.yd7{bottom:997.893333pt;}
.y2d{bottom:998.053333pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.h10{height:23.520000pt;}
.h11{height:23.552000pt;}
.he{height:23.680000pt;}
.h2{height:26.415625pt;}
.h8{height:32.568750pt;}
.h6{height:32.728750pt;}
.h3{height:35.083125pt;}
.hf{height:44.975625pt;}
.h7{height:46.168750pt;}
.h9{height:46.220625pt;}
.ha{height:49.852500pt;}
.h12{height:51.175000pt;}
.h5{height:51.232500pt;}
.hb{height:54.187500pt;}
.h13{height:54.598989pt;}
.hd{height:55.298750pt;}
.hc{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:85.632000pt;}
.w4{width:358.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.xa{left:62.879988pt;}
.x15{left:63.839988pt;}
.xd{left:67.839988pt;}
.x18{left:69.919988pt;}
.x11{left:73.119988pt;}
.x12{left:81.311988pt;}
.x19{left:99.071988pt;}
.xe{left:122.271988pt;}
.x6{left:174.426667pt;}
.x2{left:179.066655pt;}
.x13{left:232.506655pt;}
.x5{left:233.946655pt;}
.x8{left:260.706667pt;}
.xb{left:372.226655pt;}
.x16{left:381.986655pt;}
.x9{left:609.093322pt;}
.x4{left:619.013322pt;}
.x17{left:631.973322pt;}
.x14{left:639.013322pt;}
.x10{left:639.973322pt;}
.xf{left:662.053322pt;}
.xc{left:663.973322pt;}
.x3{left:703.973322pt;}
}




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