
    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_01ebb0dea7ec1afbd2a5f17e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916016;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_ffc93033af20eb4f05e10b8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.873535;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_60a54386d39ab3c4989e1cb4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.866211;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_12cbbf4366ad2eb78c77a8d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_096c1adbd90199f8b0cba7dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.861328;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_f573cc6253ac6fc071034bb3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e6591f157588197253dd637e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls24{letter-spacing:-0.342144px;}
.ls29{letter-spacing:-0.310464px;}
.ls14{letter-spacing:-0.297792px;}
.ls1e{letter-spacing:-0.266112px;}
.ls23{letter-spacing:-0.253440px;}
.ls37{letter-spacing:-0.247104px;}
.ls10{letter-spacing:-0.234432px;}
.ls38{letter-spacing:-0.228096px;}
.ls12{letter-spacing:-0.221760px;}
.ls1a{letter-spacing:-0.215424px;}
.ls11{letter-spacing:-0.209088px;}
.ls1b{letter-spacing:-0.202752px;}
.lsa{letter-spacing:-0.196416px;}
.ls9{letter-spacing:-0.190080px;}
.ls15{letter-spacing:-0.183744px;}
.ls1c{letter-spacing:-0.177408px;}
.ls18{letter-spacing:-0.171072px;}
.lsb{letter-spacing:-0.164736px;}
.ls13{letter-spacing:-0.158400px;}
.ls43{letter-spacing:-0.152064px;}
.ls19{letter-spacing:-0.145728px;}
.ls30{letter-spacing:-0.139392px;}
.ls7{letter-spacing:-0.133056px;}
.ls42{letter-spacing:-0.126720px;}
.ls1d{letter-spacing:-0.120384px;}
.ls16{letter-spacing:-0.101376px;}
.ls22{letter-spacing:-0.095040px;}
.ls2e{letter-spacing:-0.076032px;}
.ls1f{letter-spacing:-0.069696px;}
.ls2d{letter-spacing:-0.063360px;}
.ls17{letter-spacing:-0.050688px;}
.ls8{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.096048px;}
.ls34{letter-spacing:0.112752px;}
.ls2c{letter-spacing:0.114768px;}
.ls2b{letter-spacing:0.115200px;}
.ls31{letter-spacing:0.116928px;}
.ls2a{letter-spacing:0.120960px;}
.ls2f{letter-spacing:0.121104px;}
.ls32{letter-spacing:0.141984px;}
.ls4{letter-spacing:0.170928px;}
.ls2{letter-spacing:0.171360px;}
.ls3{letter-spacing:0.267264px;}
.lsf{letter-spacing:0.283968px;}
.lse{letter-spacing:0.317376px;}
.ls3b{letter-spacing:0.346752px;}
.lsc{letter-spacing:0.350784px;}
.ls41{letter-spacing:0.411120px;}
.lsd{letter-spacing:0.467712px;}
.ls3a{letter-spacing:0.882720px;}
.ls39{letter-spacing:0.884304px;}
.ls20{letter-spacing:1.013184px;}
.ls6{letter-spacing:1.107360px;}
.ls40{letter-spacing:1.693440px;}
.ls35{letter-spacing:2.590848px;}
.ls25{letter-spacing:3.622032px;}
.ls28{letter-spacing:4.040640px;}
.ls3c{letter-spacing:4.399776px;}
.ls21{letter-spacing:6.010560px;}
.ls3e{letter-spacing:6.995520px;}
.ls26{letter-spacing:8.533440px;}
.ls5{letter-spacing:9.676224px;}
.ls36{letter-spacing:9.995616px;}
.ls3d{letter-spacing:10.474560px;}
.ls27{letter-spacing:11.911680px;}
.ls3f{letter-spacing:42.551424px;}
.ls1{letter-spacing:1191.114144px;}
.ls0{letter-spacing:2005.099920px;}
.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;}
}
.ws3{word-spacing:-21.147264px;}
.ws1{word-spacing:-14.319360px;}
.ws5{word-spacing:-14.268672px;}
.wsf{word-spacing:-14.256000px;}
.ws1a{word-spacing:-14.224320px;}
.wsa{word-spacing:-14.217984px;}
.wsb{word-spacing:-14.198976px;}
.wse{word-spacing:-14.186304px;}
.ws11{word-spacing:-14.179968px;}
.ws13{word-spacing:-14.160960px;}
.ws2{word-spacing:-14.154624px;}
.ws19{word-spacing:-14.148288px;}
.ws18{word-spacing:-14.141952px;}
.ws0{word-spacing:-14.129280px;}
.wsc{word-spacing:-14.122944px;}
.ws12{word-spacing:-14.116608px;}
.ws7{word-spacing:-14.110272px;}
.ws4{word-spacing:-14.097600px;}
.ws17{word-spacing:-14.091264px;}
.ws8{word-spacing:-14.084928px;}
.ws9{word-spacing:-14.021568px;}
.wsd{word-spacing:-14.008896px;}
.ws15{word-spacing:-9.579744px;}
.ws10{word-spacing:-9.558864px;}
.ws14{word-spacing:-9.554688px;}
.ws16{word-spacing:-9.533808px;}
.ws6{word-spacing:0.000000px;}
._f{margin-left:-4.245120px;}
._9{margin-left:-3.231360px;}
._a{margin-left:-2.217600px;}
._0{margin-left:-1.013760px;}
._2{width:1.013760px;}
._3{width:2.914560px;}
._b{width:4.308480px;}
._c{width:5.829120px;}
._d{width:6.969600px;}
._e{width:8.173440px;}
._7{width:9.658656px;}
._6{width:11.088000px;}
._8{width:12.228480px;}
._13{width:15.333120px;}
._5{width:16.346880px;}
._4{width:17.360640px;}
._10{width:18.627840px;}
._14{width:19.768320px;}
._17{width:20.845440px;}
._11{width:22.809600px;}
._12{width:23.845680px;}
._20{width:28.195200px;}
._1b{width:29.589120px;}
._19{width:34.531200px;}
._1f{width:35.798400px;}
._1e{width:36.938880px;}
._1a{width:45.619200px;}
._21{width:46.632960px;}
._24{width:50.941440px;}
._1d{width:56.200320px;}
._1c{width:57.340800px;}
._16{width:60.572160px;}
._18{width:62.092800px;}
._15{width:85.227984px;}
._23{width:169.424640px;}
._22{width:184.757760px;}
._1{width:2478.560832px;}
.fc4{color:transparent;}
.fc3{color:rgb(192,0,0);}
.fc2{color:rgb(237,0,0);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:41.760000px;}
.fs0{font-size:63.360000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:4.560000px;}
.y72{bottom:4.680000px;}
.y88{bottom:4.800000px;}
.y83{bottom:4.980000px;}
.y85{bottom:5.040000px;}
.y75{bottom:5.100000px;}
.y78{bottom:5.160000px;}
.y9d{bottom:5.220000px;}
.y6e{bottom:5.280000px;}
.y95{bottom:5.700000px;}
.y8a{bottom:6.000000px;}
.y70{bottom:6.120000px;}
.y9a{bottom:6.240000px;}
.y73{bottom:19.440000px;}
.y76{bottom:19.860000px;}
.y87{bottom:24.240000px;}
.y94{bottom:24.780000px;}
.y98{bottom:25.200000px;}
.y8c{bottom:43.500000px;}
.y97{bottom:44.280000px;}
.y2{bottom:58.320000px;}
.y92{bottom:105.120000px;}
.y6c{bottom:105.480000px;}
.yc1{bottom:122.040000px;}
.y91{bottom:124.560000px;}
.y6b{bottom:124.920000px;}
.yc0{bottom:141.120000px;}
.y90{bottom:143.640000px;}
.y6a{bottom:144.000000px;}
.y34{bottom:146.520000px;}
.ybf{bottom:160.200000px;}
.y8f{bottom:163.080000px;}
.y69{bottom:163.440000px;}
.y33{bottom:165.600000px;}
.y8b{bottom:172.500000px;}
.ybe{bottom:179.640000px;}
.y68{bottom:182.520000px;}
.y32{bottom:185.040000px;}
.y8d{bottom:192.000000px;}
.ybd{bottom:198.720000px;}
.y67{bottom:201.600000px;}
.y31{bottom:204.120000px;}
.y89{bottom:210.000000px;}
.ybc{bottom:218.160000px;}
.y66{bottom:221.040000px;}
.y30{bottom:223.560000px;}
.y86{bottom:231.000000px;}
.ybb{bottom:237.240000px;}
.y65{bottom:240.120000px;}
.y2f{bottom:242.640000px;}
.yba{bottom:256.320000px;}
.y64{bottom:259.560000px;}
.y2e{bottom:261.720000px;}
.y84{bottom:270.000000px;}
.yb9{bottom:275.760000px;}
.y63{bottom:278.640000px;}
.y2d{bottom:281.160000px;}
.y82{bottom:289.500000px;}
.yb8{bottom:294.840000px;}
.y62{bottom:297.720000px;}
.y2c{bottom:300.240000px;}
.y81{bottom:314.280000px;}
.y61{bottom:317.160000px;}
.y2b{bottom:319.680000px;}
.yb7{bottom:333.360000px;}
.y80{bottom:333.720000px;}
.y60{bottom:336.240000px;}
.y2a{bottom:338.760000px;}
.yb6{bottom:352.440000px;}
.y7f{bottom:352.800000px;}
.y5f{bottom:355.680000px;}
.y29{bottom:357.840000px;}
.y7e{bottom:371.880000px;}
.y5e{bottom:374.760000px;}
.y28{bottom:377.280000px;}
.yb5{bottom:390.960000px;}
.y7d{bottom:391.320000px;}
.y5d{bottom:394.200000px;}
.y27{bottom:396.360000px;}
.y7c{bottom:410.400000px;}
.y5c{bottom:413.280000px;}
.y26{bottom:415.800000px;}
.yb4{bottom:429.480000px;}
.y7b{bottom:429.840000px;}
.y5b{bottom:432.360000px;}
.y25{bottom:434.880000px;}
.yb3{bottom:448.560000px;}
.y7a{bottom:448.920000px;}
.y5a{bottom:451.800000px;}
.y24{bottom:453.960000px;}
.y79{bottom:468.000000px;}
.y59{bottom:470.880000px;}
.y23{bottom:473.400000px;}
.y77{bottom:483.000000px;}
.yb2{bottom:487.080000px;}
.y58{bottom:490.320000px;}
.y22{bottom:492.480000px;}
.y74{bottom:502.500000px;}
.yb1{bottom:506.520000px;}
.y57{bottom:509.400000px;}
.y21{bottom:511.920000px;}
.y71{bottom:522.000000px;}
.yb0{bottom:525.600000px;}
.y56{bottom:528.480000px;}
.y20{bottom:531.000000px;}
.y6f{bottom:540.000000px;}
.yaf{bottom:544.680000px;}
.y55{bottom:547.920000px;}
.y1f{bottom:550.080000px;}
.y6d{bottom:561.000000px;}
.yae{bottom:564.120000px;}
.y54{bottom:567.000000px;}
.y1e{bottom:569.520000px;}
.yad{bottom:583.200000px;}
.y53{bottom:586.440000px;}
.y1d{bottom:588.600000px;}
.yac{bottom:602.640000px;}
.y52{bottom:605.520000px;}
.y1c{bottom:608.040000px;}
.yab{bottom:621.720000px;}
.y51{bottom:624.600000px;}
.y1b{bottom:627.120000px;}
.yaa{bottom:640.800000px;}
.y50{bottom:644.040000px;}
.y1a{bottom:646.200000px;}
.ya9{bottom:660.240000px;}
.y4f{bottom:663.120000px;}
.y19{bottom:665.640000px;}
.ya8{bottom:679.320000px;}
.y4e{bottom:682.560000px;}
.y18{bottom:684.720000px;}
.ya7{bottom:698.760000px;}
.y4d{bottom:701.640000px;}
.y17{bottom:704.160000px;}
.ya6{bottom:717.840000px;}
.y4c{bottom:720.720000px;}
.y16{bottom:723.240000px;}
.ya5{bottom:736.920000px;}
.y4b{bottom:740.160000px;}
.y15{bottom:742.320000px;}
.ya4{bottom:756.360000px;}
.y4a{bottom:759.240000px;}
.y14{bottom:761.760000px;}
.ya3{bottom:775.440000px;}
.y49{bottom:778.680000px;}
.y13{bottom:780.840000px;}
.ya2{bottom:794.880000px;}
.y48{bottom:797.760000px;}
.y12{bottom:800.280000px;}
.ya1{bottom:813.960000px;}
.y47{bottom:816.840000px;}
.y11{bottom:819.360000px;}
.ya0{bottom:833.400000px;}
.y46{bottom:836.280000px;}
.y10{bottom:838.800000px;}
.y9f{bottom:852.480000px;}
.y45{bottom:855.360000px;}
.yf{bottom:857.880000px;}
.y9e{bottom:867.000000px;}
.y44{bottom:874.800000px;}
.ye{bottom:876.960000px;}
.y9c{bottom:886.500000px;}
.y43{bottom:893.880000px;}
.yd{bottom:896.400000px;}
.y9b{bottom:906.000000px;}
.y42{bottom:912.960000px;}
.yc{bottom:915.480000px;}
.y99{bottom:924.000000px;}
.y41{bottom:932.400000px;}
.yb{bottom:934.920000px;}
.y96{bottom:945.000000px;}
.y40{bottom:951.480000px;}
.ya{bottom:954.000000px;}
.y93{bottom:964.500000px;}
.y3f{bottom:970.920000px;}
.y9{bottom:974.160000px;}
.y3e{bottom:990.000000px;}
.y8{bottom:999.720000px;}
.y3d{bottom:1009.440000px;}
.y7{bottom:1024.920000px;}
.y3c{bottom:1028.520000px;}
.y3b{bottom:1047.600000px;}
.y6{bottom:1049.760000px;}
.y3a{bottom:1067.040000px;}
.y5{bottom:1068.840000px;}
.y39{bottom:1086.120000px;}
.y4{bottom:1087.920000px;}
.y3{bottom:1103.040000px;}
.y38{bottom:1105.560000px;}
.y37{bottom:1124.640000px;}
.y36{bottom:1143.720000px;}
.y35{bottom:1163.160000px;}
.y1{bottom:1193.760000px;}
.h7{height:19.500000px;}
.h6{height:21.000000px;}
.hc{height:28.934297px;}
.ha{height:39.000000px;}
.hd{height:40.500000px;}
.h9{height:42.229688px;}
.h5{height:43.312500px;}
.h3{height:44.055000px;}
.h2{height:46.746563px;}
.h8{height:50.534297px;}
.hb{height:58.500000px;}
.he{height:60.000000px;}
.h4{height:61.987500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.000000px;}
.w5{width:70.500000px;}
.w4{width:76.500000px;}
.w3{width:78.000000px;}
.w11{width:87.000000px;}
.wf{width:96.000000px;}
.w10{width:124.500000px;}
.wa{width:133.500000px;}
.wc{width:139.500000px;}
.wb{width:142.500000px;}
.w9{width:144.000000px;}
.w8{width:171.000000px;}
.wd{width:208.500000px;}
.we{width:210.000000px;}
.w2{width:235.500000px;}
.w7{width:724.500000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x16{left:7.920000px;}
.xc{left:9.239856px;}
.x1{left:62.009748px;}
.xb{left:84.959856px;}
.x5{left:89.128404px;}
.xa{left:98.564580px;}
.x4{left:106.184700px;}
.x7{left:107.836668px;}
.x6{left:121.951188px;}
.x1e{left:133.184700px;}
.x3{left:181.064592px;}
.x14{left:253.500000px;}
.x19{left:291.000000px;}
.xd{left:318.000000px;}
.xe{left:394.500000px;}
.x15{left:396.000000px;}
.x1a{left:429.000000px;}
.x2{left:442.885680px;}
.xf{left:469.500000px;}
.x17{left:528.000000px;}
.x10{left:538.500000px;}
.x1d{left:552.000000px;}
.x11{left:607.500000px;}
.x8{left:618.240600px;}
.x1b{left:637.500000px;}
.x18{left:669.000000px;}
.x12{left:676.500000px;}
.x1c{left:732.000000px;}
.x13{left:745.500000px;}
.x9{left:804.284640px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls24{letter-spacing:-0.304128pt;}
.ls29{letter-spacing:-0.275968pt;}
.ls14{letter-spacing:-0.264704pt;}
.ls1e{letter-spacing:-0.236544pt;}
.ls23{letter-spacing:-0.225280pt;}
.ls37{letter-spacing:-0.219648pt;}
.ls10{letter-spacing:-0.208384pt;}
.ls38{letter-spacing:-0.202752pt;}
.ls12{letter-spacing:-0.197120pt;}
.ls1a{letter-spacing:-0.191488pt;}
.ls11{letter-spacing:-0.185856pt;}
.ls1b{letter-spacing:-0.180224pt;}
.lsa{letter-spacing:-0.174592pt;}
.ls9{letter-spacing:-0.168960pt;}
.ls15{letter-spacing:-0.163328pt;}
.ls1c{letter-spacing:-0.157696pt;}
.ls18{letter-spacing:-0.152064pt;}
.lsb{letter-spacing:-0.146432pt;}
.ls13{letter-spacing:-0.140800pt;}
.ls43{letter-spacing:-0.135168pt;}
.ls19{letter-spacing:-0.129536pt;}
.ls30{letter-spacing:-0.123904pt;}
.ls7{letter-spacing:-0.118272pt;}
.ls42{letter-spacing:-0.112640pt;}
.ls1d{letter-spacing:-0.107008pt;}
.ls16{letter-spacing:-0.090112pt;}
.ls22{letter-spacing:-0.084480pt;}
.ls2e{letter-spacing:-0.067584pt;}
.ls1f{letter-spacing:-0.061952pt;}
.ls2d{letter-spacing:-0.056320pt;}
.ls17{letter-spacing:-0.045056pt;}
.ls8{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.085376pt;}
.ls34{letter-spacing:0.100224pt;}
.ls2c{letter-spacing:0.102016pt;}
.ls2b{letter-spacing:0.102400pt;}
.ls31{letter-spacing:0.103936pt;}
.ls2a{letter-spacing:0.107520pt;}
.ls2f{letter-spacing:0.107648pt;}
.ls32{letter-spacing:0.126208pt;}
.ls4{letter-spacing:0.151936pt;}
.ls2{letter-spacing:0.152320pt;}
.ls3{letter-spacing:0.237568pt;}
.lsf{letter-spacing:0.252416pt;}
.lse{letter-spacing:0.282112pt;}
.ls3b{letter-spacing:0.308224pt;}
.lsc{letter-spacing:0.311808pt;}
.ls41{letter-spacing:0.365440pt;}
.lsd{letter-spacing:0.415744pt;}
.ls3a{letter-spacing:0.784640pt;}
.ls39{letter-spacing:0.786048pt;}
.ls20{letter-spacing:0.900608pt;}
.ls6{letter-spacing:0.984320pt;}
.ls40{letter-spacing:1.505280pt;}
.ls35{letter-spacing:2.302976pt;}
.ls25{letter-spacing:3.219584pt;}
.ls28{letter-spacing:3.591680pt;}
.ls3c{letter-spacing:3.910912pt;}
.ls21{letter-spacing:5.342720pt;}
.ls3e{letter-spacing:6.218240pt;}
.ls26{letter-spacing:7.585280pt;}
.ls5{letter-spacing:8.601088pt;}
.ls36{letter-spacing:8.884992pt;}
.ls3d{letter-spacing:9.310720pt;}
.ls27{letter-spacing:10.588160pt;}
.ls3f{letter-spacing:37.823488pt;}
.ls1{letter-spacing:1058.768128pt;}
.ls0{letter-spacing:1782.311040pt;}
.ws3{word-spacing:-18.797568pt;}
.ws1{word-spacing:-12.728320pt;}
.ws5{word-spacing:-12.683264pt;}
.wsf{word-spacing:-12.672000pt;}
.ws1a{word-spacing:-12.643840pt;}
.wsa{word-spacing:-12.638208pt;}
.wsb{word-spacing:-12.621312pt;}
.wse{word-spacing:-12.610048pt;}
.ws11{word-spacing:-12.604416pt;}
.ws13{word-spacing:-12.587520pt;}
.ws2{word-spacing:-12.581888pt;}
.ws19{word-spacing:-12.576256pt;}
.ws18{word-spacing:-12.570624pt;}
.ws0{word-spacing:-12.559360pt;}
.wsc{word-spacing:-12.553728pt;}
.ws12{word-spacing:-12.548096pt;}
.ws7{word-spacing:-12.542464pt;}
.ws4{word-spacing:-12.531200pt;}
.ws17{word-spacing:-12.525568pt;}
.ws8{word-spacing:-12.519936pt;}
.ws9{word-spacing:-12.463616pt;}
.wsd{word-spacing:-12.452352pt;}
.ws15{word-spacing:-8.515328pt;}
.ws10{word-spacing:-8.496768pt;}
.ws14{word-spacing:-8.493056pt;}
.ws16{word-spacing:-8.474496pt;}
.ws6{word-spacing:0.000000pt;}
._f{margin-left:-3.773440pt;}
._9{margin-left:-2.872320pt;}
._a{margin-left:-1.971200pt;}
._0{margin-left:-0.901120pt;}
._2{width:0.901120pt;}
._3{width:2.590720pt;}
._b{width:3.829760pt;}
._c{width:5.181440pt;}
._d{width:6.195200pt;}
._e{width:7.265280pt;}
._7{width:8.585472pt;}
._6{width:9.856000pt;}
._8{width:10.869760pt;}
._13{width:13.629440pt;}
._5{width:14.530560pt;}
._4{width:15.431680pt;}
._10{width:16.558080pt;}
._14{width:17.571840pt;}
._17{width:18.529280pt;}
._11{width:20.275200pt;}
._12{width:21.196160pt;}
._20{width:25.062400pt;}
._1b{width:26.301440pt;}
._19{width:30.694400pt;}
._1f{width:31.820800pt;}
._1e{width:32.834560pt;}
._1a{width:40.550400pt;}
._21{width:41.451520pt;}
._24{width:45.281280pt;}
._1d{width:49.955840pt;}
._1c{width:50.969600pt;}
._16{width:53.841920pt;}
._18{width:55.193600pt;}
._15{width:75.758208pt;}
._23{width:150.599680pt;}
._22{width:164.229120pt;}
._1{width:2203.165184pt;}
.fs2{font-size:37.120000pt;}
.fs0{font-size:56.320000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:4.053333pt;}
.y72{bottom:4.160000pt;}
.y88{bottom:4.266667pt;}
.y83{bottom:4.426667pt;}
.y85{bottom:4.480000pt;}
.y75{bottom:4.533333pt;}
.y78{bottom:4.586667pt;}
.y9d{bottom:4.640000pt;}
.y6e{bottom:4.693333pt;}
.y95{bottom:5.066667pt;}
.y8a{bottom:5.333333pt;}
.y70{bottom:5.440000pt;}
.y9a{bottom:5.546667pt;}
.y73{bottom:17.280000pt;}
.y76{bottom:17.653333pt;}
.y87{bottom:21.546667pt;}
.y94{bottom:22.026667pt;}
.y98{bottom:22.400000pt;}
.y8c{bottom:38.666667pt;}
.y97{bottom:39.360000pt;}
.y2{bottom:51.840000pt;}
.y92{bottom:93.440000pt;}
.y6c{bottom:93.760000pt;}
.yc1{bottom:108.480000pt;}
.y91{bottom:110.720000pt;}
.y6b{bottom:111.040000pt;}
.yc0{bottom:125.440000pt;}
.y90{bottom:127.680000pt;}
.y6a{bottom:128.000000pt;}
.y34{bottom:130.240000pt;}
.ybf{bottom:142.400000pt;}
.y8f{bottom:144.960000pt;}
.y69{bottom:145.280000pt;}
.y33{bottom:147.200000pt;}
.y8b{bottom:153.333333pt;}
.ybe{bottom:159.680000pt;}
.y68{bottom:162.240000pt;}
.y32{bottom:164.480000pt;}
.y8d{bottom:170.666667pt;}
.ybd{bottom:176.640000pt;}
.y67{bottom:179.200000pt;}
.y31{bottom:181.440000pt;}
.y89{bottom:186.666667pt;}
.ybc{bottom:193.920000pt;}
.y66{bottom:196.480000pt;}
.y30{bottom:198.720000pt;}
.y86{bottom:205.333333pt;}
.ybb{bottom:210.880000pt;}
.y65{bottom:213.440000pt;}
.y2f{bottom:215.680000pt;}
.yba{bottom:227.840000pt;}
.y64{bottom:230.720000pt;}
.y2e{bottom:232.640000pt;}
.y84{bottom:240.000000pt;}
.yb9{bottom:245.120000pt;}
.y63{bottom:247.680000pt;}
.y2d{bottom:249.920000pt;}
.y82{bottom:257.333333pt;}
.yb8{bottom:262.080000pt;}
.y62{bottom:264.640000pt;}
.y2c{bottom:266.880000pt;}
.y81{bottom:279.360000pt;}
.y61{bottom:281.920000pt;}
.y2b{bottom:284.160000pt;}
.yb7{bottom:296.320000pt;}
.y80{bottom:296.640000pt;}
.y60{bottom:298.880000pt;}
.y2a{bottom:301.120000pt;}
.yb6{bottom:313.280000pt;}
.y7f{bottom:313.600000pt;}
.y5f{bottom:316.160000pt;}
.y29{bottom:318.080000pt;}
.y7e{bottom:330.560000pt;}
.y5e{bottom:333.120000pt;}
.y28{bottom:335.360000pt;}
.yb5{bottom:347.520000pt;}
.y7d{bottom:347.840000pt;}
.y5d{bottom:350.400000pt;}
.y27{bottom:352.320000pt;}
.y7c{bottom:364.800000pt;}
.y5c{bottom:367.360000pt;}
.y26{bottom:369.600000pt;}
.yb4{bottom:381.760000pt;}
.y7b{bottom:382.080000pt;}
.y5b{bottom:384.320000pt;}
.y25{bottom:386.560000pt;}
.yb3{bottom:398.720000pt;}
.y7a{bottom:399.040000pt;}
.y5a{bottom:401.600000pt;}
.y24{bottom:403.520000pt;}
.y79{bottom:416.000000pt;}
.y59{bottom:418.560000pt;}
.y23{bottom:420.800000pt;}
.y77{bottom:429.333333pt;}
.yb2{bottom:432.960000pt;}
.y58{bottom:435.840000pt;}
.y22{bottom:437.760000pt;}
.y74{bottom:446.666667pt;}
.yb1{bottom:450.240000pt;}
.y57{bottom:452.800000pt;}
.y21{bottom:455.040000pt;}
.y71{bottom:464.000000pt;}
.yb0{bottom:467.200000pt;}
.y56{bottom:469.760000pt;}
.y20{bottom:472.000000pt;}
.y6f{bottom:480.000000pt;}
.yaf{bottom:484.160000pt;}
.y55{bottom:487.040000pt;}
.y1f{bottom:488.960000pt;}
.y6d{bottom:498.666667pt;}
.yae{bottom:501.440000pt;}
.y54{bottom:504.000000pt;}
.y1e{bottom:506.240000pt;}
.yad{bottom:518.400000pt;}
.y53{bottom:521.280000pt;}
.y1d{bottom:523.200000pt;}
.yac{bottom:535.680000pt;}
.y52{bottom:538.240000pt;}
.y1c{bottom:540.480000pt;}
.yab{bottom:552.640000pt;}
.y51{bottom:555.200000pt;}
.y1b{bottom:557.440000pt;}
.yaa{bottom:569.600000pt;}
.y50{bottom:572.480000pt;}
.y1a{bottom:574.400000pt;}
.ya9{bottom:586.880000pt;}
.y4f{bottom:589.440000pt;}
.y19{bottom:591.680000pt;}
.ya8{bottom:603.840000pt;}
.y4e{bottom:606.720000pt;}
.y18{bottom:608.640000pt;}
.ya7{bottom:621.120000pt;}
.y4d{bottom:623.680000pt;}
.y17{bottom:625.920000pt;}
.ya6{bottom:638.080000pt;}
.y4c{bottom:640.640000pt;}
.y16{bottom:642.880000pt;}
.ya5{bottom:655.040000pt;}
.y4b{bottom:657.920000pt;}
.y15{bottom:659.840000pt;}
.ya4{bottom:672.320000pt;}
.y4a{bottom:674.880000pt;}
.y14{bottom:677.120000pt;}
.ya3{bottom:689.280000pt;}
.y49{bottom:692.160000pt;}
.y13{bottom:694.080000pt;}
.ya2{bottom:706.560000pt;}
.y48{bottom:709.120000pt;}
.y12{bottom:711.360000pt;}
.ya1{bottom:723.520000pt;}
.y47{bottom:726.080000pt;}
.y11{bottom:728.320000pt;}
.ya0{bottom:740.800000pt;}
.y46{bottom:743.360000pt;}
.y10{bottom:745.600000pt;}
.y9f{bottom:757.760000pt;}
.y45{bottom:760.320000pt;}
.yf{bottom:762.560000pt;}
.y9e{bottom:770.666667pt;}
.y44{bottom:777.600000pt;}
.ye{bottom:779.520000pt;}
.y9c{bottom:788.000000pt;}
.y43{bottom:794.560000pt;}
.yd{bottom:796.800000pt;}
.y9b{bottom:805.333333pt;}
.y42{bottom:811.520000pt;}
.yc{bottom:813.760000pt;}
.y99{bottom:821.333333pt;}
.y41{bottom:828.800000pt;}
.yb{bottom:831.040000pt;}
.y96{bottom:840.000000pt;}
.y40{bottom:845.760000pt;}
.ya{bottom:848.000000pt;}
.y93{bottom:857.333333pt;}
.y3f{bottom:863.040000pt;}
.y9{bottom:865.920000pt;}
.y3e{bottom:880.000000pt;}
.y8{bottom:888.640000pt;}
.y3d{bottom:897.280000pt;}
.y7{bottom:911.040000pt;}
.y3c{bottom:914.240000pt;}
.y3b{bottom:931.200000pt;}
.y6{bottom:933.120000pt;}
.y3a{bottom:948.480000pt;}
.y5{bottom:950.080000pt;}
.y39{bottom:965.440000pt;}
.y4{bottom:967.040000pt;}
.y3{bottom:980.480000pt;}
.y38{bottom:982.720000pt;}
.y37{bottom:999.680000pt;}
.y36{bottom:1016.640000pt;}
.y35{bottom:1033.920000pt;}
.y1{bottom:1061.120000pt;}
.h7{height:17.333333pt;}
.h6{height:18.666667pt;}
.hc{height:25.719375pt;}
.ha{height:34.666667pt;}
.hd{height:36.000000pt;}
.h9{height:37.537500pt;}
.h5{height:38.500000pt;}
.h3{height:39.160000pt;}
.h2{height:41.552500pt;}
.h8{height:44.919375pt;}
.hb{height:52.000000pt;}
.he{height:53.333333pt;}
.h4{height:55.100000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.000000pt;}
.w5{width:62.666667pt;}
.w4{width:68.000000pt;}
.w3{width:69.333333pt;}
.w11{width:77.333333pt;}
.wf{width:85.333333pt;}
.w10{width:110.666667pt;}
.wa{width:118.666667pt;}
.wc{width:124.000000pt;}
.wb{width:126.666667pt;}
.w9{width:128.000000pt;}
.w8{width:152.000000pt;}
.wd{width:185.333333pt;}
.we{width:186.666667pt;}
.w2{width:209.333333pt;}
.w7{width:644.000000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x16{left:7.040000pt;}
.xc{left:8.213205pt;}
.x1{left:55.119776pt;}
.xb{left:75.519872pt;}
.x5{left:79.225248pt;}
.xa{left:87.612960pt;}
.x4{left:94.386400pt;}
.x7{left:95.854816pt;}
.x6{left:108.401056pt;}
.x1e{left:118.386400pt;}
.x3{left:160.946304pt;}
.x14{left:225.333333pt;}
.x19{left:258.666667pt;}
.xd{left:282.666667pt;}
.xe{left:350.666667pt;}
.x15{left:352.000000pt;}
.x1a{left:381.333333pt;}
.x2{left:393.676160pt;}
.xf{left:417.333333pt;}
.x17{left:469.333333pt;}
.x10{left:478.666667pt;}
.x1d{left:490.666667pt;}
.x11{left:540.000000pt;}
.x8{left:549.547200pt;}
.x1b{left:566.666667pt;}
.x18{left:594.666667pt;}
.x12{left:601.333333pt;}
.x1c{left:650.666667pt;}
.x13{left:662.666667pt;}
.x9{left:714.919680pt;}
}




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