
    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_afa62d8cc8767e0919c49d69.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_8f188c44422ddf8cde26e34d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8689d0e53721698f231d084b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_2b92857b73bcd5b0f76c7471.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;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_26a2b45a41b09553ac1d28b1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_b219ef4bd2d3da55faffbe63.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_afe951b27adc146c44621e33.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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;}
.lsd{letter-spacing:-0.780000px;}
.ls9{letter-spacing:-0.600000px;}
.ls7{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.240000px;}
.ls2{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.300000px;}
.ls0{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.420000px;}
.lse{letter-spacing:0.540000px;}
.ls4{letter-spacing:0.600000px;}
.ls12{letter-spacing:15.720000px;}
.ls11{letter-spacing:45.720000px;}
.lsb{letter-spacing:63.720000px;}
.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;}
}
.ws5{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws6{word-spacing:-15.540000px;}
.ws0{word-spacing:-15.204000px;}
.ws7{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.100000px;}
.ws3{word-spacing:0.000000px;}
._12{margin-left:-2.646000px;}
._0{margin-left:-1.056000px;}
._1{width:1.218000px;}
._6{width:2.304000px;}
._2{width:3.600000px;}
._7{width:4.680000px;}
._8{width:5.796000px;}
._d{width:7.086000px;}
._13{width:8.700000px;}
._9{width:10.200000px;}
._a{width:11.676000px;}
._5{width:13.380000px;}
._e{width:16.056000px;}
._f{width:17.106000px;}
._c{width:19.116000px;}
._b{width:20.820000px;}
._17{width:22.320000px;}
._14{width:23.472000px;}
._11{width:24.696000px;}
._10{width:26.436000px;}
._15{width:28.980000px;}
._16{width:30.510000px;}
._18{width:32.172000px;}
._3{width:336.180000px;}
._4{width:996.300000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(0,112,192);}
.fc1{color:rgb(192,0,0);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yea{bottom:3.285000px;}
.ye6{bottom:3.300000px;}
.yed{bottom:3.585000px;}
.y14a{bottom:3.600000px;}
.y14d{bottom:3.615000px;}
.yf{bottom:3.915000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y43{bottom:11.130000px;}
.y157{bottom:12.000000px;}
.y148{bottom:12.285000px;}
.y5{bottom:12.337500px;}
.y149{bottom:20.700000px;}
.y42{bottom:30.630000px;}
.y41{bottom:45.030000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y40{bottom:62.430000px;}
.y45{bottom:74.137500px;}
.y3f{bottom:79.530000px;}
.y3{bottom:81.337500px;}
.y3e{bottom:96.930000px;}
.y104{bottom:112.837500px;}
.y3d{bottom:114.030000px;}
.ya3{bottom:114.037500px;}
.y19d{bottom:115.237500px;}
.y134{bottom:118.537500px;}
.y30{bottom:118.837500px;}
.y16d{bottom:120.337500px;}
.y103{bottom:129.937500px;}
.yd6{bottom:130.537500px;}
.ya2{bottom:131.137500px;}
.y3c{bottom:131.430000px;}
.y19c{bottom:132.337500px;}
.y133{bottom:135.637500px;}
.y2f{bottom:136.237500px;}
.y78{bottom:137.737500px;}
.y16c{bottom:141.037500px;}
.y102{bottom:147.337500px;}
.yd5{bottom:147.637500px;}
.y3b{bottom:148.530000px;}
.ya1{bottom:148.537500px;}
.y19b{bottom:149.737500px;}
.y132{bottom:153.045000px;}
.y2e{bottom:153.345000px;}
.y77{bottom:155.130000px;}
.y16b{bottom:161.130000px;}
.y101{bottom:164.430000px;}
.ya0{bottom:165.630000px;}
.y3a{bottom:165.930000px;}
.yd4{bottom:166.230000px;}
.y19a{bottom:166.845000px;}
.y131{bottom:170.145000px;}
.y2d{bottom:170.745000px;}
.y16a{bottom:178.575000px;}
.y100{bottom:181.575000px;}
.y39{bottom:183.075000px;}
.yd3{bottom:183.375000px;}
.y76{bottom:183.975000px;}
.y130{bottom:187.575000px;}
.y2c{bottom:187.875000px;}
.y169{bottom:195.675000px;}
.y9f{bottom:199.575000px;}
.yff{bottom:200.175000px;}
.y38{bottom:200.460000px;}
.y199{bottom:201.375000px;}
.y75{bottom:201.675000px;}
.y12f{bottom:204.675000px;}
.y2b{bottom:205.275000px;}
.y9e{bottom:210.675000px;}
.y168{bottom:213.075000px;}
.yfe{bottom:217.275000px;}
.y37{bottom:217.560000px;}
.y198{bottom:218.475000px;}
.y74{bottom:218.775000px;}
.yd2{bottom:219.075000px;}
.y12e{bottom:222.075000px;}
.y2a{bottom:222.375000px;}
.y167{bottom:230.175000px;}
.y36{bottom:234.960000px;}
.yfd{bottom:235.575000px;}
.y197{bottom:235.875000px;}
.y73{bottom:236.175000px;}
.y12d{bottom:239.175000px;}
.y29{bottom:239.775000px;}
.y166{bottom:245.475000px;}
.y35{bottom:252.060000px;}
.yfc{bottom:252.675000px;}
.y196{bottom:252.975000px;}
.yd1{bottom:253.575000px;}
.y12c{bottom:256.575000px;}
.y28{bottom:256.875000px;}
.y72{bottom:264.975000px;}
.yfb{bottom:269.175000px;}
.y34{bottom:269.475000px;}
.yd0{bottom:270.675000px;}
.y165{bottom:271.575000px;}
.y12b{bottom:273.675000px;}
.y27{bottom:274.275000px;}
.yfa{bottom:279.975000px;}
.y71{bottom:282.675000px;}
.y33{bottom:286.560000px;}
.ycf{bottom:288.075000px;}
.y164{bottom:289.575000px;}
.y12a{bottom:291.075000px;}
.y26{bottom:291.375000px;}
.yf9{bottom:295.275000px;}
.y70{bottom:299.775000px;}
.yf8{bottom:302.175000px;}
.y195{bottom:302.775000px;}
.y32{bottom:304.260000px;}
.yce{bottom:305.175000px;}
.y163{bottom:307.575000px;}
.y129{bottom:308.175000px;}
.y25{bottom:308.775000px;}
.y6f{bottom:317.175000px;}
.y194{bottom:320.175000px;}
.ycd{bottom:322.575000px;}
.y128{bottom:325.575000px;}
.y24{bottom:325.875000px;}
.y193{bottom:337.575000px;}
.ycc{bottom:339.675000px;}
.y127{bottom:342.675000px;}
.y23{bottom:343.275000px;}
.y6e{bottom:346.005000px;}
.y162{bottom:354.120000px;}
.ycb{bottom:357.120000px;}
.y126{bottom:360.120000px;}
.y22{bottom:360.420000px;}
.y6d{bottom:363.705000px;}
.y192{bottom:366.420000px;}
.y161{bottom:371.820000px;}
.yca{bottom:374.205000px;}
.y125{bottom:377.205000px;}
.y21{bottom:377.820000px;}
.y6c{bottom:380.820000px;}
.y191{bottom:384.120000px;}
.y160{bottom:388.920000px;}
.yc9{bottom:391.605000px;}
.y124{bottom:394.620000px;}
.y20{bottom:395.520000px;}
.y6b{bottom:398.205000px;}
.y190{bottom:401.205000px;}
.y15f{bottom:406.320000px;}
.yc8{bottom:408.705000px;}
.y123{bottom:411.705000px;}
.y1f{bottom:415.620000px;}
.y15e{bottom:422.820000px;}
.y6a{bottom:427.005000px;}
.y122{bottom:429.120000px;}
.y18f{bottom:430.320000px;}
.y1e{bottom:433.005000px;}
.y15d{bottom:437.205000px;}
.yc7{bottom:444.405000px;}
.y69{bottom:444.720000px;}
.y121{bottom:446.205000px;}
.y1d{bottom:446.820000px;}
.y18e{bottom:447.705000px;}
.y15c{bottom:453.705000px;}
.y9d{bottom:454.005000px;}
.y68{bottom:461.820000px;}
.yc6{bottom:462.705000px;}
.y120{bottom:463.620000px;}
.y18d{bottom:465.120000px;}
.y15b{bottom:465.705000px;}
.y9c{bottom:468.705000px;}
.y67{bottom:479.205000px;}
.yc5{bottom:479.820000px;}
.y11f{bottom:480.705000px;}
.y18c{bottom:482.205000px;}
.y15a{bottom:483.705000px;}
.y9b{bottom:485.820000px;}
.y11e{bottom:498.120000px;}
.yc4{bottom:498.405000px;}
.y18b{bottom:499.620000px;}
.y159{bottom:501.720000px;}
.y9a{bottom:503.220000px;}
.y31{bottom:503.820000px;}
.y66{bottom:508.020000px;}
.y11d{bottom:515.250000px;}
.yc3{bottom:515.550000px;}
.y18a{bottom:516.750000px;}
.y158{bottom:519.750000px;}
.y99{bottom:520.350000px;}
.y65{bottom:525.750000px;}
.y11c{bottom:532.650000px;}
.yc2{bottom:533.850000px;}
.y189{bottom:534.450000px;}
.y98{bottom:537.750000px;}
.y64{bottom:542.850000px;}
.y11b{bottom:549.750000px;}
.yc1{bottom:551.250000px;}
.y188{bottom:553.950000px;}
.y97{bottom:554.850000px;}
.y63{bottom:560.250000px;}
.y11a{bottom:567.150000px;}
.yc0{bottom:568.350000px;}
.y187{bottom:568.650000px;}
.y1ad{bottom:568.950000px;}
.y96{bottom:572.250000px;}
.y156{bottom:574.350000px;}
.y62{bottom:577.950000px;}
.y119{bottom:584.250000px;}
.y155{bottom:584.850000px;}
.ybf{bottom:585.750000px;}
.y1ac{bottom:589.050000px;}
.y95{bottom:589.350000px;}
.y154{bottom:601.350000px;}
.y118{bottom:601.650000px;}
.ybe{bottom:602.850000px;}
.y186{bottom:603.150000px;}
.y1ab{bottom:606.450000px;}
.y94{bottom:606.750000px;}
.y61{bottom:609.750000px;}
.y153{bottom:616.050000px;}
.y117{bottom:618.750000px;}
.ybd{bottom:620.250000px;}
.yf7{bottom:623.550000px;}
.y93{bottom:623.850000px;}
.y60{bottom:627.450000px;}
.y152{bottom:633.150000px;}
.y116{bottom:636.150000px;}
.ybc{bottom:637.350000px;}
.y185{bottom:637.650000px;}
.yf6{bottom:640.950000px;}
.y92{bottom:641.250000px;}
.y5f{bottom:644.550000px;}
.y151{bottom:650.550000px;}
.y115{bottom:653.250000px;}
.ybb{bottom:654.750000px;}
.y1aa{bottom:658.050000px;}
.y91{bottom:658.350000px;}
.y5e{bottom:661.950000px;}
.y150{bottom:667.650000px;}
.yf5{bottom:667.950000px;}
.y114{bottom:670.650000px;}
.yba{bottom:671.850000px;}
.y184{bottom:672.150000px;}
.y1a9{bottom:675.450000px;}
.y90{bottom:675.750000px;}
.y5d{bottom:679.050000px;}
.y14f{bottom:682.980000px;}
.y113{bottom:687.780000px;}
.yb9{bottom:689.280000px;}
.y14e{bottom:690.780000px;}
.y1a8{bottom:692.595000px;}
.y8f{bottom:692.880000px;}
.yf4{bottom:694.095000px;}
.y112{bottom:705.195000px;}
.yb8{bottom:706.380000px;}
.y183{bottom:706.695000px;}
.y5c{bottom:708.195000px;}
.y14c{bottom:708.780000px;}
.y1a7{bottom:709.980000px;}
.y8e{bottom:710.295000px;}
.yf3{bottom:710.895000px;}
.y111{bottom:722.295000px;}
.yb7{bottom:723.795000px;}
.yf2{bottom:725.280000px;}
.y5b{bottom:725.580000px;}
.y14b{bottom:726.780000px;}
.y1a6{bottom:727.080000px;}
.y8d{bottom:727.395000px;}
.y110{bottom:739.695000px;}
.yb6{bottom:740.895000px;}
.y182{bottom:741.195000px;}
.yf1{bottom:742.695000px;}
.y5a{bottom:742.995000px;}
.y1a5{bottom:744.495000px;}
.y8c{bottom:744.780000px;}
.y10f{bottom:756.780000px;}
.yb5{bottom:758.280000px;}
.yf0{bottom:759.780000px;}
.y59{bottom:760.095000px;}
.y1a4{bottom:761.595000px;}
.y8b{bottom:761.880000px;}
.y147{bottom:762.795000px;}
.y10e{bottom:774.195000px;}
.yb4{bottom:775.380000px;}
.y181{bottom:775.695000px;}
.yef{bottom:777.195000px;}
.y58{bottom:777.480000px;}
.y1a3{bottom:778.980000px;}
.y8a{bottom:779.295000px;}
.y10d{bottom:791.295000px;}
.yee{bottom:792.480000px;}
.yb3{bottom:792.795000px;}
.y57{bottom:794.580000px;}
.y1a2{bottom:796.080000px;}
.y89{bottom:796.380000px;}
.yec{bottom:800.295000px;}
.y10c{bottom:808.695000px;}
.yb2{bottom:809.880000px;}
.y180{bottom:811.080000px;}
.y56{bottom:811.995000px;}
.y1a1{bottom:813.495000px;}
.y88{bottom:813.795000px;}
.yeb{bottom:818.295000px;}
.y146{bottom:825.495000px;}
.y10b{bottom:825.795000px;}
.yb1{bottom:827.295000px;}
.y17f{bottom:828.195000px;}
.y1a0{bottom:830.580000px;}
.y87{bottom:830.880000px;}
.ye9{bottom:836.295000px;}
.y1c{bottom:839.580000px;}
.y145{bottom:840.195000px;}
.y55{bottom:840.795000px;}
.y10a{bottom:843.195000px;}
.yb0{bottom:844.380000px;}
.y17e{bottom:846.795000px;}
.y19f{bottom:847.995000px;}
.y86{bottom:848.295000px;}
.ye8{bottom:854.325000px;}
.y144{bottom:856.725000px;}
.y54{bottom:858.525000px;}
.y1b{bottom:859.425000px;}
.y109{bottom:860.325000px;}
.yaf{bottom:861.825000px;}
.y17d{bottom:863.925000px;}
.y19e{bottom:865.125000px;}
.y85{bottom:866.025000px;}
.y143{bottom:871.125000px;}
.ye7{bottom:872.325000px;}
.y53{bottom:875.625000px;}
.y108{bottom:877.725000px;}
.y1a{bottom:878.025000px;}
.yae{bottom:878.925000px;}
.y17c{bottom:882.525000px;}
.y142{bottom:886.425000px;}
.ye5{bottom:890.325000px;}
.y52{bottom:893.025000px;}
.y141{bottom:894.525000px;}
.y107{bottom:894.825000px;}
.yad{bottom:896.325000px;}
.y19{bottom:896.625000px;}
.y84{bottom:897.825000px;}
.y17b{bottom:899.625000px;}
.y51{bottom:910.125000px;}
.y106{bottom:911.325000px;}
.y140{bottom:912.525000px;}
.yac{bottom:913.425000px;}
.y18{bottom:914.025000px;}
.y83{bottom:915.525000px;}
.y17a{bottom:917.025000px;}
.ye4{bottom:918.825000px;}
.y105{bottom:922.425000px;}
.y13f{bottom:930.525000px;}
.yab{bottom:930.825000px;}
.y17{bottom:931.425000px;}
.y82{bottom:932.625000px;}
.y179{bottom:934.125000px;}
.ye3{bottom:935.625000px;}
.y50{bottom:939.225000px;}
.yaa{bottom:947.925000px;}
.y16{bottom:948.525000px;}
.y81{bottom:950.025000px;}
.ye2{bottom:950.325000px;}
.y178{bottom:951.525000px;}
.y4f{bottom:956.625000px;}
.ya9{bottom:965.325000px;}
.y13e{bottom:966.525000px;}
.ye1{bottom:967.425000px;}
.y177{bottom:968.625000px;}
.y15{bottom:968.925000px;}
.y4e{bottom:974.025000px;}
.y80{bottom:978.825000px;}
.ya8{bottom:983.025000px;}
.ye0{bottom:984.825000px;}
.y176{bottom:986.025000px;}
.y14{bottom:989.625000px;}
.y4d{bottom:991.125000px;}
.y13d{bottom:995.025000px;}
.y7f{bottom:996.525000px;}
.ydf{bottom:1002.525000px;}
.ya7{bottom:1003.125000px;}
.y4c{bottom:1008.525000px;}
.y13{bottom:1010.325000px;}
.y13c{bottom:1012.725000px;}
.y7e{bottom:1013.625000px;}
.y175{bottom:1016.955000px;}
.ya6{bottom:1020.570000px;}
.yde{bottom:1022.070000px;}
.y4b{bottom:1025.670000px;}
.y12{bottom:1028.070000px;}
.y13b{bottom:1029.870000px;}
.y11{bottom:1033.170000px;}
.y174{bottom:1034.370000px;}
.ydd{bottom:1036.455000px;}
.y10{bottom:1036.755000px;}
.ya5{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y7d{bottom:1042.755000px;}
.y13a{bottom:1046.370000px;}
.y173{bottom:1051.455000px;}
.ydc{bottom:1053.870000px;}
.y4a{bottom:1054.755000px;}
.ya4{bottom:1055.070000px;}
.y7c{bottom:1060.170000px;}
.y139{bottom:1061.070000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y172{bottom:1068.870000px;}
.ydb{bottom:1070.955000px;}
.y49{bottom:1072.170000px;}
.y138{bottom:1076.370000px;}
.y7b{bottom:1077.570000px;}
.ya{bottom:1083.570000px;}
.y171{bottom:1085.955000px;}
.y137{bottom:1086.870000px;}
.yda{bottom:1088.370000px;}
.y48{bottom:1089.570000px;}
.y7a{bottom:1094.670000px;}
.y9{bottom:1097.955000px;}
.y170{bottom:1103.370000px;}
.yd9{bottom:1105.455000px;}
.y47{bottom:1106.670000px;}
.y136{bottom:1113.870000px;}
.y8{bottom:1115.670000px;}
.y16f{bottom:1120.455000px;}
.yd8{bottom:1122.870000px;}
.y79{bottom:1123.755000px;}
.y46{bottom:1124.070000px;}
.y135{bottom:1130.670000px;}
.y7{bottom:1133.670000px;}
.y16e{bottom:1138.170000px;}
.yd7{bottom:1139.955000px;}
.y6{bottom:1141.170000px;}
.y44{bottom:1196.400000px;}
.h9{height:10.757812px;}
.h5{height:12.700195px;}
.hb{height:16.136719px;}
.h16{height:17.085000px;}
.h14{height:17.100000px;}
.h15{height:17.122500px;}
.h1c{height:17.137500px;}
.h17{height:17.400000px;}
.ha{height:21.000000px;}
.h18{height:26.894531px;}
.h7{height:33.867188px;}
.h1a{height:34.485000px;}
.h1b{height:34.500000px;}
.h11{height:34.664062px;}
.h3{height:36.000000px;}
.hd{height:38.100586px;}
.h4{height:42.333984px;}
.h13{height:43.031250px;}
.h12{height:44.507812px;}
.h8{height:48.410156px;}
.h10{height:49.453125px;}
.h6{height:50.800781px;}
.hf{height:51.996094px;}
.hc{height:53.789062px;}
.h19{height:59.167969px;}
.h1d{height:64.546875px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.he{height:321.075000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.w16{width:78.000000px;}
.w12{width:78.037500px;}
.w8{width:101.437500px;}
.w3{width:108.000000px;}
.w11{width:140.775000px;}
.we{width:141.037500px;}
.wa{width:147.637500px;}
.w14{width:156.630000px;}
.w15{width:162.630000px;}
.wf{width:181.575000px;}
.w10{width:188.430000px;}
.w17{width:198.975000px;}
.wb{width:202.875000px;}
.w18{width:217.275000px;}
.w13{width:220.875000px;}
.wd{width:222.030000px;}
.wc{width:222.075000px;}
.w6{width:243.975000px;}
.w9{width:336.705000px;}
.w5{width:483.450000px;}
.w7{width:726.825000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.785000px;}
.x2{left:10.799998px;}
.x51{left:15.000000px;}
.x15{left:16.200000px;}
.x4a{left:17.392500px;}
.x37{left:21.000000px;}
.x3{left:22.200000px;}
.x3a{left:24.900000px;}
.x3c{left:26.430000px;}
.x4{left:27.600000px;}
.x1d{left:35.085000px;}
.x36{left:36.645000px;}
.x39{left:37.800000px;}
.x2f{left:39.292500px;}
.x35{left:43.192500px;}
.x40{left:46.792500px;}
.x3d{left:48.007500px;}
.x3f{left:52.830000px;}
.x1f{left:62.430000px;}
.x48{left:64.200000px;}
.x1e{left:66.030000px;}
.x49{left:67.230000px;}
.x46{left:68.730000px;}
.x1{left:81.037487px;}
.x7{left:83.137487px;}
.x3e{left:84.600000px;}
.x4f{left:90.045000px;}
.x47{left:96.645000px;}
.x50{left:99.045000px;}
.x32{left:101.130000px;}
.xc{left:107.445000px;}
.xd{left:113.437487px;}
.x34{left:119.737500px;}
.x29{left:120.937487px;}
.x2e{left:122.437500px;}
.x20{left:132.037487px;}
.x17{left:135.037487px;}
.x42{left:136.237500px;}
.x11{left:143.737487px;}
.x8{left:153.629987px;}
.x26{left:177.974987px;}
.x52{left:192.374987px;}
.x4c{left:198.975000px;}
.x2a{left:204.074987px;}
.x23{left:210.374987px;}
.x43{left:215.175000px;}
.x25{left:232.574987px;}
.x2d{left:238.574987px;}
.xa{left:241.567500px;}
.x41{left:242.774987px;}
.x4b{left:244.274987px;}
.x1a{left:249.074987px;}
.x24{left:251.474987px;}
.x1c{left:255.075000px;}
.x27{left:261.374987px;}
.x28{left:262.574987px;}
.x21{left:269.174987px;}
.x2c{left:272.774987px;}
.x4d{left:277.575000px;}
.x13{left:289.274987px;}
.x19{left:297.119987px;}
.x33{left:301.919987px;}
.xe{left:304.904987px;}
.x2b{left:308.204987px;}
.x30{left:326.220000px;}
.xf{left:353.519987px;}
.x12{left:382.019987px;}
.x5{left:388.319987px;}
.x44{left:436.950000px;}
.x38{left:443.850000px;}
.x10{left:446.549987px;}
.x4e{left:477.150000px;}
.x16{left:546.779987px;}
.x31{left:548.895000px;}
.xb{left:566.280000px;}
.x18{left:592.979987px;}
.x45{left:594.495000px;}
.x3b{left:632.895000px;}
.x6{left:695.624987px;}
.x22{left:705.524987px;}
.x14{left:810.254987px;}
.x9{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.693333pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.213333pt;}
.ls2{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.266667pt;}
.ls0{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.480000pt;}
.ls4{letter-spacing:0.533333pt;}
.ls12{letter-spacing:13.973333pt;}
.ls11{letter-spacing:40.640000pt;}
.lsb{letter-spacing:56.640000pt;}
.ws5{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws6{word-spacing:-13.813333pt;}
.ws0{word-spacing:-13.514667pt;}
.ws7{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.533333pt;}
.ws3{word-spacing:0.000000pt;}
._12{margin-left:-2.352000pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.082667pt;}
._6{width:2.048000pt;}
._2{width:3.200000pt;}
._7{width:4.160000pt;}
._8{width:5.152000pt;}
._d{width:6.298667pt;}
._13{width:7.733333pt;}
._9{width:9.066667pt;}
._a{width:10.378667pt;}
._5{width:11.893333pt;}
._e{width:14.272000pt;}
._f{width:15.205333pt;}
._c{width:16.992000pt;}
._b{width:18.506667pt;}
._17{width:19.840000pt;}
._14{width:20.864000pt;}
._11{width:21.952000pt;}
._10{width:23.498667pt;}
._15{width:25.760000pt;}
._16{width:27.120000pt;}
._18{width:28.597333pt;}
._3{width:298.826667pt;}
._4{width:885.600000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yea{bottom:2.920000pt;}
.ye6{bottom:2.933333pt;}
.yed{bottom:3.186667pt;}
.y14a{bottom:3.200000pt;}
.y14d{bottom:3.213333pt;}
.yf{bottom:3.480000pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y43{bottom:9.893333pt;}
.y157{bottom:10.666667pt;}
.y148{bottom:10.920000pt;}
.y5{bottom:10.966667pt;}
.y149{bottom:18.400000pt;}
.y42{bottom:27.226667pt;}
.y41{bottom:40.026667pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y40{bottom:55.493333pt;}
.y45{bottom:65.900000pt;}
.y3f{bottom:70.693333pt;}
.y3{bottom:72.300000pt;}
.y3e{bottom:86.160000pt;}
.y104{bottom:100.300000pt;}
.y3d{bottom:101.360000pt;}
.ya3{bottom:101.366667pt;}
.y19d{bottom:102.433333pt;}
.y134{bottom:105.366667pt;}
.y30{bottom:105.633333pt;}
.y16d{bottom:106.966667pt;}
.y103{bottom:115.500000pt;}
.yd6{bottom:116.033333pt;}
.ya2{bottom:116.566667pt;}
.y3c{bottom:116.826667pt;}
.y19c{bottom:117.633333pt;}
.y133{bottom:120.566667pt;}
.y2f{bottom:121.100000pt;}
.y78{bottom:122.433333pt;}
.y16c{bottom:125.366667pt;}
.y102{bottom:130.966667pt;}
.yd5{bottom:131.233333pt;}
.y3b{bottom:132.026667pt;}
.ya1{bottom:132.033333pt;}
.y19b{bottom:133.100000pt;}
.y132{bottom:136.040000pt;}
.y2e{bottom:136.306667pt;}
.y77{bottom:137.893333pt;}
.y16b{bottom:143.226667pt;}
.y101{bottom:146.160000pt;}
.ya0{bottom:147.226667pt;}
.y3a{bottom:147.493333pt;}
.yd4{bottom:147.760000pt;}
.y19a{bottom:148.306667pt;}
.y131{bottom:151.240000pt;}
.y2d{bottom:151.773333pt;}
.y16a{bottom:158.733333pt;}
.y100{bottom:161.400000pt;}
.y39{bottom:162.733333pt;}
.yd3{bottom:163.000000pt;}
.y76{bottom:163.533333pt;}
.y130{bottom:166.733333pt;}
.y2c{bottom:167.000000pt;}
.y169{bottom:173.933333pt;}
.y9f{bottom:177.400000pt;}
.yff{bottom:177.933333pt;}
.y38{bottom:178.186667pt;}
.y199{bottom:179.000000pt;}
.y75{bottom:179.266667pt;}
.y12f{bottom:181.933333pt;}
.y2b{bottom:182.466667pt;}
.y9e{bottom:187.266667pt;}
.y168{bottom:189.400000pt;}
.yfe{bottom:193.133333pt;}
.y37{bottom:193.386667pt;}
.y198{bottom:194.200000pt;}
.y74{bottom:194.466667pt;}
.yd2{bottom:194.733333pt;}
.y12e{bottom:197.400000pt;}
.y2a{bottom:197.666667pt;}
.y167{bottom:204.600000pt;}
.y36{bottom:208.853333pt;}
.yfd{bottom:209.400000pt;}
.y197{bottom:209.666667pt;}
.y73{bottom:209.933333pt;}
.y12d{bottom:212.600000pt;}
.y29{bottom:213.133333pt;}
.y166{bottom:218.200000pt;}
.y35{bottom:224.053333pt;}
.yfc{bottom:224.600000pt;}
.y196{bottom:224.866667pt;}
.yd1{bottom:225.400000pt;}
.y12c{bottom:228.066667pt;}
.y28{bottom:228.333333pt;}
.y72{bottom:235.533333pt;}
.yfb{bottom:239.266667pt;}
.y34{bottom:239.533333pt;}
.yd0{bottom:240.600000pt;}
.y165{bottom:241.400000pt;}
.y12b{bottom:243.266667pt;}
.y27{bottom:243.800000pt;}
.yfa{bottom:248.866667pt;}
.y71{bottom:251.266667pt;}
.y33{bottom:254.720000pt;}
.ycf{bottom:256.066667pt;}
.y164{bottom:257.400000pt;}
.y12a{bottom:258.733333pt;}
.y26{bottom:259.000000pt;}
.yf9{bottom:262.466667pt;}
.y70{bottom:266.466667pt;}
.yf8{bottom:268.600000pt;}
.y195{bottom:269.133333pt;}
.y32{bottom:270.453333pt;}
.yce{bottom:271.266667pt;}
.y163{bottom:273.400000pt;}
.y129{bottom:273.933333pt;}
.y25{bottom:274.466667pt;}
.y6f{bottom:281.933333pt;}
.y194{bottom:284.600000pt;}
.ycd{bottom:286.733333pt;}
.y128{bottom:289.400000pt;}
.y24{bottom:289.666667pt;}
.y193{bottom:300.066667pt;}
.ycc{bottom:301.933333pt;}
.y127{bottom:304.600000pt;}
.y23{bottom:305.133333pt;}
.y6e{bottom:307.560000pt;}
.y162{bottom:314.773333pt;}
.ycb{bottom:317.440000pt;}
.y126{bottom:320.106667pt;}
.y22{bottom:320.373333pt;}
.y6d{bottom:323.293333pt;}
.y192{bottom:325.706667pt;}
.y161{bottom:330.506667pt;}
.yca{bottom:332.626667pt;}
.y125{bottom:335.293333pt;}
.y21{bottom:335.840000pt;}
.y6c{bottom:338.506667pt;}
.y191{bottom:341.440000pt;}
.y160{bottom:345.706667pt;}
.yc9{bottom:348.093333pt;}
.y124{bottom:350.773333pt;}
.y20{bottom:351.573333pt;}
.y6b{bottom:353.960000pt;}
.y190{bottom:356.626667pt;}
.y15f{bottom:361.173333pt;}
.yc8{bottom:363.293333pt;}
.y123{bottom:365.960000pt;}
.y1f{bottom:369.440000pt;}
.y15e{bottom:375.840000pt;}
.y6a{bottom:379.560000pt;}
.y122{bottom:381.440000pt;}
.y18f{bottom:382.506667pt;}
.y1e{bottom:384.893333pt;}
.y15d{bottom:388.626667pt;}
.yc7{bottom:395.026667pt;}
.y69{bottom:395.306667pt;}
.y121{bottom:396.626667pt;}
.y1d{bottom:397.173333pt;}
.y18e{bottom:397.960000pt;}
.y15c{bottom:403.293333pt;}
.y9d{bottom:403.560000pt;}
.y68{bottom:410.506667pt;}
.yc6{bottom:411.293333pt;}
.y120{bottom:412.106667pt;}
.y18d{bottom:413.440000pt;}
.y15b{bottom:413.960000pt;}
.y9c{bottom:416.626667pt;}
.y67{bottom:425.960000pt;}
.yc5{bottom:426.506667pt;}
.y11f{bottom:427.293333pt;}
.y18c{bottom:428.626667pt;}
.y15a{bottom:429.960000pt;}
.y9b{bottom:431.840000pt;}
.y11e{bottom:442.773333pt;}
.yc4{bottom:443.026667pt;}
.y18b{bottom:444.106667pt;}
.y159{bottom:445.973333pt;}
.y9a{bottom:447.306667pt;}
.y31{bottom:447.840000pt;}
.y66{bottom:451.573333pt;}
.y11d{bottom:458.000000pt;}
.yc3{bottom:458.266667pt;}
.y18a{bottom:459.333333pt;}
.y158{bottom:462.000000pt;}
.y99{bottom:462.533333pt;}
.y65{bottom:467.333333pt;}
.y11c{bottom:473.466667pt;}
.yc2{bottom:474.533333pt;}
.y189{bottom:475.066667pt;}
.y98{bottom:478.000000pt;}
.y64{bottom:482.533333pt;}
.y11b{bottom:488.666667pt;}
.yc1{bottom:490.000000pt;}
.y188{bottom:492.400000pt;}
.y97{bottom:493.200000pt;}
.y63{bottom:498.000000pt;}
.y11a{bottom:504.133333pt;}
.yc0{bottom:505.200000pt;}
.y187{bottom:505.466667pt;}
.y1ad{bottom:505.733333pt;}
.y96{bottom:508.666667pt;}
.y156{bottom:510.533333pt;}
.y62{bottom:513.733333pt;}
.y119{bottom:519.333333pt;}
.y155{bottom:519.866667pt;}
.ybf{bottom:520.666667pt;}
.y1ac{bottom:523.600000pt;}
.y95{bottom:523.866667pt;}
.y154{bottom:534.533333pt;}
.y118{bottom:534.800000pt;}
.ybe{bottom:535.866667pt;}
.y186{bottom:536.133333pt;}
.y1ab{bottom:539.066667pt;}
.y94{bottom:539.333333pt;}
.y61{bottom:542.000000pt;}
.y153{bottom:547.600000pt;}
.y117{bottom:550.000000pt;}
.ybd{bottom:551.333333pt;}
.yf7{bottom:554.266667pt;}
.y93{bottom:554.533333pt;}
.y60{bottom:557.733333pt;}
.y152{bottom:562.800000pt;}
.y116{bottom:565.466667pt;}
.ybc{bottom:566.533333pt;}
.y185{bottom:566.800000pt;}
.yf6{bottom:569.733333pt;}
.y92{bottom:570.000000pt;}
.y5f{bottom:572.933333pt;}
.y151{bottom:578.266667pt;}
.y115{bottom:580.666667pt;}
.ybb{bottom:582.000000pt;}
.y1aa{bottom:584.933333pt;}
.y91{bottom:585.200000pt;}
.y5e{bottom:588.400000pt;}
.y150{bottom:593.466667pt;}
.yf5{bottom:593.733333pt;}
.y114{bottom:596.133333pt;}
.yba{bottom:597.200000pt;}
.y184{bottom:597.466667pt;}
.y1a9{bottom:600.400000pt;}
.y90{bottom:600.666667pt;}
.y5d{bottom:603.600000pt;}
.y14f{bottom:607.093333pt;}
.y113{bottom:611.360000pt;}
.yb9{bottom:612.693333pt;}
.y14e{bottom:614.026667pt;}
.y1a8{bottom:615.640000pt;}
.y8f{bottom:615.893333pt;}
.yf4{bottom:616.973333pt;}
.y112{bottom:626.840000pt;}
.yb8{bottom:627.893333pt;}
.y183{bottom:628.173333pt;}
.y5c{bottom:629.506667pt;}
.y14c{bottom:630.026667pt;}
.y1a7{bottom:631.093333pt;}
.y8e{bottom:631.373333pt;}
.yf3{bottom:631.906667pt;}
.y111{bottom:642.040000pt;}
.yb7{bottom:643.373333pt;}
.yf2{bottom:644.693333pt;}
.y5b{bottom:644.960000pt;}
.y14b{bottom:646.026667pt;}
.y1a6{bottom:646.293333pt;}
.y8d{bottom:646.573333pt;}
.y110{bottom:657.506667pt;}
.yb6{bottom:658.573333pt;}
.y182{bottom:658.840000pt;}
.yf1{bottom:660.173333pt;}
.y5a{bottom:660.440000pt;}
.y1a5{bottom:661.773333pt;}
.y8c{bottom:662.026667pt;}
.y10f{bottom:672.693333pt;}
.yb5{bottom:674.026667pt;}
.yf0{bottom:675.360000pt;}
.y59{bottom:675.640000pt;}
.y1a4{bottom:676.973333pt;}
.y8b{bottom:677.226667pt;}
.y147{bottom:678.040000pt;}
.y10e{bottom:688.173333pt;}
.yb4{bottom:689.226667pt;}
.y181{bottom:689.506667pt;}
.yef{bottom:690.840000pt;}
.y58{bottom:691.093333pt;}
.y1a3{bottom:692.426667pt;}
.y8a{bottom:692.706667pt;}
.y10d{bottom:703.373333pt;}
.yee{bottom:704.426667pt;}
.yb3{bottom:704.706667pt;}
.y57{bottom:706.293333pt;}
.y1a2{bottom:707.626667pt;}
.y89{bottom:707.893333pt;}
.yec{bottom:711.373333pt;}
.y10c{bottom:718.840000pt;}
.yb2{bottom:719.893333pt;}
.y180{bottom:720.960000pt;}
.y56{bottom:721.773333pt;}
.y1a1{bottom:723.106667pt;}
.y88{bottom:723.373333pt;}
.yeb{bottom:727.373333pt;}
.y146{bottom:733.773333pt;}
.y10b{bottom:734.040000pt;}
.yb1{bottom:735.373333pt;}
.y17f{bottom:736.173333pt;}
.y1a0{bottom:738.293333pt;}
.y87{bottom:738.560000pt;}
.ye9{bottom:743.373333pt;}
.y1c{bottom:746.293333pt;}
.y145{bottom:746.840000pt;}
.y55{bottom:747.373333pt;}
.y10a{bottom:749.506667pt;}
.yb0{bottom:750.560000pt;}
.y17e{bottom:752.706667pt;}
.y19f{bottom:753.773333pt;}
.y86{bottom:754.040000pt;}
.ye8{bottom:759.400000pt;}
.y144{bottom:761.533333pt;}
.y54{bottom:763.133333pt;}
.y1b{bottom:763.933333pt;}
.y109{bottom:764.733333pt;}
.yaf{bottom:766.066667pt;}
.y17d{bottom:767.933333pt;}
.y19e{bottom:769.000000pt;}
.y85{bottom:769.800000pt;}
.y143{bottom:774.333333pt;}
.ye7{bottom:775.400000pt;}
.y53{bottom:778.333333pt;}
.y108{bottom:780.200000pt;}
.y1a{bottom:780.466667pt;}
.yae{bottom:781.266667pt;}
.y17c{bottom:784.466667pt;}
.y142{bottom:787.933333pt;}
.ye5{bottom:791.400000pt;}
.y52{bottom:793.800000pt;}
.y141{bottom:795.133333pt;}
.y107{bottom:795.400000pt;}
.yad{bottom:796.733333pt;}
.y19{bottom:797.000000pt;}
.y84{bottom:798.066667pt;}
.y17b{bottom:799.666667pt;}
.y51{bottom:809.000000pt;}
.y106{bottom:810.066667pt;}
.y140{bottom:811.133333pt;}
.yac{bottom:811.933333pt;}
.y18{bottom:812.466667pt;}
.y83{bottom:813.800000pt;}
.y17a{bottom:815.133333pt;}
.ye4{bottom:816.733333pt;}
.y105{bottom:819.933333pt;}
.y13f{bottom:827.133333pt;}
.yab{bottom:827.400000pt;}
.y17{bottom:827.933333pt;}
.y82{bottom:829.000000pt;}
.y179{bottom:830.333333pt;}
.ye3{bottom:831.666667pt;}
.y50{bottom:834.866667pt;}
.yaa{bottom:842.600000pt;}
.y16{bottom:843.133333pt;}
.y81{bottom:844.466667pt;}
.ye2{bottom:844.733333pt;}
.y178{bottom:845.800000pt;}
.y4f{bottom:850.333333pt;}
.ya9{bottom:858.066667pt;}
.y13e{bottom:859.133333pt;}
.ye1{bottom:859.933333pt;}
.y177{bottom:861.000000pt;}
.y15{bottom:861.266667pt;}
.y4e{bottom:865.800000pt;}
.y80{bottom:870.066667pt;}
.ya8{bottom:873.800000pt;}
.ye0{bottom:875.400000pt;}
.y176{bottom:876.466667pt;}
.y14{bottom:879.666667pt;}
.y4d{bottom:881.000000pt;}
.y13d{bottom:884.466667pt;}
.y7f{bottom:885.800000pt;}
.ydf{bottom:891.133333pt;}
.ya7{bottom:891.666667pt;}
.y4c{bottom:896.466667pt;}
.y13{bottom:898.066667pt;}
.y13c{bottom:900.200000pt;}
.y7e{bottom:901.000000pt;}
.y175{bottom:903.960000pt;}
.ya6{bottom:907.173333pt;}
.yde{bottom:908.506667pt;}
.y4b{bottom:911.706667pt;}
.y12{bottom:913.840000pt;}
.y13b{bottom:915.440000pt;}
.y11{bottom:918.373333pt;}
.y174{bottom:919.440000pt;}
.ydd{bottom:921.293333pt;}
.y10{bottom:921.560000pt;}
.ya5{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y7d{bottom:926.893333pt;}
.y13a{bottom:930.106667pt;}
.y173{bottom:934.626667pt;}
.ydc{bottom:936.773333pt;}
.y4a{bottom:937.560000pt;}
.ya4{bottom:937.840000pt;}
.y7c{bottom:942.373333pt;}
.y139{bottom:943.173333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y172{bottom:950.106667pt;}
.ydb{bottom:951.960000pt;}
.y49{bottom:953.040000pt;}
.y138{bottom:956.773333pt;}
.y7b{bottom:957.840000pt;}
.ya{bottom:963.173333pt;}
.y171{bottom:965.293333pt;}
.y137{bottom:966.106667pt;}
.yda{bottom:967.440000pt;}
.y48{bottom:968.506667pt;}
.y7a{bottom:973.040000pt;}
.y9{bottom:975.960000pt;}
.y170{bottom:980.773333pt;}
.yd9{bottom:982.626667pt;}
.y47{bottom:983.706667pt;}
.y136{bottom:990.106667pt;}
.y8{bottom:991.706667pt;}
.y16f{bottom:995.960000pt;}
.yd8{bottom:998.106667pt;}
.y79{bottom:998.893333pt;}
.y46{bottom:999.173333pt;}
.y135{bottom:1005.040000pt;}
.y7{bottom:1007.706667pt;}
.y16e{bottom:1011.706667pt;}
.yd7{bottom:1013.293333pt;}
.y6{bottom:1014.373333pt;}
.y44{bottom:1063.466667pt;}
.h9{height:9.562500pt;}
.h5{height:11.289062pt;}
.hb{height:14.343750pt;}
.h16{height:15.186667pt;}
.h14{height:15.200000pt;}
.h15{height:15.220000pt;}
.h1c{height:15.233333pt;}
.h17{height:15.466667pt;}
.ha{height:18.666667pt;}
.h18{height:23.906250pt;}
.h7{height:30.104167pt;}
.h1a{height:30.653333pt;}
.h1b{height:30.666667pt;}
.h11{height:30.812500pt;}
.h3{height:32.000000pt;}
.hd{height:33.867188pt;}
.h4{height:37.630208pt;}
.h13{height:38.250000pt;}
.h12{height:39.562500pt;}
.h8{height:43.031250pt;}
.h10{height:43.958333pt;}
.h6{height:45.156250pt;}
.hf{height:46.218750pt;}
.hc{height:47.812500pt;}
.h19{height:52.593750pt;}
.h1d{height:57.375000pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.he{height:285.400000pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.w16{width:69.333333pt;}
.w12{width:69.366667pt;}
.w8{width:90.166667pt;}
.w3{width:96.000000pt;}
.w11{width:125.133333pt;}
.we{width:125.366667pt;}
.wa{width:131.233333pt;}
.w14{width:139.226667pt;}
.w15{width:144.560000pt;}
.wf{width:161.400000pt;}
.w10{width:167.493333pt;}
.w17{width:176.866667pt;}
.wb{width:180.333333pt;}
.w18{width:193.133333pt;}
.w13{width:196.333333pt;}
.wd{width:197.360000pt;}
.wc{width:197.400000pt;}
.w6{width:216.866667pt;}
.w9{width:299.293333pt;}
.w5{width:429.733333pt;}
.w7{width:646.066667pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.920000pt;}
.x2{left:9.599999pt;}
.x51{left:13.333333pt;}
.x15{left:14.400000pt;}
.x4a{left:15.460000pt;}
.x37{left:18.666667pt;}
.x3{left:19.733333pt;}
.x3a{left:22.133333pt;}
.x3c{left:23.493333pt;}
.x4{left:24.533333pt;}
.x1d{left:31.186667pt;}
.x36{left:32.573333pt;}
.x39{left:33.600000pt;}
.x2f{left:34.926667pt;}
.x35{left:38.393333pt;}
.x40{left:41.593333pt;}
.x3d{left:42.673333pt;}
.x3f{left:46.960000pt;}
.x1f{left:55.493333pt;}
.x48{left:57.066667pt;}
.x1e{left:58.693333pt;}
.x49{left:59.760000pt;}
.x46{left:61.093333pt;}
.x1{left:72.033322pt;}
.x7{left:73.899988pt;}
.x3e{left:75.200000pt;}
.x4f{left:80.040000pt;}
.x47{left:85.906667pt;}
.x50{left:88.040000pt;}
.x32{left:89.893333pt;}
.xc{left:95.506667pt;}
.xd{left:100.833322pt;}
.x34{left:106.433333pt;}
.x29{left:107.499988pt;}
.x2e{left:108.833333pt;}
.x20{left:117.366655pt;}
.x17{left:120.033322pt;}
.x42{left:121.100000pt;}
.x11{left:127.766655pt;}
.x8{left:136.559988pt;}
.x26{left:158.199988pt;}
.x52{left:170.999988pt;}
.x4c{left:176.866667pt;}
.x2a{left:181.399988pt;}
.x23{left:186.999988pt;}
.x43{left:191.266667pt;}
.x25{left:206.733322pt;}
.x2d{left:212.066655pt;}
.xa{left:214.726667pt;}
.x41{left:215.799988pt;}
.x4b{left:217.133322pt;}
.x1a{left:221.399988pt;}
.x24{left:223.533322pt;}
.x1c{left:226.733333pt;}
.x27{left:232.333322pt;}
.x28{left:233.399988pt;}
.x21{left:239.266655pt;}
.x2c{left:242.466655pt;}
.x4d{left:246.733333pt;}
.x13{left:257.133322pt;}
.x19{left:264.106655pt;}
.x33{left:268.373322pt;}
.xe{left:271.026655pt;}
.x2b{left:273.959988pt;}
.x30{left:289.973333pt;}
.xf{left:314.239988pt;}
.x12{left:339.573322pt;}
.x5{left:345.173322pt;}
.x44{left:388.400000pt;}
.x38{left:394.533333pt;}
.x10{left:396.933322pt;}
.x4e{left:424.133333pt;}
.x16{left:486.026655pt;}
.x31{left:487.906667pt;}
.xb{left:503.360000pt;}
.x18{left:527.093322pt;}
.x45{left:528.440000pt;}
.x3b{left:562.573333pt;}
.x6{left:618.333322pt;}
.x22{left:627.133322pt;}
.x14{left:720.226655pt;}
.x9{left:722.106655pt;}
}




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