
    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_4f88430bdf52de2b399e8ea4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284180;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_a61682498bbe719877502087.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_eb943eedf2ddd302fb7eb2e6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_b337a5e3c3ade52664b7e3be.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.873047;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_fcdd4d544059f5127d7f6f8a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_654f36724c34f20b47a8cf6b.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_89e88be371cc1678e8522d41.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;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);}
.v2{vertical-align:-33.120000px;}
.v3{vertical-align:-9.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls36{letter-spacing:-27.240000px;}
.ls41{letter-spacing:-22.680000px;}
.ls35{letter-spacing:-14.640000px;}
.lse{letter-spacing:-1.008000px;}
.ls2d{letter-spacing:-0.936000px;}
.ls4e{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.720000px;}
.ls7{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.576000px;}
.ls1c{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.288000px;}
.ls3f{letter-spacing:-0.220200px;}
.ls10{letter-spacing:-0.216000px;}
.ls42{letter-spacing:-0.206400px;}
.ls45{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.144000px;}
.ls40{letter-spacing:-0.139800px;}
.ls8{letter-spacing:-0.072000px;}
.ls44{letter-spacing:-0.053280px;}
.ls43{letter-spacing:-0.013320px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls3d{letter-spacing:0.090000px;}
.ls12{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.300000px;}
.ls38{letter-spacing:0.355680px;}
.ls17{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.ls37{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.504000px;}
.ls33{letter-spacing:0.540000px;}
.ls22{letter-spacing:1.080000px;}
.lsd{letter-spacing:1.440000px;}
.ls23{letter-spacing:1.800000px;}
.ls31{letter-spacing:2.160000px;}
.ls2a{letter-spacing:2.520000px;}
.ls16{letter-spacing:3.240000px;}
.ls20{letter-spacing:3.600000px;}
.ls1d{letter-spacing:3.960000px;}
.ls2f{letter-spacing:4.320000px;}
.ls46{letter-spacing:4.680000px;}
.ls39{letter-spacing:5.040000px;}
.ls3c{letter-spacing:5.400000px;}
.ls1b{letter-spacing:5.760000px;}
.ls2c{letter-spacing:6.120000px;}
.lsb{letter-spacing:6.480000px;}
.ls4a{letter-spacing:6.840000px;}
.ls21{letter-spacing:7.200000px;}
.ls15{letter-spacing:7.920000px;}
.ls29{letter-spacing:8.280000px;}
.ls2e{letter-spacing:8.640000px;}
.ls28{letter-spacing:9.000000px;}
.ls48{letter-spacing:9.120000px;}
.ls24{letter-spacing:11.160000px;}
.ls1f{letter-spacing:11.880000px;}
.ls47{letter-spacing:12.240000px;}
.ls2b{letter-spacing:12.960000px;}
.ls14{letter-spacing:14.400000px;}
.ls13{letter-spacing:14.760000px;}
.ls3a{letter-spacing:15.120000px;}
.ls3b{letter-spacing:15.240000px;}
.ls27{letter-spacing:15.480000px;}
.lsc{letter-spacing:16.200000px;}
.ls34{letter-spacing:18.720000px;}
.ls19{letter-spacing:19.800000px;}
.ls1e{letter-spacing:20.520000px;}
.ls2{letter-spacing:21.240000px;}
.ls25{letter-spacing:21.600000px;}
.ls4d{letter-spacing:28.224000px;}
.ls26{letter-spacing:28.800000px;}
.ls4c{letter-spacing:32.760000px;}
.ls4b{letter-spacing:36.360000px;}
.ls1a{letter-spacing:48.600000px;}
.ls49{letter-spacing:64.224000px;}
.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;}
}
.wsf{word-spacing:-72.072000px;}
.wsc{word-spacing:-72.000000px;}
.ws18{word-spacing:-71.928000px;}
.ws1f{word-spacing:-60.120000px;}
.ws5{word-spacing:-47.880000px;}
.ws4{word-spacing:-26.856000px;}
.ws3{word-spacing:-21.150000px;}
.ws14{word-spacing:-18.504000px;}
.ws6{word-spacing:-18.432000px;}
.ws13{word-spacing:-18.360000px;}
.ws17{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.712000px;}
.ws2{word-spacing:-17.640000px;}
.ws15{word-spacing:-17.496000px;}
.wsa{word-spacing:-17.424000px;}
.ws7{word-spacing:-17.352000px;}
.ws10{word-spacing:-17.280000px;}
.ws29{word-spacing:-17.136000px;}
.ws16{word-spacing:-17.064000px;}
.wse{word-spacing:-16.992000px;}
.ws20{word-spacing:-15.210000px;}
.ws24{word-spacing:-15.183600px;}
.ws19{word-spacing:-15.030000px;}
.ws25{word-spacing:-15.016680px;}
.ws26{word-spacing:-14.976720px;}
.ws21{word-spacing:-14.890200px;}
.ws27{word-spacing:-14.850000px;}
.ws23{word-spacing:-14.823600px;}
.ws1e{word-spacing:-14.809800px;}
.ws1d{word-spacing:-11.970000px;}
.wsd{word-spacing:0.000000px;}
.ws28{word-spacing:11.232000px;}
.ws1a{word-spacing:11.304000px;}
.ws22{word-spacing:29.856600px;}
.ws1c{word-spacing:36.360000px;}
.ws1b{word-spacing:36.480000px;}
._32{margin-left:-35.322480px;}
._2e{margin-left:-32.525520px;}
._2a{margin-left:-31.454640px;}
._2c{margin-left:-27.216000px;}
._31{margin-left:-23.058480px;}
._1{margin-left:-19.896000px;}
._2b{margin-left:-18.744000px;}
._28{margin-left:-15.720000px;}
._1f{margin-left:-14.346480px;}
._2f{margin-left:-4.578480px;}
._2d{margin-left:-3.432000px;}
._11{margin-left:-2.328000px;}
._2{margin-left:-1.200000px;}
._0{width:1.026480px;}
._8{width:2.376000px;}
._6{width:3.408000px;}
._5{width:4.512000px;}
._18{width:5.520000px;}
._c{width:6.696000px;}
._d{width:7.728000px;}
._e{width:9.629520px;}
._10{width:10.632000px;}
._19{width:11.736000px;}
._14{width:13.176000px;}
._15{width:14.184000px;}
._16{width:15.480000px;}
._17{width:16.968000px;}
._12{width:19.176000px;}
._7{width:20.232000px;}
._a{width:21.648000px;}
._20{width:23.520000px;}
._1c{width:24.552000px;}
._1b{width:25.680000px;}
._22{width:27.408000px;}
._13{width:29.208000px;}
._23{width:30.672000px;}
._4{width:32.400000px;}
._b{width:33.888000px;}
._24{width:35.616000px;}
._9{width:36.696000px;}
._21{width:37.704000px;}
._1a{width:39.384000px;}
._34{width:40.397520px;}
._1e{width:41.832000px;}
._3{width:44.280000px;}
._25{width:45.408000px;}
._29{width:47.496000px;}
._1d{width:48.504000px;}
._33{width:50.232000px;}
._27{width:61.536000px;}
._26{width:62.904000px;}
._f{width:2068.704000px;}
._30{width:3544.944000px;}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(0,128,128);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.880000px;}
.fs1{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.880000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:3.240000px;}
.y10a{bottom:4.500000px;}
.y110{bottom:5.220000px;}
.y115{bottom:5.310000px;}
.y109{bottom:27.000000px;}
.y10d{bottom:27.720000px;}
.y113{bottom:27.810000px;}
.y124{bottom:27.840000px;}
.y13f{bottom:28.530000px;}
.y129{bottom:46.080000px;}
.y29{bottom:46.110000px;}
.y77{bottom:80.760000px;}
.yb3{bottom:82.560000px;}
.y101{bottom:85.260000px;}
.yed{bottom:89.130000px;}
.y158{bottom:89.760000px;}
.y4f{bottom:90.570000px;}
.y15e{bottom:95.790000px;}
.y94{bottom:100.920000px;}
.y76{bottom:106.320000px;}
.yb2{bottom:108.030000px;}
.y100{bottom:110.820000px;}
.y126{bottom:114.120000px;}
.yec{bottom:114.600000px;}
.y157{bottom:115.320000px;}
.y4e{bottom:116.040000px;}
.y25{bottom:117.300000px;}
.y15d{bottom:121.260000px;}
.y16d{bottom:125.760000px;}
.y93{bottom:126.390000px;}
.y75{bottom:131.790000px;}
.yb1{bottom:133.590000px;}
.yff{bottom:136.290000px;}
.y127{bottom:137.340000px;}
.yca{bottom:138.900000px;}
.yeb{bottom:140.160000px;}
.y4d{bottom:141.510000px;}
.y24{bottom:142.770000px;}
.y15c{bottom:146.820000px;}
.y16c{bottom:151.320000px;}
.y92{bottom:151.860000px;}
.y74{bottom:157.260000px;}
.y156{bottom:158.790000px;}
.yb0{bottom:159.060000px;}
.y123{bottom:160.560000px;}
.yfe{bottom:161.760000px;}
.yea{bottom:165.630000px;}
.y4c{bottom:167.070000px;}
.y23{bottom:168.240000px;}
.y15b{bottom:172.290000px;}
.y16b{bottom:176.790000px;}
.y91{bottom:177.420000px;}
.y103{bottom:179.670000px;}
.y9f{bottom:180.840000px;}
.y73{bottom:182.820000px;}
.y125{bottom:183.900000px;}
.yaf{bottom:184.530000px;}
.yfd{bottom:187.320000px;}
.ye9{bottom:191.100000px;}
.y4b{bottom:192.540000px;}
.y22{bottom:193.800000px;}
.y15a{bottom:197.760000px;}
.y155{bottom:202.260000px;}
.y90{bottom:202.890000px;}
.y121{bottom:207.120000px;}
.y72{bottom:208.290000px;}
.yae{bottom:210.090000px;}
.yfc{bottom:212.790000px;}
.ye8{bottom:216.660000px;}
.y4a{bottom:218.010000px;}
.y21{bottom:219.270000px;}
.y102{bottom:223.320000px;}
.y154{bottom:227.820000px;}
.y8f{bottom:228.360000px;}
.y122{bottom:230.340000px;}
.y13e{bottom:231.870000px;}
.y71{bottom:233.760000px;}
.yad{bottom:235.560000px;}
.yfb{bottom:238.260000px;}
.ye7{bottom:242.130000px;}
.y49{bottom:243.570000px;}
.y20{bottom:244.740000px;}
.yc9{bottom:248.790000px;}
.y153{bottom:253.290000px;}
.y11f{bottom:253.650000px;}
.y140{bottom:255.900000px;}
.y70{bottom:259.320000px;}
.yac{bottom:261.030000px;}
.yfa{bottom:263.820000px;}
.ye6{bottom:267.600000px;}
.y48{bottom:269.040000px;}
.y1f{bottom:270.300000px;}
.y8e{bottom:271.830000px;}
.yc8{bottom:274.260000px;}
.y120{bottom:276.870000px;}
.y152{bottom:278.760000px;}
.y13d{bottom:279.120000px;}
.y6f{bottom:284.790000px;}
.yab{bottom:286.590000px;}
.yf9{bottom:289.290000px;}
.ye5{bottom:293.160000px;}
.y47{bottom:294.510000px;}
.y1e{bottom:295.770000px;}
.y8c{bottom:297.300000px;}
.yc7{bottom:299.820000px;}
.y11d{bottom:300.090000px;}
.y13b{bottom:302.340000px;}
.y151{bottom:304.320000px;}
.y6e{bottom:310.260000px;}
.yaa{bottom:312.060000px;}
.yf8{bottom:314.760000px;}
.ye4{bottom:318.630000px;}
.y46{bottom:320.070000px;}
.y1d{bottom:321.240000px;}
.y11e{bottom:323.400000px;}
.yc6{bottom:325.290000px;}
.y13c{bottom:325.650000px;}
.yd7{bottom:327.360000px;}
.y150{bottom:329.790000px;}
.y6d{bottom:335.820000px;}
.y8d{bottom:336.810000px;}
.ya9{bottom:337.530000px;}
.yf7{bottom:340.320000px;}
.ye3{bottom:344.100000px;}
.y45{bottom:345.540000px;}
.y11c{bottom:346.620000px;}
.y1c{bottom:346.800000px;}
.y139{bottom:348.870000px;}
.yc5{bottom:350.760000px;}
.yd6{bottom:352.830000px;}
.y14f{bottom:355.260000px;}
.y6c{bottom:361.290000px;}
.ya8{bottom:363.090000px;}
.yf6{bottom:365.790000px;}
.ye2{bottom:369.660000px;}
.y11a{bottom:369.840000px;}
.y44{bottom:371.010000px;}
.y13a{bottom:372.090000px;}
.y1b{bottom:372.270000px;}
.yc4{bottom:376.320000px;}
.yd5{bottom:378.300000px;}
.y14e{bottom:380.820000px;}
.y8b{bottom:383.790000px;}
.y6b{bottom:386.760000px;}
.yf5{bottom:391.260000px;}
.y11b{bottom:393.150000px;}
.ye1{bottom:395.130000px;}
.y137{bottom:395.400000px;}
.y43{bottom:396.570000px;}
.y1a{bottom:397.740000px;}
.yc3{bottom:401.790000px;}
.ya7{bottom:402.510000px;}
.yd4{bottom:403.860000px;}
.y16a{bottom:406.290000px;}
.y8a{bottom:409.260000px;}
.y6a{bottom:412.320000px;}
.y118{bottom:416.370000px;}
.yf4{bottom:416.820000px;}
.y138{bottom:418.620000px;}
.ye0{bottom:420.600000px;}
.y42{bottom:422.040000px;}
.y19{bottom:423.300000px;}
.y14d{bottom:424.290000px;}
.yc2{bottom:427.260000px;}
.yd3{bottom:429.330000px;}
.y169{bottom:431.760000px;}
.y89{bottom:434.820000px;}
.y69{bottom:437.790000px;}
.y119{bottom:439.590000px;}
.y136{bottom:441.840000px;}
.yf3{bottom:442.290000px;}
.ydf{bottom:446.160000px;}
.y41{bottom:447.510000px;}
.y18{bottom:448.770000px;}
.yc1{bottom:452.820000px;}
.yd2{bottom:454.830000px;}
.y168{bottom:457.350000px;}
.y88{bottom:460.320000px;}
.y116{bottom:462.930000px;}
.y68{bottom:463.290000px;}
.y134{bottom:465.180000px;}
.yf2{bottom:467.790000px;}
.yde{bottom:471.660000px;}
.y40{bottom:473.100000px;}
.y17{bottom:474.270000px;}
.yc0{bottom:478.320000px;}
.yd1{bottom:480.390000px;}
.y167{bottom:482.820000px;}
.y87{bottom:485.790000px;}
.y117{bottom:486.150000px;}
.y135{bottom:488.400000px;}
.y67{bottom:488.850000px;}
.yf1{bottom:493.350000px;}
.ydd{bottom:497.130000px;}
.y3f{bottom:498.570000px;}
.y16{bottom:499.830000px;}
.ybf{bottom:503.790000px;}
.yd0{bottom:505.860000px;}
.y166{bottom:508.290000px;}
.y112{bottom:509.370000px;}
.y86{bottom:511.350000px;}
.y132{bottom:511.620000px;}
.y66{bottom:514.320000px;}
.yf0{bottom:518.820000px;}
.ydc{bottom:522.690000px;}
.y3e{bottom:524.040000px;}
.ybe{bottom:529.350000px;}
.ycf{bottom:531.330000px;}
.y114{bottom:532.680000px;}
.y165{bottom:533.850000px;}
.y133{bottom:534.930000px;}
.y85{bottom:536.820000px;}
.y65{bottom:539.790000px;}
.y14c{bottom:544.290000px;}
.y15{bottom:545.460000px;}
.ydb{bottom:548.160000px;}
.y3d{bottom:549.600000px;}
.ybd{bottom:554.820000px;}
.y10f{bottom:555.900000px;}
.yce{bottom:556.890000px;}
.y131{bottom:558.150000px;}
.y164{bottom:559.320000px;}
.y84{bottom:562.290000px;}
.y64{bottom:565.350000px;}
.y14b{bottom:569.850000px;}
.y14{bottom:570.930000px;}
.yda{bottom:573.630000px;}
.y3c{bottom:575.070000px;}
.y111{bottom:579.120000px;}
.ybc{bottom:580.290000px;}
.y12f{bottom:581.370000px;}
.y163{bottom:584.790000px;}
.y83{bottom:587.850000px;}
.y63{bottom:590.820000px;}
.y14a{bottom:595.320000px;}
.y13{bottom:596.490000px;}
.ycd{bottom:600.270000px;}
.y3b{bottom:600.540000px;}
.y10c{bottom:602.430000px;}
.y130{bottom:604.680000px;}
.yef{bottom:605.760000px;}
.ybb{bottom:605.850000px;}
.y82{bottom:613.320000px;}
.y62{bottom:616.290000px;}
.yd9{bottom:617.010000px;}
.y149{bottom:620.790000px;}
.y10e{bottom:625.650000px;}
.ycc{bottom:625.740000px;}
.y12d{bottom:627.900000px;}
.y162{bottom:628.170000px;}
.yba{bottom:631.320000px;}
.y81{bottom:638.790000px;}
.y12{bottom:640.050000px;}
.y61{bottom:641.850000px;}
.y3a{bottom:643.920000px;}
.y10b{bottom:648.870000px;}
.yee{bottom:649.140000px;}
.y12e{bottom:651.120000px;}
.yd8{bottom:656.610000px;}
.yb9{bottom:656.790000px;}
.y80{bottom:664.350000px;}
.ycb{bottom:665.250000px;}
.y11{bottom:665.520000px;}
.y60{bottom:667.320000px;}
.y161{bottom:671.820000px;}
.y108{bottom:672.180000px;}
.y12c{bottom:674.430000px;}
.yb8{bottom:682.350000px;}
.y39{bottom:687.570000px;}
.y7f{bottom:689.820000px;}
.y5f{bottom:692.790000px;}
.y12b{bottom:697.650000px;}
.yb7{bottom:707.820000px;}
.y38{bottom:713.040000px;}
.y160{bottom:715.110000px;}
.y7e{bottom:715.290000px;}
.y10{bottom:717.360000px;}
.y5e{bottom:718.350000px;}
.y107{bottom:731.760000px;}
.ya6{bottom:733.290000px;}
.y37{bottom:738.600000px;}
.y7d{bottom:740.850000px;}
.y5d{bottom:743.820000px;}
.y16e{bottom:751.290000px;}
.yf{bottom:752.550000px;}
.y12a{bottom:757.170000px;}
.y106{bottom:757.260000px;}
.ya5{bottom:758.850000px;}
.y36{bottom:764.070000px;}
.y7c{bottom:766.320000px;}
.y5c{bottom:769.290000px;}
.y9e{bottom:776.850000px;}
.ye{bottom:778.020000px;}
.y128{bottom:782.550000px;}
.y105{bottom:782.730000px;}
.ya4{bottom:784.320000px;}
.y35{bottom:789.540000px;}
.y7b{bottom:791.790000px;}
.y5b{bottom:794.850000px;}
.y9d{bottom:802.320000px;}
.yd{bottom:803.580000px;}
.y104{bottom:808.290000px;}
.ya3{bottom:809.790000px;}
.y34{bottom:815.100000px;}
.y5a{bottom:820.320000px;}
.y159{bottom:827.610000px;}
.y9c{bottom:827.790000px;}
.yc{bottom:829.050000px;}
.y7a{bottom:835.260000px;}
.ya2{bottom:835.350000px;}
.y33{bottom:840.570000px;}
.y59{bottom:845.790000px;}
.y9b{bottom:853.350000px;}
.y79{bottom:860.730000px;}
.yb6{bottom:860.820000px;}
.y32{bottom:866.040000px;}
.y58{bottom:871.350000px;}
.yb{bottom:872.340000px;}
.y9a{bottom:878.820000px;}
.y148{bottom:886.290000px;}
.y31{bottom:891.600000px;}
.y57{bottom:896.820000px;}
.y78{bottom:904.110000px;}
.yb5{bottom:904.200000px;}
.y99{bottom:904.290000px;}
.y147{bottom:911.850000px;}
.y30{bottom:917.070000px;}
.ya{bottom:917.880000px;}
.y56{bottom:922.290000px;}
.y15f{bottom:929.670000px;}
.yb4{bottom:929.760000px;}
.y98{bottom:929.850000px;}
.y146{bottom:937.320000px;}
.y2f{bottom:942.540000px;}
.y55{bottom:947.850000px;}
.y9{bottom:948.930000px;}
.y97{bottom:955.320000px;}
.y145{bottom:962.790000px;}
.y54{bottom:973.320000px;}
.y8{bottom:979.980000px;}
.y96{bottom:980.790000px;}
.y144{bottom:988.350000px;}
.y53{bottom:998.820000px;}
.y2e{bottom:1006.290000px;}
.y95{bottom:1006.380000px;}
.y143{bottom:1013.850000px;}
.y52{bottom:1024.380000px;}
.y7{bottom:1027.080000px;}
.y2d{bottom:1031.850000px;}
.y51{bottom:1049.850000px;}
.y6{bottom:1052.730000px;}
.y2c{bottom:1057.320000px;}
.y5{bottom:1073.250000px;}
.y50{bottom:1075.320000px;}
.y142{bottom:1082.880000px;}
.y4{bottom:1095.930000px;}
.ya1{bottom:1100.790000px;}
.y2b{bottom:1100.880000px;}
.y3{bottom:1125.900000px;}
.ya0{bottom:1126.260000px;}
.y2a{bottom:1126.350000px;}
.y2{bottom:1145.250000px;}
.y28{bottom:1151.640000px;}
.y141{bottom:1151.820000px;}
.y1{bottom:1166.580000px;}
.y27{bottom:1177.380000px;}
.h9{height:17.190000px;}
.hf{height:22.500000px;}
.h13{height:22.530000px;}
.h8{height:37.544062px;}
.he{height:45.000000px;}
.h10{height:45.720000px;}
.h12{height:45.750000px;}
.h11{height:45.810000px;}
.h14{height:45.840000px;}
.h15{height:46.530000px;}
.h3{height:59.004492px;}
.ha{height:60.589687px;}
.h7{height:70.628906px;}
.h6{height:70.664062px;}
.h2{height:72.562500px;}
.h16{height:74.004654px;}
.hb{height:80.111602px;}
.h4{height:82.323633px;}
.h5{height:108.843750px;}
.hd{height:893.250000px;}
.hc{height:893.430000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:99.180000px;}
.wa{width:101.250000px;}
.w8{width:106.230000px;}
.w9{width:117.270000px;}
.w2{width:118.920000px;}
.w5{width:160.590000px;}
.wc{width:259.770000px;}
.w7{width:375.210000px;}
.wb{width:635.070000px;}
.w1{width:893.250000px;}
.w0{width:893.430000px;}
.w4{width:1262.250000px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.xa{left:7.200000px;}
.x15{left:8.910000px;}
.x21{left:10.980000px;}
.x1e{left:14.670000px;}
.x18{left:18.630000px;}
.x23{left:20.520000px;}
.x14{left:22.590000px;}
.x1a{left:23.760000px;}
.x17{left:25.650000px;}
.x24{left:28.920000px;}
.x20{left:39.330000px;}
.x1f{left:41.220000px;}
.x22{left:45.570000px;}
.x1d{left:50.580000px;}
.x1b{left:53.040000px;}
.x1c{left:58.590000px;}
.x1{left:74.520000px;}
.x7{left:96.120000px;}
.x26{left:109.080000px;}
.x8{left:116.640000px;}
.x11{left:151.380000px;}
.x12{left:311.970000px;}
.x13{left:411.150000px;}
.x25{left:578.190000px;}
.x4{left:597.750000px;}
.x6{left:610.980000px;}
.x3{left:621.870000px;}
.x5{left:696.480000px;}
.xb{left:698.010000px;}
.x9{left:699.720000px;}
.xd{left:774.990000px;}
.xc{left:779.670000px;}
.xf{left:782.550000px;}
.x10{left:786.690000px;}
.xe{left:797.490000px;}
.x2{left:819.000000px;}
.x16{left:892.680000px;}
.x19{left:1009.950000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls36{letter-spacing:-24.213333pt;}
.ls41{letter-spacing:-20.160000pt;}
.ls35{letter-spacing:-13.013333pt;}
.lse{letter-spacing:-0.896000pt;}
.ls2d{letter-spacing:-0.832000pt;}
.ls4e{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls7{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls1c{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls3f{letter-spacing:-0.195733pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls42{letter-spacing:-0.183467pt;}
.ls45{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls40{letter-spacing:-0.124267pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls44{letter-spacing:-0.047360pt;}
.ls43{letter-spacing:-0.011840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls3d{letter-spacing:0.080000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.266667pt;}
.ls38{letter-spacing:0.316160pt;}
.ls17{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls37{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.448000pt;}
.ls33{letter-spacing:0.480000pt;}
.ls22{letter-spacing:0.960000pt;}
.lsd{letter-spacing:1.280000pt;}
.ls23{letter-spacing:1.600000pt;}
.ls31{letter-spacing:1.920000pt;}
.ls2a{letter-spacing:2.240000pt;}
.ls16{letter-spacing:2.880000pt;}
.ls20{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:3.520000pt;}
.ls2f{letter-spacing:3.840000pt;}
.ls46{letter-spacing:4.160000pt;}
.ls39{letter-spacing:4.480000pt;}
.ls3c{letter-spacing:4.800000pt;}
.ls1b{letter-spacing:5.120000pt;}
.ls2c{letter-spacing:5.440000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls4a{letter-spacing:6.080000pt;}
.ls21{letter-spacing:6.400000pt;}
.ls15{letter-spacing:7.040000pt;}
.ls29{letter-spacing:7.360000pt;}
.ls2e{letter-spacing:7.680000pt;}
.ls28{letter-spacing:8.000000pt;}
.ls48{letter-spacing:8.106667pt;}
.ls24{letter-spacing:9.920000pt;}
.ls1f{letter-spacing:10.560000pt;}
.ls47{letter-spacing:10.880000pt;}
.ls2b{letter-spacing:11.520000pt;}
.ls14{letter-spacing:12.800000pt;}
.ls13{letter-spacing:13.120000pt;}
.ls3a{letter-spacing:13.440000pt;}
.ls3b{letter-spacing:13.546667pt;}
.ls27{letter-spacing:13.760000pt;}
.lsc{letter-spacing:14.400000pt;}
.ls34{letter-spacing:16.640000pt;}
.ls19{letter-spacing:17.600000pt;}
.ls1e{letter-spacing:18.240000pt;}
.ls2{letter-spacing:18.880000pt;}
.ls25{letter-spacing:19.200000pt;}
.ls4d{letter-spacing:25.088000pt;}
.ls26{letter-spacing:25.600000pt;}
.ls4c{letter-spacing:29.120000pt;}
.ls4b{letter-spacing:32.320000pt;}
.ls1a{letter-spacing:43.200000pt;}
.ls49{letter-spacing:57.088000pt;}
.wsf{word-spacing:-64.064000pt;}
.wsc{word-spacing:-64.000000pt;}
.ws18{word-spacing:-63.936000pt;}
.ws1f{word-spacing:-53.440000pt;}
.ws5{word-spacing:-42.560000pt;}
.ws4{word-spacing:-23.872000pt;}
.ws3{word-spacing:-18.800000pt;}
.ws14{word-spacing:-16.448000pt;}
.ws6{word-spacing:-16.384000pt;}
.ws13{word-spacing:-16.320000pt;}
.ws17{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.744000pt;}
.ws2{word-spacing:-15.680000pt;}
.ws15{word-spacing:-15.552000pt;}
.wsa{word-spacing:-15.488000pt;}
.ws7{word-spacing:-15.424000pt;}
.ws10{word-spacing:-15.360000pt;}
.ws29{word-spacing:-15.232000pt;}
.ws16{word-spacing:-15.168000pt;}
.wse{word-spacing:-15.104000pt;}
.ws20{word-spacing:-13.520000pt;}
.ws24{word-spacing:-13.496533pt;}
.ws19{word-spacing:-13.360000pt;}
.ws25{word-spacing:-13.348160pt;}
.ws26{word-spacing:-13.312640pt;}
.ws21{word-spacing:-13.235733pt;}
.ws27{word-spacing:-13.200000pt;}
.ws23{word-spacing:-13.176533pt;}
.ws1e{word-spacing:-13.164267pt;}
.ws1d{word-spacing:-10.640000pt;}
.wsd{word-spacing:0.000000pt;}
.ws28{word-spacing:9.984000pt;}
.ws1a{word-spacing:10.048000pt;}
.ws22{word-spacing:26.539200pt;}
.ws1c{word-spacing:32.320000pt;}
.ws1b{word-spacing:32.426667pt;}
._32{margin-left:-31.397760pt;}
._2e{margin-left:-28.911573pt;}
._2a{margin-left:-27.959680pt;}
._2c{margin-left:-24.192000pt;}
._31{margin-left:-20.496427pt;}
._1{margin-left:-17.685333pt;}
._2b{margin-left:-16.661333pt;}
._28{margin-left:-13.973333pt;}
._1f{margin-left:-12.752427pt;}
._2f{margin-left:-4.069760pt;}
._2d{margin-left:-3.050667pt;}
._11{margin-left:-2.069333pt;}
._2{margin-left:-1.066667pt;}
._0{width:0.912427pt;}
._8{width:2.112000pt;}
._6{width:3.029333pt;}
._5{width:4.010667pt;}
._18{width:4.906667pt;}
._c{width:5.952000pt;}
._d{width:6.869333pt;}
._e{width:8.559573pt;}
._10{width:9.450667pt;}
._19{width:10.432000pt;}
._14{width:11.712000pt;}
._15{width:12.608000pt;}
._16{width:13.760000pt;}
._17{width:15.082667pt;}
._12{width:17.045333pt;}
._7{width:17.984000pt;}
._a{width:19.242667pt;}
._20{width:20.906667pt;}
._1c{width:21.824000pt;}
._1b{width:22.826667pt;}
._22{width:24.362667pt;}
._13{width:25.962667pt;}
._23{width:27.264000pt;}
._4{width:28.800000pt;}
._b{width:30.122667pt;}
._24{width:31.658667pt;}
._9{width:32.618667pt;}
._21{width:33.514667pt;}
._1a{width:35.008000pt;}
._34{width:35.908907pt;}
._1e{width:37.184000pt;}
._3{width:39.360000pt;}
._25{width:40.362667pt;}
._29{width:42.218667pt;}
._1d{width:43.114667pt;}
._33{width:44.650667pt;}
._27{width:54.698667pt;}
._26{width:55.914667pt;}
._f{width:1838.848000pt;}
._30{width:3151.061333pt;}
.fs4{font-size:42.560000pt;}
.fs1{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.560000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:2.880000pt;}
.y10a{bottom:4.000000pt;}
.y110{bottom:4.640000pt;}
.y115{bottom:4.720000pt;}
.y109{bottom:24.000000pt;}
.y10d{bottom:24.640000pt;}
.y113{bottom:24.720000pt;}
.y124{bottom:24.746667pt;}
.y13f{bottom:25.360000pt;}
.y129{bottom:40.960000pt;}
.y29{bottom:40.986667pt;}
.y77{bottom:71.786667pt;}
.yb3{bottom:73.386667pt;}
.y101{bottom:75.786667pt;}
.yed{bottom:79.226667pt;}
.y158{bottom:79.786667pt;}
.y4f{bottom:80.506667pt;}
.y15e{bottom:85.146667pt;}
.y94{bottom:89.706667pt;}
.y76{bottom:94.506667pt;}
.yb2{bottom:96.026667pt;}
.y100{bottom:98.506667pt;}
.y126{bottom:101.440000pt;}
.yec{bottom:101.866667pt;}
.y157{bottom:102.506667pt;}
.y4e{bottom:103.146667pt;}
.y25{bottom:104.266667pt;}
.y15d{bottom:107.786667pt;}
.y16d{bottom:111.786667pt;}
.y93{bottom:112.346667pt;}
.y75{bottom:117.146667pt;}
.yb1{bottom:118.746667pt;}
.yff{bottom:121.146667pt;}
.y127{bottom:122.080000pt;}
.yca{bottom:123.466667pt;}
.yeb{bottom:124.586667pt;}
.y4d{bottom:125.786667pt;}
.y24{bottom:126.906667pt;}
.y15c{bottom:130.506667pt;}
.y16c{bottom:134.506667pt;}
.y92{bottom:134.986667pt;}
.y74{bottom:139.786667pt;}
.y156{bottom:141.146667pt;}
.yb0{bottom:141.386667pt;}
.y123{bottom:142.720000pt;}
.yfe{bottom:143.786667pt;}
.yea{bottom:147.226667pt;}
.y4c{bottom:148.506667pt;}
.y23{bottom:149.546667pt;}
.y15b{bottom:153.146667pt;}
.y16b{bottom:157.146667pt;}
.y91{bottom:157.706667pt;}
.y103{bottom:159.706667pt;}
.y9f{bottom:160.746667pt;}
.y73{bottom:162.506667pt;}
.y125{bottom:163.466667pt;}
.yaf{bottom:164.026667pt;}
.yfd{bottom:166.506667pt;}
.ye9{bottom:169.866667pt;}
.y4b{bottom:171.146667pt;}
.y22{bottom:172.266667pt;}
.y15a{bottom:175.786667pt;}
.y155{bottom:179.786667pt;}
.y90{bottom:180.346667pt;}
.y121{bottom:184.106667pt;}
.y72{bottom:185.146667pt;}
.yae{bottom:186.746667pt;}
.yfc{bottom:189.146667pt;}
.ye8{bottom:192.586667pt;}
.y4a{bottom:193.786667pt;}
.y21{bottom:194.906667pt;}
.y102{bottom:198.506667pt;}
.y154{bottom:202.506667pt;}
.y8f{bottom:202.986667pt;}
.y122{bottom:204.746667pt;}
.y13e{bottom:206.106667pt;}
.y71{bottom:207.786667pt;}
.yad{bottom:209.386667pt;}
.yfb{bottom:211.786667pt;}
.ye7{bottom:215.226667pt;}
.y49{bottom:216.506667pt;}
.y20{bottom:217.546667pt;}
.yc9{bottom:221.146667pt;}
.y153{bottom:225.146667pt;}
.y11f{bottom:225.466667pt;}
.y140{bottom:227.466667pt;}
.y70{bottom:230.506667pt;}
.yac{bottom:232.026667pt;}
.yfa{bottom:234.506667pt;}
.ye6{bottom:237.866667pt;}
.y48{bottom:239.146667pt;}
.y1f{bottom:240.266667pt;}
.y8e{bottom:241.626667pt;}
.yc8{bottom:243.786667pt;}
.y120{bottom:246.106667pt;}
.y152{bottom:247.786667pt;}
.y13d{bottom:248.106667pt;}
.y6f{bottom:253.146667pt;}
.yab{bottom:254.746667pt;}
.yf9{bottom:257.146667pt;}
.ye5{bottom:260.586667pt;}
.y47{bottom:261.786667pt;}
.y1e{bottom:262.906667pt;}
.y8c{bottom:264.266667pt;}
.yc7{bottom:266.506667pt;}
.y11d{bottom:266.746667pt;}
.y13b{bottom:268.746667pt;}
.y151{bottom:270.506667pt;}
.y6e{bottom:275.786667pt;}
.yaa{bottom:277.386667pt;}
.yf8{bottom:279.786667pt;}
.ye4{bottom:283.226667pt;}
.y46{bottom:284.506667pt;}
.y1d{bottom:285.546667pt;}
.y11e{bottom:287.466667pt;}
.yc6{bottom:289.146667pt;}
.y13c{bottom:289.466667pt;}
.yd7{bottom:290.986667pt;}
.y150{bottom:293.146667pt;}
.y6d{bottom:298.506667pt;}
.y8d{bottom:299.386667pt;}
.ya9{bottom:300.026667pt;}
.yf7{bottom:302.506667pt;}
.ye3{bottom:305.866667pt;}
.y45{bottom:307.146667pt;}
.y11c{bottom:308.106667pt;}
.y1c{bottom:308.266667pt;}
.y139{bottom:310.106667pt;}
.yc5{bottom:311.786667pt;}
.yd6{bottom:313.626667pt;}
.y14f{bottom:315.786667pt;}
.y6c{bottom:321.146667pt;}
.ya8{bottom:322.746667pt;}
.yf6{bottom:325.146667pt;}
.ye2{bottom:328.586667pt;}
.y11a{bottom:328.746667pt;}
.y44{bottom:329.786667pt;}
.y13a{bottom:330.746667pt;}
.y1b{bottom:330.906667pt;}
.yc4{bottom:334.506667pt;}
.yd5{bottom:336.266667pt;}
.y14e{bottom:338.506667pt;}
.y8b{bottom:341.146667pt;}
.y6b{bottom:343.786667pt;}
.yf5{bottom:347.786667pt;}
.y11b{bottom:349.466667pt;}
.ye1{bottom:351.226667pt;}
.y137{bottom:351.466667pt;}
.y43{bottom:352.506667pt;}
.y1a{bottom:353.546667pt;}
.yc3{bottom:357.146667pt;}
.ya7{bottom:357.786667pt;}
.yd4{bottom:358.986667pt;}
.y16a{bottom:361.146667pt;}
.y8a{bottom:363.786667pt;}
.y6a{bottom:366.506667pt;}
.y118{bottom:370.106667pt;}
.yf4{bottom:370.506667pt;}
.y138{bottom:372.106667pt;}
.ye0{bottom:373.866667pt;}
.y42{bottom:375.146667pt;}
.y19{bottom:376.266667pt;}
.y14d{bottom:377.146667pt;}
.yc2{bottom:379.786667pt;}
.yd3{bottom:381.626667pt;}
.y169{bottom:383.786667pt;}
.y89{bottom:386.506667pt;}
.y69{bottom:389.146667pt;}
.y119{bottom:390.746667pt;}
.y136{bottom:392.746667pt;}
.yf3{bottom:393.146667pt;}
.ydf{bottom:396.586667pt;}
.y41{bottom:397.786667pt;}
.y18{bottom:398.906667pt;}
.yc1{bottom:402.506667pt;}
.yd2{bottom:404.293333pt;}
.y168{bottom:406.533333pt;}
.y88{bottom:409.173333pt;}
.y116{bottom:411.493333pt;}
.y68{bottom:411.813333pt;}
.y134{bottom:413.493333pt;}
.yf2{bottom:415.813333pt;}
.yde{bottom:419.253333pt;}
.y40{bottom:420.533333pt;}
.y17{bottom:421.573333pt;}
.yc0{bottom:425.173333pt;}
.yd1{bottom:427.013333pt;}
.y167{bottom:429.173333pt;}
.y87{bottom:431.813333pt;}
.y117{bottom:432.133333pt;}
.y135{bottom:434.133333pt;}
.y67{bottom:434.533333pt;}
.yf1{bottom:438.533333pt;}
.ydd{bottom:441.893333pt;}
.y3f{bottom:443.173333pt;}
.y16{bottom:444.293333pt;}
.ybf{bottom:447.813333pt;}
.yd0{bottom:449.653333pt;}
.y166{bottom:451.813333pt;}
.y112{bottom:452.773333pt;}
.y86{bottom:454.533333pt;}
.y132{bottom:454.773333pt;}
.y66{bottom:457.173333pt;}
.yf0{bottom:461.173333pt;}
.ydc{bottom:464.613333pt;}
.y3e{bottom:465.813333pt;}
.ybe{bottom:470.533333pt;}
.ycf{bottom:472.293333pt;}
.y114{bottom:473.493333pt;}
.y165{bottom:474.533333pt;}
.y133{bottom:475.493333pt;}
.y85{bottom:477.173333pt;}
.y65{bottom:479.813333pt;}
.y14c{bottom:483.813333pt;}
.y15{bottom:484.853333pt;}
.ydb{bottom:487.253333pt;}
.y3d{bottom:488.533333pt;}
.ybd{bottom:493.173333pt;}
.y10f{bottom:494.133333pt;}
.yce{bottom:495.013333pt;}
.y131{bottom:496.133333pt;}
.y164{bottom:497.173333pt;}
.y84{bottom:499.813333pt;}
.y64{bottom:502.533333pt;}
.y14b{bottom:506.533333pt;}
.y14{bottom:507.493333pt;}
.yda{bottom:509.893333pt;}
.y3c{bottom:511.173333pt;}
.y111{bottom:514.773333pt;}
.ybc{bottom:515.813333pt;}
.y12f{bottom:516.773333pt;}
.y163{bottom:519.813333pt;}
.y83{bottom:522.533333pt;}
.y63{bottom:525.173333pt;}
.y14a{bottom:529.173333pt;}
.y13{bottom:530.213333pt;}
.ycd{bottom:533.573333pt;}
.y3b{bottom:533.813333pt;}
.y10c{bottom:535.493333pt;}
.y130{bottom:537.493333pt;}
.yef{bottom:538.453333pt;}
.ybb{bottom:538.533333pt;}
.y82{bottom:545.173333pt;}
.y62{bottom:547.813333pt;}
.yd9{bottom:548.453333pt;}
.y149{bottom:551.813333pt;}
.y10e{bottom:556.133333pt;}
.ycc{bottom:556.213333pt;}
.y12d{bottom:558.133333pt;}
.y162{bottom:558.373333pt;}
.yba{bottom:561.173333pt;}
.y81{bottom:567.813333pt;}
.y12{bottom:568.933333pt;}
.y61{bottom:570.533333pt;}
.y3a{bottom:572.373333pt;}
.y10b{bottom:576.773333pt;}
.yee{bottom:577.013333pt;}
.y12e{bottom:578.773333pt;}
.yd8{bottom:583.653333pt;}
.yb9{bottom:583.813333pt;}
.y80{bottom:590.533333pt;}
.ycb{bottom:591.333333pt;}
.y11{bottom:591.573333pt;}
.y60{bottom:593.173333pt;}
.y161{bottom:597.173333pt;}
.y108{bottom:597.493333pt;}
.y12c{bottom:599.493333pt;}
.yb8{bottom:606.533333pt;}
.y39{bottom:611.173333pt;}
.y7f{bottom:613.173333pt;}
.y5f{bottom:615.813333pt;}
.y12b{bottom:620.133333pt;}
.yb7{bottom:629.173333pt;}
.y38{bottom:633.813333pt;}
.y160{bottom:635.653333pt;}
.y7e{bottom:635.813333pt;}
.y10{bottom:637.653333pt;}
.y5e{bottom:638.533333pt;}
.y107{bottom:650.453333pt;}
.ya6{bottom:651.813333pt;}
.y37{bottom:656.533333pt;}
.y7d{bottom:658.533333pt;}
.y5d{bottom:661.173333pt;}
.y16e{bottom:667.813333pt;}
.yf{bottom:668.933333pt;}
.y12a{bottom:673.040000pt;}
.y106{bottom:673.120000pt;}
.ya5{bottom:674.533333pt;}
.y36{bottom:679.173333pt;}
.y7c{bottom:681.173333pt;}
.y5c{bottom:683.813333pt;}
.y9e{bottom:690.533333pt;}
.ye{bottom:691.573333pt;}
.y128{bottom:695.600000pt;}
.y105{bottom:695.760000pt;}
.ya4{bottom:697.173333pt;}
.y35{bottom:701.813333pt;}
.y7b{bottom:703.813333pt;}
.y5b{bottom:706.533333pt;}
.y9d{bottom:713.173333pt;}
.yd{bottom:714.293333pt;}
.y104{bottom:718.480000pt;}
.ya3{bottom:719.813333pt;}
.y34{bottom:724.533333pt;}
.y5a{bottom:729.173333pt;}
.y159{bottom:735.653333pt;}
.y9c{bottom:735.813333pt;}
.yc{bottom:736.933333pt;}
.y7a{bottom:742.453333pt;}
.ya2{bottom:742.533333pt;}
.y33{bottom:747.173333pt;}
.y59{bottom:751.813333pt;}
.y9b{bottom:758.533333pt;}
.y79{bottom:765.093333pt;}
.yb6{bottom:765.173333pt;}
.y32{bottom:769.813333pt;}
.y58{bottom:774.533333pt;}
.yb{bottom:775.413333pt;}
.y9a{bottom:781.173333pt;}
.y148{bottom:787.813333pt;}
.y31{bottom:792.533333pt;}
.y57{bottom:797.173333pt;}
.y78{bottom:803.653333pt;}
.yb5{bottom:803.733333pt;}
.y99{bottom:803.813333pt;}
.y147{bottom:810.533333pt;}
.y30{bottom:815.173333pt;}
.ya{bottom:815.893333pt;}
.y56{bottom:819.813333pt;}
.y15f{bottom:826.373333pt;}
.yb4{bottom:826.453333pt;}
.y98{bottom:826.533333pt;}
.y146{bottom:833.173333pt;}
.y2f{bottom:837.813333pt;}
.y55{bottom:842.533333pt;}
.y9{bottom:843.493333pt;}
.y97{bottom:849.173333pt;}
.y145{bottom:855.813333pt;}
.y54{bottom:865.173333pt;}
.y8{bottom:871.093333pt;}
.y96{bottom:871.813333pt;}
.y144{bottom:878.533333pt;}
.y53{bottom:887.840000pt;}
.y2e{bottom:894.480000pt;}
.y95{bottom:894.560000pt;}
.y143{bottom:901.200000pt;}
.y52{bottom:910.560000pt;}
.y7{bottom:912.960000pt;}
.y2d{bottom:917.200000pt;}
.y51{bottom:933.200000pt;}
.y6{bottom:935.760000pt;}
.y2c{bottom:939.840000pt;}
.y5{bottom:954.000000pt;}
.y50{bottom:955.840000pt;}
.y142{bottom:962.560000pt;}
.y4{bottom:974.160000pt;}
.ya1{bottom:978.480000pt;}
.y2b{bottom:978.560000pt;}
.y3{bottom:1000.800000pt;}
.ya0{bottom:1001.120000pt;}
.y2a{bottom:1001.200000pt;}
.y2{bottom:1018.000000pt;}
.y28{bottom:1023.680000pt;}
.y141{bottom:1023.840000pt;}
.y1{bottom:1036.960000pt;}
.y27{bottom:1046.560000pt;}
.h9{height:15.280000pt;}
.hf{height:20.000000pt;}
.h13{height:20.026667pt;}
.h8{height:33.372500pt;}
.he{height:40.000000pt;}
.h10{height:40.640000pt;}
.h12{height:40.666667pt;}
.h11{height:40.720000pt;}
.h14{height:40.746667pt;}
.h15{height:41.360000pt;}
.h3{height:52.448437pt;}
.ha{height:53.857500pt;}
.h7{height:62.781250pt;}
.h6{height:62.812500pt;}
.h2{height:64.500000pt;}
.h16{height:65.781915pt;}
.hb{height:71.210313pt;}
.h4{height:73.176562pt;}
.h5{height:96.750000pt;}
.hd{height:794.000000pt;}
.hc{height:794.160000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:88.160000pt;}
.wa{width:90.000000pt;}
.w8{width:94.426667pt;}
.w9{width:104.240000pt;}
.w2{width:105.706667pt;}
.w5{width:142.746667pt;}
.wc{width:230.906667pt;}
.w7{width:333.520000pt;}
.wb{width:564.506667pt;}
.w1{width:794.000000pt;}
.w0{width:794.160000pt;}
.w4{width:1122.000000pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.xa{left:6.400000pt;}
.x15{left:7.920000pt;}
.x21{left:9.760000pt;}
.x1e{left:13.040000pt;}
.x18{left:16.560000pt;}
.x23{left:18.240000pt;}
.x14{left:20.080000pt;}
.x1a{left:21.120000pt;}
.x17{left:22.800000pt;}
.x24{left:25.706667pt;}
.x20{left:34.960000pt;}
.x1f{left:36.640000pt;}
.x22{left:40.506667pt;}
.x1d{left:44.960000pt;}
.x1b{left:47.146667pt;}
.x1c{left:52.080000pt;}
.x1{left:66.240000pt;}
.x7{left:85.440000pt;}
.x26{left:96.960000pt;}
.x8{left:103.680000pt;}
.x11{left:134.560000pt;}
.x12{left:277.306667pt;}
.x13{left:365.466667pt;}
.x25{left:513.946667pt;}
.x4{left:531.333333pt;}
.x6{left:543.093333pt;}
.x3{left:552.773333pt;}
.x5{left:619.093333pt;}
.xb{left:620.453333pt;}
.x9{left:621.973333pt;}
.xd{left:688.880000pt;}
.xc{left:693.040000pt;}
.xf{left:695.600000pt;}
.x10{left:699.280000pt;}
.xe{left:708.880000pt;}
.x2{left:728.000000pt;}
.x16{left:793.493333pt;}
.x19{left:897.733333pt;}
}




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