
    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_a39877dd715b7be171974384.woff')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_0fd606d0b15810907cd95478.woff')format("woff");}.ff2{font-family:ff2;line-height:0.972168;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_bdec315863e8f49dd81edd6d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.969238;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_dea308548991dc65c679ef43.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_00586e3f8f199484047a6e61.woff')format("woff");}.ff5{font-family:ff5;line-height:0.960000;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_552cf52dbf4af5d6679caccb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.731445;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_2efaee9164175c26cd621574.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_ddf4d0678f4b54d8eac77fcc.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d58c25ace42a8da9d9abff17.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740234;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_a0501e9ce61c59b38c3f5205.woff')format("woff");}.ffa{font-family:ffa;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;}
.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;}
.ls7{letter-spacing:0.018000px;}
.lsb{letter-spacing:0.594000px;}
.lse{letter-spacing:0.872130px;}
.lsc{letter-spacing:0.923432px;}
.ls9{letter-spacing:1.296040px;}
.lsd{letter-spacing:1.333846px;}
.ls6{letter-spacing:1.344041px;}
.ls1{letter-spacing:1.458000px;}
.ls2{letter-spacing:1.476000px;}
.lsa{letter-spacing:1.620000px;}
.ls5{letter-spacing:3.840117px;}
.ls8{letter-spacing:12.852000px;}
.ls4{letter-spacing:31.456903px;}
.ls3{letter-spacing:917.819000px;}
.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;}
}
.ws1{word-spacing:-21.129671px;}
.ws8{word-spacing:-16.416000px;}
.ws2{word-spacing:-14.958000px;}
.wse{word-spacing:-14.210587px;}
.ws0{word-spacing:-11.633594px;}
.ws5{word-spacing:-10.508889px;}
.wsd{word-spacing:-8.725500px;}
.ws6{word-spacing:0.000000px;}
.ws7{word-spacing:0.324000px;}
.wsc{word-spacing:41.494554px;}
.wsb{word-spacing:77.487299px;}
.wsa{word-spacing:104.534356px;}
.ws9{word-spacing:184.079583px;}
.ws3{word-spacing:307.512000px;}
.ws4{word-spacing:367.704000px;}
._22{margin-left:-12.595986px;}
._1e{margin-left:-9.119243px;}
._25{margin-left:-7.844080px;}
._5{margin-left:-5.815890px;}
._4{margin-left:-4.789688px;}
._3{margin-left:-2.700154px;}
._0{margin-left:-1.007965px;}
._1{width:1.133960px;}
._2{width:2.603909px;}
._c{width:3.670810px;}
._b{width:4.921312px;}
._9{width:6.156000px;}
._a{width:7.914458px;}
._8{width:9.000004px;}
._7{width:10.153486px;}
._21{width:11.174684px;}
._e{width:12.300328px;}
._d{width:13.833458px;}
._14{width:16.130669px;}
._6{width:17.138800px;}
._1b{width:21.619943px;}
._20{width:25.414162px;}
._1f{width:27.056920px;}
._13{width:28.655925px;}
._23{width:31.007171px;}
._1a{width:36.677358px;}
._15{width:44.980432px;}
._17{width:53.128148px;}
._18{width:62.980300px;}
._16{width:65.151977px;}
._1c{width:89.990827px;}
._24{width:115.685464px;}
._19{width:296.425667px;}
._1d{width:306.279722px;}
._10{width:353.484000px;}
._11{width:366.984000px;}
._f{width:465.984000px;}
._12{width:483.984000px;}
.fc3{color:rgb(10,84,44);}
.fc1{color:rgb(27,138,174);}
.fc5{color:rgb(60,60,60);}
.fc4{color:rgb(83,83,83);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.500000px;}
.fs6{font-size:36.000000px;}
.fs4{font-size:37.801758px;}
.fs0{font-size:41.998536px;}
.fs3{font-size:48.001464px;}
.fs8{font-size:51.301758px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:70.198242px;}
.fs2{font-size:91.801758px;}
.y0{bottom:0.000000px;}
.yea{bottom:4.528742px;}
.yd7{bottom:4.528912px;}
.yd6{bottom:22.482039px;}
.ye9{bottom:22.487730px;}
.ye8{bottom:40.440858px;}
.yd5{bottom:40.441028px;}
.y23{bottom:46.734370px;}
.ye7{bottom:58.393985px;}
.yd4{bottom:58.394155px;}
.y22{bottom:59.015622px;}
.y21{bottom:71.302734px;}
.ye6{bottom:76.347112px;}
.yd3{bottom:76.347282px;}
.y74{bottom:88.729500px;}
.ya8{bottom:91.078500px;}
.y5d{bottom:91.173000px;}
.y24{bottom:92.971500px;}
.y85{bottom:93.492183px;}
.ye5{bottom:94.306100px;}
.yd2{bottom:94.306266px;}
.y6f{bottom:95.941395px;}
.y46{bottom:97.734365px;}
.ye4{bottom:112.259228px;}
.yd1{bottom:112.259387px;}
.y84{bottom:112.394509px;}
.ya7{bottom:113.871093px;}
.y6e{bottom:114.843744px;}
.y45{bottom:116.636713px;}
.y55{bottom:121.253889px;}
.ye3{bottom:130.212355px;}
.yd0{bottom:130.212514px;}
.y83{bottom:131.290999px;}
.ya6{bottom:131.824213px;}
.y54{bottom:140.150379px;}
.y6d{bottom:147.240229px;}
.ycf{bottom:148.165641px;}
.ye2{bottom:148.171343px;}
.y44{bottom:149.033193px;}
.ya5{bottom:149.777340px;}
.y1e{bottom:156.609332px;}
.y82{bottom:163.693348px;}
.ye1{bottom:166.124470px;}
.yce{bottom:166.124616px;}
.y6c{bottom:166.142573px;}
.ya4{bottom:167.736328px;}
.y43{bottom:167.935542px;}
.y53{bottom:172.552728px;}
.y1d{bottom:175.511681px;}
.y81{bottom:182.595697px;}
.ye0{bottom:184.077597px;}
.ycd{bottom:184.077743px;}
.y6b{bottom:185.039052px;}
.y42{bottom:186.837885px;}
.y52{bottom:191.449214px;}
.y1c{bottom:194.414030px;}
.y80{bottom:201.492183px;}
.ycc{bottom:202.030871px;}
.ydf{bottom:202.036586px;}
.y6a{bottom:203.941401px;}
.ya3{bottom:205.242187px;}
.y41{bottom:205.734375px;}
.y51{bottom:210.351563px;}
.y1b{bottom:213.310520px;}
.yde{bottom:219.989713px;}
.ycb{bottom:219.989859px;}
.y7f{bottom:220.394526px;}
.y69{bottom:222.843747px;}
.y1a{bottom:232.212869px;}
.y40{bottom:236.390625px;}
.ydd{bottom:237.942840px;}
.yca{bottom:237.942959px;}
.y7e{bottom:239.290995px;}
.y19{bottom:251.109359px;}
.y5b{bottom:252.345705px;}
.yc9{bottom:255.896087px;}
.ydc{bottom:255.901829px;}
.y7d{bottom:258.193344px;}
.ya2{bottom:258.943359px;}
.y72{bottom:264.837889px;}
.y5a{bottom:269.144538px;}
.y18{bottom:270.011708px;}
.ydb{bottom:273.854954px;}
.yc8{bottom:273.855075px;}
.y7c{bottom:277.095693px;}
.y71{bottom:281.636721px;}
.ya1{bottom:287.689454px;}
.y17{bottom:288.914057px;}
.y5c{bottom:289.324220px;}
.y59{bottom:290.449220px;}
.yda{bottom:291.808074px;}
.yc7{bottom:291.808202px;}
.y3f{bottom:292.001931px;}
.y7b{bottom:295.992183px;}
.y73{bottom:301.810547px;}
.y70{bottom:302.935546px;}
.y16{bottom:307.810547px;}
.yc6{bottom:309.761329px;}
.yd9{bottom:309.767063px;}
.y3e{bottom:310.898421px;}
.y7a{bottom:314.894526px;}
.yc5{bottom:327.720318px;}
.y3d{bottom:329.800770px;}
.y75{bottom:332.418938px;}
.y79{bottom:333.791010px;}
.y15{bottom:338.466796px;}
.ya0{bottom:343.300766px;}
.yc4{bottom:345.673445px;}
.y3c{bottom:348.703119px;}
.y78{bottom:352.693348px;}
.y9f{bottom:362.203115px;}
.yc3{bottom:363.626572px;}
.y77{bottom:371.595697px;}
.y9e{bottom:381.099605px;}
.y3b{bottom:381.099609px;}
.yc2{bottom:381.585560px;}
.y76{bottom:390.492188px;}
.yc1{bottom:399.538688px;}
.y3a{bottom:400.001948px;}
.y9d{bottom:400.001954px;}
.y14{bottom:407.566397px;}
.yc0{bottom:417.491813px;}
.y39{bottom:418.898433px;}
.y13{bottom:424.365223px;}
.y9c{bottom:430.658204px;}
.ybf{bottom:435.450778px;}
.y38{bottom:437.800770px;}
.y12{bottom:441.164050px;}
.ybe{bottom:453.403906px;}
.y37{bottom:456.703119px;}
.y11{bottom:457.968735px;}
.ybd{bottom:471.357033px;}
.y36{bottom:475.599599px;}
.y10{bottom:479.267568px;}
.y9b{bottom:486.263661px;}
.y88{bottom:488.601564px;}
.ybc{bottom:489.316021px;}
.y35{bottom:494.501948px;}
.yf{bottom:500.566401px;}
.y9a{bottom:505.166010px;}
.y87{bottom:505.406253px;}
.ybb{bottom:507.269148px;}
.ye{bottom:521.865234px;}
.y99{bottom:524.068359px;}
.yba{bottom:525.222275px;}
.y89{bottom:525.580078px;}
.y86{bottom:526.705078px;}
.y34{bottom:526.898417px;}
.yb9{bottom:543.181264px;}
.y33{bottom:545.800766px;}
.y98{bottom:554.718750px;}
.yb8{bottom:561.134391px;}
.y32{bottom:564.703115px;}
.yd{bottom:572.121104px;}
.yb7{bottom:579.087476px;}
.y31{bottom:583.599605px;}
.yc{bottom:585.351568px;}
.yb6{bottom:597.040603px;}
.yb{bottom:598.582032px;}
.y97{bottom:610.330068px;}
.yd8{bottom:611.772000px;}
.yb5{bottom:614.999592px;}
.y30{bottom:616.001943px;}
.ya{bottom:619.535157px;}
.y20{bottom:624.035152px;}
.y96{bottom:629.232417px;}
.yb4{bottom:632.952719px;}
.y2f{bottom:634.898433px;}
.y9{bottom:638.736329px;}
.y1f{bottom:643.236329px;}
.y95{bottom:648.128901px;}
.yb3{bottom:650.905846px;}
.y2e{bottom:653.800765px;}
.y94{bottom:667.031229px;}
.yb2{bottom:668.864834px;}
.y2d{bottom:672.703114px;}
.y8{bottom:681.046879px;}
.y93{bottom:685.927719px;}
.yb1{bottom:686.817962px;}
.y2c{bottom:691.599604px;}
.y50{bottom:697.031253px;}
.yb0{bottom:704.771089px;}
.y2b{bottom:710.501953px;}
.y4f{bottom:711.732421px;}
.y68{bottom:715.763667px;}
.y92{bottom:718.330068px;}
.y7{bottom:718.605480px;}
.yaf{bottom:722.730077px;}
.y4e{bottom:734.302738px;}
.y67{bottom:734.666010px;}
.y91{bottom:737.232417px;}
.yae{bottom:740.683204px;}
.y2a{bottom:741.158204px;}
.y4d{bottom:749.003906px;}
.y66{bottom:753.568326px;}
.y90{bottom:756.128901px;}
.y6{bottom:756.158206px;}
.yad{bottom:758.636331px;}
.y4c{bottom:771.580082px;}
.y8f{bottom:775.031229px;}
.yac{bottom:776.595320px;}
.y56{bottom:784.312500px;}
.y65{bottom:785.964816px;}
.y4b{bottom:786.281250px;}
.y5f{bottom:789.291843px;}
.y5{bottom:793.710931px;}
.y8e{bottom:793.927719px;}
.yab{bottom:794.548447px;}
.y29{bottom:796.763667px;}
.y64{bottom:804.867165px;}
.yaa{bottom:812.501574px;}
.y8d{bottom:812.830068px;}
.y28{bottom:815.666016px;}
.y5e{bottom:819.948093px;}
.y58{bottom:822.884767px;}
.y63{bottom:823.763655px;}
.y25{bottom:827.858579px;}
.ya9{bottom:830.460563px;}
.y4{bottom:831.269532px;}
.y62{bottom:842.666004px;}
.y57{bottom:844.183593px;}
.y8c{bottom:845.232417px;}
.y27{bottom:846.322266px;}
.y61{bottom:861.568353px;}
.y8b{bottom:864.128895px;}
.y60{bottom:880.464843px;}
.y4a{bottom:883.031239px;}
.y8a{bottom:883.031244px;}
.y3{bottom:899.378907px;}
.y49{bottom:901.927730px;}
.y26{bottom:901.927734px;}
.y48{bottom:920.830079px;}
.y2{bottom:939.462894px;}
.y1{bottom:955.212891px;}
.y47{bottom:974.730470px;}
.hf{height:22.963623px;}
.h8{height:26.244141px;}
.h6{height:27.557629px;}
.h9{height:28.048904px;}
.he{height:30.576083px;}
.h1{height:30.617097px;}
.h11{height:31.993163px;}
.h5{height:34.993255px;}
.h10{height:35.391704px;}
.hd{height:35.617086px;}
.h17{height:37.399182px;}
.h1a{height:37.399254px;}
.h1b{height:37.399281px;}
.h19{height:37.399342px;}
.h13{height:39.313477px;}
.h2{height:39.366211px;}
.hb{height:39.366277px;}
.hc{height:39.366295px;}
.h16{height:39.366301px;}
.h14{height:39.366343px;}
.h7{height:52.443023px;}
.h4{height:68.582368px;}
.h3{height:70.420196px;}
.h1c{height:323.191500px;}
.ha{height:841.992000px;}
.h12{height:843.790500px;}
.h18{height:843.885000px;}
.h15{height:846.234000px;}
.h0{height:1020.000000px;}
.w1{width:544.254000px;}
.w0{width:700.500000px;}
.x0{left:0.000000px;}
.x17{left:11.584593px;}
.x18{left:45.000609px;}
.x3{left:78.662109px;}
.x8{left:83.162109px;}
.x11{left:86.537109px;}
.x15{left:90.246093px;}
.x5{left:94.412109px;}
.x4{left:95.537109px;}
.xf{left:102.287087px;}
.x16{left:123.662109px;}
.x12{left:138.287109px;}
.x1{left:140.308593px;}
.x6{left:155.162109px;}
.x13{left:161.789062px;}
.x7{left:174.287109px;}
.x9{left:186.837889px;}
.x2{left:300.164062px;}
.xa{left:303.574216px;}
.xb{left:349.699213px;}
.xc{left:421.476559px;}
.xd{left:455.226562px;}
.x14{left:534.041016px;}
.xe{left:540.972652px;}
.x10{left:590.472655px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.lsb{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.775227pt;}
.lsc{letter-spacing:0.820828pt;}
.ls9{letter-spacing:1.152035pt;}
.lsd{letter-spacing:1.185641pt;}
.ls6{letter-spacing:1.194703pt;}
.ls1{letter-spacing:1.296000pt;}
.ls2{letter-spacing:1.312000pt;}
.lsa{letter-spacing:1.440000pt;}
.ls5{letter-spacing:3.413437pt;}
.ls8{letter-spacing:11.424000pt;}
.ls4{letter-spacing:27.961692pt;}
.ls3{letter-spacing:815.839111pt;}
.ws1{word-spacing:-18.781930pt;}
.ws8{word-spacing:-14.592000pt;}
.ws2{word-spacing:-13.296000pt;}
.wse{word-spacing:-12.631633pt;}
.ws0{word-spacing:-10.340973pt;}
.ws5{word-spacing:-9.341234pt;}
.wsd{word-spacing:-7.756000pt;}
.ws6{word-spacing:0.000000pt;}
.ws7{word-spacing:0.288000pt;}
.wsc{word-spacing:36.884048pt;}
.wsb{word-spacing:68.877599pt;}
.wsa{word-spacing:92.919428pt;}
.ws9{word-spacing:163.626296pt;}
.ws3{word-spacing:273.344000pt;}
.ws4{word-spacing:326.848000pt;}
._22{margin-left:-11.196432pt;}
._1e{margin-left:-8.105993pt;}
._25{margin-left:-6.972516pt;}
._5{margin-left:-5.169680pt;}
._4{margin-left:-4.257500pt;}
._3{margin-left:-2.400137pt;}
._0{margin-left:-0.895969pt;}
._1{width:1.007965pt;}
._2{width:2.314586pt;}
._c{width:3.262942pt;}
._b{width:4.374499pt;}
._9{width:5.472000pt;}
._a{width:7.035074pt;}
._8{width:8.000004pt;}
._7{width:9.025321pt;}
._21{width:9.933053pt;}
._e{width:10.933625pt;}
._d{width:12.296408pt;}
._14{width:14.338372pt;}
._6{width:15.234489pt;}
._1b{width:19.217727pt;}
._20{width:22.590366pt;}
._1f{width:24.050596pt;}
._13{width:25.471934pt;}
._23{width:27.561930pt;}
._1a{width:32.602096pt;}
._15{width:39.982606pt;}
._17{width:47.225020pt;}
._18{width:55.982489pt;}
._16{width:57.912868pt;}
._1c{width:79.991846pt;}
._24{width:102.831524pt;}
._19{width:263.489482pt;}
._1d{width:272.248642pt;}
._10{width:314.208000pt;}
._11{width:326.208000pt;}
._f{width:414.208000pt;}
._12{width:430.208000pt;}
.fs7{font-size:28.000000pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:33.601563pt;}
.fs0{font-size:37.332032pt;}
.fs3{font-size:42.667968pt;}
.fs8{font-size:45.601563pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:62.398437pt;}
.fs2{font-size:81.601563pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:4.025549pt;}
.yd7{bottom:4.025700pt;}
.yd6{bottom:19.984035pt;}
.ye9{bottom:19.989094pt;}
.ye8{bottom:35.947429pt;}
.yd5{bottom:35.947580pt;}
.y23{bottom:41.541662pt;}
.ye7{bottom:51.905764pt;}
.yd4{bottom:51.905915pt;}
.y22{bottom:52.458331pt;}
.y21{bottom:63.380208pt;}
.ye6{bottom:67.864100pt;}
.yd3{bottom:67.864251pt;}
.y74{bottom:78.870667pt;}
.ya8{bottom:80.958667pt;}
.y5d{bottom:81.042667pt;}
.y24{bottom:82.641333pt;}
.y85{bottom:83.104163pt;}
.ye5{bottom:83.827645pt;}
.yd2{bottom:83.827792pt;}
.y6f{bottom:85.281240pt;}
.y46{bottom:86.874991pt;}
.ye4{bottom:99.785980pt;}
.yd1{bottom:99.786121pt;}
.y84{bottom:99.906231pt;}
.ya7{bottom:101.218749pt;}
.y6e{bottom:102.083328pt;}
.y45{bottom:103.677079pt;}
.y55{bottom:107.781235pt;}
.ye3{bottom:115.744315pt;}
.yd0{bottom:115.744457pt;}
.y83{bottom:116.703111pt;}
.ya6{bottom:117.177078pt;}
.y54{bottom:124.578115pt;}
.y6d{bottom:130.880204pt;}
.ycf{bottom:131.702792pt;}
.ye2{bottom:131.707860pt;}
.y44{bottom:132.473949pt;}
.ya5{bottom:133.135413pt;}
.y1e{bottom:139.208295pt;}
.y82{bottom:145.505199pt;}
.ye1{bottom:147.666196pt;}
.yce{bottom:147.666326pt;}
.y6c{bottom:147.682287pt;}
.ya4{bottom:149.098959pt;}
.y43{bottom:149.276037pt;}
.y53{bottom:153.380203pt;}
.y1d{bottom:156.010383pt;}
.y81{bottom:162.307287pt;}
.ye0{bottom:163.624531pt;}
.ycd{bottom:163.624661pt;}
.y6b{bottom:164.479157pt;}
.y42{bottom:166.078120pt;}
.y52{bottom:170.177079pt;}
.y1c{bottom:172.812471pt;}
.y80{bottom:179.104163pt;}
.ycc{bottom:179.582996pt;}
.ydf{bottom:179.588076pt;}
.y6a{bottom:181.281245pt;}
.ya3{bottom:182.437500pt;}
.y41{bottom:182.875000pt;}
.y51{bottom:186.979167pt;}
.y1b{bottom:189.609351pt;}
.yde{bottom:195.546412pt;}
.ycb{bottom:195.546541pt;}
.y7f{bottom:195.906245pt;}
.y69{bottom:198.083331pt;}
.y1a{bottom:206.411439pt;}
.y40{bottom:210.125000pt;}
.ydd{bottom:211.504747pt;}
.yca{bottom:211.504853pt;}
.y7e{bottom:212.703107pt;}
.y19{bottom:223.208319pt;}
.y5b{bottom:224.307294pt;}
.yc9{bottom:227.463188pt;}
.ydc{bottom:227.468292pt;}
.y7d{bottom:229.505195pt;}
.ya2{bottom:230.171875pt;}
.y72{bottom:235.411456pt;}
.y5a{bottom:239.239589pt;}
.y18{bottom:240.010407pt;}
.ydb{bottom:243.426625pt;}
.yc8{bottom:243.426733pt;}
.y7c{bottom:246.307283pt;}
.y71{bottom:250.343752pt;}
.ya1{bottom:255.723959pt;}
.y17{bottom:256.812495pt;}
.y5c{bottom:257.177084pt;}
.y59{bottom:258.177084pt;}
.yda{bottom:259.384955pt;}
.yc7{bottom:259.385068pt;}
.y3f{bottom:259.557272pt;}
.y7b{bottom:263.104163pt;}
.y73{bottom:268.276041pt;}
.y70{bottom:269.276041pt;}
.y16{bottom:273.609375pt;}
.yc6{bottom:275.343404pt;}
.yd9{bottom:275.348500pt;}
.y3e{bottom:276.354152pt;}
.y7a{bottom:279.906245pt;}
.yc5{bottom:291.306949pt;}
.y3d{bottom:293.156240pt;}
.y75{bottom:295.483500pt;}
.y79{bottom:296.703120pt;}
.y15{bottom:300.859375pt;}
.ya0{bottom:305.156236pt;}
.yc4{bottom:307.265284pt;}
.y3c{bottom:309.958328pt;}
.y78{bottom:313.505199pt;}
.y9f{bottom:321.958324pt;}
.yc3{bottom:323.223620pt;}
.y77{bottom:330.307287pt;}
.y9e{bottom:338.755204pt;}
.y3b{bottom:338.755208pt;}
.yc2{bottom:339.187165pt;}
.y76{bottom:347.104167pt;}
.yc1{bottom:355.145500pt;}
.y3a{bottom:355.557287pt;}
.y9d{bottom:355.557292pt;}
.y14{bottom:362.281242pt;}
.yc0{bottom:371.103833pt;}
.y39{bottom:372.354163pt;}
.y13{bottom:377.213532pt;}
.y9c{bottom:382.807292pt;}
.ybf{bottom:387.067359pt;}
.y38{bottom:389.156240pt;}
.y12{bottom:392.145822pt;}
.ybe{bottom:403.025694pt;}
.y37{bottom:405.958328pt;}
.y11{bottom:407.083320pt;}
.ybd{bottom:418.984029pt;}
.y36{bottom:422.755199pt;}
.y10{bottom:426.015616pt;}
.y9b{bottom:432.234365pt;}
.y88{bottom:434.312502pt;}
.ybc{bottom:434.947574pt;}
.y35{bottom:439.557287pt;}
.yf{bottom:444.947912pt;}
.y9a{bottom:449.036453pt;}
.y87{bottom:449.250003pt;}
.ybb{bottom:450.905910pt;}
.ye{bottom:463.880208pt;}
.y99{bottom:465.838541pt;}
.yba{bottom:466.864245pt;}
.y89{bottom:467.182292pt;}
.y86{bottom:468.182292pt;}
.y34{bottom:468.354148pt;}
.yb9{bottom:482.827790pt;}
.y33{bottom:485.156236pt;}
.y98{bottom:493.083333pt;}
.yb8{bottom:498.786125pt;}
.y32{bottom:501.958324pt;}
.yd{bottom:508.552092pt;}
.yb7{bottom:514.744423pt;}
.y31{bottom:518.755204pt;}
.yc{bottom:520.312505pt;}
.yb6{bottom:530.702758pt;}
.yb{bottom:532.072917pt;}
.y97{bottom:542.515616pt;}
.yd8{bottom:543.797333pt;}
.yb5{bottom:546.666304pt;}
.y30{bottom:547.557283pt;}
.ya{bottom:550.697917pt;}
.y20{bottom:554.697913pt;}
.y96{bottom:559.317704pt;}
.yb4{bottom:562.624639pt;}
.y2f{bottom:564.354163pt;}
.y9{bottom:567.765625pt;}
.y1f{bottom:571.765625pt;}
.y95{bottom:576.114579pt;}
.yb3{bottom:578.582974pt;}
.y2e{bottom:581.156236pt;}
.y94{bottom:592.916648pt;}
.yb2{bottom:594.546519pt;}
.y2d{bottom:597.958324pt;}
.y8{bottom:605.375004pt;}
.y93{bottom:609.713528pt;}
.yb1{bottom:610.504855pt;}
.y2c{bottom:614.755204pt;}
.y50{bottom:619.583336pt;}
.yb0{bottom:626.463190pt;}
.y2b{bottom:631.557292pt;}
.y4f{bottom:632.651041pt;}
.y68{bottom:636.234371pt;}
.y92{bottom:638.515616pt;}
.y7{bottom:638.760427pt;}
.yaf{bottom:642.426735pt;}
.y4e{bottom:652.713545pt;}
.y67{bottom:653.036453pt;}
.y91{bottom:655.317704pt;}
.yae{bottom:658.385070pt;}
.y2a{bottom:658.807292pt;}
.y4d{bottom:665.781250pt;}
.y66{bottom:669.838512pt;}
.y90{bottom:672.114579pt;}
.y6{bottom:672.140627pt;}
.yad{bottom:674.343406pt;}
.y4c{bottom:685.848962pt;}
.y8f{bottom:688.916648pt;}
.yac{bottom:690.306951pt;}
.y56{bottom:697.166667pt;}
.y65{bottom:698.635392pt;}
.y4b{bottom:698.916667pt;}
.y5f{bottom:701.592749pt;}
.y5{bottom:705.520828pt;}
.y8e{bottom:705.713528pt;}
.yab{bottom:706.265286pt;}
.y29{bottom:708.234371pt;}
.y64{bottom:715.437480pt;}
.yaa{bottom:722.223621pt;}
.y8d{bottom:722.515616pt;}
.y28{bottom:725.036459pt;}
.y5e{bottom:728.842749pt;}
.y58{bottom:731.453127pt;}
.y63{bottom:732.234360pt;}
.y25{bottom:735.874292pt;}
.ya9{bottom:738.187167pt;}
.y4{bottom:738.906251pt;}
.y62{bottom:749.036448pt;}
.y57{bottom:750.385416pt;}
.y8c{bottom:751.317704pt;}
.y27{bottom:752.286459pt;}
.y61{bottom:765.838536pt;}
.y8b{bottom:768.114573pt;}
.y60{bottom:782.635416pt;}
.y4a{bottom:784.916657pt;}
.y8a{bottom:784.916661pt;}
.y3{bottom:799.447917pt;}
.y49{bottom:801.713537pt;}
.y26{bottom:801.713541pt;}
.y48{bottom:818.515625pt;}
.y2{bottom:835.078128pt;}
.y1{bottom:849.078125pt;}
.y47{bottom:866.427084pt;}
.hf{height:20.412109pt;}
.h8{height:23.328125pt;}
.h6{height:24.495670pt;}
.h9{height:24.932359pt;}
.he{height:27.178740pt;}
.h1{height:27.215197pt;}
.h11{height:28.438367pt;}
.h5{height:31.105115pt;}
.h10{height:31.459293pt;}
.hd{height:31.659632pt;}
.h17{height:33.243717pt;}
.h1a{height:33.243782pt;}
.h1b{height:33.243805pt;}
.h19{height:33.243859pt;}
.h13{height:34.945312pt;}
.h2{height:34.992188pt;}
.hb{height:34.992246pt;}
.hc{height:34.992262pt;}
.h16{height:34.992268pt;}
.h14{height:34.992305pt;}
.h7{height:46.616020pt;}
.h4{height:60.962105pt;}
.h3{height:62.595730pt;}
.h1c{height:287.281333pt;}
.ha{height:748.437333pt;}
.h12{height:750.036000pt;}
.h18{height:750.120000pt;}
.h15{height:752.208000pt;}
.h0{height:906.666667pt;}
.w1{width:483.781333pt;}
.w0{width:622.666667pt;}
.x0{left:0.000000pt;}
.x17{left:10.297416pt;}
.x18{left:40.000541pt;}
.x3{left:69.921875pt;}
.x8{left:73.921875pt;}
.x11{left:76.921875pt;}
.x15{left:80.218749pt;}
.x5{left:83.921875pt;}
.x4{left:84.921875pt;}
.xf{left:90.921855pt;}
.x16{left:109.921874pt;}
.x12{left:122.921875pt;}
.x1{left:124.718749pt;}
.x6{left:137.921875pt;}
.x13{left:143.812500pt;}
.x7{left:154.921875pt;}
.x9{left:166.078124pt;}
.x2{left:266.812500pt;}
.xa{left:269.843748pt;}
.xb{left:310.843745pt;}
.xc{left:374.645831pt;}
.xd{left:404.645833pt;}
.x14{left:474.703125pt;}
.xe{left:480.864580pt;}
.x10{left:524.864583pt;}
}




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