
    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_5978b31f14579208adc1817e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.966797;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_7a0f2f68856b8ba796837ba3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_283e15f348776bf06de05304.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6a7d900679b040ec420eeead.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.854980;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_2ae643d1abadeb6feafcc9cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.995117;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_7e2fad6d87b9e224e1aa982b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_cfbc1eb5445a91cbf03aabd0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;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_4e3146ca8f0ba85db6907b5c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_661c893f4587fc3c19b9fa6b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.035156;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);}
.v1{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-4.494000px;}
.ls28{letter-spacing:-1.428000px;}
.ls29{letter-spacing:-1.182000px;}
.ls27{letter-spacing:-1.098000px;}
.ls13{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.810000px;}
.ls6{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.990000px;}
.lsb{letter-spacing:1.020000px;}
.lsa{letter-spacing:1.050000px;}
.ls19{letter-spacing:1.158000px;}
.ls25{letter-spacing:1.170000px;}
.ls18{letter-spacing:1.200000px;}
.ls24{letter-spacing:1.206000px;}
.ls1d{letter-spacing:1.278000px;}
.ls26{letter-spacing:1.302000px;}
.ls21{letter-spacing:1.350000px;}
.ls22{letter-spacing:1.578000px;}
.ls12{letter-spacing:1.620000px;}
.ls1e{letter-spacing:1.686000px;}
.ls1f{letter-spacing:1.728000px;}
.ls14{letter-spacing:2.310000px;}
.ls8{letter-spacing:2.385000px;}
.ls15{letter-spacing:2.394000px;}
.ls23{letter-spacing:2.460000px;}
.ls16{letter-spacing:2.544000px;}
.ls17{letter-spacing:2.778000px;}
.ls1c{letter-spacing:2.964000px;}
.ls1a{letter-spacing:3.456000px;}
.ls2{letter-spacing:29.775300px;}
.ls4{letter-spacing:37.377000px;}
.ls9{letter-spacing:39.897000px;}
.ls10{letter-spacing:76.792500px;}
.ls11{letter-spacing:76.845000px;}
.lsf{letter-spacing:90.981000px;}
.ls0{letter-spacing:171.772500px;}
.ls1{letter-spacing:171.825000px;}
.ls7{letter-spacing:248.325000px;}
.ls5{letter-spacing:248.422500px;}
.ls3{letter-spacing:248.475000px;}
.lse{letter-spacing:2681.232000px;}
.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;}
}
.ws15{word-spacing:-240.885000px;}
.wsc{word-spacing:-238.650000px;}
.ws7{word-spacing:-238.500000px;}
.ws22{word-spacing:-221.952000px;}
.ws20{word-spacing:-220.650000px;}
.wsf{word-spacing:-159.339000px;}
.ws10{word-spacing:-157.653000px;}
.ws19{word-spacing:-144.150000px;}
.wsa{word-spacing:-144.000000px;}
.ws27{word-spacing:-98.820000px;}
.ws16{word-spacing:-80.105700px;}
.ws0{word-spacing:-80.064000px;}
.ws11{word-spacing:-70.097700px;}
.ws9{word-spacing:-69.759000px;}
.ws5{word-spacing:-69.081000px;}
.ws4{word-spacing:-68.847000px;}
.ws1b{word-spacing:-68.804700px;}
.ws2{word-spacing:-68.697000px;}
.ws1{word-spacing:-68.654700px;}
.ws12{word-spacing:-68.031000px;}
.ws1a{word-spacing:-67.881000px;}
.ws18{word-spacing:-67.653000px;}
.ws1e{word-spacing:-67.514700px;}
.ws1d{word-spacing:-67.509000px;}
.ws8{word-spacing:-67.503000px;}
.ws3{word-spacing:-67.364700px;}
.ws6{word-spacing:-67.353000px;}
.wse{word-spacing:-66.519000px;}
.ws1c{word-spacing:-66.344700px;}
.wsd{word-spacing:-66.303000px;}
.ws17{word-spacing:-61.809000px;}
.ws23{word-spacing:-60.201000px;}
.ws25{word-spacing:-60.158700px;}
.ws24{word-spacing:-59.871000px;}
.ws1f{word-spacing:-53.793000px;}
.ws21{word-spacing:-46.328700px;}
.ws13{word-spacing:-40.032000px;}
.ws26{word-spacing:-37.629000px;}
.wsb{word-spacing:-12.086250px;}
.ws14{word-spacing:-11.962500px;}
.ws28{word-spacing:0.000000px;}
._37{margin-left:-1601.886000px;}
._27{margin-left:-38.232000px;}
._28{margin-left:-28.742700px;}
._2c{margin-left:-19.304700px;}
._26{margin-left:-17.948550px;}
._29{margin-left:-14.932800px;}
._13{margin-left:-12.190350px;}
._10{margin-left:-10.622550px;}
._a{margin-left:-8.980800px;}
._7{margin-left:-7.156500px;}
._23{margin-left:-5.742900px;}
._1c{margin-left:-4.604550px;}
._2{margin-left:-3.168000px;}
._0{margin-left:-1.440000px;}
._4{width:1.201350px;}
._3{width:2.625150px;}
._1{width:3.744000px;}
._19{width:4.819800px;}
._2f{width:7.038000px;}
._36{width:10.024500px;}
._f{width:14.023200px;}
._e{width:15.243150px;}
._16{width:16.339650px;}
._17{width:17.664150px;}
._2b{width:23.713350px;}
._30{width:25.039350px;}
._1a{width:30.133950px;}
._35{width:31.480950px;}
._25{width:32.825850px;}
._9{width:35.688000px;}
._8{width:36.918000px;}
._1b{width:38.094300px;}
._1d{width:40.740000px;}
._32{width:46.776600px;}
._21{width:48.626100px;}
._1f{width:49.680900px;}
._31{width:51.042150px;}
._14{width:52.576650px;}
._15{width:53.659800px;}
._18{width:59.069400px;}
._2a{width:60.160500px;}
._20{width:67.479300px;}
._3a{width:83.091000px;}
._39{width:84.420000px;}
._38{width:91.530150px;}
._24{width:95.245650px;}
._12{width:96.253200px;}
._11{width:97.749750px;}
._34{width:99.868800px;}
._2d{width:109.875000px;}
._5{width:116.992350px;}
._33{width:120.231000px;}
._1e{width:122.906850px;}
._2e{width:149.893650px;}
._22{width:163.154700px;}
._b{width:169.392150px;}
._c{width:182.311350px;}
._d{width:183.372300px;}
._6{width:199.980450px;}
.fc3{color:rgb(255,255,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(167,5,45);}
.fs9{font-size:108.000000px;}
.fs7{font-size:144.000000px;}
.fsf{font-size:162.000000px;}
.fse{font-size:166.500000px;}
.fsd{font-size:166.650000px;}
.fsa{font-size:193.500000px;}
.fsb{font-size:220.500000px;}
.fsc{font-size:220.650000px;}
.fs2{font-size:238.500000px;}
.fs1{font-size:238.650000px;}
.fs6{font-size:252.150000px;}
.fs8{font-size:265.650000px;}
.fs0{font-size:288.000000px;}
.fs3{font-size:288.150000px;}
.fs5{font-size:396.150000px;}
.fs4{font-size:562.500000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:255.330000px;}
.y53{bottom:355.350000px;}
.y48{bottom:374.175000px;}
.y52{bottom:405.975000px;}
.y47{bottom:439.425000px;}
.y51{bottom:456.645000px;}
.y46{bottom:505.845000px;}
.y45{bottom:571.080000px;}
.y44{bottom:637.470000px;}
.y4c{bottom:923.445000px;}
.y4b{bottom:972.945000px;}
.y40{bottom:1006.575000px;}
.y4a{bottom:1023.570000px;}
.y49{bottom:1074.225000px;}
.y50{bottom:1097.400000px;}
.y4f{bottom:1177.980000px;}
.y4e{bottom:1255.725000px;}
.y4d{bottom:1306.350000px;}
.y57{bottom:1423.875000px;}
.y56{bottom:1473.405000px;}
.y55{bottom:1524.030000px;}
.y54{bottom:1574.655000px;}
.y43{bottom:1678.725000px;}
.y3f{bottom:1719.270000px;}
.y42{bottom:1743.975000px;}
.y3d{bottom:1788.570000px;}
.y3e{bottom:1791.645000px;}
.y41{bottom:1810.395000px;}
.y1a{bottom:1950.720000px;}
.y3a{bottom:2015.820000px;}
.y19{bottom:2019.375000px;}
.y39{bottom:2087.820000px;}
.y18{bottom:2127.375000px;}
.y38{bottom:2159.850000px;}
.y17{bottom:2196.045000px;}
.y37{bottom:2231.850000px;}
.y16{bottom:2299.530000px;}
.y36{bottom:2303.895000px;}
.y15{bottom:2371.575000px;}
.y35{bottom:2408.520000px;}
.y14{bottom:2443.575000px;}
.y34{bottom:2480.550000px;}
.y13{bottom:2518.980000px;}
.y33{bottom:2552.550000px;}
.y12{bottom:2602.230000px;}
.y32{bottom:2657.205000px;}
.y11{bottom:2674.275000px;}
.y31{bottom:2729.220000px;}
.y10{bottom:2746.275000px;}
.y30{bottom:2805.750000px;}
.yf{bottom:2850.945000px;}
.y2f{bottom:2877.750000px;}
.ye{bottom:2922.945000px;}
.y2e{bottom:2949.750000px;}
.yd{bottom:2994.975000px;}
.y2d{bottom:3017.295000px;}
.yc{bottom:3066.975000px;}
.y2c{bottom:3089.280000px;}
.y2b{bottom:3163.575000px;}
.yb{bottom:3171.630000px;}
.ya{bottom:3243.630000px;}
.y2a{bottom:3280.575000px;}
.y9{bottom:3315.630000px;}
.y29{bottom:3352.605000px;}
.y8{bottom:3387.675000px;}
.y28{bottom:3424.620000px;}
.y7{bottom:3459.675000px;}
.y27{bottom:3528.150000px;}
.y6{bottom:3564.330000px;}
.y26{bottom:3600.150000px;}
.y5{bottom:3636.330000px;}
.y25{bottom:3672.180000px;}
.y4{bottom:3708.375000px;}
.y24{bottom:3744.180000px;}
.y3{bottom:3811.875000px;}
.y23{bottom:3816.225000px;}
.y2{bottom:3883.905000px;}
.y22{bottom:3888.225000px;}
.y1{bottom:3959.280000px;}
.y21{bottom:3963.600000px;}
.y20{bottom:4056.330000px;}
.y3b{bottom:4091.355000px;}
.y1f{bottom:4148.955000px;}
.y1e{bottom:4369.530000px;}
.y1d{bottom:4538.325000px;}
.y1c{bottom:4708.230000px;}
.y1b{bottom:4877.025000px;}
.hc{height:78.943359px;}
.hd{height:145.502930px;}
.h14{height:161.129883px;}
.h10{height:161.176025px;}
.h11{height:161.285669px;}
.h13{height:165.605713px;}
.h12{height:165.754907px;}
.he{height:165.805664px;}
.hf{height:165.918457px;}
.h16{height:170.483643px;}
.h15{height:170.637231px;}
.h3{height:174.333252px;}
.h4{height:174.442896px;}
.h5{height:179.340820px;}
.h2{height:179.453613px;}
.ha{height:189.604980px;}
.hb{height:201.001465px;}
.h7{height:201.127881px;}
.h1{height:216.562500px;}
.h6{height:216.675293px;}
.h9{height:297.886230px;}
.h8{height:422.973633px;}
.h0{height:5055.750000px;}
.w2{width:3576.374947px;}
.w0{width:3576.375000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x5{left:36.412447px;}
.x4{left:54.787447px;}
.x1{left:63.637447px;}
.x2{left:127.462447px;}
.x3{left:146.624947px;}
.x16{left:152.774947px;}
.x18{left:225.449947px;}
.x6{left:234.749947px;}
.xd{left:270.644947px;}
.x17{left:392.324947px;}
.xb{left:403.424947px;}
.x14{left:602.924947px;}
.x15{left:636.704947px;}
.xa{left:817.049947px;}
.xe{left:1187.954947px;}
.x19{left:1215.674947px;}
.x1a{left:1290.944947px;}
.x1b{left:1316.894947px;}
.xc{left:1342.079947px;}
.x1c{left:1392.224947px;}
.xf{left:1473.824947px;}
.x7{left:1833.299947px;}
.x9{left:1897.124947px;}
.x8{left:1916.249947px;}
.x13{left:2504.099947px;}
.x11{left:2533.694947px;}
.x12{left:2555.699947px;}
.x10{left:2573.249947px;}
.x1d{left:2931.104947px;}
@media print{
.v1{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-3.994667pt;}
.ls28{letter-spacing:-1.269333pt;}
.ls29{letter-spacing:-1.050667pt;}
.ls27{letter-spacing:-0.976000pt;}
.ls13{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.720000pt;}
.ls6{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.880000pt;}
.lsb{letter-spacing:0.906667pt;}
.lsa{letter-spacing:0.933333pt;}
.ls19{letter-spacing:1.029333pt;}
.ls25{letter-spacing:1.040000pt;}
.ls18{letter-spacing:1.066667pt;}
.ls24{letter-spacing:1.072000pt;}
.ls1d{letter-spacing:1.136000pt;}
.ls26{letter-spacing:1.157333pt;}
.ls21{letter-spacing:1.200000pt;}
.ls22{letter-spacing:1.402667pt;}
.ls12{letter-spacing:1.440000pt;}
.ls1e{letter-spacing:1.498667pt;}
.ls1f{letter-spacing:1.536000pt;}
.ls14{letter-spacing:2.053333pt;}
.ls8{letter-spacing:2.120000pt;}
.ls15{letter-spacing:2.128000pt;}
.ls23{letter-spacing:2.186667pt;}
.ls16{letter-spacing:2.261333pt;}
.ls17{letter-spacing:2.469333pt;}
.ls1c{letter-spacing:2.634667pt;}
.ls1a{letter-spacing:3.072000pt;}
.ls2{letter-spacing:26.466933pt;}
.ls4{letter-spacing:33.224000pt;}
.ls9{letter-spacing:35.464000pt;}
.ls10{letter-spacing:68.260000pt;}
.ls11{letter-spacing:68.306667pt;}
.lsf{letter-spacing:80.872000pt;}
.ls0{letter-spacing:152.686667pt;}
.ls1{letter-spacing:152.733333pt;}
.ls7{letter-spacing:220.733333pt;}
.ls5{letter-spacing:220.820000pt;}
.ls3{letter-spacing:220.866667pt;}
.lse{letter-spacing:2383.317333pt;}
.ws15{word-spacing:-214.120000pt;}
.wsc{word-spacing:-212.133333pt;}
.ws7{word-spacing:-212.000000pt;}
.ws22{word-spacing:-197.290667pt;}
.ws20{word-spacing:-196.133333pt;}
.wsf{word-spacing:-141.634667pt;}
.ws10{word-spacing:-140.136000pt;}
.ws19{word-spacing:-128.133333pt;}
.wsa{word-spacing:-128.000000pt;}
.ws27{word-spacing:-87.840000pt;}
.ws16{word-spacing:-71.205067pt;}
.ws0{word-spacing:-71.168000pt;}
.ws11{word-spacing:-62.309067pt;}
.ws9{word-spacing:-62.008000pt;}
.ws5{word-spacing:-61.405333pt;}
.ws4{word-spacing:-61.197333pt;}
.ws1b{word-spacing:-61.159733pt;}
.ws2{word-spacing:-61.064000pt;}
.ws1{word-spacing:-61.026400pt;}
.ws12{word-spacing:-60.472000pt;}
.ws1a{word-spacing:-60.338667pt;}
.ws18{word-spacing:-60.136000pt;}
.ws1e{word-spacing:-60.013067pt;}
.ws1d{word-spacing:-60.008000pt;}
.ws8{word-spacing:-60.002667pt;}
.ws3{word-spacing:-59.879733pt;}
.ws6{word-spacing:-59.869333pt;}
.wse{word-spacing:-59.128000pt;}
.ws1c{word-spacing:-58.973067pt;}
.wsd{word-spacing:-58.936000pt;}
.ws17{word-spacing:-54.941333pt;}
.ws23{word-spacing:-53.512000pt;}
.ws25{word-spacing:-53.474400pt;}
.ws24{word-spacing:-53.218667pt;}
.ws1f{word-spacing:-47.816000pt;}
.ws21{word-spacing:-41.181067pt;}
.ws13{word-spacing:-35.584000pt;}
.ws26{word-spacing:-33.448000pt;}
.wsb{word-spacing:-10.743333pt;}
.ws14{word-spacing:-10.633333pt;}
.ws28{word-spacing:0.000000pt;}
._37{margin-left:-1423.898667pt;}
._27{margin-left:-33.984000pt;}
._28{margin-left:-25.549067pt;}
._2c{margin-left:-17.159733pt;}
._26{margin-left:-15.954267pt;}
._29{margin-left:-13.273600pt;}
._13{margin-left:-10.835867pt;}
._10{margin-left:-9.442267pt;}
._a{margin-left:-7.982933pt;}
._7{margin-left:-6.361333pt;}
._23{margin-left:-5.104800pt;}
._1c{margin-left:-4.092933pt;}
._2{margin-left:-2.816000pt;}
._0{margin-left:-1.280000pt;}
._4{width:1.067867pt;}
._3{width:2.333467pt;}
._1{width:3.328000pt;}
._19{width:4.284267pt;}
._2f{width:6.256000pt;}
._36{width:8.910667pt;}
._f{width:12.465067pt;}
._e{width:13.549467pt;}
._16{width:14.524133pt;}
._17{width:15.701467pt;}
._2b{width:21.078533pt;}
._30{width:22.257200pt;}
._1a{width:26.785733pt;}
._35{width:27.983067pt;}
._25{width:29.178533pt;}
._9{width:31.722667pt;}
._8{width:32.816000pt;}
._1b{width:33.861600pt;}
._1d{width:36.213333pt;}
._32{width:41.579200pt;}
._21{width:43.223200pt;}
._1f{width:44.160800pt;}
._31{width:45.370800pt;}
._14{width:46.734800pt;}
._15{width:47.697600pt;}
._18{width:52.506133pt;}
._2a{width:53.476000pt;}
._20{width:59.981600pt;}
._3a{width:73.858667pt;}
._39{width:75.040000pt;}
._38{width:81.360133pt;}
._24{width:84.662800pt;}
._12{width:85.558400pt;}
._11{width:86.888667pt;}
._34{width:88.772267pt;}
._2d{width:97.666667pt;}
._5{width:103.993200pt;}
._33{width:106.872000pt;}
._1e{width:109.250533pt;}
._2e{width:133.238800pt;}
._22{width:145.026400pt;}
._b{width:150.570800pt;}
._c{width:162.054533pt;}
._d{width:162.997600pt;}
._6{width:177.760400pt;}
.fs9{font-size:96.000000pt;}
.fs7{font-size:128.000000pt;}
.fsf{font-size:144.000000pt;}
.fse{font-size:148.000000pt;}
.fsd{font-size:148.133333pt;}
.fsa{font-size:172.000000pt;}
.fsb{font-size:196.000000pt;}
.fsc{font-size:196.133333pt;}
.fs2{font-size:212.000000pt;}
.fs1{font-size:212.133333pt;}
.fs6{font-size:224.133333pt;}
.fs8{font-size:236.133333pt;}
.fs0{font-size:256.000000pt;}
.fs3{font-size:256.133333pt;}
.fs5{font-size:352.133333pt;}
.fs4{font-size:500.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:226.960000pt;}
.y53{bottom:315.866667pt;}
.y48{bottom:332.600000pt;}
.y52{bottom:360.866667pt;}
.y47{bottom:390.600000pt;}
.y51{bottom:405.906667pt;}
.y46{bottom:449.640000pt;}
.y45{bottom:507.626667pt;}
.y44{bottom:566.640000pt;}
.y4c{bottom:820.840000pt;}
.y4b{bottom:864.840000pt;}
.y40{bottom:894.733333pt;}
.y4a{bottom:909.840000pt;}
.y49{bottom:954.866667pt;}
.y50{bottom:975.466667pt;}
.y4f{bottom:1047.093333pt;}
.y4e{bottom:1116.200000pt;}
.y4d{bottom:1161.200000pt;}
.y57{bottom:1265.666667pt;}
.y56{bottom:1309.693333pt;}
.y55{bottom:1354.693333pt;}
.y54{bottom:1399.693333pt;}
.y43{bottom:1492.200000pt;}
.y3f{bottom:1528.240000pt;}
.y42{bottom:1550.200000pt;}
.y3d{bottom:1589.840000pt;}
.y3e{bottom:1592.573333pt;}
.y41{bottom:1609.240000pt;}
.y1a{bottom:1733.973333pt;}
.y3a{bottom:1791.840000pt;}
.y19{bottom:1795.000000pt;}
.y39{bottom:1855.840000pt;}
.y18{bottom:1891.000000pt;}
.y38{bottom:1919.866667pt;}
.y17{bottom:1952.040000pt;}
.y37{bottom:1983.866667pt;}
.y16{bottom:2044.026667pt;}
.y36{bottom:2047.906667pt;}
.y15{bottom:2108.066667pt;}
.y35{bottom:2140.906667pt;}
.y14{bottom:2172.066667pt;}
.y34{bottom:2204.933333pt;}
.y13{bottom:2239.093333pt;}
.y33{bottom:2268.933333pt;}
.y12{bottom:2313.093333pt;}
.y32{bottom:2361.960000pt;}
.y11{bottom:2377.133333pt;}
.y31{bottom:2425.973333pt;}
.y10{bottom:2441.133333pt;}
.y30{bottom:2494.000000pt;}
.yf{bottom:2534.173333pt;}
.y2f{bottom:2558.000000pt;}
.ye{bottom:2598.173333pt;}
.y2e{bottom:2622.000000pt;}
.yd{bottom:2662.200000pt;}
.y2d{bottom:2682.040000pt;}
.yc{bottom:2726.200000pt;}
.y2c{bottom:2746.026667pt;}
.y2b{bottom:2812.066667pt;}
.yb{bottom:2819.226667pt;}
.ya{bottom:2883.226667pt;}
.y2a{bottom:2916.066667pt;}
.y9{bottom:2947.226667pt;}
.y29{bottom:2980.093333pt;}
.y8{bottom:3011.266667pt;}
.y28{bottom:3044.106667pt;}
.y7{bottom:3075.266667pt;}
.y27{bottom:3136.133333pt;}
.y6{bottom:3168.293333pt;}
.y26{bottom:3200.133333pt;}
.y5{bottom:3232.293333pt;}
.y25{bottom:3264.160000pt;}
.y4{bottom:3296.333333pt;}
.y24{bottom:3328.160000pt;}
.y3{bottom:3388.333333pt;}
.y23{bottom:3392.200000pt;}
.y2{bottom:3452.360000pt;}
.y22{bottom:3456.200000pt;}
.y1{bottom:3519.360000pt;}
.y21{bottom:3523.200000pt;}
.y20{bottom:3605.626667pt;}
.y3b{bottom:3636.760000pt;}
.y1f{bottom:3687.960000pt;}
.y1e{bottom:3884.026667pt;}
.y1d{bottom:4034.066667pt;}
.y1c{bottom:4185.093333pt;}
.y1b{bottom:4335.133333pt;}
.hc{height:70.171875pt;}
.hd{height:129.335938pt;}
.h14{height:143.226562pt;}
.h10{height:143.267578pt;}
.h11{height:143.365039pt;}
.h13{height:147.205078pt;}
.h12{height:147.337695pt;}
.he{height:147.382812pt;}
.hf{height:147.483073pt;}
.h16{height:151.541016pt;}
.h15{height:151.677539pt;}
.h3{height:154.962891pt;}
.h4{height:155.060352pt;}
.h5{height:159.414062pt;}
.h2{height:159.514323pt;}
.ha{height:168.537760pt;}
.hb{height:178.667969pt;}
.h7{height:178.780339pt;}
.h1{height:192.500000pt;}
.h6{height:192.600260pt;}
.h9{height:264.787760pt;}
.h8{height:375.976562pt;}
.h0{height:4494.000000pt;}
.w2{width:3178.999953pt;}
.w0{width:3179.000000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x5{left:32.366619pt;}
.x4{left:48.699953pt;}
.x1{left:56.566619pt;}
.x2{left:113.299953pt;}
.x3{left:130.333286pt;}
.x16{left:135.799953pt;}
.x18{left:200.399953pt;}
.x6{left:208.666619pt;}
.xd{left:240.573286pt;}
.x17{left:348.733286pt;}
.xb{left:358.599953pt;}
.x14{left:535.933286pt;}
.x15{left:565.959953pt;}
.xa{left:726.266619pt;}
.xe{left:1055.959953pt;}
.x19{left:1080.599953pt;}
.x1a{left:1147.506619pt;}
.x1b{left:1170.573286pt;}
.xc{left:1192.959953pt;}
.x1c{left:1237.533286pt;}
.xf{left:1310.066619pt;}
.x7{left:1629.599953pt;}
.x9{left:1686.333286pt;}
.x8{left:1703.333286pt;}
.x13{left:2225.866619pt;}
.x11{left:2252.173286pt;}
.x12{left:2271.733286pt;}
.x10{left:2287.333286pt;}
.x1d{left:2605.426619pt;}
}




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