
    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_2b442cd4f0a8786b76076273.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_13b25363b6b08dfdda40a3d3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_b35ec467c676ae7365e76459.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_40724ffd3e06b71d9ade4ab0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_8f7351839e4a9e12f84b2146.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.981000;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_177424603539d2c6d302ac17.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_7a19ff26d6ef7f02de1ac9c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.987000;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_9a9f8a439e921b8433ca33fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.053000;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_d69c1fc88a5b19bcadc7557f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.768000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7e74a3431f0e26a5ebc99593.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.060000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e596b45cf86ac343111248a4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.004000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-18.984000px;}
.ws4{word-spacing:-15.757321px;}
.ws3{word-spacing:-14.262627px;}
.ws2{word-spacing:-13.335936px;}
.ws1{word-spacing:0.000000px;}
._7{margin-left:-14.213352px;}
._d{margin-left:-8.819226px;}
._2{margin-left:-7.353600px;}
._c{margin-left:-5.870470px;}
._3{margin-left:-4.284000px;}
._6{margin-left:-3.007780px;}
._1{margin-left:-1.996800px;}
._8{width:1.491990px;}
._4{width:2.501400px;}
._b{width:3.997586px;}
._0{width:5.587200px;}
._5{width:6.640952px;}
._f{width:8.207071px;}
._e{width:67.183049px;}
._9{width:68.184511px;}
._a{width:71.689265px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:47.999996px;}
.fs4{font-size:49.523009px;}
.fs8{font-size:57.626775px;}
.fs7{font-size:58.527192px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.033467px;}
.fs1{font-size:84.000000px;}
.fsb{font-size:84.234131px;}
.fs6{font-size:85.539742px;}
.fsa{font-size:90.041834px;}
.fs0{font-size:96.000000px;}
.fs5{font-size:103.548109px;}
.y0{bottom:0.000000px;}
.y1c{bottom:3.000001px;}
.y1e{bottom:3.000037px;}
.yc{bottom:8.040000px;}
.y1d{bottom:22.380034px;}
.y77{bottom:25.886680px;}
.y9b{bottom:42.082942px;}
.yb6{bottom:42.082986px;}
.y1f{bottom:42.083091px;}
.y33{bottom:42.083118px;}
.y9a{bottom:47.271607px;}
.y76{bottom:54.024753px;}
.y54{bottom:66.405478px;}
.y32{bottom:74.284180px;}
.y99{bottom:75.409680px;}
.yb5{bottom:76.535370px;}
.y75{bottom:83.288349px;}
.y19{bottom:91.590000px;}
.y14{bottom:99.795000px;}
.ycb{bottom:102.422381px;}
.y31{bottom:103.547776px;}
.y98{bottom:104.673276px;}
.y18{bottom:113.670000px;}
.yca{bottom:128.309408px;}
.y53{bottom:130.560285px;}
.y74{bottom:130.560312px;}
.y30{bottom:131.685850px;}
.y97{bottom:132.811349px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.yc9{bottom:154.196435px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y52{bottom:158.698358px;}
.y73{bottom:158.698385px;}
.y96{bottom:160.949422px;}
.y2f{bottom:178.957812px;}
.yc8{bottom:180.083462px;}
.y51{bottom:186.836431px;}
.y72{bottom:186.836458px;}
.y95{bottom:189.087495px;}
.yc7{bottom:205.970490px;}
.y2e{bottom:207.095886px;}
.y50{bottom:214.974504px;}
.y71{bottom:214.974531px;}
.yc6{bottom:231.857517px;}
.y94{bottom:235.233935px;}
.y2d{bottom:235.233959px;}
.y4f{bottom:244.238100px;}
.y93{bottom:261.120963px;}
.y70{bottom:262.246494px;}
.y2c{bottom:264.497555px;}
.y4e{bottom:291.510063px;}
.y6f{bottom:291.510090px;}
.y4d{bottom:319.648136px;}
.y6e{bottom:319.648163px;}
.y92{bottom:325.275769px;}
.y2b{bottom:328.652361px;}
.yc5{bottom:333.154580px;}
.ya{bottom:344.680500px;}
.y4c{bottom:347.786209px;}
.y6d{bottom:347.786237px;}
.y2a{bottom:350.037297px;}
.y91{bottom:354.539365px;}
.yc4{bottom:359.041607px;}
.y29{bottom:370.296710px;}
.y4b{bottom:375.924282px;}
.y90{bottom:382.677439px;}
.yb4{bottom:382.677606px;}
.yc3{bottom:384.928635px;}
.yd{bottom:386.490000px;}
.y28{bottom:391.681645px;}
.y6c{bottom:393.932677px;}
.y9{bottom:395.689500px;}
.y4a{bottom:405.187878px;}
.y8f{bottom:410.815512px;}
.yc2{bottom:410.815662px;}
.yb3{bottom:429.949568px;}
.yb{bottom:434.850000px;}
.yc1{bottom:436.702689px;}
.y8e{bottom:438.953585px;}
.y8{bottom:446.698500px;}
.y49{bottom:452.459841px;}
.y6b{bottom:458.087483px;}
.yb2{bottom:458.087642px;}
.y8d{bottom:468.217181px;}
.y48{bottom:480.597914px;}
.y6a{bottom:486.225556px;}
.yb1{bottom:486.225715px;}
.y11{bottom:488.055000px;}
.yc0{bottom:494.104358px;}
.y8c{bottom:496.355254px;}
.y7{bottom:497.707500px;}
.y47{bottom:508.735988px;}
.y69{bottom:515.489152px;}
.yb0{bottom:515.489311px;}
.yd0{bottom:525.618920px;}
.y46{bottom:537.999584px;}
.y12{bottom:538.230000px;}
.y8b{bottom:543.627217px;}
.y68{bottom:543.627226px;}
.yaf{bottom:543.627384px;}
.y6{bottom:548.716500px;}
.y45{bottom:566.137657px;}
.y8a{bottom:571.765290px;}
.y1a{bottom:589.605000px;}
.y67{bottom:590.899188px;}
.yae{bottom:590.899347px;}
.y5{bottom:599.725500px;}
.y89{bottom:599.903363px;}
.y44{bottom:613.409620px;}
.y66{bottom:619.037262px;}
.yad{bottom:619.037420px;}
.y88{bottom:629.166959px;}
.ye{bottom:631.920000px;}
.y43{bottom:641.547693px;}
.y65{bottom:648.300858px;}
.yac{bottom:648.301016px;}
.y42{bottom:669.685766px;}
.y87{bottom:676.438922px;}
.y64{bottom:676.438931px;}
.yab{bottom:676.439089px;}
.y41{bottom:698.949362px;}
.ycf{bottom:703.451542px;}
.y86{bottom:704.576995px;}
.y63{bottom:723.710894px;}
.yaa{bottom:723.711052px;}
.yce{bottom:728.213046px;}
.y85{bottom:732.715068px;}
.ybf{bottom:741.719402px;}
.y40{bottom:746.221325px;}
.y62{bottom:751.848967px;}
.ya9{bottom:751.849125px;}
.y84{bottom:761.978664px;}
.ybe{bottom:767.606429px;}
.ycd{bottom:772.108440px;}
.y3f{bottom:774.359398px;}
.y4{bottom:778.225500px;}
.y61{bottom:779.987040px;}
.ya8{bottom:779.987198px;}
.y83{bottom:790.116737px;}
.ybd{bottom:793.493457px;}
.y3e{bottom:802.497471px;}
.y60{bottom:809.250636px;}
.ya7{bottom:809.250794px;}
.y27{bottom:810.376173px;}
.y13{bottom:815.670000px;}
.ycc{bottom:823.882495px;}
.y82{bottom:837.388700px;}
.y5f{bottom:837.388709px;}
.ya6{bottom:837.388867px;}
.y3d{bottom:848.643911px;}
.y26{bottom:848.643953px;}
.ybc{bottom:850.895126px;}
.y81{bottom:865.526773px;}
.ya5{bottom:865.526940px;}
.y25{bottom:873.405457px;}
.y5e{bottom:884.660672px;}
.y80{bottom:893.664847px;}
.y24{bottom:897.041439px;}
.y3{bottom:905.716500px;}
.y3c{bottom:912.798718px;}
.y5d{bottom:912.798745px;}
.ya4{bottom:912.798903px;}
.y23{bottom:921.802943px;}
.y7f{bottom:922.928443px;}
.y3b{bottom:940.936791px;}
.y5c{bottom:940.936818px;}
.ya3{bottom:940.936976px;}
.y7e{bottom:951.066516px;}
.y22{bottom:954.443108px;}
.y2{bottom:964.228500px;}
.y3a{bottom:970.200387px;}
.y5b{bottom:970.200414px;}
.ya2{bottom:970.200572px;}
.y21{bottom:984.832227px;}
.y1{bottom:989.716500px;}
.y39{bottom:998.338460px;}
.y7d{bottom:998.338479px;}
.y5a{bottom:998.338487px;}
.ya1{bottom:998.338646px;}
.y20{bottom:1020.848960px;}
.y38{bottom:1026.476533px;}
.y7c{bottom:1026.476552px;}
.yd3{bottom:1026.476621px;}
.ya0{bottom:1026.476719px;}
.y59{bottom:1045.610450px;}
.yd2{bottom:1045.610511px;}
.y37{bottom:1054.614606px;}
.y7b{bottom:1054.614625px;}
.ybb{bottom:1057.991344px;}
.y58{bottom:1073.748523px;}
.y9f{bottom:1073.748682px;}
.yba{bottom:1082.752848px;}
.y7a{bottom:1083.878221px;}
.y36{bottom:1101.886569px;}
.y57{bottom:1101.886596px;}
.y9e{bottom:1101.886755px;}
.yd1{bottom:1107.514272px;}
.yb9{bottom:1108.639876px;}
.y35{bottom:1131.150165px;}
.y79{bottom:1131.150184px;}
.y56{bottom:1131.150192px;}
.y9d{bottom:1131.150351px;}
.yb8{bottom:1134.526903px;}
.y34{bottom:1159.288238px;}
.y78{bottom:1159.288257px;}
.y55{bottom:1159.288266px;}
.y9c{bottom:1159.288424px;}
.yb7{bottom:1160.413930px;}
.y1b{bottom:1226.879972px;}
.hc{height:13.499999px;}
.ha{height:13.500001px;}
.h4{height:33.000000px;}
.hb{height:34.945310px;}
.he{height:39.024131px;}
.h11{height:46.119427px;}
.h12{height:57.482707px;}
.h15{height:57.626774px;}
.h18{height:57.824866px;}
.h3{height:58.406250px;}
.h16{height:63.091364px;}
.h10{height:63.812648px;}
.h2{height:66.750000px;}
.h14{height:67.441334px;}
.h5{height:67.740234px;}
.hf{height:77.557534px;}
.h17{height:84.513265px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.hd{height:1177.296647px;}
.h13{height:1177.296971px;}
.h0{height:1262.835000px;}
.h9{height:1262.879970px;}
.h1{height:1263.000000px;}
.we{width:61.439987px;}
.wb{width:136.499992px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.wc{width:755.939948px;}
.wf{width:806.999906px;}
.wd{width:830.999953px;}
.w9{width:892.439940px;}
.wa{width:892.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.xe{left:5.109353px;}
.x11{left:22.862184px;}
.x10{left:28.138073px;}
.xa{left:39.679684px;}
.xf{left:43.499994px;}
.x12{left:81.600412px;}
.xc{left:103.289051px;}
.x23{left:111.567460px;}
.x14{left:112.833673px;}
.x15{left:116.491623px;}
.x17{left:119.903364px;}
.x1a{left:124.124075px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.xb{left:136.499992px;}
.x1d{left:139.881396px;}
.x1e{left:145.579356px;}
.x16{left:149.026270px;}
.x24{left:166.348771px;}
.x5{left:174.105000px;}
.x21{left:183.301960px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x20{left:209.101056px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x26{left:254.245083px;}
.x1b{left:259.433034px;}
.x27{left:270.459647px;}
.x13{left:311.295026px;}
.x25{left:317.784363px;}
.x19{left:330.147535px;}
.x1c{left:341.754490px;}
.x18{left:344.550705px;}
.x1f{left:349.000044px;}
.x22{left:403.499969px;}
.xd{left:830.999953px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws4{word-spacing:-14.006508pt;}
.ws3{word-spacing:-12.677890pt;}
.ws2{word-spacing:-11.854166pt;}
.ws1{word-spacing:0.000000pt;}
._7{margin-left:-12.634091pt;}
._d{margin-left:-7.839312pt;}
._2{margin-left:-6.536533pt;}
._c{margin-left:-5.218196pt;}
._3{margin-left:-3.808000pt;}
._6{margin-left:-2.673583pt;}
._1{margin-left:-1.774933pt;}
._8{width:1.326213pt;}
._4{width:2.223466pt;}
._b{width:3.553410pt;}
._0{width:4.966400pt;}
._5{width:5.903069pt;}
._f{width:7.295174pt;}
._e{width:59.718265pt;}
._9{width:60.608454pt;}
._a{width:63.723791pt;}
.fs3{font-size:42.666663pt;}
.fs4{font-size:44.020452pt;}
.fs8{font-size:51.223800pt;}
.fs7{font-size:52.024171pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.029749pt;}
.fs1{font-size:74.666667pt;}
.fsb{font-size:74.874783pt;}
.fs6{font-size:76.035326pt;}
.fsa{font-size:80.037186pt;}
.fs0{font-size:85.333333pt;}
.fs5{font-size:92.042764pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:2.666668pt;}
.y1e{bottom:2.666700pt;}
.yc{bottom:7.146667pt;}
.y1d{bottom:19.893363pt;}
.y77{bottom:23.010382pt;}
.y9b{bottom:37.407060pt;}
.yb6{bottom:37.407099pt;}
.y1f{bottom:37.407192pt;}
.y33{bottom:37.407216pt;}
.y9a{bottom:42.019206pt;}
.y76{bottom:48.022003pt;}
.y54{bottom:59.027092pt;}
.y32{bottom:66.030383pt;}
.y99{bottom:67.030827pt;}
.yb5{bottom:68.031440pt;}
.y75{bottom:74.034088pt;}
.y19{bottom:81.413333pt;}
.y14{bottom:88.706667pt;}
.ycb{bottom:91.042116pt;}
.y31{bottom:92.042468pt;}
.y98{bottom:93.042912pt;}
.y18{bottom:101.040000pt;}
.yca{bottom:114.052807pt;}
.y53{bottom:116.053586pt;}
.y74{bottom:116.053611pt;}
.y30{bottom:117.054088pt;}
.y97{bottom:118.054533pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.yc9{bottom:137.063498pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y52{bottom:141.065207pt;}
.y73{bottom:141.065231pt;}
.y96{bottom:143.066153pt;}
.y2f{bottom:159.073611pt;}
.yc8{bottom:160.074189pt;}
.y51{bottom:166.076828pt;}
.y72{bottom:166.076852pt;}
.y95{bottom:168.077774pt;}
.yc7{bottom:183.084880pt;}
.y2e{bottom:184.085232pt;}
.y50{bottom:191.088448pt;}
.y71{bottom:191.088472pt;}
.yc6{bottom:206.095571pt;}
.y94{bottom:209.096831pt;}
.y2d{bottom:209.096852pt;}
.y4f{bottom:217.100534pt;}
.y93{bottom:232.107522pt;}
.y70{bottom:233.107995pt;}
.y2c{bottom:235.108937pt;}
.y4e{bottom:259.120056pt;}
.y6f{bottom:259.120080pt;}
.y4d{bottom:284.131677pt;}
.y6e{bottom:284.131701pt;}
.y92{bottom:289.134017pt;}
.y2b{bottom:292.135432pt;}
.yc5{bottom:296.137405pt;}
.ya{bottom:306.382667pt;}
.y4c{bottom:309.143297pt;}
.y6d{bottom:309.143321pt;}
.y2a{bottom:311.144264pt;}
.y91{bottom:315.146103pt;}
.yc4{bottom:319.148096pt;}
.y29{bottom:329.152631pt;}
.y4b{bottom:334.154918pt;}
.y90{bottom:340.157723pt;}
.yb4{bottom:340.157872pt;}
.yc3{bottom:342.158786pt;}
.yd{bottom:343.546667pt;}
.y28{bottom:348.161462pt;}
.y6c{bottom:350.162379pt;}
.y9{bottom:351.724000pt;}
.y4a{bottom:360.167003pt;}
.y8f{bottom:365.169344pt;}
.yc2{bottom:365.169477pt;}
.yb3{bottom:382.177394pt;}
.yb{bottom:386.533333pt;}
.yc1{bottom:388.180168pt;}
.y8e{bottom:390.180964pt;}
.y8{bottom:397.065333pt;}
.y49{bottom:402.186526pt;}
.y6b{bottom:407.188874pt;}
.yb2{bottom:407.189015pt;}
.y8d{bottom:416.193050pt;}
.y48{bottom:427.198146pt;}
.y6a{bottom:432.200495pt;}
.yb1{bottom:432.200635pt;}
.y11{bottom:433.826667pt;}
.yc0{bottom:439.203874pt;}
.y8c{bottom:441.204670pt;}
.y7{bottom:442.406667pt;}
.y47{bottom:452.209767pt;}
.y69{bottom:458.212580pt;}
.yb0{bottom:458.212721pt;}
.yd0{bottom:467.216817pt;}
.y46{bottom:478.221852pt;}
.y12{bottom:478.426667pt;}
.y8b{bottom:483.224193pt;}
.y68{bottom:483.224201pt;}
.yaf{bottom:483.224341pt;}
.y6{bottom:487.748000pt;}
.y45{bottom:503.233473pt;}
.y8a{bottom:508.235813pt;}
.y1a{bottom:524.093333pt;}
.y67{bottom:525.243723pt;}
.yae{bottom:525.243864pt;}
.y5{bottom:533.089333pt;}
.y89{bottom:533.247434pt;}
.y44{bottom:545.252995pt;}
.y66{bottom:550.255344pt;}
.yad{bottom:550.255484pt;}
.y88{bottom:559.259519pt;}
.ye{bottom:561.706667pt;}
.y43{bottom:570.264616pt;}
.y65{bottom:576.267429pt;}
.yac{bottom:576.267570pt;}
.y42{bottom:595.276236pt;}
.y87{bottom:601.279042pt;}
.y64{bottom:601.279050pt;}
.yab{bottom:601.279190pt;}
.y41{bottom:621.288322pt;}
.ycf{bottom:625.290259pt;}
.y86{bottom:626.290662pt;}
.y63{bottom:643.298572pt;}
.yaa{bottom:643.298713pt;}
.yce{bottom:647.300486pt;}
.y85{bottom:651.302283pt;}
.ybf{bottom:659.306135pt;}
.y40{bottom:663.307844pt;}
.y62{bottom:668.310193pt;}
.ya9{bottom:668.310333pt;}
.y84{bottom:677.314368pt;}
.ybe{bottom:682.316826pt;}
.ycd{bottom:686.318614pt;}
.y3f{bottom:688.319465pt;}
.y4{bottom:691.756000pt;}
.y61{bottom:693.321813pt;}
.ya8{bottom:693.321954pt;}
.y83{bottom:702.325989pt;}
.ybd{bottom:705.327517pt;}
.y3e{bottom:713.331085pt;}
.y60{bottom:719.333899pt;}
.ya7{bottom:719.334039pt;}
.y27{bottom:720.334376pt;}
.y13{bottom:725.040000pt;}
.ycc{bottom:732.339995pt;}
.y82{bottom:744.345511pt;}
.y5f{bottom:744.345519pt;}
.ya6{bottom:744.345660pt;}
.y3d{bottom:754.350143pt;}
.y26{bottom:754.350180pt;}
.ybc{bottom:756.351223pt;}
.y81{bottom:769.357132pt;}
.ya5{bottom:769.357280pt;}
.y25{bottom:776.360406pt;}
.y5e{bottom:786.365042pt;}
.y80{bottom:794.368753pt;}
.y24{bottom:797.370168pt;}
.y3{bottom:805.081333pt;}
.y3c{bottom:811.376638pt;}
.y5d{bottom:811.376662pt;}
.ya4{bottom:811.376803pt;}
.y23{bottom:819.380394pt;}
.y7f{bottom:820.380838pt;}
.y3b{bottom:836.388259pt;}
.y5c{bottom:836.388283pt;}
.ya3{bottom:836.388423pt;}
.y7e{bottom:845.392458pt;}
.y22{bottom:848.393874pt;}
.y2{bottom:857.092000pt;}
.y3a{bottom:862.400344pt;}
.y5b{bottom:862.400368pt;}
.ya2{bottom:862.400509pt;}
.y21{bottom:875.406424pt;}
.y1{bottom:879.748000pt;}
.y39{bottom:887.411964pt;}
.y7d{bottom:887.411981pt;}
.y5a{bottom:887.411989pt;}
.ya1{bottom:887.412129pt;}
.y20{bottom:907.421298pt;}
.y38{bottom:912.423585pt;}
.y7c{bottom:912.423602pt;}
.yd3{bottom:912.423663pt;}
.ya0{bottom:912.423750pt;}
.y59{bottom:929.431511pt;}
.yd2{bottom:929.431565pt;}
.y37{bottom:937.435206pt;}
.y7b{bottom:937.435222pt;}
.ybb{bottom:940.436750pt;}
.y58{bottom:954.443132pt;}
.y9f{bottom:954.443272pt;}
.yba{bottom:962.446976pt;}
.y7a{bottom:963.447307pt;}
.y36{bottom:979.454728pt;}
.y57{bottom:979.454752pt;}
.y9e{bottom:979.454893pt;}
.yd1{bottom:984.457131pt;}
.yb9{bottom:985.457667pt;}
.y35{bottom:1005.466813pt;}
.y79{bottom:1005.466830pt;}
.y56{bottom:1005.466838pt;}
.y9d{bottom:1005.466978pt;}
.yb8{bottom:1008.468358pt;}
.y34{bottom:1030.478434pt;}
.y78{bottom:1030.478451pt;}
.y55{bottom:1030.478458pt;}
.y9c{bottom:1030.478599pt;}
.yb7{bottom:1031.479049pt;}
.y1b{bottom:1090.559975pt;}
.hc{height:12.000000pt;}
.ha{height:12.000001pt;}
.h4{height:29.333333pt;}
.hb{height:31.062497pt;}
.he{height:34.688116pt;}
.h11{height:40.995047pt;}
.h12{height:51.095739pt;}
.h15{height:51.223799pt;}
.h18{height:51.399881pt;}
.h3{height:51.916667pt;}
.h16{height:56.081213pt;}
.h10{height:56.722354pt;}
.h2{height:59.333333pt;}
.h14{height:59.947852pt;}
.h5{height:60.213542pt;}
.hf{height:68.940030pt;}
.h17{height:75.122903pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.hd{height:1046.485908pt;}
.h13{height:1046.486196pt;}
.h0{height:1122.520000pt;}
.h9{height:1122.559973pt;}
.h1{height:1122.666667pt;}
.we{width:54.613321pt;}
.wb{width:121.333326pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.wc{width:671.946621pt;}
.wf{width:717.333250pt;}
.wd{width:738.666625pt;}
.w9{width:793.279947pt;}
.wa{width:793.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.xe{left:4.541647pt;}
.x11{left:20.321942pt;}
.x10{left:25.011621pt;}
.xa{left:35.270830pt;}
.xf{left:38.666661pt;}
.x12{left:72.533700pt;}
.xc{left:91.812490pt;}
.x23{left:99.171076pt;}
.x14{left:100.296598pt;}
.x15{left:103.548109pt;}
.x17{left:106.580768pt;}
.x1a{left:110.332511pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.xb{left:121.333326pt;}
.x1d{left:124.339019pt;}
.x1e{left:129.403872pt;}
.x16{left:132.467795pt;}
.x24{left:147.865574pt;}
.x5{left:154.760000pt;}
.x21{left:162.935076pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x20{left:185.867605pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x26{left:225.995629pt;}
.x1b{left:230.607142pt;}
.x27{left:240.408575pt;}
.x13{left:276.706690pt;}
.x25{left:282.474990pt;}
.x19{left:293.464475pt;}
.x1c{left:303.781769pt;}
.x18{left:306.267294pt;}
.x1f{left:310.222261pt;}
.x22{left:358.666639pt;}
.xd{left:738.666625pt;}
}




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