
    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_40ab42c644aa5919d575059f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.989000;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_39dd672746b454497e2dcbd2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_a7d44690135e7a319c8af45d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_9d8b002c9d210cac3087246d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.728000;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_59011e0abaff48989264afb6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.724000;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_027e9877e8ce49d40a6c68d8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.989000;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_6cce4b0d7b52594ac5d61a80.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946000;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_ce14dc85ca32059b7149d9c2.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946000;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_41428e085583c2c6f95986cb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.748000;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;}
.ffa{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c9a0f49e53c2523385575d89.woff')format("woff");}.ffb{font-family:ffb;line-height:0.946000;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;}
.ffc{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2629ddea7087da9065435e00.woff')format("woff");}.ffd{font-family:ffd;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_46684ef3a62cac9ef5f0129f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.946000;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:fff;src:url('chunks/assets/font_6acd1ddff6bd1315e9560bb8.woff')format("woff");}.fff{font-family:fff;line-height:0.989000;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:ff10;src:url('chunks/assets/font_8472e7beaf8ab44106f417c0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.989000;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;}
.ff11{font-family:sans-serif;visibility:hidden;}
.ff12{font-family:sans-serif;visibility:hidden;}
.ff13{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff14;src:url('chunks/assets/font_703c98be84bebd5564349b35.woff')format("woff");}.ff14{font-family:ff14;line-height:0.941000;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:ff15;src:url('chunks/assets/font_18cef5ac99727f4789fffdde.woff')format("woff");}.ff15{font-family:ff15;line-height:0.946000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-229.157224px;}
.ws2{word-spacing:-18.859316px;}
.ws4{word-spacing:-18.676547px;}
.ws3{word-spacing:-18.663807px;}
.ws6{word-spacing:-17.290654px;}
.ws0{word-spacing:-16.982153px;}
.ws5{word-spacing:0.000000px;}
.ws7{word-spacing:98.691726px;}
._2c{margin-left:-1135.853935px;}
._2d{margin-left:-933.032665px;}
._3{margin-left:-3.751006px;}
._0{margin-left:-1.800676px;}
._21{width:2.688739px;}
._1{width:3.899604px;}
._15{width:5.665652px;}
._19{width:6.861032px;}
._a{width:8.295522px;}
._f{width:9.561741px;}
._18{width:10.808254px;}
._28{width:12.643151px;}
._c{width:18.984608px;}
._b{width:23.071695px;}
._4{width:26.297219px;}
._1b{width:27.411574px;}
._1d{width:28.633642px;}
._1a{width:30.035953px;}
._5{width:31.180358px;}
._2{width:33.127411px;}
._12{width:35.386183px;}
._25{width:40.498812px;}
._e{width:43.869349px;}
._1c{width:46.491783px;}
._2b{width:50.115004px;}
._27{width:55.758576px;}
._9{width:58.098110px;}
._10{width:59.434657px;}
._16{width:60.735594px;}
._13{width:62.661279px;}
._29{width:64.430031px;}
._7{width:65.722964px;}
._1e{width:67.443278px;}
._11{width:70.765250px;}
._24{width:73.001720px;}
._17{width:77.317102px;}
._14{width:82.338624px;}
._20{width:83.729190px;}
._1f{width:88.465905px;}
._2a{width:89.662645px;}
._23{width:103.685979px;}
._6{width:112.299538px;}
._d{width:117.350321px;}
._22{width:152.221662px;}
._26{width:190.588698px;}
._8{width:236.895914px;}
.fc4{color:transparent;}
.fc1{color:rgb(180,45,27);}
.fc5{color:rgb(30,30,30);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(52,52,52);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.007609px;}
.fs6{font-size:65.949847px;}
.fs8{font-size:65.994864px;}
.fs5{font-size:71.982120px;}
.fs4{font-size:78.014394px;}
.fs3{font-size:83.866594px;}
.fs9{font-size:89.988906px;}
.fs0{font-size:90.033923px;}
.fs7{font-size:96.021179px;}
.fsa{font-size:120.015219px;}
.fs2{font-size:390.387093px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y33{bottom:12.379658px;}
.y6{bottom:13.505065px;}
.y5f{bottom:24.323626px;}
.ya{bottom:27.322102px;}
.y5{bottom:33.762697px;}
.y32{bottom:34.888139px;}
.y4{bottom:54.020330px;}
.y31{bottom:57.396619px;}
.y2d{bottom:58.865130px;}
.y3{bottom:62.281148px;}
.y60{bottom:68.710904px;}
.y2c{bottom:68.913639px;}
.y30{bottom:79.905100px;}
.y2b{bottom:93.672967px;}
.y2f{bottom:102.413581px;}
.y2a{bottom:118.432296px;}
.y2e{bottom:124.922061px;}
.y29{bottom:143.191625px;}
.y38{bottom:147.430542px;}
.y37{bottom:169.939023px;}
.y17{bottom:180.694162px;}
.y36{bottom:192.447503px;}
.y16{bottom:203.202643px;}
.y35{bottom:214.955984px;}
.y39{bottom:222.051553px;}
.y15{bottom:225.711124px;}
.y14{bottom:248.219604px;}
.y34{bottom:257.643536px;}
.y13{bottom:293.236566px;}
.y12{bottom:315.745046px;}
.y11{bottom:338.253527px;}
.y10{bottom:360.762008px;}
.y28{bottom:360.763052px;}
.yf{bottom:383.270488px;}
.y27{bottom:383.271532px;}
.ye{bottom:405.778969px;}
.y26{bottom:405.780013px;}
.yd{bottom:428.287450px;}
.y25{bottom:428.288494px;}
.yc{bottom:450.795930px;}
.y24{bottom:450.796974px;}
.yb{bottom:473.304411px;}
.y23{bottom:473.305455px;}
.y1e{bottom:498.402364px;}
.y22{bottom:502.641465px;}
.y44{bottom:507.847161px;}
.y1d{bottom:520.910845px;}
.y21{bottom:525.149946px;}
.y20{bottom:547.658426px;}
.y45{bottom:548.871504px;}
.y2{bottom:555.273803px;}
.y1f{bottom:570.166907px;}
.y5e{bottom:574.906318px;}
.y56{bottom:578.207536px;}
.y5d{bottom:597.414798px;}
.y1c{bottom:599.502949px;}
.y55{bottom:600.716016px;}
.y5c{bottom:619.923279px;}
.y1b{bottom:622.011430px;}
.y54{bottom:623.224497px;}
.y5b{bottom:642.431760px;}
.y1a{bottom:644.519911px;}
.y53{bottom:664.940240px;}
.y19{bottom:670.131112px;}
.y52{bottom:687.448721px;}
.y18{bottom:698.266713px;}
.y5a{bottom:709.957202px;}
.y51{bottom:729.164468px;}
.y59{bottom:732.465682px;}
.y50{bottom:751.672949px;}
.y58{bottom:754.974163px;}
.y57{bottom:777.482644px;}
.y4f{bottom:793.388649px;}
.y43{bottom:809.744794px;}
.y4e{bottom:815.897130px;}
.y42{bottom:837.880395px;}
.y4d{bottom:857.612877px;}
.y4c{bottom:880.121357px;}
.y4b{bottom:902.629838px;}
.y41{bottom:924.471103px;}
.y4a{bottom:944.345560px;}
.y40{bottom:951.481280px;}
.y49{bottom:966.854041px;}
.y3f{bottom:978.491457px;}
.y7{bottom:1000.731621px;}
.y3e{bottom:1005.501634px;}
.y48{bottom:1008.569784px;}
.y47{bottom:1031.078265px;}
.y3d{bottom:1032.511810px;}
.y3c{bottom:1059.521987px;}
.y46{bottom:1064.731355px;}
.y3a{bottom:1095.995104px;}
.y8{bottom:1099.773209px;}
.y9{bottom:1156.808441px;}
.y3b{bottom:1168.422832px;}
.h5{height:47.225988px;}
.h16{height:48.968189px;}
.hb{height:49.264535px;}
.hd{height:49.298164px;}
.ha{height:51.902529px;}
.he{height:51.937958px;}
.hf{height:53.410733px;}
.h9{height:53.770644px;}
.h11{height:56.649929px;}
.h7{height:59.713015px;}
.h8{height:61.397328px;}
.h14{height:62.652354px;}
.h10{height:62.695121px;}
.h15{height:70.821269px;}
.h3{height:70.856697px;}
.h4{height:75.403386px;}
.hc{height:75.568667px;}
.h17{height:94.451977px;}
.h12{height:147.430542px;}
.h13{height:237.464465px;}
.h6{height:278.736384px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w3{width:341.003437px;}
.w2{width:397.274704px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:4.501696px;}
.x3{left:11.447673px;}
.x4{left:38.088570px;}
.x14{left:72.399554px;}
.x26{left:76.146570px;}
.x2a{left:80.792914px;}
.x6{left:83.532080px;}
.x7{left:89.324996px;}
.x2{left:91.486983px;}
.x1a{left:93.608228px;}
.x19{left:99.411195px;}
.x18{left:100.575208px;}
.xc{left:103.480955px;}
.x1b{left:107.060562px;}
.x1d{left:109.399334px;}
.x5{left:110.625666px;}
.x1f{left:115.149547px;}
.xf{left:121.778989px;}
.x1c{left:123.537473px;}
.x1e{left:125.876245px;}
.x10{left:128.250178px;}
.x20{left:131.626458px;}
.x21{left:142.863114px;}
.x22{left:147.188963px;}
.x23{left:163.665874px;}
.xb{left:166.374859px;}
.x17{left:178.639162px;}
.x24{left:182.178136px;}
.xa{left:209.176141px;}
.x16{left:489.922583px;}
.x9{left:497.347186px;}
.xd{left:503.450878px;}
.x25{left:510.496741px;}
.x29{left:516.839680px;}
.x28{left:517.970260px;}
.x12{left:521.139354px;}
.x11{left:526.731305px;}
.x27{left:535.008120px;}
.x1{left:539.115672px;}
.x13{left:567.598265px;}
.xe{left:609.785864px;}
.x2b{left:677.363003px;}
.x8{left:688.613854px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-203.695310pt;}
.ws2{word-spacing:-16.763836pt;}
.ws4{word-spacing:-16.601375pt;}
.ws3{word-spacing:-16.590050pt;}
.ws6{word-spacing:-15.369471pt;}
.ws0{word-spacing:-15.095247pt;}
.ws5{word-spacing:0.000000pt;}
.ws7{word-spacing:87.725979pt;}
._2c{margin-left:-1009.647942pt;}
._2d{margin-left:-829.362369pt;}
._3{margin-left:-3.334228pt;}
._0{margin-left:-1.600601pt;}
._21{width:2.389990pt;}
._1{width:3.466315pt;}
._15{width:5.036135pt;}
._19{width:6.098695pt;}
._a{width:7.373798pt;}
._f{width:8.499325pt;}
._18{width:9.607337pt;}
._28{width:11.238356pt;}
._c{width:16.875207pt;}
._b{width:20.508173pt;}
._4{width:23.375306pt;}
._1b{width:24.365843pt;}
._1d{width:25.452126pt;}
._1a{width:26.698625pt;}
._5{width:27.715874pt;}
._2{width:29.446588pt;}
._12{width:31.454385pt;}
._25{width:35.998944pt;}
._e{width:38.994977pt;}
._1c{width:41.326029pt;}
._2b{width:44.546670pt;}
._27{width:49.563179pt;}
._9{width:51.642764pt;}
._10{width:52.830806pt;}
._16{width:53.987194pt;}
._13{width:55.698914pt;}
._29{width:57.271138pt;}
._7{width:58.420413pt;}
._1e{width:59.949581pt;}
._11{width:62.902444pt;}
._24{width:64.890418pt;}
._17{width:68.726313pt;}
._14{width:73.189888pt;}
._20{width:74.425946pt;}
._1f{width:78.636360pt;}
._2a{width:79.700129pt;}
._23{width:92.165315pt;}
._6{width:99.821811pt;}
._d{width:104.311397pt;}
._22{width:135.308144pt;}
._26{width:169.412176pt;}
._8{width:210.574146pt;}
.fs1{font-size:53.340097pt;}
.fs6{font-size:58.622086pt;}
.fs8{font-size:58.662102pt;}
.fs5{font-size:63.984107pt;}
.fs4{font-size:69.346128pt;}
.fs3{font-size:74.548084pt;}
.fs9{font-size:79.990138pt;}
.fs0{font-size:80.030153pt;}
.fs7{font-size:85.352159pt;}
.fsa{font-size:106.680195pt;}
.fs2{font-size:347.010749pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y33{bottom:11.004140pt;}
.y6{bottom:12.004502pt;}
.y5f{bottom:21.621001pt;}
.ya{bottom:24.286313pt;}
.y5{bottom:30.011286pt;}
.y32{bottom:31.011679pt;}
.y4{bottom:48.018071pt;}
.y31{bottom:51.019217pt;}
.y2d{bottom:52.324560pt;}
.y3{bottom:55.361021pt;}
.y60{bottom:61.076359pt;}
.y2c{bottom:61.256568pt;}
.y30{bottom:71.026755pt;}
.y2b{bottom:83.264860pt;}
.y2f{bottom:91.034294pt;}
.y2a{bottom:105.273152pt;}
.y2e{bottom:111.041832pt;}
.y29{bottom:127.281444pt;}
.y38{bottom:131.049371pt;}
.y37{bottom:151.056909pt;}
.y17{bottom:160.617033pt;}
.y36{bottom:171.064447pt;}
.y16{bottom:180.624572pt;}
.y35{bottom:191.071986pt;}
.y39{bottom:197.379158pt;}
.y15{bottom:200.632110pt;}
.y14{bottom:220.639648pt;}
.y34{bottom:229.016476pt;}
.y13{bottom:260.654725pt;}
.y12{bottom:280.662264pt;}
.y11{bottom:300.669802pt;}
.y10{bottom:320.677340pt;}
.y28{bottom:320.678268pt;}
.yf{bottom:340.684879pt;}
.y27{bottom:340.685807pt;}
.ye{bottom:360.692417pt;}
.y26{bottom:360.693345pt;}
.yd{bottom:380.699955pt;}
.y25{bottom:380.700883pt;}
.yc{bottom:400.707494pt;}
.y24{bottom:400.708422pt;}
.yb{bottom:420.715032pt;}
.y23{bottom:420.715960pt;}
.y1e{bottom:443.024324pt;}
.y22{bottom:446.792413pt;}
.y44{bottom:451.419699pt;}
.y1d{bottom:463.031862pt;}
.y21{bottom:466.799952pt;}
.y20{bottom:486.807490pt;}
.y45{bottom:487.885781pt;}
.y2{bottom:493.576714pt;}
.y1f{bottom:506.815028pt;}
.y5e{bottom:511.027838pt;}
.y56{bottom:513.962254pt;}
.y5d{bottom:531.035376pt;}
.y1c{bottom:532.891511pt;}
.y55{bottom:533.969792pt;}
.y5c{bottom:551.042915pt;}
.y1b{bottom:552.899049pt;}
.y54{bottom:553.977331pt;}
.y5b{bottom:571.050453pt;}
.y1a{bottom:572.906587pt;}
.y53{bottom:591.057991pt;}
.y19{bottom:595.672099pt;}
.y52{bottom:611.065530pt;}
.y18{bottom:620.681522pt;}
.y5a{bottom:631.073068pt;}
.y51{bottom:648.146194pt;}
.y59{bottom:651.080606pt;}
.y50{bottom:668.153732pt;}
.y58{bottom:671.088145pt;}
.y57{bottom:691.095683pt;}
.y4f{bottom:705.234355pt;}
.y43{bottom:719.773150pt;}
.y4e{bottom:725.241893pt;}
.y42{bottom:744.782573pt;}
.y4d{bottom:762.322557pt;}
.y4c{bottom:782.330095pt;}
.y4b{bottom:802.337634pt;}
.y41{bottom:821.752092pt;}
.y4a{bottom:839.418275pt;}
.y40{bottom:845.761138pt;}
.y49{bottom:859.425814pt;}
.y3f{bottom:869.770184pt;}
.y7{bottom:889.539219pt;}
.y3e{bottom:893.779230pt;}
.y48{bottom:896.506475pt;}
.y47{bottom:916.514013pt;}
.y3d{bottom:917.788276pt;}
.y3c{bottom:941.797322pt;}
.y46{bottom:946.427871pt;}
.y3a{bottom:974.217870pt;}
.y8{bottom:977.576186pt;}
.y9{bottom:1028.274170pt;}
.y3b{bottom:1038.598073pt;}
.h5{height:41.978656pt;}
.h16{height:43.527279pt;}
.hb{height:43.790698pt;}
.hd{height:43.820590pt;}
.ha{height:46.135582pt;}
.he{height:46.167074pt;}
.hf{height:47.476207pt;}
.h9{height:47.796128pt;}
.h11{height:50.355492pt;}
.h7{height:53.078236pt;}
.h8{height:54.575403pt;}
.h14{height:55.690982pt;}
.h10{height:55.728997pt;}
.h15{height:62.952239pt;}
.h3{height:62.983731pt;}
.h4{height:67.025232pt;}
.hc{height:67.172149pt;}
.h17{height:83.957313pt;}
.h12{height:131.049371pt;}
.h13{height:211.079524pt;}
.h6{height:247.765675pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w3{width:303.114167pt;}
.w2{width:353.133070pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:4.001508pt;}
.x3{left:10.175709pt;}
.x4{left:33.856506pt;}
.x14{left:64.355159pt;}
.x26{left:67.685840pt;}
.x2a{left:71.815923pt;}
.x6{left:74.250738pt;}
.x7{left:79.399997pt;}
.x2{left:81.321763pt;}
.x1a{left:83.207314pt;}
.x19{left:88.365507pt;}
.x18{left:89.400185pt;}
.xc{left:91.983071pt;}
.x1b{left:95.164944pt;}
.x1d{left:97.243852pt;}
.x5{left:98.333925pt;}
.x1f{left:102.355153pt;}
.xf{left:108.247991pt;}
.x1c{left:109.811087pt;}
.x1e{left:111.889995pt;}
.x10{left:114.000158pt;}
.x20{left:117.001296pt;}
.x21{left:126.989435pt;}
.x22{left:130.834633pt;}
.x23{left:145.480777pt;}
.xb{left:147.888763pt;}
.x17{left:158.790366pt;}
.x24{left:161.936121pt;}
.xa{left:185.934348pt;}
.x16{left:435.486740pt;}
.x9{left:442.086388pt;}
.xd{left:447.511891pt;}
.x25{left:453.774881pt;}
.x29{left:459.413049pt;}
.x28{left:460.418009pt;}
.x12{left:463.234981pt;}
.x11{left:468.205604pt;}
.x27{left:475.562773pt;}
.x1{left:479.213931pt;}
.x13{left:504.531791pt;}
.xe{left:542.031879pt;}
.x2b{left:602.100447pt;}
.x8{left:612.101203pt;}
}




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