
    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_fc03afcb8dd516349b68f3af.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;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_98cdb8987a777e48030214e4.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_d93c3b803e20fead71104380.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_c0d85ffe39f42cc198e5a150.woff')format("woff");}.ff4{font-family:ff4;line-height:0.825684;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_56178bf43372f2f5f10192ca.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899414;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_30d02f9be4fab17da79007ea.woff')format("woff");}.ff6{font-family:ff6;line-height:0.683594;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_3d25874c9c57644af1f53bf0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f79bd241cd78480dcafbcae1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899902;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-18.981000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.000000px;}
.v2{vertical-align:21.978000px;}
.v4{vertical-align:23.975400px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012600px;}
.lsb{letter-spacing:0.028200px;}
.lsa{letter-spacing:0.360000px;}
.ls2{letter-spacing:3.000000px;}
.ls7{letter-spacing:4.197333px;}
.ls6{letter-spacing:4.200000px;}
.ls8{letter-spacing:4.210000px;}
.ls4{letter-spacing:4.800000px;}
.ls5{letter-spacing:5.400000px;}
.lsf{letter-spacing:6.600000px;}
.ls0{letter-spacing:7.200000px;}
.lse{letter-spacing:8.400000px;}
.lsc{letter-spacing:10.710600px;}
.ls1{letter-spacing:10.800000px;}
.ls9{letter-spacing:152.826000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-32.004000px;}
.ws6{word-spacing:-20.592000px;}
.ws4{word-spacing:-20.232000px;}
.ws8{word-spacing:-18.546000px;}
.ws1{word-spacing:-17.784000px;}
.ws3{word-spacing:-16.860000px;}
.ws5{word-spacing:-14.820000px;}
.ws7{word-spacing:-11.795256px;}
.ws0{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
._45{margin-left:-605.439000px;}
._d{margin-left:-20.536200px;}
._31{margin-left:-19.410000px;}
._29{margin-left:-16.788000px;}
._12{margin-left:-14.184000px;}
._14{margin-left:-12.936000px;}
._44{margin-left:-11.734200px;}
._7{margin-left:-10.440000px;}
._18{margin-left:-8.664600px;}
._b{margin-left:-7.578000px;}
._3{margin-left:-6.480000px;}
._15{margin-left:-5.400000px;}
._e{margin-left:-4.140000px;}
._6{margin-left:-2.880000px;}
._1{margin-left:-1.134000px;}
._4{width:1.350000px;}
._8{width:2.574000px;}
._9{width:4.104000px;}
._13{width:5.328000px;}
._f{width:6.336000px;}
._a{width:7.920000px;}
._17{width:9.234000px;}
._10{width:10.278000px;}
._11{width:11.808000px;}
._16{width:14.688000px;}
._22{width:15.858000px;}
._c{width:19.152000px;}
._43{width:32.760000px;}
._3b{width:38.960667px;}
._23{width:59.085789px;}
._0{width:68.706000px;}
._39{width:101.128000px;}
._19{width:117.759000px;}
._3c{width:174.680667px;}
._28{width:201.750000px;}
._2f{width:273.512400px;}
._2b{width:305.011800px;}
._1e{width:309.007800px;}
._2d{width:324.151800px;}
._32{width:344.272000px;}
._3e{width:349.966667px;}
._2{width:369.208200px;}
._24{width:442.517400px;}
._3d{width:485.456667px;}
._27{width:529.920000px;}
._1b{width:531.975000px;}
._41{width:535.880667px;}
._1d{width:553.293000px;}
._26{width:575.705400px;}
._33{width:585.826667px;}
._34{width:602.518000px;}
._35{width:627.940000px;}
._1c{width:653.053800px;}
._2c{width:657.508800px;}
._38{width:661.996000px;}
._1a{width:667.737000px;}
._3f{width:687.400667px;}
._36{width:691.498000px;}
._3a{width:708.262000px;}
._25{width:726.185400px;}
._5{width:738.306000px;}
._2a{width:739.954800px;}
._37{width:831.004667px;}
._42{width:1024.012667px;}
._2e{width:1086.322200px;}
._1f{width:1138.696800px;}
._30{width:1212.192600px;}
._40{width:1244.188667px;}
._20{width:1422.364800px;}
._21{width:1427.092800px;}
.fc3{color:rgb(68,57,21);}
.fc2{color:rgb(35,31,32);}
.fc1{color:rgb(42,62,146);}
.fc0{color:rgb(73,19,22);}
.fs9{font-size:33.231000px;}
.fs7{font-size:38.478000px;}
.fsb{font-size:41.976000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs8{font-size:63.000000px;}
.fs0{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fsc{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:58.081050px;}
.y2{bottom:58.081200px;}
.y27{bottom:58.081350px;}
.y49{bottom:79.381050px;}
.y1{bottom:79.381200px;}
.y26{bottom:79.381350px;}
.ycd{bottom:127.558950px;}
.y70{bottom:127.559100px;}
.y8e{bottom:140.565600px;}
.y48{bottom:142.801050px;}
.y25{bottom:143.400900px;}
.y6f{bottom:144.058950px;}
.ycc{bottom:148.804200px;}
.y8d{bottom:161.565600px;}
.yeb{bottom:163.757700px;}
.y47{bottom:165.301050px;}
.y6e{bottom:165.304200px;}
.y24{bottom:165.900900px;}
.yea{bottom:183.557550px;}
.y46{bottom:187.801050px;}
.y23{bottom:188.400900px;}
.y8c{bottom:191.069400px;}
.y6d{bottom:193.832550px;}
.yaf{bottom:202.637400px;}
.ye9{bottom:203.357550px;}
.y45{bottom:210.301050px;}
.y22{bottom:210.900900px;}
.y6c{bottom:216.332550px;}
.y8b{bottom:220.573500px;}
.y44{bottom:232.801050px;}
.y21{bottom:233.400900px;}
.ycb{bottom:238.752300px;}
.y6b{bottom:238.832550px;}
.yae{bottom:239.122350px;}
.y8a{bottom:250.077450px;}
.ye8{bottom:254.161500px;}
.y43{bottom:255.301050px;}
.y20{bottom:255.900900px;}
.y89{bottom:271.077450px;}
.yca{bottom:271.752300px;}
.y6a{bottom:271.832550px;}
.yad{bottom:275.607300px;}
.y42{bottom:277.801050px;}
.y1f{bottom:278.400900px;}
.y41{bottom:300.301050px;}
.y88{bottom:300.581250px;}
.y1e{bottom:300.900900px;}
.yc9{bottom:301.256250px;}
.y69{bottom:301.336500px;}
.yac{bottom:312.092250px;}
.y40{bottom:322.801050px;}
.y87{bottom:323.081250px;}
.y1d{bottom:323.400900px;}
.ye7{bottom:327.465450px;}
.yc8{bottom:330.760200px;}
.y68{bottom:330.840450px;}
.y3f{bottom:345.301050px;}
.y86{bottom:345.581250px;}
.y1c{bottom:345.900900px;}
.yab{bottom:348.577200px;}
.ye6{bottom:349.965450px;}
.y67{bottom:351.840450px;}
.yc7{bottom:353.260200px;}
.yaa{bottom:366.577200px;}
.y3e{bottom:367.801050px;}
.y85{bottom:368.081250px;}
.y1b{bottom:368.400900px;}
.ye5{bottom:372.465450px;}
.y66{bottom:381.344400px;}
.ya9{bottom:384.577200px;}
.y3d{bottom:390.301050px;}
.y84{bottom:390.581250px;}
.y1a{bottom:390.900900px;}
.ye4{bottom:394.965450px;}
.yc6{bottom:400.239000px;}
.y65{bottom:403.844400px;}
.y3c{bottom:412.801050px;}
.y83{bottom:413.081250px;}
.y19{bottom:413.400900px;}
.ye3{bottom:417.465450px;}
.ya8{bottom:421.062150px;}
.y64{bottom:426.344400px;}
.yc5{bottom:432.472050px;}
.y3b{bottom:435.301050px;}
.y82{bottom:435.581250px;}
.y18{bottom:435.900900px;}
.ye2{bottom:439.965450px;}
.y63{bottom:448.844400px;}
.yc4{bottom:450.472050px;}
.ya7{bottom:457.547100px;}
.y3a{bottom:457.801050px;}
.y17{bottom:458.400900px;}
.ye1{bottom:462.465450px;}
.y81{bottom:468.581250px;}
.y62{bottom:471.344400px;}
.ya6{bottom:475.547100px;}
.y39{bottom:480.301050px;}
.y16{bottom:480.900900px;}
.yc3{bottom:482.704950px;}
.ye0{bottom:484.965450px;}
.ya5{bottom:493.547100px;}
.y61{bottom:493.844400px;}
.y80{bottom:498.085200px;}
.y38{bottom:502.801050px;}
.y15{bottom:503.400900px;}
.ydf{bottom:507.465450px;}
.yc2{bottom:514.938000px;}
.y60{bottom:516.344400px;}
.y37{bottom:525.301050px;}
.y14{bottom:525.900900px;}
.y7f{bottom:527.589150px;}
.ya4{bottom:527.903100px;}
.yde{bottom:529.965450px;}
.y5f{bottom:538.844400px;}
.yc1{bottom:547.170900px;}
.y13{bottom:548.400900px;}
.ydd{bottom:552.465450px;}
.y7e{bottom:557.093100px;}
.y5e{bottom:561.344400px;}
.yc0{bottom:565.170900px;}
.ya3{bottom:570.203100px;}
.y12{bottom:570.900900px;}
.y36{bottom:574.552950px;}
.ydc{bottom:574.965450px;}
.y7d{bottom:579.593100px;}
.y5d{bottom:583.844400px;}
.ya2{bottom:592.703100px;}
.y11{bottom:593.400900px;}
.ybf{bottom:597.403950px;}
.y35{bottom:598.605000px;}
.ya1{bottom:615.203100px;}
.ybe{bottom:615.403950px;}
.y10{bottom:615.900900px;}
.y7c{bottom:625.723950px;}
.ydb{bottom:628.469400px;}
.y5c{bottom:636.223350px;}
.ya0{bottom:637.703100px;}
.yf{bottom:638.400900px;}
.ybd{bottom:647.637000px;}
.ye{bottom:660.900900px;}
.y7b{bottom:662.208900px;}
.ybc{bottom:665.637000px;}
.y5b{bottom:668.456250px;}
.y9f{bottom:670.703100px;}
.yd{bottom:683.400900px;}
.ybb{bottom:683.637000px;}
.y7a{bottom:698.693850px;}
.y9e{bottom:700.207050px;}
.y5a{bottom:700.689300px;}
.yc{bottom:705.900900px;}
.y79{bottom:716.693850px;}
.yba{bottom:717.993000px;}
.yda{bottom:718.169400px;}
.yb{bottom:728.400900px;}
.y9d{bottom:729.711000px;}
.y59{bottom:732.922200px;}
.yd9{bottom:740.669400px;}
.ya{bottom:750.900900px;}
.y78{bottom:753.178800px;}
.y9c{bottom:759.214800px;}
.yb9{bottom:760.293000px;}
.yd8{bottom:763.169400px;}
.y58{bottom:765.155250px;}
.yfc{bottom:766.102350px;}
.y9{bottom:773.400900px;}
.y9b{bottom:781.714800px;}
.yb8{bottom:782.793000px;}
.yfb{bottom:783.202350px;}
.yd7{bottom:785.669400px;}
.y77{bottom:789.663750px;}
.y8{bottom:795.900900px;}
.y57{bottom:797.388300px;}
.y9a{bottom:804.214800px;}
.yb7{bottom:805.293000px;}
.y76{bottom:807.663750px;}
.yd6{bottom:808.169400px;}
.y7{bottom:818.400900px;}
.yfa{bottom:827.302350px;}
.yb6{bottom:827.793000px;}
.y56{bottom:829.621200px;}
.y75{bottom:844.148850px;}
.yf9{bottom:847.102350px;}
.y55{bottom:847.621200px;}
.yb5{bottom:850.293000px;}
.yd5{bottom:856.048350px;}
.y99{bottom:856.593900px;}
.y74{bottom:862.148850px;}
.yf8{bottom:866.902350px;}
.yb4{bottom:872.793000px;}
.y34{bottom:875.805000px;}
.yf7{bottom:886.702350px;}
.yd4{bottom:888.281400px;}
.y98{bottom:888.826800px;}
.y54{bottom:889.148850px;}
.yb3{bottom:895.293000px;}
.y73{bottom:896.504850px;}
.y33{bottom:898.305000px;}
.yf6{bottom:906.502350px;}
.y53{bottom:907.148850px;}
.y6{bottom:908.400900px;}
.yd3{bottom:920.514300px;}
.y32{bottom:920.805000px;}
.y97{bottom:921.059850px;}
.yf5{bottom:926.302350px;}
.y52{bottom:941.504850px;}
.y72{bottom:943.304850px;}
.y31{bottom:943.305000px;}
.yb2{bottom:944.793000px;}
.yf4{bottom:946.102350px;}
.yd2{bottom:952.747350px;}
.y96{bottom:953.292750px;}
.y71{bottom:965.804850px;}
.y30{bottom:965.805000px;}
.yf3{bottom:965.902350px;}
.y95{bottom:971.292750px;}
.y5{bottom:971.400900px;}
.yb1{bottom:974.296950px;}
.yd1{bottom:984.980250px;}
.yf2{bottom:985.702350px;}
.y51{bottom:988.304850px;}
.y2f{bottom:988.305000px;}
.y94{bottom:1003.525800px;}
.yb0{bottom:1003.800900px;}
.yf1{bottom:1005.502350px;}
.yd0{bottom:1007.480250px;}
.y50{bottom:1010.804850px;}
.y2e{bottom:1010.805000px;}
.y93{bottom:1021.525800px;}
.yf0{bottom:1025.302350px;}
.y4f{bottom:1033.304850px;}
.y2d{bottom:1033.305000px;}
.ycf{bottom:1039.713300px;}
.yef{bottom:1045.102350px;}
.y92{bottom:1053.946350px;}
.y4e{bottom:1055.804850px;}
.y2c{bottom:1055.805000px;}
.yce{bottom:1064.829750px;}
.yee{bottom:1064.902350px;}
.y91{bottom:1071.946350px;}
.y4d{bottom:1078.304850px;}
.y2b{bottom:1078.305000px;}
.yed{bottom:1084.702350px;}
.y90{bottom:1089.946350px;}
.y4c{bottom:1100.804850px;}
.y2a{bottom:1100.805000px;}
.y4{bottom:1102.304850px;}
.yec{bottom:1104.502350px;}
.y3{bottom:1123.304850px;}
.y29{bottom:1123.305000px;}
.y8f{bottom:1124.302350px;}
.y4b{bottom:1176.323550px;}
.y28{bottom:1176.323700px;}
.ha{height:29.418902px;}
.h2{height:43.989258px;}
.h3{height:45.852539px;}
.hb{height:48.399902px;}
.h8{height:50.947266px;}
.h9{height:53.494629px;}
.h5{height:56.041992px;}
.h4{height:58.218750px;}
.h7{height:61.136719px;}
.hc{height:71.326172px;}
.h6{height:91.705078px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:106.299150px;}
.x4{left:110.926200px;}
.x2{left:127.559100px;}
.xf{left:154.559100px;}
.xe{left:161.574750px;}
.xc{left:305.078700px;}
.x5{left:344.784450px;}
.x7{left:351.212550px;}
.x3{left:385.890150px;}
.x9{left:425.571900px;}
.xd{left:508.772850px;}
.x8{left:546.062550px;}
.xa{left:555.944850px;}
.x6{left:557.382900px;}
.xb{left:633.414600px;}
.x11{left:670.554600px;}
.x10{left:679.516500px;}
@media print{
.v3{vertical-align:-16.872000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.666667pt;}
.v2{vertical-align:19.536000pt;}
.v4{vertical-align:21.311467pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.011200pt;}
.lsb{letter-spacing:0.025067pt;}
.lsa{letter-spacing:0.320000pt;}
.ls2{letter-spacing:2.666667pt;}
.ls7{letter-spacing:3.730963pt;}
.ls6{letter-spacing:3.733333pt;}
.ls8{letter-spacing:3.742222pt;}
.ls4{letter-spacing:4.266667pt;}
.ls5{letter-spacing:4.800000pt;}
.lsf{letter-spacing:5.866667pt;}
.ls0{letter-spacing:6.400000pt;}
.lse{letter-spacing:7.466667pt;}
.lsc{letter-spacing:9.520533pt;}
.ls1{letter-spacing:9.600000pt;}
.ls9{letter-spacing:135.845333pt;}
.ws9{word-spacing:-28.448000pt;}
.ws6{word-spacing:-18.304000pt;}
.ws4{word-spacing:-17.984000pt;}
.ws8{word-spacing:-16.485333pt;}
.ws1{word-spacing:-15.808000pt;}
.ws3{word-spacing:-14.986667pt;}
.ws5{word-spacing:-13.173333pt;}
.ws7{word-spacing:-10.484672pt;}
.ws0{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
._45{margin-left:-538.168000pt;}
._d{margin-left:-18.254400pt;}
._31{margin-left:-17.253333pt;}
._29{margin-left:-14.922667pt;}
._12{margin-left:-12.608000pt;}
._14{margin-left:-11.498667pt;}
._44{margin-left:-10.430400pt;}
._7{margin-left:-9.280000pt;}
._18{margin-left:-7.701867pt;}
._b{margin-left:-6.736000pt;}
._3{margin-left:-5.760000pt;}
._15{margin-left:-4.800000pt;}
._e{margin-left:-3.680000pt;}
._6{margin-left:-2.560000pt;}
._1{margin-left:-1.008000pt;}
._4{width:1.200000pt;}
._8{width:2.288000pt;}
._9{width:3.648000pt;}
._13{width:4.736000pt;}
._f{width:5.632000pt;}
._a{width:7.040000pt;}
._17{width:8.208000pt;}
._10{width:9.136000pt;}
._11{width:10.496000pt;}
._16{width:13.056000pt;}
._22{width:14.096000pt;}
._c{width:17.024000pt;}
._43{width:29.120000pt;}
._3b{width:34.631704pt;}
._23{width:52.520701pt;}
._0{width:61.072000pt;}
._39{width:89.891556pt;}
._19{width:104.674667pt;}
._3c{width:155.271704pt;}
._28{width:179.333333pt;}
._2f{width:243.122133pt;}
._2b{width:271.121600pt;}
._1e{width:274.673600pt;}
._2d{width:288.134933pt;}
._32{width:306.019556pt;}
._3e{width:311.081481pt;}
._2{width:328.185067pt;}
._24{width:393.348800pt;}
._3d{width:431.517037pt;}
._27{width:471.040000pt;}
._1b{width:472.866667pt;}
._41{width:476.338370pt;}
._1d{width:491.816000pt;}
._26{width:511.738133pt;}
._33{width:520.734815pt;}
._34{width:535.571556pt;}
._35{width:558.168889pt;}
._1c{width:580.492267pt;}
._2c{width:584.452267pt;}
._38{width:588.440889pt;}
._1a{width:593.544000pt;}
._3f{width:611.022815pt;}
._36{width:614.664889pt;}
._3a{width:629.566222pt;}
._25{width:645.498133pt;}
._5{width:656.272000pt;}
._2a{width:657.737600pt;}
._37{width:738.670815pt;}
._42{width:910.233481pt;}
._2e{width:965.619733pt;}
._1f{width:1012.174933pt;}
._30{width:1077.504533pt;}
._40{width:1105.945481pt;}
._20{width:1264.324267pt;}
._21{width:1268.526933pt;}
.fs9{font-size:29.538667pt;}
.fs7{font-size:34.202667pt;}
.fsb{font-size:37.312000pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs8{font-size:56.000000pt;}
.fs0{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fsc{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:51.627600pt;}
.y2{bottom:51.627733pt;}
.y27{bottom:51.627867pt;}
.y49{bottom:70.560933pt;}
.y1{bottom:70.561067pt;}
.y26{bottom:70.561200pt;}
.ycd{bottom:113.385733pt;}
.y70{bottom:113.385867pt;}
.y8e{bottom:124.947200pt;}
.y48{bottom:126.934267pt;}
.y25{bottom:127.467467pt;}
.y6f{bottom:128.052400pt;}
.ycc{bottom:132.270400pt;}
.y8d{bottom:143.613867pt;}
.yeb{bottom:145.562400pt;}
.y47{bottom:146.934267pt;}
.y6e{bottom:146.937067pt;}
.y24{bottom:147.467467pt;}
.yea{bottom:163.162267pt;}
.y46{bottom:166.934267pt;}
.y23{bottom:167.467467pt;}
.y8c{bottom:169.839467pt;}
.y6d{bottom:172.295600pt;}
.yaf{bottom:180.122133pt;}
.ye9{bottom:180.762267pt;}
.y45{bottom:186.934267pt;}
.y22{bottom:187.467467pt;}
.y6c{bottom:192.295600pt;}
.y8b{bottom:196.065333pt;}
.y44{bottom:206.934267pt;}
.y21{bottom:207.467467pt;}
.ycb{bottom:212.224267pt;}
.y6b{bottom:212.295600pt;}
.yae{bottom:212.553200pt;}
.y8a{bottom:222.291067pt;}
.ye8{bottom:225.921333pt;}
.y43{bottom:226.934267pt;}
.y20{bottom:227.467467pt;}
.y89{bottom:240.957733pt;}
.yca{bottom:241.557600pt;}
.y6a{bottom:241.628933pt;}
.yad{bottom:244.984267pt;}
.y42{bottom:246.934267pt;}
.y1f{bottom:247.467467pt;}
.y41{bottom:266.934267pt;}
.y88{bottom:267.183333pt;}
.y1e{bottom:267.467467pt;}
.yc9{bottom:267.783333pt;}
.y69{bottom:267.854667pt;}
.yac{bottom:277.415333pt;}
.y40{bottom:286.934267pt;}
.y87{bottom:287.183333pt;}
.y1d{bottom:287.467467pt;}
.ye7{bottom:291.080400pt;}
.yc8{bottom:294.009067pt;}
.y68{bottom:294.080400pt;}
.y3f{bottom:306.934267pt;}
.y86{bottom:307.183333pt;}
.y1c{bottom:307.467467pt;}
.yab{bottom:309.846400pt;}
.ye6{bottom:311.080400pt;}
.y67{bottom:312.747067pt;}
.yc7{bottom:314.009067pt;}
.yaa{bottom:325.846400pt;}
.y3e{bottom:326.934267pt;}
.y85{bottom:327.183333pt;}
.y1b{bottom:327.467467pt;}
.ye5{bottom:331.080400pt;}
.y66{bottom:338.972800pt;}
.ya9{bottom:341.846400pt;}
.y3d{bottom:346.934267pt;}
.y84{bottom:347.183333pt;}
.y1a{bottom:347.467467pt;}
.ye4{bottom:351.080400pt;}
.yc6{bottom:355.768000pt;}
.y65{bottom:358.972800pt;}
.y3c{bottom:366.934267pt;}
.y83{bottom:367.183333pt;}
.y19{bottom:367.467467pt;}
.ye3{bottom:371.080400pt;}
.ya8{bottom:374.277467pt;}
.y64{bottom:378.972800pt;}
.yc5{bottom:384.419600pt;}
.y3b{bottom:386.934267pt;}
.y82{bottom:387.183333pt;}
.y18{bottom:387.467467pt;}
.ye2{bottom:391.080400pt;}
.y63{bottom:398.972800pt;}
.yc4{bottom:400.419600pt;}
.ya7{bottom:406.708533pt;}
.y3a{bottom:406.934267pt;}
.y17{bottom:407.467467pt;}
.ye1{bottom:411.080400pt;}
.y81{bottom:416.516667pt;}
.y62{bottom:418.972800pt;}
.ya6{bottom:422.708533pt;}
.y39{bottom:426.934267pt;}
.y16{bottom:427.467467pt;}
.yc3{bottom:429.071067pt;}
.ye0{bottom:431.080400pt;}
.ya5{bottom:438.708533pt;}
.y61{bottom:438.972800pt;}
.y80{bottom:442.742400pt;}
.y38{bottom:446.934267pt;}
.y15{bottom:447.467467pt;}
.ydf{bottom:451.080400pt;}
.yc2{bottom:457.722667pt;}
.y60{bottom:458.972800pt;}
.y37{bottom:466.934267pt;}
.y14{bottom:467.467467pt;}
.y7f{bottom:468.968133pt;}
.ya4{bottom:469.247200pt;}
.yde{bottom:471.080400pt;}
.y5f{bottom:478.972800pt;}
.yc1{bottom:486.374133pt;}
.y13{bottom:487.467467pt;}
.ydd{bottom:491.080400pt;}
.y7e{bottom:495.193867pt;}
.y5e{bottom:498.972800pt;}
.yc0{bottom:502.374133pt;}
.ya3{bottom:506.847200pt;}
.y12{bottom:507.467467pt;}
.y36{bottom:510.713733pt;}
.ydc{bottom:511.080400pt;}
.y7d{bottom:515.193867pt;}
.y5d{bottom:518.972800pt;}
.ya2{bottom:526.847200pt;}
.y11{bottom:527.467467pt;}
.ybf{bottom:531.025733pt;}
.y35{bottom:532.093333pt;}
.ya1{bottom:546.847200pt;}
.ybe{bottom:547.025733pt;}
.y10{bottom:547.467467pt;}
.y7c{bottom:556.199067pt;}
.ydb{bottom:558.639467pt;}
.y5c{bottom:565.531867pt;}
.ya0{bottom:566.847200pt;}
.yf{bottom:567.467467pt;}
.ybd{bottom:575.677333pt;}
.ye{bottom:587.467467pt;}
.y7b{bottom:588.630133pt;}
.ybc{bottom:591.677333pt;}
.y5b{bottom:594.183333pt;}
.y9f{bottom:596.180533pt;}
.yd{bottom:607.467467pt;}
.ybb{bottom:607.677333pt;}
.y7a{bottom:621.061200pt;}
.y9e{bottom:622.406267pt;}
.y5a{bottom:622.834933pt;}
.yc{bottom:627.467467pt;}
.y79{bottom:637.061200pt;}
.yba{bottom:638.216000pt;}
.yda{bottom:638.372800pt;}
.yb{bottom:647.467467pt;}
.y9d{bottom:648.632000pt;}
.y59{bottom:651.486400pt;}
.yd9{bottom:658.372800pt;}
.ya{bottom:667.467467pt;}
.y78{bottom:669.492267pt;}
.y9c{bottom:674.857600pt;}
.yb9{bottom:675.816000pt;}
.yd8{bottom:678.372800pt;}
.y58{bottom:680.138000pt;}
.yfc{bottom:680.979867pt;}
.y9{bottom:687.467467pt;}
.y9b{bottom:694.857600pt;}
.yb8{bottom:695.816000pt;}
.yfb{bottom:696.179867pt;}
.yd7{bottom:698.372800pt;}
.y77{bottom:701.923333pt;}
.y8{bottom:707.467467pt;}
.y57{bottom:708.789600pt;}
.y9a{bottom:714.857600pt;}
.yb7{bottom:715.816000pt;}
.y76{bottom:717.923333pt;}
.yd6{bottom:718.372800pt;}
.y7{bottom:727.467467pt;}
.yfa{bottom:735.379867pt;}
.yb6{bottom:735.816000pt;}
.y56{bottom:737.441067pt;}
.y75{bottom:750.354533pt;}
.yf9{bottom:752.979867pt;}
.y55{bottom:753.441067pt;}
.yb5{bottom:755.816000pt;}
.yd5{bottom:760.931867pt;}
.y99{bottom:761.416800pt;}
.y74{bottom:766.354533pt;}
.yf8{bottom:770.579867pt;}
.yb4{bottom:775.816000pt;}
.y34{bottom:778.493333pt;}
.yf7{bottom:788.179867pt;}
.yd4{bottom:789.583467pt;}
.y98{bottom:790.068267pt;}
.y54{bottom:790.354533pt;}
.yb3{bottom:795.816000pt;}
.y73{bottom:796.893200pt;}
.y33{bottom:798.493333pt;}
.yf6{bottom:805.779867pt;}
.y53{bottom:806.354533pt;}
.y6{bottom:807.467467pt;}
.yd3{bottom:818.234933pt;}
.y32{bottom:818.493333pt;}
.y97{bottom:818.719867pt;}
.yf5{bottom:823.379867pt;}
.y52{bottom:836.893200pt;}
.y72{bottom:838.493200pt;}
.y31{bottom:838.493333pt;}
.yb2{bottom:839.816000pt;}
.yf4{bottom:840.979867pt;}
.yd2{bottom:846.886533pt;}
.y96{bottom:847.371333pt;}
.y71{bottom:858.493200pt;}
.y30{bottom:858.493333pt;}
.yf3{bottom:858.579867pt;}
.y95{bottom:863.371333pt;}
.y5{bottom:863.467467pt;}
.yb1{bottom:866.041733pt;}
.yd1{bottom:875.538000pt;}
.yf2{bottom:876.179867pt;}
.y51{bottom:878.493200pt;}
.y2f{bottom:878.493333pt;}
.y94{bottom:892.022933pt;}
.yb0{bottom:892.267467pt;}
.yf1{bottom:893.779867pt;}
.yd0{bottom:895.538000pt;}
.y50{bottom:898.493200pt;}
.y2e{bottom:898.493333pt;}
.y93{bottom:908.022933pt;}
.yf0{bottom:911.379867pt;}
.y4f{bottom:918.493200pt;}
.y2d{bottom:918.493333pt;}
.ycf{bottom:924.189600pt;}
.yef{bottom:928.979867pt;}
.y92{bottom:936.841200pt;}
.y4e{bottom:938.493200pt;}
.y2c{bottom:938.493333pt;}
.yce{bottom:946.515333pt;}
.yee{bottom:946.579867pt;}
.y91{bottom:952.841200pt;}
.y4d{bottom:958.493200pt;}
.y2b{bottom:958.493333pt;}
.yed{bottom:964.179867pt;}
.y90{bottom:968.841200pt;}
.y4c{bottom:978.493200pt;}
.y2a{bottom:978.493333pt;}
.y4{bottom:979.826533pt;}
.yec{bottom:981.779867pt;}
.y3{bottom:998.493200pt;}
.y29{bottom:998.493333pt;}
.y8f{bottom:999.379867pt;}
.y4b{bottom:1045.620933pt;}
.y28{bottom:1045.621067pt;}
.ha{height:26.150135pt;}
.h2{height:39.101562pt;}
.h3{height:40.757812pt;}
.hb{height:43.022135pt;}
.h8{height:45.286458pt;}
.h9{height:47.550781pt;}
.h5{height:49.815104pt;}
.h4{height:51.750000pt;}
.h7{height:54.343750pt;}
.hc{height:63.401042pt;}
.h6{height:81.515625pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:94.488133pt;}
.x4{left:98.601067pt;}
.x2{left:113.385867pt;}
.xf{left:137.385867pt;}
.xe{left:143.622000pt;}
.xc{left:271.181067pt;}
.x5{left:306.475067pt;}
.x7{left:312.188933pt;}
.x3{left:343.013467pt;}
.x9{left:378.286133pt;}
.xd{left:452.242533pt;}
.x8{left:485.388933pt;}
.xa{left:494.173200pt;}
.x6{left:495.451467pt;}
.xb{left:563.035200pt;}
.x11{left:596.048533pt;}
.x10{left:604.014667pt;}
}




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