
    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_47e3a0b7c8e29378bd9fe9a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_5b21bc20cc585025732f6bfd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_b5f631cf523e3ca68f6b65c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_6aeea3ed565c8e024fbd929e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960000;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_13f1b00be4a8c0490de43408.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_ae1f3f18b88192b3eb3e6f84.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.223000;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_1d3c2ba4e04ddc7bac4f0268.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.522000;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_0f06d75f7ef8c09b5f5a438d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.071777;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;}
.ff9{font-family:sans-serif;visibility:hidden;}
.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:-74.490000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:66.159308px;}
.v2{vertical-align:89.370000px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.216011px;}
.ls3{letter-spacing:2.987138px;}
.ls1{letter-spacing:317.723714px;}
.ls2{letter-spacing:317.729714px;}
.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;}
}
.ws9{word-spacing:-47.543171px;}
.ws0{word-spacing:-39.633181px;}
.wsf{word-spacing:-24.690930px;}
.ws5{word-spacing:-3.078335px;}
.wsa{word-spacing:-1.881205px;}
.ws6{word-spacing:-1.710186px;}
.ws7{word-spacing:-0.684074px;}
.wse{word-spacing:-0.171019px;}
.wsc{word-spacing:-0.142565px;}
.wsd{word-spacing:-0.082490px;}
.ws2{word-spacing:-0.020687px;}
.ws3{word-spacing:-0.019555px;}
.ws4{word-spacing:-0.018964px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:39.490616px;}
.ws8{word-spacing:47.372152px;}
.ws11{word-spacing:84.483188px;}
.ws10{word-spacing:439.517127px;}
._15{margin-left:-2165.019538px;}
._16{margin-left:-2070.135922px;}
._14{margin-left:-28.876936px;}
._11{margin-left:-20.527020px;}
._17{margin-left:-19.330009px;}
._8{margin-left:-17.107848px;}
._5{margin-left:-13.315800px;}
._7{margin-left:-11.405232px;}
._a{margin-left:-8.867754px;}
._4{margin-left:-7.239662px;}
._c{margin-left:-5.911836px;}
._0{margin-left:-4.752238px;}
._1{margin-left:-3.132157px;}
._2{margin-left:-1.188059px;}
._3{width:1.188059px;}
._10{width:2.832783px;}
._9{width:4.752238px;}
._13{width:6.277764px;}
._d{width:7.389795px;}
._e{width:9.043993px;}
._b{width:11.505311px;}
._12{width:59.039667px;}
._f{width:69.451199px;}
._19{width:132.026359px;}
._1a{width:208.129636px;}
._18{width:701.166656px;}
._6{width:2524.921284px;}
.fc6{color:transparent;}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(0,135,0);}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(51,51,178);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs2{font-size:71.949597px;}
.fsa{font-size:82.490400px;}
.fsb{font-size:95.050800px;}
.fs0{font-size:108.005400px;}
.fs3{font-size:142.565400px;}
.fs7{font-size:143.688600px;}
.fs1{font-size:168.554427px;}
.fs9{font-size:171.018600px;}
.fs6{font-size:172.392600px;}
.fs8{font-size:205.270200px;}
.fs5{font-size:246.276600px;}
.fs4{font-size:295.591800px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.370500px;}
.y7e{bottom:34.448232px;}
.y6{bottom:67.911395px;}
.y3{bottom:69.357468px;}
.y5{bottom:72.972648px;}
.y2{bottom:101.759088px;}
.y4{bottom:102.864643px;}
.y82{bottom:219.269232px;}
.y95{bottom:305.181000px;}
.y94{bottom:356.737500px;}
.y81{bottom:375.046932px;}
.y80{bottom:409.370832px;}
.y93{bottom:412.777500px;}
.y7f{bottom:443.694732px;}
.y92{bottom:468.817500px;}
.y91{bottom:524.856000px;}
.y90{bottom:576.414000px;}
.y4b{bottom:591.531000px;}
.y7d{bottom:615.314232px;}
.y8f{bottom:627.970500px;}
.y4a{bottom:643.089000px;}
.y8e{bottom:684.010500px;}
.y49{bottom:694.645500px;}
.y8d{bottom:735.567000px;}
.y48{bottom:746.202000px;}
.y47{bottom:797.758500px;}
.y8c{bottom:822.238500px;}
.y46{bottom:849.315000px;}
.y45{bottom:900.871500px;}
.y8b{bottom:938.802000px;}
.y44{bottom:952.428000px;}
.y8a{bottom:990.358500px;}
.y43{bottom:1003.984500px;}
.y89{bottom:1041.915000px;}
.y42{bottom:1055.541000px;}
.y88{bottom:1093.471500px;}
.y41{bottom:1107.099000px;}
.y87{bottom:1145.028000px;}
.y40{bottom:1193.770500px;}
.y86{bottom:1196.584500px;}
.y85{bottom:1248.141000px;}
.y84{bottom:1299.697500px;}
.y3f{bottom:1336.635000px;}
.y83{bottom:1351.254000px;}
.y3e{bottom:1390.965000px;}
.y3d{bottom:1445.296500px;}
.y7c{bottom:1450.056000px;}
.y3c{bottom:1499.626500px;}
.y3b{bottom:1553.958000px;}
.y3a{bottom:1608.288000px;}
.y39{bottom:1662.619500px;}
.y38{bottom:1716.949500px;}
.y37{bottom:1771.281000px;}
.y36{bottom:1879.942500px;}
.y35{bottom:1934.272500px;}
.y34{bottom:1988.604000px;}
.y33{bottom:2042.934000px;}
.y32{bottom:2097.265500px;}
.y7b{bottom:2164.065000px;}
.y31{bottom:2205.927000px;}
.y7a{bottom:2215.621500px;}
.y30{bottom:2260.257000px;}
.y79{bottom:2267.178000px;}
.y2f{bottom:2314.588500px;}
.y78{bottom:2318.734500px;}
.y77{bottom:2370.291000px;}
.y76{bottom:2421.847500px;}
.y2e{bottom:2423.250000px;}
.y75{bottom:2473.404000px;}
.y2d{bottom:2477.580000px;}
.y2c{bottom:2531.911500px;}
.y74{bottom:2559.337500px;}
.y2b{bottom:2586.241500px;}
.y73{bottom:2675.901000px;}
.y2a{bottom:2694.529500px;}
.y72{bottom:2727.457500px;}
.y71{bottom:2779.014000px;}
.y29{bottom:2795.373000px;}
.y70{bottom:2830.570500px;}
.y28{bottom:2846.929500px;}
.y6f{bottom:2882.127000px;}
.y27{bottom:2898.486000px;}
.y6e{bottom:2933.683500px;}
.y26{bottom:2950.042500px;}
.y6d{bottom:2985.240000px;}
.y25{bottom:3001.600500px;}
.y24{bottom:3053.157000px;}
.y62{bottom:3062.934000px;}
.y23{bottom:3104.713500px;}
.y61{bottom:3108.220500px;}
.y60{bottom:3153.507000px;}
.y22{bottom:3156.270000px;}
.y5f{bottom:3198.793500px;}
.y21{bottom:3207.826500px;}
.y6c{bottom:3218.740500px;}
.y5e{bottom:3244.081500px;}
.y20{bottom:3259.383000px;}
.y6b{bottom:3264.028500px;}
.y5d{bottom:3288.994500px;}
.y6a{bottom:3309.315000px;}
.y1f{bottom:3310.939500px;}
.y5c{bottom:3331.957500px;}
.y69{bottom:3354.601500px;}
.y1e{bottom:3362.496000px;}
.y68{bottom:3399.888000px;}
.y1d{bottom:3414.052500px;}
.y5b{bottom:3422.532000px;}
.y67{bottom:3445.176000px;}
.y1c{bottom:3465.610500px;}
.y5a{bottom:3467.818500px;}
.y59{bottom:3513.106500px;}
.y66{bottom:3535.749000px;}
.y1b{bottom:3539.844000px;}
.y65{bottom:3581.037000px;}
.y58{bottom:3603.306000px;}
.y64{bottom:3626.323500px;}
.y57{bottom:3646.270500px;}
.y1a{bottom:3656.407500px;}
.y63{bottom:3671.236500px;}
.y56{bottom:3691.557000px;}
.y19{bottom:3707.964000px;}
.y55{bottom:3736.843500px;}
.y18{bottom:3759.520500px;}
.y54{bottom:3782.131500px;}
.y17{bottom:3811.077000px;}
.y53{bottom:3827.044500px;}
.y16{bottom:3862.633500px;}
.y52{bottom:3901.938000px;}
.y15{bottom:3914.191500px;}
.y51{bottom:3953.496000px;}
.y14{bottom:3965.748000px;}
.y50{bottom:4005.052500px;}
.y13{bottom:4017.304500px;}
.y4f{bottom:4056.609000px;}
.y12{bottom:4068.861000px;}
.y4e{bottom:4108.165500px;}
.y11{bottom:4120.417500px;}
.y4d{bottom:4159.722000px;}
.y10{bottom:4171.974000px;}
.y4c{bottom:4211.278500px;}
.yf{bottom:4223.530500px;}
.ye{bottom:4297.212000px;}
.y9{bottom:4375.320000px;}
.y8{bottom:4418.283000px;}
.y7{bottom:4461.247500px;}
.yd{bottom:4533.145500px;}
.yc{bottom:4578.109500px;}
.yb{bottom:4687.335000px;}
.ya{bottom:4780.137000px;}
.h5{height:52.135353px;}
.h3{height:78.261725px;}
.hd{height:79.038824px;}
.h6{height:105.640961px;}
.h9{height:106.473253px;}
.h4{height:122.136118px;}
.hb{height:126.724783px;}
.he{height:162.467670px;}
.ha{height:182.490961px;}
.h8{height:217.112917px;}
.h7{height:219.033524px;}
.hc{height:660.075000px;}
.h2{height:5055.220500px;}
.h0{height:5055.591000px;}
.h1{height:5055.750000px;}
.w2{width:1570.978500px;}
.w0{width:3575.905500px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:78.111905px;}
.x21{left:85.809750px;}
.xd{left:144.715500px;}
.xe{left:150.693000px;}
.x9{left:191.476500px;}
.x6{left:198.778500px;}
.x20{left:207.426635px;}
.x4{left:214.780500px;}
.x5{left:222.550500px;}
.xf{left:245.776500px;}
.x26{left:269.250008px;}
.x10{left:293.317500px;}
.x11{left:340.860000px;}
.x23{left:561.063750px;}
.xc{left:578.268000px;}
.x1f{left:640.527369px;}
.x1e{left:664.513747px;}
.x22{left:676.079885px;}
.xb{left:878.331000px;}
.x25{left:1023.116250px;}
.xa{left:1062.865500px;}
.x24{left:1138.132385px;}
.x2{left:1335.653279px;}
.x12{left:1860.310500px;}
.x13{left:1866.288000px;}
.x1d{left:1876.749000px;}
.x14{left:1905.919500px;}
.x18{left:1937.571000px;}
.x27{left:1940.857500px;}
.x15{left:1945.552500px;}
.x16{left:1985.184000px;}
.x17{left:2056.467000px;}
.x28{left:2340.530729px;}
.x3{left:2349.457967px;}
.x29{left:2354.810782px;}
.x2a{left:2593.937539px;}
.x19{left:2667.427500px;}
.x1a{left:2707.060500px;}
.x7{left:2733.778500px;}
.x1b{left:2746.692000px;}
.x8{left:2755.537500px;}
.x1c{left:2786.323500px;}
@media print{
.v3{vertical-align:-66.213333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:58.808274pt;}
.v2{vertical-align:79.440000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.192010pt;}
.ls3{letter-spacing:2.655234pt;}
.ls1{letter-spacing:282.421079pt;}
.ls2{letter-spacing:282.426413pt;}
.ws9{word-spacing:-42.260596pt;}
.ws0{word-spacing:-35.229494pt;}
.wsf{word-spacing:-21.947494pt;}
.ws5{word-spacing:-2.736298pt;}
.wsa{word-spacing:-1.672182pt;}
.ws6{word-spacing:-1.520165pt;}
.ws7{word-spacing:-0.608066pt;}
.wse{word-spacing:-0.152017pt;}
.wsc{word-spacing:-0.126725pt;}
.wsd{word-spacing:-0.073325pt;}
.ws2{word-spacing:-0.018389pt;}
.ws3{word-spacing:-0.017382pt;}
.ws4{word-spacing:-0.016857pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:35.102770pt;}
.ws8{word-spacing:42.108580pt;}
.ws11{word-spacing:75.096167pt;}
.ws10{word-spacing:390.681890pt;}
._15{margin-left:-1924.461811pt;}
._16{margin-left:-1840.120819pt;}
._14{margin-left:-25.668388pt;}
._11{margin-left:-18.246240pt;}
._17{margin-left:-17.182231pt;}
._8{margin-left:-15.206976pt;}
._5{margin-left:-11.836266pt;}
._7{margin-left:-10.137984pt;}
._a{margin-left:-7.882448pt;}
._4{margin-left:-6.435255pt;}
._c{margin-left:-5.254965pt;}
._0{margin-left:-4.224211pt;}
._1{margin-left:-2.784139pt;}
._2{margin-left:-1.056053pt;}
._3{width:1.056053pt;}
._10{width:2.518029pt;}
._9{width:4.224211pt;}
._13{width:5.580235pt;}
._d{width:6.568707pt;}
._e{width:8.039105pt;}
._b{width:10.226943pt;}
._12{width:52.479704pt;}
._f{width:61.734399pt;}
._19{width:117.356764pt;}
._1a{width:185.004121pt;}
._18{width:623.259249pt;}
._6{width:2244.374474pt;}
.fs2{font-size:63.955198pt;}
.fsa{font-size:73.324800pt;}
.fsb{font-size:84.489600pt;}
.fs0{font-size:96.004800pt;}
.fs3{font-size:126.724800pt;}
.fs7{font-size:127.723200pt;}
.fs1{font-size:149.826158pt;}
.fs9{font-size:152.016533pt;}
.fs6{font-size:153.237867pt;}
.fs8{font-size:182.462400pt;}
.fs5{font-size:218.912533pt;}
.fs4{font-size:262.748267pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.329333pt;}
.y7e{bottom:30.620650pt;}
.y6{bottom:60.365685pt;}
.y3{bottom:61.651082pt;}
.y5{bottom:64.864576pt;}
.y2{bottom:90.452522pt;}
.y4{bottom:91.435238pt;}
.y82{bottom:194.905984pt;}
.y95{bottom:271.272000pt;}
.y94{bottom:317.100000pt;}
.y81{bottom:333.375050pt;}
.y80{bottom:363.885184pt;}
.y93{bottom:366.913333pt;}
.y7f{bottom:394.395317pt;}
.y92{bottom:416.726667pt;}
.y91{bottom:466.538667pt;}
.y90{bottom:512.368000pt;}
.y4b{bottom:525.805333pt;}
.y7d{bottom:546.945984pt;}
.y8f{bottom:558.196000pt;}
.y4a{bottom:571.634667pt;}
.y8e{bottom:608.009333pt;}
.y49{bottom:617.462667pt;}
.y8d{bottom:653.837333pt;}
.y48{bottom:663.290667pt;}
.y47{bottom:709.118667pt;}
.y8c{bottom:730.878667pt;}
.y46{bottom:754.946667pt;}
.y45{bottom:800.774667pt;}
.y8b{bottom:834.490667pt;}
.y44{bottom:846.602667pt;}
.y8a{bottom:880.318667pt;}
.y43{bottom:892.430667pt;}
.y89{bottom:926.146667pt;}
.y42{bottom:938.258667pt;}
.y88{bottom:971.974667pt;}
.y41{bottom:984.088000pt;}
.y87{bottom:1017.802667pt;}
.y40{bottom:1061.129333pt;}
.y86{bottom:1063.630667pt;}
.y85{bottom:1109.458667pt;}
.y84{bottom:1155.286667pt;}
.y3f{bottom:1188.120000pt;}
.y83{bottom:1201.114667pt;}
.y3e{bottom:1236.413333pt;}
.y3d{bottom:1284.708000pt;}
.y7c{bottom:1288.938667pt;}
.y3c{bottom:1333.001333pt;}
.y3b{bottom:1381.296000pt;}
.y3a{bottom:1429.589333pt;}
.y39{bottom:1477.884000pt;}
.y38{bottom:1526.177333pt;}
.y37{bottom:1574.472000pt;}
.y36{bottom:1671.060000pt;}
.y35{bottom:1719.353333pt;}
.y34{bottom:1767.648000pt;}
.y33{bottom:1815.941333pt;}
.y32{bottom:1864.236000pt;}
.y7b{bottom:1923.613333pt;}
.y31{bottom:1960.824000pt;}
.y7a{bottom:1969.441333pt;}
.y30{bottom:2009.117333pt;}
.y79{bottom:2015.269333pt;}
.y2f{bottom:2057.412000pt;}
.y78{bottom:2061.097333pt;}
.y77{bottom:2106.925333pt;}
.y76{bottom:2152.753333pt;}
.y2e{bottom:2154.000000pt;}
.y75{bottom:2198.581333pt;}
.y2d{bottom:2202.293333pt;}
.y2c{bottom:2250.588000pt;}
.y74{bottom:2274.966667pt;}
.y2b{bottom:2298.881333pt;}
.y73{bottom:2378.578667pt;}
.y2a{bottom:2395.137333pt;}
.y72{bottom:2424.406667pt;}
.y71{bottom:2470.234667pt;}
.y29{bottom:2484.776000pt;}
.y70{bottom:2516.062667pt;}
.y28{bottom:2530.604000pt;}
.y6f{bottom:2561.890667pt;}
.y27{bottom:2576.432000pt;}
.y6e{bottom:2607.718667pt;}
.y26{bottom:2622.260000pt;}
.y6d{bottom:2653.546667pt;}
.y25{bottom:2668.089333pt;}
.y24{bottom:2713.917333pt;}
.y62{bottom:2722.608000pt;}
.y23{bottom:2759.745333pt;}
.y61{bottom:2762.862667pt;}
.y60{bottom:2803.117333pt;}
.y22{bottom:2805.573333pt;}
.y5f{bottom:2843.372000pt;}
.y21{bottom:2851.401333pt;}
.y6c{bottom:2861.102667pt;}
.y5e{bottom:2883.628000pt;}
.y20{bottom:2897.229333pt;}
.y6b{bottom:2901.358667pt;}
.y5d{bottom:2923.550667pt;}
.y6a{bottom:2941.613333pt;}
.y1f{bottom:2943.057333pt;}
.y5c{bottom:2961.740000pt;}
.y69{bottom:2981.868000pt;}
.y1e{bottom:2988.885333pt;}
.y68{bottom:3022.122667pt;}
.y1d{bottom:3034.713333pt;}
.y5b{bottom:3042.250667pt;}
.y67{bottom:3062.378667pt;}
.y1c{bottom:3080.542667pt;}
.y5a{bottom:3082.505333pt;}
.y59{bottom:3122.761333pt;}
.y66{bottom:3142.888000pt;}
.y1b{bottom:3146.528000pt;}
.y65{bottom:3183.144000pt;}
.y58{bottom:3202.938667pt;}
.y64{bottom:3223.398667pt;}
.y57{bottom:3241.129333pt;}
.y1a{bottom:3250.140000pt;}
.y63{bottom:3263.321333pt;}
.y56{bottom:3281.384000pt;}
.y19{bottom:3295.968000pt;}
.y55{bottom:3321.638667pt;}
.y18{bottom:3341.796000pt;}
.y54{bottom:3361.894667pt;}
.y17{bottom:3387.624000pt;}
.y53{bottom:3401.817333pt;}
.y16{bottom:3433.452000pt;}
.y52{bottom:3468.389333pt;}
.y15{bottom:3479.281333pt;}
.y51{bottom:3514.218667pt;}
.y14{bottom:3525.109333pt;}
.y50{bottom:3560.046667pt;}
.y13{bottom:3570.937333pt;}
.y4f{bottom:3605.874667pt;}
.y12{bottom:3616.765333pt;}
.y4e{bottom:3651.702667pt;}
.y11{bottom:3662.593333pt;}
.y4d{bottom:3697.530667pt;}
.y10{bottom:3708.421333pt;}
.y4c{bottom:3743.358667pt;}
.yf{bottom:3754.249333pt;}
.ye{bottom:3819.744000pt;}
.y9{bottom:3889.173333pt;}
.y8{bottom:3927.362667pt;}
.y7{bottom:3965.553333pt;}
.yd{bottom:4029.462667pt;}
.yc{bottom:4069.430667pt;}
.yb{bottom:4166.520000pt;}
.ya{bottom:4249.010667pt;}
.h5{height:46.342536pt;}
.h3{height:69.565978pt;}
.hd{height:70.256733pt;}
.h6{height:93.903077pt;}
.h9{height:94.642891pt;}
.h4{height:108.565438pt;}
.hb{height:112.644251pt;}
.he{height:144.415707pt;}
.ha{height:162.214187pt;}
.h8{height:192.989259pt;}
.h7{height:194.696466pt;}
.hc{height:586.733333pt;}
.h2{height:4493.529333pt;}
.h0{height:4493.858667pt;}
.h1{height:4494.000000pt;}
.w2{width:1396.425333pt;}
.w0{width:3178.582667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:69.432805pt;}
.x21{left:76.275333pt;}
.xd{left:128.636000pt;}
.xe{left:133.949333pt;}
.x9{left:170.201333pt;}
.x6{left:176.692000pt;}
.x20{left:184.379231pt;}
.x4{left:190.916000pt;}
.x5{left:197.822667pt;}
.xf{left:218.468000pt;}
.x26{left:239.333340pt;}
.x10{left:260.726667pt;}
.x11{left:302.986667pt;}
.x23{left:498.723333pt;}
.xc{left:514.016000pt;}
.x1f{left:569.357661pt;}
.x1e{left:590.678886pt;}
.x22{left:600.959898pt;}
.xb{left:780.738667pt;}
.x25{left:909.436667pt;}
.xa{left:944.769333pt;}
.x24{left:1011.673231pt;}
.x2{left:1187.247359pt;}
.x12{left:1653.609333pt;}
.x13{left:1658.922667pt;}
.x1d{left:1668.221333pt;}
.x14{left:1694.150667pt;}
.x18{left:1722.285333pt;}
.x27{left:1725.206667pt;}
.x15{left:1729.380000pt;}
.x16{left:1764.608000pt;}
.x17{left:1827.970667pt;}
.x28{left:2080.471759pt;}
.x3{left:2088.407082pt;}
.x29{left:2093.165139pt;}
.x2a{left:2305.722257pt;}
.x19{left:2371.046667pt;}
.x1a{left:2406.276000pt;}
.x7{left:2430.025333pt;}
.x1b{left:2441.504000pt;}
.x8{left:2449.366667pt;}
.x1c{left:2476.732000pt;}
}




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