
    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_9aae47932633015ef41a0d0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.718750;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_5cfb0f32cfa4ae87ebcccadc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_79634071406ffd2850039d5e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_67bc3bf839b6ef9ba4eb0d76.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.885742;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_419131bccebcc318c0b3fd54.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321678px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:4.494141px;}
.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;}
}
.ws4{word-spacing:-18.000000px;}
.ws0{word-spacing:-15.000000px;}
.ws2{word-spacing:-10.800000px;}
.ws3{word-spacing:-10.001953px;}
.ws5{word-spacing:-9.000000px;}
.ws1{word-spacing:0.000000px;}
._11{margin-left:-9.281250px;}
._14{margin-left:-7.980468px;}
._10{margin-left:-6.609374px;}
._0{margin-left:-5.343728px;}
._9{margin-left:-4.203711px;}
._8{margin-left:-2.579584px;}
._6{margin-left:-1.064800px;}
._5{width:3.593046px;}
._4{width:4.666163px;}
._3{width:8.885727px;}
._b{width:9.914173px;}
._2{width:13.500305px;}
._1{width:17.905751px;}
._7{width:22.362931px;}
._c{width:23.459468px;}
._a{width:27.000000px;}
._d{width:31.499999px;}
._13{width:35.999999px;}
._12{width:40.500000px;}
._f{width:44.999986px;}
._e{width:49.500000px;}
.fc1{color:rgb(20,17,15);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:43.200002px;}
.fs3{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.496571px;}
.y77{bottom:3.496581px;}
.y30{bottom:3.496583px;}
.yb1{bottom:88.784184px;}
.y52{bottom:88.784550px;}
.yd0{bottom:100.738044px;}
.y98{bottom:103.125736px;}
.yb0{bottom:107.757575px;}
.y51{bottom:107.757939px;}
.y75{bottom:112.877194px;}
.y50{bottom:126.731330px;}
.y2e{bottom:131.343574px;}
.ycf{bottom:131.785408px;}
.yaf{bottom:132.422980px;}
.y97{bottom:134.173099px;}
.yf2{bottom:143.906242px;}
.y74{bottom:143.924558px;}
.y4f{bottom:151.396735px;}
.y2d{bottom:157.592108px;}
.yce{bottom:162.832771px;}
.y96{bottom:165.220462px;}
.y2c{bottom:174.840630px;}
.y73{bottom:174.971926px;}
.yf1{bottom:182.604493px;}
.y2b{bottom:192.089164px;}
.ycd{bottom:193.880134px;}
.y95{bottom:194.918707px;}
.y4e{bottom:200.622625px;}
.yf0{bottom:203.302735px;}
.y72{bottom:206.019289px;}
.y2a{bottom:209.337698px;}
.yef{bottom:224.000978px;}
.ycc{bottom:224.927498px;}
.y29{bottom:226.586232px;}
.y4d{bottom:231.669799px;}
.y71{bottom:237.066653px;}
.y28{bottom:243.834765px;}
.y94{bottom:243.966066px;}
.ycb{bottom:255.974856px;}
.y27{bottom:261.083301px;}
.yee{bottom:262.699225px;}
.y4c{bottom:262.717163px;}
.y70{bottom:266.440422px;}
.y93{bottom:275.013429px;}
.y26{bottom:278.331836px;}
.yed{bottom:283.397468px;}
.y6f{bottom:285.413810px;}
.yca{bottom:287.022219px;}
.y4b{bottom:293.764521px;}
.y25{bottom:295.580371px;}
.y6e{bottom:304.387199px;}
.y92{bottom:306.060793px;}
.y24{bottom:312.828915px;}
.ybd{bottom:313.431158px;}
.yc9{bottom:318.069583px;}
.yec{bottom:322.095700px;}
.y6d{bottom:323.360588px;}
.y4a{bottom:324.811884px;}
.y23{bottom:330.077451px;}
.y91{bottom:337.108156px;}
.y6c{bottom:342.333979px;}
.yeb{bottom:342.793943px;}
.ybc{bottom:344.478524px;}
.y22{bottom:347.325986px;}
.yc8{bottom:349.116946px;}
.yae{bottom:354.510503px;}
.y49{bottom:355.859248px;}
.y6b{bottom:361.307367px;}
.y21{bottom:364.574521px;}
.y90{bottom:368.155519px;}
.ybb{bottom:375.525880px;}
.yc7{bottom:380.164309px;}
.yea{bottom:381.492193px;}
.y20{bottom:381.823056px;}
.yad{bottom:385.557861px;}
.y48{bottom:386.906611px;}
.y1f{bottom:399.071592px;}
.y8f{bottom:399.202883px;}
.y6a{bottom:399.954339px;}
.ye9{bottom:402.190435px;}
.yba{bottom:406.573248px;}
.yc6{bottom:411.211673px;}
.y1e{bottom:416.320124px;}
.yac{bottom:416.605224px;}
.y47{bottom:417.953974px;}
.ye8{bottom:422.888678px;}
.y8e{bottom:430.250234px;}
.y69{bottom:431.001703px;}
.y1d{bottom:433.568659px;}
.yb9{bottom:437.620611px;}
.yc5{bottom:442.259034px;}
.yab{bottom:447.652588px;}
.y46{bottom:449.001338px;}
.y8d{bottom:461.297602px;}
.ye7{bottom:461.586908px;}
.y68{bottom:462.049066px;}
.yb8{bottom:468.667974px;}
.y1c{bottom:468.817203px;}
.yc4{bottom:473.306398px;}
.yaa{bottom:478.699951px;}
.y45{bottom:480.048712px;}
.y8c{bottom:492.344969px;}
.y67{bottom:493.096429px;}
.y1b{bottom:495.065759px;}
.yb7{bottom:499.715338px;}
.ye6{bottom:500.285155px;}
.yc3{bottom:504.353761px;}
.ya9{bottom:509.747314px;}
.y44{bottom:511.096079px;}
.y1a{bottom:512.314293px;}
.ye5{bottom:520.983398px;}
.y8b{bottom:523.392325px;}
.y66{bottom:524.143792px;}
.y19{bottom:529.562834px;}
.yb6{bottom:530.762701px;}
.yc2{bottom:535.401124px;}
.ya8{bottom:540.794678px;}
.y43{bottom:542.143435px;}
.y18{bottom:546.811369px;}
.y8a{bottom:554.439693px;}
.y65{bottom:555.191164px;}
.ye4{bottom:559.681642px;}
.yb5{bottom:561.810064px;}
.y17{bottom:564.059921px;}
.yc1{bottom:566.448487px;}
.ya7{bottom:571.842048px;}
.y42{bottom:573.190803px;}
.y16{bottom:581.308456px;}
.y89{bottom:585.487056px;}
.y64{bottom:586.238524px;}
.yb4{bottom:592.857428px;}
.yc0{bottom:596.146732px;}
.ye3{bottom:598.379875px;}
.y15{bottom:598.556991px;}
.ya6{bottom:602.889411px;}
.y41{bottom:604.238166px;}
.y14{bottom:615.805527px;}
.y88{bottom:616.534419px;}
.y63{bottom:617.285896px;}
.ye2{bottom:619.078118px;}
.yb3{bottom:622.717528px;}
.y13{bottom:633.054053px;}
.ya5{bottom:633.936774px;}
.y40{bottom:635.285529px;}
.ybf{bottom:644.007568px;}
.y87{bottom:647.581783px;}
.y62{bottom:648.333259px;}
.y12{bottom:650.302589px;}
.yb2{bottom:652.364499px;}
.ye1{bottom:657.776368px;}
.ya4{bottom:664.984138px;}
.y3f{bottom:666.332893px;}
.y11{bottom:667.551128px;}
.ybe{bottom:673.654538px;}
.ye0{bottom:678.474610px;}
.y86{bottom:678.629146px;}
.y61{bottom:679.380613px;}
.y10{bottom:684.799708px;}
.ya3{bottom:696.031501px;}
.y3e{bottom:697.380256px;}
.ydf{bottom:699.172852px;}
.yf{bottom:702.048243px;}
.y85{bottom:709.676509px;}
.y60{bottom:710.427985px;}
.ya2{bottom:727.078864px;}
.y3d{bottom:728.427619px;}
.yde{bottom:737.871088px;}
.ye{bottom:737.945708px;}
.y84{bottom:740.723872px;}
.y5f{bottom:741.475159px;}
.ya1{bottom:758.126228px;}
.ydd{bottom:758.569330px;}
.y3c{bottom:759.474983px;}
.y83{bottom:770.422118px;}
.y5e{bottom:772.522523px;}
.yd{bottom:776.643952px;}
.ydc{bottom:779.267573px;}
.ya0{bottom:789.173579px;}
.y3b{bottom:790.522337px;}
.y5d{bottom:803.569891px;}
.yc{bottom:815.342198px;}
.ydb{bottom:817.965820px;}
.y82{bottom:819.469483px;}
.y9f{bottom:820.220947px;}
.y3a{bottom:821.569705px;}
.y5c{bottom:834.617254px;}
.yda{bottom:838.664062px;}
.y81{bottom:850.516846px;}
.y9e{bottom:851.268308px;}
.y39{bottom:852.617061px;}
.yb{bottom:854.040443px;}
.y5b{bottom:865.664617px;}
.yd9{bottom:877.362309px;}
.y80{bottom:881.564209px;}
.y9d{bottom:882.315671px;}
.y38{bottom:883.664428px;}
.ya{bottom:892.738675px;}
.y5a{bottom:895.362847px;}
.yd8{bottom:898.060543px;}
.y7f{bottom:912.611572px;}
.y9c{bottom:913.363034px;}
.y9{bottom:913.436917px;}
.y37{bottom:914.711791px;}
.yd7{bottom:918.758789px;}
.yd6{bottom:939.457036px;}
.y7e{bottom:941.985349px;}
.y59{bottom:944.410217px;}
.y9b{bottom:944.410398px;}
.y36{bottom:945.759154px;}
.y8{bottom:952.135165px;}
.yd5{bottom:960.156007px;}
.y7d{bottom:960.958737px;}
.y7{bottom:972.833408px;}
.y58{bottom:975.457580px;}
.y9a{bottom:975.457765px;}
.y35{bottom:976.806518px;}
.y7c{bottom:979.932129px;}
.yd4{bottom:998.854247px;}
.y7b{bottom:998.905517px;}
.y57{bottom:1006.504943px;}
.y99{bottom:1006.505127px;}
.y34{bottom:1007.853881px;}
.y6{bottom:1012.829500px;}
.yf7{bottom:1019.551758px;}
.yd3{bottom:1019.552489px;}
.y56{bottom:1037.552307px;}
.y7a{bottom:1037.552491px;}
.y33{bottom:1038.901244px;}
.yf6{bottom:1040.250000px;}
.yd2{bottom:1040.250732px;}
.y5{bottom:1048.129303px;}
.yd1{bottom:1060.948974px;}
.y55{bottom:1068.599669px;}
.y79{bottom:1068.599854px;}
.y32{bottom:1069.948608px;}
.y4{bottom:1077.827534px;}
.yf5{bottom:1078.948242px;}
.yf4{bottom:1099.646484px;}
.y31{bottom:1099.646850px;}
.y54{bottom:1099.647033px;}
.y78{bottom:1099.647217px;}
.y3{bottom:1100.974812px;}
.yf3{bottom:1116.451171px;}
.y2f{bottom:1116.451538px;}
.y1{bottom:1116.451618px;}
.y53{bottom:1116.451720px;}
.y76{bottom:1116.451905px;}
.hb{height:36.399904px;}
.h2{height:47.437501px;}
.h6{height:48.796875px;}
.h7{height:49.992188px;}
.h8{height:53.789061px;}
.hc{height:59.167970px;}
.h5{height:63.949219px;}
.h3{height:64.546875px;}
.hf{height:64.546889px;}
.he{height:64.546913px;}
.ha{height:66.049805px;}
.h11{height:66.049807px;}
.h4{height:85.265628px;}
.h10{height:146.548095px;}
.hd{height:146.548280px;}
.h1{height:146.548382px;}
.h9{height:146.548462px;}
.h12{height:146.548829px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:127.575005px;}
.x7{left:137.298787px;}
.x5{left:141.842732px;}
.x3{left:147.028279px;}
.xd{left:148.950005px;}
.x15{left:159.838337px;}
.x13{left:180.450005px;}
.xc{left:213.075005px;}
.x11{left:247.513633px;}
.x2{left:282.239210px;}
.xf{left:287.325005px;}
.xe{left:297.450005px;}
.x14{left:301.950005px;}
.x6{left:329.937459px;}
.x8{left:406.455037px;}
.x4{left:467.719205px;}
.xa{left:523.888767px;}
.xb{left:579.848731px;}
.x10{left:642.094205px;}
.x16{left:797.906705px;}
.x9{left:807.863416px;}
.x12{left:813.825005px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285936pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:3.994792pt;}
.ws4{word-spacing:-16.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws2{word-spacing:-9.600000pt;}
.ws3{word-spacing:-8.890625pt;}
.ws5{word-spacing:-8.000000pt;}
.ws1{word-spacing:0.000000pt;}
._11{margin-left:-8.250000pt;}
._14{margin-left:-7.093749pt;}
._10{margin-left:-5.875000pt;}
._0{margin-left:-4.749980pt;}
._9{margin-left:-3.736632pt;}
._8{margin-left:-2.292963pt;}
._6{margin-left:-0.946489pt;}
._5{width:3.193819pt;}
._4{width:4.147700pt;}
._3{width:7.898424pt;}
._b{width:8.812599pt;}
._2{width:12.000271pt;}
._1{width:15.916223pt;}
._7{width:19.878161pt;}
._c{width:20.852860pt;}
._a{width:24.000000pt;}
._d{width:27.999999pt;}
._13{width:31.999999pt;}
._12{width:36.000000pt;}
._f{width:39.999988pt;}
._e{width:44.000000pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:38.400002pt;}
.fs3{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.108063pt;}
.y77{bottom:3.108072pt;}
.y30{bottom:3.108073pt;}
.yb1{bottom:78.919274pt;}
.y52{bottom:78.919600pt;}
.yd0{bottom:89.544928pt;}
.y98{bottom:91.667321pt;}
.yb0{bottom:95.784511pt;}
.y51{bottom:95.784834pt;}
.y75{bottom:100.335284pt;}
.y50{bottom:112.650071pt;}
.y2e{bottom:116.749844pt;}
.ycf{bottom:117.142585pt;}
.yaf{bottom:117.709316pt;}
.y97{bottom:119.264977pt;}
.yf2{bottom:127.916660pt;}
.y74{bottom:127.932940pt;}
.y4f{bottom:134.574876pt;}
.y2d{bottom:140.081874pt;}
.yce{bottom:144.740241pt;}
.y96{bottom:146.862633pt;}
.y2c{bottom:155.413894pt;}
.y73{bottom:155.530601pt;}
.yf1{bottom:162.315105pt;}
.y2b{bottom:170.745924pt;}
.ycd{bottom:172.337897pt;}
.y95{bottom:173.261073pt;}
.y4e{bottom:178.331222pt;}
.yf0{bottom:180.713543pt;}
.y72{bottom:183.128257pt;}
.y2a{bottom:186.077954pt;}
.yef{bottom:199.111980pt;}
.ycc{bottom:199.935553pt;}
.y29{bottom:201.409984pt;}
.y4d{bottom:205.928710pt;}
.y71{bottom:210.725913pt;}
.y28{bottom:216.742014pt;}
.y94{bottom:216.858725pt;}
.ycb{bottom:227.533205pt;}
.y27{bottom:232.074046pt;}
.yee{bottom:233.510423pt;}
.y4c{bottom:233.526367pt;}
.y70{bottom:236.835930pt;}
.y93{bottom:244.456381pt;}
.y26{bottom:247.406077pt;}
.yed{bottom:251.908860pt;}
.y6f{bottom:253.701164pt;}
.yca{bottom:255.130861pt;}
.y4b{bottom:261.124019pt;}
.y25{bottom:262.738108pt;}
.y6e{bottom:270.566399pt;}
.y92{bottom:272.054038pt;}
.y24{bottom:278.070147pt;}
.ybd{bottom:278.605473pt;}
.yc9{bottom:282.728518pt;}
.yec{bottom:286.307289pt;}
.y6d{bottom:287.431633pt;}
.y4a{bottom:288.721675pt;}
.y23{bottom:293.402179pt;}
.y91{bottom:299.651694pt;}
.y6c{bottom:304.296870pt;}
.yeb{bottom:304.705727pt;}
.ybc{bottom:306.203133pt;}
.y22{bottom:308.734210pt;}
.yc8{bottom:310.326174pt;}
.yae{bottom:315.120447pt;}
.y49{bottom:316.319332pt;}
.y6b{bottom:321.162104pt;}
.y21{bottom:324.066241pt;}
.y90{bottom:327.249350pt;}
.ybb{bottom:333.800783pt;}
.yc7{bottom:337.923830pt;}
.yea{bottom:339.104171pt;}
.y20{bottom:339.398272pt;}
.yad{bottom:342.718099pt;}
.y48{bottom:343.916988pt;}
.y1f{bottom:354.730304pt;}
.y8f{bottom:354.847007pt;}
.y6a{bottom:355.514968pt;}
.ye9{bottom:357.502609pt;}
.yba{bottom:361.398443pt;}
.yc6{bottom:365.521487pt;}
.y1e{bottom:370.062333pt;}
.yac{bottom:370.315754pt;}
.y47{bottom:371.514644pt;}
.ye8{bottom:375.901047pt;}
.y8e{bottom:382.444652pt;}
.y69{bottom:383.112625pt;}
.y1d{bottom:385.394364pt;}
.yb9{bottom:388.996099pt;}
.yc5{bottom:393.119141pt;}
.yab{bottom:397.913411pt;}
.y46{bottom:399.112300pt;}
.y8d{bottom:410.042312pt;}
.ye7{bottom:410.299473pt;}
.y68{bottom:410.710281pt;}
.yb8{bottom:416.593755pt;}
.y1c{bottom:416.726403pt;}
.yc4{bottom:420.716798pt;}
.yaa{bottom:425.511068pt;}
.y45{bottom:426.709966pt;}
.y8c{bottom:437.639972pt;}
.y67{bottom:438.307937pt;}
.y1b{bottom:440.058453pt;}
.yb7{bottom:444.191412pt;}
.ye6{bottom:444.697916pt;}
.yc3{bottom:448.314454pt;}
.ya9{bottom:453.108723pt;}
.y44{bottom:454.307626pt;}
.y1a{bottom:455.390483pt;}
.ye5{bottom:463.096353pt;}
.y8b{bottom:465.237622pt;}
.y66{bottom:465.905593pt;}
.y19{bottom:470.722519pt;}
.yb6{bottom:471.789068pt;}
.yc2{bottom:475.912110pt;}
.ya8{bottom:480.706380pt;}
.y43{bottom:481.905276pt;}
.y18{bottom:486.054550pt;}
.y8a{bottom:492.835282pt;}
.y65{bottom:493.503257pt;}
.ye4{bottom:497.494793pt;}
.yb5{bottom:499.386724pt;}
.y17{bottom:501.386597pt;}
.yc1{bottom:503.509767pt;}
.ya7{bottom:508.304042pt;}
.y42{bottom:509.502936pt;}
.y16{bottom:516.718628pt;}
.y89{bottom:520.432938pt;}
.y64{bottom:521.100910pt;}
.yb4{bottom:526.984380pt;}
.yc0{bottom:529.908207pt;}
.ye3{bottom:531.893223pt;}
.y15{bottom:532.050659pt;}
.ya6{bottom:535.901699pt;}
.y41{bottom:537.100592pt;}
.y14{bottom:547.382691pt;}
.y88{bottom:548.030595pt;}
.y63{bottom:548.698574pt;}
.ye2{bottom:550.291660pt;}
.yb3{bottom:553.526692pt;}
.y13{bottom:562.714714pt;}
.ya5{bottom:563.499354pt;}
.y40{bottom:564.698248pt;}
.ybf{bottom:572.451172pt;}
.y87{bottom:575.628251pt;}
.y62{bottom:576.296230pt;}
.y12{bottom:578.046746pt;}
.yb2{bottom:579.879555pt;}
.ye1{bottom:584.690104pt;}
.ya4{bottom:591.097012pt;}
.y3f{bottom:592.295905pt;}
.y11{bottom:593.378781pt;}
.ybe{bottom:598.804033pt;}
.ye0{bottom:603.088542pt;}
.y86{bottom:603.225907pt;}
.y61{bottom:603.893878pt;}
.y10{bottom:608.710852pt;}
.ya3{bottom:618.694668pt;}
.y3e{bottom:619.893561pt;}
.ydf{bottom:621.486980pt;}
.yf{bottom:624.042883pt;}
.y85{bottom:630.823563pt;}
.y60{bottom:631.491542pt;}
.ya2{bottom:646.292323pt;}
.y3d{bottom:647.491217pt;}
.yde{bottom:655.885411pt;}
.ye{bottom:655.951740pt;}
.y84{bottom:658.421220pt;}
.y5f{bottom:659.089030pt;}
.ya1{bottom:673.889980pt;}
.ydd{bottom:674.283849pt;}
.y3c{bottom:675.088873pt;}
.y83{bottom:684.819660pt;}
.y5e{bottom:686.686687pt;}
.yd{bottom:690.350180pt;}
.ydc{bottom:692.682287pt;}
.ya0{bottom:701.487626pt;}
.y3b{bottom:702.686522pt;}
.y5d{bottom:714.284347pt;}
.yc{bottom:724.748620pt;}
.ydb{bottom:727.080729pt;}
.y82{bottom:728.417318pt;}
.y9f{bottom:729.085286pt;}
.y3a{bottom:730.284182pt;}
.y5c{bottom:741.882003pt;}
.yda{bottom:745.479167pt;}
.y81{bottom:756.014974pt;}
.y9e{bottom:756.682940pt;}
.y39{bottom:757.881832pt;}
.yb{bottom:759.147060pt;}
.y5b{bottom:769.479660pt;}
.yd9{bottom:779.877608pt;}
.y80{bottom:783.612630pt;}
.y9d{bottom:784.280596pt;}
.y38{bottom:785.479492pt;}
.ya{bottom:793.545489pt;}
.y5a{bottom:795.878087pt;}
.yd8{bottom:798.276038pt;}
.y7f{bottom:811.210287pt;}
.y9c{bottom:811.878252pt;}
.y9{bottom:811.943927pt;}
.y37{bottom:813.077148pt;}
.yd7{bottom:816.674479pt;}
.yd6{bottom:835.072921pt;}
.y7e{bottom:837.320310pt;}
.y59{bottom:839.475749pt;}
.y9b{bottom:839.475909pt;}
.y36{bottom:840.674804pt;}
.y8{bottom:846.342369pt;}
.yd5{bottom:853.472007pt;}
.y7d{bottom:854.185544pt;}
.y7{bottom:864.740807pt;}
.y58{bottom:867.073405pt;}
.y9a{bottom:867.073569pt;}
.y35{bottom:868.272461pt;}
.y7c{bottom:871.050781pt;}
.yd4{bottom:887.870442pt;}
.y7b{bottom:887.916015pt;}
.y57{bottom:894.671061pt;}
.y99{bottom:894.671224pt;}
.y34{bottom:895.870117pt;}
.y6{bottom:900.292889pt;}
.yf7{bottom:906.268229pt;}
.yd3{bottom:906.268879pt;}
.y56{bottom:922.268717pt;}
.y7a{bottom:922.268881pt;}
.y33{bottom:923.467773pt;}
.yf6{bottom:924.666667pt;}
.yd2{bottom:924.667317pt;}
.y5{bottom:931.670492pt;}
.yd1{bottom:943.065755pt;}
.y55{bottom:949.866373pt;}
.y79{bottom:949.866537pt;}
.y32{bottom:951.065429pt;}
.y4{bottom:958.068919pt;}
.yf5{bottom:959.065104pt;}
.yf4{bottom:977.463541pt;}
.y31{bottom:977.463867pt;}
.y54{bottom:977.464029pt;}
.y78{bottom:977.464193pt;}
.y3{bottom:978.644277pt;}
.yf3{bottom:992.401041pt;}
.y2f{bottom:992.401367pt;}
.y1{bottom:992.401439pt;}
.y53{bottom:992.401529pt;}
.y76{bottom:992.401693pt;}
.hb{height:32.355470pt;}
.h2{height:42.166668pt;}
.h6{height:43.375000pt;}
.h7{height:44.437500pt;}
.h8{height:47.812499pt;}
.hc{height:52.593751pt;}
.h5{height:56.843750pt;}
.h3{height:57.375000pt;}
.hf{height:57.375013pt;}
.he{height:57.375034pt;}
.ha{height:58.710937pt;}
.h11{height:58.710940pt;}
.h4{height:75.791669pt;}
.h10{height:130.264973pt;}
.hd{height:130.265137pt;}
.h1{height:130.265228pt;}
.h9{height:130.265300pt;}
.h12{height:130.265625pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:113.400004pt;}
.x7{left:122.043366pt;}
.x5{left:126.082428pt;}
.x3{left:130.691804pt;}
.xd{left:132.400004pt;}
.x15{left:142.078522pt;}
.x13{left:160.400004pt;}
.xc{left:189.400004pt;}
.x11{left:220.012118pt;}
.x2{left:250.879298pt;}
.xf{left:255.400004pt;}
.xe{left:264.400004pt;}
.x14{left:268.400004pt;}
.x6{left:293.277742pt;}
.x8{left:361.293366pt;}
.x4{left:415.750404pt;}
.xa{left:465.678904pt;}
.xb{left:515.421094pt;}
.x10{left:570.750404pt;}
.x16{left:709.250404pt;}
.x9{left:718.100814pt;}
.x12{left:723.400004pt;}
}




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