
    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_f3ca0ecaf670d03e31a6c928.woff')format("woff");}.ff1{font-family:ff1;line-height:1.163086;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_69bc5ba257315975c93e48e8.woff')format("woff");}.ff2{font-family:ff2;line-height:0.945312;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_ca203a9589036071b220781c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.945312;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_a27363d06ed2136975a46c60.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_0c68405957c63a2926f35530.woff')format("woff");}.ff5{font-family:ff5;line-height:0.945312;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v4{vertical-align:-68.040000px;}
.v3{vertical-align:-59.940000px;}
.v2{vertical-align:-50.949000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:59.940000px;}
.ls6{letter-spacing:-7.200000px;}
.ls7{letter-spacing:-4.800000px;}
.ls4{letter-spacing:-3.600000px;}
.ls5{letter-spacing:-2.430000px;}
.ls8{letter-spacing:-2.400000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.014418px;}
.ls1{letter-spacing:0.016680px;}
.ls0{letter-spacing:0.017280px;}
.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:-92.160000px;}
.ws5{word-spacing:-84.960000px;}
.ws2{word-spacing:-46.080000px;}
.ws4{word-spacing:-45.900000px;}
.ws8{word-spacing:-42.480000px;}
.ws6{word-spacing:-38.250000px;}
.ws0{word-spacing:-30.720000px;}
.ws7{word-spacing:-28.320000px;}
.ws3{word-spacing:-26.864640px;}
.wsa{word-spacing:-12.288000px;}
.ws16{word-spacing:-10.800000px;}
.ws12{word-spacing:-9.900000px;}
.ws13{word-spacing:-9.720000px;}
.ws1e{word-spacing:-7.500000px;}
.wse{word-spacing:-7.200000px;}
.wsf{word-spacing:-6.120000px;}
.ws1b{word-spacing:-6.000000px;}
.ws15{word-spacing:-5.400000px;}
.ws20{word-spacing:-4.800000px;}
.ws1c{word-spacing:-4.500000px;}
.wsc{word-spacing:-3.600000px;}
.ws1d{word-spacing:-3.450000px;}
.ws1a{word-spacing:-3.000000px;}
.ws17{word-spacing:-2.700000px;}
.ws10{word-spacing:-2.400000px;}
.ws14{word-spacing:-1.800000px;}
.ws21{word-spacing:-1.680000px;}
.wsb{word-spacing:0.000000px;}
.ws18{word-spacing:0.630000px;}
.ws19{word-spacing:0.900000px;}
.ws1f{word-spacing:2.400000px;}
.wsd{word-spacing:3.600000px;}
.ws11{word-spacing:23.040000px;}
.ws9{word-spacing:547.800000px;}
._b{margin-left:-20.842200px;}
._1b{margin-left:-17.985000px;}
._0{margin-left:-16.842000px;}
._e{margin-left:-14.347800px;}
._15{margin-left:-12.600000px;}
._d{margin-left:-11.383800px;}
._6{margin-left:-10.208400px;}
._1{margin-left:-8.442000px;}
._5{margin-left:-7.218000px;}
._9{margin-left:-5.475000px;}
._2{margin-left:-3.990000px;}
._8{margin-left:-2.830200px;}
._3{margin-left:-1.482000px;}
._a{width:1.635600px;}
._18{width:2.824200px;}
._4{width:3.828000px;}
._c{width:5.550600px;}
._7{width:7.644000px;}
._f{width:10.226400px;}
._11{width:11.670000px;}
._12{width:14.010000px;}
._10{width:18.552000px;}
._14{width:19.850400px;}
._13{width:23.784000px;}
._17{width:307.950600px;}
._16{width:402.177600px;}
._19{width:1012.552200px;}
._1a{width:1187.622600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:48.000000px;}
.fs3{font-size:89.199000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:104.940000px;}
.fs6{font-size:120.000000px;}
.fs8{font-size:150.000000px;}
.fs4{font-size:153.000000px;}
.fs1{font-size:180.000000px;}
.fs5{font-size:360.000000px;}
.fs0{font-size:420.000000px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.749350px;}
.ya{bottom:41.749500px;}
.y52{bottom:77.749350px;}
.y9{bottom:77.749500px;}
.y2b{bottom:314.493150px;}
.y38{bottom:317.226600px;}
.y37{bottom:362.226600px;}
.y36{bottom:407.226600px;}
.y35{bottom:452.226600px;}
.y34{bottom:497.226600px;}
.y33{bottom:542.226600px;}
.y32{bottom:587.226600px;}
.y31{bottom:677.226600px;}
.y30{bottom:722.226600px;}
.y2f{bottom:767.226600px;}
.y2a{bottom:794.508150px;}
.y2e{bottom:812.226600px;}
.y2d{bottom:857.226600px;}
.y2c{bottom:994.350600px;}
.y27{bottom:1105.728450px;}
.y25{bottom:1150.712550px;}
.y28{bottom:1150.728450px;}
.y26{bottom:1165.703970px;}
.y23{bottom:1233.287550px;}
.y22{bottom:1278.271650px;}
.y24{bottom:1278.287550px;}
.y3b{bottom:1341.981300px;}
.y21{bottom:1360.846650px;}
.y3a{bottom:1395.981300px;}
.y20{bottom:1405.846650px;}
.y1e{bottom:1488.405750px;}
.y1d{bottom:1533.389700px;}
.y1f{bottom:1533.405750px;}
.y57{bottom:1538.827200px;}
.y56{bottom:1574.827200px;}
.y1b{bottom:1615.964700px;}
.y1c{bottom:1660.964700px;}
.y1a{bottom:1660.979400px;}
.y47{bottom:1692.890250px;}
.y55{bottom:1755.284850px;}
.y19{bottom:1769.789400px;}
.y49{bottom:1787.567100px;}
.y48{bottom:1823.567100px;}
.y18{bottom:1823.789400px;}
.y4a{bottom:1966.382850px;}
.y29{bottom:1972.303500px;}
.y54{bottom:2048.671200px;}
.y4d{bottom:2112.843000px;}
.y4c{bottom:2148.843000px;}
.y60{bottom:2266.055850px;}
.y15{bottom:2289.805350px;}
.y5f{bottom:2302.055850px;}
.y4f{bottom:2333.945400px;}
.y51{bottom:2333.945850px;}
.y5e{bottom:2338.055850px;}
.y14{bottom:2343.805350px;}
.y4b{bottom:2351.945850px;}
.y4e{bottom:2369.945400px;}
.y50{bottom:2369.945850px;}
.y5d{bottom:2374.055850px;}
.y13{bottom:2397.805350px;}
.y46{bottom:2485.122750px;}
.y16{bottom:2546.319150px;}
.y45{bottom:2769.772650px;}
.y42{bottom:2777.142750px;}
.y44{bottom:2805.772650px;}
.y12{bottom:2863.395600px;}
.y11{bottom:2917.395600px;}
.y10{bottom:2971.395600px;}
.yf{bottom:3025.395600px;}
.y39{bottom:3035.753100px;}
.ye{bottom:3079.395600px;}
.yd{bottom:3133.395600px;}
.y17{bottom:3227.091750px;}
.y40{bottom:3320.402400px;}
.y3f{bottom:3356.402400px;}
.y59{bottom:3391.558950px;}
.y5a{bottom:3394.738950px;}
.y58{bottom:3411.748950px;}
.y41{bottom:3451.079250px;}
.y5c{bottom:3477.294000px;}
.y43{bottom:3553.126800px;}
.y3d{bottom:3591.272400px;}
.y5b{bottom:3603.208950px;}
.yc{bottom:3619.395600px;}
.y3c{bottom:3645.272400px;}
.y3e{bottom:3650.162100px;}
.yb{bottom:3673.395600px;}
.y8{bottom:3821.909550px;}
.y7{bottom:4162.166700px;}
.y6{bottom:4208.066550px;}
.y5{bottom:4253.966700px;}
.y4{bottom:4299.866850px;}
.y3{bottom:4378.929450px;}
.y2{bottom:4443.729450px;}
.y1{bottom:4551.729450px;}
.h10{height:45.984375px;}
.ha{height:66.621094px;}
.hf{height:88.828125px;}
.h5{height:95.626195px;}
.h6{height:95.626795px;}
.hc{height:100.533340px;}
.hb{height:111.035156px;}
.h8{height:114.960938px;}
.h9{height:133.242188px;}
.he{height:143.701172px;}
.h3{height:172.441406px;}
.h4{height:172.442006px;}
.hd{height:266.484375px;}
.h7{height:344.882812px;}
.h2{height:402.363281px;}
.h0{height:5055.585000px;}
.h1{height:5055.750000px;}
.w0{width:3575.910000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x3{left:170.078850px;}
.x7{left:176.063850px;}
.x6{left:194.416500px;}
.xf{left:235.750200px;}
.xd{left:456.101550px;}
.x5{left:642.869250px;}
.xc{left:789.900045px;}
.x4{left:1031.465400px;}
.xe{left:1066.633800px;}
.xb{left:1087.076550px;}
.xa{left:1174.044450px;}
.x9{left:1195.029750px;}
.x8{left:1307.022900px;}
.x11{left:1743.307050px;}
.x25{left:1777.980450px;}
.x19{left:1781.644950px;}
.x14{left:1791.305100px;}
.x27{left:1793.361450px;}
.x18{left:1799.134950px;}
.x26{left:1830.231450px;}
.x17{left:1848.308850px;}
.x13{left:1856.240100px;}
.x21{left:1992.105450px;}
.x2b{left:2094.071850px;}
.x2c{left:2097.341850px;}
.x20{left:2108.210700px;}
.x10{left:2329.147200px;}
.x28{left:2332.249650px;}
.x3b{left:2353.006350px;}
.x2a{left:2368.398600px;}
.x3c{left:2374.816350px;}
.x29{left:2386.038600px;}
.x3d{left:2387.536350px;}
.x1e{left:2393.034150px;}
.x1f{left:2417.454150px;}
.x24{left:2467.039500px;}
.x23{left:2471.179500px;}
.x1b{left:2505.765000px;}
.x1a{left:2515.330500px;}
.x1c{left:2544.765000px;}
.x2{left:2603.339400px;}
.x2d{left:2612.856300px;}
.x2e{left:2641.926300px;}
.x35{left:2707.868700px;}
.x39{left:2759.127750px;}
.x38{left:2807.187750px;}
.x30{left:2874.173700px;}
.x2f{left:2877.503700px;}
.x1d{left:2887.863600px;}
.x37{left:2935.467750px;}
.x36{left:3066.747750px;}
.x15{left:3083.245650px;}
.x16{left:3092.875650px;}
.x34{left:3113.506350px;}
.x3a{left:3116.025150px;}
.x32{left:3143.303250px;}
.x33{left:3165.881850px;}
.x22{left:3177.711150px;}
.x31{left:3179.153250px;}
.x12{left:3257.188800px;}
@media print{
.v4{vertical-align:-60.480000pt;}
.v3{vertical-align:-53.280000pt;}
.v2{vertical-align:-45.288000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:53.280000pt;}
.ls6{letter-spacing:-6.400000pt;}
.ls7{letter-spacing:-4.266667pt;}
.ls4{letter-spacing:-3.200000pt;}
.ls5{letter-spacing:-2.160000pt;}
.ls8{letter-spacing:-2.133333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.012816pt;}
.ls1{letter-spacing:0.014827pt;}
.ls0{letter-spacing:0.015360pt;}
.ws1{word-spacing:-81.920000pt;}
.ws5{word-spacing:-75.520000pt;}
.ws2{word-spacing:-40.960000pt;}
.ws4{word-spacing:-40.800000pt;}
.ws8{word-spacing:-37.760000pt;}
.ws6{word-spacing:-34.000000pt;}
.ws0{word-spacing:-27.306667pt;}
.ws7{word-spacing:-25.173333pt;}
.ws3{word-spacing:-23.879680pt;}
.wsa{word-spacing:-10.922667pt;}
.ws16{word-spacing:-9.600000pt;}
.ws12{word-spacing:-8.800000pt;}
.ws13{word-spacing:-8.640000pt;}
.ws1e{word-spacing:-6.666667pt;}
.wse{word-spacing:-6.400000pt;}
.wsf{word-spacing:-5.440000pt;}
.ws1b{word-spacing:-5.333333pt;}
.ws15{word-spacing:-4.800000pt;}
.ws20{word-spacing:-4.266667pt;}
.ws1c{word-spacing:-4.000000pt;}
.wsc{word-spacing:-3.200000pt;}
.ws1d{word-spacing:-3.066667pt;}
.ws1a{word-spacing:-2.666667pt;}
.ws17{word-spacing:-2.400000pt;}
.ws10{word-spacing:-2.133333pt;}
.ws14{word-spacing:-1.600000pt;}
.ws21{word-spacing:-1.493333pt;}
.wsb{word-spacing:0.000000pt;}
.ws18{word-spacing:0.560000pt;}
.ws19{word-spacing:0.800000pt;}
.ws1f{word-spacing:2.133333pt;}
.wsd{word-spacing:3.200000pt;}
.ws11{word-spacing:20.480000pt;}
.ws9{word-spacing:486.933333pt;}
._b{margin-left:-18.526400pt;}
._1b{margin-left:-15.986667pt;}
._0{margin-left:-14.970667pt;}
._e{margin-left:-12.753600pt;}
._15{margin-left:-11.200000pt;}
._d{margin-left:-10.118933pt;}
._6{margin-left:-9.074133pt;}
._1{margin-left:-7.504000pt;}
._5{margin-left:-6.416000pt;}
._9{margin-left:-4.866667pt;}
._2{margin-left:-3.546667pt;}
._8{margin-left:-2.515733pt;}
._3{margin-left:-1.317333pt;}
._a{width:1.453867pt;}
._18{width:2.510400pt;}
._4{width:3.402667pt;}
._c{width:4.933867pt;}
._7{width:6.794667pt;}
._f{width:9.090133pt;}
._11{width:10.373333pt;}
._12{width:12.453333pt;}
._10{width:16.490667pt;}
._14{width:17.644800pt;}
._13{width:21.141333pt;}
._17{width:273.733867pt;}
._16{width:357.491200pt;}
._19{width:900.046400pt;}
._1a{width:1055.664533pt;}
.fs9{font-size:42.666667pt;}
.fs3{font-size:79.288000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:93.280000pt;}
.fs6{font-size:106.666667pt;}
.fs8{font-size:133.333333pt;}
.fs4{font-size:136.000000pt;}
.fs1{font-size:160.000000pt;}
.fs5{font-size:320.000000pt;}
.fs0{font-size:373.333333pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:37.110533pt;}
.ya{bottom:37.110667pt;}
.y52{bottom:69.110533pt;}
.y9{bottom:69.110667pt;}
.y2b{bottom:279.549467pt;}
.y38{bottom:281.979200pt;}
.y37{bottom:321.979200pt;}
.y36{bottom:361.979200pt;}
.y35{bottom:401.979200pt;}
.y34{bottom:441.979200pt;}
.y33{bottom:481.979200pt;}
.y32{bottom:521.979200pt;}
.y31{bottom:601.979200pt;}
.y30{bottom:641.979200pt;}
.y2f{bottom:681.979200pt;}
.y2a{bottom:706.229467pt;}
.y2e{bottom:721.979200pt;}
.y2d{bottom:761.979200pt;}
.y2c{bottom:883.867200pt;}
.y27{bottom:982.869733pt;}
.y25{bottom:1022.855600pt;}
.y28{bottom:1022.869733pt;}
.y26{bottom:1036.181307pt;}
.y23{bottom:1096.255600pt;}
.y22{bottom:1136.241467pt;}
.y24{bottom:1136.255600pt;}
.y3b{bottom:1192.872267pt;}
.y21{bottom:1209.641467pt;}
.y3a{bottom:1240.872267pt;}
.y20{bottom:1249.641467pt;}
.y1e{bottom:1323.027333pt;}
.y1d{bottom:1363.013067pt;}
.y1f{bottom:1363.027333pt;}
.y57{bottom:1367.846400pt;}
.y56{bottom:1399.846400pt;}
.y1b{bottom:1436.413067pt;}
.y1c{bottom:1476.413067pt;}
.y1a{bottom:1476.426133pt;}
.y47{bottom:1504.791333pt;}
.y55{bottom:1560.253200pt;}
.y19{bottom:1573.146133pt;}
.y49{bottom:1588.948533pt;}
.y48{bottom:1620.948533pt;}
.y18{bottom:1621.146133pt;}
.y4a{bottom:1747.895867pt;}
.y29{bottom:1753.158667pt;}
.y54{bottom:1821.041067pt;}
.y4d{bottom:1878.082667pt;}
.y4c{bottom:1910.082667pt;}
.y60{bottom:2014.271867pt;}
.y15{bottom:2035.382533pt;}
.y5f{bottom:2046.271867pt;}
.y4f{bottom:2074.618133pt;}
.y51{bottom:2074.618533pt;}
.y5e{bottom:2078.271867pt;}
.y14{bottom:2083.382533pt;}
.y4b{bottom:2090.618533pt;}
.y4e{bottom:2106.618133pt;}
.y50{bottom:2106.618533pt;}
.y5d{bottom:2110.271867pt;}
.y13{bottom:2131.382533pt;}
.y46{bottom:2208.998000pt;}
.y16{bottom:2263.394800pt;}
.y45{bottom:2462.020133pt;}
.y42{bottom:2468.571333pt;}
.y44{bottom:2494.020133pt;}
.y12{bottom:2545.240533pt;}
.y11{bottom:2593.240533pt;}
.y10{bottom:2641.240533pt;}
.yf{bottom:2689.240533pt;}
.y39{bottom:2698.447200pt;}
.ye{bottom:2737.240533pt;}
.yd{bottom:2785.240533pt;}
.y17{bottom:2868.526000pt;}
.y40{bottom:2951.468800pt;}
.y3f{bottom:2983.468800pt;}
.y59{bottom:3014.719067pt;}
.y5a{bottom:3017.545733pt;}
.y58{bottom:3032.665733pt;}
.y41{bottom:3067.626000pt;}
.y5c{bottom:3090.928000pt;}
.y43{bottom:3158.334933pt;}
.y3d{bottom:3192.242133pt;}
.y5b{bottom:3202.852400pt;}
.yc{bottom:3217.240533pt;}
.y3c{bottom:3240.242133pt;}
.y3e{bottom:3244.588533pt;}
.yb{bottom:3265.240533pt;}
.y8{bottom:3397.252933pt;}
.y7{bottom:3699.703733pt;}
.y6{bottom:3740.503600pt;}
.y5{bottom:3781.303733pt;}
.y4{bottom:3822.103867pt;}
.y3{bottom:3892.381733pt;}
.y2{bottom:3949.981733pt;}
.y1{bottom:4045.981733pt;}
.h10{height:40.875000pt;}
.ha{height:59.218750pt;}
.hf{height:78.958333pt;}
.h5{height:85.001062pt;}
.h6{height:85.001596pt;}
.hc{height:89.362969pt;}
.hb{height:98.697917pt;}
.h8{height:102.187500pt;}
.h9{height:118.437500pt;}
.he{height:127.734375pt;}
.h3{height:153.281250pt;}
.h4{height:153.281783pt;}
.hd{height:236.875000pt;}
.h7{height:306.562500pt;}
.h2{height:357.656250pt;}
.h0{height:4493.853333pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.586667pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x3{left:151.181200pt;}
.x7{left:156.501200pt;}
.x6{left:172.814667pt;}
.xf{left:209.555733pt;}
.xd{left:405.423600pt;}
.x5{left:571.439333pt;}
.xc{left:702.133373pt;}
.x4{left:916.858133pt;}
.xe{left:948.118933pt;}
.xb{left:966.290267pt;}
.xa{left:1043.595067pt;}
.x9{left:1062.248667pt;}
.x8{left:1161.798133pt;}
.x11{left:1549.606267pt;}
.x25{left:1580.427067pt;}
.x19{left:1583.684400pt;}
.x14{left:1592.271200pt;}
.x27{left:1594.099067pt;}
.x18{left:1599.231067pt;}
.x26{left:1626.872400pt;}
.x17{left:1642.941200pt;}
.x13{left:1649.991200pt;}
.x21{left:1770.760400pt;}
.x2b{left:1861.397200pt;}
.x2c{left:1864.303867pt;}
.x20{left:1873.965067pt;}
.x10{left:2070.353067pt;}
.x28{left:2073.110800pt;}
.x3b{left:2091.561200pt;}
.x2a{left:2105.243200pt;}
.x3c{left:2110.947867pt;}
.x29{left:2120.923200pt;}
.x3d{left:2122.254533pt;}
.x1e{left:2127.141467pt;}
.x1f{left:2148.848133pt;}
.x24{left:2192.924000pt;}
.x23{left:2196.604000pt;}
.x1b{left:2227.346667pt;}
.x1a{left:2235.849333pt;}
.x1c{left:2262.013333pt;}
.x2{left:2314.079467pt;}
.x2d{left:2322.538933pt;}
.x2e{left:2348.378933pt;}
.x35{left:2406.994400pt;}
.x39{left:2452.558000pt;}
.x38{left:2495.278000pt;}
.x30{left:2554.821067pt;}
.x2f{left:2557.781067pt;}
.x1d{left:2566.989867pt;}
.x37{left:2609.304667pt;}
.x36{left:2725.998000pt;}
.x15{left:2740.662800pt;}
.x16{left:2749.222800pt;}
.x34{left:2767.561200pt;}
.x3a{left:2769.800133pt;}
.x32{left:2794.047333pt;}
.x33{left:2814.117200pt;}
.x22{left:2824.632133pt;}
.x31{left:2825.914000pt;}
.x12{left:2895.278933pt;}
}




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