
    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_fee1d26acad218a3b4c6da7c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_fec700ffc513936b7a14b78c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995000;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_1b1dfd03ad1a2a1ca467c8be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939000;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_78bb627c863a731d7163790c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.272949;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_91151bb292418e92fd919210.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.943000;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_4f64a1ff84c6fa1ee9860b50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.993000;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_ab90bf6bc3a19eb905893bd5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995000;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-5.238000px;}
.v1{vertical-align:-2.586000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.586000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000028px;}
.ls1{letter-spacing:0.000257px;}
.ls3{letter-spacing:32.727300px;}
.ls4{letter-spacing:71.732698px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-427.176183px;}
.wsf{word-spacing:-74.361300px;}
.ws3{word-spacing:-63.697039px;}
.ws4{word-spacing:-48.011882px;}
.ws10{word-spacing:-38.816599px;}
.wse{word-spacing:-37.180650px;}
.wsb{word-spacing:-32.727300px;}
.ws2{word-spacing:-22.416000px;}
.ws13{word-spacing:-21.796382px;}
.ws15{word-spacing:-21.730927px;}
.ws16{word-spacing:-21.665473px;}
.ws19{word-spacing:-21.605377px;}
.ws7{word-spacing:-19.309107px;}
.ws18{word-spacing:-19.047289px;}
.ws11{word-spacing:-18.981834px;}
.ws44{word-spacing:-18.005357px;}
.ws31{word-spacing:-18.004531px;}
.ws1b{word-spacing:-17.932800px;}
.ws30{word-spacing:-17.931149px;}
.ws1a{word-spacing:-17.929642px;}
.ws12{word-spacing:-17.280014px;}
.wsd{word-spacing:-17.083651px;}
.ws9{word-spacing:-17.018196px;}
.ws5{word-spacing:-16.504103px;}
.ws8{word-spacing:-16.429105px;}
.wsa{word-spacing:-16.363650px;}
.ws6{word-spacing:-14.923649px;}
.wsc{word-spacing:-14.858194px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:24.021838px;}
.ws17{word-spacing:27.360023px;}
.ws4e{word-spacing:38.937210px;}
.ws45{word-spacing:38.937736px;}
.ws4d{word-spacing:38.938280px;}
.ws49{word-spacing:38.938828px;}
.ws48{word-spacing:38.939920px;}
.ws47{word-spacing:39.001010px;}
.ws46{word-spacing:39.001558px;}
.ws4b{word-spacing:39.002096px;}
.ws4c{word-spacing:39.002099px;}
.ws27{word-spacing:39.002123px;}
.ws4a{word-spacing:39.002646px;}
.ws4f{word-spacing:39.005389px;}
.ws2d{word-spacing:789.239225px;}
.ws2e{word-spacing:789.239228px;}
.ws2c{word-spacing:789.239778px;}
.ws24{word-spacing:789.239803px;}
.ws2f{word-spacing:789.240320px;}
.ws23{word-spacing:789.240347px;}
.ws1f{word-spacing:789.240352px;}
.ws2b{word-spacing:789.240863px;}
.ws25{word-spacing:789.240896px;}
.ws21{word-spacing:789.240898px;}
.ws26{word-spacing:789.241981px;}
.ws2a{word-spacing:789.301955px;}
.ws1d{word-spacing:789.301981px;}
.ws1c{word-spacing:789.302527px;}
.ws29{word-spacing:789.303587px;}
.ws20{word-spacing:789.303619px;}
.ws1e{word-spacing:789.303624px;}
.ws28{word-spacing:789.304134px;}
.ws22{word-spacing:789.306889px;}
.ws41{word-spacing:802.198685px;}
.ws3a{word-spacing:802.199267px;}
.ws40{word-spacing:802.200320px;}
.ws39{word-spacing:802.200356px;}
.ws43{word-spacing:802.200866px;}
.ws36{word-spacing:802.201445px;}
.ws3f{word-spacing:802.201955px;}
.ws37{word-spacing:802.201997px;}
.ws3d{word-spacing:802.261955px;}
.ws3e{word-spacing:802.261960px;}
.ws33{word-spacing:802.262537px;}
.ws35{word-spacing:802.262538px;}
.ws34{word-spacing:802.262543px;}
.ws38{word-spacing:802.262546px;}
.ws42{word-spacing:802.263047px;}
.ws3c{word-spacing:802.263587px;}
.ws32{word-spacing:802.263629px;}
.ws3b{word-spacing:802.264172px;}
._12{margin-left:-32.858209px;}
._0{margin-left:-28.674477px;}
._3{margin-left:-12.044796px;}
._d{margin-left:-9.267610px;}
._4{margin-left:-7.077449px;}
._c{margin-left:-6.021823px;}
._1{margin-left:-4.214208px;}
._a{margin-left:-3.076366px;}
._2{margin-left:-1.793280px;}
._b{width:1.518019px;}
._9{width:2.971463px;}
._7{width:11.807834px;}
._8{width:14.426018px;}
._5{width:16.480224px;}
._6{width:18.837482px;}
._14{width:30.541105px;}
._11{width:34.226869px;}
._13{width:41.113795px;}
._16{width:43.038600px;}
._f{width:62.312779px;}
._17{width:71.894170px;}
._29{width:210.501869px;}
._23{width:372.576107px;}
._1f{width:468.147044px;}
._32{width:531.838819px;}
._33{width:556.725010px;}
._28{width:621.492183px;}
._27{width:655.213865px;}
._34{width:774.701391px;}
._35{width:832.366894px;}
._2b{width:835.777100px;}
._2c{width:844.205516px;}
._2a{width:849.154015px;}
._18{width:916.841884px;}
._21{width:933.608110px;}
._1e{width:934.855342px;}
._20{width:945.847469px;}
._31{width:950.002253px;}
._1a{width:1015.794904px;}
._1d{width:1039.478691px;}
._19{width:1062.159448px;}
._1c{width:1071.183831px;}
._1b{width:1091.646007px;}
._26{width:1155.379660px;}
._24{width:1156.969698px;}
._22{width:1175.035168px;}
._25{width:1195.495559px;}
._30{width:1299.464362px;}
._2e{width:1358.569866px;}
._2d{width:1472.551438px;}
._e{width:1508.053481px;}
._15{width:1789.233446px;}
._2f{width:1792.635446px;}
._10{width:1851.061658px;}
.fc5{color:rgb(10,146,141);}
.fc4{color:rgb(79,117,144);}
.fc3{color:rgb(168,77,99);}
.fc2{color:rgb(77,198,244);}
.fc1{color:rgb(16,106,175);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fsd{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:86.077200px;}
.fs7{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:125.529000px;}
.fsb{font-size:148.722600px;}
.fs8{font-size:191.282400px;}
.fs5{font-size:735.243000px;}
.y0{bottom:0.000000px;}
.y7f{bottom:61.507500px;}
.y51{bottom:61.507523px;}
.y45{bottom:67.196167px;}
.y4{bottom:97.125005px;}
.y44{bottom:107.843167px;}
.y43{bottom:128.166667px;}
.yad{bottom:130.542000px;}
.y1e{bottom:139.264499px;}
.y7e{bottom:144.037500px;}
.y4b{bottom:147.883521px;}
.y42{bottom:148.490167px;}
.yac{bottom:150.865500px;}
.y24{bottom:154.584022px;}
.y7d{bottom:164.361000px;}
.y41{bottom:168.813667px;}
.yab{bottom:171.189000px;}
.y7c{bottom:184.684500px;}
.y40{bottom:189.138667px;}
.yaa{bottom:191.512500px;}
.y15{bottom:196.933500px;}
.y7b{bottom:205.008000px;}
.y1d{bottom:209.518500px;}
.y14{bottom:209.533503px;}
.ya9{bottom:211.836000px;}
.y1c{bottom:222.118502px;}
.y13{bottom:222.133505px;}
.y7a{bottom:225.331500px;}
.y3f{bottom:229.160167px;}
.ya8{bottom:232.161000px;}
.y1b{bottom:234.718504px;}
.y12{bottom:234.733496px;}
.y79{bottom:245.655000px;}
.ya7{bottom:252.484500px;}
.y1a{bottom:259.918497px;}
.y11{bottom:259.933500px;}
.y78{bottom:265.980000px;}
.y3e{bottom:269.826067px;}
.y19{bottom:272.518500px;}
.y10{bottom:272.533503px;}
.ya6{bottom:272.808000px;}
.y18{bottom:285.118502px;}
.yf{bottom:285.133499px;}
.y77{bottom:286.303500px;}
.y3d{bottom:290.149567px;}
.ya5{bottom:293.131500px;}
.y76{bottom:306.627000px;}
.y17{bottom:310.318501px;}
.ye{bottom:310.333501px;}
.ya4{bottom:313.455000px;}
.y23{bottom:319.040084px;}
.y16{bottom:322.918500px;}
.yd{bottom:322.933500px;}
.y75{bottom:326.950500px;}
.ya3{bottom:333.778500px;}
.yc{bottom:348.133500px;}
.ya2{bottom:354.103500px;}
.ya1{bottom:374.427000px;}
.y74{bottom:377.103000px;}
.y22{bottom:378.200984px;}
.yb{bottom:386.785499px;}
.ya0{bottom:394.750500px;}
.ya{bottom:408.044999px;}
.y9f{bottom:415.074000px;}
.y9e{bottom:435.397500px;}
.y73{bottom:442.260000px;}
.y3c{bottom:444.206999px;}
.y9d{bottom:455.722500px;}
.y72{bottom:462.585000px;}
.y3b{bottom:464.530499px;}
.y9c{bottom:476.046000px;}
.y71{bottom:482.908500px;}
.y3a{bottom:484.855499px;}
.y9b{bottom:496.369500px;}
.y70{bottom:503.232000px;}
.y9a{bottom:516.693000px;}
.y6f{bottom:523.555500px;}
.y99{bottom:537.016500px;}
.y9{bottom:538.864499px;}
.y6e{bottom:543.879000px;}
.y8{bottom:556.864499px;}
.y98{bottom:557.340000px;}
.y6d{bottom:564.204000px;}
.y39{bottom:568.326022px;}
.y97{bottom:577.665000px;}
.y6c{bottom:584.527500px;}
.y38{bottom:588.649522px;}
.y96{bottom:597.988500px;}
.y6b{bottom:604.851000px;}
.y37{bottom:608.974522px;}
.y95{bottom:618.312000px;}
.y6a{bottom:625.174500px;}
.y36{bottom:629.298022px;}
.y69{bottom:645.498000px;}
.y7{bottom:645.510000px;}
.y35{bottom:649.621522px;}
.y68{bottom:665.821500px;}
.y6{bottom:666.771000px;}
.y94{bottom:668.464500px;}
.y34{bottom:669.945022px;}
.y67{bottom:686.146500px;}
.y33{bottom:690.268522px;}
.y66{bottom:706.470000px;}
.y32{bottom:710.593522px;}
.y4a{bottom:716.395521px;}
.y5{bottom:726.298500px;}
.y65{bottom:726.793500px;}
.y93{bottom:733.621500px;}
.y49{bottom:746.552293px;}
.y64{bottom:747.117000px;}
.y3{bottom:752.599495px;}
.y92{bottom:753.945000px;}
.y63{bottom:767.440500px;}
.y91{bottom:774.270000px;}
.y62{bottom:787.765500px;}
.y90{bottom:794.593500px;}
.y48{bottom:807.524293px;}
.y61{bottom:808.089000px;}
.y31{bottom:814.896646px;}
.y8f{bottom:814.917000px;}
.y60{bottom:828.412500px;}
.y8e{bottom:835.240500px;}
.y5f{bottom:848.736000px;}
.y30{bottom:855.545146px;}
.y8d{bottom:855.564000px;}
.y47{bottom:861.172393px;}
.y21{bottom:868.360522px;}
.y5e{bottom:869.059500px;}
.y2f{bottom:875.870146px;}
.y8c{bottom:875.889000px;}
.y2{bottom:879.369000px;}
.y5d{bottom:889.383000px;}
.y2e{bottom:896.193646px;}
.y8b{bottom:896.212500px;}
.y5c{bottom:909.708000px;}
.y2d{bottom:916.517146px;}
.y8a{bottom:916.536000px;}
.y5b{bottom:930.031500px;}
.y2c{bottom:936.840646px;}
.y89{bottom:936.859500px;}
.y5a{bottom:950.355000px;}
.y2b{bottom:957.164146px;}
.y88{bottom:957.183000px;}
.y1{bottom:966.726000px;}
.y59{bottom:970.678500px;}
.y2a{bottom:977.489146px;}
.y87{bottom:977.506500px;}
.y58{bottom:991.002000px;}
.y86{bottom:997.831500px;}
.y1f{bottom:999.439522px;}
.y20{bottom:1007.944491px;}
.y57{bottom:1011.327000px;}
.y85{bottom:1018.155000px;}
.y29{bottom:1018.155046px;}
.y56{bottom:1031.650500px;}
.y84{bottom:1038.478500px;}
.y28{bottom:1038.478546px;}
.y50{bottom:1041.753005px;}
.y55{bottom:1051.974000px;}
.y83{bottom:1058.802000px;}
.y4f{bottom:1062.076505px;}
.y82{bottom:1079.125500px;}
.y4e{bottom:1082.400005px;}
.y27{bottom:1099.431604px;}
.y81{bottom:1099.450500px;}
.y54{bottom:1102.126500px;}
.y4d{bottom:1102.725005px;}
.y80{bottom:1119.774000px;}
.y26{bottom:1119.774004px;}
.y46{bottom:1120.276519px;}
.y53{bottom:1140.097500px;}
.y25{bottom:1140.097504px;}
.y52{bottom:1193.145000px;}
.y4c{bottom:1193.145022px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h14{height:47.454585px;}
.hf{height:47.716403px;}
.h17{height:47.722403px;}
.he{height:47.934229px;}
.h3{height:48.195000px;}
.h12{height:48.240040px;}
.h15{height:48.370949px;}
.h16{height:52.292045px;}
.h2{height:55.080000px;}
.h13{height:62.405970px;}
.hb{height:65.006400px;}
.h5{height:78.030000px;}
.ha{height:91.008525px;}
.h10{height:107.823885px;}
.h4{height:119.055004px;}
.hc{height:138.679740px;}
.h11{height:150.901154px;}
.hd{height:194.084388px;}
.h9{height:543.344577px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:85.039500px;}
.x8{left:87.165002px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:133.938000px;}
.xf{left:143.248500px;}
.x11{left:144.459000px;}
.x10{left:145.555500px;}
.x15{left:149.728500px;}
.x14{left:150.825000px;}
.xc{left:152.118000px;}
.xd{left:153.885000px;}
.x12{left:155.325000px;}
.x13{left:156.978000px;}
.xb{left:158.483850px;}
.xe{left:194.434500px;}
.x4{left:203.484001px;}
.xa{left:417.351013px;}
.x3{left:454.959000px;}
.x5{left:462.760500px;}
.x6{left:832.946993px;}
@media print{
.v3{vertical-align:-4.656000pt;}
.v1{vertical-align:-2.298667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.298667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000025pt;}
.ls1{letter-spacing:0.000228pt;}
.ls3{letter-spacing:29.090933pt;}
.ls4{letter-spacing:63.762398pt;}
.ws1{word-spacing:-379.712163pt;}
.wsf{word-spacing:-66.098933pt;}
.ws3{word-spacing:-56.619590pt;}
.ws4{word-spacing:-42.677229pt;}
.ws10{word-spacing:-34.503643pt;}
.wse{word-spacing:-33.049467pt;}
.wsb{word-spacing:-29.090933pt;}
.ws2{word-spacing:-19.925333pt;}
.ws13{word-spacing:-19.374562pt;}
.ws15{word-spacing:-19.316380pt;}
.ws16{word-spacing:-19.258198pt;}
.ws19{word-spacing:-19.204780pt;}
.ws7{word-spacing:-17.163651pt;}
.ws18{word-spacing:-16.930923pt;}
.ws11{word-spacing:-16.872741pt;}
.ws44{word-spacing:-16.004762pt;}
.ws31{word-spacing:-16.004028pt;}
.ws1b{word-spacing:-15.940267pt;}
.ws30{word-spacing:-15.938799pt;}
.ws1a{word-spacing:-15.937459pt;}
.ws12{word-spacing:-15.360013pt;}
.wsd{word-spacing:-15.185467pt;}
.ws9{word-spacing:-15.127285pt;}
.ws5{word-spacing:-14.670314pt;}
.ws8{word-spacing:-14.603649pt;}
.wsa{word-spacing:-14.545467pt;}
.ws6{word-spacing:-13.265466pt;}
.wsc{word-spacing:-13.207284pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:21.352745pt;}
.ws17{word-spacing:24.320020pt;}
.ws4e{word-spacing:34.610853pt;}
.ws45{word-spacing:34.611321pt;}
.ws4d{word-spacing:34.611804pt;}
.ws49{word-spacing:34.612292pt;}
.ws48{word-spacing:34.613262pt;}
.ws47{word-spacing:34.667565pt;}
.ws46{word-spacing:34.668051pt;}
.ws4b{word-spacing:34.668530pt;}
.ws4c{word-spacing:34.668532pt;}
.ws27{word-spacing:34.668554pt;}
.ws4a{word-spacing:34.669019pt;}
.ws4f{word-spacing:34.671457pt;}
.ws2d{word-spacing:701.545978pt;}
.ws2e{word-spacing:701.545980pt;}
.ws2c{word-spacing:701.546469pt;}
.ws24{word-spacing:701.546491pt;}
.ws2f{word-spacing:701.546951pt;}
.ws23{word-spacing:701.546975pt;}
.ws1f{word-spacing:701.546979pt;}
.ws2b{word-spacing:701.547434pt;}
.ws25{word-spacing:701.547463pt;}
.ws21{word-spacing:701.547465pt;}
.ws26{word-spacing:701.548428pt;}
.ws2a{word-spacing:701.601738pt;}
.ws1d{word-spacing:701.601761pt;}
.ws1c{word-spacing:701.602246pt;}
.ws29{word-spacing:701.603189pt;}
.ws20{word-spacing:701.603217pt;}
.ws1e{word-spacing:701.603221pt;}
.ws28{word-spacing:701.603675pt;}
.ws22{word-spacing:701.606124pt;}
.ws41{word-spacing:713.065498pt;}
.ws3a{word-spacing:713.066015pt;}
.ws40{word-spacing:713.066951pt;}
.ws39{word-spacing:713.066983pt;}
.ws43{word-spacing:713.067436pt;}
.ws36{word-spacing:713.067951pt;}
.ws3f{word-spacing:713.068404pt;}
.ws37{word-spacing:713.068442pt;}
.ws3d{word-spacing:713.121738pt;}
.ws3e{word-spacing:713.121742pt;}
.ws33{word-spacing:713.122255pt;}
.ws35{word-spacing:713.122256pt;}
.ws34{word-spacing:713.122261pt;}
.ws38{word-spacing:713.122263pt;}
.ws42{word-spacing:713.122709pt;}
.ws3c{word-spacing:713.123189pt;}
.ws32{word-spacing:713.123226pt;}
.ws3b{word-spacing:713.123709pt;}
._12{margin-left:-29.207297pt;}
._0{margin-left:-25.488424pt;}
._3{margin-left:-10.706485pt;}
._d{margin-left:-8.237875pt;}
._4{margin-left:-6.291066pt;}
._c{margin-left:-5.352732pt;}
._1{margin-left:-3.745963pt;}
._a{margin-left:-2.734548pt;}
._2{margin-left:-1.594027pt;}
._b{width:1.349350pt;}
._9{width:2.641300pt;}
._7{width:10.495852pt;}
._8{width:12.823127pt;}
._5{width:14.649088pt;}
._6{width:16.744428pt;}
._14{width:27.147649pt;}
._11{width:30.423883pt;}
._13{width:36.545595pt;}
._16{width:38.256533pt;}
._f{width:55.389137pt;}
._17{width:63.905929pt;}
._29{width:187.112773pt;}
._23{width:331.178762pt;}
._1f{width:416.130706pt;}
._32{width:472.745617pt;}
._33{width:494.866676pt;}
._28{width:552.437496pt;}
._27{width:582.412324pt;}
._34{width:688.623459pt;}
._35{width:739.881683pt;}
._2b{width:742.912978pt;}
._2c{width:750.404903pt;}
._2a{width:754.803569pt;}
._18{width:814.970564pt;}
._21{width:829.873875pt;}
._1e{width:830.982526pt;}
._20{width:840.753306pt;}
._31{width:844.446447pt;}
._1a{width:902.928804pt;}
._1d{width:923.981059pt;}
._19{width:944.141732pt;}
._1c{width:952.163405pt;}
._1b{width:970.352006pt;}
._26{width:1027.004142pt;}
._24{width:1028.417509pt;}
._22{width:1044.475705pt;}
._25{width:1062.662719pt;}
._30{width:1155.079433pt;}
._2e{width:1207.617659pt;}
._2d{width:1308.934612pt;}
._e{width:1340.491983pt;}
._15{width:1590.429730pt;}
._2f{width:1593.453730pt;}
._10{width:1645.388141pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fsd{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:76.513067pt;}
.fs7{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:111.581333pt;}
.fsb{font-size:132.197867pt;}
.fs8{font-size:170.028800pt;}
.fs5{font-size:653.549333pt;}
.y0{bottom:0.000000pt;}
.y7f{bottom:54.673333pt;}
.y51{bottom:54.673353pt;}
.y45{bottom:59.729926pt;}
.y4{bottom:86.333337pt;}
.y44{bottom:95.860593pt;}
.y43{bottom:113.925926pt;}
.yad{bottom:116.037333pt;}
.y1e{bottom:123.790666pt;}
.y7e{bottom:128.033333pt;}
.y4b{bottom:131.452019pt;}
.y42{bottom:131.991259pt;}
.yac{bottom:134.102667pt;}
.y24{bottom:137.408020pt;}
.y7d{bottom:146.098667pt;}
.y41{bottom:150.056593pt;}
.yab{bottom:152.168000pt;}
.y7c{bottom:164.164000pt;}
.y40{bottom:168.123259pt;}
.yaa{bottom:170.233333pt;}
.y15{bottom:175.052000pt;}
.y7b{bottom:182.229333pt;}
.y1d{bottom:186.238666pt;}
.y14{bottom:186.252002pt;}
.ya9{bottom:188.298667pt;}
.y1c{bottom:197.438668pt;}
.y13{bottom:197.452004pt;}
.y7a{bottom:200.294667pt;}
.y3f{bottom:203.697926pt;}
.ya8{bottom:206.365333pt;}
.y1b{bottom:208.638670pt;}
.y12{bottom:208.651996pt;}
.y79{bottom:218.360000pt;}
.ya7{bottom:224.430667pt;}
.y1a{bottom:231.038664pt;}
.y11{bottom:231.052000pt;}
.y78{bottom:236.426667pt;}
.y3e{bottom:239.845393pt;}
.y19{bottom:242.238666pt;}
.y10{bottom:242.252002pt;}
.ya6{bottom:242.496000pt;}
.y18{bottom:253.438668pt;}
.yf{bottom:253.451999pt;}
.y77{bottom:254.492000pt;}
.y3d{bottom:257.910726pt;}
.ya5{bottom:260.561333pt;}
.y76{bottom:272.557333pt;}
.y17{bottom:275.838667pt;}
.ye{bottom:275.852001pt;}
.ya4{bottom:278.626667pt;}
.y23{bottom:283.591185pt;}
.y16{bottom:287.038667pt;}
.yd{bottom:287.052000pt;}
.y75{bottom:290.622667pt;}
.ya3{bottom:296.692000pt;}
.yc{bottom:309.452000pt;}
.ya2{bottom:314.758667pt;}
.ya1{bottom:332.824000pt;}
.y74{bottom:335.202667pt;}
.y22{bottom:336.178652pt;}
.yb{bottom:343.809333pt;}
.ya0{bottom:350.889333pt;}
.ya{bottom:362.706666pt;}
.y9f{bottom:368.954667pt;}
.y9e{bottom:387.020000pt;}
.y73{bottom:393.120000pt;}
.y3c{bottom:394.850666pt;}
.y9d{bottom:405.086667pt;}
.y72{bottom:411.186667pt;}
.y3b{bottom:412.915999pt;}
.y9c{bottom:423.152000pt;}
.y71{bottom:429.252000pt;}
.y3a{bottom:430.982666pt;}
.y9b{bottom:441.217333pt;}
.y70{bottom:447.317333pt;}
.y9a{bottom:459.282667pt;}
.y6f{bottom:465.382667pt;}
.y99{bottom:477.348000pt;}
.y9{bottom:478.990666pt;}
.y6e{bottom:483.448000pt;}
.y8{bottom:494.990666pt;}
.y98{bottom:495.413333pt;}
.y6d{bottom:501.514667pt;}
.y39{bottom:505.178686pt;}
.y97{bottom:513.480000pt;}
.y6c{bottom:519.580000pt;}
.y38{bottom:523.244019pt;}
.y96{bottom:531.545333pt;}
.y6b{bottom:537.645333pt;}
.y37{bottom:541.310686pt;}
.y95{bottom:549.610667pt;}
.y6a{bottom:555.710667pt;}
.y36{bottom:559.376019pt;}
.y69{bottom:573.776000pt;}
.y7{bottom:573.786667pt;}
.y35{bottom:577.441353pt;}
.y68{bottom:591.841333pt;}
.y6{bottom:592.685334pt;}
.y94{bottom:594.190667pt;}
.y34{bottom:595.506686pt;}
.y67{bottom:609.908000pt;}
.y33{bottom:613.572019pt;}
.y66{bottom:627.973333pt;}
.y32{bottom:631.638686pt;}
.y4a{bottom:636.796019pt;}
.y5{bottom:645.598667pt;}
.y65{bottom:646.038667pt;}
.y93{bottom:652.108000pt;}
.y49{bottom:663.602039pt;}
.y64{bottom:664.104000pt;}
.y3{bottom:668.977329pt;}
.y92{bottom:670.173333pt;}
.y63{bottom:682.169333pt;}
.y91{bottom:688.240000pt;}
.y62{bottom:700.236000pt;}
.y90{bottom:706.305333pt;}
.y48{bottom:717.799372pt;}
.y61{bottom:718.301333pt;}
.y31{bottom:724.352574pt;}
.y8f{bottom:724.370667pt;}
.y60{bottom:736.366667pt;}
.y8e{bottom:742.436000pt;}
.y5f{bottom:754.432000pt;}
.y30{bottom:760.484574pt;}
.y8d{bottom:760.501333pt;}
.y47{bottom:765.486572pt;}
.y21{bottom:771.876020pt;}
.y5e{bottom:772.497333pt;}
.y2f{bottom:778.551241pt;}
.y8c{bottom:778.568000pt;}
.y2{bottom:781.661334pt;}
.y5d{bottom:790.562667pt;}
.y2e{bottom:796.616574pt;}
.y8b{bottom:796.633333pt;}
.y5c{bottom:808.629333pt;}
.y2d{bottom:814.681907pt;}
.y8a{bottom:814.698667pt;}
.y5b{bottom:826.694667pt;}
.y2c{bottom:832.747241pt;}
.y89{bottom:832.764000pt;}
.y5a{bottom:844.760000pt;}
.y2b{bottom:850.812574pt;}
.y88{bottom:850.829333pt;}
.y1{bottom:859.312000pt;}
.y59{bottom:862.825333pt;}
.y2a{bottom:868.879241pt;}
.y87{bottom:868.894667pt;}
.y58{bottom:880.890667pt;}
.y86{bottom:886.961333pt;}
.y1f{bottom:888.390687pt;}
.y20{bottom:895.950659pt;}
.y57{bottom:898.957333pt;}
.y85{bottom:905.026667pt;}
.y29{bottom:905.026707pt;}
.y56{bottom:917.022667pt;}
.y84{bottom:923.092000pt;}
.y28{bottom:923.092041pt;}
.y50{bottom:926.002671pt;}
.y55{bottom:935.088000pt;}
.y83{bottom:941.157333pt;}
.y4f{bottom:944.068004pt;}
.y82{bottom:959.222667pt;}
.y4e{bottom:962.133337pt;}
.y27{bottom:977.272537pt;}
.y81{bottom:977.289333pt;}
.y54{bottom:979.668000pt;}
.y4d{bottom:980.200004pt;}
.y80{bottom:995.354667pt;}
.y26{bottom:995.354670pt;}
.y46{bottom:995.801351pt;}
.y53{bottom:1013.420000pt;}
.y25{bottom:1013.420003pt;}
.y52{bottom:1060.573333pt;}
.y4c{bottom:1060.573353pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h14{height:42.181853pt;}
.hf{height:42.414581pt;}
.h17{height:42.419914pt;}
.he{height:42.608203pt;}
.h3{height:42.840000pt;}
.h12{height:42.880036pt;}
.h15{height:42.996399pt;}
.h16{height:46.481818pt;}
.h2{height:48.960000pt;}
.h13{height:55.471973pt;}
.hb{height:57.783467pt;}
.h5{height:69.360000pt;}
.ha{height:80.896467pt;}
.h10{height:95.843453pt;}
.h4{height:105.826671pt;}
.hc{height:123.270880pt;}
.h11{height:134.134359pt;}
.hd{height:172.519456pt;}
.h9{height:482.972957pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:75.590667pt;}
.x8{left:77.480001pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:119.056000pt;}
.xf{left:127.332000pt;}
.x11{left:128.408000pt;}
.x10{left:129.382667pt;}
.x15{left:133.092000pt;}
.x14{left:134.066667pt;}
.xc{left:135.216000pt;}
.xd{left:136.786667pt;}
.x12{left:138.066667pt;}
.x13{left:139.536000pt;}
.xb{left:140.874533pt;}
.xe{left:172.830667pt;}
.x4{left:180.874667pt;}
.xa{left:370.978679pt;}
.x3{left:404.408000pt;}
.x5{left:411.342667pt;}
.x6{left:740.397327pt;}
}




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