
    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_c8d5d1f0d4592670a3846158.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bf5da0f197a7578852a78710.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.046387;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_8401005319d9be69a801c02d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900391;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_76dbe5fbcbaad754459c7622.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_568f1d7e7cc7a9d7c70768a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_e5b2278905aec3ee9372dca1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.908203;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_bceae59773d394aaf491f32c.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_dc7d8fdaac0e7405c0045c0a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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_c2431e77cbdfb331bcf35c75.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727539;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;}
.ls2a{letter-spacing:-24.000000px;}
.ls10{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.296000px;}
.ls28{letter-spacing:-1.224000px;}
.ls27{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.495600px;}
.ls29{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.153600px;}
.ls13{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.139800px;}
.ls6{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.013320px;}
.ls3{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.120000px;}
.ls15{letter-spacing:0.139800px;}
.ls14{letter-spacing:0.140040px;}
.ls4{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.504000px;}
.ls20{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.743040px;}
.lse{letter-spacing:1.440000px;}
.ls1e{letter-spacing:2.160000px;}
.ls1a{letter-spacing:3.600000px;}
.ls26{letter-spacing:4.050000px;}
.ls25{letter-spacing:4.320000px;}
.ls1d{letter-spacing:4.680000px;}
.ls12{letter-spacing:5.040000px;}
.ls11{letter-spacing:6.480000px;}
.ls21{letter-spacing:7.560000px;}
.ls23{letter-spacing:7.920000px;}
.ls1b{letter-spacing:8.640000px;}
.ls2b{letter-spacing:9.000000px;}
.ls2d{letter-spacing:10.080000px;}
.ls24{letter-spacing:11.520000px;}
.ls2e{letter-spacing:12.000000px;}
.ls1f{letter-spacing:12.600000px;}
.ls9{letter-spacing:31.680000px;}
.ls2{letter-spacing:44.280000px;}
.ls0{letter-spacing:45.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;}
}
.ws8{word-spacing:-72.000000px;}
.wse{word-spacing:-60.120000px;}
.ws19{word-spacing:-18.360000px;}
.ws15{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws5{word-spacing:-17.640000px;}
.ws1a{word-spacing:-17.568000px;}
.ws4{word-spacing:-17.280000px;}
.ws17{word-spacing:-16.920000px;}
.ws18{word-spacing:-16.776000px;}
.wsa{word-spacing:-16.704000px;}
.wsb{word-spacing:-16.560000px;}
.ws11{word-spacing:-15.210000px;}
.ws13{word-spacing:-15.183600px;}
.wsf{word-spacing:-15.030000px;}
.ws12{word-spacing:-15.016680px;}
.ws10{word-spacing:-14.890200px;}
.ws14{word-spacing:-14.876400px;}
.ws16{word-spacing:-14.220000px;}
.ws2{word-spacing:-11.970000px;}
.ws1{word-spacing:-11.070000px;}
.ws6{word-spacing:0.000000px;}
.ws1b{word-spacing:30.024000px;}
._2{margin-left:-25.566000px;}
._3{margin-left:-23.784000px;}
._26{margin-left:-19.968000px;}
._2a{margin-left:-3.672000px;}
._1{margin-left:-2.232000px;}
._0{margin-left:-1.224000px;}
._4{width:1.320000px;}
._b{width:3.312000px;}
._a{width:4.944000px;}
._7{width:6.360000px;}
._6{width:7.392000px;}
._8{width:8.784000px;}
._9{width:9.816000px;}
._18{width:11.664000px;}
._f{width:12.672000px;}
._e{width:13.896000px;}
._d{width:14.904000px;}
._19{width:16.032000px;}
._10{width:19.152000px;}
._12{width:20.448000px;}
._1e{width:21.816000px;}
._16{width:23.256000px;}
._15{width:24.624000px;}
._1b{width:25.632000px;}
._1a{width:26.640000px;}
._21{width:28.296000px;}
._22{width:29.352000px;}
._11{width:30.744000px;}
._5{width:32.400000px;}
._20{width:34.200000px;}
._1f{width:35.496000px;}
._23{width:37.152000px;}
._24{width:38.280000px;}
._17{width:39.456000px;}
._27{width:40.824000px;}
._29{width:44.136000px;}
._14{width:56.520000px;}
._13{width:57.648000px;}
._28{width:74.160000px;}
._25{width:92.160000px;}
._1d{width:2331.240000px;}
._c{width:2365.800000px;}
._1c{width:3843.360000px;}
.fc3{color:rgb(0,176,240);}
.fc1{color:rgb(159,39,50);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.880000px;}
.fs6{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.fs2{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:3.240000px;}
.y87{bottom:3.600000px;}
.y123{bottom:4.050000px;}
.y85{bottom:12.600000px;}
.y86{bottom:21.630000px;}
.y2a{bottom:46.080000px;}
.ya2{bottom:48.600000px;}
.y26{bottom:78.840000px;}
.y165{bottom:80.730000px;}
.y139{bottom:84.060000px;}
.y155{bottom:85.230000px;}
.y120{bottom:88.290000px;}
.y50{bottom:91.980000px;}
.y128{bottom:93.510000px;}
.y157{bottom:95.760000px;}
.ye6{bottom:100.260000px;}
.y149{bottom:103.050000px;}
.yfb{bottom:103.230000px;}
.y25{bottom:104.310000px;}
.ya9{bottom:105.870000px;}
.yc4{bottom:106.290000px;}
.y138{bottom:109.530000px;}
.y154{bottom:110.790000px;}
.y11f{bottom:113.760000px;}
.y164{bottom:115.290000px;}
.y4f{bottom:117.540000px;}
.y127{bottom:119.070000px;}
.y80{bottom:121.230000px;}
.ye5{bottom:125.730000px;}
.ya8{bottom:128.370000px;}
.y148{bottom:128.610000px;}
.yfa{bottom:128.790000px;}
.y24{bottom:129.870000px;}
.yc3{bottom:131.760000px;}
.y137{bottom:135.000000px;}
.y153{bottom:136.260000px;}
.y11e{bottom:139.230000px;}
.y163{bottom:140.760000px;}
.y4e{bottom:143.010000px;}
.y126{bottom:144.540000px;}
.y7f{bottom:146.790000px;}
.ya1{bottom:147.900000px;}
.ye4{bottom:151.290000px;}
.y147{bottom:154.080000px;}
.yf9{bottom:154.260000px;}
.y23{bottom:155.340000px;}
.yc2{bottom:157.230000px;}
.y136{bottom:160.560000px;}
.yca{bottom:161.730000px;}
.y11d{bottom:164.790000px;}
.ya7{bottom:165.900000px;}
.y162{bottom:166.230000px;}
.y4d{bottom:168.480000px;}
.y7e{bottom:172.260000px;}
.ye3{bottom:176.760000px;}
.y146{bottom:179.550000px;}
.yf8{bottom:179.730000px;}
.y22{bottom:180.810000px;}
.yc1{bottom:182.790000px;}
.ya6{bottom:183.900000px;}
.y125{bottom:183.960000px;}
.y135{bottom:186.030000px;}
.y70{bottom:187.290000px;}
.y11c{bottom:190.260000px;}
.y161{bottom:191.790000px;}
.y4c{bottom:194.040000px;}
.y7d{bottom:197.730000px;}
.ya5{bottom:201.900000px;}
.ye2{bottom:202.260000px;}
.y145{bottom:205.140000px;}
.yf7{bottom:205.320000px;}
.y21{bottom:206.400000px;}
.yc0{bottom:208.290000px;}
.y124{bottom:209.460000px;}
.y134{bottom:211.530000px;}
.y6f{bottom:212.790000px;}
.y11b{bottom:215.760000px;}
.y160{bottom:217.290000px;}
.y4b{bottom:219.540000px;}
.y89{bottom:219.630000px;}
.ya4{bottom:219.900000px;}
.y7c{bottom:223.320000px;}
.ye1{bottom:227.820000px;}
.y144{bottom:230.610000px;}
.yf6{bottom:230.790000px;}
.y20{bottom:231.870000px;}
.ybf{bottom:233.760000px;}
.y133{bottom:237.090000px;}
.ya3{bottom:237.900000px;}
.y6e{bottom:238.260000px;}
.y11a{bottom:241.320000px;}
.y15f{bottom:242.760000px;}
.y4a{bottom:245.010000px;}
.y7b{bottom:248.790000px;}
.ye0{bottom:253.290000px;}
.y88{bottom:255.900000px;}
.y143{bottom:256.080000px;}
.yf5{bottom:256.260000px;}
.ybe{bottom:259.320000px;}
.y132{bottom:262.560000px;}
.y6d{bottom:263.820000px;}
.y119{bottom:266.790000px;}
.y15e{bottom:268.320000px;}
.y49{bottom:270.570000px;}
.ya0{bottom:273.900000px;}
.y7a{bottom:274.260000px;}
.y1f{bottom:276.150000px;}
.ydf{bottom:278.760000px;}
.y142{bottom:281.640000px;}
.yf4{bottom:281.820000px;}
.ybd{bottom:284.790000px;}
.y131{bottom:288.030000px;}
.y6c{bottom:289.290000px;}
.y9f{bottom:291.900000px;}
.y118{bottom:292.260000px;}
.y48{bottom:296.040000px;}
.y79{bottom:299.820000px;}
.y1e{bottom:301.530000px;}
.yde{bottom:304.320000px;}
.y141{bottom:307.110000px;}
.yf3{bottom:307.290000px;}
.y9e{bottom:309.900000px;}
.ybc{bottom:310.260000px;}
.y15d{bottom:311.610000px;}
.y130{bottom:313.590000px;}
.y6b{bottom:314.760000px;}
.y117{bottom:317.820000px;}
.y47{bottom:321.510000px;}
.y78{bottom:325.290000px;}
.y1d{bottom:327.000000px;}
.y9d{bottom:327.900000px;}
.ydd{bottom:329.790000px;}
.y140{bottom:332.580000px;}
.yf2{bottom:332.760000px;}
.ybb{bottom:335.820000px;}
.y12f{bottom:339.060000px;}
.y6a{bottom:340.320000px;}
.y116{bottom:343.290000px;}
.y9c{bottom:345.900000px;}
.y46{bottom:347.070000px;}
.y77{bottom:350.760000px;}
.ydc{bottom:355.260000px;}
.y13f{bottom:358.140000px;}
.y152{bottom:358.230000px;}
.yf1{bottom:358.320000px;}
.yba{bottom:361.290000px;}
.y9b{bottom:363.900000px;}
.y12e{bottom:364.530000px;}
.yc9{bottom:365.790000px;}
.y115{bottom:368.760000px;}
.y1c{bottom:370.650000px;}
.y45{bottom:372.540000px;}
.y76{bottom:376.320000px;}
.ydb{bottom:380.820000px;}
.y9a{bottom:381.900000px;}
.y13e{bottom:383.610000px;}
.y69{bottom:383.700000px;}
.yf0{bottom:383.790000px;}
.yb9{bottom:386.760000px;}
.y12d{bottom:390.090000px;}
.yc8{bottom:391.260000px;}
.y114{bottom:394.320000px;}
.y1b{bottom:396.120000px;}
.y44{bottom:398.010000px;}
.y15c{bottom:398.640000px;}
.y99{bottom:399.930000px;}
.y75{bottom:401.790000px;}
.yda{bottom:406.290000px;}
.y13d{bottom:409.080000px;}
.yef{bottom:409.260000px;}
.yb8{bottom:412.320000px;}
.y12c{bottom:415.560000px;}
.yc7{bottom:416.820000px;}
.y98{bottom:417.930000px;}
.y113{bottom:419.790000px;}
.y43{bottom:423.570000px;}
.y68{bottom:427.260000px;}
.y13c{bottom:434.640000px;}
.yee{bottom:434.820000px;}
.y97{bottom:435.930000px;}
.yb7{bottom:437.790000px;}
.y12b{bottom:441.030000px;}
.y15b{bottom:442.290000px;}
.y112{bottom:445.260000px;}
.y1a{bottom:447.870000px;}
.y42{bottom:449.040000px;}
.yd9{bottom:449.760000px;}
.y67{bottom:452.820000px;}
.y96{bottom:453.930000px;}
.yc6{bottom:460.200000px;}
.yed{bottom:460.290000px;}
.yb6{bottom:463.260000px;}
.y19{bottom:465.150000px;}
.y15a{bottom:467.760000px;}
.y111{bottom:470.820000px;}
.y95{bottom:471.930000px;}
.y41{bottom:474.510000px;}
.y13b{bottom:478.110000px;}
.y66{bottom:478.290000px;}
.y12a{bottom:480.450000px;}
.yec{bottom:485.760000px;}
.yb5{bottom:488.820000px;}
.y94{bottom:489.930000px;}
.yd8{bottom:493.320000px;}
.y110{bottom:496.290000px;}
.y18{bottom:498.900000px;}
.y40{bottom:500.070000px;}
.y65{bottom:503.760000px;}
.y93{bottom:507.930000px;}
.yeb{bottom:511.320000px;}
.yb4{bottom:514.290000px;}
.y17{bottom:516.090000px;}
.y13a{bottom:517.530000px;}
.yd7{bottom:518.790000px;}
.y10f{bottom:521.760000px;}
.y3f{bottom:525.540000px;}
.y92{bottom:525.930000px;}
.y64{bottom:529.320000px;}
.yea{bottom:536.790000px;}
.yb3{bottom:539.760000px;}
.y91{bottom:543.930000px;}
.yd6{bottom:544.260000px;}
.y10e{bottom:547.320000px;}
.y16{bottom:549.930000px;}
.y3e{bottom:551.010000px;}
.y63{bottom:554.790000px;}
.y90{bottom:561.930000px;}
.ye9{bottom:562.260000px;}
.yb2{bottom:565.320000px;}
.y15{bottom:567.120000px;}
.yd5{bottom:569.820000px;}
.y156{bottom:572.700000px;}
.y10d{bottom:572.790000px;}
.y8f{bottom:579.930000px;}
.y62{bottom:580.260000px;}
.ye8{bottom:587.820000px;}
.yb1{bottom:590.790000px;}
.y3d{bottom:594.480000px;}
.yd4{bottom:595.290000px;}
.y8e{bottom:597.930000px;}
.y10c{bottom:598.260000px;}
.y14{bottom:600.870000px;}
.y122{bottom:603.030000px;}
.y61{bottom:605.820000px;}
.y150{bottom:613.290000px;}
.y8d{bottom:615.930000px;}
.yb0{bottom:616.260000px;}
.y13{bottom:618.150000px;}
.yd3{bottom:620.760000px;}
.y10b{bottom:623.820000px;}
.y121{bottom:628.530000px;}
.y60{bottom:631.320000px;}
.y8c{bottom:633.930000px;}
.y3c{bottom:637.890000px;}
.y14f{bottom:638.790000px;}
.yaf{bottom:641.850000px;}
.yd2{bottom:646.350000px;}
.y10a{bottom:649.320000px;}
.y12{bottom:651.930000px;}
.y5f{bottom:656.790000px;}
.y14e{bottom:664.350000px;}
.yae{bottom:667.320000px;}
.y11{bottom:669.120000px;}
.y8b{bottom:669.930000px;}
.yd1{bottom:671.820000px;}
.y109{bottom:674.790000px;}
.y5e{bottom:682.350000px;}
.y8a{bottom:687.930000px;}
.y159{bottom:689.640000px;}
.y14d{bottom:689.820000px;}
.yad{bottom:692.790000px;}
.y10{bottom:694.680000px;}
.yd0{bottom:697.290000px;}
.ye7{bottom:700.260000px;}
.y3b{bottom:700.350000px;}
.y84{bottom:706.650000px;}
.y5d{bottom:707.820000px;}
.y14c{bottom:715.290000px;}
.yac{bottom:718.350000px;}
.ycf{bottom:722.850000px;}
.y3a{bottom:725.820000px;}
.yf{bottom:728.430000px;}
.y5c{bottom:733.290000px;}
.yab{bottom:743.820000px;}
.yce{bottom:748.320000px;}
.y39{bottom:751.290000px;}
.ye{bottom:753.900000px;}
.y83{bottom:757.260000px;}
.y14b{bottom:758.760000px;}
.y5b{bottom:758.850000px;}
.yaa{bottom:769.290000px;}
.yd{bottom:771.180000px;}
.ycd{bottom:773.790000px;}
.y108{bottom:776.850000px;}
.y82{bottom:782.550000px;}
.y5a{bottom:784.320000px;}
.y38{bottom:794.850000px;}
.ycc{bottom:799.350000px;}
.y14a{bottom:802.140000px;}
.y107{bottom:802.320000px;}
.yc{bottom:804.930000px;}
.y81{bottom:808.290000px;}
.y59{bottom:809.790000px;}
.y37{bottom:820.320000px;}
.y106{bottom:827.790000px;}
.y58{bottom:835.350000px;}
.yb{bottom:839.940000px;}
.ycb{bottom:842.820000px;}
.y36{bottom:845.790000px;}
.y105{bottom:853.350000px;}
.y57{bottom:860.820000px;}
.ya{bottom:865.500000px;}
.y35{bottom:871.350000px;}
.y151{bottom:878.730000px;}
.yfe{bottom:878.820000px;}
.y56{bottom:886.290000px;}
.y34{bottom:896.820000px;}
.yc5{bottom:904.200000px;}
.yfd{bottom:904.290000px;}
.y9{bottom:910.950000px;}
.y55{bottom:911.850000px;}
.y33{bottom:922.290000px;}
.yfc{bottom:929.850000px;}
.y54{bottom:937.320000px;}
.y8{bottom:942.000000px;}
.y32{bottom:947.850000px;}
.y158{bottom:955.140000px;}
.y104{bottom:955.320000px;}
.y53{bottom:962.790000px;}
.y7{bottom:973.050000px;}
.y31{bottom:973.320000px;}
.y103{bottom:980.790000px;}
.y52{bottom:988.350000px;}
.y30{bottom:998.790000px;}
.y102{bottom:1006.350000px;}
.y74{bottom:1013.820000px;}
.y6{bottom:1020.210000px;}
.y2f{bottom:1024.350000px;}
.y51{bottom:1031.730000px;}
.y101{bottom:1031.820000px;}
.y73{bottom:1039.290000px;}
.y5{bottom:1045.860000px;}
.y129{bottom:1049.730000px;}
.y2e{bottom:1049.850000px;}
.y100{bottom:1057.320000px;}
.y4{bottom:1066.410000px;}
.y2d{bottom:1075.320000px;}
.y72{bottom:1082.790000px;}
.yff{bottom:1082.880000px;}
.y3{bottom:1094.940000px;}
.y2c{bottom:1100.880000px;}
.y71{bottom:1126.170000px;}
.y2b{bottom:1126.350000px;}
.y2{bottom:1145.250000px;}
.y29{bottom:1151.640000px;}
.y1{bottom:1166.580000px;}
.y28{bottom:1177.380000px;}
.ha{height:17.190000px;}
.h10{height:18.000000px;}
.h12{height:18.030000px;}
.h15{height:25.500000px;}
.he{height:36.030000px;}
.h9{height:39.767520px;}
.hb{height:41.156367px;}
.h11{height:41.743477px;}
.h5{height:49.289062px;}
.h3{height:49.933652px;}
.h6{height:49.992188px;}
.h2{height:59.800781px;}
.h8{height:65.897227px;}
.h17{height:66.364805px;}
.h7{height:73.933594px;}
.h13{height:108.000000px;}
.h4{height:146.285156px;}
.h16{height:393.570000px;}
.h14{height:399.240000px;}
.hf{height:450.030000px;}
.hd{height:893.250000px;}
.hc{height:893.430000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:83.700000px;}
.w9{width:87.840000px;}
.w5{width:88.740000px;}
.w6{width:92.100000px;}
.w2{width:118.890000px;}
.wa{width:121.530000px;}
.w8{width:155.250000px;}
.wc{width:195.690000px;}
.wb{width:222.930000px;}
.we{width:367.230000px;}
.wd{width:373.350000px;}
.wf{width:740.580000px;}
.w1{width:893.250000px;}
.w0{width:893.430000px;}
.w4{width:1262.250000px;}
.w3{width:1262.520000px;}
.x0{left:0.000000px;}
.x9{left:7.200000px;}
.x13{left:8.460000px;}
.x17{left:11.070000px;}
.x10{left:14.760000px;}
.x26{left:16.020000px;}
.x19{left:18.630000px;}
.x2d{left:21.090000px;}
.x1a{left:22.680000px;}
.x15{left:24.510000px;}
.x1b{left:25.560000px;}
.x29{left:28.110000px;}
.xe{left:29.370000px;}
.x1c{left:31.890000px;}
.x30{left:35.580000px;}
.x31{left:39.090000px;}
.x1d{left:40.350000px;}
.x20{left:41.850000px;}
.xc{left:44.370000px;}
.x1f{left:46.020000px;}
.x22{left:48.150000px;}
.x32{left:49.230000px;}
.x27{left:51.750000px;}
.x2c{left:58.860000px;}
.x25{left:62.100000px;}
.x2a{left:66.780000px;}
.x2f{left:68.040000px;}
.x28{left:70.110000px;}
.x2b{left:72.630000px;}
.x1{left:74.520000px;}
.x33{left:76.410000px;}
.x2e{left:77.580000px;}
.x21{left:79.920000px;}
.x24{left:93.600000px;}
.x6{left:96.120000px;}
.x1e{left:97.830000px;}
.xb{left:107.460000px;}
.x23{left:111.420000px;}
.x3c{left:115.560000px;}
.x7{left:116.640000px;}
.x38{left:172.650000px;}
.x37{left:176.160000px;}
.xd{left:196.200000px;}
.xf{left:288.210000px;}
.xa{left:291.360000px;}
.x36{left:358.680000px;}
.x34{left:361.200000px;}
.x11{left:371.910000px;}
.x35{left:449.760000px;}
.x12{left:527.160000px;}
.x39{left:549.330000px;}
.x3a{left:555.270000px;}
.x5{left:591.000000px;}
.x3b{left:604.950000px;}
.x14{left:615.000000px;}
.x3{left:663.000000px;}
.x4{left:696.480000px;}
.x8{left:699.990000px;}
.x16{left:736.530000px;}
.x2{left:818.970000px;}
.x18{left:959.460000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-8.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls2a{letter-spacing:-21.333333pt;}
.ls10{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.152000pt;}
.ls28{letter-spacing:-1.088000pt;}
.ls27{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.440533pt;}
.ls29{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.136533pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.124267pt;}
.ls6{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.011840pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.106667pt;}
.ls15{letter-spacing:0.124267pt;}
.ls14{letter-spacing:0.124480pt;}
.ls4{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls20{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.660480pt;}
.lse{letter-spacing:1.280000pt;}
.ls1e{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:3.200000pt;}
.ls26{letter-spacing:3.600000pt;}
.ls25{letter-spacing:3.840000pt;}
.ls1d{letter-spacing:4.160000pt;}
.ls12{letter-spacing:4.480000pt;}
.ls11{letter-spacing:5.760000pt;}
.ls21{letter-spacing:6.720000pt;}
.ls23{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:7.680000pt;}
.ls2b{letter-spacing:8.000000pt;}
.ls2d{letter-spacing:8.960000pt;}
.ls24{letter-spacing:10.240000pt;}
.ls2e{letter-spacing:10.666667pt;}
.ls1f{letter-spacing:11.200000pt;}
.ls9{letter-spacing:28.160000pt;}
.ls2{letter-spacing:39.360000pt;}
.ls0{letter-spacing:40.640000pt;}
.ws8{word-spacing:-64.000000pt;}
.wse{word-spacing:-53.440000pt;}
.ws19{word-spacing:-16.320000pt;}
.ws15{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws5{word-spacing:-15.680000pt;}
.ws1a{word-spacing:-15.616000pt;}
.ws4{word-spacing:-15.360000pt;}
.ws17{word-spacing:-15.040000pt;}
.ws18{word-spacing:-14.912000pt;}
.wsa{word-spacing:-14.848000pt;}
.wsb{word-spacing:-14.720000pt;}
.ws11{word-spacing:-13.520000pt;}
.ws13{word-spacing:-13.496533pt;}
.wsf{word-spacing:-13.360000pt;}
.ws12{word-spacing:-13.348160pt;}
.ws10{word-spacing:-13.235733pt;}
.ws14{word-spacing:-13.223467pt;}
.ws16{word-spacing:-12.640000pt;}
.ws2{word-spacing:-10.640000pt;}
.ws1{word-spacing:-9.840000pt;}
.ws6{word-spacing:0.000000pt;}
.ws1b{word-spacing:26.688000pt;}
._2{margin-left:-22.725333pt;}
._3{margin-left:-21.141333pt;}
._26{margin-left:-17.749333pt;}
._2a{margin-left:-3.264000pt;}
._1{margin-left:-1.984000pt;}
._0{margin-left:-1.088000pt;}
._4{width:1.173333pt;}
._b{width:2.944000pt;}
._a{width:4.394667pt;}
._7{width:5.653333pt;}
._6{width:6.570667pt;}
._8{width:7.808000pt;}
._9{width:8.725333pt;}
._18{width:10.368000pt;}
._f{width:11.264000pt;}
._e{width:12.352000pt;}
._d{width:13.248000pt;}
._19{width:14.250667pt;}
._10{width:17.024000pt;}
._12{width:18.176000pt;}
._1e{width:19.392000pt;}
._16{width:20.672000pt;}
._15{width:21.888000pt;}
._1b{width:22.784000pt;}
._1a{width:23.680000pt;}
._21{width:25.152000pt;}
._22{width:26.090667pt;}
._11{width:27.328000pt;}
._5{width:28.800000pt;}
._20{width:30.400000pt;}
._1f{width:31.552000pt;}
._23{width:33.024000pt;}
._24{width:34.026667pt;}
._17{width:35.072000pt;}
._27{width:36.288000pt;}
._29{width:39.232000pt;}
._14{width:50.240000pt;}
._13{width:51.242667pt;}
._28{width:65.920000pt;}
._25{width:81.920000pt;}
._1d{width:2072.213333pt;}
._c{width:2102.933333pt;}
._1c{width:3416.320000pt;}
.fs4{font-size:42.560000pt;}
.fs6{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.fs2{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:2.880000pt;}
.y87{bottom:3.200000pt;}
.y123{bottom:3.600000pt;}
.y85{bottom:11.200000pt;}
.y86{bottom:19.226667pt;}
.y2a{bottom:40.960000pt;}
.ya2{bottom:43.200000pt;}
.y26{bottom:70.080000pt;}
.y165{bottom:71.760000pt;}
.y139{bottom:74.720000pt;}
.y155{bottom:75.760000pt;}
.y120{bottom:78.480000pt;}
.y50{bottom:81.760000pt;}
.y128{bottom:83.120000pt;}
.y157{bottom:85.120000pt;}
.ye6{bottom:89.120000pt;}
.y149{bottom:91.600000pt;}
.yfb{bottom:91.760000pt;}
.y25{bottom:92.720000pt;}
.ya9{bottom:94.106667pt;}
.yc4{bottom:94.480000pt;}
.y138{bottom:97.360000pt;}
.y154{bottom:98.480000pt;}
.y11f{bottom:101.120000pt;}
.y164{bottom:102.480000pt;}
.y4f{bottom:104.480000pt;}
.y127{bottom:105.840000pt;}
.y80{bottom:107.760000pt;}
.ye5{bottom:111.760000pt;}
.ya8{bottom:114.106667pt;}
.y148{bottom:114.320000pt;}
.yfa{bottom:114.480000pt;}
.y24{bottom:115.440000pt;}
.yc3{bottom:117.120000pt;}
.y137{bottom:120.000000pt;}
.y153{bottom:121.120000pt;}
.y11e{bottom:123.760000pt;}
.y163{bottom:125.120000pt;}
.y4e{bottom:127.120000pt;}
.y126{bottom:128.480000pt;}
.y7f{bottom:130.480000pt;}
.ya1{bottom:131.466667pt;}
.ye4{bottom:134.480000pt;}
.y147{bottom:136.960000pt;}
.yf9{bottom:137.120000pt;}
.y23{bottom:138.080000pt;}
.yc2{bottom:139.760000pt;}
.y136{bottom:142.720000pt;}
.yca{bottom:143.760000pt;}
.y11d{bottom:146.480000pt;}
.ya7{bottom:147.466667pt;}
.y162{bottom:147.760000pt;}
.y4d{bottom:149.760000pt;}
.y7e{bottom:153.120000pt;}
.ye3{bottom:157.120000pt;}
.y146{bottom:159.600000pt;}
.yf8{bottom:159.760000pt;}
.y22{bottom:160.720000pt;}
.yc1{bottom:162.480000pt;}
.ya6{bottom:163.466667pt;}
.y125{bottom:163.520000pt;}
.y135{bottom:165.360000pt;}
.y70{bottom:166.480000pt;}
.y11c{bottom:169.120000pt;}
.y161{bottom:170.480000pt;}
.y4c{bottom:172.480000pt;}
.y7d{bottom:175.760000pt;}
.ya5{bottom:179.466667pt;}
.ye2{bottom:179.786667pt;}
.y145{bottom:182.346667pt;}
.yf7{bottom:182.506667pt;}
.y21{bottom:183.466667pt;}
.yc0{bottom:185.146667pt;}
.y124{bottom:186.186667pt;}
.y134{bottom:188.026667pt;}
.y6f{bottom:189.146667pt;}
.y11b{bottom:191.786667pt;}
.y160{bottom:193.146667pt;}
.y4b{bottom:195.146667pt;}
.y89{bottom:195.226667pt;}
.ya4{bottom:195.466667pt;}
.y7c{bottom:198.506667pt;}
.ye1{bottom:202.506667pt;}
.y144{bottom:204.986667pt;}
.yf6{bottom:205.146667pt;}
.y20{bottom:206.106667pt;}
.ybf{bottom:207.786667pt;}
.y133{bottom:210.746667pt;}
.ya3{bottom:211.466667pt;}
.y6e{bottom:211.786667pt;}
.y11a{bottom:214.506667pt;}
.y15f{bottom:215.786667pt;}
.y4a{bottom:217.786667pt;}
.y7b{bottom:221.146667pt;}
.ye0{bottom:225.146667pt;}
.y88{bottom:227.466667pt;}
.y143{bottom:227.626667pt;}
.yf5{bottom:227.786667pt;}
.ybe{bottom:230.506667pt;}
.y132{bottom:233.386667pt;}
.y6d{bottom:234.506667pt;}
.y119{bottom:237.146667pt;}
.y15e{bottom:238.506667pt;}
.y49{bottom:240.506667pt;}
.ya0{bottom:243.466667pt;}
.y7a{bottom:243.786667pt;}
.y1f{bottom:245.466667pt;}
.ydf{bottom:247.786667pt;}
.y142{bottom:250.346667pt;}
.yf4{bottom:250.506667pt;}
.ybd{bottom:253.146667pt;}
.y131{bottom:256.026667pt;}
.y6c{bottom:257.146667pt;}
.y9f{bottom:259.466667pt;}
.y118{bottom:259.786667pt;}
.y48{bottom:263.146667pt;}
.y79{bottom:266.506667pt;}
.y1e{bottom:268.026667pt;}
.yde{bottom:270.506667pt;}
.y141{bottom:272.986667pt;}
.yf3{bottom:273.146667pt;}
.y9e{bottom:275.466667pt;}
.ybc{bottom:275.786667pt;}
.y15d{bottom:276.986667pt;}
.y130{bottom:278.746667pt;}
.y6b{bottom:279.786667pt;}
.y117{bottom:282.506667pt;}
.y47{bottom:285.786667pt;}
.y78{bottom:289.146667pt;}
.y1d{bottom:290.666667pt;}
.y9d{bottom:291.466667pt;}
.ydd{bottom:293.146667pt;}
.y140{bottom:295.626667pt;}
.yf2{bottom:295.786667pt;}
.ybb{bottom:298.506667pt;}
.y12f{bottom:301.386667pt;}
.y6a{bottom:302.506667pt;}
.y116{bottom:305.146667pt;}
.y9c{bottom:307.466667pt;}
.y46{bottom:308.506667pt;}
.y77{bottom:311.786667pt;}
.ydc{bottom:315.786667pt;}
.y13f{bottom:318.346667pt;}
.y152{bottom:318.426667pt;}
.yf1{bottom:318.506667pt;}
.yba{bottom:321.146667pt;}
.y9b{bottom:323.466667pt;}
.y12e{bottom:324.026667pt;}
.yc9{bottom:325.146667pt;}
.y115{bottom:327.786667pt;}
.y1c{bottom:329.466667pt;}
.y45{bottom:331.146667pt;}
.y76{bottom:334.506667pt;}
.ydb{bottom:338.506667pt;}
.y9a{bottom:339.466667pt;}
.y13e{bottom:340.986667pt;}
.y69{bottom:341.066667pt;}
.yf0{bottom:341.146667pt;}
.yb9{bottom:343.786667pt;}
.y12d{bottom:346.746667pt;}
.yc8{bottom:347.786667pt;}
.y114{bottom:350.506667pt;}
.y1b{bottom:352.106667pt;}
.y44{bottom:353.786667pt;}
.y15c{bottom:354.346667pt;}
.y99{bottom:355.493333pt;}
.y75{bottom:357.146667pt;}
.yda{bottom:361.146667pt;}
.y13d{bottom:363.626667pt;}
.yef{bottom:363.786667pt;}
.yb8{bottom:366.506667pt;}
.y12c{bottom:369.386667pt;}
.yc7{bottom:370.506667pt;}
.y98{bottom:371.493333pt;}
.y113{bottom:373.146667pt;}
.y43{bottom:376.506667pt;}
.y68{bottom:379.786667pt;}
.y13c{bottom:386.346667pt;}
.yee{bottom:386.506667pt;}
.y97{bottom:387.493333pt;}
.yb7{bottom:389.146667pt;}
.y12b{bottom:392.026667pt;}
.y15b{bottom:393.146667pt;}
.y112{bottom:395.786667pt;}
.y1a{bottom:398.106667pt;}
.y42{bottom:399.146667pt;}
.yd9{bottom:399.786667pt;}
.y67{bottom:402.506667pt;}
.y96{bottom:403.493333pt;}
.yc6{bottom:409.066667pt;}
.yed{bottom:409.146667pt;}
.yb6{bottom:411.786667pt;}
.y19{bottom:413.466667pt;}
.y15a{bottom:415.786667pt;}
.y111{bottom:418.506667pt;}
.y95{bottom:419.493333pt;}
.y41{bottom:421.786667pt;}
.y13b{bottom:424.986667pt;}
.y66{bottom:425.146667pt;}
.y12a{bottom:427.066667pt;}
.yec{bottom:431.786667pt;}
.yb5{bottom:434.506667pt;}
.y94{bottom:435.493333pt;}
.yd8{bottom:438.506667pt;}
.y110{bottom:441.146667pt;}
.y18{bottom:443.466667pt;}
.y40{bottom:444.506667pt;}
.y65{bottom:447.786667pt;}
.y93{bottom:451.493333pt;}
.yeb{bottom:454.506667pt;}
.yb4{bottom:457.146667pt;}
.y17{bottom:458.746667pt;}
.y13a{bottom:460.026667pt;}
.yd7{bottom:461.146667pt;}
.y10f{bottom:463.786667pt;}
.y3f{bottom:467.146667pt;}
.y92{bottom:467.493333pt;}
.y64{bottom:470.506667pt;}
.yea{bottom:477.146667pt;}
.yb3{bottom:479.786667pt;}
.y91{bottom:483.493333pt;}
.yd6{bottom:483.786667pt;}
.y10e{bottom:486.506667pt;}
.y16{bottom:488.826667pt;}
.y3e{bottom:489.786667pt;}
.y63{bottom:493.146667pt;}
.y90{bottom:499.493333pt;}
.ye9{bottom:499.786667pt;}
.yb2{bottom:502.506667pt;}
.y15{bottom:504.106667pt;}
.yd5{bottom:506.506667pt;}
.y156{bottom:509.066667pt;}
.y10d{bottom:509.146667pt;}
.y8f{bottom:515.493333pt;}
.y62{bottom:515.786667pt;}
.ye8{bottom:522.506667pt;}
.yb1{bottom:525.146667pt;}
.y3d{bottom:528.426667pt;}
.yd4{bottom:529.146667pt;}
.y8e{bottom:531.493333pt;}
.y10c{bottom:531.786667pt;}
.y14{bottom:534.106667pt;}
.y122{bottom:536.026667pt;}
.y61{bottom:538.506667pt;}
.y150{bottom:545.146667pt;}
.y8d{bottom:547.493333pt;}
.yb0{bottom:547.786667pt;}
.y13{bottom:549.466667pt;}
.yd3{bottom:551.786667pt;}
.y10b{bottom:554.506667pt;}
.y121{bottom:558.693333pt;}
.y60{bottom:561.173333pt;}
.y8c{bottom:563.493333pt;}
.y3c{bottom:567.013333pt;}
.y14f{bottom:567.813333pt;}
.yaf{bottom:570.533333pt;}
.yd2{bottom:574.533333pt;}
.y10a{bottom:577.173333pt;}
.y12{bottom:579.493333pt;}
.y5f{bottom:583.813333pt;}
.y14e{bottom:590.533333pt;}
.yae{bottom:593.173333pt;}
.y11{bottom:594.773333pt;}
.y8b{bottom:595.493333pt;}
.yd1{bottom:597.173333pt;}
.y109{bottom:599.813333pt;}
.y5e{bottom:606.533333pt;}
.y8a{bottom:611.493333pt;}
.y159{bottom:613.013333pt;}
.y14d{bottom:613.173333pt;}
.yad{bottom:615.813333pt;}
.y10{bottom:617.493333pt;}
.yd0{bottom:619.813333pt;}
.ye7{bottom:622.453333pt;}
.y3b{bottom:622.533333pt;}
.y84{bottom:628.133333pt;}
.y5d{bottom:629.173333pt;}
.y14c{bottom:635.813333pt;}
.yac{bottom:638.533333pt;}
.ycf{bottom:642.533333pt;}
.y3a{bottom:645.173333pt;}
.yf{bottom:647.493333pt;}
.y5c{bottom:651.813333pt;}
.yab{bottom:661.173333pt;}
.yce{bottom:665.173333pt;}
.y39{bottom:667.813333pt;}
.ye{bottom:670.133333pt;}
.y83{bottom:673.120000pt;}
.y14b{bottom:674.453333pt;}
.y5b{bottom:674.533333pt;}
.yaa{bottom:683.813333pt;}
.yd{bottom:685.493333pt;}
.ycd{bottom:687.813333pt;}
.y108{bottom:690.533333pt;}
.y82{bottom:695.600000pt;}
.y5a{bottom:697.173333pt;}
.y38{bottom:706.533333pt;}
.ycc{bottom:710.533333pt;}
.y14a{bottom:713.013333pt;}
.y107{bottom:713.173333pt;}
.yc{bottom:715.493333pt;}
.y81{bottom:718.480000pt;}
.y59{bottom:719.813333pt;}
.y37{bottom:729.173333pt;}
.y106{bottom:735.813333pt;}
.y58{bottom:742.533333pt;}
.yb{bottom:746.613333pt;}
.ycb{bottom:749.173333pt;}
.y36{bottom:751.813333pt;}
.y105{bottom:758.533333pt;}
.y57{bottom:765.173333pt;}
.ya{bottom:769.333333pt;}
.y35{bottom:774.533333pt;}
.y151{bottom:781.093333pt;}
.yfe{bottom:781.173333pt;}
.y56{bottom:787.813333pt;}
.y34{bottom:797.173333pt;}
.yc5{bottom:803.733333pt;}
.yfd{bottom:803.813333pt;}
.y9{bottom:809.733333pt;}
.y55{bottom:810.533333pt;}
.y33{bottom:819.813333pt;}
.yfc{bottom:826.533333pt;}
.y54{bottom:833.173333pt;}
.y8{bottom:837.333333pt;}
.y32{bottom:842.533333pt;}
.y158{bottom:849.013333pt;}
.y104{bottom:849.173333pt;}
.y53{bottom:855.813333pt;}
.y7{bottom:864.933333pt;}
.y31{bottom:865.173333pt;}
.y103{bottom:871.813333pt;}
.y52{bottom:878.533333pt;}
.y30{bottom:887.813333pt;}
.y102{bottom:894.533333pt;}
.y74{bottom:901.173333pt;}
.y6{bottom:906.853333pt;}
.y2f{bottom:910.533333pt;}
.y51{bottom:917.093333pt;}
.y101{bottom:917.173333pt;}
.y73{bottom:923.813333pt;}
.y5{bottom:929.653333pt;}
.y129{bottom:933.093333pt;}
.y2e{bottom:933.200000pt;}
.y100{bottom:939.840000pt;}
.y4{bottom:947.920000pt;}
.y2d{bottom:955.840000pt;}
.y72{bottom:962.480000pt;}
.yff{bottom:962.560000pt;}
.y3{bottom:973.280000pt;}
.y2c{bottom:978.560000pt;}
.y71{bottom:1001.040000pt;}
.y2b{bottom:1001.200000pt;}
.y2{bottom:1018.000000pt;}
.y29{bottom:1023.680000pt;}
.y1{bottom:1036.960000pt;}
.y28{bottom:1046.560000pt;}
.ha{height:15.280000pt;}
.h10{height:16.000000pt;}
.h12{height:16.026667pt;}
.h15{height:22.666667pt;}
.he{height:32.026667pt;}
.h9{height:35.348906pt;}
.hb{height:36.583437pt;}
.h11{height:37.105312pt;}
.h5{height:43.812500pt;}
.h3{height:44.385469pt;}
.h6{height:44.437500pt;}
.h2{height:53.156250pt;}
.h8{height:58.575312pt;}
.h17{height:58.990937pt;}
.h7{height:65.718750pt;}
.h13{height:96.000000pt;}
.h4{height:130.031250pt;}
.h16{height:349.840000pt;}
.h14{height:354.880000pt;}
.hf{height:400.026667pt;}
.hd{height:794.000000pt;}
.hc{height:794.160000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:74.400000pt;}
.w9{width:78.080000pt;}
.w5{width:78.880000pt;}
.w6{width:81.866667pt;}
.w2{width:105.680000pt;}
.wa{width:108.026667pt;}
.w8{width:138.000000pt;}
.wc{width:173.946667pt;}
.wb{width:198.160000pt;}
.we{width:326.426667pt;}
.wd{width:331.866667pt;}
.wf{width:658.293333pt;}
.w1{width:794.000000pt;}
.w0{width:794.160000pt;}
.w4{width:1122.000000pt;}
.w3{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x9{left:6.400000pt;}
.x13{left:7.520000pt;}
.x17{left:9.840000pt;}
.x10{left:13.120000pt;}
.x26{left:14.240000pt;}
.x19{left:16.560000pt;}
.x2d{left:18.746667pt;}
.x1a{left:20.160000pt;}
.x15{left:21.786667pt;}
.x1b{left:22.720000pt;}
.x29{left:24.986667pt;}
.xe{left:26.106667pt;}
.x1c{left:28.346667pt;}
.x30{left:31.626667pt;}
.x31{left:34.746667pt;}
.x1d{left:35.866667pt;}
.x20{left:37.200000pt;}
.xc{left:39.440000pt;}
.x1f{left:40.906667pt;}
.x22{left:42.800000pt;}
.x32{left:43.760000pt;}
.x27{left:46.000000pt;}
.x2c{left:52.320000pt;}
.x25{left:55.200000pt;}
.x2a{left:59.360000pt;}
.x2f{left:60.480000pt;}
.x28{left:62.320000pt;}
.x2b{left:64.560000pt;}
.x1{left:66.240000pt;}
.x33{left:67.920000pt;}
.x2e{left:68.960000pt;}
.x21{left:71.040000pt;}
.x24{left:83.200000pt;}
.x6{left:85.440000pt;}
.x1e{left:86.960000pt;}
.xb{left:95.520000pt;}
.x23{left:99.040000pt;}
.x3c{left:102.720000pt;}
.x7{left:103.680000pt;}
.x38{left:153.466667pt;}
.x37{left:156.586667pt;}
.xd{left:174.400000pt;}
.xf{left:256.186667pt;}
.xa{left:258.986667pt;}
.x36{left:318.826667pt;}
.x34{left:321.066667pt;}
.x11{left:330.586667pt;}
.x35{left:399.786667pt;}
.x12{left:468.586667pt;}
.x39{left:488.293333pt;}
.x3a{left:493.573333pt;}
.x5{left:525.333333pt;}
.x3b{left:537.733333pt;}
.x14{left:546.666667pt;}
.x3{left:589.333333pt;}
.x4{left:619.093333pt;}
.x8{left:622.213333pt;}
.x16{left:654.693333pt;}
.x2{left:727.973333pt;}
.x18{left:852.853333pt;}
}




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