
    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_f36d96505efb28579298d226.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4d23b9fbeadf1916359b007e.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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_9da0417f8d5bd0ecb83bf854.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_3ae75d1dc16d8047d698410a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_9171541c9138893518b79933.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_a5572631b4c2355c0a739ce0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_113bef7c5c4698deefa5e6ae.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_a957d45df3f2d7908f7b6350.woff')format("woff");}.ff9{font-family:ff9;line-height:1.202148;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_5d123772bb4c8abe91c34807.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_8b0f8a48f86a8e4d8c61192a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fd5082de988de3fcb3ce60df.woff')format("woff");}.ffc{font-family:ffc;line-height:0.970703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsb{letter-spacing:-4.782000px;}
.ls5{letter-spacing:-1.176000px;}
.lsf{letter-spacing:-0.822000px;}
.lsa{letter-spacing:-0.540000px;}
.ls11{letter-spacing:-0.460200px;}
.ls1b{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.208200px;}
.ls14{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.513600px;}
.ls1a{letter-spacing:0.666000px;}
.ls16{letter-spacing:0.828000px;}
.ls3{letter-spacing:0.900000px;}
.ls19{letter-spacing:1.080000px;}
.lse{letter-spacing:3.780000px;}
.ls12{letter-spacing:10.026720px;}
.ls18{letter-spacing:11.466720px;}
.ls17{letter-spacing:14.346720px;}
.lsc{letter-spacing:19.386720px;}
.ls13{letter-spacing:37.386720px;}
.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;}
}
.wsb{word-spacing:-59.760000px;}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.wse{word-spacing:-16.020000px;}
.wsf{word-spacing:-15.606000px;}
.ws0{word-spacing:-15.384000px;}
.ws7{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws10{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.118000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-2539.503360px;}
._3{margin-left:-1449.751680px;}
._5{margin-left:-1444.389120px;}
._4{margin-left:-939.110400px;}
._17{margin-left:-11.033280px;}
._b{margin-left:-8.618400px;}
._11{margin-left:-6.307200px;}
._7{margin-left:-5.075280px;}
._e{margin-left:-4.032960px;}
._d{margin-left:-2.393520px;}
._2{margin-left:-1.258560px;}
._0{width:1.244880px;}
._f{width:2.252640px;}
._6{width:3.804480px;}
._10{width:5.467440px;}
._9{width:7.338960px;}
._a{width:8.432400px;}
._12{width:9.450720px;}
._8{width:10.533600px;}
._c{width:11.666880px;}
._15{width:12.920880px;}
._3b{width:17.002080px;}
._16{width:18.345600px;}
._3c{width:19.362240px;}
._36{width:20.437920px;}
._2c{width:22.350240px;}
._13{width:24.744240px;}
._14{width:26.364720px;}
._22{width:29.342160px;}
._23{width:30.417840px;}
._24{width:33.047280px;}
._38{width:34.421760px;}
._2e{width:36.334080px;}
._2d{width:38.007360px;}
._32{width:39.750480px;}
._2b{width:41.722560px;}
._30{width:43.170480px;}
._1e{width:48.764160px;}
._1f{width:49.839840px;}
._2a{width:52.170480px;}
._1c{width:55.158480px;}
._1b{width:56.532960px;}
._1d{width:59.162400px;}
._37{width:61.496160px;}
._29{width:75.659280px;}
._21{width:76.911120px;}
._2f{width:83.903040px;}
._1a{width:90.247680px;}
._27{width:92.508480px;}
._33{width:96.392880px;}
._18{width:132.308640px;}
._39{width:155.252160px;}
._25{width:169.393440px;}
._19{width:170.706960px;}
._34{width:172.646640px;}
._20{width:180.893520px;}
._31{width:184.788000px;}
._35{width:228.103920px;}
._26{width:229.896720px;}
._28{width:231.629760px;}
._3a{width:303.176160px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y90{bottom:5.760000px;}
.ya4{bottom:5.940000px;}
.y94{bottom:5.985000px;}
.ya2{bottom:19.800000px;}
.y8f{bottom:25.560000px;}
.y9e{bottom:25.590000px;}
.y9b{bottom:25.740000px;}
.y93{bottom:25.785000px;}
.y96{bottom:45.360000px;}
.y9d{bottom:45.390000px;}
.ya6{bottom:45.405000px;}
.y99{bottom:45.540000px;}
.y92{bottom:45.585000px;}
.y6{bottom:60.156000px;}
.yc2{bottom:97.596000px;}
.yf4{bottom:98.676000px;}
.y88{bottom:98.856000px;}
.y34{bottom:105.516000px;}
.yc1{bottom:117.396000px;}
.yf3{bottom:118.476000px;}
.y6a{bottom:118.656000px;}
.y33{bottom:125.316000px;}
.yac{bottom:125.676000px;}
.yc0{bottom:138.276000px;}
.y69{bottom:138.636000px;}
.y32{bottom:145.116000px;}
.yab{bottom:145.476000px;}
.ybf{bottom:158.070000px;}
.y68{bottom:158.430000px;}
.y31{bottom:165.090000px;}
.yaa{bottom:166.350000px;}
.yf2{bottom:177.870000px;}
.y67{bottom:178.230000px;}
.ybe{bottom:178.950000px;}
.y30{bottom:184.890000px;}
.ya9{bottom:186.150000px;}
.yf1{bottom:197.850000px;}
.y66{bottom:198.030000px;}
.ybd{bottom:198.750000px;}
.y2f{bottom:204.690000px;}
.ya8{bottom:205.950000px;}
.yf0{bottom:217.650000px;}
.y65{bottom:217.830000px;}
.ybc{bottom:219.810000px;}
.y2e{bottom:224.490000px;}
.ya7{bottom:227.010000px;}
.yef{bottom:237.450000px;}
.y64{bottom:237.810000px;}
.ybb{bottom:239.610000px;}
.ya5{bottom:241.770000px;}
.y2d{bottom:244.290000px;}
.yee{bottom:257.250000px;}
.y63{bottom:257.610000px;}
.yba{bottom:259.410000px;}
.y2c{bottom:264.270000px;}
.yed{bottom:277.050000px;}
.y62{bottom:277.410000px;}
.yb9{bottom:279.210000px;}
.y2b{bottom:284.115000px;}
.yec{bottom:297.075000px;}
.y61{bottom:297.255000px;}
.ya3{bottom:301.935000px;}
.y2a{bottom:303.915000px;}
.yb8{bottom:308.055000px;}
.yeb{bottom:316.875000px;}
.y60{bottom:317.055000px;}
.y29{bottom:323.715000px;}
.yb7{bottom:328.035000px;}
.y5f{bottom:337.035000px;}
.y28{bottom:343.515000px;}
.yea{bottom:345.675000px;}
.yb6{bottom:347.835000px;}
.y5e{bottom:356.835000px;}
.ya1{bottom:362.235000px;}
.y27{bottom:363.495000px;}
.ye9{bottom:365.475000px;}
.yb5{bottom:367.635000px;}
.y5d{bottom:376.635000px;}
.y26{bottom:383.295000px;}
.ye8{bottom:385.275000px;}
.yb4{bottom:387.435000px;}
.y5c{bottom:396.435000px;}
.y25{bottom:403.095000px;}
.ye7{bottom:405.255000px;}
.yb3{bottom:407.235000px;}
.y5b{bottom:416.235000px;}
.ya0{bottom:422.535000px;}
.y24{bottom:422.895000px;}
.ye6{bottom:425.055000px;}
.yb2{bottom:427.215000px;}
.y5a{bottom:436.215000px;}
.y23{bottom:442.695000px;}
.ye5{bottom:444.855000px;}
.yb1{bottom:447.015000px;}
.y59{bottom:456.015000px;}
.ye4{bottom:464.655000px;}
.y22{bottom:464.835000px;}
.yb0{bottom:466.815000px;}
.y58{bottom:475.815000px;}
.y9f{bottom:482.835000px;}
.ye3{bottom:484.455000px;}
.y21{bottom:484.635000px;}
.y87{bottom:484.815000px;}
.yaf{bottom:486.615000px;}
.y57{bottom:495.615000px;}
.ye2{bottom:504.435000px;}
.y86{bottom:504.615000px;}
.y20{bottom:513.615000px;}
.y56{bottom:515.415000px;}
.ye1{bottom:524.235000px;}
.y85{bottom:524.415000px;}
.y1f{bottom:533.415000px;}
.y55{bottom:535.395000px;}
.y9c{bottom:543.135000px;}
.ye0{bottom:544.035000px;}
.y84{bottom:544.395000px;}
.y1e{bottom:553.215000px;}
.y54{bottom:555.195000px;}
.y83{bottom:564.195000px;}
.ydf{bottom:572.865000px;}
.y1d{bottom:573.045000px;}
.y53{bottom:575.025000px;}
.y82{bottom:584.025000px;}
.yde{bottom:592.665000px;}
.y1c{bottom:592.845000px;}
.y52{bottom:594.825000px;}
.y9a{bottom:603.285000px;}
.y81{bottom:603.825000px;}
.ydd{bottom:612.465000px;}
.y1b{bottom:612.825000px;}
.y51{bottom:614.625000px;}
.y80{bottom:623.625000px;}
.ydc{bottom:632.445000px;}
.y1a{bottom:632.625000px;}
.y50{bottom:634.605000px;}
.y7f{bottom:643.605000px;}
.ydb{bottom:652.245000px;}
.y19{bottom:652.425000px;}
.y4f{bottom:654.405000px;}
.y7e{bottom:663.405000px;}
.y98{bottom:663.585000px;}
.yda{bottom:672.045000px;}
.y18{bottom:672.225000px;}
.y4e{bottom:674.205000px;}
.y7d{bottom:683.205000px;}
.yd9{bottom:691.845000px;}
.y17{bottom:692.025000px;}
.y4d{bottom:694.005000px;}
.y7c{bottom:703.005000px;}
.yd8{bottom:711.645000px;}
.y16{bottom:712.005000px;}
.y4c{bottom:713.805000px;}
.y7b{bottom:722.805000px;}
.y97{bottom:723.885000px;}
.yd7{bottom:731.625000px;}
.y15{bottom:731.805000px;}
.y4b{bottom:733.785000px;}
.y7a{bottom:742.785000px;}
.yd6{bottom:751.425000px;}
.y14{bottom:751.605000px;}
.y4a{bottom:753.585000px;}
.y79{bottom:762.585000px;}
.yd5{bottom:771.225000px;}
.y13{bottom:771.405000px;}
.y49{bottom:773.385000px;}
.y78{bottom:782.385000px;}
.y95{bottom:784.185000px;}
.yd4{bottom:791.025000px;}
.y12{bottom:791.205000px;}
.y48{bottom:793.185000px;}
.y77{bottom:802.185000px;}
.yd3{bottom:810.825000px;}
.y11{bottom:811.185000px;}
.y47{bottom:812.985000px;}
.y76{bottom:821.985000px;}
.yd2{bottom:830.805000px;}
.y46{bottom:832.965000px;}
.y10{bottom:833.145000px;}
.y75{bottom:841.965000px;}
.y91{bottom:844.305000px;}
.yd1{bottom:850.650000px;}
.y45{bottom:852.810000px;}
.yf{bottom:858.210000px;}
.y74{bottom:861.810000px;}
.yd0{bottom:870.450000px;}
.y44{bottom:872.610000px;}
.ye{bottom:878.190000px;}
.y73{bottom:881.610000px;}
.ycf{bottom:890.250000px;}
.y43{bottom:892.410000px;}
.yd{bottom:897.990000px;}
.y72{bottom:901.410000px;}
.y8e{bottom:904.650000px;}
.yce{bottom:910.050000px;}
.y42{bottom:912.210000px;}
.yc{bottom:917.790000px;}
.y71{bottom:921.210000px;}
.ycd{bottom:930.030000px;}
.y41{bottom:932.190000px;}
.yb{bottom:937.590000px;}
.y70{bottom:941.190000px;}
.ycc{bottom:949.830000px;}
.y8d{bottom:950.910000px;}
.y40{bottom:951.990000px;}
.ya{bottom:952.710000px;}
.y6f{bottom:960.990000px;}
.ycb{bottom:969.630000px;}
.y8c{bottom:970.710000px;}
.y3f{bottom:971.790000px;}
.y9{bottom:974.130000px;}
.y6e{bottom:980.790000px;}
.yca{bottom:989.430000px;}
.y8b{bottom:990.510000px;}
.y3e{bottom:991.590000px;}
.y8{bottom:997.530000px;}
.y6d{bottom:1000.590000px;}
.yc9{bottom:1009.230000px;}
.y8a{bottom:1010.310000px;}
.y3d{bottom:1011.390000px;}
.y6c{bottom:1020.390000px;}
.y7{bottom:1029.210000px;}
.y89{bottom:1030.290000px;}
.y3c{bottom:1031.370000px;}
.yc8{bottom:1038.210000px;}
.y6b{bottom:1040.370000px;}
.y3b{bottom:1051.170000px;}
.yc7{bottom:1058.010000px;}
.y5{bottom:1060.170000px;}
.yae{bottom:1070.970000px;}
.yc6{bottom:1077.810000px;}
.y3a{bottom:1079.970000px;}
.yad{bottom:1090.770000px;}
.y4{bottom:1090.950000px;}
.yc5{bottom:1097.610000px;}
.y39{bottom:1099.770000px;}
.yc4{bottom:1118.490000px;}
.y38{bottom:1119.570000px;}
.y3{bottom:1121.730000px;}
.yc3{bottom:1138.500000px;}
.y37{bottom:1139.580000px;}
.y2{bottom:1152.720000px;}
.y36{bottom:1170.000000px;}
.y1{bottom:1186.560000px;}
.y35{bottom:1193.220000px;}
.h9{height:37.771172px;}
.h10{height:39.600000px;}
.hc{height:41.726953px;}
.hb{height:42.164648px;}
.hd{height:43.681992px;}
.ha{height:58.651172px;}
.h13{height:59.400000px;}
.h15{height:59.436000px;}
.h14{height:59.580000px;}
.h12{height:59.614102px;}
.h11{height:59.616000px;}
.h8{height:60.063750px;}
.h7{height:60.226875px;}
.he{height:61.423863px;}
.h4{height:65.010937px;}
.h5{height:65.884219px;}
.h3{height:66.757500px;}
.h6{height:67.565039px;}
.hf{height:67.824844px;}
.h2{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:140.976000px;}
.w3{width:153.540000px;}
.w5{width:185.430000px;}
.w6{width:218.550000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.560000px;}
.x1{left:54.179987px;}
.x2{left:67.499987px;}
.x3{left:74.339987px;}
.xd{left:80.999987px;}
.xb{left:87.839987px;}
.x6{left:96.156000px;}
.xc{left:108.035987px;}
.x4{left:230.249987px;}
.x5{left:241.589987px;}
.x8{left:250.410000px;}
.x9{left:392.295000px;}
.xa{left:578.445000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsb{letter-spacing:-4.250667pt;}
.ls5{letter-spacing:-1.045333pt;}
.lsf{letter-spacing:-0.730667pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls11{letter-spacing:-0.409067pt;}
.ls1b{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.185067pt;}
.ls14{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.456533pt;}
.ls1a{letter-spacing:0.592000pt;}
.ls16{letter-spacing:0.736000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.960000pt;}
.lse{letter-spacing:3.360000pt;}
.ls12{letter-spacing:8.912640pt;}
.ls18{letter-spacing:10.192640pt;}
.ls17{letter-spacing:12.752640pt;}
.lsc{letter-spacing:17.232640pt;}
.ls13{letter-spacing:33.232640pt;}
.wsb{word-spacing:-53.120000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.240000pt;}
.wsf{word-spacing:-13.872000pt;}
.ws0{word-spacing:-13.674667pt;}
.ws7{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws10{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.549333pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-2257.336320pt;}
._3{margin-left:-1288.668160pt;}
._5{margin-left:-1283.901440pt;}
._4{margin-left:-834.764800pt;}
._17{margin-left:-9.807360pt;}
._b{margin-left:-7.660800pt;}
._11{margin-left:-5.606400pt;}
._7{margin-left:-4.511360pt;}
._e{margin-left:-3.584853pt;}
._d{margin-left:-2.127573pt;}
._2{margin-left:-1.118720pt;}
._0{width:1.106560pt;}
._f{width:2.002347pt;}
._6{width:3.381760pt;}
._10{width:4.859947pt;}
._9{width:6.523520pt;}
._a{width:7.495467pt;}
._12{width:8.400640pt;}
._8{width:9.363200pt;}
._c{width:10.370560pt;}
._15{width:11.485227pt;}
._3b{width:15.112960pt;}
._16{width:16.307200pt;}
._3c{width:17.210880pt;}
._36{width:18.167040pt;}
._2c{width:19.866880pt;}
._13{width:21.994880pt;}
._14{width:23.435307pt;}
._22{width:26.081920pt;}
._23{width:27.038080pt;}
._24{width:29.375360pt;}
._38{width:30.597120pt;}
._2e{width:32.296960pt;}
._2d{width:33.784320pt;}
._32{width:35.333760pt;}
._2b{width:37.086720pt;}
._30{width:38.373760pt;}
._1e{width:43.345920pt;}
._1f{width:44.302080pt;}
._2a{width:46.373760pt;}
._1c{width:49.029760pt;}
._1b{width:50.251520pt;}
._1d{width:52.588800pt;}
._37{width:54.663253pt;}
._29{width:67.252693pt;}
._21{width:68.365440pt;}
._2f{width:74.580480pt;}
._1a{width:80.220160pt;}
._27{width:82.229760pt;}
._33{width:85.682560pt;}
._18{width:117.607680pt;}
._39{width:138.001920pt;}
._25{width:150.571947pt;}
._19{width:151.739520pt;}
._34{width:153.463680pt;}
._20{width:160.794240pt;}
._31{width:164.256000pt;}
._35{width:202.759040pt;}
._26{width:204.352640pt;}
._28{width:205.893120pt;}
._3a{width:269.489920pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y90{bottom:5.120000pt;}
.ya4{bottom:5.280000pt;}
.y94{bottom:5.320000pt;}
.ya2{bottom:17.600000pt;}
.y8f{bottom:22.720000pt;}
.y9e{bottom:22.746667pt;}
.y9b{bottom:22.880000pt;}
.y93{bottom:22.920000pt;}
.y96{bottom:40.320000pt;}
.y9d{bottom:40.346667pt;}
.ya6{bottom:40.360000pt;}
.y99{bottom:40.480000pt;}
.y92{bottom:40.520000pt;}
.y6{bottom:53.472000pt;}
.yc2{bottom:86.752000pt;}
.yf4{bottom:87.712000pt;}
.y88{bottom:87.872000pt;}
.y34{bottom:93.792000pt;}
.yc1{bottom:104.352000pt;}
.yf3{bottom:105.312000pt;}
.y6a{bottom:105.472000pt;}
.y33{bottom:111.392000pt;}
.yac{bottom:111.712000pt;}
.yc0{bottom:122.912000pt;}
.y69{bottom:123.232000pt;}
.y32{bottom:128.992000pt;}
.yab{bottom:129.312000pt;}
.ybf{bottom:140.506667pt;}
.y68{bottom:140.826667pt;}
.y31{bottom:146.746667pt;}
.yaa{bottom:147.866667pt;}
.yf2{bottom:158.106667pt;}
.y67{bottom:158.426667pt;}
.ybe{bottom:159.066667pt;}
.y30{bottom:164.346667pt;}
.ya9{bottom:165.466667pt;}
.yf1{bottom:175.866667pt;}
.y66{bottom:176.026667pt;}
.ybd{bottom:176.666667pt;}
.y2f{bottom:181.946667pt;}
.ya8{bottom:183.066667pt;}
.yf0{bottom:193.466667pt;}
.y65{bottom:193.626667pt;}
.ybc{bottom:195.386667pt;}
.y2e{bottom:199.546667pt;}
.ya7{bottom:201.786667pt;}
.yef{bottom:211.066667pt;}
.y64{bottom:211.386667pt;}
.ybb{bottom:212.986667pt;}
.ya5{bottom:214.906667pt;}
.y2d{bottom:217.146667pt;}
.yee{bottom:228.666667pt;}
.y63{bottom:228.986667pt;}
.yba{bottom:230.586667pt;}
.y2c{bottom:234.906667pt;}
.yed{bottom:246.266667pt;}
.y62{bottom:246.586667pt;}
.yb9{bottom:248.186667pt;}
.y2b{bottom:252.546667pt;}
.yec{bottom:264.066667pt;}
.y61{bottom:264.226667pt;}
.ya3{bottom:268.386667pt;}
.y2a{bottom:270.146667pt;}
.yb8{bottom:273.826667pt;}
.yeb{bottom:281.666667pt;}
.y60{bottom:281.826667pt;}
.y29{bottom:287.746667pt;}
.yb7{bottom:291.586667pt;}
.y5f{bottom:299.586667pt;}
.y28{bottom:305.346667pt;}
.yea{bottom:307.266667pt;}
.yb6{bottom:309.186667pt;}
.y5e{bottom:317.186667pt;}
.ya1{bottom:321.986667pt;}
.y27{bottom:323.106667pt;}
.ye9{bottom:324.866667pt;}
.yb5{bottom:326.786667pt;}
.y5d{bottom:334.786667pt;}
.y26{bottom:340.706667pt;}
.ye8{bottom:342.466667pt;}
.yb4{bottom:344.386667pt;}
.y5c{bottom:352.386667pt;}
.y25{bottom:358.306667pt;}
.ye7{bottom:360.226667pt;}
.yb3{bottom:361.986667pt;}
.y5b{bottom:369.986667pt;}
.ya0{bottom:375.586667pt;}
.y24{bottom:375.906667pt;}
.ye6{bottom:377.826667pt;}
.yb2{bottom:379.746667pt;}
.y5a{bottom:387.746667pt;}
.y23{bottom:393.506667pt;}
.ye5{bottom:395.426667pt;}
.yb1{bottom:397.346667pt;}
.y59{bottom:405.346667pt;}
.ye4{bottom:413.026667pt;}
.y22{bottom:413.186667pt;}
.yb0{bottom:414.946667pt;}
.y58{bottom:422.946667pt;}
.y9f{bottom:429.186667pt;}
.ye3{bottom:430.626667pt;}
.y21{bottom:430.786667pt;}
.y87{bottom:430.946667pt;}
.yaf{bottom:432.546667pt;}
.y57{bottom:440.546667pt;}
.ye2{bottom:448.386667pt;}
.y86{bottom:448.546667pt;}
.y20{bottom:456.546667pt;}
.y56{bottom:458.146667pt;}
.ye1{bottom:465.986667pt;}
.y85{bottom:466.146667pt;}
.y1f{bottom:474.146667pt;}
.y55{bottom:475.906667pt;}
.y9c{bottom:482.786667pt;}
.ye0{bottom:483.586667pt;}
.y84{bottom:483.906667pt;}
.y1e{bottom:491.746667pt;}
.y54{bottom:493.506667pt;}
.y83{bottom:501.506667pt;}
.ydf{bottom:509.213333pt;}
.y1d{bottom:509.373333pt;}
.y53{bottom:511.133333pt;}
.y82{bottom:519.133333pt;}
.yde{bottom:526.813333pt;}
.y1c{bottom:526.973333pt;}
.y52{bottom:528.733333pt;}
.y9a{bottom:536.253333pt;}
.y81{bottom:536.733333pt;}
.ydd{bottom:544.413333pt;}
.y1b{bottom:544.733333pt;}
.y51{bottom:546.333333pt;}
.y80{bottom:554.333333pt;}
.ydc{bottom:562.173333pt;}
.y1a{bottom:562.333333pt;}
.y50{bottom:564.093333pt;}
.y7f{bottom:572.093333pt;}
.ydb{bottom:579.773333pt;}
.y19{bottom:579.933333pt;}
.y4f{bottom:581.693333pt;}
.y7e{bottom:589.693333pt;}
.y98{bottom:589.853333pt;}
.yda{bottom:597.373333pt;}
.y18{bottom:597.533333pt;}
.y4e{bottom:599.293333pt;}
.y7d{bottom:607.293333pt;}
.yd9{bottom:614.973333pt;}
.y17{bottom:615.133333pt;}
.y4d{bottom:616.893333pt;}
.y7c{bottom:624.893333pt;}
.yd8{bottom:632.573333pt;}
.y16{bottom:632.893333pt;}
.y4c{bottom:634.493333pt;}
.y7b{bottom:642.493333pt;}
.y97{bottom:643.453333pt;}
.yd7{bottom:650.333333pt;}
.y15{bottom:650.493333pt;}
.y4b{bottom:652.253333pt;}
.y7a{bottom:660.253333pt;}
.yd6{bottom:667.933333pt;}
.y14{bottom:668.093333pt;}
.y4a{bottom:669.853333pt;}
.y79{bottom:677.853333pt;}
.yd5{bottom:685.533333pt;}
.y13{bottom:685.693333pt;}
.y49{bottom:687.453333pt;}
.y78{bottom:695.453333pt;}
.y95{bottom:697.053333pt;}
.yd4{bottom:703.133333pt;}
.y12{bottom:703.293333pt;}
.y48{bottom:705.053333pt;}
.y77{bottom:713.053333pt;}
.yd3{bottom:720.733333pt;}
.y11{bottom:721.053333pt;}
.y47{bottom:722.653333pt;}
.y76{bottom:730.653333pt;}
.yd2{bottom:738.493333pt;}
.y46{bottom:740.413333pt;}
.y10{bottom:740.573333pt;}
.y75{bottom:748.413333pt;}
.y91{bottom:750.493333pt;}
.yd1{bottom:756.133333pt;}
.y45{bottom:758.053333pt;}
.yf{bottom:762.853333pt;}
.y74{bottom:766.053333pt;}
.yd0{bottom:773.733333pt;}
.y44{bottom:775.653333pt;}
.ye{bottom:780.613333pt;}
.y73{bottom:783.653333pt;}
.ycf{bottom:791.333333pt;}
.y43{bottom:793.253333pt;}
.yd{bottom:798.213333pt;}
.y72{bottom:801.253333pt;}
.y8e{bottom:804.133333pt;}
.yce{bottom:808.933333pt;}
.y42{bottom:810.853333pt;}
.yc{bottom:815.813333pt;}
.y71{bottom:818.853333pt;}
.ycd{bottom:826.693333pt;}
.y41{bottom:828.613333pt;}
.yb{bottom:833.413333pt;}
.y70{bottom:836.613333pt;}
.ycc{bottom:844.293333pt;}
.y8d{bottom:845.253333pt;}
.y40{bottom:846.213333pt;}
.ya{bottom:846.853333pt;}
.y6f{bottom:854.213333pt;}
.ycb{bottom:861.893333pt;}
.y8c{bottom:862.853333pt;}
.y3f{bottom:863.813333pt;}
.y9{bottom:865.893333pt;}
.y6e{bottom:871.813333pt;}
.yca{bottom:879.493333pt;}
.y8b{bottom:880.453333pt;}
.y3e{bottom:881.413333pt;}
.y8{bottom:886.693333pt;}
.y6d{bottom:889.413333pt;}
.yc9{bottom:897.093333pt;}
.y8a{bottom:898.053333pt;}
.y3d{bottom:899.013333pt;}
.y6c{bottom:907.013333pt;}
.y7{bottom:914.853333pt;}
.y89{bottom:915.813333pt;}
.y3c{bottom:916.773333pt;}
.yc8{bottom:922.853333pt;}
.y6b{bottom:924.773333pt;}
.y3b{bottom:934.373333pt;}
.yc7{bottom:940.453333pt;}
.y5{bottom:942.373333pt;}
.yae{bottom:951.973333pt;}
.yc6{bottom:958.053333pt;}
.y3a{bottom:959.973333pt;}
.yad{bottom:969.573333pt;}
.y4{bottom:969.733333pt;}
.yc5{bottom:975.653333pt;}
.y39{bottom:977.573333pt;}
.yc4{bottom:994.213333pt;}
.y38{bottom:995.173333pt;}
.y3{bottom:997.093333pt;}
.yc3{bottom:1012.000000pt;}
.y37{bottom:1012.960000pt;}
.y2{bottom:1024.640000pt;}
.y36{bottom:1040.000000pt;}
.y1{bottom:1054.720000pt;}
.y35{bottom:1060.640000pt;}
.h9{height:33.574375pt;}
.h10{height:35.200000pt;}
.hc{height:37.090625pt;}
.hb{height:37.479688pt;}
.hd{height:38.828437pt;}
.ha{height:52.134375pt;}
.h13{height:52.800000pt;}
.h15{height:52.832000pt;}
.h14{height:52.960000pt;}
.h12{height:52.990313pt;}
.h11{height:52.992000pt;}
.h8{height:53.390000pt;}
.h7{height:53.535000pt;}
.he{height:54.598989pt;}
.h4{height:57.787500pt;}
.h5{height:58.563750pt;}
.h3{height:59.340000pt;}
.h6{height:60.057813pt;}
.hf{height:60.288750pt;}
.h2{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:125.312000pt;}
.w3{width:136.480000pt;}
.w5{width:164.826667pt;}
.w6{width:194.266667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.720000pt;}
.x1{left:48.159988pt;}
.x2{left:59.999988pt;}
.x3{left:66.079988pt;}
.xd{left:71.999988pt;}
.xb{left:78.079988pt;}
.x6{left:85.472000pt;}
.xc{left:96.031988pt;}
.x4{left:204.666655pt;}
.x5{left:214.746655pt;}
.x8{left:222.586667pt;}
.x9{left:348.706667pt;}
.xa{left:514.173333pt;}
}




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