
    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_3cfddc674515dbe20dcdc86d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_3921e198a0b96fb9484a7b06.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_2e1f758ef6c216732434280a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.892000;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_da97112dc8b293c629c39bc8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.717000;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);}
.v2{vertical-align:-31.236000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:31.236000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.992200px;}
.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;}
}
.ws31{word-spacing:-17.932800px;}
.wse{word-spacing:-16.363650px;}
.ws37{word-spacing:-4.303872px;}
.ws38{word-spacing:-3.730022px;}
.ws2d{word-spacing:-3.156173px;}
.ws5e{word-spacing:-2.797517px;}
.ws30{word-spacing:-2.654054px;}
.ws1f{word-spacing:-2.510592px;}
.ws1e{word-spacing:-2.438861px;}
.ws57{word-spacing:-2.367130px;}
.ws21{word-spacing:-2.080205px;}
.ws1d{word-spacing:-2.008474px;}
.ws32{word-spacing:-1.936742px;}
.ws58{word-spacing:-1.865011px;}
.ws49{word-spacing:-1.793280px;}
.ws3f{word-spacing:-1.649818px;}
.ws48{word-spacing:-1.506355px;}
.ws2c{word-spacing:-1.434624px;}
.wsf{word-spacing:-1.112728px;}
.ws1a{word-spacing:-1.075968px;}
.wsa{word-spacing:-1.047274px;}
.ws5b{word-spacing:-1.004237px;}
.wsb{word-spacing:-0.981819px;}
.ws3a{word-spacing:-0.789043px;}
.ws3{word-spacing:-0.785455px;}
.ws46{word-spacing:-0.573850px;}
.ws1b{word-spacing:-0.502118px;}
.ws13{word-spacing:-0.392728px;}
.ws26{word-spacing:-0.358656px;}
.ws61{word-spacing:-0.286925px;}
.ws5{word-spacing:-0.261818px;}
.ws39{word-spacing:-0.086077px;}
.ws0{word-spacing:0.000000px;}
.ws2f{word-spacing:0.071731px;}
.ws59{word-spacing:0.143462px;}
.ws47{word-spacing:0.215194px;}
.ws9{word-spacing:0.458182px;}
.ws10{word-spacing:0.523637px;}
.ws19{word-spacing:0.717312px;}
.ws42{word-spacing:0.789043px;}
.ws36{word-spacing:1.219430px;}
.ws2b{word-spacing:1.434624px;}
.wsd{word-spacing:1.505456px;}
.ws4a{word-spacing:1.506355px;}
.ws1c{word-spacing:1.578086px;}
.ws6a{word-spacing:1.649818px;}
.ws64{word-spacing:1.721549px;}
.ws16{word-spacing:1.793280px;}
.ws6b{word-spacing:2.080205px;}
.ws3e{word-spacing:2.295398px;}
.ws6{word-spacing:2.356366px;}
.ws55{word-spacing:2.367130px;}
.ws33{word-spacing:2.438861px;}
.ws6c{word-spacing:2.510592px;}
.ws8{word-spacing:2.552729px;}
.ws6d{word-spacing:2.582323px;}
.ws41{word-spacing:2.654054px;}
.ws52{word-spacing:2.725786px;}
.ws5a{word-spacing:2.940979px;}
.ws24{word-spacing:3.084442px;}
.ws4e{word-spacing:3.156173px;}
.ws5f{word-spacing:3.371366px;}
.ws6f{word-spacing:3.443098px;}
.ws60{word-spacing:3.586560px;}
.ws12{word-spacing:3.730912px;}
.ws50{word-spacing:3.873485px;}
.ws20{word-spacing:4.088678px;}
.ws29{word-spacing:4.160410px;}
.ws45{word-spacing:4.232141px;}
.ws11{word-spacing:4.254549px;}
.ws4f{word-spacing:4.303872px;}
.ws2{word-spacing:4.320004px;}
.ws68{word-spacing:4.447334px;}
.ws22{word-spacing:4.519066px;}
.ws15{word-spacing:4.590797px;}
.ws40{word-spacing:4.662528px;}
.ws51{word-spacing:5.092915px;}
.ws4d{word-spacing:5.379840px;}
.ws5c{word-spacing:5.523302px;}
.ws44{word-spacing:5.666765px;}
.ws53{word-spacing:5.738496px;}
.ws54{word-spacing:5.810227px;}
.ws5d{word-spacing:5.881958px;}
.ws7{word-spacing:6.021823px;}
.ws23{word-spacing:6.097152px;}
.ws2a{word-spacing:6.168883px;}
.ws43{word-spacing:6.599270px;}
.ws3c{word-spacing:6.671002px;}
.ws3d{word-spacing:6.742733px;}
.ws3b{word-spacing:6.814464px;}
.ws63{word-spacing:7.316582px;}
.wsc{word-spacing:7.723643px;}
.ws34{word-spacing:7.746970px;}
.ws17{word-spacing:7.890432px;}
.ws25{word-spacing:7.962163px;}
.ws56{word-spacing:8.249088px;}
.ws18{word-spacing:8.679475px;}
.ws69{word-spacing:8.894669px;}
.ws2e{word-spacing:8.966400px;}
.ws65{word-spacing:9.038131px;}
.ws4{word-spacing:9.294553px;}
.ws62{word-spacing:9.396787px;}
.ws35{word-spacing:10.472755px;}
.ws4c{word-spacing:10.903142px;}
.ws27{word-spacing:12.050842px;}
.ws6e{word-spacing:12.122573px;}
.ws66{word-spacing:12.337766px;}
.ws67{word-spacing:12.409498px;}
.ws1{word-spacing:12.501829px;}
.ws28{word-spacing:12.624691px;}
.ws70{word-spacing:14.704896px;}
.ws4b{word-spacing:17.215488px;}
.ws14{word-spacing:77.469300px;}
._3{margin-left:-9.554569px;}
._22{margin-left:-8.430910px;}
._1c{margin-left:-7.244851px;}
._f{margin-left:-5.738496px;}
._0{margin-left:-4.587075px;}
._1{margin-left:-3.099375px;}
._2{margin-left:-1.859625px;}
._b{width:1.724828px;}
._19{width:14.863292px;}
._1e{width:16.487404px;}
._10{width:17.704201px;}
._4{width:19.336003px;}
._c{width:20.671991px;}
._14{width:22.087823px;}
._a{width:23.170928px;}
._9{width:25.292372px;}
._13{width:26.463427px;}
._5{width:28.237829px;}
._1f{width:29.777556px;}
._16{width:31.571275px;}
._23{width:33.584696px;}
._11{width:35.062063px;}
._1b{width:36.208097px;}
._1d{width:37.223107px;}
._7{width:38.487305px;}
._12{width:40.815053px;}
._1a{width:43.176796px;}
._8{width:44.448926px;}
._e{width:45.578962px;}
._d{width:46.901432px;}
._6{width:48.721231px;}
._20{width:50.498765px;}
._21{width:58.556261px;}
._15{width:60.896067px;}
._18{width:86.077200px;}
._17{width:103.292400px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y24{bottom:63.168000px;}
.y23{bottom:108.000000px;}
.y72{bottom:111.043500px;}
.y96{bottom:115.377000px;}
.y4d{bottom:125.016000px;}
.y22{bottom:129.669000px;}
.y71{bottom:132.712500px;}
.y95{bottom:137.046000px;}
.y4c{bottom:146.685000px;}
.y21{bottom:151.338000px;}
.y70{bottom:154.381500px;}
.y4b{bottom:168.354000px;}
.y20{bottom:173.007000px;}
.y94{bottom:173.659500px;}
.y6f{bottom:176.050500px;}
.y4a{bottom:190.023000px;}
.y1f{bottom:194.674500px;}
.y93{bottom:210.271500px;}
.y49{bottom:211.692000px;}
.y6e{bottom:212.662500px;}
.y1e{bottom:216.343500px;}
.y92{bottom:231.940500px;}
.y48{bottom:233.361000px;}
.y6d{bottom:234.331500px;}
.y1d{bottom:238.012500px;}
.y47{bottom:255.028500px;}
.y6c{bottom:256.000500px;}
.y1c{bottom:259.681500px;}
.y91{bottom:268.554000px;}
.y6b{bottom:277.669500px;}
.y1b{bottom:281.350500px;}
.y46{bottom:288.802500px;}
.y6a{bottom:299.338500px;}
.y1a{bottom:303.019500px;}
.y90{bottom:305.166000px;}
.y69{bottom:335.950500px;}
.y8f{bottom:341.778000px;}
.y45{bottom:341.928000px;}
.y19{bottom:343.248000px;}
.y68{bottom:357.619500px;}
.y8e{bottom:363.447000px;}
.y44{bottom:363.597000px;}
.y67{bottom:379.288500px;}
.y43{bottom:385.266000px;}
.y8d{bottom:400.060500px;}
.y66{bottom:400.957500px;}
.y18{bottom:404.287500px;}
.y42{bottom:406.935000px;}
.y8c{bottom:421.729500px;}
.y65{bottom:422.625000px;}
.y17{bottom:424.611000px;}
.y41{bottom:428.602500px;}
.y40{bottom:450.271500px;}
.y8b{bottom:458.341500px;}
.y64{bottom:459.238500px;}
.y16{bottom:461.299500px;}
.y3f{bottom:471.940500px;}
.y8a{bottom:480.010500px;}
.y63{bottom:480.907500px;}
.y15{bottom:481.623000px;}
.y3e{bottom:493.609500px;}
.y14{bottom:501.946500px;}
.y62{bottom:502.576500px;}
.y3d{bottom:515.278500px;}
.y89{bottom:516.622500px;}
.y13{bottom:522.270000px;}
.y61{bottom:524.244000px;}
.y3c{bottom:536.947500px;}
.y88{bottom:538.291500px;}
.y12{bottom:542.593500px;}
.y60{bottom:560.857500px;}
.y11{bottom:562.918500px;}
.y3b{bottom:570.720000px;}
.y87{bottom:574.905000px;}
.y5f{bottom:582.526500px;}
.y10{bottom:583.242000px;}
.yf{bottom:603.565500px;}
.y5e{bottom:604.194000px;}
.y86{bottom:611.517000px;}
.y3a{bottom:623.845500px;}
.ye{bottom:623.889000px;}
.y5d{bottom:625.863000px;}
.y85{bottom:633.186000px;}
.yd{bottom:644.212500px;}
.y39{bottom:645.514500px;}
.yc{bottom:664.537500px;}
.y5c{bottom:666.960000px;}
.y38{bottom:667.183500px;}
.y84{bottom:669.798000px;}
.yb{bottom:684.861000px;}
.y5b{bottom:688.627500px;}
.y83{bottom:691.467000px;}
.ya{bottom:705.184500px;}
.y37{bottom:707.412000px;}
.y9{bottom:725.508000px;}
.y82{bottom:728.080500px;}
.y5a{bottom:728.857500px;}
.ya2{bottom:728.932500px;}
.y8{bottom:745.831500px;}
.y81{bottom:749.749500px;}
.ya1{bottom:765.544500px;}
.y7{bottom:766.156500px;}
.y36{bottom:768.534000px;}
.y80{bottom:783.522000px;}
.ya0{bottom:787.213500px;}
.y59{bottom:789.978000px;}
.y35{bottom:790.201500px;}
.y6{bottom:797.125500px;}
.y58{bottom:811.647000px;}
.y34{bottom:811.870500px;}
.y9f{bottom:823.825500px;}
.y57{bottom:833.316000px;}
.y33{bottom:833.539500px;}
.y7f{bottom:836.647500px;}
.y9e{bottom:845.494500px;}
.y56{bottom:854.983500px;}
.y32{bottom:855.208500px;}
.y7e{bottom:858.316500px;}
.y5{bottom:863.175000px;}
.y55{bottom:876.652500px;}
.y31{bottom:876.877500px;}
.y7d{bottom:879.985500px;}
.y9d{bottom:882.108000px;}
.y54{bottom:898.321500px;}
.y30{bottom:898.546500px;}
.y7c{bottom:901.654500px;}
.y9c{bottom:903.775500px;}
.y53{bottom:919.990500px;}
.y2f{bottom:920.214000px;}
.y7b{bottom:923.323500px;}
.y4{bottom:929.413500px;}
.y9b{bottom:940.389000px;}
.y52{bottom:941.659500px;}
.y2e{bottom:941.883000px;}
.y7a{bottom:944.991000px;}
.y51{bottom:963.328500px;}
.y2d{bottom:963.552000px;}
.y79{bottom:966.660000px;}
.y3{bottom:972.519000px;}
.y9a{bottom:977.001000px;}
.y50{bottom:984.996000px;}
.y2c{bottom:985.221000px;}
.y78{bottom:988.329000px;}
.y99{bottom:998.670000px;}
.y4f{bottom:1006.665000px;}
.y2b{bottom:1006.890000px;}
.y77{bottom:1009.998000px;}
.y2{bottom:1026.316500px;}
.y2a{bottom:1028.557500px;}
.y76{bottom:1031.667000px;}
.y98{bottom:1035.283500px;}
.y4e{bottom:1040.439000px;}
.y29{bottom:1050.226500px;}
.y75{bottom:1053.336000px;}
.y97{bottom:1056.952500px;}
.y1{bottom:1063.677000px;}
.y28{bottom:1071.895500px;}
.y74{bottom:1075.003500px;}
.y27{bottom:1093.564500px;}
.y73{bottom:1096.672500px;}
.y26{bottom:1115.233500px;}
.y25{bottom:1136.902500px;}
.h4{height:41.125613px;}
.h5{height:45.032765px;}
.h6{height:45.425492px;}
.h8{height:49.351066px;}
.ha{height:49.781453px;}
.hb{height:59.737577px;}
.h9{height:60.167963px;}
.h7{height:71.684926px;}
.h3{height:72.361613px;}
.h2{height:86.038650px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x1{left:109.882500px;}
.x2{left:117.382500px;}
.xc{left:120.702000px;}
.xb{left:129.669000px;}
.xa{left:134.338500px;}
.x7{left:151.897500px;}
.x4{left:363.516000px;}
.x3{left:365.545500px;}
.x5{left:389.421000px;}
.x6{left:416.013000px;}
.x9{left:441.973500px;}
@media print{
.v2{vertical-align:-27.765333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:27.765333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.659733pt;}
.ws31{word-spacing:-15.940267pt;}
.wse{word-spacing:-14.545467pt;}
.ws37{word-spacing:-3.825664pt;}
.ws38{word-spacing:-3.315575pt;}
.ws2d{word-spacing:-2.805487pt;}
.ws5e{word-spacing:-2.486682pt;}
.ws30{word-spacing:-2.359159pt;}
.ws1f{word-spacing:-2.231637pt;}
.ws1e{word-spacing:-2.167876pt;}
.ws57{word-spacing:-2.104115pt;}
.ws21{word-spacing:-1.849071pt;}
.ws1d{word-spacing:-1.785310pt;}
.ws32{word-spacing:-1.721549pt;}
.ws58{word-spacing:-1.657788pt;}
.ws49{word-spacing:-1.594027pt;}
.ws3f{word-spacing:-1.466505pt;}
.ws48{word-spacing:-1.338982pt;}
.ws2c{word-spacing:-1.275221pt;}
.wsf{word-spacing:-0.989092pt;}
.ws1a{word-spacing:-0.956416pt;}
.wsa{word-spacing:-0.930910pt;}
.ws5b{word-spacing:-0.892655pt;}
.wsb{word-spacing:-0.872728pt;}
.ws3a{word-spacing:-0.701372pt;}
.ws3{word-spacing:-0.698182pt;}
.ws46{word-spacing:-0.510089pt;}
.ws1b{word-spacing:-0.446327pt;}
.ws13{word-spacing:-0.349091pt;}
.ws26{word-spacing:-0.318805pt;}
.ws61{word-spacing:-0.255044pt;}
.ws5{word-spacing:-0.232727pt;}
.ws39{word-spacing:-0.076513pt;}
.ws0{word-spacing:0.000000pt;}
.ws2f{word-spacing:0.063761pt;}
.ws59{word-spacing:0.127522pt;}
.ws47{word-spacing:0.191283pt;}
.ws9{word-spacing:0.407273pt;}
.ws10{word-spacing:0.465455pt;}
.ws19{word-spacing:0.637611pt;}
.ws42{word-spacing:0.701372pt;}
.ws36{word-spacing:1.083938pt;}
.ws2b{word-spacing:1.275221pt;}
.wsd{word-spacing:1.338183pt;}
.ws4a{word-spacing:1.338982pt;}
.ws1c{word-spacing:1.402743pt;}
.ws6a{word-spacing:1.466505pt;}
.ws64{word-spacing:1.530266pt;}
.ws16{word-spacing:1.594027pt;}
.ws6b{word-spacing:1.849071pt;}
.ws3e{word-spacing:2.040354pt;}
.ws6{word-spacing:2.094547pt;}
.ws55{word-spacing:2.104115pt;}
.ws33{word-spacing:2.167876pt;}
.ws6c{word-spacing:2.231637pt;}
.ws8{word-spacing:2.269093pt;}
.ws6d{word-spacing:2.295398pt;}
.ws41{word-spacing:2.359159pt;}
.ws52{word-spacing:2.422921pt;}
.ws5a{word-spacing:2.614204pt;}
.ws24{word-spacing:2.741726pt;}
.ws4e{word-spacing:2.805487pt;}
.ws5f{word-spacing:2.996770pt;}
.ws6f{word-spacing:3.060531pt;}
.ws60{word-spacing:3.188053pt;}
.ws12{word-spacing:3.316366pt;}
.ws50{word-spacing:3.443098pt;}
.ws20{word-spacing:3.634381pt;}
.ws29{word-spacing:3.698142pt;}
.ws45{word-spacing:3.761903pt;}
.ws11{word-spacing:3.781821pt;}
.ws4f{word-spacing:3.825664pt;}
.ws2{word-spacing:3.840003pt;}
.ws68{word-spacing:3.953186pt;}
.ws22{word-spacing:4.016947pt;}
.ws15{word-spacing:4.080708pt;}
.ws40{word-spacing:4.144469pt;}
.ws51{word-spacing:4.527036pt;}
.ws4d{word-spacing:4.782080pt;}
.ws5c{word-spacing:4.909602pt;}
.ws44{word-spacing:5.037124pt;}
.ws53{word-spacing:5.100885pt;}
.ws54{word-spacing:5.164646pt;}
.ws5d{word-spacing:5.228407pt;}
.ws7{word-spacing:5.352732pt;}
.ws23{word-spacing:5.419691pt;}
.ws2a{word-spacing:5.483452pt;}
.ws43{word-spacing:5.866018pt;}
.ws3c{word-spacing:5.929779pt;}
.ws3d{word-spacing:5.993540pt;}
.ws3b{word-spacing:6.057301pt;}
.ws63{word-spacing:6.503629pt;}
.wsc{word-spacing:6.865460pt;}
.ws34{word-spacing:6.886195pt;}
.ws17{word-spacing:7.013717pt;}
.ws25{word-spacing:7.077478pt;}
.ws56{word-spacing:7.332523pt;}
.ws18{word-spacing:7.715089pt;}
.ws69{word-spacing:7.906372pt;}
.ws2e{word-spacing:7.970133pt;}
.ws65{word-spacing:8.033894pt;}
.ws4{word-spacing:8.261825pt;}
.ws62{word-spacing:8.352700pt;}
.ws35{word-spacing:9.309116pt;}
.ws4c{word-spacing:9.691682pt;}
.ws27{word-spacing:10.711859pt;}
.ws6e{word-spacing:10.775620pt;}
.ws66{word-spacing:10.966903pt;}
.ws67{word-spacing:11.030665pt;}
.ws1{word-spacing:11.112737pt;}
.ws28{word-spacing:11.221948pt;}
.ws70{word-spacing:13.071019pt;}
.ws4b{word-spacing:15.302656pt;}
.ws14{word-spacing:68.861600pt;}
._3{margin-left:-8.492950pt;}
._22{margin-left:-7.494142pt;}
._1c{margin-left:-6.439868pt;}
._f{margin-left:-5.100885pt;}
._0{margin-left:-4.077400pt;}
._1{margin-left:-2.755000pt;}
._2{margin-left:-1.653000pt;}
._b{width:1.533181pt;}
._19{width:13.211815pt;}
._1e{width:14.655470pt;}
._10{width:15.737067pt;}
._4{width:17.187558pt;}
._c{width:18.375103pt;}
._14{width:19.633621pt;}
._a{width:20.596381pt;}
._9{width:22.482108pt;}
._13{width:23.523046pt;}
._5{width:25.100292pt;}
._1f{width:26.468939pt;}
._16{width:28.063356pt;}
._23{width:29.853063pt;}
._11{width:31.166278pt;}
._1b{width:32.184975pt;}
._1d{width:33.087206pt;}
._7{width:34.210938pt;}
._12{width:36.280047pt;}
._1a{width:38.379374pt;}
._8{width:39.510157pt;}
._e{width:40.514633pt;}
._d{width:41.690162pt;}
._6{width:43.307761pt;}
._20{width:44.887791pt;}
._21{width:52.050010pt;}
._15{width:54.129837pt;}
._18{width:76.513067pt;}
._17{width:91.815467pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:56.149333pt;}
.y23{bottom:96.000000pt;}
.y72{bottom:98.705333pt;}
.y96{bottom:102.557333pt;}
.y4d{bottom:111.125333pt;}
.y22{bottom:115.261333pt;}
.y71{bottom:117.966667pt;}
.y95{bottom:121.818667pt;}
.y4c{bottom:130.386667pt;}
.y21{bottom:134.522667pt;}
.y70{bottom:137.228000pt;}
.y4b{bottom:149.648000pt;}
.y20{bottom:153.784000pt;}
.y94{bottom:154.364000pt;}
.y6f{bottom:156.489333pt;}
.y4a{bottom:168.909333pt;}
.y1f{bottom:173.044000pt;}
.y93{bottom:186.908000pt;}
.y49{bottom:188.170667pt;}
.y6e{bottom:189.033333pt;}
.y1e{bottom:192.305333pt;}
.y92{bottom:206.169333pt;}
.y48{bottom:207.432000pt;}
.y6d{bottom:208.294667pt;}
.y1d{bottom:211.566667pt;}
.y47{bottom:226.692000pt;}
.y6c{bottom:227.556000pt;}
.y1c{bottom:230.828000pt;}
.y91{bottom:238.714667pt;}
.y6b{bottom:246.817333pt;}
.y1b{bottom:250.089333pt;}
.y46{bottom:256.713333pt;}
.y6a{bottom:266.078667pt;}
.y1a{bottom:269.350667pt;}
.y90{bottom:271.258667pt;}
.y69{bottom:298.622667pt;}
.y8f{bottom:303.802667pt;}
.y45{bottom:303.936000pt;}
.y19{bottom:305.109333pt;}
.y68{bottom:317.884000pt;}
.y8e{bottom:323.064000pt;}
.y44{bottom:323.197333pt;}
.y67{bottom:337.145333pt;}
.y43{bottom:342.458667pt;}
.y8d{bottom:355.609333pt;}
.y66{bottom:356.406667pt;}
.y18{bottom:359.366667pt;}
.y42{bottom:361.720000pt;}
.y8c{bottom:374.870667pt;}
.y65{bottom:375.666667pt;}
.y17{bottom:377.432000pt;}
.y41{bottom:380.980000pt;}
.y40{bottom:400.241333pt;}
.y8b{bottom:407.414667pt;}
.y64{bottom:408.212000pt;}
.y16{bottom:410.044000pt;}
.y3f{bottom:419.502667pt;}
.y8a{bottom:426.676000pt;}
.y63{bottom:427.473333pt;}
.y15{bottom:428.109333pt;}
.y3e{bottom:438.764000pt;}
.y14{bottom:446.174667pt;}
.y62{bottom:446.734667pt;}
.y3d{bottom:458.025333pt;}
.y89{bottom:459.220000pt;}
.y13{bottom:464.240000pt;}
.y61{bottom:465.994667pt;}
.y3c{bottom:477.286667pt;}
.y88{bottom:478.481333pt;}
.y12{bottom:482.305333pt;}
.y60{bottom:498.540000pt;}
.y11{bottom:500.372000pt;}
.y3b{bottom:507.306667pt;}
.y87{bottom:511.026667pt;}
.y5f{bottom:517.801333pt;}
.y10{bottom:518.437333pt;}
.yf{bottom:536.502667pt;}
.y5e{bottom:537.061333pt;}
.y86{bottom:543.570667pt;}
.y3a{bottom:554.529333pt;}
.ye{bottom:554.568000pt;}
.y5d{bottom:556.322667pt;}
.y85{bottom:562.832000pt;}
.yd{bottom:572.633333pt;}
.y39{bottom:573.790667pt;}
.yc{bottom:590.700000pt;}
.y5c{bottom:592.853333pt;}
.y38{bottom:593.052000pt;}
.y84{bottom:595.376000pt;}
.yb{bottom:608.765333pt;}
.y5b{bottom:612.113333pt;}
.y83{bottom:614.637333pt;}
.ya{bottom:626.830667pt;}
.y37{bottom:628.810667pt;}
.y9{bottom:644.896000pt;}
.y82{bottom:647.182667pt;}
.y5a{bottom:647.873333pt;}
.ya2{bottom:647.940000pt;}
.y8{bottom:662.961333pt;}
.y81{bottom:666.444000pt;}
.ya1{bottom:680.484000pt;}
.y7{bottom:681.028000pt;}
.y36{bottom:683.141333pt;}
.y80{bottom:696.464000pt;}
.ya0{bottom:699.745333pt;}
.y59{bottom:702.202667pt;}
.y35{bottom:702.401333pt;}
.y6{bottom:708.556000pt;}
.y58{bottom:721.464000pt;}
.y34{bottom:721.662667pt;}
.y9f{bottom:732.289333pt;}
.y57{bottom:740.725333pt;}
.y33{bottom:740.924000pt;}
.y7f{bottom:743.686667pt;}
.y9e{bottom:751.550667pt;}
.y56{bottom:759.985333pt;}
.y32{bottom:760.185333pt;}
.y7e{bottom:762.948000pt;}
.y5{bottom:767.266667pt;}
.y55{bottom:779.246667pt;}
.y31{bottom:779.446667pt;}
.y7d{bottom:782.209333pt;}
.y9d{bottom:784.096000pt;}
.y54{bottom:798.508000pt;}
.y30{bottom:798.708000pt;}
.y7c{bottom:801.470667pt;}
.y9c{bottom:803.356000pt;}
.y53{bottom:817.769333pt;}
.y2f{bottom:817.968000pt;}
.y7b{bottom:820.732000pt;}
.y4{bottom:826.145333pt;}
.y9b{bottom:835.901333pt;}
.y52{bottom:837.030667pt;}
.y2e{bottom:837.229333pt;}
.y7a{bottom:839.992000pt;}
.y51{bottom:856.292000pt;}
.y2d{bottom:856.490667pt;}
.y79{bottom:859.253333pt;}
.y3{bottom:864.461333pt;}
.y9a{bottom:868.445333pt;}
.y50{bottom:875.552000pt;}
.y2c{bottom:875.752000pt;}
.y78{bottom:878.514667pt;}
.y99{bottom:887.706667pt;}
.y4f{bottom:894.813333pt;}
.y2b{bottom:895.013333pt;}
.y77{bottom:897.776000pt;}
.y2{bottom:912.281333pt;}
.y2a{bottom:914.273333pt;}
.y76{bottom:917.037333pt;}
.y98{bottom:920.252000pt;}
.y4e{bottom:924.834667pt;}
.y29{bottom:933.534667pt;}
.y75{bottom:936.298667pt;}
.y97{bottom:939.513333pt;}
.y1{bottom:945.490667pt;}
.y28{bottom:952.796000pt;}
.y74{bottom:955.558667pt;}
.y27{bottom:972.057333pt;}
.y73{bottom:974.820000pt;}
.y26{bottom:991.318667pt;}
.y25{bottom:1010.580000pt;}
.h4{height:36.556100pt;}
.h5{height:40.029124pt;}
.h6{height:40.378215pt;}
.h8{height:43.867614pt;}
.ha{height:44.250180pt;}
.hb{height:53.100068pt;}
.h9{height:53.482634pt;}
.h7{height:63.719934pt;}
.h3{height:64.321434pt;}
.h2{height:76.478800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x1{left:97.673333pt;}
.x2{left:104.340000pt;}
.xc{left:107.290667pt;}
.xb{left:115.261333pt;}
.xa{left:119.412000pt;}
.x7{left:135.020000pt;}
.x4{left:323.125333pt;}
.x3{left:324.929333pt;}
.x5{left:346.152000pt;}
.x6{left:369.789333pt;}
.x9{left:392.865333pt;}
}




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