
    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_deb2e2f58b3cc3986b82f290.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.075000;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_4a8244d254e1dad2e3dc3909.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_79284fde82335c968fd2df5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.059000;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_1923b812182fc2fae42e77a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.075000;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_55d91bd52cd4e74003860ab2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.059000;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_a7a55cf71ba64e547e1825d8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.062000;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_e82f0e992f37b9ba6e9ea481.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.075000;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_d8f549a17f63c346b4a23ce1.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.139000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c807dc79c6bde5550ec5e8ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_dfd6c2d978da208cec2fdb6c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.062000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_97c63805d2d9a46c3997d25f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.005000;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:ffc;src:url('chunks/assets/font_9849e370f07d13b3f5464d5d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.063000;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:ffd;src:url('chunks/assets/font_84996bd6fc44f8d741cdd7c3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.061000;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:ffe;src:url('chunks/assets/font_14501331bcc22e9fec2059d1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-16.498716px;}
.ws3{word-spacing:-15.001902px;}
.ws5{word-spacing:-10.504681px;}
.ws2{word-spacing:-6.996050px;}
.ws4{word-spacing:-5.901460px;}
.ws1{word-spacing:0.000000px;}
._4f{margin-left:-8.270736px;}
._15{margin-left:-6.752544px;}
._9{margin-left:-1.002804px;}
._d{width:1.747302px;}
._1b{width:3.017123px;}
._c{width:4.212892px;}
._6{width:6.109622px;}
._10{width:7.227001px;}
._14{width:9.051668px;}
._16{width:11.011270px;}
._1{width:12.186349px;}
._2{width:14.086759px;}
._e{width:15.197406px;}
._24{width:17.645632px;}
._19{width:18.959224px;}
._26{width:20.300981px;}
._21{width:21.352674px;}
._13{width:22.551386px;}
._f{width:24.052180px;}
._0{width:25.412691px;}
._30{width:26.553446px;}
._12{width:27.660624px;}
._1a{width:28.875996px;}
._2a{width:30.806881px;}
._20{width:31.854966px;}
._35{width:32.918204px;}
._23{width:34.106575px;}
._1d{width:35.240985px;}
._2b{width:36.261770px;}
._34{width:38.292564px;}
._31{width:39.313073px;}
._18{width:40.511958px;}
._5{width:41.689651px;}
._8{width:43.243238px;}
._4{width:45.203692px;}
._11{width:46.787305px;}
._25{width:47.838637px;}
._22{width:49.197573px;}
._2e{width:50.523763px;}
._1c{width:51.611990px;}
._2d{width:52.659501px;}
._28{width:53.728009px;}
._7{width:54.728239px;}
._2c{width:56.278230px;}
._42{width:57.278526px;}
._33{width:58.337347px;}
._1e{width:59.544053px;}
._3b{width:60.741511px;}
._1f{width:61.810099px;}
._17{width:62.963561px;}
._39{width:63.982592px;}
._4a{width:65.112771px;}
._3e{width:66.396712px;}
._3{width:67.415185px;}
._44{width:68.732981px;}
._32{width:70.109585px;}
._a{width:71.931304px;}
._b{width:73.214262px;}
._45{width:77.338579px;}
._40{width:78.736513px;}
._47{width:80.048266px;}
._38{width:81.309660px;}
._2f{width:82.973751px;}
._50{width:84.476538px;}
._4d{width:86.763939px;}
._49{width:88.824231px;}
._27{width:90.009949px;}
._58{width:92.366391px;}
._37{width:94.231610px;}
._36{width:95.326261px;}
._41{width:99.455023px;}
._4e{width:104.132428px;}
._4c{width:111.128090px;}
._43{width:113.380492px;}
._54{width:114.419576px;}
._29{width:115.822825px;}
._3f{width:119.706349px;}
._3c{width:122.634439px;}
._46{width:123.653275px;}
._3d{width:125.164041px;}
._53{width:126.679002px;}
._3a{width:132.549309px;}
._48{width:135.408437px;}
._55{width:136.521177px;}
._59{width:138.896233px;}
._51{width:143.608992px;}
._4b{width:164.690592px;}
._52{width:193.976208px;}
._56{width:195.523510px;}
._57{width:997.858144px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,76,62);}
.fs7{font-size:18.675507px;}
.fs5{font-size:27.984200px;}
.fs8{font-size:29.750527px;}
.fs6{font-size:42.016355px;}
.fs9{font-size:42.018724px;}
.fs4{font-size:48.018742px;}
.fs2{font-size:54.020354px;}
.fs3{font-size:60.007609px;}
.fs1{font-size:65.994864px;}
.fs0{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.yd1{bottom:5.617766px;}
.yd0{bottom:15.534608px;}
.ycf{bottom:25.451451px;}
.ycc{bottom:29.655019px;}
.yce{bottom:35.368293px;}
.yc7{bottom:35.514983px;}
.ycd{bottom:45.285135px;}
.y79{bottom:51.374077px;}
.yc6{bottom:53.870950px;}
.ycb{bottom:54.744267px;}
.y24{bottom:58.717019px;}
.yc5{bottom:71.009182px;}
.y5e{bottom:79.760789px;}
.y23{bottom:81.225499px;}
.y92{bottom:101.491148px;}
.y5d{bottom:102.269269px;}
.y22{bottom:103.733980px;}
.yc4{bottom:114.557991px;}
.y91{bottom:123.999628px;}
.y5c{bottom:124.777750px;}
.y21{bottom:126.242460px;}
.yc3{bottom:137.066472px;}
.yd2{bottom:143.875725px;}
.y90{bottom:146.508109px;}
.y5b{bottom:147.286231px;}
.y20{bottom:148.750941px;}
.yc2{bottom:159.574953px;}
.y8f{bottom:169.016590px;}
.y5a{bottom:169.794711px;}
.y1f{bottom:171.259422px;}
.yc0{bottom:182.083433px;}
.y8e{bottom:191.525070px;}
.y59{bottom:192.303192px;}
.y1e{bottom:193.767902px;}
.yca{bottom:202.405664px;}
.ybf{bottom:204.591914px;}
.y8d{bottom:214.033551px;}
.y58{bottom:214.811673px;}
.y1d{bottom:216.276383px;}
.yc8{bottom:226.611662px;}
.ybe{bottom:227.100395px;}
.y8c{bottom:236.542032px;}
.y60{bottom:237.320153px;}
.y1c{bottom:238.784864px;}
.ybd{bottom:249.608875px;}
.y8b{bottom:259.050512px;}
.y57{bottom:259.828634px;}
.y1b{bottom:261.293344px;}
.ybc{bottom:272.117356px;}
.y8a{bottom:281.558993px;}
.y56{bottom:282.337115px;}
.yd3{bottom:282.621509px;}
.y30{bottom:283.801825px;}
.ybb{bottom:294.625837px;}
.y89{bottom:304.067473px;}
.y55{bottom:304.845595px;}
.y1a{bottom:306.310306px;}
.yc9{bottom:306.827470px;}
.yba{bottom:317.134317px;}
.y93{bottom:326.575954px;}
.y54{bottom:327.354076px;}
.y2f{bottom:328.818786px;}
.yb9{bottom:339.642798px;}
.y88{bottom:349.084435px;}
.y53{bottom:349.862557px;}
.y19{bottom:351.327267px;}
.yb8{bottom:362.151279px;}
.y87{bottom:371.592915px;}
.yf6{bottom:372.282164px;}
.y52{bottom:372.371037px;}
.y18{bottom:373.835748px;}
.yb7{bottom:384.659759px;}
.y86{bottom:394.101396px;}
.yf5{bottom:394.790645px;}
.y51{bottom:394.879518px;}
.y17{bottom:396.344228px;}
.yb6{bottom:407.168240px;}
.y85{bottom:416.609877px;}
.yf4{bottom:417.299126px;}
.y50{bottom:417.387999px;}
.y16{bottom:418.852709px;}
.yb5{bottom:429.676721px;}
.y84{bottom:439.118357px;}
.yf3{bottom:439.807606px;}
.y4f{bottom:439.896479px;}
.y15{bottom:441.361190px;}
.yb4{bottom:452.185201px;}
.y83{bottom:461.626838px;}
.yf2{bottom:462.316087px;}
.y4e{bottom:462.404960px;}
.y14{bottom:463.869670px;}
.yb3{bottom:474.693682px;}
.y82{bottom:484.135319px;}
.yf1{bottom:484.824568px;}
.y4d{bottom:484.913441px;}
.y13{bottom:486.378151px;}
.yb2{bottom:497.202163px;}
.y81{bottom:506.643799px;}
.yf0{bottom:507.333048px;}
.y4c{bottom:507.421921px;}
.y12{bottom:508.886632px;}
.yb1{bottom:519.710643px;}
.y80{bottom:529.152280px;}
.yef{bottom:529.841529px;}
.y4b{bottom:529.930402px;}
.y11{bottom:531.395112px;}
.yb0{bottom:542.219124px;}
.y7f{bottom:551.660761px;}
.yee{bottom:552.350010px;}
.y4a{bottom:552.438883px;}
.y10{bottom:553.903593px;}
.yaf{bottom:564.727605px;}
.y7e{bottom:574.169241px;}
.yed{bottom:574.858490px;}
.y49{bottom:574.947363px;}
.yf{bottom:576.412074px;}
.yae{bottom:587.236085px;}
.y95{bottom:587.753349px;}
.y7d{bottom:596.677722px;}
.yec{bottom:597.366971px;}
.y48{bottom:597.455844px;}
.ye{bottom:598.920554px;}
.y94{bottom:608.010982px;}
.yad{bottom:609.744566px;}
.y7c{bottom:619.186203px;}
.yeb{bottom:619.875452px;}
.y47{bottom:619.964325px;}
.yd{bottom:621.429035px;}
.y78{bottom:626.324057px;}
.yac{bottom:632.253047px;}
.y7b{bottom:641.694683px;}
.yea{bottom:642.383932px;}
.y46{bottom:642.472805px;}
.yc{bottom:643.937516px;}
.y77{bottom:646.581690px;}
.yab{bottom:654.761527px;}
.y7a{bottom:664.203164px;}
.ye9{bottom:664.892413px;}
.y45{bottom:664.981286px;}
.yb{bottom:666.445996px;}
.yaa{bottom:677.270008px;}
.y76{bottom:686.711645px;}
.ye8{bottom:687.400894px;}
.y44{bottom:687.489767px;}
.ya{bottom:688.954477px;}
.ya9{bottom:699.778489px;}
.y75{bottom:709.220125px;}
.ye7{bottom:709.909374px;}
.y43{bottom:709.998247px;}
.y9{bottom:711.462958px;}
.ya8{bottom:722.286969px;}
.y74{bottom:731.728606px;}
.ye6{bottom:732.417855px;}
.y42{bottom:732.506728px;}
.y8{bottom:733.971438px;}
.ya7{bottom:744.795450px;}
.y73{bottom:754.237087px;}
.ye5{bottom:754.926336px;}
.y41{bottom:755.015209px;}
.y7{bottom:756.479919px;}
.ya6{bottom:767.303931px;}
.y72{bottom:776.745567px;}
.ye4{bottom:777.434816px;}
.y40{bottom:777.523689px;}
.y6{bottom:778.988400px;}
.ya5{bottom:789.812411px;}
.y71{bottom:799.254048px;}
.ye3{bottom:799.943297px;}
.y5f{bottom:800.032170px;}
.y5{bottom:801.496880px;}
.ya4{bottom:812.320892px;}
.y70{bottom:821.762529px;}
.ye2{bottom:822.451777px;}
.y3f{bottom:822.540651px;}
.y4{bottom:824.005361px;}
.ya3{bottom:834.829373px;}
.y6f{bottom:844.271009px;}
.ye1{bottom:844.960258px;}
.y3e{bottom:845.049131px;}
.y2e{bottom:846.513842px;}
.ya2{bottom:857.337853px;}
.y6e{bottom:866.779490px;}
.y3d{bottom:867.557612px;}
.y3{bottom:869.022322px;}
.ya1{bottom:879.846334px;}
.y6d{bottom:889.287971px;}
.ye0{bottom:889.977219px;}
.y3c{bottom:890.066093px;}
.ya0{bottom:902.354815px;}
.y6c{bottom:911.796451px;}
.ydf{bottom:912.485700px;}
.y3b{bottom:912.574573px;}
.y2d{bottom:920.704411px;}
.y9f{bottom:924.863295px;}
.y6b{bottom:934.304932px;}
.yde{bottom:934.994181px;}
.y3a{bottom:935.083054px;}
.y9e{bottom:947.371776px;}
.y2c{bottom:956.717980px;}
.y6a{bottom:956.813413px;}
.ydd{bottom:957.502661px;}
.y39{bottom:957.591535px;}
.y9d{bottom:969.880257px;}
.y69{bottom:979.321893px;}
.ydc{bottom:980.011142px;}
.y38{bottom:980.100015px;}
.y9c{bottom:992.388737px;}
.y2b{bottom:992.731549px;}
.y68{bottom:1001.830374px;}
.ydb{bottom:1002.519623px;}
.y37{bottom:1002.608496px;}
.y2a{bottom:1010.738334px;}
.y9b{bottom:1014.897218px;}
.y67{bottom:1024.338855px;}
.yda{bottom:1025.028103px;}
.y36{bottom:1025.116977px;}
.y29{bottom:1028.745118px;}
.y9a{bottom:1037.405699px;}
.y28{bottom:1046.751903px;}
.y66{bottom:1046.847335px;}
.yd9{bottom:1047.536584px;}
.y35{bottom:1047.625457px;}
.y99{bottom:1059.914179px;}
.y27{bottom:1064.758687px;}
.y65{bottom:1069.355816px;}
.yd8{bottom:1070.045065px;}
.y34{bottom:1070.133938px;}
.y98{bottom:1082.422660px;}
.y26{bottom:1082.765472px;}
.y64{bottom:1091.864297px;}
.yd7{bottom:1092.553545px;}
.y33{bottom:1092.642419px;}
.y25{bottom:1100.772257px;}
.y97{bottom:1104.931141px;}
.y63{bottom:1114.372777px;}
.yd6{bottom:1115.062026px;}
.y32{bottom:1115.150899px;}
.yc1{bottom:1127.439621px;}
.y62{bottom:1136.881258px;}
.yd5{bottom:1137.570507px;}
.y31{bottom:1137.659380px;}
.y96{bottom:1149.948102px;}
.y61{bottom:1159.389739px;}
.yd4{bottom:1160.078987px;}
.y2{bottom:1182.475824px;}
.hd{height:15.033783px;}
.hb{height:22.751155px;}
.hf{height:24.187179px;}
.hc{height:34.159296px;}
.h10{height:34.161222px;}
.h8{height:39.039237px;}
.h6{height:43.918547px;}
.h7{height:48.786186px;}
.he{height:53.639998px;}
.h5{height:53.653825px;}
.h9{height:53.719820px;}
.h4{height:54.643748px;}
.ha{height:58.801424px;}
.h3{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:47.986994px;}
.xa{left:49.025411px;}
.xb{left:50.900892px;}
.xc{left:58.798029px;}
.x6{left:94.878636px;}
.x4{left:103.141297px;}
.x1{left:113.856184px;}
.xe{left:119.519995px;}
.xf{left:127.283452px;}
.x5{left:257.429898px;}
.x7{left:316.446498px;}
.x3{left:469.237524px;}
.xd{left:496.419632px;}
.x9{left:618.659038px;}
.x8{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-14.665525pt;}
.ws3{word-spacing:-13.335024pt;}
.ws5{word-spacing:-9.337494pt;}
.ws2{word-spacing:-6.218711pt;}
.ws4{word-spacing:-5.245742pt;}
.ws1{word-spacing:0.000000pt;}
._4f{margin-left:-7.351766pt;}
._15{margin-left:-6.002262pt;}
._9{margin-left:-0.891381pt;}
._d{width:1.553158pt;}
._1b{width:2.681887pt;}
._c{width:3.744793pt;}
._6{width:5.430775pt;}
._10{width:6.424001pt;}
._14{width:8.045927pt;}
._16{width:9.787795pt;}
._1{width:10.832310pt;}
._2{width:12.521563pt;}
._e{width:13.508806pt;}
._24{width:15.685006pt;}
._19{width:16.852643pt;}
._26{width:18.045317pt;}
._21{width:18.980155pt;}
._13{width:20.045676pt;}
._f{width:21.379715pt;}
._0{width:22.589059pt;}
._30{width:23.603063pt;}
._12{width:24.587222pt;}
._1a{width:25.667552pt;}
._2a{width:27.383895pt;}
._20{width:28.315525pt;}
._35{width:29.260626pt;}
._23{width:30.316956pt;}
._1d{width:31.325320pt;}
._2b{width:32.232685pt;}
._34{width:34.037834pt;}
._31{width:34.944954pt;}
._18{width:36.010629pt;}
._5{width:37.057467pt;}
._8{width:38.438434pt;}
._4{width:40.181060pt;}
._11{width:41.588715pt;}
._25{width:42.523233pt;}
._22{width:43.731176pt;}
._2e{width:44.910012pt;}
._1c{width:45.877325pt;}
._2d{width:46.808446pt;}
._28{width:47.758230pt;}
._7{width:48.647323pt;}
._2c{width:50.025093pt;}
._42{width:50.914245pt;}
._33{width:51.855420pt;}
._1e{width:52.928047pt;}
._3b{width:53.992454pt;}
._1f{width:54.942310pt;}
._17{width:55.967610pt;}
._39{width:56.873415pt;}
._4a{width:57.878019pt;}
._3e{width:59.019299pt;}
._3{width:59.924608pt;}
._44{width:61.095984pt;}
._32{width:62.319631pt;}
._a{width:63.938937pt;}
._b{width:65.079344pt;}
._45{width:68.745404pt;}
._40{width:69.988011pt;}
._47{width:71.154014pt;}
._38{width:72.275254pt;}
._2f{width:73.754445pt;}
._50{width:75.090256pt;}
._4d{width:77.123501pt;}
._49{width:78.954872pt;}
._27{width:80.008843pt;}
._58{width:82.103459pt;}
._37{width:83.761432pt;}
._36{width:84.734454pt;}
._41{width:88.404465pt;}
._4e{width:92.562158pt;}
._4c{width:98.780524pt;}
._43{width:100.782660pt;}
._54{width:101.706290pt;}
._29{width:102.953622pt;}
._3f{width:106.405644pt;}
._3c{width:109.008391pt;}
._46{width:109.914022pt;}
._3d{width:111.256926pt;}
._53{width:112.603557pt;}
._3a{width:117.821608pt;}
._48{width:120.363055pt;}
._55{width:121.352157pt;}
._59{width:123.463319pt;}
._51{width:127.652438pt;}
._4b{width:146.391637pt;}
._52{width:172.423296pt;}
._56{width:173.798676pt;}
._57{width:886.985017pt;}
.fs7{font-size:16.600451pt;}
.fs5{font-size:24.874844pt;}
.fs8{font-size:26.444913pt;}
.fs6{font-size:37.347871pt;}
.fs9{font-size:37.349977pt;}
.fs4{font-size:42.683326pt;}
.fs2{font-size:48.018092pt;}
.fs3{font-size:53.340097pt;}
.fs1{font-size:58.662102pt;}
.fs0{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.yd1{bottom:4.993570pt;}
.yd0{bottom:13.808541pt;}
.ycf{bottom:22.623512pt;}
.ycc{bottom:26.360017pt;}
.yce{bottom:31.438483pt;}
.yc7{bottom:31.568874pt;}
.ycd{bottom:40.253454pt;}
.y79{bottom:45.665846pt;}
.yc6{bottom:47.885289pt;}
.ycb{bottom:48.661571pt;}
.y24{bottom:52.192905pt;}
.yc5{bottom:63.119273pt;}
.y5e{bottom:70.898479pt;}
.y23{bottom:72.200444pt;}
.y92{bottom:90.214353pt;}
.y5d{bottom:90.906017pt;}
.y22{bottom:92.207982pt;}
.yc4{bottom:101.829326pt;}
.y91{bottom:110.221892pt;}
.y5c{bottom:110.913556pt;}
.y21{bottom:112.215520pt;}
.yc3{bottom:121.836864pt;}
.yd2{bottom:127.889533pt;}
.y90{bottom:130.229430pt;}
.y5b{bottom:130.921094pt;}
.y20{bottom:132.223059pt;}
.yc2{bottom:141.844402pt;}
.y8f{bottom:150.236968pt;}
.y5a{bottom:150.928632pt;}
.y1f{bottom:152.230597pt;}
.yc0{bottom:161.851941pt;}
.y8e{bottom:170.244507pt;}
.y59{bottom:170.936171pt;}
.y1e{bottom:172.238136pt;}
.yca{bottom:179.916146pt;}
.ybf{bottom:181.859479pt;}
.y8d{bottom:190.252045pt;}
.y58{bottom:190.943709pt;}
.y1d{bottom:192.245674pt;}
.yc8{bottom:201.432588pt;}
.ybe{bottom:201.867018pt;}
.y8c{bottom:210.259584pt;}
.y60{bottom:210.951248pt;}
.y1c{bottom:212.253212pt;}
.ybd{bottom:221.874556pt;}
.y8b{bottom:230.267122pt;}
.y57{bottom:230.958786pt;}
.y1b{bottom:232.260751pt;}
.ybc{bottom:241.882094pt;}
.y8a{bottom:250.274660pt;}
.y56{bottom:250.966324pt;}
.yd3{bottom:251.219119pt;}
.y30{bottom:252.268289pt;}
.ybb{bottom:261.889633pt;}
.y89{bottom:270.282199pt;}
.y55{bottom:270.973863pt;}
.y1a{bottom:272.275827pt;}
.yc9{bottom:272.735529pt;}
.yba{bottom:281.897171pt;}
.y93{bottom:290.289737pt;}
.y54{bottom:290.981401pt;}
.y2f{bottom:292.283366pt;}
.yb9{bottom:301.904709pt;}
.y88{bottom:310.297275pt;}
.y53{bottom:310.988939pt;}
.y19{bottom:312.290904pt;}
.yb8{bottom:321.912248pt;}
.y87{bottom:330.304814pt;}
.yf6{bottom:330.917479pt;}
.y52{bottom:330.996478pt;}
.y18{bottom:332.298442pt;}
.yb7{bottom:341.919786pt;}
.y86{bottom:350.312352pt;}
.yf5{bottom:350.925018pt;}
.y51{bottom:351.004016pt;}
.y17{bottom:352.305981pt;}
.yb6{bottom:361.927324pt;}
.y85{bottom:370.319890pt;}
.yf4{bottom:370.932556pt;}
.y50{bottom:371.011554pt;}
.y16{bottom:372.313519pt;}
.yb5{bottom:381.934863pt;}
.y84{bottom:390.327429pt;}
.yf3{bottom:390.940094pt;}
.y4f{bottom:391.019093pt;}
.y15{bottom:392.321058pt;}
.yb4{bottom:401.942401pt;}
.y83{bottom:410.334967pt;}
.yf2{bottom:410.947633pt;}
.y4e{bottom:411.026631pt;}
.y14{bottom:412.328596pt;}
.yb3{bottom:421.949940pt;}
.y82{bottom:430.342506pt;}
.yf1{bottom:430.955171pt;}
.y4d{bottom:431.034170pt;}
.y13{bottom:432.336134pt;}
.yb2{bottom:441.957478pt;}
.y81{bottom:450.350044pt;}
.yf0{bottom:450.962710pt;}
.y4c{bottom:451.041708pt;}
.y12{bottom:452.343673pt;}
.yb1{bottom:461.965016pt;}
.y80{bottom:470.357582pt;}
.yef{bottom:470.970248pt;}
.y4b{bottom:471.049246pt;}
.y11{bottom:472.351211pt;}
.yb0{bottom:481.972555pt;}
.y7f{bottom:490.365121pt;}
.yee{bottom:490.977786pt;}
.y4a{bottom:491.056785pt;}
.y10{bottom:492.358749pt;}
.yaf{bottom:501.980093pt;}
.y7e{bottom:510.372659pt;}
.yed{bottom:510.985325pt;}
.y49{bottom:511.064323pt;}
.yf{bottom:512.366288pt;}
.yae{bottom:521.987631pt;}
.y95{bottom:522.447421pt;}
.y7d{bottom:530.380197pt;}
.yec{bottom:530.992863pt;}
.y48{bottom:531.071861pt;}
.ye{bottom:532.373826pt;}
.y94{bottom:540.454206pt;}
.yad{bottom:541.995170pt;}
.y7c{bottom:550.387736pt;}
.yeb{bottom:551.000401pt;}
.y47{bottom:551.079400pt;}
.yd{bottom:552.381365pt;}
.y78{bottom:556.732495pt;}
.yac{bottom:562.002708pt;}
.y7b{bottom:570.395274pt;}
.yea{bottom:571.007940pt;}
.y46{bottom:571.086938pt;}
.yc{bottom:572.388903pt;}
.y77{bottom:574.739280pt;}
.yab{bottom:582.010246pt;}
.y7a{bottom:590.402813pt;}
.ye9{bottom:591.015478pt;}
.y45{bottom:591.094476pt;}
.yb{bottom:592.396441pt;}
.yaa{bottom:602.017785pt;}
.y76{bottom:610.410351pt;}
.ye8{bottom:611.023016pt;}
.y44{bottom:611.102015pt;}
.ya{bottom:612.403980pt;}
.ya9{bottom:622.025323pt;}
.y75{bottom:630.417889pt;}
.ye7{bottom:631.030555pt;}
.y43{bottom:631.109553pt;}
.y9{bottom:632.411518pt;}
.ya8{bottom:642.032862pt;}
.y74{bottom:650.425428pt;}
.ye6{bottom:651.038093pt;}
.y42{bottom:651.117092pt;}
.y8{bottom:652.419056pt;}
.ya7{bottom:662.040400pt;}
.y73{bottom:670.432966pt;}
.ye5{bottom:671.045632pt;}
.y41{bottom:671.124630pt;}
.y7{bottom:672.426595pt;}
.ya6{bottom:682.047938pt;}
.y72{bottom:690.440504pt;}
.ye4{bottom:691.053170pt;}
.y40{bottom:691.132168pt;}
.y6{bottom:692.434133pt;}
.ya5{bottom:702.055477pt;}
.y71{bottom:710.448043pt;}
.ye3{bottom:711.060708pt;}
.y5f{bottom:711.139707pt;}
.y5{bottom:712.441671pt;}
.ya4{bottom:722.063015pt;}
.y70{bottom:730.455581pt;}
.ye2{bottom:731.068247pt;}
.y3f{bottom:731.147245pt;}
.y4{bottom:732.449210pt;}
.ya3{bottom:742.070553pt;}
.y6f{bottom:750.463119pt;}
.ye1{bottom:751.075785pt;}
.y3e{bottom:751.154783pt;}
.y2e{bottom:752.456748pt;}
.ya2{bottom:762.078092pt;}
.y6e{bottom:770.470658pt;}
.y3d{bottom:771.162322pt;}
.y3{bottom:772.464287pt;}
.ya1{bottom:782.085630pt;}
.y6d{bottom:790.478196pt;}
.ye0{bottom:791.090862pt;}
.y3c{bottom:791.169860pt;}
.ya0{bottom:802.093168pt;}
.y6c{bottom:810.485735pt;}
.ydf{bottom:811.098400pt;}
.y3b{bottom:811.177399pt;}
.y2d{bottom:818.403921pt;}
.y9f{bottom:822.100707pt;}
.y6b{bottom:830.493273pt;}
.yde{bottom:831.105938pt;}
.y3a{bottom:831.184937pt;}
.y9e{bottom:842.108245pt;}
.y2c{bottom:850.415982pt;}
.y6a{bottom:850.500811pt;}
.ydd{bottom:851.113477pt;}
.y39{bottom:851.192475pt;}
.y9d{bottom:862.115784pt;}
.y69{bottom:870.508350pt;}
.ydc{bottom:871.121015pt;}
.y38{bottom:871.200014pt;}
.y9c{bottom:882.123322pt;}
.y2b{bottom:882.428044pt;}
.y68{bottom:890.515888pt;}
.ydb{bottom:891.128554pt;}
.y37{bottom:891.207552pt;}
.y2a{bottom:898.434075pt;}
.y9b{bottom:902.130860pt;}
.y67{bottom:910.523426pt;}
.yda{bottom:911.136092pt;}
.y36{bottom:911.215090pt;}
.y29{bottom:914.440105pt;}
.y9a{bottom:922.138399pt;}
.y28{bottom:930.446136pt;}
.y66{bottom:930.530965pt;}
.yd9{bottom:931.143630pt;}
.y35{bottom:931.222629pt;}
.y99{bottom:942.145937pt;}
.y27{bottom:946.452167pt;}
.y65{bottom:950.538503pt;}
.yd8{bottom:951.151169pt;}
.y34{bottom:951.230167pt;}
.y98{bottom:962.153475pt;}
.y26{bottom:962.458197pt;}
.y64{bottom:970.546041pt;}
.yd7{bottom:971.158707pt;}
.y33{bottom:971.237705pt;}
.y25{bottom:978.464228pt;}
.y97{bottom:982.161014pt;}
.y63{bottom:990.553580pt;}
.yd6{bottom:991.166245pt;}
.y32{bottom:991.245244pt;}
.yc1{bottom:1002.168552pt;}
.y62{bottom:1010.561118pt;}
.yd5{bottom:1011.173784pt;}
.y31{bottom:1011.252782pt;}
.y96{bottom:1022.176091pt;}
.y61{bottom:1030.568657pt;}
.yd4{bottom:1031.181322pt;}
.y2{bottom:1051.089621pt;}
.hd{height:13.363363pt;}
.hb{height:20.223249pt;}
.hf{height:21.499714pt;}
.hc{height:30.363819pt;}
.h10{height:30.365531pt;}
.h8{height:34.701544pt;}
.h6{height:39.038709pt;}
.h7{height:43.365499pt;}
.he{height:47.679998pt;}
.h5{height:47.692289pt;}
.h9{height:47.750951pt;}
.h4{height:48.572220pt;}
.ha{height:52.267933pt;}
.h3{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:42.655106pt;}
.xa{left:43.578143pt;}
.xb{left:45.245237pt;}
.xc{left:52.264915pt;}
.x6{left:84.336565pt;}
.x4{left:91.681153pt;}
.x1{left:101.205497pt;}
.xe{left:106.239996pt;}
.xf{left:113.140846pt;}
.x5{left:228.826576pt;}
.x7{left:281.285776pt;}
.x3{left:417.100021pt;}
.xd{left:441.261895pt;}
.x9{left:549.919145pt;}
.x8{left:551.612297pt;}
}




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