
    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_06136e34a524845df2ff06b7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.972168;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_22dbeaeb60c267634466a596.woff')format("woff");}.ff2{font-family:ff2;line-height:1.051270;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_e6edc0f6c482e65abf3f0d35.woff')format("woff");}.ff3{font-family:ff3;line-height:0.942383;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_2f50bb6315d02dc46861f88c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_75f5417591eb0d41b55a00f1.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752441;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_37dac9f82a24b055e8f74419.woff')format("woff");}.ff6{font-family:ff6;line-height:0.976074;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_565a4b4f177a6fdc82827003.woff')format("woff");}.ff7{font-family:ff7;line-height:0.972168;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_a7e4235b9900ed34dcb1f312.woff')format("woff");}.ff8{font-family:ff8;line-height:0.774902;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_f26fc4aae7c1425328493334.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976074;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_55f9eab62b5fa925eb586ffd.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_70dc7299e6189e87960d3098.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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_547267cea54013c5487705e0.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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:ffd;src:url('chunks/assets/font_03101c15a935370759dffb6b.woff')format("woff");}.ffd{font-family:ffd;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-12.480000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.576000px;}
.ls10{letter-spacing:-0.075000px;}
.lsc{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.750000px;}
.ls1{letter-spacing:0.900000px;}
.lsd{letter-spacing:1.842000px;}
.ls5{letter-spacing:38.850000px;}
.ls4{letter-spacing:39.000000px;}
.ls3{letter-spacing:53.850000px;}
.ls6{letter-spacing:54.000000px;}
.lsa{letter-spacing:94.187400px;}
.ls9{letter-spacing:94.278000px;}
.ls8{letter-spacing:94.337400px;}
.ls7{letter-spacing:94.428000px;}
.lsb{letter-spacing:269.925000px;}
.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;}
}
.ws1{word-spacing:-247.650000px;}
.ws2{word-spacing:-247.500000px;}
.wsa{word-spacing:-87.172800px;}
.ws5{word-spacing:-87.120000px;}
.wsb{word-spacing:-76.084800px;}
.ws7{word-spacing:-73.923300px;}
.ws6{word-spacing:-73.296000px;}
.ws3{word-spacing:-73.257900px;}
.ws8{word-spacing:-73.239300px;}
.ws4{word-spacing:-73.224000px;}
.wse{word-spacing:-48.849900px;}
.wsd{word-spacing:-48.816000px;}
.ws0{word-spacing:-35.403000px;}
.wsf{word-spacing:-23.769000px;}
.ws9{word-spacing:-0.247500px;}
.wsc{word-spacing:-0.216150px;}
.ws15{word-spacing:-0.072150px;}
.ws17{word-spacing:0.000000px;}
.ws11{word-spacing:254.952000px;}
.ws14{word-spacing:270.160350px;}
.ws12{word-spacing:341.928000px;}
.ws10{word-spacing:404.928000px;}
.ws16{word-spacing:431.928000px;}
.ws13{word-spacing:467.928000px;}
._11{margin-left:-21.943200px;}
._6{margin-left:-16.487700px;}
._9{margin-left:-15.477000px;}
._a{margin-left:-11.194650px;}
._13{margin-left:-8.100450px;}
._5{margin-left:-6.657750px;}
._7{margin-left:-5.157750px;}
._2{margin-left:-3.961500px;}
._3{margin-left:-2.773050px;}
._0{margin-left:-1.584600px;}
._1{width:1.980750px;}
._4{width:3.961500px;}
._c{width:5.100900px;}
._e{width:60.442500px;}
._10{width:62.157750px;}
._8{width:79.663200px;}
._18{width:279.037500px;}
._15{width:282.024000px;}
._19{width:315.037500px;}
._16{width:351.120000px;}
._14{width:432.000000px;}
._1a{width:441.120000px;}
._17{width:477.120000px;}
._d{width:595.762800px;}
._12{width:606.457350px;}
._f{width:710.707050px;}
._b{width:6801.059250px;}
.fc4{color:transparent;}
.fc3{color:rgb(99,37,35);}
.fc1{color:rgb(79,129,189);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:72.000000px;}
.fs17{font-size:72.150000px;}
.fs14{font-size:85.500000px;}
.fs16{font-size:85.650000px;}
.fs12{font-size:130.500000px;}
.fs13{font-size:130.650000px;}
.fs7{font-size:148.500000px;}
.fs6{font-size:148.650000px;}
.fsc{font-size:166.500000px;}
.fs3{font-size:180.000000px;}
.fs2{font-size:180.150000px;}
.fs8{font-size:198.000000px;}
.fs9{font-size:198.150000px;}
.fsf{font-size:216.000000px;}
.fs10{font-size:216.150000px;}
.fsb{font-size:247.500000px;}
.fsa{font-size:247.650000px;}
.fs4{font-size:274.500000px;}
.fse{font-size:297.150000px;}
.fsd{font-size:324.000000px;}
.fs5{font-size:324.150000px;}
.fs11{font-size:333.150000px;}
.fs1{font-size:360.000000px;}
.fs0{font-size:396.150000px;}
.y0{bottom:0.000000px;}
.y8{bottom:49.312500px;}
.y7{bottom:64.425000px;}
.y60{bottom:81.000000px;}
.y51{bottom:81.075000px;}
.y57{bottom:81.270000px;}
.y5d{bottom:81.450000px;}
.y4e{bottom:81.525000px;}
.y63{bottom:81.645000px;}
.y54{bottom:81.720000px;}
.y5a{bottom:81.900000px;}
.y14{bottom:125.287500px;}
.y2f{bottom:272.250000px;}
.y3b{bottom:294.525000px;}
.y2e{bottom:346.530000px;}
.y3a{bottom:372.195000px;}
.y2d{bottom:433.200000px;}
.y39{bottom:448.695000px;}
.y2c{bottom:519.825000px;}
.y38{bottom:525.225000px;}
.y37{bottom:601.770000px;}
.y2b{bottom:605.355000px;}
.y4c{bottom:632.445000px;}
.y36{bottom:679.395000px;}
.y35{bottom:755.925000px;}
.y2a{bottom:776.025000px;}
.y34{bottom:832.470000px;}
.y33{bottom:910.125000px;}
.y22{bottom:913.845000px;}
.y32{bottom:986.625000px;}
.y21{bottom:988.125000px;}
.y3d{bottom:999.705000px;}
.y31{bottom:1063.170000px;}
.y20{bottom:1074.795000px;}
.y30{bottom:1139.700000px;}
.y62{bottom:1157.625000px;}
.y1f{bottom:1161.405000px;}
.y5f{bottom:1206.000000px;}
.y64{bottom:1242.645000px;}
.y1e{bottom:1248.075000px;}
.y5c{bottom:1253.250000px;}
.y61{bottom:1290.375000px;}
.y44{bottom:1296.855000px;}
.y4a{bottom:1297.155000px;}
.y59{bottom:1300.500000px;}
.y1d{bottom:1333.620000px;}
.y5e{bottom:1338.075000px;}
.y56{bottom:1348.875000px;}
.y43{bottom:1360.980000px;}
.y49{bottom:1361.325000px;}
.y5b{bottom:1385.775000px;}
.y53{bottom:1396.125000px;}
.y42{bottom:1426.275000px;}
.y48{bottom:1426.575000px;}
.y58{bottom:1433.520000px;}
.y50{bottom:1444.500000px;}
.y55{bottom:1481.220000px;}
.y41{bottom:1491.525000px;}
.y4d{bottom:1491.750000px;}
.y47{bottom:1491.855000px;}
.y52{bottom:1528.950000px;}
.y40{bottom:1555.695000px;}
.y46{bottom:1555.980000px;}
.y4f{bottom:1573.275000px;}
.y3f{bottom:1627.725000px;}
.y45{bottom:1628.025000px;}
.y3c{bottom:1654.125000px;}
.y3e{bottom:1661.775000px;}
.y29{bottom:1765.530000px;}
.y4b{bottom:1767.075000px;}
.y28{bottom:1925.070000px;}
.y13{bottom:2015.205000px;}
.y27{bottom:2075.850000px;}
.y12{bottom:2106.375000px;}
.y11{bottom:2197.530000px;}
.y26{bottom:2226.645000px;}
.y10{bottom:2271.795000px;}
.yf{bottom:2362.950000px;}
.y25{bottom:2377.455000px;}
.y24{bottom:2441.580000px;}
.ye{bottom:2452.980000px;}
.y23{bottom:2555.670000px;}
.yd{bottom:2604.855000px;}
.yb{bottom:2617.725000px;}
.yc{bottom:2664.525000px;}
.ya{bottom:2677.350000px;}
.y1b{bottom:2688.195000px;}
.y1a{bottom:2699.955000px;}
.y1c{bottom:2740.350000px;}
.y19{bottom:2774.250000px;}
.y18{bottom:2860.905000px;}
.y17{bottom:2947.545000px;}
.y16{bottom:3034.200000px;}
.y15{bottom:3119.730000px;}
.y9{bottom:3240.705000px;}
.y6{bottom:3241.425000px;}
.y5{bottom:3434.775000px;}
.y4{bottom:3488.805000px;}
.y3{bottom:3563.055000px;}
.y2{bottom:3707.130000px;}
.y1{bottom:3825.300000px;}
.h1a{height:70.664062px;}
.h1c{height:70.811279px;}
.h18{height:89.173828px;}
.h1b{height:89.330273px;}
.hc{height:127.313965px;}
.h3{height:137.575488px;}
.h7{height:147.702393px;}
.h6{height:147.851587px;}
.h8{height:151.207031px;}
.h9{height:151.321582px;}
.h10{height:165.164062px;}
.h11{height:165.278760px;}
.h19{height:176.625000px;}
.h17{height:177.750000px;}
.hb{height:189.250488px;}
.ha{height:189.365186px;}
.h15{height:214.839844px;}
.h14{height:214.989038px;}
.h16{height:221.167969px;}
.h13{height:221.321558px;}
.h4{height:227.171367px;}
.hf{height:227.215283px;}
.h5{height:247.860791px;}
.h12{height:254.742627px;}
.he{height:282.867188px;}
.hd{height:282.998145px;}
.h1{height:302.915479px;}
.h2{height:314.296875px;}
.h0{height:3996.000000px;}
.w3{width:136.125000px;}
.w4{width:138.375000px;}
.w2{width:284.625000px;}
.w1{width:6036.749910px;}
.w0{width:6036.750000px;}
.x0{left:0.000000px;}
.x2d{left:12.195000px;}
.xe{left:82.199910px;}
.x1f{left:89.999910px;}
.x25{left:109.687410px;}
.x26{left:120.412410px;}
.xf{left:138.037410px;}
.x21{left:146.924910px;}
.x20{left:150.674910px;}
.xc{left:215.549910px;}
.xd{left:246.194910px;}
.x8{left:253.454910px;}
.x6{left:277.049910px;}
.x1b{left:712.154910px;}
.x27{left:771.194910px;}
.x28{left:781.919910px;}
.x29{left:825.194910px;}
.xb{left:1001.324910px;}
.xa{left:1049.279910px;}
.x22{left:1461.599910px;}
.x23{left:1485.974910px;}
.x1{left:1556.699910px;}
.x10{left:1575.944910px;}
.x19{left:1910.954910px;}
.x11{left:1917.674910px;}
.x1a{left:1956.269910px;}
.x13{left:1971.674910px;}
.x12{left:2008.349910px;}
.x4{left:2118.794910px;}
.x2{left:2157.599910px;}
.x18{left:2188.949910px;}
.x3{left:2221.604910px;}
.x5{left:2639.924910px;}
.x2c{left:2687.625000px;}
.x2e{left:2971.125000px;}
.x38{left:3031.349910px;}
.x39{left:3046.349910px;}
.x9{left:3065.504910px;}
.x37{left:3077.849910px;}
.x3a{left:3086.849910px;}
.x2f{left:3106.125000px;}
.x30{left:3172.169910px;}
.x31{left:3241.125000px;}
.x32{left:3307.199910px;}
.x33{left:3376.125000px;}
.x24{left:3404.879910px;}
.x34{left:3442.199910px;}
.x2b{left:3480.179910px;}
.x35{left:3513.375000px;}
.x36{left:3579.449910px;}
.x16{left:4756.724910px;}
.x1d{left:4772.474910px;}
.x17{left:4810.724910px;}
.x1e{left:4826.504910px;}
.x2a{left:5009.279910px;}
.x1c{left:5014.079910px;}
.x7{left:5113.049910px;}
.x15{left:5814.554910px;}
.x14{left:5912.474910px;}
@media print{
.v1{vertical-align:-11.093333pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.512000pt;}
.ls10{letter-spacing:-0.066667pt;}
.lsc{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.666667pt;}
.ls1{letter-spacing:0.800000pt;}
.lsd{letter-spacing:1.637333pt;}
.ls5{letter-spacing:34.533333pt;}
.ls4{letter-spacing:34.666667pt;}
.ls3{letter-spacing:47.866667pt;}
.ls6{letter-spacing:48.000000pt;}
.lsa{letter-spacing:83.722133pt;}
.ls9{letter-spacing:83.802667pt;}
.ls8{letter-spacing:83.855467pt;}
.ls7{letter-spacing:83.936000pt;}
.lsb{letter-spacing:239.933333pt;}
.ws1{word-spacing:-220.133333pt;}
.ws2{word-spacing:-220.000000pt;}
.wsa{word-spacing:-77.486933pt;}
.ws5{word-spacing:-77.440000pt;}
.wsb{word-spacing:-67.630933pt;}
.ws7{word-spacing:-65.709600pt;}
.ws6{word-spacing:-65.152000pt;}
.ws3{word-spacing:-65.118133pt;}
.ws8{word-spacing:-65.101600pt;}
.ws4{word-spacing:-65.088000pt;}
.wse{word-spacing:-43.422133pt;}
.wsd{word-spacing:-43.392000pt;}
.ws0{word-spacing:-31.469333pt;}
.wsf{word-spacing:-21.128000pt;}
.ws9{word-spacing:-0.220000pt;}
.wsc{word-spacing:-0.192133pt;}
.ws15{word-spacing:-0.064133pt;}
.ws17{word-spacing:0.000000pt;}
.ws11{word-spacing:226.624000pt;}
.ws14{word-spacing:240.142533pt;}
.ws12{word-spacing:303.936000pt;}
.ws10{word-spacing:359.936000pt;}
.ws16{word-spacing:383.936000pt;}
.ws13{word-spacing:415.936000pt;}
._11{margin-left:-19.505067pt;}
._6{margin-left:-14.655733pt;}
._9{margin-left:-13.757333pt;}
._a{margin-left:-9.950800pt;}
._13{margin-left:-7.200400pt;}
._5{margin-left:-5.918000pt;}
._7{margin-left:-4.584667pt;}
._2{margin-left:-3.521333pt;}
._3{margin-left:-2.464933pt;}
._0{margin-left:-1.408533pt;}
._1{width:1.760667pt;}
._4{width:3.521333pt;}
._c{width:4.534133pt;}
._e{width:53.726667pt;}
._10{width:55.251333pt;}
._8{width:70.811733pt;}
._18{width:248.033333pt;}
._15{width:250.688000pt;}
._19{width:280.033333pt;}
._16{width:312.106667pt;}
._14{width:384.000000pt;}
._1a{width:392.106667pt;}
._17{width:424.106667pt;}
._d{width:529.566933pt;}
._12{width:539.073200pt;}
._f{width:631.739600pt;}
._b{width:6045.386000pt;}
.fs15{font-size:64.000000pt;}
.fs17{font-size:64.133333pt;}
.fs14{font-size:76.000000pt;}
.fs16{font-size:76.133333pt;}
.fs12{font-size:116.000000pt;}
.fs13{font-size:116.133333pt;}
.fs7{font-size:132.000000pt;}
.fs6{font-size:132.133333pt;}
.fsc{font-size:148.000000pt;}
.fs3{font-size:160.000000pt;}
.fs2{font-size:160.133333pt;}
.fs8{font-size:176.000000pt;}
.fs9{font-size:176.133333pt;}
.fsf{font-size:192.000000pt;}
.fs10{font-size:192.133333pt;}
.fsb{font-size:220.000000pt;}
.fsa{font-size:220.133333pt;}
.fs4{font-size:244.000000pt;}
.fse{font-size:264.133333pt;}
.fsd{font-size:288.000000pt;}
.fs5{font-size:288.133333pt;}
.fs11{font-size:296.133333pt;}
.fs1{font-size:320.000000pt;}
.fs0{font-size:352.133333pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:43.833333pt;}
.y7{bottom:57.266667pt;}
.y60{bottom:72.000000pt;}
.y51{bottom:72.066667pt;}
.y57{bottom:72.240000pt;}
.y5d{bottom:72.400000pt;}
.y4e{bottom:72.466667pt;}
.y63{bottom:72.573333pt;}
.y54{bottom:72.640000pt;}
.y5a{bottom:72.800000pt;}
.y14{bottom:111.366667pt;}
.y2f{bottom:242.000000pt;}
.y3b{bottom:261.800000pt;}
.y2e{bottom:308.026667pt;}
.y3a{bottom:330.840000pt;}
.y2d{bottom:385.066667pt;}
.y39{bottom:398.840000pt;}
.y2c{bottom:462.066667pt;}
.y38{bottom:466.866667pt;}
.y37{bottom:534.906667pt;}
.y2b{bottom:538.093333pt;}
.y4c{bottom:562.173333pt;}
.y36{bottom:603.906667pt;}
.y35{bottom:671.933333pt;}
.y2a{bottom:689.800000pt;}
.y34{bottom:739.973333pt;}
.y33{bottom:809.000000pt;}
.y22{bottom:812.306667pt;}
.y32{bottom:877.000000pt;}
.y21{bottom:878.333333pt;}
.y3d{bottom:888.626667pt;}
.y31{bottom:945.040000pt;}
.y20{bottom:955.373333pt;}
.y30{bottom:1013.066667pt;}
.y62{bottom:1029.000000pt;}
.y1f{bottom:1032.360000pt;}
.y5f{bottom:1072.000000pt;}
.y64{bottom:1104.573333pt;}
.y1e{bottom:1109.400000pt;}
.y5c{bottom:1114.000000pt;}
.y61{bottom:1147.000000pt;}
.y44{bottom:1152.760000pt;}
.y4a{bottom:1153.026667pt;}
.y59{bottom:1156.000000pt;}
.y1d{bottom:1185.440000pt;}
.y5e{bottom:1189.400000pt;}
.y56{bottom:1199.000000pt;}
.y43{bottom:1209.760000pt;}
.y49{bottom:1210.066667pt;}
.y5b{bottom:1231.800000pt;}
.y53{bottom:1241.000000pt;}
.y42{bottom:1267.800000pt;}
.y48{bottom:1268.066667pt;}
.y58{bottom:1274.240000pt;}
.y50{bottom:1284.000000pt;}
.y55{bottom:1316.640000pt;}
.y41{bottom:1325.800000pt;}
.y4d{bottom:1326.000000pt;}
.y47{bottom:1326.093333pt;}
.y52{bottom:1359.066667pt;}
.y40{bottom:1382.840000pt;}
.y46{bottom:1383.093333pt;}
.y4f{bottom:1398.466667pt;}
.y3f{bottom:1446.866667pt;}
.y45{bottom:1447.133333pt;}
.y3c{bottom:1470.333333pt;}
.y3e{bottom:1477.133333pt;}
.y29{bottom:1569.360000pt;}
.y4b{bottom:1570.733333pt;}
.y28{bottom:1711.173333pt;}
.y13{bottom:1791.293333pt;}
.y27{bottom:1845.200000pt;}
.y12{bottom:1872.333333pt;}
.y11{bottom:1953.360000pt;}
.y26{bottom:1979.240000pt;}
.y10{bottom:2019.373333pt;}
.yf{bottom:2100.400000pt;}
.y25{bottom:2113.293333pt;}
.y24{bottom:2170.293333pt;}
.ye{bottom:2180.426667pt;}
.y23{bottom:2271.706667pt;}
.yd{bottom:2315.426667pt;}
.yb{bottom:2326.866667pt;}
.yc{bottom:2368.466667pt;}
.ya{bottom:2379.866667pt;}
.y1b{bottom:2389.506667pt;}
.y1a{bottom:2399.960000pt;}
.y1c{bottom:2435.866667pt;}
.y19{bottom:2466.000000pt;}
.y18{bottom:2543.026667pt;}
.y17{bottom:2620.040000pt;}
.y16{bottom:2697.066667pt;}
.y15{bottom:2773.093333pt;}
.y9{bottom:2880.626667pt;}
.y6{bottom:2881.266667pt;}
.y5{bottom:3053.133333pt;}
.y4{bottom:3101.160000pt;}
.y3{bottom:3167.160000pt;}
.y2{bottom:3295.226667pt;}
.y1{bottom:3400.266667pt;}
.h1a{height:62.812500pt;}
.h1c{height:62.943359pt;}
.h18{height:79.265625pt;}
.h1b{height:79.404688pt;}
.hc{height:113.167969pt;}
.h3{height:122.289323pt;}
.h7{height:131.291016pt;}
.h6{height:131.423633pt;}
.h8{height:134.406250pt;}
.h9{height:134.508073pt;}
.h10{height:146.812500pt;}
.h11{height:146.914453pt;}
.h19{height:157.000000pt;}
.h17{height:158.000000pt;}
.hb{height:168.222656pt;}
.ha{height:168.324609pt;}
.h15{height:190.968750pt;}
.h14{height:191.101367pt;}
.h16{height:196.593750pt;}
.h13{height:196.730273pt;}
.h4{height:201.930104pt;}
.hf{height:201.969141pt;}
.h5{height:220.320703pt;}
.h12{height:226.437891pt;}
.he{height:251.437500pt;}
.hd{height:251.553906pt;}
.h1{height:269.258203pt;}
.h2{height:279.375000pt;}
.h0{height:3552.000000pt;}
.w3{width:121.000000pt;}
.w4{width:123.000000pt;}
.w2{width:253.000000pt;}
.w1{width:5365.999920pt;}
.w0{width:5366.000000pt;}
.x0{left:0.000000pt;}
.x2d{left:10.840000pt;}
.xe{left:73.066587pt;}
.x1f{left:79.999920pt;}
.x25{left:97.499920pt;}
.x26{left:107.033253pt;}
.xf{left:122.699920pt;}
.x21{left:130.599920pt;}
.x20{left:133.933253pt;}
.xc{left:191.599920pt;}
.xd{left:218.839920pt;}
.x8{left:225.293253pt;}
.x6{left:246.266587pt;}
.x1b{left:633.026587pt;}
.x27{left:685.506587pt;}
.x28{left:695.039920pt;}
.x29{left:733.506587pt;}
.xb{left:890.066587pt;}
.xa{left:932.693253pt;}
.x22{left:1299.199920pt;}
.x23{left:1320.866587pt;}
.x1{left:1383.733253pt;}
.x10{left:1400.839920pt;}
.x19{left:1698.626587pt;}
.x11{left:1704.599920pt;}
.x1a{left:1738.906587pt;}
.x13{left:1752.599920pt;}
.x12{left:1785.199920pt;}
.x4{left:1883.373253pt;}
.x2{left:1917.866587pt;}
.x18{left:1945.733253pt;}
.x3{left:1974.759920pt;}
.x5{left:2346.599920pt;}
.x2c{left:2389.000000pt;}
.x2e{left:2641.000000pt;}
.x38{left:2694.533253pt;}
.x39{left:2707.866587pt;}
.x9{left:2724.893253pt;}
.x37{left:2735.866587pt;}
.x3a{left:2743.866587pt;}
.x2f{left:2761.000000pt;}
.x30{left:2819.706587pt;}
.x31{left:2881.000000pt;}
.x32{left:2939.733253pt;}
.x33{left:3001.000000pt;}
.x24{left:3026.559920pt;}
.x34{left:3059.733253pt;}
.x2b{left:3093.493253pt;}
.x35{left:3123.000000pt;}
.x36{left:3181.733253pt;}
.x16{left:4228.199920pt;}
.x1d{left:4242.199920pt;}
.x17{left:4276.199920pt;}
.x1e{left:4290.226587pt;}
.x2a{left:4452.693253pt;}
.x1c{left:4456.959920pt;}
.x7{left:4544.933253pt;}
.x15{left:5168.493253pt;}
.x14{left:5255.533253pt;}
}




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