
    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_11cde52d8310b5ca1544021a.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7d95c6a2bdc4b85de4f5fb5b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_92a144947c9e66e6242682b4.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_716e476836435a22d61799b9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_d975406e966e57dfd8c067b4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_d3edc6100641fd27f485c157.woff')format("woff");}.ff6{font-family:ff6;line-height:0.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;}
.m4{transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.021238px;}
.ls1{letter-spacing:0.021240px;}
.ls3{letter-spacing:0.021282px;}
.ls2{letter-spacing:0.741660px;}
.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;}
}
.ws3{word-spacing:-18.021275px;}
.ws4{word-spacing:-18.021231px;}
.ws0{word-spacing:-17.999993px;}
.ws2{word-spacing:-13.505755px;}
.ws1{word-spacing:0.000000px;}
._12{margin-left:-4.838490px;}
._b{margin-left:-3.507776px;}
._6{margin-left:-2.258552px;}
._2{margin-left:-1.181023px;}
._0{width:1.016502px;}
._1{width:2.422564px;}
._7{width:3.611490px;}
._3{width:5.277954px;}
._4{width:6.370673px;}
._9{width:7.774937px;}
._a{width:8.830498px;}
._f{width:10.451982px;}
._e{width:12.271034px;}
._c{width:13.404591px;}
._d{width:14.417581px;}
._15{width:15.430179px;}
._10{width:16.435115px;}
._14{width:19.129056px;}
._11{width:20.851186px;}
._8{width:22.770131px;}
._5{width:24.455518px;}
._13{width:26.446660px;}
._1a{width:27.526247px;}
._18{width:28.533513px;}
._19{width:29.652495px;}
._17{width:31.528641px;}
._16{width:47.240866px;}
._1b{width:59.182176px;}
._1c{width:60.799292px;}
._1d{width:846.510861px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.759976px;}
.fs0{font-size:66.239974px;}
.fs2{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.fs1{font-size:143.999942px;}
.y0{bottom:0.000000px;}
.y1{bottom:57.000277px;}
.y70{bottom:110.459956px;}
.y69{bottom:119.459952px;}
.ya9{bottom:123.239951px;}
.y49{bottom:131.879947px;}
.y8c{bottom:132.599947px;}
.y27{bottom:133.139947px;}
.yc9{bottom:136.740245px;}
.y6f{bottom:141.599943px;}
.y68{bottom:150.599940px;}
.ya8{bottom:154.379938px;}
.yc8{bottom:157.439937px;}
.y26{bottom:157.979937px;}
.y48{bottom:163.019935px;}
.y7e{bottom:172.559931px;}
.yc7{bottom:178.139929px;}
.y67{bottom:181.559927px;}
.y25{bottom:182.819927px;}
.ya7{bottom:185.339926px;}
.yac{bottom:190.559924px;}
.y47{bottom:193.979922px;}
.yc6{bottom:198.839920px;}
.y7d{bottom:203.699919px;}
.y24{bottom:207.659917px;}
.y66{bottom:212.699915px;}
.ya6{bottom:216.479913px;}
.y87{bottom:221.699911px;}
.y46{bottom:225.119910px;}
.yc5{bottom:231.419907px;}
.y23{bottom:232.499907px;}
.y7c{bottom:234.659906px;}
.y65{bottom:243.659903px;}
.ya5{bottom:247.439901px;}
.yc4{bottom:252.119899px;}
.y86{bottom:252.659899px;}
.y45{bottom:256.079898px;}
.y22{bottom:257.339897px;}
.y7b{bottom:265.619894px;}
.y64{bottom:274.619890px;}
.ya4{bottom:278.579889px;}
.y21{bottom:282.179887px;}
.y79{bottom:283.619887px;}
.yc3{bottom:284.879886px;}
.y44{bottom:287.039885px;}
.y8b{bottom:296.759881px;}
.yc2{bottom:305.579878px;}
.y63{bottom:305.759878px;}
.y20{bottom:307.019877px;}
.ya3{bottom:309.539876px;}
.y78{bottom:314.759874px;}
.y43{bottom:318.179873px;}
.yc1{bottom:326.279869px;}
.y1f{bottom:331.859867px;}
.y62{bottom:336.719865px;}
.ya2{bottom:340.679864px;}
.y77{bottom:345.719862px;}
.y42{bottom:349.139860px;}
.y1e{bottom:356.699857px;}
.yc0{bottom:359.039856px;}
.y61{bottom:367.859853px;}
.y76{bottom:376.859849px;}
.ybf{bottom:379.739848px;}
.ya1{bottom:380.639848px;}
.y1d{bottom:381.539847px;}
.y41{bottom:389.279844px;}
.y60{bottom:398.819840px;}
.y1c{bottom:406.379837px;}
.y75{bottom:407.819837px;}
.ya0{bottom:411.779835px;}
.ybe{bottom:412.319835px;}
.y40{bottom:420.239832px;}
.y5f{bottom:429.959828px;}
.y1b{bottom:431.219828px;}
.ybd{bottom:433.019827px;}
.y74{bottom:438.959824px;}
.y9f{bottom:442.739823px;}
.y3f{bottom:451.379819px;}
.y5e{bottom:460.919816px;}
.y1a{bottom:465.059814px;}
.ybc{bottom:465.779814px;}
.y73{bottom:469.919812px;}
.yab{bottom:478.919808px;}
.y3e{bottom:482.339807px;}
.y9e{bottom:482.879807px;}
.ybb{bottom:486.479805px;}
.y19{bottom:489.899804px;}
.y5d{bottom:492.059803px;}
.y6e{bottom:501.059800px;}
.y85{bottom:510.059796px;}
.y3d{bottom:513.479795px;}
.y9d{bottom:513.839794px;}
.y18{bottom:514.739794px;}
.yba{bottom:519.239792px;}
.y5c{bottom:523.019791px;}
.y6d{bottom:532.019787px;}
.y17{bottom:539.579784px;}
.yb9{bottom:539.939784px;}
.y84{bottom:541.019784px;}
.y3c{bottom:544.439782px;}
.y9c{bottom:544.979782px;}
.y5b{bottom:554.159778px;}
.yb8{bottom:560.639776px;}
.y6c{bottom:563.159775px;}
.y16{bottom:564.419774px;}
.y83{bottom:572.159771px;}
.y3b{bottom:575.579770px;}
.y9b{bottom:575.939770px;}
.y15{bottom:589.259764px;}
.yb7{bottom:593.219763px;}
.y5a{bottom:594.119762px;}
.y82{bottom:603.119759px;}
.y3a{bottom:606.539757px;}
.y9a{bottom:607.079757px;}
.yb6{bottom:613.919754px;}
.y14{bottom:614.099754px;}
.y59{bottom:625.259750px;}
.y81{bottom:634.259746px;}
.y39{bottom:637.679745px;}
.y99{bottom:638.039745px;}
.y13{bottom:638.939744px;}
.yb5{bottom:646.679741px;}
.y58{bottom:656.219738px;}
.y12{bottom:663.779734px;}
.y80{bottom:665.219734px;}
.yb4{bottom:667.379733px;}
.y98{bottom:669.179732px;}
.y38{bottom:677.639729px;}
.y57{bottom:687.359725px;}
.y11{bottom:688.619725px;}
.y7f{bottom:696.359721px;}
.y97{bottom:700.139720px;}
.y37{bottom:708.779716px;}
.y10{bottom:713.459715px;}
.y56{bottom:718.319713px;}
.yb3{bottom:720.839712px;}
.y72{bottom:727.319709px;}
.y96{bottom:731.279707px;}
.yf{bottom:738.299705px;}
.y36{bottom:739.739704px;}
.y55{bottom:749.459700px;}
.yb2{bottom:753.419699px;}
.y71{bottom:758.459697px;}
.y95{bottom:762.239695px;}
.ye{bottom:763.139695px;}
.y35{bottom:770.879692px;}
.yb1{bottom:774.119690px;}
.yd7{bottom:778.259689px;}
.yd{bottom:787.979685px;}
.y54{bottom:789.419684px;}
.y94{bottom:793.199683px;}
.y34{bottom:801.839679px;}
.yb0{bottom:806.879677px;}
.yd6{bottom:810.839676px;}
.yc{bottom:812.819675px;}
.y53{bottom:820.559672px;}
.y93{bottom:824.339670px;}
.yaa{bottom:829.559668px;}
.y33{bottom:832.979667px;}
.yaf{bottom:839.639664px;}
.yd5{bottom:843.599663px;}
.yb{bottom:843.959662px;}
.y52{bottom:851.519659px;}
.y92{bottom:855.299658px;}
.yae{bottom:860.339656px;}
.y8a{bottom:860.519656px;}
.y32{bottom:863.939654px;}
.yd4{bottom:864.299654px;}
.ya{bottom:865.559654px;}
.y51{bottom:882.659647px;}
.y91{bottom:886.439645px;}
.y9{bottom:887.339645px;}
.y89{bottom:891.659643px;}
.yad{bottom:892.919643px;}
.y31{bottom:895.079642px;}
.yd3{bottom:897.059641px;}
.y8{bottom:909.119636px;}
.y50{bottom:913.619635px;}
.y90{bottom:917.399633px;}
.yd2{bottom:917.759633px;}
.y88{bottom:922.619631px;}
.y30{bottom:926.039630px;}
.yd1{bottom:938.459625px;}
.y7{bottom:940.079624px;}
.y6b{bottom:944.759622px;}
.y8f{bottom:948.539621px;}
.y4f{bottom:953.759618px;}
.y2f{bottom:957.179617px;}
.yd0{bottom:971.039612px;}
.y6{bottom:971.219612px;}
.y6a{bottom:975.719610px;}
.y8e{bottom:979.499608px;}
.y2e{bottom:982.019607px;}
.y4e{bottom:984.719606px;}
.ycf{bottom:991.739603px;}
.y5{bottom:995.879602px;}
.y2d{bottom:1006.859597px;}
.yce{bottom:1012.439595px;}
.y8d{bottom:1012.979595px;}
.y4d{bottom:1015.859594px;}
.y7a{bottom:1037.819585px;}
.y4{bottom:1038.179585px;}
.y2c{bottom:1040.699584px;}
.ycd{bottom:1045.199582px;}
.y4c{bottom:1046.819581px;}
.y2b{bottom:1065.539574px;}
.ycc{bottom:1065.899574px;}
.y4b{bottom:1077.959569px;}
.y3{bottom:1080.299568px;}
.ycb{bottom:1086.599565px;}
.y2a{bottom:1090.379564px;}
.y4a{bottom:1108.919556px;}
.y29{bottom:1115.219554px;}
.yca{bottom:1119.359552px;}
.y2{bottom:1122.599551px;}
.y28{bottom:1140.059544px;}
.h7{height:39.830258px;}
.h1{height:45.573102px;}
.h5{height:49.391980px;}
.h3{height:49.535980px;}
.h4{height:51.335979px;}
.h6{height:60.063096px;}
.h2{height:100.968710px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x6{left:106.199958px;}
.x4{left:128.519952px;}
.x2{left:132.479947px;}
.x3{left:137.879952px;}
.xe{left:140.219361px;}
.xd{left:160.199936px;}
.xb{left:194.040716px;}
.xc{left:244.079902px;}
.x5{left:355.860341px;}
.x1{left:438.119825px;}
.x9{left:444.239761px;}
.xa{left:521.099656px;}
.x7{left:578.519935px;}
.x8{left:697.140360px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.018878pt;}
.ls1{letter-spacing:0.018880pt;}
.ls3{letter-spacing:0.018917pt;}
.ls2{letter-spacing:0.659253pt;}
.ws3{word-spacing:-16.018911pt;}
.ws4{word-spacing:-16.018872pt;}
.ws0{word-spacing:-15.999994pt;}
.ws2{word-spacing:-12.005115pt;}
.ws1{word-spacing:0.000000pt;}
._12{margin-left:-4.300880pt;}
._b{margin-left:-3.118023pt;}
._6{margin-left:-2.007602pt;}
._2{margin-left:-1.049799pt;}
._0{width:0.903557pt;}
._1{width:2.153390pt;}
._7{width:3.210214pt;}
._3{width:4.691515pt;}
._4{width:5.662820pt;}
._9{width:6.911055pt;}
._a{width:7.849332pt;}
._f{width:9.290650pt;}
._e{width:10.907586pt;}
._c{width:11.915192pt;}
._d{width:12.815628pt;}
._15{width:13.715714pt;}
._10{width:14.608991pt;}
._14{width:17.003606pt;}
._11{width:18.534388pt;}
._8{width:20.240117pt;}
._5{width:21.738238pt;}
._13{width:23.508142pt;}
._1a{width:24.467775pt;}
._18{width:25.363123pt;}
._19{width:26.357773pt;}
._17{width:28.025459pt;}
._16{width:41.991881pt;}
._1b{width:52.606379pt;}
._1c{width:54.043815pt;}
._1d{width:752.454099pt;}
.fs4{font-size:53.119979pt;}
.fs0{font-size:58.879976pt;}
.fs2{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.fs1{font-size:127.999949pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.666913pt;}
.y70{bottom:98.186627pt;}
.y69{bottom:106.186624pt;}
.ya9{bottom:109.546623pt;}
.y49{bottom:117.226620pt;}
.y8c{bottom:117.866620pt;}
.y27{bottom:118.346619pt;}
.yc9{bottom:121.546885pt;}
.y6f{bottom:125.866616pt;}
.y68{bottom:133.866613pt;}
.ya8{bottom:137.226612pt;}
.yc8{bottom:139.946611pt;}
.y26{bottom:140.426610pt;}
.y48{bottom:144.906609pt;}
.y7e{bottom:153.386605pt;}
.yc7{bottom:158.346603pt;}
.y67{bottom:161.386602pt;}
.y25{bottom:162.506602pt;}
.ya7{bottom:164.746601pt;}
.yac{bottom:169.386599pt;}
.y47{bottom:172.426598pt;}
.yc6{bottom:176.746596pt;}
.y7d{bottom:181.066594pt;}
.y24{bottom:184.586593pt;}
.y66{bottom:189.066591pt;}
.ya6{bottom:192.426590pt;}
.y87{bottom:197.066588pt;}
.y46{bottom:200.106587pt;}
.yc5{bottom:205.706584pt;}
.y23{bottom:206.666584pt;}
.y7c{bottom:208.586583pt;}
.y65{bottom:216.586580pt;}
.ya5{bottom:219.946579pt;}
.yc4{bottom:224.106577pt;}
.y86{bottom:224.586577pt;}
.y45{bottom:227.626576pt;}
.y22{bottom:228.746575pt;}
.y7b{bottom:236.106572pt;}
.y64{bottom:244.106569pt;}
.ya4{bottom:247.626568pt;}
.y21{bottom:250.826566pt;}
.y79{bottom:252.106566pt;}
.yc3{bottom:253.226565pt;}
.y44{bottom:255.146565pt;}
.y8b{bottom:263.786561pt;}
.yc2{bottom:271.626558pt;}
.y63{bottom:271.786558pt;}
.y20{bottom:272.906558pt;}
.ya3{bottom:275.146557pt;}
.y78{bottom:279.786555pt;}
.y43{bottom:282.826554pt;}
.yc1{bottom:290.026551pt;}
.y1f{bottom:294.986549pt;}
.y62{bottom:299.306547pt;}
.ya2{bottom:302.826546pt;}
.y77{bottom:307.306544pt;}
.y42{bottom:310.346543pt;}
.y1e{bottom:317.066540pt;}
.yc0{bottom:319.146539pt;}
.y61{bottom:326.986536pt;}
.y76{bottom:334.986533pt;}
.ybf{bottom:337.546532pt;}
.ya1{bottom:338.346531pt;}
.y1d{bottom:339.146531pt;}
.y41{bottom:346.026528pt;}
.y60{bottom:354.506525pt;}
.y1c{bottom:361.226522pt;}
.y75{bottom:362.506522pt;}
.ya0{bottom:366.026520pt;}
.ybe{bottom:366.506520pt;}
.y40{bottom:373.546517pt;}
.y5f{bottom:382.186514pt;}
.y1b{bottom:383.306513pt;}
.ybd{bottom:384.906513pt;}
.y74{bottom:390.186511pt;}
.y9f{bottom:393.546509pt;}
.y3f{bottom:401.226506pt;}
.y5e{bottom:409.706503pt;}
.y1a{bottom:413.386501pt;}
.ybc{bottom:414.026501pt;}
.y73{bottom:417.706500pt;}
.yab{bottom:425.706496pt;}
.y3e{bottom:428.746495pt;}
.y9e{bottom:429.226495pt;}
.ybb{bottom:432.426494pt;}
.y19{bottom:435.466492pt;}
.y5d{bottom:437.386492pt;}
.y6e{bottom:445.386489pt;}
.y85{bottom:453.386485pt;}
.y3d{bottom:456.426484pt;}
.y9d{bottom:456.746484pt;}
.y18{bottom:457.546484pt;}
.yba{bottom:461.546482pt;}
.y5c{bottom:464.906481pt;}
.y6d{bottom:472.906478pt;}
.y17{bottom:479.626475pt;}
.yb9{bottom:479.946475pt;}
.y84{bottom:480.906474pt;}
.y3c{bottom:483.946473pt;}
.y9c{bottom:484.426473pt;}
.y5b{bottom:492.586470pt;}
.yb8{bottom:498.346467pt;}
.y6c{bottom:500.586466pt;}
.y16{bottom:501.706466pt;}
.y83{bottom:508.586463pt;}
.y3b{bottom:511.626462pt;}
.y9b{bottom:511.946462pt;}
.y15{bottom:523.786457pt;}
.yb7{bottom:527.306456pt;}
.y5a{bottom:528.106455pt;}
.y82{bottom:536.106452pt;}
.y3a{bottom:539.146451pt;}
.y9a{bottom:539.626451pt;}
.yb6{bottom:545.706448pt;}
.y14{bottom:545.866448pt;}
.y59{bottom:555.786444pt;}
.y81{bottom:563.786441pt;}
.y39{bottom:566.826440pt;}
.y99{bottom:567.146440pt;}
.y13{bottom:567.946439pt;}
.yb5{bottom:574.826437pt;}
.y58{bottom:583.306433pt;}
.y12{bottom:590.026431pt;}
.y80{bottom:591.306430pt;}
.yb4{bottom:593.226429pt;}
.y98{bottom:594.826429pt;}
.y38{bottom:602.346426pt;}
.y57{bottom:610.986422pt;}
.y11{bottom:612.106422pt;}
.y7f{bottom:618.986419pt;}
.y97{bottom:622.346418pt;}
.y37{bottom:630.026415pt;}
.y10{bottom:634.186413pt;}
.y56{bottom:638.506411pt;}
.yb3{bottom:640.746410pt;}
.y72{bottom:646.506408pt;}
.y96{bottom:650.026407pt;}
.yf{bottom:656.266404pt;}
.y36{bottom:657.546404pt;}
.y55{bottom:666.186400pt;}
.yb2{bottom:669.706399pt;}
.y71{bottom:674.186397pt;}
.y95{bottom:677.546396pt;}
.ye{bottom:678.346395pt;}
.y35{bottom:685.226393pt;}
.yb1{bottom:688.106391pt;}
.yd7{bottom:691.786390pt;}
.yd{bottom:700.426386pt;}
.y54{bottom:701.706386pt;}
.y94{bottom:705.066385pt;}
.y34{bottom:712.746382pt;}
.yb0{bottom:717.226380pt;}
.yd6{bottom:720.746378pt;}
.yc{bottom:722.506378pt;}
.y53{bottom:729.386375pt;}
.y93{bottom:732.746374pt;}
.yaa{bottom:737.386372pt;}
.y33{bottom:740.426370pt;}
.yaf{bottom:746.346368pt;}
.yd5{bottom:749.866367pt;}
.yb{bottom:750.186367pt;}
.y52{bottom:756.906364pt;}
.y92{bottom:760.266363pt;}
.yae{bottom:764.746361pt;}
.y8a{bottom:764.906361pt;}
.y32{bottom:767.946359pt;}
.yd4{bottom:768.266359pt;}
.ya{bottom:769.386359pt;}
.y51{bottom:784.586353pt;}
.y91{bottom:787.946351pt;}
.y9{bottom:788.746351pt;}
.y89{bottom:792.586350pt;}
.yad{bottom:793.706349pt;}
.y31{bottom:795.626348pt;}
.yd3{bottom:797.386348pt;}
.y8{bottom:808.106343pt;}
.y50{bottom:812.106342pt;}
.y90{bottom:815.466340pt;}
.yd2{bottom:815.786340pt;}
.y88{bottom:820.106339pt;}
.y30{bottom:823.146337pt;}
.yd1{bottom:834.186333pt;}
.y7{bottom:835.626332pt;}
.y6b{bottom:839.786331pt;}
.y8f{bottom:843.146329pt;}
.y4f{bottom:847.786328pt;}
.y2f{bottom:850.826326pt;}
.yd0{bottom:863.146321pt;}
.y6{bottom:863.306321pt;}
.y6a{bottom:867.306320pt;}
.y8e{bottom:870.666318pt;}
.y2e{bottom:872.906318pt;}
.y4e{bottom:875.306317pt;}
.ycf{bottom:881.546314pt;}
.y5{bottom:885.226313pt;}
.y2d{bottom:894.986309pt;}
.yce{bottom:899.946307pt;}
.y8d{bottom:900.426306pt;}
.y4d{bottom:902.986305pt;}
.y7a{bottom:922.506298pt;}
.y4{bottom:922.826298pt;}
.y2c{bottom:925.066297pt;}
.ycd{bottom:929.066295pt;}
.y4c{bottom:930.506294pt;}
.y2b{bottom:947.146288pt;}
.ycc{bottom:947.466288pt;}
.y4b{bottom:958.186283pt;}
.y3{bottom:960.266283pt;}
.ycb{bottom:965.866280pt;}
.y2a{bottom:969.226279pt;}
.y4a{bottom:985.706272pt;}
.y29{bottom:991.306270pt;}
.yca{bottom:994.986269pt;}
.y2{bottom:997.866268pt;}
.y28{bottom:1013.386261pt;}
.h7{height:35.404673pt;}
.h1{height:40.509424pt;}
.h5{height:43.903982pt;}
.h3{height:44.031982pt;}
.h4{height:45.631982pt;}
.h6{height:53.389419pt;}
.h2{height:89.749964pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x6{left:94.399962pt;}
.x4{left:114.239958pt;}
.x2{left:117.759953pt;}
.x3{left:122.559957pt;}
.xe{left:124.639432pt;}
.xd{left:142.399943pt;}
.xb{left:172.480636pt;}
.xc{left:216.959913pt;}
.x5{left:316.320303pt;}
.x1{left:389.439844pt;}
.x9{left:394.879788pt;}
.xa{left:463.199694pt;}
.x7{left:514.239942pt;}
.x8{left:619.680320pt;}
}




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