
    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_7b1115908408c039d61a57b6.woff')format("woff");}.ff1{font-family:ff1;line-height:0.926000;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_725f200309d7f7768b7995d3.woff')format("woff");}.ff2{font-family:ff2;line-height:0.712000;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_78ece2d33736633ebbb7d48f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.940000;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_0a4767597c2ce31c2f923cde.woff')format("woff");}.ff4{font-family:ff4;line-height:0.781000;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_033a3f4bfa7296caac5b6bde.woff')format("woff");}.ff5{font-family:ff5;line-height:0.964000;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_bc6cf02a032128536300be26.woff')format("woff");}.ff6{font-family:ff6;line-height:0.723000;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_cde42069a47201cbf962b959.woff')format("woff");}.ff7{font-family:ff7;line-height:0.691895;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_3ae94f2031feb745f7b9e9f0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.945312;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_df06a6a32367e3dfddbeb79e.woff')format("woff");}.ff9{font-family:ff9;line-height:1.138184;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_e60168eca30e19303730ceb9.woff')format("woff");}.ffa{font-family:ffa;line-height:0.737305;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_a31a9fe1961076e73667477b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d05ca9ab77e55f528f8f7083.woff')format("woff");}.ffc{font-family:ffc;line-height:0.919000;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_dfd0acc5f81ea05b666dbe47.woff')format("woff");}.ffd{font-family:ffd;line-height:1.027000;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:ffe;src:url('chunks/assets/font_286fc556f08630254dd39273.woff')format("woff");}.ffe{font-family:ffe;line-height:0.954000;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:fff;src:url('chunks/assets/font_8898352e2e224ee053f07b3d.woff')format("woff");}.fff{font-family:fff;line-height:0.546000;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:ff10;src:url('chunks/assets/font_3c0d4f5f2e27d263b68b2359.woff')format("woff");}.ff10{font-family:ff10;line-height:0.806000;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:ff11;src:url('chunks/assets/font_fbe5544ba24695a4f1960f35.woff')format("woff");}.ff11{font-family:ff11;line-height:0.707031;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:ff12;src:url('chunks/assets/font_b987b5ee9302cb4dac5d832f.woff')format("woff");}.ff12{font-family:ff12;line-height:1.004000;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.205800px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.192600px;}
