
    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_989bea7cd789deb6703ea190.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2cfafcf71ccba167b62589a3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0519a2afe7651f7de322aea5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.926270;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_058ae759adbf2fb8f5b3db2f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_85da95e65bc11ccbee7cded3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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);}
.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;}
}
.ws3{word-spacing:-18.336914px;}
.ws0{word-spacing:-16.669921px;}
.ws1{word-spacing:-13.564453px;}
.ws2{word-spacing:0.000000px;}
._0{margin-left:-9.339201px;}
._4{margin-left:-5.343429px;}
._5{margin-left:-3.566466px;}
._2{margin-left:-2.271586px;}
._1{margin-left:-1.018831px;}
._3{width:1.425923px;}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(67,67,67);}
.fs3{font-size:59.999999px;}
.fs4{font-size:66.000002px;}
.fs0{font-size:83.999997px;}
.fs2{font-size:90.000000px;}
.fs1{font-size:156.000006px;}
.y0{bottom:0.000000px;}
.y9f{bottom:9.140625px;}
.y7{bottom:9.140968px;}
.y9{bottom:9.140991px;}
.y82{bottom:9.141357px;}
.yef{bottom:9.717036px;}
.ydd{bottom:9.717041px;}
.y101{bottom:9.717051px;}
.y8b{bottom:9.717402px;}
.y86{bottom:9.717408px;}
.y94{bottom:9.717411px;}
.yd4{bottom:9.717767px;}
.ya6{bottom:9.717768px;}
.yc0{bottom:9.717771px;}
.yb5{bottom:9.717773px;}
.y88{bottom:9.717774px;}
.y8e{bottom:9.717777px;}
.ycf{bottom:9.717783px;}
.y10a{bottom:9.718506px;}
.y108{bottom:9.718518px;}
.y77{bottom:9.871225px;}
.y67{bottom:9.871393px;}
.y3d{bottom:9.871491px;}
.yb{bottom:9.871560px;}
.y2b{bottom:9.871570px;}
.y13{bottom:9.871576px;}
.y32{bottom:9.871579px;}
.y10{bottom:9.871582px;}
.y1b{bottom:9.871585px;}
.y5f{bottom:9.871587px;}
.y28{bottom:9.871591px;}
.ye{bottom:9.871614px;}
.y20{bottom:9.871627px;}
.y3b{bottom:9.871668px;}
.y74{bottom:9.871948px;}
.y99{bottom:14.072020px;}
.y2{bottom:14.072386px;}
.y84{bottom:28.976806px;}
.y76{bottom:30.928346px;}
.y66{bottom:30.928529px;}
.y50{bottom:30.928700px;}
.y1a{bottom:30.928706px;}
.y12{bottom:30.928712px;}
.y31{bottom:30.928714px;}
.y22{bottom:30.928720px;}
.yd{bottom:30.928734px;}
.y3a{bottom:30.928803px;}
.yd3{bottom:31.536617px;}
.y93{bottom:31.536621px;}
.yfc{bottom:31.536623px;}
.y8a{bottom:31.536987px;}
.ya5{bottom:31.537353px;}
.y30{bottom:51.985835px;}
.y19{bottom:51.985841px;}
.yeb{bottom:53.356191px;}
.yd2{bottom:53.356202px;}
.y2f{bottom:73.042969px;}
.yea{bottom:75.175776px;}
.ye9{bottom:96.995361px;}
.y2e{bottom:109.618839px;}
.yfa{bottom:110.827880px;}
.yf9{bottom:110.827887px;}
.ydf{bottom:133.508059px;}
.yf5{bottom:135.799810px;}
.y2d{bottom:141.204531px;}
.yc6{bottom:146.137940px;}
.yc5{bottom:146.137943px;}
.y57{bottom:148.164186px;}
.y7e{bottom:160.355352px;}
.y7d{bottom:170.883906px;}
.yde{bottom:178.508060px;}
.y56{bottom:184.005252px;}
.yf8{bottom:194.077880px;}
.yf7{bottom:194.077882px;}
.y55{bottom:194.533806px;}
.yd8{bottom:200.549558px;}
.ydc{bottom:208.202643px;}
.yc4{bottom:210.262940px;}
.yc3{bottom:210.262943px;}
.y7c{bottom:210.344598px;}
.y2c{bottom:212.568786px;}
.y7b{bottom:231.401736px;}
.y54{bottom:233.994507px;}
.ydb{bottom:237.896479px;}
.yda{bottom:237.896485px;}
.y53{bottom:244.523076px;}
.yf6{bottom:245.591315px;}
.y2a{bottom:252.347358px;}
.ybc{bottom:257.173099px;}
.y29{bottom:273.404481px;}
.yc2{bottom:274.387940px;}
.yf4{bottom:275.285885px;}
.y7a{bottom:281.390991px;}
.y52{bottom:283.983762px;}
.yd9{bottom:289.410650px;}
.y51{bottom:294.512331px;}
.y4b{bottom:305.651554px;}
.y79{bottom:310.323117px;}
.yd7{bottom:319.105220px;}
.yd6{bottom:319.105227px;}
.yc1{bottom:319.387940px;}
.ybf{bottom:319.387943px;}
.yf3{bottom:320.285885px;}
.yf2{bottom:320.285891px;}
.y78{bottom:320.851686px;}
.y6e{bottom:321.462530px;}
.y10b{bottom:327.072509px;}
.y27{bottom:328.774107px;}
.y4f{bottom:333.973029px;}
.yed{bottom:338.389897px;}
.y1c{bottom:338.629399px;}
.y107{bottom:343.674311px;}
.y109{bottom:343.674323px;}
.y4e{bottom:344.501583px;}
.y75{bottom:360.312738px;}
.y73{bottom:370.840575px;}
.ybe{bottom:370.901360px;}
.yf1{bottom:371.800055px;}
.y26{bottom:384.143742px;}
.y25{bottom:394.672296px;}
.y105{bottom:395.188478px;}
.y106{bottom:395.189208px;}
.yf0{bottom:401.494623px;}
.yee{bottom:401.494627px;}
.y72{bottom:410.301642px;}
.ybd{bottom:415.901360px;}
.yce{bottom:418.223140px;}
.y71{bottom:420.830196px;}
.yd5{bottom:421.480220px;}
.yd1{bottom:421.480227px;}
.y4d{bottom:432.985476px;}
.y24{bottom:434.132988px;}
.y103{bottom:446.701900px;}
.y104{bottom:446.701909px;}
.yec{bottom:453.008060px;}
.ye8{bottom:453.008063px;}
.y23{bottom:455.190081px;}
.y70{bottom:460.290897px;}
.ybb{bottom:460.901360px;}
.y4c{bottom:468.826536px;}
.y6f{bottom:470.819451px;}
.yfd{bottom:486.417485px;}
.y4a{bottom:497.758662px;}
.y21{bottom:505.179378px;}
.yba{bottom:505.901359px;}
.yb9{bottom:505.901365px;}
.y49{bottom:508.287231px;}
.y100{bottom:510.827632px;}
.y102{bottom:510.827643px;}
.y6d{bottom:515.660517px;}
.yd0{bottom:523.855220px;}
.y6c{bottom:526.189086px;}
.y1f{bottom:526.236471px;}
.y48{bottom:547.747923px;}
.yb8{bottom:557.415530px;}
.yff{bottom:562.341065px;}
.yfe{bottom:562.341071px;}
.yb3{bottom:565.068604px;}
.y47{bottom:568.805061px;}
.ycd{bottom:568.855219px;}
.y6b{bottom:571.030158px;}
.ye7{bottom:575.633059px;}
.y6a{bottom:581.558712px;}
.y1e{bottom:590.606142px;}
.y9d{bottom:593.230964px;}
.y97{bottom:598.672849px;}
.y1d{bottom:601.134711px;}
.yb7{bottom:602.415530px;}
.ye0{bottom:603.862057px;}
.ye6{bottom:605.327643px;}
.ycc{bottom:613.855219px;}
.ycb{bottom:613.855223px;}
.y9c{bottom:615.050340px;}
.y46{bottom:618.794307px;}
.y40{bottom:619.404964px;}
.y45{bottom:629.322876px;}
.ye5{bottom:635.021479px;}
.y69{bottom:642.076533px;}
.y96{bottom:643.495610px;}
.yae{bottom:646.277345px;}
.yb6{bottom:647.415526px;}
.yb4{bottom:647.415528px;}
.y18{bottom:654.975768px;}
.y62{bottom:658.363954px;}
.yfb{bottom:658.855224px;}
.y68{bottom:663.133671px;}
.y44{bottom:668.783562px;}
.y92{bottom:673.190182px;}
.y95{bottom:673.190185px;}
.yac{bottom:675.971918px;}
.yad{bottom:675.971921px;}
.y17{bottom:676.032891px;}
.yca{bottom:677.980224px;}
.yc9{bottom:677.980225px;}
.y43{bottom:679.312131px;}
.ye4{bottom:680.021484px;}
.ye3{bottom:680.021485px;}
.yb2{bottom:698.929688px;}
.y65{bottom:713.123115px;}
.y42{bottom:718.772832px;}
.y91{bottom:724.703614px;}
.y16{bottom:726.022161px;}
.yab{bottom:727.485350px;}
.yaa{bottom:727.485356px;}
.y41{bottom:729.301386px;}
.ye2{bottom:731.535643px;}
.yb1{bottom:732.982911px;}
.yc8{bottom:742.105224px;}
.yc7{bottom:742.105225px;}
.y15{bottom:754.954287px;}
.ye1{bottom:761.230224px;}
.yb0{bottom:762.532468px;}
.y64{bottom:763.112178px;}
.y14{bottom:765.482856px;}
.y8{bottom:766.093504px;}
.y90{bottom:769.703614px;}
.y3f{bottom:771.085329px;}
.ya8{bottom:778.999508px;}
.ya9{bottom:778.999511px;}
.y63{bottom:784.169316px;}
.y8d{bottom:799.398196px;}
.y8f{bottom:799.398199px;}
.y3e{bottom:802.671021px;}
.y11{bottom:804.943542px;}
.yaf{bottom:806.230224px;}
.yf{bottom:815.472111px;}
.ya7{bottom:830.512939px;}
.ya4{bottom:830.512946px;}
.y61{bottom:834.158568px;}
.y8c{bottom:850.911986px;}
.y89{bottom:850.911991px;}
.y36{bottom:853.270939px;}
.yc{bottom:854.932774px;}
.y60{bottom:855.215691px;}
.ya{bottom:865.461388px;}
.y39{bottom:865.511996px;}
.y3c{bottom:876.040747px;}
.ya2{bottom:882.027098px;}
.ya3{bottom:882.027100px;}
.y87{bottom:902.425774px;}
.y6{bottom:904.922082px;}
.y5e{bottom:905.204956px;}
.y37{bottom:915.501342px;}
.y38{bottom:926.029907px;}
.y5d{bottom:926.262086px;}
.y85{bottom:932.120361px;}
.ya1{bottom:933.540526px;}
.y58{bottom:941.338806px;}
.y5{bottom:946.705260px;}
.ya0{bottom:963.235107px;}
.y83{bottom:964.478760px;}
.y35{bottom:965.490600px;}
.y81{bottom:974.396484px;}
.y34{bottom:976.019164px;}
.y5c{bottom:976.251342px;}
.y5b{bottom:986.779907px;}
.y9e{bottom:992.929688px;}
.y4{bottom:999.052001px;}
.y5a{bottom:1026.240600px;}
.y9b{bottom:1026.982911px;}
.y80{bottom:1028.761962px;}
.y33{bottom:1031.388794px;}
.y59{bottom:1036.769164px;}
.y3{bottom:1039.648317px;}
.y7f{bottom:1056.532103px;}
.y9a{bottom:1056.532469px;}
.y1{bottom:1076.229858px;}
.y98{bottom:1076.230224px;}
.h1d{height:26.585449px;}
.h5{height:26.585793px;}
.h7{height:26.585815px;}
.h15{height:26.586181px;}
.h11{height:27.807037px;}
.h8{height:27.807107px;}
.hb{height:27.807129px;}
.he{height:27.807174px;}
.h13{height:27.807495px;}
.h21{height:28.568847px;}
.h17{height:28.569215px;}
.h19{height:28.569581px;}
.h23{height:28.570312px;}
.ha{height:43.066405px;}
.h6{height:43.681640px;}
.h16{height:46.421631px;}
.h18{height:48.049806px;}
.h14{height:48.863892px;}
.h12{height:48.864075px;}
.hc{height:48.864258px;}
.h9{height:48.864281px;}
.h10{height:48.864350px;}
.h1b{height:50.388428px;}
.h1a{height:50.388794px;}
.h1e{height:50.389160px;}
.h2{height:61.154295px;}
.h4{height:64.423828px;}
.hd{height:69.921387px;}
.h20{height:72.208008px;}
.hf{height:90.978516px;}
.h1c{height:111.769776px;}
.h1{height:111.770142px;}
.h3{height:113.572270px;}
.h22{height:115.847167px;}
.h1f{height:918.000000px;}
.h0{height:1188.000000px;}
.wf{width:67.500000px;}
.wb{width:73.125000px;}
.wa{width:75.375000px;}
.w9{width:77.625000px;}
.w8{width:78.750000px;}
.w10{width:79.875000px;}
.w7{width:100.125000px;}
.wd{width:101.250000px;}
.w5{width:105.750000px;}
.w6{width:123.750000px;}
.w4{width:137.250000px;}
.w1{width:144.000000px;}
.we{width:157.500000px;}
.w2{width:249.750000px;}
.w3{width:293.625000px;}
.w0{width:918.000000px;}
.wc{width:1188.000000px;}
.x0{left:0.000000px;}
.x9{left:2.250000px;}
.xb{left:5.197486px;}
.x35{left:6.472801px;}
.x3a{left:7.911916px;}
.x26{left:10.054258px;}
.xc{left:11.431592px;}
.x3e{left:12.943740px;}
.x12{left:14.827114px;}
.x1a{left:16.165833px;}
.x37{left:17.297433px;}
.x17{left:19.507410px;}
.x1d{left:20.900785px;}
.x24{left:22.152746px;}
.xe{left:23.519179px;}
.x13{left:25.640768px;}
.xd{left:27.282357px;}
.x3f{left:28.534344px;}
.xa{left:31.027254px;}
.x8{left:33.106501px;}
.x10{left:34.728333px;}
.x3{left:38.103333px;}
.x15{left:40.682022px;}
.x16{left:45.267019px;}
.x27{left:47.865012px;}
.x2e{left:49.089626px;}
.x2d{left:51.410007px;}
.x19{left:54.000000px;}
.x29{left:55.910007px;}
.x2c{left:57.035007px;}
.x3c{left:58.160007px;}
.x3d{left:59.384622px;}
.x2b{left:60.580003px;}
.x2a{left:62.830003px;}
.x28{left:66.205004px;}
.x3b{left:67.330004px;}
.x5{left:77.649788px;}
.x7{left:105.008749px;}
.x1{left:108.000000px;}
.x2{left:109.125000px;}
.x1b{left:155.250000px;}
.x2f{left:211.500000px;}
.x1c{left:235.125000px;}
.x4{left:254.250000px;}
.xf{left:274.500000px;}
.x18{left:282.375000px;}
.x1e{left:315.000000px;}
.x30{left:370.125000px;}
.x1f{left:393.750000px;}
.x11{left:412.875000px;}
.x31{left:438.750000px;}
.x20{left:470.250000px;}
.x6{left:505.125000px;}
.x14{left:519.750000px;}
.x21{left:546.750000px;}
.x32{left:600.750000px;}
.x22{left:621.000000px;}
.x33{left:681.750000px;}
.x23{left:697.500000px;}
.x34{left:762.750000px;}
.x25{left:777.375000px;}
.x36{left:843.750000px;}
.x38{left:924.750000px;}
.x39{left:1005.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws3{word-spacing:-16.299479pt;}
.ws0{word-spacing:-14.817708pt;}
.ws1{word-spacing:-12.057291pt;}
.ws2{word-spacing:0.000000pt;}
._0{margin-left:-8.301512pt;}
._4{margin-left:-4.749715pt;}
._5{margin-left:-3.170192pt;}
._2{margin-left:-2.019188pt;}
._1{margin-left:-0.905627pt;}
._3{width:1.267487pt;}
.fs3{font-size:53.333332pt;}
.fs4{font-size:58.666668pt;}
.fs0{font-size:74.666664pt;}
.fs2{font-size:80.000000pt;}
.fs1{font-size:138.666672pt;}
.y0{bottom:0.000000pt;}
.y9f{bottom:8.125000pt;}
.y7{bottom:8.125305pt;}
.y9{bottom:8.125325pt;}
.y82{bottom:8.125651pt;}
.yef{bottom:8.637365pt;}
.ydd{bottom:8.637369pt;}
.y101{bottom:8.637379pt;}
.y8b{bottom:8.637691pt;}
.y86{bottom:8.637696pt;}
.y94{bottom:8.637699pt;}
.yd4{bottom:8.638015pt;}
.ya6{bottom:8.638016pt;}
.yc0{bottom:8.638019pt;}
.yb5{bottom:8.638020pt;}
.y88{bottom:8.638021pt;}
.y8e{bottom:8.638024pt;}
.ycf{bottom:8.638029pt;}
.y10a{bottom:8.638672pt;}
.y108{bottom:8.638683pt;}
.y77{bottom:8.774423pt;}
.y67{bottom:8.774572pt;}
.y3d{bottom:8.774659pt;}
.yb{bottom:8.774720pt;}
.y2b{bottom:8.774729pt;}
.y13{bottom:8.774735pt;}
.y32{bottom:8.774737pt;}
.y10{bottom:8.774740pt;}
.y1b{bottom:8.774743pt;}
.y5f{bottom:8.774744pt;}
.y28{bottom:8.774748pt;}
.ye{bottom:8.774768pt;}
.y20{bottom:8.774780pt;}
.y3b{bottom:8.774816pt;}
.y74{bottom:8.775065pt;}
.y99{bottom:12.508462pt;}
.y2{bottom:12.508787pt;}
.y84{bottom:25.757161pt;}
.y76{bottom:27.491863pt;}
.y66{bottom:27.492025pt;}
.y50{bottom:27.492177pt;}
.y1a{bottom:27.492183pt;}
.y12{bottom:27.492188pt;}
.y31{bottom:27.492191pt;}
.y22{bottom:27.492196pt;}
.yd{bottom:27.492208pt;}
.y3a{bottom:27.492269pt;}
.yd3{bottom:28.032548pt;}
.y93{bottom:28.032552pt;}
.yfc{bottom:28.032553pt;}
.y8a{bottom:28.032877pt;}
.ya5{bottom:28.033203pt;}
.y30{bottom:46.209631pt;}
.y19{bottom:46.209636pt;}
.yeb{bottom:47.427725pt;}
.yd2{bottom:47.427735pt;}
.y2f{bottom:64.927084pt;}
.yea{bottom:66.822912pt;}
.ye9{bottom:86.218099pt;}
.y2e{bottom:97.438968pt;}
.yfa{bottom:98.513671pt;}
.yf9{bottom:98.513677pt;}
.ydf{bottom:118.673831pt;}
.yf5{bottom:120.710943pt;}
.y2d{bottom:125.515139pt;}
.yc6{bottom:129.900391pt;}
.yc5{bottom:129.900393pt;}
.y57{bottom:131.701499pt;}
.y7e{bottom:142.538091pt;}
.y7d{bottom:151.896805pt;}
.yde{bottom:158.673831pt;}
.y56{bottom:163.560224pt;}
.yf8{bottom:172.513671pt;}
.yf7{bottom:172.513673pt;}
.y55{bottom:172.918939pt;}
.yd8{bottom:178.266273pt;}
.ydc{bottom:185.069016pt;}
.yc4{bottom:186.900391pt;}
.yc3{bottom:186.900393pt;}
.y7c{bottom:186.972976pt;}
.y2c{bottom:188.950032pt;}
.y7b{bottom:205.690432pt;}
.y54{bottom:207.995117pt;}
.ydb{bottom:211.463537pt;}
.yda{bottom:211.463543pt;}
.y53{bottom:217.353845pt;}
.yf6{bottom:218.303391pt;}
.y2a{bottom:224.308763pt;}
.ybc{bottom:228.598311pt;}
.y29{bottom:243.026205pt;}
.yc2{bottom:243.900391pt;}
.yf4{bottom:244.698564pt;}
.y7a{bottom:250.125325pt;}
.y52{bottom:252.430011pt;}
.yd9{bottom:257.253911pt;}
.y51{bottom:261.788739pt;}
.y4b{bottom:271.690271pt;}
.y79{bottom:275.842771pt;}
.yd7{bottom:283.649084pt;}
.yd6{bottom:283.649091pt;}
.yc1{bottom:283.900391pt;}
.ybf{bottom:283.900393pt;}
.yf3{bottom:284.698564pt;}
.yf2{bottom:284.698569pt;}
.y78{bottom:285.201499pt;}
.y6e{bottom:285.744471pt;}
.y10b{bottom:290.731119pt;}
.y27{bottom:292.243651pt;}
.y4f{bottom:296.864915pt;}
.yed{bottom:300.791020pt;}
.y1c{bottom:301.003911pt;}
.y107{bottom:305.488276pt;}
.y109{bottom:305.488287pt;}
.y4e{bottom:306.223629pt;}
.y75{bottom:320.277989pt;}
.y73{bottom:329.636067pt;}
.ybe{bottom:329.690097pt;}
.yf1{bottom:330.488937pt;}
.y26{bottom:341.461104pt;}
.y25{bottom:350.819819pt;}
.y105{bottom:351.278647pt;}
.y106{bottom:351.279296pt;}
.yf0{bottom:356.884109pt;}
.yee{bottom:356.884113pt;}
.y72{bottom:364.712571pt;}
.ybd{bottom:369.690097pt;}
.yce{bottom:371.753903pt;}
.y71{bottom:374.071285pt;}
.yd5{bottom:374.649084pt;}
.yd1{bottom:374.649091pt;}
.y4d{bottom:384.875979pt;}
.y24{bottom:385.895989pt;}
.y103{bottom:397.068356pt;}
.y104{bottom:397.068364pt;}
.yec{bottom:402.673831pt;}
.ye8{bottom:402.673833pt;}
.y23{bottom:404.613405pt;}
.y70{bottom:409.147464pt;}
.ybb{bottom:409.690097pt;}
.y4c{bottom:416.734699pt;}
.y6f{bottom:418.506179pt;}
.yfd{bottom:432.371097pt;}
.y4a{bottom:442.452144pt;}
.y21{bottom:449.048336pt;}
.yba{bottom:449.690097pt;}
.yb9{bottom:449.690103pt;}
.y49{bottom:451.810872pt;}
.y100{bottom:454.069007pt;}
.y102{bottom:454.069016pt;}
.y6d{bottom:458.364904pt;}
.yd0{bottom:465.649084pt;}
.y6c{bottom:467.723632pt;}
.y1f{bottom:467.765752pt;}
.y48{bottom:486.887043pt;}
.yb8{bottom:495.480471pt;}
.yff{bottom:499.858724pt;}
.yfe{bottom:499.858729pt;}
.yb3{bottom:502.283204pt;}
.y47{bottom:505.604499pt;}
.ycd{bottom:505.649084pt;}
.y6b{bottom:507.582363pt;}
.ye7{bottom:511.673831pt;}
.y6a{bottom:516.941077pt;}
.y1e{bottom:524.983237pt;}
.y9d{bottom:527.316412pt;}
.y97{bottom:532.153643pt;}
.y1d{bottom:534.341965pt;}
.yb7{bottom:535.480471pt;}
.ye0{bottom:536.766273pt;}
.ye6{bottom:538.069016pt;}
.ycc{bottom:545.649084pt;}
.ycb{bottom:545.649087pt;}
.y9c{bottom:546.711414pt;}
.y46{bottom:550.039384pt;}
.y40{bottom:550.582191pt;}
.y45{bottom:559.398112pt;}
.ye5{bottom:564.463537pt;}
.y69{bottom:570.734696pt;}
.y96{bottom:571.996097pt;}
.yae{bottom:574.468751pt;}
.yb6{bottom:575.480468pt;}
.yb4{bottom:575.480469pt;}
.y18{bottom:582.200683pt;}
.y62{bottom:585.212404pt;}
.yfb{bottom:585.649088pt;}
.y68{bottom:589.452152pt;}
.y44{bottom:594.474277pt;}
.y92{bottom:598.391273pt;}
.y95{bottom:598.391276pt;}
.yac{bottom:600.863927pt;}
.yad{bottom:600.863929pt;}
.y17{bottom:600.918125pt;}
.yca{bottom:602.649088pt;}
.yc9{bottom:602.649089pt;}
.y43{bottom:603.833005pt;}
.ye4{bottom:604.463541pt;}
.ye3{bottom:604.463543pt;}
.yb2{bottom:621.270833pt;}
.y65{bottom:633.887213pt;}
.y42{bottom:638.909184pt;}
.y91{bottom:644.180991pt;}
.y16{bottom:645.353032pt;}
.yab{bottom:646.653644pt;}
.yaa{bottom:646.653649pt;}
.y41{bottom:648.267899pt;}
.ye2{bottom:650.253905pt;}
.yb1{bottom:651.540365pt;}
.yc8{bottom:659.649088pt;}
.yc7{bottom:659.649089pt;}
.y15{bottom:671.070477pt;}
.ye1{bottom:676.649088pt;}
.yb0{bottom:677.806638pt;}
.y64{bottom:678.321936pt;}
.y14{bottom:680.429205pt;}
.y8{bottom:680.972004pt;}
.y90{bottom:684.180991pt;}
.y3f{bottom:685.409181pt;}
.ya8{bottom:692.444007pt;}
.ya9{bottom:692.444009pt;}
.y63{bottom:697.039392pt;}
.y8d{bottom:710.576175pt;}
.y8f{bottom:710.576177pt;}
.y3e{bottom:713.485352pt;}
.y11{bottom:715.505371pt;}
.yaf{bottom:716.649088pt;}
.yf{bottom:724.864099pt;}
.ya7{bottom:738.233724pt;}
.ya4{bottom:738.233729pt;}
.y61{bottom:741.474283pt;}
.y8c{bottom:756.366209pt;}
.y89{bottom:756.366215pt;}
.y36{bottom:758.463057pt;}
.yc{bottom:759.940244pt;}
.y60{bottom:760.191725pt;}
.ya{bottom:769.299012pt;}
.y39{bottom:769.343996pt;}
.y3c{bottom:778.702887pt;}
.ya2{bottom:784.024087pt;}
.ya3{bottom:784.024089pt;}
.y87{bottom:802.156244pt;}
.y6{bottom:804.375184pt;}
.y5e{bottom:804.626628pt;}
.y37{bottom:813.778971pt;}
.y38{bottom:823.137695pt;}
.y5d{bottom:823.344076pt;}
.y85{bottom:828.551432pt;}
.ya1{bottom:829.813801pt;}
.y58{bottom:836.745605pt;}
.y5{bottom:841.515787pt;}
.ya0{bottom:856.208984pt;}
.y83{bottom:857.314453pt;}
.y35{bottom:858.213867pt;}
.y81{bottom:866.130208pt;}
.y34{bottom:867.572591pt;}
.y5c{bottom:867.778971pt;}
.y5b{bottom:877.137695pt;}
.y9e{bottom:882.604167pt;}
.y4{bottom:888.046223pt;}
.y5a{bottom:912.213867pt;}
.y9b{bottom:912.873699pt;}
.y80{bottom:914.455077pt;}
.y33{bottom:916.790039pt;}
.y59{bottom:921.572591pt;}
.y3{bottom:924.131837pt;}
.y7f{bottom:939.139647pt;}
.y9a{bottom:939.139972pt;}
.y1{bottom:956.648763pt;}
.y98{bottom:956.649088pt;}
.h1d{height:23.631511pt;}
.h5{height:23.631816pt;}
.h7{height:23.631836pt;}
.h15{height:23.632161pt;}
.h11{height:24.717367pt;}
.h8{height:24.717428pt;}
.hb{height:24.717448pt;}
.he{height:24.717488pt;}
.h13{height:24.717773pt;}
.h21{height:25.394531pt;}
.h17{height:25.394857pt;}
.h19{height:25.395183pt;}
.h23{height:25.395833pt;}
.ha{height:38.281249pt;}
.h6{height:38.828124pt;}
.h16{height:41.263672pt;}
.h18{height:42.710938pt;}
.h14{height:43.434571pt;}
.h12{height:43.434733pt;}
.hc{height:43.434896pt;}
.h9{height:43.434916pt;}
.h10{height:43.434977pt;}
.h1b{height:44.789713pt;}
.h1a{height:44.790039pt;}
.h1e{height:44.790364pt;}
.h2{height:54.359373pt;}
.h4{height:57.265625pt;}
.hd{height:62.152344pt;}
.h20{height:64.184896pt;}
.hf{height:80.869792pt;}
.h1c{height:99.350912pt;}
.h1{height:99.351237pt;}
.h3{height:100.953129pt;}
.h22{height:102.975260pt;}
.h1f{height:816.000000pt;}
.h0{height:1056.000000pt;}
.wf{width:60.000000pt;}
.wb{width:65.000000pt;}
.wa{width:67.000000pt;}
.w9{width:69.000000pt;}
.w8{width:70.000000pt;}
.w10{width:71.000000pt;}
.w7{width:89.000000pt;}
.wd{width:90.000000pt;}
.w5{width:94.000000pt;}
.w6{width:110.000000pt;}
.w4{width:122.000000pt;}
.w1{width:128.000000pt;}
.we{width:140.000000pt;}
.w2{width:222.000000pt;}
.w3{width:261.000000pt;}
.w0{width:816.000000pt;}
.wc{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x9{left:2.000000pt;}
.xb{left:4.619988pt;}
.x35{left:5.753601pt;}
.x3a{left:7.032814pt;}
.x26{left:8.937118pt;}
.xc{left:10.161415pt;}
.x3e{left:11.505547pt;}
.x12{left:13.179657pt;}
.x1a{left:14.369629pt;}
.x37{left:15.375496pt;}
.x17{left:17.339920pt;}
.x1d{left:18.578476pt;}
.x24{left:19.691330pt;}
.xe{left:20.905937pt;}
.x13{left:22.791794pt;}
.xd{left:24.250984pt;}
.x3f{left:25.363861pt;}
.xa{left:27.579781pt;}
.x8{left:29.428001pt;}
.x10{left:30.869629pt;}
.x3{left:33.869629pt;}
.x15{left:36.161797pt;}
.x16{left:40.237350pt;}
.x27{left:42.546677pt;}
.x2e{left:43.635223pt;}
.x2d{left:45.697784pt;}
.x19{left:48.000000pt;}
.x29{left:49.697784pt;}
.x2c{left:50.697784pt;}
.x3c{left:51.697784pt;}
.x3d{left:52.786331pt;}
.x2b{left:53.848892pt;}
.x2a{left:55.848892pt;}
.x28{left:58.848892pt;}
.x3b{left:59.848892pt;}
.x5{left:69.022034pt;}
.x7{left:93.341110pt;}
.x1{left:96.000000pt;}
.x2{left:97.000000pt;}
.x1b{left:138.000000pt;}
.x2f{left:188.000000pt;}
.x1c{left:209.000000pt;}
.x4{left:226.000000pt;}
.xf{left:244.000000pt;}
.x18{left:251.000000pt;}
.x1e{left:280.000000pt;}
.x30{left:329.000000pt;}
.x1f{left:350.000000pt;}
.x11{left:367.000000pt;}
.x31{left:390.000000pt;}
.x20{left:418.000000pt;}
.x6{left:449.000000pt;}
.x14{left:462.000000pt;}
.x21{left:486.000000pt;}
.x32{left:534.000000pt;}
.x22{left:552.000000pt;}
.x33{left:606.000000pt;}
.x23{left:620.000000pt;}
.x34{left:678.000000pt;}
.x25{left:691.000000pt;}
.x36{left:750.000000pt;}
.x38{left:822.000000pt;}
.x39{left:894.000000pt;}
}




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