
    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_6534223f90efe680cf0da23a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.091797;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_1de24468ba1e31b6e424f4a7.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_75774a692c385c9eb95efc45.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_17228980a15e8c51552ba50b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.087891;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_870fa5c26485d867ddcc4345.woff')format("woff");}.ff5{font-family:ff5;line-height:0.853027;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_16fde9fcc3cb7237b3c5e924.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_2cd04f2afa0802461e9c3b98.woff')format("woff");}.ff7{font-family:ff7;line-height:1.091797;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);}
.v4{vertical-align:-31.500000px;}
.v1{vertical-align:-22.500000px;}
.v9{vertical-align:-18.120000px;}
.v5{vertical-align:-13.500002px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:3.240000px;}
.v2{vertical-align:22.500000px;}
.v8{vertical-align:27.000000px;}
.v3{vertical-align:31.500000px;}
.va{vertical-align:45.000000px;}
.v6{vertical-align:54.000000px;}
.ls6{letter-spacing:-3.204000px;}
.ls9{letter-spacing:-3.054000px;}
.lsf{letter-spacing:-1.854000px;}
.lsd{letter-spacing:-1.704000px;}
.lsc{letter-spacing:-1.110000px;}
.ls1{letter-spacing:-0.738000px;}
.ls1d{letter-spacing:-0.654000px;}
.ls1c{letter-spacing:-0.586800px;}
.ls4{letter-spacing:-0.334200px;}
.ls0{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.012000px;}
.ls20{letter-spacing:0.021150px;}
.ls19{letter-spacing:0.037920px;}
.ls12{letter-spacing:0.058650px;}
.lse{letter-spacing:0.060149px;}
.ls10{letter-spacing:0.071250px;}
.ls7{letter-spacing:0.157950px;}
.ls5{letter-spacing:0.187800px;}
.ls3{letter-spacing:0.277200px;}
.lsa{letter-spacing:0.353550px;}
.lsb{letter-spacing:0.555000px;}
.ls21{letter-spacing:0.708000px;}
.ls16{letter-spacing:1.023900px;}
.ls17{letter-spacing:1.164000px;}
.ls18{letter-spacing:1.263900px;}
.ls15{letter-spacing:1.344000px;}
.ls1a{letter-spacing:1.446000px;}
.ls2{letter-spacing:1.662000px;}
.ls1b{letter-spacing:1.836000px;}
.ls8{letter-spacing:1.974000px;}
.ls1e{letter-spacing:2.052000px;}
.ls11{letter-spacing:492.327450px;}
.ls13{letter-spacing:514.527450px;}
.ls14{letter-spacing:526.227450px;}
.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;}
}
.ws17{word-spacing:-108.150000px;}
.ws19{word-spacing:-48.476400px;}
.ws16{word-spacing:-29.262450px;}
.ws5{word-spacing:-23.616450px;}
.ws18{word-spacing:-22.662450px;}
.wsa{word-spacing:-22.509450px;}
.ws8{word-spacing:-22.142250px;}
.ws10{word-spacing:-21.992370px;}
.ws4{word-spacing:-21.954450px;}
.ws1{word-spacing:-17.386950px;}
.ws15{word-spacing:-16.800150px;}
.ws0{word-spacing:-16.648950px;}
.ws9{word-spacing:-16.620450px;}
.ws6{word-spacing:-14.646450px;}
.ws2{word-spacing:-14.616000px;}
.ws7{word-spacing:-13.732950px;}
.wsb{word-spacing:-10.048500px;}
.wsc{word-spacing:-8.374950px;}
.wsd{word-spacing:-8.224950px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:477.833550px;}
.wsf{word-spacing:490.943190px;}
.ws13{word-spacing:641.015400px;}
.ws12{word-spacing:647.555400px;}
.ws14{word-spacing:722.135400px;}
.ws1a{word-spacing:803.765400px;}
.ws11{word-spacing:1062.683190px;}
._8{margin-left:-12.466800px;}
._9{margin-left:-8.342100px;}
._b{margin-left:-6.805800px;}
._6{margin-left:-5.191200px;}
._7{margin-left:-3.776100px;}
._2{margin-left:-2.668800px;}
._3{margin-left:-1.334400px;}
._0{width:1.167600px;}
._1{width:2.335200px;}
._4{width:3.836400px;}
._5{width:5.333100px;}
._a{width:1922.369250px;}
.fc6{color:transparent;}
.fc5{color:rgb(78,149,217);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,176,240);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(118,118,118);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:49.500000px;}
.fsa{font-size:49.650000px;}
.fsc{font-size:54.000000px;}
.fse{font-size:54.150000px;}
.fs6{font-size:58.650000px;}
.fs8{font-size:67.500000px;}
.fs7{font-size:67.650000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:72.150000px;}
.fsd{font-size:85.500000px;}
.fs4{font-size:85.650000px;}
.fsb{font-size:94.650000px;}
.fs3{font-size:108.150000px;}
.fsf{font-size:144.150000px;}
.fs1{font-size:166.650000px;}
.fs0{font-size:166.800000px;}
.fs11{font-size:238.800000px;}
.fs10{font-size:238.950000px;}
.y0{bottom:0.000000px;}
.y12{bottom:29.437500px;}
.y3{bottom:30.525000px;}
.y2e{bottom:67.500000px;}
.y24{bottom:70.125000px;}
.y18{bottom:85.275000px;}
.yf{bottom:104.025000px;}
.yd{bottom:105.412500px;}
.y2b{bottom:108.075000px;}
.y45{bottom:120.225000px;}
.y58{bottom:124.125000px;}
.y2d{bottom:127.537500px;}
.y17{bottom:127.575000px;}
.y56{bottom:132.600000px;}
.y11{bottom:135.375000px;}
.ye{bottom:136.687500px;}
.yc{bottom:136.950000px;}
.y33{bottom:139.537500px;}
.y7{bottom:145.087500px;}
.y2c{bottom:155.700000px;}
.y2a{bottom:155.955000px;}
.y16{bottom:160.275000px;}
.yb{bottom:169.650000px;}
.y6{bottom:179.250000px;}
.y15{bottom:192.945000px;}
.y13{bottom:194.730000px;}
.ya{bottom:202.320000px;}
.y28{bottom:205.425000px;}
.y31{bottom:212.820000px;}
.y3b{bottom:230.895000px;}
.y9{bottom:234.975000px;}
.y40{bottom:245.700000px;}
.y43{bottom:267.645000px;}
.y3a{bottom:284.100000px;}
.y4c{bottom:302.220000px;}
.y4f{bottom:314.280000px;}
.y53{bottom:330.720000px;}
.y55{bottom:332.730000px;}
.y32{bottom:332.850000px;}
.y41{bottom:333.495000px;}
.y39{bottom:335.655000px;}
.y20{bottom:343.995000px;}
.y52{bottom:349.875000px;}
.y54{bottom:365.400000px;}
.y29{bottom:366.000000px;}
.y4b{bottom:367.575000px;}
.y1f{bottom:375.570000px;}
.y25{bottom:379.275000px;}
.y27{bottom:382.845000px;}
.y3c{bottom:386.130000px;}
.y4e{bottom:386.400000px;}
.y38{bottom:387.225000px;}
.y42{bottom:395.400000px;}
.y4a{bottom:431.775000px;}
.y1e{bottom:440.880000px;}
.y2f{bottom:446.280000px;}
.y3f{bottom:448.275000px;}
.y5{bottom:452.925000px;}
.y4d{bottom:458.505000px;}
.y34{bottom:463.695000px;}
.y49{bottom:464.445000px;}
.y1d{bottom:473.550000px;}
.y4{bottom:485.595000px;}
.y3e{bottom:508.125000px;}
.y36{bottom:514.200000px;}
.y48{bottom:529.800000px;}
.y1c{bottom:537.780000px;}
.y3d{bottom:544.275000px;}
.y23{bottom:549.900000px;}
.y35{bottom:557.550000px;}
.y47{bottom:561.330000px;}
.y30{bottom:568.320000px;}
.y1b{bottom:570.450000px;}
.y2{bottom:572.370000px;}
.y26{bottom:574.245000px;}
.y37{bottom:594.120000px;}
.y1a{bottom:603.120000px;}
.y22{bottom:604.500000px;}
.y14{bottom:613.950000px;}
.y10{bottom:615.975000px;}
.y1{bottom:623.070000px;}
.y46{bottom:628.905000px;}
.y51{bottom:631.200000px;}
.y19{bottom:635.775000px;}
.y44{bottom:648.000000px;}
.y21{bottom:658.905000px;}
.y57{bottom:661.275000px;}
.y50{bottom:691.470000px;}
.y8{bottom:764.745000px;}
.h7{height:50.688721px;}
.hb{height:58.337402px;}
.ha{height:58.467041px;}
.h18{height:58.502197px;}
.h9{height:58.632202px;}
.h3{height:62.402344px;}
.hf{height:62.532344px;}
.h8{height:62.532349px;}
.he{height:65.401611px;}
.h13{height:74.102783px;}
.h11{height:74.232788px;}
.h5{height:74.358252px;}
.h12{height:77.472788px;}
.h10{height:82.033081px;}
.h4{height:93.733521px;}
.h6{height:93.891943px;}
.h14{height:94.007812px;}
.hc{height:94.138037px;}
.hd{height:94.258037px;}
.h19{height:96.411943px;}
.h15{height:125.145850px;}
.h2{height:144.679541px;}
.h1{height:144.809766px;}
.h17{height:207.317578px;}
.h16{height:207.447803px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:36.374979px;}
.x37{left:76.612479px;}
.x41{left:127.237479px;}
.x14{left:134.212479px;}
.x28{left:173.354979px;}
.x24{left:182.624979px;}
.x1f{left:196.994979px;}
.x1d{left:221.024979px;}
.x6{left:268.724979px;}
.x1{left:271.424979px;}
.x29{left:291.719979px;}
.x23{left:308.594979px;}
.x1e{left:326.699979px;}
.x13{left:363.599979px;}
.x1b{left:368.549979px;}
.x30{left:375.674979px;}
.x27{left:383.249979px;}
.x4{left:395.474979px;}
.x25{left:402.569979px;}
.x12{left:406.319979px;}
.x26{left:450.449979px;}
.x36{left:486.194979px;}
.xb{left:504.269979px;}
.x43{left:514.394979px;}
.x2a{left:515.444979px;}
.x3c{left:524.924979px;}
.x5{left:533.774979px;}
.x16{left:539.774979px;}
.x19{left:542.069979px;}
.x38{left:543.779979px;}
.x3a{left:557.549979px;}
.x3d{left:572.324979px;}
.x2{left:606.704979px;}
.x10{left:610.649979px;}
.x2b{left:619.874979px;}
.xd{left:627.344979px;}
.x39{left:641.624979px;}
.xa{left:650.624979px;}
.x9{left:683.444979px;}
.x32{left:738.899979px;}
.x31{left:746.444979px;}
.x42{left:759.149979px;}
.x34{left:860.669979px;}
.x3e{left:866.204979px;}
.x33{left:877.769979px;}
.x2c{left:884.894979px;}
.x15{left:896.549979px;}
.x18{left:903.299979px;}
.x3f{left:913.574979px;}
.x22{left:934.229979px;}
.x1c{left:1018.499979px;}
.x2f{left:1028.999979px;}
.xf{left:1053.374979px;}
.x2d{left:1057.094979px;}
.x21{left:1059.449979px;}
.xe{left:1063.919979px;}
.x20{left:1109.624979px;}
.x8{left:1139.024979px;}
.x3b{left:1145.924979px;}
.x40{left:1147.649979px;}
.x11{left:1173.569979px;}
.x2e{left:1177.454979px;}
.x1a{left:1273.244979px;}
.x17{left:1282.199979px;}
.x35{left:1311.944979px;}
.xc{left:1320.344979px;}
.x3{left:1321.499979px;}
@media print{
.v4{vertical-align:-28.000000pt;}
.v1{vertical-align:-20.000000pt;}
.v9{vertical-align:-16.106667pt;}
.v5{vertical-align:-12.000001pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.880000pt;}
.v2{vertical-align:20.000000pt;}
.v8{vertical-align:24.000000pt;}
.v3{vertical-align:28.000000pt;}
.va{vertical-align:40.000000pt;}
.v6{vertical-align:48.000000pt;}
.ls6{letter-spacing:-2.848000pt;}
.ls9{letter-spacing:-2.714667pt;}
.lsf{letter-spacing:-1.648000pt;}
.lsd{letter-spacing:-1.514667pt;}
.lsc{letter-spacing:-0.986667pt;}
.ls1{letter-spacing:-0.656000pt;}
.ls1d{letter-spacing:-0.581333pt;}
.ls1c{letter-spacing:-0.521600pt;}
.ls4{letter-spacing:-0.297067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.010667pt;}
.ls20{letter-spacing:0.018800pt;}
.ls19{letter-spacing:0.033707pt;}
.ls12{letter-spacing:0.052133pt;}
.lse{letter-spacing:0.053466pt;}
.ls10{letter-spacing:0.063333pt;}
.ls7{letter-spacing:0.140400pt;}
.ls5{letter-spacing:0.166933pt;}
.ls3{letter-spacing:0.246400pt;}
.lsa{letter-spacing:0.314267pt;}
.lsb{letter-spacing:0.493333pt;}
.ls21{letter-spacing:0.629333pt;}
.ls16{letter-spacing:0.910133pt;}
.ls17{letter-spacing:1.034667pt;}
.ls18{letter-spacing:1.123467pt;}
.ls15{letter-spacing:1.194667pt;}
.ls1a{letter-spacing:1.285333pt;}
.ls2{letter-spacing:1.477333pt;}
.ls1b{letter-spacing:1.632000pt;}
.ls8{letter-spacing:1.754667pt;}
.ls1e{letter-spacing:1.824000pt;}
.ls11{letter-spacing:437.624400pt;}
.ls13{letter-spacing:457.357733pt;}
.ls14{letter-spacing:467.757733pt;}
.ws17{word-spacing:-96.133333pt;}
.ws19{word-spacing:-43.090133pt;}
.ws16{word-spacing:-26.011067pt;}
.ws5{word-spacing:-20.992400pt;}
.ws18{word-spacing:-20.144400pt;}
.wsa{word-spacing:-20.008400pt;}
.ws8{word-spacing:-19.682000pt;}
.ws10{word-spacing:-19.548773pt;}
.ws4{word-spacing:-19.515067pt;}
.ws1{word-spacing:-15.455067pt;}
.ws15{word-spacing:-14.933467pt;}
.ws0{word-spacing:-14.799067pt;}
.ws9{word-spacing:-14.773733pt;}
.ws6{word-spacing:-13.019067pt;}
.ws2{word-spacing:-12.992000pt;}
.ws7{word-spacing:-12.207067pt;}
.wsb{word-spacing:-8.932000pt;}
.wsc{word-spacing:-7.444400pt;}
.wsd{word-spacing:-7.311067pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:424.740933pt;}
.wsf{word-spacing:436.393947pt;}
.ws13{word-spacing:569.791467pt;}
.ws12{word-spacing:575.604800pt;}
.ws14{word-spacing:641.898133pt;}
.ws1a{word-spacing:714.458133pt;}
.ws11{word-spacing:944.607280pt;}
._8{margin-left:-11.081600pt;}
._9{margin-left:-7.415200pt;}
._b{margin-left:-6.049600pt;}
._6{margin-left:-4.614400pt;}
._7{margin-left:-3.356533pt;}
._2{margin-left:-2.372267pt;}
._3{margin-left:-1.186133pt;}
._0{width:1.037867pt;}
._1{width:2.075733pt;}
._4{width:3.410133pt;}
._5{width:4.740533pt;}
._a{width:1708.772667pt;}
.fs9{font-size:44.000000pt;}
.fsa{font-size:44.133333pt;}
.fsc{font-size:48.000000pt;}
.fse{font-size:48.133333pt;}
.fs6{font-size:52.133333pt;}
.fs8{font-size:60.000000pt;}
.fs7{font-size:60.133333pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:64.133333pt;}
.fsd{font-size:76.000000pt;}
.fs4{font-size:76.133333pt;}
.fsb{font-size:84.133333pt;}
.fs3{font-size:96.133333pt;}
.fsf{font-size:128.133333pt;}
.fs1{font-size:148.133333pt;}
.fs0{font-size:148.266667pt;}
.fs11{font-size:212.266667pt;}
.fs10{font-size:212.400000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:26.166667pt;}
.y3{bottom:27.133333pt;}
.y2e{bottom:60.000000pt;}
.y24{bottom:62.333333pt;}
.y18{bottom:75.800000pt;}
.yf{bottom:92.466667pt;}
.yd{bottom:93.700000pt;}
.y2b{bottom:96.066667pt;}
.y45{bottom:106.866667pt;}
.y58{bottom:110.333333pt;}
.y2d{bottom:113.366667pt;}
.y17{bottom:113.400000pt;}
.y56{bottom:117.866667pt;}
.y11{bottom:120.333333pt;}
.ye{bottom:121.500000pt;}
.yc{bottom:121.733333pt;}
.y33{bottom:124.033333pt;}
.y7{bottom:128.966667pt;}
.y2c{bottom:138.400000pt;}
.y2a{bottom:138.626667pt;}
.y16{bottom:142.466667pt;}
.yb{bottom:150.800000pt;}
.y6{bottom:159.333333pt;}
.y15{bottom:171.506667pt;}
.y13{bottom:173.093333pt;}
.ya{bottom:179.840000pt;}
.y28{bottom:182.600000pt;}
.y31{bottom:189.173333pt;}
.y3b{bottom:205.240000pt;}
.y9{bottom:208.866667pt;}
.y40{bottom:218.400000pt;}
.y43{bottom:237.906667pt;}
.y3a{bottom:252.533333pt;}
.y4c{bottom:268.640000pt;}
.y4f{bottom:279.360000pt;}
.y53{bottom:293.973333pt;}
.y55{bottom:295.760000pt;}
.y32{bottom:295.866667pt;}
.y41{bottom:296.440000pt;}
.y39{bottom:298.360000pt;}
.y20{bottom:305.773333pt;}
.y52{bottom:311.000000pt;}
.y54{bottom:324.800000pt;}
.y29{bottom:325.333333pt;}
.y4b{bottom:326.733333pt;}
.y1f{bottom:333.840000pt;}
.y25{bottom:337.133333pt;}
.y27{bottom:340.306667pt;}
.y3c{bottom:343.226667pt;}
.y4e{bottom:343.466667pt;}
.y38{bottom:344.200000pt;}
.y42{bottom:351.466667pt;}
.y4a{bottom:383.800000pt;}
.y1e{bottom:391.893333pt;}
.y2f{bottom:396.693333pt;}
.y3f{bottom:398.466667pt;}
.y5{bottom:402.600000pt;}
.y4d{bottom:407.560000pt;}
.y34{bottom:412.173333pt;}
.y49{bottom:412.840000pt;}
.y1d{bottom:420.933333pt;}
.y4{bottom:431.640000pt;}
.y3e{bottom:451.666667pt;}
.y36{bottom:457.066667pt;}
.y48{bottom:470.933333pt;}
.y1c{bottom:478.026667pt;}
.y3d{bottom:483.800000pt;}
.y23{bottom:488.800000pt;}
.y35{bottom:495.600000pt;}
.y47{bottom:498.960000pt;}
.y30{bottom:505.173333pt;}
.y1b{bottom:507.066667pt;}
.y2{bottom:508.773333pt;}
.y26{bottom:510.440000pt;}
.y37{bottom:528.106667pt;}
.y1a{bottom:536.106667pt;}
.y22{bottom:537.333333pt;}
.y14{bottom:545.733333pt;}
.y10{bottom:547.533333pt;}
.y1{bottom:553.840000pt;}
.y46{bottom:559.026667pt;}
.y51{bottom:561.066667pt;}
.y19{bottom:565.133333pt;}
.y44{bottom:576.000000pt;}
.y21{bottom:585.693333pt;}
.y57{bottom:587.800000pt;}
.y50{bottom:614.640000pt;}
.y8{bottom:679.773333pt;}
.h7{height:45.056641pt;}
.hb{height:51.855469pt;}
.ha{height:51.970703pt;}
.h18{height:52.001953pt;}
.h9{height:52.117513pt;}
.h3{height:55.468750pt;}
.hf{height:55.584306pt;}
.h8{height:55.584310pt;}
.he{height:58.134766pt;}
.h13{height:65.869141pt;}
.h11{height:65.984701pt;}
.h5{height:66.096224pt;}
.h12{height:68.864701pt;}
.h10{height:72.918294pt;}
.h4{height:83.318685pt;}
.h6{height:83.459505pt;}
.h14{height:83.562500pt;}
.hc{height:83.678255pt;}
.hd{height:83.784922pt;}
.h19{height:85.699505pt;}
.h15{height:111.240755pt;}
.h2{height:128.604036pt;}
.h1{height:128.719792pt;}
.h17{height:184.282292pt;}
.h16{height:184.398047pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:32.333314pt;}
.x37{left:68.099981pt;}
.x41{left:113.099981pt;}
.x14{left:119.299981pt;}
.x28{left:154.093314pt;}
.x24{left:162.333314pt;}
.x1f{left:175.106648pt;}
.x1d{left:196.466648pt;}
.x6{left:238.866648pt;}
.x1{left:241.266648pt;}
.x29{left:259.306648pt;}
.x23{left:274.306648pt;}
.x1e{left:290.399981pt;}
.x13{left:323.199981pt;}
.x1b{left:327.599981pt;}
.x30{left:333.933314pt;}
.x27{left:340.666648pt;}
.x4{left:351.533314pt;}
.x25{left:357.839981pt;}
.x12{left:361.173314pt;}
.x26{left:400.399981pt;}
.x36{left:432.173314pt;}
.xb{left:448.239981pt;}
.x43{left:457.239981pt;}
.x2a{left:458.173314pt;}
.x3c{left:466.599981pt;}
.x5{left:474.466648pt;}
.x16{left:479.799981pt;}
.x19{left:481.839981pt;}
.x38{left:483.359981pt;}
.x3a{left:495.599981pt;}
.x3d{left:508.733314pt;}
.x2{left:539.293314pt;}
.x10{left:542.799981pt;}
.x2b{left:550.999981pt;}
.xd{left:557.639981pt;}
.x39{left:570.333314pt;}
.xa{left:578.333314pt;}
.x9{left:607.506648pt;}
.x32{left:656.799981pt;}
.x31{left:663.506648pt;}
.x42{left:674.799981pt;}
.x34{left:765.039981pt;}
.x3e{left:769.959981pt;}
.x33{left:780.239981pt;}
.x2c{left:786.573314pt;}
.x15{left:796.933314pt;}
.x18{left:802.933314pt;}
.x3f{left:812.066648pt;}
.x22{left:830.426648pt;}
.x1c{left:905.333314pt;}
.x2f{left:914.666648pt;}
.xf{left:936.333314pt;}
.x2d{left:939.639981pt;}
.x21{left:941.733314pt;}
.xe{left:945.706648pt;}
.x20{left:986.333314pt;}
.x8{left:1012.466648pt;}
.x3b{left:1018.599981pt;}
.x40{left:1020.133314pt;}
.x11{left:1043.173314pt;}
.x2e{left:1046.626648pt;}
.x1a{left:1131.773314pt;}
.x17{left:1139.733314pt;}
.x35{left:1166.173314pt;}
.xc{left:1173.639981pt;}
.x3{left:1174.666648pt;}
}




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