.v3{vertical-align:11.122200px;}
.v1{vertical-align:21.205800px;}
.v4{vertical-align:26.568120px;}
.v6{vertical-align:33.210150px;}
.v5{vertical-align:66.420300px;}
.ls1{letter-spacing:-6.593400px;}
.ls2{letter-spacing:-5.742000px;}
.ls23{letter-spacing:-2.079000px;}
.lsf{letter-spacing:-1.599429px;}
.ls15{letter-spacing:-1.537435px;}
.ls1a{letter-spacing:-1.500239px;}
.ls14{letter-spacing:-1.487841px;}
.lsd{letter-spacing:-1.447963px;}
.ls1d{letter-spacing:-1.376253px;}
.ls1e{letter-spacing:-1.289462px;}
.ls1c{letter-spacing:-1.227469px;}
.ls19{letter-spacing:-1.115880px;}
.ls22{letter-spacing:-1.089000px;}
.ls1b{letter-spacing:-1.053887px;}
.ls16{letter-spacing:-0.743920px;}
.ls11{letter-spacing:-0.681927px;}
.ls10{letter-spacing:-0.632332px;}
.ls13{letter-spacing:-0.570339px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.000495px;}
.ls18{letter-spacing:1.115880px;}
.lse{letter-spacing:1.129145px;}
.lsc{letter-spacing:1.447963px;}
.ls12{letter-spacing:1.487841px;}
.ls1f{letter-spacing:1.537435px;}
.ls17{letter-spacing:1.797807px;}
.ls4{letter-spacing:13.627043px;}
.lsa{letter-spacing:15.115123px;}
.lsb{letter-spacing:15.166547px;}
.ls7{letter-spacing:16.911926px;}
.ls6{letter-spacing:16.912988px;}
.ls8{letter-spacing:17.719501px;}
.ls5{letter-spacing:17.720564px;}
.ls20{letter-spacing:56.113200px;}
.ls3{letter-spacing:67.656600px;}
.ls9{letter-spacing:277.949055px;}
.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;}
}
.ws2{word-spacing:-74.071800px;}
.wsf{word-spacing:-61.993360px;}
.ws3d{word-spacing:-37.842750px;}
.ws41{word-spacing:-34.719300px;}
.ws40{word-spacing:-24.175800px;}
.ws3e{word-spacing:-23.086800px;}
.ws5{word-spacing:-19.562400px;}
.ws1{word-spacing:-18.176400px;}
.ws0{word-spacing:-16.513200px;}
.ws1a{word-spacing:-1.859801px;}
.ws38{word-spacing:-1.599429px;}
.ws3b{word-spacing:-1.549834px;}
.ws9{word-spacing:-1.195565px;}
.ws3f{word-spacing:-0.108900px;}
.ws4{word-spacing:-0.079200px;}
.ws2d{word-spacing:-0.061993px;}
.ws3{word-spacing:0.000000px;}
.ws12{word-spacing:0.508346px;}
.wsc{word-spacing:0.570339px;}
.ws10{word-spacing:0.619934px;}
.ws20{word-spacing:1.053887px;}
.ws32{word-spacing:1.165475px;}
.ws35{word-spacing:1.227469px;}
.ws7{word-spacing:1.381542px;}
.ws1b{word-spacing:1.425847px;}
.ws17{word-spacing:1.475442px;}
.ws23{word-spacing:1.537435px;}
.ws34{word-spacing:12.376343px;}
.ws11{word-spacing:13.159201px;}
.ws18{word-spacing:13.565050px;}
.wse{word-spacing:13.565156px;}
.ws1e{word-spacing:15.311491px;}
.ws39{word-spacing:15.684334px;}
.ws26{word-spacing:16.056114px;}
.ws16{word-spacing:16.572367px;}
.wsd{word-spacing:16.668944px;}
.ws2b{word-spacing:16.797238px;}
.ws2a{word-spacing:17.179860px;}
.ws13{word-spacing:17.250151px;}
.ws22{word-spacing:17.279520px;}
.ws1c{word-spacing:17.388605px;}
.ws29{word-spacing:17.429501px;}
.ws21{word-spacing:17.543086px;}
.ws3a{word-spacing:17.812973px;}
.ws2e{word-spacing:17.877850px;}
.ws2c{word-spacing:17.924538px;}
.ws30{word-spacing:18.111082px;}
.ws31{word-spacing:18.224014px;}
.ws15{word-spacing:18.242267px;}
.ws28{word-spacing:18.287708px;}
.wsb{word-spacing:18.336655px;}
.ws37{word-spacing:18.363186px;}
.ws25{word-spacing:18.415127px;}
.ws14{word-spacing:18.451903px;}
.ws6{word-spacing:18.474939px;}
.ws1d{word-spacing:18.938581px;}
.ws1f{word-spacing:19.055238px;}
.ws27{word-spacing:19.057003px;}
.ws19{word-spacing:19.537789px;}
.ws3c{word-spacing:19.599594px;}
.wsa{word-spacing:19.842666px;}
.ws8{word-spacing:22.338475px;}
.ws24{word-spacing:35.103718px;}
.ws33{word-spacing:343.248945px;}
.ws36{word-spacing:432.590748px;}
.ws2f{word-spacing:479.575233px;}
._b{margin-left:-16.513200px;}
._3{margin-left:-9.890100px;}
._0{margin-left:-6.593400px;}
._1{margin-left:-5.078700px;}
._5{margin-left:-3.343725px;}
._6{margin-left:-2.138400px;}
._8{margin-left:-1.093950px;}
._7{width:1.428075px;}
._4{width:2.450250px;}
._c{width:5.100975px;}
._2{width:6.593400px;}
._9{width:16.510318px;}
._a{width:17.511074px;}
.fc4{color:rgb(181,23,0);}
.fc1{color:rgb(83,88,95);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.400000px;}
.fs9{font-size:61.993360px;}
.fs8{font-size:66.420300px;}
.fsb{font-size:71.775000px;}
.fs7{font-size:79.200000px;}
.fs0{font-size:89.100000px;}
.fsc{font-size:108.900000px;}
.fs5{font-size:118.800000px;}
.fs6{font-size:135.135000px;}
.fs3{font-size:136.125000px;}
.fs4{font-size:146.124000px;}
.fsd{font-size:163.350000px;}
.fsa{font-size:173.250000px;}
.fse{font-size:207.900000px;}
.fs2{font-size:287.100000px;}
.y0{bottom:0.000000px;}
.y26{bottom:10.771200px;}
.ye{bottom:11.088000px;}
.y23{bottom:21.289375px;}
.y2d{bottom:27.367650px;}
.y22{bottom:37.894450px;}
.y4{bottom:41.067300px;}
.y21{bottom:54.499525px;}
.y3{bottom:73.593750px;}
.y2c{bottom:78.366450px;}
.y2{bottom:95.517300px;}
.y1{bottom:124.875000px;}
.y20{bottom:144.166930px;}
.y3c{bottom:156.968250px;}
.y1f{bottom:160.772005px;}
.y12{bottom:194.867405px;}
.y3b{bottom:208.599150px;}
.y1e{bottom:250.439410px;}
.y3a{bottom:260.230200px;}
.y1d{bottom:267.044485px;}
.y7{bottom:280.154550px;}
.y39{bottom:312.659400px;}
.y6{bottom:334.315650px;}
.yc{bottom:338.932950px;}
.y33{bottom:346.707300px;}
.y38{bottom:348.642150px;}
.y1b{bottom:360.032905px;}
.y2b{bottom:361.095450px;}
.y1c{bottom:366.674935px;}
.y1a{bottom:376.637980px;}
.y32{bottom:384.372450px;}
.y37{bottom:401.071350px;}
.y5{bottom:404.527050px;}
.yb{bottom:404.804100px;}
.y11{bottom:410.733380px;}
.y31{bottom:420.355350px;}
.y25{bottom:434.379000px;}
.y36{bottom:437.054100px;}
.ya{bottom:464.472900px;}
.y16{bottom:466.305385px;}
.y15{bottom:482.910460px;}
.y28{bottom:501.016800px;}
.y9{bottom:524.141700px;}
.y27{bottom:543.091800px;}
.y30{bottom:547.180650px;}
.y35{bottom:551.286450px;}
.y2a{bottom:556.182750px;}
.y3d{bottom:565.562250px;}
.y34{bottom:565.789950px;}
.y19{bottom:572.577865px;}
.y14{bottom:580.880402px;}
.y2f{bottom:583.068150px;}
.y29{bottom:586.058250px;}
.y18{bottom:589.182940px;}
.y13{bottom:597.485477px;}
.y24{bottom:600.996600px;}
.y8{bottom:602.586900px;}
.y17{bottom:605.788015px;}
.y2e{bottom:618.955650px;}
.y10{bottom:639.883415px;}
.yf{bottom:662.106450px;}
.yd{bottom:701.396550px;}
.hf{height:35.932065px;}
.h8{height:39.055530px;}
.h3{height:43.926300px;}
.ha{height:48.939567px;}
.h10{height:56.548800px;}
.hb{height:56.847427px;}
.h13{height:57.850650px;}
.h9{height:61.459200px;}
.h2{height:65.132100px;}
.hc{height:83.415547px;}
.h14{height:84.506400px;}
.h12{height:86.842800px;}
.h16{height:87.773400px;}
.he{height:90.057577px;}
.h5{height:99.507375px;}
.h6{height:104.040288px;}
.h7{height:104.459355px;}
.hd{height:123.267727px;}
.h11{height:126.645750px;}
.h15{height:131.660100px;}
.h17{height:161.954100px;}
.h4{height:209.870100px;}
.h1{height:668.250000px;}
.h0{height:918.000000px;}
.w5{width:93.402165px;}
.w4{width:100.782555px;}
.w6{width:115.984890px;}
.w8{width:159.117300px;}
.w9{width:164.156700px;}
.w7{width:170.993700px;}
.w1{width:295.856550px;}
.w2{width:355.604400px;}
.w3{width:929.220900px;}
.w0{width:1188.000000px;}
.x0{left:0.000000px;}
.x4{left:6.843390px;}
.x1f{left:8.949900px;}
.x28{left:13.114950px;}
.x6{left:17.868930px;}
.x26{left:21.227850px;}
.x24{left:23.691150px;}
.x5{left:25.758090px;}
.x2{left:28.653840px;}
.x22{left:33.972600px;}
.x1{left:60.757380px;}
.x31{left:61.875000px;}
.x19{left:70.848674px;}
.x1d{left:72.141285px;}
.x32{left:88.481250px;}
.x30{left:99.797235px;}
.x3{left:122.359005px;}
.x1a{left:124.815168px;}
.x29{left:142.117185px;}
.xb{left:183.208973px;}
.xc{left:186.114861px;}
.x21{left:195.676950px;}
.x15{left:226.797295px;}
.x7{left:258.779100px;}
.xa{left:349.536829px;}
.x1c{left:378.457556px;}
.x11{left:391.326622px;}
.xf{left:410.422458px;}
.x8{left:418.724995px;}
.xd{left:420.800497px;}
.x10{left:428.272781px;}
.x14{left:433.254303px;}
.x16{left:441.141847px;}
.xe{left:456.501408px;}
.x1e{left:467.747550px;}
.x23{left:469.648500px;}
.x33{left:481.889850px;}
.x9{left:506.869782px;}
.x2f{left:523.875000px;}
.x2e{left:550.429650px;}
.x1b{left:551.703750px;}
.x2a{left:611.795850px;}
.x17{left:617.016690px;}
.x18{left:621.167959px;}
.x2c{left:640.108800px;}
.x13{left:646.075572px;}
.x12{left:675.964707px;}
.x27{left:708.185100px;}
.x20{left:724.615800px;}
.x2d{left:760.538550px;}
.x2b{left:797.329950px;}
.x25{left:954.561750px;}
@media print{
.v2{vertical-align:-18.849600pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.837867pt;}
.v3{vertical-align:9.886400pt;}
.v1{vertical-align:18.849600pt;}
.v4{vertical-align:23.616107pt;}
.v6{vertical-align:29.520133pt;}
.v5{vertical-align:59.040267pt;}
.ls1{letter-spacing:-5.860800pt;}
.ls2{letter-spacing:-5.104000pt;}
.ls23{letter-spacing:-1.848000pt;}
.lsf{letter-spacing:-1.421714pt;}
.ls15{letter-spacing:-1.366609pt;}
.ls1a{letter-spacing:-1.333546pt;}
.ls14{letter-spacing:-1.322525pt;}
.lsd{letter-spacing:-1.287078pt;}
.ls1d{letter-spacing:-1.223336pt;}
.ls1e{letter-spacing:-1.146188pt;}
.ls1c{letter-spacing:-1.091083pt;}
.ls19{letter-spacing:-0.991894pt;}
.ls22{letter-spacing:-0.968000pt;}
.ls1b{letter-spacing:-0.936789pt;}
.ls16{letter-spacing:-0.661263pt;}
.ls11{letter-spacing:-0.606157pt;}
.ls10{letter-spacing:-0.562073pt;}
.ls13{letter-spacing:-0.506968pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.000440pt;}
.ls18{letter-spacing:0.991894pt;}
.lse{letter-spacing:1.003685pt;}
.lsc{letter-spacing:1.287078pt;}
.ls12{letter-spacing:1.322525pt;}
.ls1f{letter-spacing:1.366609pt;}
.ls17{letter-spacing:1.598051pt;}
.ls4{letter-spacing:12.112927pt;}
.lsa{letter-spacing:13.435665pt;}
.lsb{letter-spacing:13.481375pt;}
.ls7{letter-spacing:15.032823pt;}
.ls6{letter-spacing:15.033768pt;}
.ls8{letter-spacing:15.750668pt;}
.ls5{letter-spacing:15.751613pt;}
.ls20{letter-spacing:49.878400pt;}
.ls3{letter-spacing:60.139200pt;}
.ls9{letter-spacing:247.065827pt;}
.ws2{word-spacing:-65.841600pt;}
.wsf{word-spacing:-55.105209pt;}
.ws3d{word-spacing:-33.638000pt;}
.ws41{word-spacing:-30.861600pt;}
.ws40{word-spacing:-21.489600pt;}
.ws3e{word-spacing:-20.521600pt;}
.ws5{word-spacing:-17.388800pt;}
.ws1{word-spacing:-16.156800pt;}
.ws0{word-spacing:-14.678400pt;}
.ws1a{word-spacing:-1.653156pt;}
.ws38{word-spacing:-1.421714pt;}
.ws3b{word-spacing:-1.377630pt;}
.ws9{word-spacing:-1.062725pt;}
.ws3f{word-spacing:-0.096800pt;}
.ws4{word-spacing:-0.070400pt;}
.ws2d{word-spacing:-0.055105pt;}
.ws3{word-spacing:0.000000pt;}
.ws12{word-spacing:0.451863pt;}
.wsc{word-spacing:0.506968pt;}
.ws10{word-spacing:0.551052pt;}
.ws20{word-spacing:0.936789pt;}
.ws32{word-spacing:1.035978pt;}
.ws35{word-spacing:1.091083pt;}
.ws7{word-spacing:1.228038pt;}
.ws1b{word-spacing:1.267420pt;}
.ws17{word-spacing:1.311504pt;}
.ws23{word-spacing:1.366609pt;}
.ws34{word-spacing:11.001194pt;}
.ws11{word-spacing:11.697068pt;}
.ws18{word-spacing:12.057822pt;}
.wse{word-spacing:12.057917pt;}
.ws1e{word-spacing:13.610215pt;}
.ws39{word-spacing:13.941630pt;}
.ws26{word-spacing:14.272101pt;}
.ws16{word-spacing:14.730993pt;}
.wsd{word-spacing:14.816840pt;}
.ws2b{word-spacing:14.930878pt;}
.ws2a{word-spacing:15.270986pt;}
.ws13{word-spacing:15.333467pt;}
.ws22{word-spacing:15.359573pt;}
.ws1c{word-spacing:15.456537pt;}
.ws29{word-spacing:15.492890pt;}
.ws21{word-spacing:15.593854pt;}
.ws3a{word-spacing:15.833753pt;}
.ws2e{word-spacing:15.891422pt;}
.ws2c{word-spacing:15.932923pt;}
.ws30{word-spacing:16.098739pt;}
.ws31{word-spacing:16.199123pt;}
.ws15{word-spacing:16.215349pt;}
.ws28{word-spacing:16.255741pt;}
.wsb{word-spacing:16.299249pt;}
.ws37{word-spacing:16.322832pt;}
.ws25{word-spacing:16.369002pt;}
.ws14{word-spacing:16.401692pt;}
.ws6{word-spacing:16.422168pt;}
.ws1d{word-spacing:16.834294pt;}
.ws1f{word-spacing:16.937989pt;}
.ws27{word-spacing:16.939558pt;}
.ws19{word-spacing:17.366924pt;}
.ws3c{word-spacing:17.421861pt;}
.wsa{word-spacing:17.637925pt;}
.ws8{word-spacing:19.856422pt;}
.ws24{word-spacing:31.203305pt;}
.ws33{word-spacing:305.110173pt;}
.ws36{word-spacing:384.525110pt;}
.ws2f{word-spacing:426.289096pt;}
._b{margin-left:-14.678400pt;}
._3{margin-left:-8.791200pt;}
._0{margin-left:-5.860800pt;}
._1{margin-left:-4.514400pt;}
._5{margin-left:-2.972200pt;}
._6{margin-left:-1.900800pt;}
._8{margin-left:-0.972400pt;}
._7{width:1.269400pt;}
._4{width:2.178000pt;}
._c{width:4.534200pt;}
._2{width:5.860800pt;}
._9{width:14.675838pt;}
._a{width:15.565399pt;}
.fs1{font-size:52.800000pt;}
.fs9{font-size:55.105209pt;}
.fs8{font-size:59.040267pt;}
.fsb{font-size:63.800000pt;}
.fs7{font-size:70.400000pt;}
.fs0{font-size:79.200000pt;}
.fsc{font-size:96.800000pt;}
.fs5{font-size:105.600000pt;}
.fs6{font-size:120.120000pt;}
.fs3{font-size:121.000000pt;}
.fs4{font-size:129.888000pt;}
.fsd{font-size:145.200000pt;}
.fsa{font-size:154.000000pt;}
.fse{font-size:184.800000pt;}
.fs2{font-size:255.200000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:9.574400pt;}
.ye{bottom:9.856000pt;}
.y23{bottom:18.923889pt;}
.y2d{bottom:24.326800pt;}
.y22{bottom:33.683955pt;}
.y4{bottom:36.504267pt;}
.y21{bottom:48.444022pt;}
.y3{bottom:65.416667pt;}
.y2c{bottom:69.659067pt;}
.y2{bottom:84.904267pt;}
.y1{bottom:111.000000pt;}
.y20{bottom:128.148382pt;}
.y3c{bottom:139.527333pt;}
.y1f{bottom:142.908449pt;}
.y12{bottom:173.215471pt;}
.y3b{bottom:185.421467pt;}
.y1e{bottom:222.612809pt;}
.y3a{bottom:231.315733pt;}
.y1d{bottom:237.372875pt;}
.y7{bottom:249.026267pt;}
.y39{bottom:277.919467pt;}
.y6{bottom:297.169467pt;}
.yc{bottom:301.273733pt;}
.y33{bottom:308.184267pt;}
.y38{bottom:309.904133pt;}
.y1b{bottom:320.029249pt;}
.y2b{bottom:320.973733pt;}
.y1c{bottom:325.933275pt;}
.y1a{bottom:334.789315pt;}
.y32{bottom:341.664400pt;}
.y37{bottom:356.507867pt;}
.y5{bottom:359.579600pt;}
.yb{bottom:359.825867pt;}
.y11{bottom:365.096337pt;}
.y31{bottom:373.649200pt;}
.y25{bottom:386.114667pt;}
.y36{bottom:388.492533pt;}
.ya{bottom:412.864800pt;}
.y16{bottom:414.493675pt;}
.y15{bottom:429.253742pt;}
.y28{bottom:445.348267pt;}
.y9{bottom:465.903733pt;}
.y27{bottom:482.748267pt;}
.y30{bottom:486.382800pt;}
.y35{bottom:490.032400pt;}
.y2a{bottom:494.384667pt;}
.y3d{bottom:502.722000pt;}
.y34{bottom:502.924400pt;}
.y19{bottom:508.958102pt;}
.y14{bottom:516.338135pt;}
.y2f{bottom:518.282800pt;}
.y29{bottom:520.940667pt;}
.y18{bottom:523.718169pt;}
.y13{bottom:531.098202pt;}
.y24{bottom:534.219200pt;}
.y8{bottom:535.632800pt;}
.y17{bottom:538.478235pt;}
.y2e{bottom:550.182800pt;}
.y10{bottom:568.785257pt;}
.yf{bottom:588.539067pt;}
.yd{bottom:623.463600pt;}
.hf{height:31.939613pt;}
.h8{height:34.716027pt;}
.h3{height:39.045600pt;}
.ha{height:43.501837pt;}
.h10{height:50.265600pt;}
.hb{height:50.531046pt;}
.h13{height:51.422800pt;}
.h9{height:54.630400pt;}
.h2{height:57.895200pt;}
.hc{height:74.147153pt;}
.h14{height:75.116800pt;}
.h12{height:77.193600pt;}
.h16{height:78.020800pt;}
.he{height:80.051180pt;}
.h5{height:88.451000pt;}
.h6{height:92.480256pt;}
.h7{height:92.852760pt;}
.hd{height:109.571313pt;}
.h11{height:112.574000pt;}
.h15{height:117.031200pt;}
.h17{height:143.959200pt;}
.h4{height:186.551200pt;}
.h1{height:594.000000pt;}
.h0{height:816.000000pt;}
.w5{width:83.024147pt;}
.w4{width:89.584493pt;}
.w6{width:103.097680pt;}
.w8{width:141.437600pt;}
.w9{width:145.917067pt;}
.w7{width:151.994400pt;}
.w1{width:262.983600pt;}
.w2{width:316.092800pt;}
.w3{width:825.974133pt;}
.w0{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.083013pt;}
.x1f{left:7.955467pt;}
.x28{left:11.657733pt;}
.x6{left:15.883493pt;}
.x26{left:18.869200pt;}
.x24{left:21.058800pt;}
.x5{left:22.896080pt;}
.x2{left:25.470080pt;}
.x22{left:30.197867pt;}
.x1{left:54.006560pt;}
.x31{left:55.000000pt;}
.x19{left:62.976599pt;}
.x1d{left:64.125587pt;}
.x32{left:78.650000pt;}
.x30{left:88.708653pt;}
.x3{left:108.763560pt;}
.x1a{left:110.946816pt;}
.x29{left:126.326387pt;}
.xb{left:162.852421pt;}
.xc{left:165.435432pt;}
.x21{left:173.935067pt;}
.x15{left:201.597596pt;}
.x7{left:230.025867pt;}
.xa{left:310.699403pt;}
.x1c{left:336.406716pt;}
.x11{left:347.845886pt;}
.xf{left:364.819963pt;}
.x8{left:372.199996pt;}
.xd{left:374.044886pt;}
.x10{left:380.686916pt;}
.x14{left:385.114936pt;}
.x16{left:392.126086pt;}
.xe{left:405.779030pt;}
.x1e{left:415.775600pt;}
.x23{left:417.465333pt;}
.x33{left:428.346533pt;}
.x9{left:450.550917pt;}
.x2f{left:465.666667pt;}
.x2e{left:489.270800pt;}
.x1b{left:490.403333pt;}
.x2a{left:543.818533pt;}
.x17{left:548.459280pt;}
.x18{left:552.149297pt;}
.x2c{left:568.985600pt;}
.x13{left:574.289397pt;}
.x12{left:600.857517pt;}
.x27{left:629.497867pt;}
.x20{left:644.102933pt;}
.x2d{left:676.034267pt;}
.x2b{left:708.737733pt;}
.x25{left:848.499333pt;}
}




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