
    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_5a94c3c63ba1d1c43a2d3b72.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.915039;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_2bf8f7e19e73da41378db653.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_083ef691cbb338722bbbde51.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.928223;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_e6691a7fcadce02da23b5820.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.928223;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_99135322a7cd14bdb49700a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.866699;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_09d64fc566e2d156bc483f7c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_7f469ba6834c0bf0e99699a8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_062a61f032b5f71829ea5394.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854980;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;}
.m3{transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249568,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249570,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.767157px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005475px;}
.ls4{letter-spacing:0.006069px;}
.ls8{letter-spacing:0.184602px;}
.ls6{letter-spacing:0.184674px;}
.ls7{letter-spacing:60.069122px;}
.ls9{letter-spacing:60.069190px;}
.lsd{letter-spacing:82.507086px;}
.lsc{letter-spacing:83.257985px;}
.lsa{letter-spacing:116.949118px;}
.lsb{letter-spacing:117.156820px;}
.ls2{letter-spacing:183.528455px;}
.ls0{letter-spacing:460.225588px;}
.ls1{letter-spacing:833.385894px;}
.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:-62.258871px;}
.ws4{word-spacing:-62.147700px;}
.ws2{word-spacing:-37.355323px;}
.ws6{word-spacing:-37.294689px;}
.ws5{word-spacing:-37.288620px;}
.ws1{word-spacing:-33.701363px;}
.ws8{word-spacing:-33.646395px;}
.ws7{word-spacing:-33.640920px;}
.ws3{word-spacing:0.000000px;}
._25{margin-left:-10.668284px;}
._16{margin-left:-9.289586px;}
._62{margin-left:-7.655045px;}
._6{margin-left:-6.225887px;}
._19{margin-left:-4.997113px;}
._1c{margin-left:-3.684155px;}
._50{margin-left:-2.421775px;}
._0{margin-left:-1.245177px;}
._1{width:1.476462px;}
._41{width:3.131661px;}
._2f{width:4.368546px;}
._14{width:5.370357px;}
._15{width:6.494551px;}
._2{width:8.716242px;}
._3{width:9.961419px;}
._37{width:11.840632px;}
._1a{width:13.081362px;}
._1b{width:14.300040px;}
._54{width:15.693621px;}
._24{width:18.010695px;}
._23{width:19.237665px;}
._5{width:21.168016px;}
._4{width:22.413194px;}
._49{width:23.590705px;}
._45{width:25.485004px;}
._10{width:26.699235px;}
._39{width:27.932274px;}
._5c{width:29.361870px;}
._1e{width:30.476649px;}
._29{width:32.059910px;}
._1d{width:33.571896px;}
._5e{width:37.841795px;}
._5d{width:39.318257px;}
._34{width:41.667682px;}
._17{width:42.906189px;}
._21{width:44.029985px;}
._2d{width:45.949038px;}
._2e{width:47.204130px;}
._5a{width:48.700278px;}
._d{width:50.979321px;}
._e{width:52.218430px;}
._c{width:55.305384px;}
._b{width:56.526285px;}
._2b{width:59.679999px;}
._2c{width:60.898677px;}
._f{width:65.299792px;}
._18{width:67.765269px;}
._22{width:68.773093px;}
._42{width:70.449893px;}
._2a{width:79.573332px;}
._3f{width:80.804148px;}
._12{width:83.322625px;}
._13{width:84.526941px;}
._47{width:88.261872px;}
._35{width:92.630418px;}
._36{width:93.875596px;}
._61{width:95.134112px;}
._56{width:96.819180px;}
._55{width:97.942559px;}
._26{width:101.897952px;}
._38{width:103.228096px;}
._3b{width:105.023544px;}
._3a{width:106.311205px;}
._53{width:109.516673px;}
._51{width:112.325558px;}
._52{width:113.378179px;}
._4d{width:121.232722px;}
._4e{width:130.528377px;}
._3e{width:139.235124px;}
._40{width:141.119986px;}
._48{width:142.933641px;}
._5b{width:147.304473px;}
._a{width:157.879434px;}
._58{width:163.660217px;}
._43{width:175.902267px;}
._46{width:195.168054px;}
._44{width:205.053219px;}
._30{width:213.142335px;}
._31{width:214.403496px;}
._59{width:230.425912px;}
._57{width:231.699973px;}
._3c{width:233.025753px;}
._4f{width:243.036145px;}
._20{width:252.109341px;}
._4a{width:279.624390px;}
._60{width:281.614987px;}
._5f{width:282.738366px;}
._63{width:289.503750px;}
._8{width:298.986993px;}
._33{width:316.985839px;}
._4c{width:326.929471px;}
._1f{width:353.592291px;}
._3d{width:362.918292px;}
._11{width:390.317901px;}
._4b{width:400.255464px;}
._32{width:427.535916px;}
._28{width:465.458151px;}
._7{width:485.521914px;}
._27{width:540.108220px;}
._9{width:1337.943138px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:56.068200px;}
.fs1{font-size:56.168938px;}
.fs4{font-size:59.551579px;}
.fs5{font-size:62.147700px;}
.fs0{font-size:62.258871px;}
.fs2{font-size:90.004191px;}
.fs3{font-size:101.508708px;}
.y0{bottom:0.000000px;}
.y9{bottom:6.833816px;}
.y3e{bottom:71.820030px;}
.y7{bottom:71.822393px;}
.y3d{bottom:107.639992px;}
.y6{bottom:107.641936px;}
.y3c{bottom:125.820030px;}
.y5{bottom:125.820053px;}
.y3b{bottom:145.080025px;}
.y4{bottom:145.081202px;}
.y99{bottom:178.379998px;}
.y37{bottom:180.539765px;}
.y89{bottom:187.919975px;}
.yef{bottom:188.999545px;}
.y98{bottom:194.399986px;}
.y36{bottom:198.181191px;}
.y63{bottom:203.399986px;}
.y97{bottom:210.419975px;}
.y88{bottom:210.600013px;}
.y35{bottom:215.637349px;}
.yee{bottom:221.042858px;}
.y96{bottom:226.259994px;}
.ycf{bottom:227.147360px;}
.y62{bottom:227.340019px;}
.y87{bottom:233.100013px;}
.y34{bottom:233.103063px;}
.y95{bottom:242.279983px;}
.yce{bottom:243.174569px;}
.y33{bottom:250.744396px;}
.y61{bottom:251.279983px;}
.yed{bottom:253.798667px;}
.y86{bottom:255.600013px;}
.y94{bottom:258.299973px;}
.ycd{bottom:259.188972px;}
.y32{bottom:268.381090px;}
.yec{bottom:274.142847px;}
.y93{bottom:274.320030px;}
.ycc{bottom:275.027609px;}
.y60{bottom:275.399986px;}
.y85{bottom:278.279983px;}
.y31{bottom:286.022516px;}
.y92{bottom:290.159981px;}
.ycb{bottom:291.230501px;}
.yeb{bottom:294.482203px;}
.y5f{bottom:299.159981px;}
.y84{bottom:300.779983px;}
.y30{bottom:303.478674px;}
.y91{bottom:306.179970px;}
.yca{bottom:307.069138px;}
.yea{bottom:314.816827px;}
.y2f{bottom:320.944295px;}
.y90{bottom:322.200027px;}
.yc9{bottom:322.907858px;}
.y5e{bottom:323.279983px;}
.ye9{bottom:335.161007px;}
.y8f{bottom:338.039977px;}
.y2e{bottom:338.580989px;}
.yc8{bottom:339.110750px;}
.y83{bottom:345.960022px;}
.y5d{bottom:347.220017px;}
.y8e{bottom:354.240006px;}
.yc7{bottom:354.949387px;}
.ye8{bottom:355.500363px;}
.y82{bottom:368.460022px;}
.y8d{bottom:370.080025px;}
.yc6{bottom:370.972327px;}
.y5c{bottom:371.159981px;}
.ye7{bottom:376.020255px;}
.y2d{bottom:379.259794px;}
.y8c{bottom:385.919975px;}
.yc5{bottom:386.990915px;}
.y81{bottom:390.960022px;}
.y5b{bottom:395.100013px;}
.ye6{bottom:396.183899px;}
.y2b{bottom:396.720683px;}
.y2c{bottom:396.726153px;}
.y8b{bottom:402.120002px;}
.yc4{bottom:402.833904px;}
.y80{bottom:413.639992px;}
.y2a{bottom:414.362063px;}
.ye5{bottom:416.518570px;}
.y8a{bottom:418.500000px;}
.yc3{bottom:418.852492px;}
.y5a{bottom:419.220017px;}
.y29{bottom:432.003488px;}
.yc2{bottom:434.875433px;}
.y7f{bottom:436.139992px;}
.ye4{bottom:436.857972px;}
.y59{bottom:442.980011px;}
.y28{bottom:449.459646px;}
.yc1{bottom:450.894105px;}
.ye3{bottom:457.377864px;}
.y7e{bottom:458.639992px;}
.yc0{bottom:466.732741px;}
.y27{bottom:466.925314px;}
.y58{bottom:467.100013px;}
.ye2{bottom:477.721998px;}
.y7d{bottom:481.320030px;}
.ybf{bottom:482.755682px;}
.y26{bottom:484.561962px;}
.y57{bottom:491.039977px;}
.ye1{bottom:497.876132px;}
.ybe{bottom:498.770001px;}
.y25{bottom:501.829758px;}
.y7c{bottom:503.820030px;}
.ybd{bottom:514.608680px;}
.y56{bottom:514.980011px;}
.y24{bottom:518.225044px;}
.ye0{bottom:518.396024px;}
.y7b{bottom:526.320030px;}
.ybc{bottom:530.811572px;}
.y23{bottom:535.681202px;}
.ydf{bottom:536.037450px;}
.y55{bottom:538.919975px;}
.ybb{bottom:546.650250px;}
.y7a{bottom:549.000000px;}
.y22{bottom:553.317850px;}
.yde{bottom:553.503071px;}
.yba{bottom:562.497466px;}
.y54{bottom:563.039977px;}
.y21{bottom:570.778739px;}
.ydd{bottom:570.959229px;}
.y79{bottom:571.500000px;}
.yb9{bottom:578.691779px;}
.y53{bottom:586.799973px;}
.y20{bottom:588.424896px;}
.ydc{bottom:588.600655px;}
.y78{bottom:594.000000px;}
.yb8{bottom:594.539037px;}
.y1f{bottom:606.061544px;}
.ydb{bottom:606.237303px;}
.yb7{bottom:610.553356px;}
.y52{bottom:610.919975px;}
.y77{bottom:616.680004px;}
.y1e{bottom:623.702970px;}
.yda{bottom:623.878728px;}
.yb6{bottom:626.572028px;}
.y51{bottom:634.860008px;}
.y76{bottom:639.180004px;}
.y1d{bottom:640.978638px;}
.yd9{bottom:641.344396px;}
.yb5{bottom:642.414933px;}
.yb4{bottom:658.433605px;}
.y1c{bottom:658.615286px;}
.y50{bottom:658.800007px;}
.yd8{bottom:658.800554px;}
.y75{bottom:661.680004px;}
.yb3{bottom:674.456504px;}
.y1b{bottom:676.256712px;}
.yd7{bottom:676.437202px;}
.y4f{bottom:682.740006px;}
.y74{bottom:684.360008px;}
.yb2{bottom:690.475134px;}
.y1a{bottom:693.902869px;}
.yd6{bottom:694.078581px;}
.yb1{bottom:706.313812px;}
.y4e{bottom:706.860008px;}
.y19{bottom:711.359027px;}
.yd5{bottom:711.544248px;}
.yb0{bottom:722.336711px;}
.y18{bottom:729.000407px;}
.yd4{bottom:729.182798px;}
.y73{bottom:729.360008px;}
.y4d{bottom:730.620002px;}
.yaf{bottom:738.355383px;}
.y17{bottom:746.457539px;}
.yd3{bottom:746.822322px;}
.y72{bottom:752.040012px;}
.yae{bottom:754.194019px;}
.y4c{bottom:754.740006px;}
.y16{bottom:764.097016px;}
.yd2{bottom:764.461846px;}
.yad{bottom:770.394358px;}
.y71{bottom:774.540012px;}
.y4b{bottom:778.680004px;}
.y15{bottom:781.736540px;}
.yac{bottom:786.232995px;}
.y70{bottom:797.040012px;}
.yd1{bottom:799.383648px;}
.yab{bottom:802.078537px;}
.y4a{bottom:802.620002px;}
.y14{bottom:815.943967px;}
.yd0{bottom:817.023149px;}
.yaa{bottom:818.273728px;}
.y6f{bottom:819.720017px;}
.y49{bottom:826.560001px;}
.ya9{bottom:834.119229px;}
.y13{bottom:836.099053px;}
.y6e{bottom:842.220017px;}
.ya8{bottom:850.136143px;}
.y48{bottom:850.680004px;}
.y12{bottom:853.738554px;}
.y6d{bottom:864.720017px;}
.ya7{bottom:866.159920px;}
.y11{bottom:873.358871px;}
.y47{bottom:874.439999px;}
.ya6{bottom:881.998578px;}
.y6c{bottom:887.399987px;}
.ya5{bottom:898.015513px;}
.y46{bottom:898.560001px;}
.y10{bottom:898.925269px;}
.y6b{bottom:909.900003px;}
.ya4{bottom:914.039290px;}
.y45{bottom:922.500000px;}
.yf{bottom:925.195044px;}
.ya3{bottom:930.056204px;}
.y6a{bottom:932.400003px;}
.ya2{bottom:945.894862px;}
.y44{bottom:946.439999px;}
.y69{bottom:955.080008px;}
.yd{bottom:959.940411px;}
.ye{bottom:959.946154px;}
.ya1{bottom:961.918640px;}
.y8{bottom:964.263991px;}
.y43{bottom:970.379998px;}
.y68{bottom:977.580008px;}
.ya0{bottom:977.935575px;}
.y9f{bottom:993.781075px;}
.y42{bottom:994.500000px;}
.yc{bottom:994.858372px;}
.y67{bottom:1000.080008px;}
.y9e{bottom:1009.798010px;}
.y41{bottom:1018.259994px;}
.y66{bottom:1022.759994px;}
.y9d{bottom:1025.814934px;}
.yb{bottom:1037.880610px;}
.y9c{bottom:1041.838712px;}
.y40{bottom:1042.379998px;}
.y65{bottom:1045.260003px;}
.y9b{bottom:1057.677359px;}
.y3f{bottom:1066.319996px;}
.y64{bottom:1067.760003px;}
.ya{bottom:1072.442606px;}
.y9a{bottom:1073.701147px;}
.y3{bottom:1090.082118px;}
.y3a{bottom:1090.260003px;}
.y39{bottom:1107.719999px;}
.y2{bottom:1107.721625px;}
.y1{bottom:1125.178728px;}
.y38{bottom:1125.360000px;}
.h4{height:25.742158px;}
.h11{height:37.369674px;}
.h14{height:37.436817px;}
.h10{height:38.026724px;}
.h12{height:38.095047px;}
.h9{height:39.658342px;}
.hf{height:40.819183px;}
.h13{height:40.892523px;}
.he{height:42.149978px;}
.h8{height:42.225377px;}
.ha{height:43.355178px;}
.hb{height:43.879675px;}
.h1{height:43.958168px;}
.hd{height:45.245225px;}
.h3{height:45.326160px;}
.hc{height:61.813899px;}
.h2{height:61.924473px;}
.h5{height:63.547881px;}
.h6{height:71.670699px;}
.h7{height:74.315038px;}
.h0{height:1188.000000px;}
.w1{width:7.556910px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:140.401689px;}
.x1{left:143.997846px;}
.x3{left:199.798909px;}
.xc{left:201.426211px;}
.xd{left:228.418312px;}
.x2{left:246.419904px;}
.x6{left:262.265376px;}
.x7{left:277.563814px;}
.x8{left:300.239302px;}
.x9{left:323.098669px;}
.xb{left:344.337560px;}
.x4{left:368.818084px;}
.xf{left:483.480011px;}
.xa{left:631.084316px;}
.xe{left:776.871682px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.570806pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004867pt;}
.ls4{letter-spacing:0.005395pt;}
.ls8{letter-spacing:0.164090pt;}
.ls6{letter-spacing:0.164154pt;}
.ls7{letter-spacing:53.394775pt;}
.ls9{letter-spacing:53.394835pt;}
.lsd{letter-spacing:73.339632pt;}
.lsc{letter-spacing:74.007098pt;}
.lsa{letter-spacing:103.954771pt;}
.lsb{letter-spacing:104.139395pt;}
.ls2{letter-spacing:163.136405pt;}
.ls0{letter-spacing:409.089411pt;}
.ls1{letter-spacing:740.787461pt;}
.ws0{word-spacing:-55.341219pt;}
.ws4{word-spacing:-55.242400pt;}
.ws2{word-spacing:-33.204731pt;}
.ws6{word-spacing:-33.150835pt;}
.ws5{word-spacing:-33.145440pt;}
.ws1{word-spacing:-29.956767pt;}
.ws8{word-spacing:-29.907907pt;}
.ws7{word-spacing:-29.903040pt;}
.ws3{word-spacing:0.000000pt;}
._25{margin-left:-9.482919pt;}
._16{margin-left:-8.257410pt;}
._62{margin-left:-6.804484pt;}
._6{margin-left:-5.534122pt;}
._19{margin-left:-4.441879pt;}
._1c{margin-left:-3.274804pt;}
._50{margin-left:-2.152689pt;}
._0{margin-left:-1.106824pt;}
._1{width:1.312410pt;}
._41{width:2.783699pt;}
._2f{width:3.883152pt;}
._14{width:4.773651pt;}
._15{width:5.772934pt;}
._2{width:7.747771pt;}
._3{width:8.854595pt;}
._37{width:10.525006pt;}
._1a{width:11.627878pt;}
._1b{width:12.711147pt;}
._54{width:13.949885pt;}
._24{width:16.009506pt;}
._23{width:17.100147pt;}
._5{width:18.816014pt;}
._4{width:19.922839pt;}
._49{width:20.969515pt;}
._45{width:22.653337pt;}
._10{width:23.732653pt;}
._39{width:24.828688pt;}
._5c{width:26.099440pt;}
._1e{width:27.090355pt;}
._29{width:28.497698pt;}
._1d{width:29.841686pt;}
._5e{width:33.637151pt;}
._5d{width:34.949562pt;}
._34{width:37.037940pt;}
._17{width:38.138835pt;}
._21{width:39.137764pt;}
._2d{width:40.843589pt;}
._2e{width:41.959227pt;}
._5a{width:43.289136pt;}
._d{width:45.314952pt;}
._e{width:46.416382pt;}
._c{width:49.160341pt;}
._b{width:50.245587pt;}
._2b{width:53.048888pt;}
._2c{width:54.132157pt;}
._f{width:58.044260pt;}
._18{width:60.235795pt;}
._22{width:61.131639pt;}
._42{width:62.622127pt;}
._2a{width:70.731851pt;}
._3f{width:71.825910pt;}
._12{width:74.064556pt;}
._13{width:75.135059pt;}
._47{width:78.454998pt;}
._35{width:82.338150pt;}
._36{width:83.444974pt;}
._61{width:84.563655pt;}
._56{width:86.061494pt;}
._55{width:87.060053pt;}
._26{width:90.575957pt;}
._38{width:91.758308pt;}
._3b{width:93.354261pt;}
._3a{width:94.498849pt;}
._53{width:97.348153pt;}
._51{width:99.844940pt;}
._52{width:100.780604pt;}
._4d{width:107.762420pt;}
._4e{width:116.025224pt;}
._3e{width:123.764555pt;}
._40{width:125.439988pt;}
._48{width:127.052125pt;}
._5b{width:130.937310pt;}
._a{width:140.337275pt;}
._58{width:145.475748pt;}
._43{width:156.357571pt;}
._46{width:173.482715pt;}
._44{width:182.269528pt;}
._30{width:189.459853pt;}
._31{width:190.580885pt;}
._59{width:204.823033pt;}
._57{width:205.955532pt;}
._3c{width:207.134003pt;}
._4f{width:216.032129pt;}
._20{width:224.097192pt;}
._4a{width:248.555013pt;}
._60{width:250.324433pt;}
._5f{width:251.322992pt;}
._63{width:257.336667pt;}
._8{width:265.766216pt;}
._33{width:281.765190pt;}
._4c{width:290.603974pt;}
._1f{width:314.304259pt;}
._3d{width:322.594037pt;}
._11{width:346.949246pt;}
._4b{width:355.782635pt;}
._32{width:380.031925pt;}
._28{width:413.740579pt;}
._7{width:431.575035pt;}
._27{width:480.096196pt;}
._9{width:1189.282789pt;}
.fs6{font-size:49.838400pt;}
.fs1{font-size:49.927945pt;}
.fs4{font-size:52.934737pt;}
.fs5{font-size:55.242400pt;}
.fs0{font-size:55.341219pt;}
.fs2{font-size:80.003726pt;}
.fs3{font-size:90.229963pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:6.074503pt;}
.y3e{bottom:63.840027pt;}
.y7{bottom:63.842127pt;}
.y3d{bottom:95.679993pt;}
.y6{bottom:95.681721pt;}
.y3c{bottom:111.840027pt;}
.y5{bottom:111.840047pt;}
.y3b{bottom:128.960022pt;}
.y4{bottom:128.961068pt;}
.y99{bottom:158.559998pt;}
.y37{bottom:160.479791pt;}
.y89{bottom:167.039978pt;}
.yef{bottom:167.999596pt;}
.y98{bottom:172.799988pt;}
.y36{bottom:176.161059pt;}
.y63{bottom:180.799988pt;}
.y97{bottom:187.039978pt;}
.y88{bottom:187.200012pt;}
.y35{bottom:191.677644pt;}
.yee{bottom:196.482540pt;}
.y96{bottom:201.119995pt;}
.ycf{bottom:201.908765pt;}
.y62{bottom:202.080017pt;}
.y87{bottom:207.200012pt;}
.y34{bottom:207.202723pt;}
.y95{bottom:215.359985pt;}
.yce{bottom:216.155173pt;}
.y33{bottom:222.883907pt;}
.y61{bottom:223.359985pt;}
.yed{bottom:225.598815pt;}
.y86{bottom:227.200012pt;}
.y94{bottom:229.599976pt;}
.ycd{bottom:230.390198pt;}
.y32{bottom:238.560969pt;}
.yec{bottom:243.682531pt;}
.y93{bottom:243.840027pt;}
.ycc{bottom:244.468986pt;}
.y60{bottom:244.799988pt;}
.y85{bottom:247.359985pt;}
.y31{bottom:254.242236pt;}
.y92{bottom:257.919983pt;}
.ycb{bottom:258.871556pt;}
.yeb{bottom:261.761958pt;}
.y5f{bottom:265.919983pt;}
.y84{bottom:267.359985pt;}
.y30{bottom:269.758821pt;}
.y91{bottom:272.159973pt;}
.yca{bottom:272.950345pt;}
.yea{bottom:279.837180pt;}
.y2f{bottom:285.283818pt;}
.y90{bottom:286.400024pt;}
.yc9{bottom:287.029207pt;}
.y5e{bottom:287.359985pt;}
.ye9{bottom:297.920895pt;}
.y8f{bottom:300.479980pt;}
.y2e{bottom:300.960879pt;}
.yc8{bottom:301.431778pt;}
.y83{bottom:307.520020pt;}
.y5d{bottom:308.640015pt;}
.y8e{bottom:314.880005pt;}
.yc7{bottom:315.510566pt;}
.ye8{bottom:316.000323pt;}
.y82{bottom:327.520020pt;}
.y8d{bottom:328.960022pt;}
.yc6{bottom:329.753180pt;}
.y5c{bottom:329.919983pt;}
.ye7{bottom:334.240227pt;}
.y2d{bottom:337.119817pt;}
.y8c{bottom:343.039978pt;}
.yc5{bottom:343.991925pt;}
.y81{bottom:347.520020pt;}
.y5b{bottom:351.200012pt;}
.ye6{bottom:352.163466pt;}
.y2b{bottom:352.640607pt;}
.y2c{bottom:352.645470pt;}
.y8b{bottom:357.440002pt;}
.yc4{bottom:358.074582pt;}
.y80{bottom:367.679993pt;}
.y2a{bottom:368.321833pt;}
.ye5{bottom:370.238729pt;}
.y8a{bottom:372.000000pt;}
.yc3{bottom:372.313327pt;}
.y5a{bottom:372.640015pt;}
.y29{bottom:384.003101pt;}
.yc2{bottom:386.555940pt;}
.y7f{bottom:387.679993pt;}
.ye4{bottom:388.318197pt;}
.y59{bottom:393.760010pt;}
.y28{bottom:399.519686pt;}
.yc1{bottom:400.794760pt;}
.ye3{bottom:406.558101pt;}
.y7e{bottom:407.679993pt;}
.yc0{bottom:414.873548pt;}
.y27{bottom:415.044723pt;}
.y58{bottom:415.200012pt;}
.ye2{bottom:424.641776pt;}
.y7d{bottom:427.840027pt;}
.ybf{bottom:429.116162pt;}
.y26{bottom:430.721744pt;}
.y57{bottom:436.479980pt;}
.ye1{bottom:442.556562pt;}
.ybe{bottom:443.351112pt;}
.y25{bottom:446.070896pt;}
.y7c{bottom:447.840027pt;}
.ybd{bottom:457.429938pt;}
.y56{bottom:457.760010pt;}
.y24{bottom:460.644483pt;}
.ye0{bottom:460.796466pt;}
.y7b{bottom:467.840027pt;}
.ybc{bottom:471.832508pt;}
.y23{bottom:476.161068pt;}
.ydf{bottom:476.477733pt;}
.y55{bottom:479.039978pt;}
.ybb{bottom:485.911334pt;}
.y7a{bottom:488.000000pt;}
.y22{bottom:491.838089pt;}
.yde{bottom:492.002730pt;}
.yba{bottom:499.997748pt;}
.y54{bottom:500.479980pt;}
.y21{bottom:507.358879pt;}
.ydd{bottom:507.519315pt;}
.y79{bottom:508.000000pt;}
.yb9{bottom:514.392692pt;}
.y53{bottom:521.599976pt;}
.y20{bottom:523.044352pt;}
.ydc{bottom:523.200582pt;}
.y78{bottom:528.000000pt;}
.yb8{bottom:528.479144pt;}
.y1f{bottom:538.721373pt;}
.ydb{bottom:538.877602pt;}
.yb7{bottom:542.714094pt;}
.y52{bottom:543.039978pt;}
.y77{bottom:548.160004pt;}
.y1e{bottom:554.402640pt;}
.yda{bottom:554.558870pt;}
.yb6{bottom:556.952914pt;}
.y51{bottom:564.320007pt;}
.y76{bottom:568.160004pt;}
.y1d{bottom:569.758790pt;}
.yd9{bottom:570.083907pt;}
.yb5{bottom:571.035496pt;}
.yb4{bottom:585.274316pt;}
.y1c{bottom:585.435810pt;}
.y50{bottom:585.600006pt;}
.yd8{bottom:585.600492pt;}
.y75{bottom:588.160004pt;}
.yb3{bottom:599.516892pt;}
.y1b{bottom:601.117077pt;}
.yd7{bottom:601.277513pt;}
.y4f{bottom:606.880005pt;}
.y74{bottom:608.320007pt;}
.yb2{bottom:613.755674pt;}
.y1a{bottom:616.802550pt;}
.yd6{bottom:616.958739pt;}
.yb1{bottom:627.834500pt;}
.y4e{bottom:628.320007pt;}
.y19{bottom:632.319135pt;}
.yd5{bottom:632.483776pt;}
.yb0{bottom:642.077076pt;}
.y18{bottom:648.000361pt;}
.yd4{bottom:648.162487pt;}
.y73{bottom:648.320007pt;}
.y4d{bottom:649.440002pt;}
.yaf{bottom:656.315896pt;}
.y17{bottom:663.517812pt;}
.yd3{bottom:663.842064pt;}
.y72{bottom:668.480011pt;}
.yae{bottom:670.394684pt;}
.y4c{bottom:670.880005pt;}
.y16{bottom:679.197348pt;}
.yd2{bottom:679.521641pt;}
.yad{bottom:684.794985pt;}
.y71{bottom:688.480011pt;}
.y4b{bottom:692.160004pt;}
.y15{bottom:694.876925pt;}
.yac{bottom:698.873773pt;}
.y70{bottom:708.480011pt;}
.yd1{bottom:710.563243pt;}
.yab{bottom:712.958700pt;}
.y4a{bottom:713.440002pt;}
.y14{bottom:725.283527pt;}
.yd0{bottom:726.242799pt;}
.yaa{bottom:727.354425pt;}
.y6f{bottom:728.640015pt;}
.y49{bottom:734.720001pt;}
.ya9{bottom:741.439314pt;}
.y13{bottom:743.199158pt;}
.y6e{bottom:748.640015pt;}
.ya8{bottom:755.676571pt;}
.y48{bottom:756.160004pt;}
.y12{bottom:758.878714pt;}
.y6d{bottom:768.640015pt;}
.ya7{bottom:769.919929pt;}
.y11{bottom:776.318996pt;}
.y47{bottom:777.279999pt;}
.ya6{bottom:783.998736pt;}
.y6c{bottom:788.799988pt;}
.ya5{bottom:798.236011pt;}
.y46{bottom:798.720001pt;}
.y10{bottom:799.044683pt;}
.y6b{bottom:808.800003pt;}
.ya4{bottom:812.479369pt;}
.y45{bottom:820.000000pt;}
.yf{bottom:822.395594pt;}
.ya3{bottom:826.716626pt;}
.y6a{bottom:828.800003pt;}
.ya2{bottom:840.795433pt;}
.y44{bottom:841.279999pt;}
.y69{bottom:848.960007pt;}
.yd{bottom:853.280365pt;}
.ye{bottom:853.285470pt;}
.ya1{bottom:855.038791pt;}
.y8{bottom:857.123547pt;}
.y43{bottom:862.559998pt;}
.y68{bottom:868.960007pt;}
.ya0{bottom:869.276066pt;}
.y9f{bottom:883.360955pt;}
.y42{bottom:884.000000pt;}
.yc{bottom:884.318553pt;}
.y67{bottom:888.960007pt;}
.y9e{bottom:897.598231pt;}
.y41{bottom:905.119995pt;}
.y66{bottom:909.119995pt;}
.y9d{bottom:911.835497pt;}
.yb{bottom:922.560542pt;}
.y9c{bottom:926.078855pt;}
.y40{bottom:926.559998pt;}
.y65{bottom:929.120003pt;}
.y9b{bottom:940.157653pt;}
.y3f{bottom:947.839996pt;}
.y64{bottom:949.120003pt;}
.ya{bottom:953.282316pt;}
.y9a{bottom:954.401019pt;}
.y3{bottom:968.961883pt;}
.y3a{bottom:969.120003pt;}
.y39{bottom:984.639999pt;}
.y2{bottom:984.641444pt;}
.y1{bottom:1000.158869pt;}
.y38{bottom:1000.320000pt;}
.h4{height:22.881918pt;}
.h11{height:33.217488pt;}
.h14{height:33.277170pt;}
.h10{height:33.801532pt;}
.h12{height:33.862264pt;}
.h9{height:35.251860pt;}
.hf{height:36.283718pt;}
.h13{height:36.348909pt;}
.he{height:37.466647pt;}
.h8{height:37.533668pt;}
.ha{height:38.537936pt;}
.hb{height:39.004155pt;}
.h1{height:39.073927pt;}
.hd{height:40.217978pt;}
.h3{height:40.289920pt;}
.hc{height:54.945688pt;}
.h2{height:55.043976pt;}
.h5{height:56.487006pt;}
.h6{height:63.707288pt;}
.h7{height:66.057812pt;}
.h0{height:1056.000000pt;}
.w1{width:6.717253pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:124.801501pt;}
.x1{left:127.998085pt;}
.x3{left:177.599031pt;}
.xc{left:179.045521pt;}
.xd{left:203.038500pt;}
.x2{left:219.039915pt;}
.x6{left:233.124779pt;}
.x7{left:246.723391pt;}
.x8{left:266.879379pt;}
.x9{left:287.198817pt;}
.xb{left:306.077831pt;}
.x4{left:327.838297pt;}
.xf{left:429.760010pt;}
.xa{left:560.963836pt;}
.xe{left:690.552606pt;}
}




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