
    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_d1c6deea50cedf699d17ae75.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b7a41913f72261c85d7fa462.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_c858ace114a7806eeeb4c199.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_eb7161034624b0de809fc73c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_81a162d50bdf8b2dcb42c155.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_9749bc002526d16cf6053e9f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-22.729864px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.275838px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:13.477349px;}
.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:-20.964764px;}
.ws3{word-spacing:-17.969798px;}
.ws2{word-spacing:-16.472316px;}
.ws5{word-spacing:-14.974832px;}
.ws0{word-spacing:-10.781879px;}
.ws4{word-spacing:-8.984899px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-12.892629px;}
._1a{margin-left:-7.967081px;}
._0{margin-left:-6.881649px;}
._2{margin-left:-5.755976px;}
._16{margin-left:-3.966375px;}
._1{margin-left:-2.249459px;}
._7{margin-left:-1.002128px;}
._4{width:4.309181px;}
._c{width:5.385472px;}
._5{width:8.713232px;}
._8{width:9.747929px;}
._9{width:12.858671px;}
._a{width:14.422246px;}
._3{width:17.906098px;}
._6{width:22.369957px;}
._15{width:23.427656px;}
._b{width:26.794824px;}
._17{width:27.913689px;}
._12{width:31.447111px;}
._11{width:35.939606px;}
._e{width:40.431974px;}
._d{width:44.924424px;}
._14{width:58.402114px;}
._13{width:62.894186px;}
._18{width:152.743286px;}
._10{width:170.733224px;}
._f{width:175.095783px;}
._1b{width:197.667782px;}
.fc3{color:rgb(84,93,126);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.939597px;}
.fs4{font-size:43.127518px;}
.fs2{font-size:59.899326px;}
.fs0{font-size:65.889262px;}
.fs3{font-size:71.879193px;}
.fs6{font-size:77.869129px;}
.fs1{font-size:83.859056px;}
.fs5{font-size:95.838927px;}
.y0{bottom:0.000000px;}
.y56{bottom:68.393231px;}
.y33{bottom:68.393414px;}
.y2{bottom:68.393447px;}
.y93{bottom:68.393597px;}
.y29{bottom:110.119975px;}
.ye9{bottom:112.411173px;}
.yff{bottom:112.411179px;}
.y54{bottom:112.411541px;}
.y77{bottom:114.994481px;}
.ycb{bottom:122.624474px;}
.y91{bottom:125.436647px;}
.y28{bottom:127.339570px;}
.ye8{bottom:143.406442px;}
.y53{bottom:143.406811px;}
.y76{bottom:145.989751px;}
.y27{bottom:150.241641px;}
.yca{bottom:153.619737px;}
.y2a{bottom:167.461224px;}
.y90{bottom:174.401712px;}
.y52{bottom:174.402089px;}
.y75{bottom:176.985021px;}
.yc9{bottom:184.615011px;}
.y2b{bottom:184.680824px;}
.y2c{bottom:201.900413px;}
.y8f{bottom:205.396979px;}
.y51{bottom:205.397350px;}
.y74{bottom:207.980293px;}
.yc8{bottom:215.610285px;}
.y2d{bottom:219.120017px;}
.y2e{bottom:236.339607px;}
.y8e{bottom:236.392245px;}
.yfe{bottom:236.392257px;}
.y50{bottom:236.392440px;}
.ye7{bottom:238.762046px;}
.y73{bottom:238.975562px;}
.yc7{bottom:246.605548px;}
.y2f{bottom:253.559196px;}
.y8d{bottom:267.387527px;}
.y4f{bottom:267.387705px;}
.y72{bottom:269.970832px;}
.y30{bottom:270.778800px;}
.ye6{bottom:272.553395px;}
.yc6{bottom:277.600822px;}
.y31{bottom:287.998389px;}
.yfd{bottom:288.051028px;}
.y8c{bottom:298.382794px;}
.y4e{bottom:298.382975px;}
.y71{bottom:300.966102px;}
.ye5{bottom:303.548676px;}
.yc5{bottom:308.596092px;}
.yfc{bottom:321.416095px;}
.y26{bottom:323.351379px;}
.y8b{bottom:329.378060px;}
.y4d{bottom:329.378245px;}
.y70{bottom:331.961359px;}
.ye4{bottom:334.543943px;}
.yc4{bottom:339.591361px;}
.y25{bottom:354.346661px;}
.yfb{bottom:355.207459px;}
.y8a{bottom:360.373327px;}
.y4c{bottom:360.373515px;}
.y6f{bottom:362.956628px;}
.yab{bottom:363.177820px;}
.ye3{bottom:365.539209px;}
.yc3{bottom:370.586632px;}
.y24{bottom:384.157035px;}
.yfa{bottom:386.202726px;}
.y89{bottom:391.368593px;}
.y4b{bottom:391.368784px;}
.y6e{bottom:393.951898px;}
.yaa{bottom:394.173083px;}
.ye2{bottom:396.534476px;}
.yc2{bottom:401.581901px;}
.y23{bottom:403.422497px;}
.yf9{bottom:406.866229px;}
.y88{bottom:422.363875px;}
.y4a{bottom:422.364055px;}
.y22{bottom:424.086010px;}
.y6d{bottom:424.947168px;}
.ya9{bottom:425.168357px;}
.ye1{bottom:427.529743px;}
.yc1{bottom:432.577171px;}
.y21{bottom:444.749527px;}
.y87{bottom:453.359141px;}
.y49{bottom:453.359328px;}
.y6c{bottom:455.942450px;}
.ya8{bottom:456.163626px;}
.ye0{bottom:458.525024px;}
.yc0{bottom:463.572441px;}
.y20{bottom:465.089127px;}
.y1f{bottom:484.030687px;}
.y48{bottom:484.354590px;}
.y86{bottom:484.354782px;}
.ya7{bottom:487.158896px;}
.y6b{bottom:489.307516px;}
.yf8{bottom:489.520286px;}
.ydf{bottom:489.520291px;}
.ybf{bottom:494.567708px;}
.y1e{bottom:502.972191px;}
.y47{bottom:515.349865px;}
.y85{bottom:515.350044px;}
.y10e{bottom:517.191549px;}
.ya6{bottom:518.154166px;}
.yf7{bottom:520.515556px;}
.yde{bottom:520.515557px;}
.y1d{bottom:521.913739px;}
.y6a{bottom:523.098866px;}
.ybe{bottom:524.378456px;}
.y1c{bottom:540.855300px;}
.y46{bottom:546.345134px;}
.y84{bottom:546.345314px;}
.y10d{bottom:547.353272px;}
.ya5{bottom:549.149436px;}
.ydd{bottom:551.510824px;}
.yf6{bottom:551.510825px;}
.y69{bottom:552.909240px;}
.ybd{bottom:553.975681px;}
.y1b{bottom:559.796848px;}
.y45{bottom:577.340404px;}
.y83{bottom:577.340583px;}
.y10c{bottom:577.561775px;}
.y1a{bottom:578.738402px;}
.ya4{bottom:580.144706px;}
.yf5{bottom:582.506096px;}
.ydc{bottom:582.506105px;}
.y68{bottom:582.506465px;}
.ybc{bottom:584.970948px;}
.y19{bottom:597.679956px;}
.y44{bottom:608.335674px;}
.y82{bottom:608.335854px;}
.y10b{bottom:608.557042px;}
.ya3{bottom:611.139976px;}
.yf4{bottom:613.501365px;}
.ydb{bottom:613.501372px;}
.y67{bottom:613.501731px;}
.ybb{bottom:615.966214px;}
.y18{bottom:616.621510px;}
.y17{bottom:635.563055px;}
.y43{bottom:639.330944px;}
.y81{bottom:639.331124px;}
.y10a{bottom:639.552308px;}
.ya2{bottom:642.135247px;}
.yf3{bottom:644.496635px;}
.yda{bottom:644.496639px;}
.y66{bottom:644.496998px;}
.yba{bottom:646.961496px;}
.y16{bottom:654.504609px;}
.y42{bottom:670.326213px;}
.y80{bottom:670.326393px;}
.y109{bottom:670.547575px;}
.ya1{bottom:673.130521px;}
.y15{bottom:673.446162px;}
.yd9{bottom:675.491905px;}
.y65{bottom:675.492279px;}
.yb9{bottom:677.956762px;}
.y14{bottom:692.387716px;}
.y41{bottom:701.321484px;}
.y7f{bottom:701.321663px;}
.ya0{bottom:704.125783px;}
.yf2{bottom:706.487170px;}
.yd8{bottom:706.487172px;}
.y64{bottom:706.487546px;}
.yb8{bottom:708.952029px;}
.y13{bottom:711.329270px;}
.y108{bottom:719.512655px;}
.y12{bottom:730.270827px;}
.y40{bottom:732.316751px;}
.y7e{bottom:734.686730px;}
.y9f{bottom:735.121058px;}
.yf1{bottom:737.482440px;}
.yd7{bottom:737.482453px;}
.y63{bottom:737.482813px;}
.yb7{bottom:739.947296px;}
.y11{bottom:749.212380px;}
.y3f{bottom:763.312022px;}
.y9e{bottom:766.116332px;}
.yf0{bottom:768.477710px;}
.y107{bottom:768.477716px;}
.yd6{bottom:768.477720px;}
.y62{bottom:768.478079px;}
.yb6{bottom:770.942562px;}
.y10{bottom:781.179405px;}
.y3e{bottom:794.307292px;}
.y9d{bottom:797.111594px;}
.yef{bottom:799.472980px;}
.yd5{bottom:799.472985px;}
.y106{bottom:799.472986px;}
.y61{bottom:799.473346px;}
.y7d{bottom:799.473347px;}
.yb5{bottom:801.937844px;}
.yf{bottom:804.639004px;}
.ye{bottom:825.302520px;}
.y3d{bottom:825.302561px;}
.y9c{bottom:828.106868px;}
.yee{bottom:830.468249px;}
.y105{bottom:830.468253px;}
.yd4{bottom:830.468254px;}
.y7c{bottom:830.468618px;}
.y60{bottom:830.468627px;}
.yb4{bottom:832.933110px;}
.yd{bottom:845.966036px;}
.y3c{bottom:856.297831px;}
.y9b{bottom:859.102138px;}
.yed{bottom:861.463519px;}
.yd3{bottom:861.463525px;}
.y104{bottom:861.463531px;}
.y7b{bottom:861.463887px;}
.y5f{bottom:861.463894px;}
.yb3{bottom:863.928377px;}
.yc{bottom:866.629537px;}
.yb{bottom:887.293053px;}
.y3b{bottom:887.293101px;}
.y9a{bottom:890.097408px;}
.yd2{bottom:892.458794px;}
.yec{bottom:892.458796px;}
.y103{bottom:892.458801px;}
.y7a{bottom:892.459157px;}
.y5e{bottom:892.459160px;}
.yb2{bottom:894.923643px;}
.ya{bottom:907.956569px;}
.y3a{bottom:918.288371px;}
.y99{bottom:921.092678px;}
.yd1{bottom:923.454064px;}
.yeb{bottom:923.454066px;}
.y102{bottom:923.454068px;}
.y5d{bottom:923.454427px;}
.yb1{bottom:925.918925px;}
.y9{bottom:928.620085px;}
.y8{bottom:949.283601px;}
.y39{bottom:949.283641px;}
.y98{bottom:952.087948px;}
.y101{bottom:954.449331px;}
.yd0{bottom:954.449334px;}
.yea{bottom:954.449335px;}
.y79{bottom:954.449701px;}
.y5c{bottom:954.449709px;}
.yb0{bottom:956.914191px;}
.y7{bottom:969.947132px;}
.y38{bottom:980.278911px;}
.y97{bottom:983.083217px;}
.y100{bottom:985.444601px;}
.ycf{bottom:985.444606px;}
.y78{bottom:985.444972px;}
.y5b{bottom:985.444975px;}
.yaf{bottom:987.909458px;}
.y6{bottom:1000.942400px;}
.y37{bottom:1011.274181px;}
.y96{bottom:1014.078488px;}
.yce{bottom:1016.439876px;}
.y5a{bottom:1016.440242px;}
.yae{bottom:1018.944211px;}
.y5{bottom:1034.307467px;}
.y36{bottom:1042.269450px;}
.ycd{bottom:1047.435145px;}
.y59{bottom:1047.435511px;}
.yad{bottom:1050.018451px;}
.y95{bottom:1061.858658px;}
.y4{bottom:1070.468615px;}
.y35{bottom:1075.634515px;}
.ycc{bottom:1078.430415px;}
.y58{bottom:1078.430781px;}
.yac{bottom:1079.828457px;}
.y3{bottom:1106.629752px;}
.y94{bottom:1109.425685px;}
.y34{bottom:1109.425868px;}
.y57{bottom:1109.426050px;}
.y92{bottom:1126.202176px;}
.y1{bottom:1126.202326px;}
.y32{bottom:1126.202359px;}
.y55{bottom:1126.202542px;}
.h9{height:32.219287px;}
.h2{height:43.915451px;}
.h10{height:45.749283px;}
.hf{height:47.907763px;}
.he{height:49.908307px;}
.ha{height:53.698806px;}
.hb{height:53.698810px;}
.h7{height:59.068694px;}
.h8{height:63.841920px;}
.h4{height:64.438574px;}
.h5{height:65.938984px;}
.h3{height:74.482238px;}
.h6{height:85.918101px;}
.hd{height:135.297388px;}
.hc{height:135.297571px;}
.h1{height:135.297604px;}
.h11{height:135.297753px;}
.h0{height:1261.500000px;}
.w1{width:891.751243px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:127.360950px;}
.x3{left:145.172854px;}
.xe{left:180.147233px;}
.xd{left:181.270345px;}
.x11{left:235.179740px;}
.x4{left:266.343453px;}
.x10{left:297.922027px;}
.x2{left:445.707619px;}
.x7{left:520.584546px;}
.xc{left:525.594672px;}
.x5{left:535.606174px;}
.x8{left:550.496185px;}
.xb{left:553.014416px;}
.x9{left:570.045360px;}
.xa{left:572.019578px;}
.x6{left:630.886459px;}
.x12{left:672.070462px;}
.xf{left:700.148272px;}
.x13{left:764.054289px;}
@media print{
.v2{vertical-align:-20.204324pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.245190pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:11.979866pt;}
.ws1{word-spacing:-18.635346pt;}
.ws3{word-spacing:-15.973154pt;}
.ws2{word-spacing:-14.642058pt;}
.ws5{word-spacing:-13.310961pt;}
.ws0{word-spacing:-9.583893pt;}
.ws4{word-spacing:-7.986577pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-11.460114pt;}
._1a{margin-left:-7.081850pt;}
._0{margin-left:-6.117021pt;}
._2{margin-left:-5.116423pt;}
._16{margin-left:-3.525666pt;}
._1{margin-left:-1.999519pt;}
._7{margin-left:-0.890780pt;}
._4{width:3.830383pt;}
._c{width:4.787086pt;}
._5{width:7.745095pt;}
._8{width:8.664826pt;}
._9{width:11.429930pt;}
._a{width:12.819774pt;}
._3{width:15.916531pt;}
._6{width:19.884406pt;}
._15{width:20.824583pt;}
._b{width:23.817621pt;}
._17{width:24.812168pt;}
._12{width:27.952988pt;}
._11{width:31.946316pt;}
._e{width:35.939533pt;}
._d{width:39.932821pt;}
._14{width:51.912990pt;}
._13{width:55.905943pt;}
._18{width:135.771810pt;}
._10{width:151.762866pt;}
._f{width:155.640696pt;}
._1b{width:175.704695pt;}
.fs7{font-size:31.946308pt;}
.fs4{font-size:38.335571pt;}
.fs2{font-size:53.243846pt;}
.fs0{font-size:58.568233pt;}
.fs3{font-size:63.892616pt;}
.fs6{font-size:69.217004pt;}
.fs1{font-size:74.541383pt;}
.fs5{font-size:85.190158pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:60.793983pt;}
.y33{bottom:60.794146pt;}
.y2{bottom:60.794175pt;}
.y93{bottom:60.794308pt;}
.y29{bottom:97.884422pt;}
.ye9{bottom:99.921042pt;}
.yff{bottom:99.921048pt;}
.y54{bottom:99.921370pt;}
.y77{bottom:102.217316pt;}
.ycb{bottom:108.999533pt;}
.y91{bottom:111.499242pt;}
.y28{bottom:113.190729pt;}
.ye8{bottom:127.472393pt;}
.y53{bottom:127.472721pt;}
.y76{bottom:129.768667pt;}
.y27{bottom:133.548125pt;}
.yca{bottom:136.550877pt;}
.y2a{bottom:148.854421pt;}
.y90{bottom:155.023744pt;}
.y52{bottom:155.024079pt;}
.y75{bottom:157.320018pt;}
.yc9{bottom:164.102232pt;}
.y2b{bottom:164.160732pt;}
.y2c{bottom:179.467034pt;}
.y8f{bottom:182.575092pt;}
.y51{bottom:182.575422pt;}
.y74{bottom:184.871371pt;}
.yc8{bottom:191.653587pt;}
.y2d{bottom:194.773349pt;}
.y2e{bottom:210.079650pt;}
.y8e{bottom:210.126440pt;}
.yfe{bottom:210.126451pt;}
.y50{bottom:210.126613pt;}
.ye7{bottom:212.232929pt;}
.y73{bottom:212.422722pt;}
.yc7{bottom:219.204931pt;}
.y2f{bottom:225.385952pt;}
.y8d{bottom:237.677802pt;}
.y4f{bottom:237.677960pt;}
.y72{bottom:239.974073pt;}
.y30{bottom:240.692267pt;}
.ye6{bottom:242.269684pt;}
.yc6{bottom:246.756286pt;}
.y31{bottom:255.998568pt;}
.yfd{bottom:256.045358pt;}
.y8c{bottom:265.229150pt;}
.y4e{bottom:265.229311pt;}
.y71{bottom:267.525424pt;}
.ye5{bottom:269.821046pt;}
.yc5{bottom:274.307637pt;}
.yfc{bottom:285.703195pt;}
.y26{bottom:287.423448pt;}
.y8b{bottom:292.780498pt;}
.y4d{bottom:292.780662pt;}
.y70{bottom:295.076763pt;}
.ye4{bottom:297.372394pt;}
.yc4{bottom:301.858988pt;}
.y25{bottom:314.974810pt;}
.yfb{bottom:315.739964pt;}
.y8a{bottom:320.331846pt;}
.y4c{bottom:320.332013pt;}
.y6f{bottom:322.628114pt;}
.yab{bottom:322.824729pt;}
.ye3{bottom:324.923742pt;}
.yc3{bottom:329.410339pt;}
.y24{bottom:341.472920pt;}
.yfa{bottom:343.291312pt;}
.y89{bottom:347.883194pt;}
.y4b{bottom:347.883364pt;}
.y6e{bottom:350.179465pt;}
.yaa{bottom:350.376073pt;}
.ye2{bottom:352.475090pt;}
.yc2{bottom:356.961690pt;}
.y23{bottom:358.597775pt;}
.yf9{bottom:361.658871pt;}
.y88{bottom:375.434555pt;}
.y4a{bottom:375.434715pt;}
.y22{bottom:376.965343pt;}
.y6d{bottom:377.730816pt;}
.ya9{bottom:377.927428pt;}
.ye1{bottom:380.026438pt;}
.yc1{bottom:384.513041pt;}
.y21{bottom:395.332912pt;}
.y87{bottom:402.985903pt;}
.y49{bottom:402.986069pt;}
.y6c{bottom:405.282177pt;}
.ya8{bottom:405.478779pt;}
.ye0{bottom:407.577799pt;}
.yc0{bottom:412.064392pt;}
.y20{bottom:413.412557pt;}
.y1f{bottom:430.249499pt;}
.y48{bottom:430.537414pt;}
.y86{bottom:430.537584pt;}
.ya7{bottom:433.030130pt;}
.y6b{bottom:434.940015pt;}
.yf8{bottom:435.129143pt;}
.ydf{bottom:435.129147pt;}
.ybf{bottom:439.615740pt;}
.y1e{bottom:447.086392pt;}
.y47{bottom:458.088768pt;}
.y85{bottom:458.088928pt;}
.y10e{bottom:459.725822pt;}
.ya6{bottom:460.581481pt;}
.yf7{bottom:462.680494pt;}
.yde{bottom:462.680495pt;}
.y1d{bottom:463.923324pt;}
.y6a{bottom:464.976769pt;}
.ybe{bottom:466.114183pt;}
.y1c{bottom:480.760266pt;}
.y46{bottom:485.640119pt;}
.y84{bottom:485.640279pt;}
.y10d{bottom:486.536242pt;}
.ya5{bottom:488.132832pt;}
.ydd{bottom:490.231843pt;}
.yf6{bottom:490.231845pt;}
.y69{bottom:491.474880pt;}
.ybd{bottom:492.422828pt;}
.y1b{bottom:497.597199pt;}
.y45{bottom:513.191470pt;}
.y83{bottom:513.191630pt;}
.y10c{bottom:513.388245pt;}
.y1a{bottom:514.434135pt;}
.ya4{bottom:515.684183pt;}
.yf5{bottom:517.783196pt;}
.ydc{bottom:517.783205pt;}
.y68{bottom:517.783524pt;}
.ybc{bottom:519.974176pt;}
.y19{bottom:531.271072pt;}
.y44{bottom:540.742822pt;}
.y82{bottom:540.742981pt;}
.y10b{bottom:540.939593pt;}
.ya3{bottom:543.235534pt;}
.yf4{bottom:545.334547pt;}
.ydb{bottom:545.334553pt;}
.y67{bottom:545.334872pt;}
.ybb{bottom:547.525524pt;}
.y18{bottom:548.108009pt;}
.y17{bottom:564.944938pt;}
.y43{bottom:568.294172pt;}
.y81{bottom:568.294332pt;}
.y10a{bottom:568.490941pt;}
.ya2{bottom:570.786886pt;}
.yf3{bottom:572.885898pt;}
.yda{bottom:572.885901pt;}
.y66{bottom:572.886220pt;}
.yba{bottom:575.076885pt;}
.y16{bottom:581.781874pt;}
.y42{bottom:595.845523pt;}
.y80{bottom:595.845683pt;}
.y109{bottom:596.042289pt;}
.ya1{bottom:598.338241pt;}
.y15{bottom:598.618811pt;}
.yd9{bottom:600.437249pt;}
.y65{bottom:600.437582pt;}
.yb9{bottom:602.628233pt;}
.y14{bottom:615.455748pt;}
.y41{bottom:623.396874pt;}
.y7f{bottom:623.397034pt;}
.ya0{bottom:625.889585pt;}
.yf2{bottom:627.988596pt;}
.yd8{bottom:627.988597pt;}
.y64{bottom:627.988930pt;}
.yb8{bottom:630.179581pt;}
.y13{bottom:632.292684pt;}
.y108{bottom:639.566804pt;}
.y12{bottom:649.129624pt;}
.y40{bottom:650.948224pt;}
.y7e{bottom:653.054871pt;}
.y9f{bottom:653.440940pt;}
.yf1{bottom:655.539946pt;}
.yd7{bottom:655.539958pt;}
.y63{bottom:655.540278pt;}
.yb7{bottom:657.730929pt;}
.y11{bottom:665.966560pt;}
.y3f{bottom:678.499575pt;}
.y9e{bottom:680.992295pt;}
.yf0{bottom:683.091298pt;}
.y107{bottom:683.091303pt;}
.yd6{bottom:683.091306pt;}
.y62{bottom:683.091626pt;}
.yb6{bottom:685.282277pt;}
.y10{bottom:694.381694pt;}
.y3e{bottom:706.050926pt;}
.y9d{bottom:708.543639pt;}
.yef{bottom:710.642649pt;}
.yd5{bottom:710.642653pt;}
.y106{bottom:710.642655pt;}
.y61{bottom:710.642974pt;}
.y7d{bottom:710.642975pt;}
.yb5{bottom:712.833639pt;}
.yf{bottom:715.234670pt;}
.ye{bottom:733.602240pt;}
.y3d{bottom:733.602277pt;}
.y9c{bottom:736.094994pt;}
.yee{bottom:738.193999pt;}
.y105{bottom:738.194003pt;}
.yd4{bottom:738.194004pt;}
.y7c{bottom:738.194327pt;}
.y60{bottom:738.194335pt;}
.yb4{bottom:740.384987pt;}
.yd{bottom:751.969810pt;}
.y3c{bottom:761.153628pt;}
.y9b{bottom:763.646345pt;}
.yed{bottom:765.745351pt;}
.yd3{bottom:765.745355pt;}
.y104{bottom:765.745361pt;}
.y7b{bottom:765.745678pt;}
.y5f{bottom:765.745683pt;}
.yb3{bottom:767.936335pt;}
.yc{bottom:770.337366pt;}
.yb{bottom:788.704936pt;}
.y3b{bottom:788.704978pt;}
.y9a{bottom:791.197696pt;}
.yd2{bottom:793.296706pt;}
.yec{bottom:793.296708pt;}
.y103{bottom:793.296712pt;}
.y7a{bottom:793.297028pt;}
.y5e{bottom:793.297031pt;}
.yb2{bottom:795.487683pt;}
.ya{bottom:807.072506pt;}
.y3a{bottom:816.256330pt;}
.y99{bottom:818.749047pt;}
.yd1{bottom:820.848057pt;}
.yeb{bottom:820.848059pt;}
.y102{bottom:820.848060pt;}
.y5d{bottom:820.848380pt;}
.yb1{bottom:823.039044pt;}
.y9{bottom:825.440076pt;}
.y8{bottom:843.807645pt;}
.y39{bottom:843.807681pt;}
.y98{bottom:846.300398pt;}
.y101{bottom:848.399405pt;}
.yd0{bottom:848.399408pt;}
.yea{bottom:848.399409pt;}
.y79{bottom:848.399734pt;}
.y5c{bottom:848.399741pt;}
.yb0{bottom:850.590392pt;}
.y7{bottom:862.175229pt;}
.y38{bottom:871.359032pt;}
.y97{bottom:873.851749pt;}
.y100{bottom:875.950756pt;}
.ycf{bottom:875.950761pt;}
.y78{bottom:875.951086pt;}
.y5b{bottom:875.951089pt;}
.yaf{bottom:878.141740pt;}
.y6{bottom:889.726578pt;}
.y37{bottom:898.910383pt;}
.y96{bottom:901.403100pt;}
.yce{bottom:903.502112pt;}
.y5a{bottom:903.502437pt;}
.yae{bottom:905.728188pt;}
.y5{bottom:919.384415pt;}
.y36{bottom:926.461734pt;}
.ycd{bottom:931.053462pt;}
.y59{bottom:931.053787pt;}
.yad{bottom:933.349734pt;}
.y95{bottom:943.874363pt;}
.y4{bottom:951.527658pt;}
.y35{bottom:956.119569pt;}
.ycc{bottom:958.604814pt;}
.y58{bottom:958.605138pt;}
.yac{bottom:959.847517pt;}
.y3{bottom:983.670891pt;}
.y94{bottom:986.156164pt;}
.y34{bottom:986.156327pt;}
.y57{bottom:986.156489pt;}
.y92{bottom:1001.068601pt;}
.y1{bottom:1001.068734pt;}
.y32{bottom:1001.068764pt;}
.y55{bottom:1001.068926pt;}
.h9{height:28.639366pt;}
.h2{height:39.035956pt;}
.h10{height:40.666029pt;}
.hf{height:42.584678pt;}
.he{height:44.362940pt;}
.ha{height:47.732272pt;}
.hb{height:47.732276pt;}
.h7{height:52.505506pt;}
.h8{height:56.748374pt;}
.h4{height:57.278732pt;}
.h5{height:58.612431pt;}
.h3{height:66.206433pt;}
.h6{height:76.371645pt;}
.hd{height:120.264345pt;}
.hc{height:120.264507pt;}
.h1{height:120.264537pt;}
.h11{height:120.264670pt;}
.h0{height:1121.333333pt;}
.w1{width:792.667771pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:113.209734pt;}
.x3{left:129.042537pt;}
.xe{left:160.130874pt;}
.xd{left:161.129196pt;}
.x11{left:209.048658pt;}
.x4{left:236.749736pt;}
.x10{left:264.819579pt;}
.x2{left:396.184551pt;}
.x7{left:462.741818pt;}
.xc{left:467.195264pt;}
.x5{left:476.094377pt;}
.x8{left:489.329942pt;}
.xb{left:491.568370pt;}
.x9{left:506.706987pt;}
.xa{left:508.461847pt;}
.x6{left:560.787963pt;}
.x12{left:597.395967pt;}
.xf{left:622.354020pt;}
.x13{left:679.159368pt;}
}




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