
    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_a6adc805497307424dc6a47e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_32ae7d45c27cdb4d374ee881.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_01168eee1eeb43f525ff6421.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_4159babb57353a0fd769fc7b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_77a30f3e5b1d4de8f1065305.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_91c563bd155ab4c986afcd47.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_743e4c10ec46d13205fb81b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d4f6ff10fa0550e318c4ea7b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.706543;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;}
.ls3{letter-spacing:-2.160000px;}
.ls12{letter-spacing:-1.440000px;}
.ls11{letter-spacing:-1.008000px;}
.lsb{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.322800px;}
.ls8{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.720000px;}
.lsf{letter-spacing:6.480000px;}
.ls10{letter-spacing:9.360000px;}
.lsc{letter-spacing:21.221280px;}
.ls13{letter-spacing:21.341280px;}
.lse{letter-spacing:25.200000px;}
.ls4{letter-spacing:33.960000px;}
.ls5{letter-spacing:33.984000px;}
.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;}
}
.wsb{word-spacing:-72.000000px;}
.ws1{word-spacing:-24.300000px;}
.ws0{word-spacing:-23.940000px;}
.ws9{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.060000px;}
.wsa{word-spacing:-20.737200px;}
.ws5{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-2.736000px;}
._0{margin-left:-1.008000px;}
._1{width:1.584000px;}
._2{width:2.736000px;}
._3{width:4.332000px;}
._a{width:5.472000px;}
._9{width:6.864000px;}
._17{width:8.208000px;}
._12{width:9.720000px;}
._13{width:10.872000px;}
._18{width:11.880000px;}
._b{width:12.960000px;}
._c{width:14.112000px;}
._d{width:15.276000px;}
._1c{width:16.344000px;}
._10{width:19.512000px;}
._11{width:20.532000px;}
._24{width:21.672000px;}
._1f{width:23.112000px;}
._20{width:24.480000px;}
._4{width:25.848000px;}
._5{width:27.216000px;}
._f{width:29.088000px;}
._e{width:30.168000px;}
._25{width:31.176000px;}
._19{width:32.184000px;}
._1a{width:33.672000px;}
._15{width:35.136000px;}
._16{width:36.720000px;}
._1d{width:38.304000px;}
._8{width:40.752000px;}
._6{width:41.760000px;}
._7{width:42.780000px;}
._1b{width:43.980000px;}
._23{width:45.792000px;}
._1e{width:49.536000px;}
._2a{width:52.632000px;}
._21{width:54.576000px;}
._22{width:55.728000px;}
._26{width:59.760000px;}
._27{width:61.092000px;}
._2b{width:65.124000px;}
._2c{width:66.348000px;}
._28{width:82.368000px;}
._29{width:83.520000px;}
._2f{width:128.568000px;}
._2e{width:129.888000px;}
._2d{width:130.896000px;}
._30{width:1901.160000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(54,95,145);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y145{bottom:16.380000px;}
.y14b{bottom:16.560000px;}
.y149{bottom:16.605000px;}
.y3f{bottom:111.600000px;}
.y121{bottom:112.860000px;}
.y143{bottom:115.560000px;}
.yf1{bottom:115.740000px;}
.y10b{bottom:122.580000px;}
.y17e{bottom:125.460000px;}
.y168{bottom:126.000000px;}
.yca{bottom:131.400000px;}
.y1f{bottom:140.760000px;}
.y5f{bottom:140.940000px;}
.y120{bottom:144.000000px;}
.y196{bottom:146.160000px;}
.y142{bottom:146.700000px;}
.yf0{bottom:146.880000px;}
.y3e{bottom:147.780000px;}
.y10a{bottom:153.720000px;}
.y17d{bottom:156.420000px;}
.y167{bottom:156.960000px;}
.y1e{bottom:161.460000px;}
.y9d{bottom:162.540000px;}
.y5e{bottom:172.080000px;}
.y11f{bottom:174.960000px;}
.y7e{bottom:175.500000px;}
.y195{bottom:177.300000px;}
.y141{bottom:177.660000px;}
.yef{bottom:177.840000px;}
.y1d{bottom:182.160000px;}
.y3d{bottom:183.960000px;}
.yda{bottom:184.500000px;}
.y109{bottom:184.680000px;}
.y17c{bottom:187.560000px;}
.y166{bottom:188.100000px;}
.y9c{bottom:193.500000px;}
.y1c{bottom:202.860000px;}
.y5d{bottom:203.040000px;}
.y11e{bottom:205.920000px;}
.y7d{bottom:206.640000px;}
.y194{bottom:208.260000px;}
.y140{bottom:208.800000px;}
.yee{bottom:208.980000px;}
.yd9{bottom:215.640000px;}
.y108{bottom:215.820000px;}
.y17b{bottom:218.520000px;}
.y165{bottom:219.060000px;}
.y3c{bottom:220.320000px;}
.y1b{bottom:223.560000px;}
.y9b{bottom:224.640000px;}
.yb8{bottom:230.400000px;}
.y5c{bottom:234.180000px;}
.y11d{bottom:237.060000px;}
.y7c{bottom:237.600000px;}
.y193{bottom:239.400000px;}
.y13f{bottom:239.760000px;}
.yed{bottom:239.940000px;}
.y1a{bottom:244.260000px;}
.yd8{bottom:246.630000px;}
.y107{bottom:246.810000px;}
.y17a{bottom:249.690000px;}
.y164{bottom:250.230000px;}
.y9a{bottom:255.630000px;}
.y3b{bottom:256.530000px;}
.yb7{bottom:261.390000px;}
.y5b{bottom:265.170000px;}
.y19{bottom:266.430000px;}
.y7b{bottom:268.770000px;}
.y11c{bottom:270.390000px;}
.y13e{bottom:270.930000px;}
.yec{bottom:271.110000px;}
.y106{bottom:271.830000px;}
.yd7{bottom:277.770000px;}
.y179{bottom:280.650000px;}
.y163{bottom:281.190000px;}
.y99{bottom:286.770000px;}
.yb6{bottom:292.350000px;}
.y3a{bottom:292.710000px;}
.y18{bottom:293.970000px;}
.y5a{bottom:296.310000px;}
.y7a{bottom:299.730000px;}
.y192{bottom:301.350000px;}
.y13d{bottom:301.890000px;}
.yeb{bottom:302.070000px;}
.yd6{bottom:308.730000px;}
.y178{bottom:311.790000px;}
.y162{bottom:312.330000px;}
.y98{bottom:317.730000px;}
.y17{bottom:321.510000px;}
.yb5{bottom:323.490000px;}
.y59{bottom:327.270000px;}
.y39{bottom:328.890000px;}
.y79{bottom:330.870000px;}
.y191{bottom:332.490000px;}
.y13c{bottom:333.030000px;}
.yea{bottom:333.210000px;}
.yd5{bottom:339.870000px;}
.y11b{bottom:340.410000px;}
.y105{bottom:341.670000px;}
.y177{bottom:342.750000px;}
.y161{bottom:343.290000px;}
.y97{bottom:348.870000px;}
.y16{bottom:349.230000px;}
.yb4{bottom:354.450000px;}
.y58{bottom:358.410000px;}
.y14d{bottom:359.130000px;}
.y78{bottom:361.830000px;}
.y190{bottom:363.450000px;}
.y13b{bottom:363.990000px;}
.ye9{bottom:364.170000px;}
.y38{bottom:365.070000px;}
.yd4{bottom:370.830000px;}
.y11a{bottom:371.370000px;}
.y104{bottom:372.810000px;}
.y176{bottom:373.710000px;}
.y160{bottom:374.430000px;}
.y15{bottom:376.770000px;}
.y96{bottom:379.830000px;}
.yb3{bottom:385.590000px;}
.y57{bottom:389.370000px;}
.y77{bottom:392.970000px;}
.y14c{bottom:394.410000px;}
.y18f{bottom:394.590000px;}
.y13a{bottom:395.130000px;}
.ye8{bottom:395.310000px;}
.y37{bottom:401.430000px;}
.yd3{bottom:401.970000px;}
.y119{bottom:402.510000px;}
.y14{bottom:403.050000px;}
.y103{bottom:403.770000px;}
.y175{bottom:404.850000px;}
.y15f{bottom:405.390000px;}
.yc9{bottom:410.970000px;}
.yb2{bottom:416.550000px;}
.y95{bottom:419.970000px;}
.y56{bottom:420.510000px;}
.y13{bottom:423.750000px;}
.y76{bottom:423.930000px;}
.y18e{bottom:425.550000px;}
.y139{bottom:426.090000px;}
.ye7{bottom:426.270000px;}
.y14a{bottom:429.690000px;}
.yd2{bottom:432.930000px;}
.y118{bottom:433.470000px;}
.y102{bottom:434.910000px;}
.y174{bottom:435.810000px;}
.y15e{bottom:436.530000px;}
.y36{bottom:437.610000px;}
.yc8{bottom:441.930000px;}
.y12{bottom:444.450000px;}
.yb1{bottom:447.690000px;}
.y94{bottom:450.930000px;}
.y55{bottom:451.470000px;}
.y75{bottom:455.070000px;}
.y18d{bottom:456.690000px;}
.y138{bottom:457.230000px;}
.ye6{bottom:457.410000px;}
.yd1{bottom:464.070000px;}
.y117{bottom:464.610000px;}
.y11{bottom:465.150000px;}
.y101{bottom:465.870000px;}
.y173{bottom:466.950000px;}
.y148{bottom:467.310000px;}
.y15d{bottom:467.490000px;}
.yc7{bottom:473.115000px;}
.yb0{bottom:478.695000px;}
.y93{bottom:482.115000px;}
.y54{bottom:482.655000px;}
.y74{bottom:486.075000px;}
.y10{bottom:486.435000px;}
.y35{bottom:486.615000px;}
.y18c{bottom:487.695000px;}
.y137{bottom:488.235000px;}
.ye5{bottom:488.415000px;}
.yd0{bottom:495.075000px;}
.y116{bottom:495.615000px;}
.y100{bottom:496.875000px;}
.y172{bottom:497.955000px;}
.y15c{bottom:498.675000px;}
.yc6{bottom:504.075000px;}
.yf{bottom:509.835000px;}
.y92{bottom:513.075000px;}
.y53{bottom:513.615000px;}
.y136{bottom:516.855000px;}
.y73{bottom:517.215000px;}
.y34{bottom:517.575000px;}
.y18b{bottom:518.835000px;}
.ye4{bottom:519.375000px;}
.ycf{bottom:526.215000px;}
.yff{bottom:528.015000px;}
.y171{bottom:529.095000px;}
.y15b{bottom:529.635000px;}
.ye{bottom:530.535000px;}
.yc5{bottom:535.215000px;}
.y115{bottom:535.755000px;}
.yaf{bottom:540.795000px;}
.y135{bottom:542.775000px;}
.y91{bottom:544.215000px;}
.y52{bottom:544.755000px;}
.y72{bottom:548.175000px;}
.y33{bottom:548.715000px;}
.y18a{bottom:549.795000px;}
.ye3{bottom:550.515000px;}
.yd{bottom:551.235000px;}
.yce{bottom:557.175000px;}
.yfe{bottom:558.975000px;}
.y170{bottom:560.055000px;}
.y15a{bottom:560.775000px;}
.yc4{bottom:566.175000px;}
.y114{bottom:566.715000px;}
.y134{bottom:571.035000px;}
.yc{bottom:571.935000px;}
.y90{bottom:575.175000px;}
.y51{bottom:575.715000px;}
.y71{bottom:579.315000px;}
.y32{bottom:579.675000px;}
.y189{bottom:580.935000px;}
.ye2{bottom:581.475000px;}
.yfd{bottom:590.115000px;}
.y16f{bottom:591.195000px;}
.y159{bottom:591.735000px;}
.yb{bottom:592.635000px;}
.yc3{bottom:597.315000px;}
.y113{bottom:597.855000px;}
.y133{bottom:602.175000px;}
.yae{bottom:602.895000px;}
.y8f{bottom:606.315000px;}
.y50{bottom:606.855000px;}
.ya{bottom:609.555000px;}
.y70{bottom:610.275000px;}
.y31{bottom:610.815000px;}
.y188{bottom:611.895000px;}
.ye1{bottom:612.615000px;}
.yfc{bottom:621.075000px;}
.y16e{bottom:622.155000px;}
.y158{bottom:622.875000px;}
.yc2{bottom:628.275000px;}
.y112{bottom:628.815000px;}
.y132{bottom:633.135000px;}
.yad{bottom:634.035000px;}
.y8e{bottom:637.275000px;}
.y4f{bottom:637.815000px;}
.y6f{bottom:641.415000px;}
.y30{bottom:641.775000px;}
.y187{bottom:643.035000px;}
.ye0{bottom:643.575000px;}
.yfb{bottom:652.215000px;}
.y16d{bottom:653.295000px;}
.y157{bottom:653.835000px;}
.yc1{bottom:659.415000px;}
.y111{bottom:659.955000px;}
.y131{bottom:664.275000px;}
.yac{bottom:664.995000px;}
.y8d{bottom:668.415000px;}
.y4e{bottom:668.955000px;}
.y6e{bottom:672.375000px;}
.y2f{bottom:672.915000px;}
.y186{bottom:673.995000px;}
.ydf{bottom:674.715000px;}
.yfa{bottom:683.175000px;}
.y16c{bottom:684.255000px;}
.y156{bottom:684.975000px;}
.ycd{bottom:690.375000px;}
.y110{bottom:690.915000px;}
.y130{bottom:695.235000px;}
.yab{bottom:696.135000px;}
.y8c{bottom:699.405000px;}
.y4d{bottom:699.945000px;}
.y6d{bottom:703.365000px;}
.y2e{bottom:703.905000px;}
.y185{bottom:705.165000px;}
.yf9{bottom:714.345000px;}
.y16b{bottom:715.605000px;}
.y155{bottom:715.965000px;}
.ycc{bottom:721.365000px;}
.y10f{bottom:722.085000px;}
.y12f{bottom:726.405000px;}
.yaa{bottom:727.125000px;}
.yde{bottom:727.665000px;}
.y8b{bottom:730.365000px;}
.y4c{bottom:731.085000px;}
.y6c{bottom:734.505000px;}
.y2d{bottom:735.045000px;}
.y184{bottom:736.125000px;}
.yf8{bottom:745.305000px;}
.y154{bottom:747.105000px;}
.ycb{bottom:752.505000px;}
.y10e{bottom:753.045000px;}
.y2c{bottom:756.285000px;}
.y12e{bottom:757.365000px;}
.ya9{bottom:758.265000px;}
.y8a{bottom:761.505000px;}
.y4b{bottom:762.045000px;}
.y6b{bottom:765.465000px;}
.y183{bottom:767.265000px;}
.yf7{bottom:776.445000px;}
.y153{bottom:778.065000px;}
.y10d{bottom:784.005000px;}
.y147{bottom:787.785000px;}
.y12d{bottom:788.505000px;}
.ya8{bottom:789.225000px;}
.y2b{bottom:790.125000px;}
.y89{bottom:792.465000px;}
.y4a{bottom:793.005000px;}
.y6a{bottom:796.605000px;}
.y182{bottom:798.225000px;}
.yf6{bottom:801.285000px;}
.y152{bottom:809.205000px;}
.y10c{bottom:815.145000px;}
.y12c{bottom:819.465000px;}
.ya7{bottom:820.365000px;}
.y146{bottom:823.065000px;}
.y88{bottom:823.605000px;}
.y49{bottom:824.145000px;}
.y69{bottom:827.565000px;}
.y181{bottom:829.365000px;}
.y2a{bottom:836.205000px;}
.y151{bottom:840.165000px;}
.y12b{bottom:850.605000px;}
.ya6{bottom:851.325000px;}
.y87{bottom:854.565000px;}
.y48{bottom:855.105000px;}
.y68{bottom:858.705000px;}
.y180{bottom:860.325000px;}
.y144{bottom:860.685000px;}
.y29{bottom:867.345000px;}
.y150{bottom:871.305000px;}
.yf5{bottom:873.285000px;}
.y12a{bottom:881.565000px;}
.ya5{bottom:882.465000px;}
.yc0{bottom:885.705000px;}
.y47{bottom:886.245000px;}
.y16a{bottom:888.405000px;}
.y67{bottom:889.665000px;}
.y17f{bottom:891.465000px;}
.y86{bottom:894.705000px;}
.y28{bottom:898.305000px;}
.y9{bottom:900.285000px;}
.y14f{bottom:902.265000px;}
.yf4{bottom:907.485000px;}
.y129{bottom:910.185000px;}
.ya4{bottom:913.425000px;}
.ybf{bottom:916.665000px;}
.y46{bottom:917.205000px;}
.y66{bottom:920.805000px;}
.y8{bottom:920.985000px;}
.y169{bottom:922.425000px;}
.y85{bottom:925.710000px;}
.y27{bottom:929.490000px;}
.y14e{bottom:933.450000px;}
.y128{bottom:936.150000px;}
.y7{bottom:941.730000px;}
.ya3{bottom:944.610000px;}
.ybe{bottom:947.850000px;}
.y45{bottom:948.390000px;}
.y65{bottom:951.810000px;}
.yf3{bottom:953.610000px;}
.y84{bottom:956.850000px;}
.y26{bottom:960.450000px;}
.y6{bottom:962.430000px;}
.y127{bottom:964.410000px;}
.ya2{bottom:975.570000px;}
.ybd{bottom:978.810000px;}
.y44{bottom:979.350000px;}
.y64{bottom:982.950000px;}
.y5{bottom:983.130000px;}
.yf2{bottom:984.570000px;}
.y83{bottom:987.810000px;}
.y25{bottom:991.410000px;}
.y126{bottom:995.550000px;}
.y4{bottom:1003.830000px;}
.ya1{bottom:1006.710000px;}
.ybc{bottom:1009.950000px;}
.y43{bottom:1010.490000px;}
.y63{bottom:1013.910000px;}
.ydd{bottom:1015.710000px;}
.y82{bottom:1018.950000px;}
.y3{bottom:1020.750000px;}
.y24{bottom:1022.550000px;}
.y125{bottom:1026.510000px;}
.ya0{bottom:1037.670000px;}
.ybb{bottom:1040.910000px;}
.y42{bottom:1041.450000px;}
.y62{bottom:1045.050000px;}
.ydc{bottom:1046.670000px;}
.y81{bottom:1049.910000px;}
.y23{bottom:1053.510000px;}
.y124{bottom:1057.650000px;}
.y9f{bottom:1068.810000px;}
.y61{bottom:1069.890000px;}
.yba{bottom:1072.050000px;}
.y41{bottom:1072.590000px;}
.ydb{bottom:1077.810000px;}
.y80{bottom:1081.050000px;}
.y22{bottom:1084.650000px;}
.y123{bottom:1088.610000px;}
.yb9{bottom:1103.010000px;}
.y40{bottom:1103.550000px;}
.y9e{bottom:1108.770000px;}
.y7f{bottom:1112.010000px;}
.y21{bottom:1115.610000px;}
.y2{bottom:1119.030000px;}
.y122{bottom:1136.850000px;}
.y20{bottom:1137.030000px;}
.y1{bottom:1139.730000px;}
.y60{bottom:1139.910000px;}
.hc{height:35.280000px;}
.he{height:35.460000px;}
.hd{height:35.496000px;}
.h8{height:60.226875px;}
.h7{height:64.546875px;}
.hb{height:70.628906px;}
.h6{height:70.664062px;}
.h4{height:72.562500px;}
.h9{height:74.004654px;}
.h2{height:75.093750px;}
.h3{height:84.898125px;}
.ha{height:87.859687px;}
.h5{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:84.960000px;}
.w5{width:95.796000px;}
.w4{width:106.236000px;}
.w3{width:188.850000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:29.340000px;}
.xd{left:127.655987px;}
.xa{left:149.615987px;}
.x8{left:152.489987px;}
.x10{left:154.649987px;}
.x9{left:174.809987px;}
.x11{left:180.749987px;}
.xb{left:196.229987px;}
.xf{left:207.749987px;}
.x6{left:286.454987px;}
.x18{left:300.134987px;}
.x1b{left:308.594987px;}
.x4{left:323.534987px;}
.x1{left:326.054987px;}
.xc{left:329.474987px;}
.x7{left:353.054987px;}
.x16{left:373.934987px;}
.x1f{left:387.614987px;}
.x19{left:390.494987px;}
.x20{left:392.834987px;}
.x1a{left:397.514987px;}
.xe{left:405.104987px;}
.x12{left:407.444987px;}
.x13{left:408.704987px;}
.x2{left:446.504987px;}
.x14{left:460.004987px;}
.x15{left:473.504987px;}
.x3{left:494.384987px;}
.x1d{left:503.745000px;}
.x5{left:590.729987px;}
.x1e{left:599.550000px;}
.x17{left:628.889987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.920000pt;}
.ls12{letter-spacing:-1.280000pt;}
.ls11{letter-spacing:-0.896000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.286933pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.640000pt;}
.lsf{letter-spacing:5.760000pt;}
.ls10{letter-spacing:8.320000pt;}
.lsc{letter-spacing:18.863360pt;}
.ls13{letter-spacing:18.970027pt;}
.lse{letter-spacing:22.400000pt;}
.ls4{letter-spacing:30.186667pt;}
.ls5{letter-spacing:30.208000pt;}
.wsb{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.600000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws9{word-spacing:-19.040000pt;}
.ws6{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.433067pt;}
.ws5{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-2.432000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.408000pt;}
._2{width:2.432000pt;}
._3{width:3.850667pt;}
._a{width:4.864000pt;}
._9{width:6.101333pt;}
._17{width:7.296000pt;}
._12{width:8.640000pt;}
._13{width:9.664000pt;}
._18{width:10.560000pt;}
._b{width:11.520000pt;}
._c{width:12.544000pt;}
._d{width:13.578667pt;}
._1c{width:14.528000pt;}
._10{width:17.344000pt;}
._11{width:18.250667pt;}
._24{width:19.264000pt;}
._1f{width:20.544000pt;}
._20{width:21.760000pt;}
._4{width:22.976000pt;}
._5{width:24.192000pt;}
._f{width:25.856000pt;}
._e{width:26.816000pt;}
._25{width:27.712000pt;}
._19{width:28.608000pt;}
._1a{width:29.930667pt;}
._15{width:31.232000pt;}
._16{width:32.640000pt;}
._1d{width:34.048000pt;}
._8{width:36.224000pt;}
._6{width:37.120000pt;}
._7{width:38.026667pt;}
._1b{width:39.093333pt;}
._23{width:40.704000pt;}
._1e{width:44.032000pt;}
._2a{width:46.784000pt;}
._21{width:48.512000pt;}
._22{width:49.536000pt;}
._26{width:53.120000pt;}
._27{width:54.304000pt;}
._2b{width:57.888000pt;}
._2c{width:58.976000pt;}
._28{width:73.216000pt;}
._29{width:74.240000pt;}
._2f{width:114.282667pt;}
._2e{width:115.456000pt;}
._2d{width:116.352000pt;}
._30{width:1689.920000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:14.560000pt;}
.y14b{bottom:14.720000pt;}
.y149{bottom:14.760000pt;}
.y3f{bottom:99.200000pt;}
.y121{bottom:100.320000pt;}
.y143{bottom:102.720000pt;}
.yf1{bottom:102.880000pt;}
.y10b{bottom:108.960000pt;}
.y17e{bottom:111.520000pt;}
.y168{bottom:112.000000pt;}
.yca{bottom:116.800000pt;}
.y1f{bottom:125.120000pt;}
.y5f{bottom:125.280000pt;}
.y120{bottom:128.000000pt;}
.y196{bottom:129.920000pt;}
.y142{bottom:130.400000pt;}
.yf0{bottom:130.560000pt;}
.y3e{bottom:131.360000pt;}
.y10a{bottom:136.640000pt;}
.y17d{bottom:139.040000pt;}
.y167{bottom:139.520000pt;}
.y1e{bottom:143.520000pt;}
.y9d{bottom:144.480000pt;}
.y5e{bottom:152.960000pt;}
.y11f{bottom:155.520000pt;}
.y7e{bottom:156.000000pt;}
.y195{bottom:157.600000pt;}
.y141{bottom:157.920000pt;}
.yef{bottom:158.080000pt;}
.y1d{bottom:161.920000pt;}
.y3d{bottom:163.520000pt;}
.yda{bottom:164.000000pt;}
.y109{bottom:164.160000pt;}
.y17c{bottom:166.720000pt;}
.y166{bottom:167.200000pt;}
.y9c{bottom:172.000000pt;}
.y1c{bottom:180.320000pt;}
.y5d{bottom:180.480000pt;}
.y11e{bottom:183.040000pt;}
.y7d{bottom:183.680000pt;}
.y194{bottom:185.120000pt;}
.y140{bottom:185.600000pt;}
.yee{bottom:185.760000pt;}
.yd9{bottom:191.680000pt;}
.y108{bottom:191.840000pt;}
.y17b{bottom:194.240000pt;}
.y165{bottom:194.720000pt;}
.y3c{bottom:195.840000pt;}
.y1b{bottom:198.720000pt;}
.y9b{bottom:199.680000pt;}
.yb8{bottom:204.800000pt;}
.y5c{bottom:208.160000pt;}
.y11d{bottom:210.720000pt;}
.y7c{bottom:211.200000pt;}
.y193{bottom:212.800000pt;}
.y13f{bottom:213.120000pt;}
.yed{bottom:213.280000pt;}
.y1a{bottom:217.120000pt;}
.yd8{bottom:219.226667pt;}
.y107{bottom:219.386667pt;}
.y17a{bottom:221.946667pt;}
.y164{bottom:222.426667pt;}
.y9a{bottom:227.226667pt;}
.y3b{bottom:228.026667pt;}
.yb7{bottom:232.346667pt;}
.y5b{bottom:235.706667pt;}
.y19{bottom:236.826667pt;}
.y7b{bottom:238.906667pt;}
.y11c{bottom:240.346667pt;}
.y13e{bottom:240.826667pt;}
.yec{bottom:240.986667pt;}
.y106{bottom:241.626667pt;}
.yd7{bottom:246.906667pt;}
.y179{bottom:249.466667pt;}
.y163{bottom:249.946667pt;}
.y99{bottom:254.906667pt;}
.yb6{bottom:259.866667pt;}
.y3a{bottom:260.186667pt;}
.y18{bottom:261.306667pt;}
.y5a{bottom:263.386667pt;}
.y7a{bottom:266.426667pt;}
.y192{bottom:267.866667pt;}
.y13d{bottom:268.346667pt;}
.yeb{bottom:268.506667pt;}
.yd6{bottom:274.426667pt;}
.y178{bottom:277.146667pt;}
.y162{bottom:277.626667pt;}
.y98{bottom:282.426667pt;}
.y17{bottom:285.786667pt;}
.yb5{bottom:287.546667pt;}
.y59{bottom:290.906667pt;}
.y39{bottom:292.346667pt;}
.y79{bottom:294.106667pt;}
.y191{bottom:295.546667pt;}
.y13c{bottom:296.026667pt;}
.yea{bottom:296.186667pt;}
.yd5{bottom:302.106667pt;}
.y11b{bottom:302.586667pt;}
.y105{bottom:303.706667pt;}
.y177{bottom:304.666667pt;}
.y161{bottom:305.146667pt;}
.y97{bottom:310.106667pt;}
.y16{bottom:310.426667pt;}
.yb4{bottom:315.066667pt;}
.y58{bottom:318.586667pt;}
.y14d{bottom:319.226667pt;}
.y78{bottom:321.626667pt;}
.y190{bottom:323.066667pt;}
.y13b{bottom:323.546667pt;}
.ye9{bottom:323.706667pt;}
.y38{bottom:324.506667pt;}
.yd4{bottom:329.626667pt;}
.y11a{bottom:330.106667pt;}
.y104{bottom:331.386667pt;}
.y176{bottom:332.186667pt;}
.y160{bottom:332.826667pt;}
.y15{bottom:334.906667pt;}
.y96{bottom:337.626667pt;}
.yb3{bottom:342.746667pt;}
.y57{bottom:346.106667pt;}
.y77{bottom:349.306667pt;}
.y14c{bottom:350.586667pt;}
.y18f{bottom:350.746667pt;}
.y13a{bottom:351.226667pt;}
.ye8{bottom:351.386667pt;}
.y37{bottom:356.826667pt;}
.yd3{bottom:357.306667pt;}
.y119{bottom:357.786667pt;}
.y14{bottom:358.266667pt;}
.y103{bottom:358.906667pt;}
.y175{bottom:359.866667pt;}
.y15f{bottom:360.346667pt;}
.yc9{bottom:365.306667pt;}
.yb2{bottom:370.266667pt;}
.y95{bottom:373.306667pt;}
.y56{bottom:373.786667pt;}
.y13{bottom:376.666667pt;}
.y76{bottom:376.826667pt;}
.y18e{bottom:378.266667pt;}
.y139{bottom:378.746667pt;}
.ye7{bottom:378.906667pt;}
.y14a{bottom:381.946667pt;}
.yd2{bottom:384.826667pt;}
.y118{bottom:385.306667pt;}
.y102{bottom:386.586667pt;}
.y174{bottom:387.386667pt;}
.y15e{bottom:388.026667pt;}
.y36{bottom:388.986667pt;}
.yc8{bottom:392.826667pt;}
.y12{bottom:395.066667pt;}
.yb1{bottom:397.946667pt;}
.y94{bottom:400.826667pt;}
.y55{bottom:401.306667pt;}
.y75{bottom:404.506667pt;}
.y18d{bottom:405.946667pt;}
.y138{bottom:406.426667pt;}
.ye6{bottom:406.586667pt;}
.yd1{bottom:412.506667pt;}
.y117{bottom:412.986667pt;}
.y11{bottom:413.466667pt;}
.y101{bottom:414.106667pt;}
.y173{bottom:415.066667pt;}
.y148{bottom:415.386667pt;}
.y15d{bottom:415.546667pt;}
.yc7{bottom:420.546667pt;}
.yb0{bottom:425.506667pt;}
.y93{bottom:428.546667pt;}
.y54{bottom:429.026667pt;}
.y74{bottom:432.066667pt;}
.y10{bottom:432.386667pt;}
.y35{bottom:432.546667pt;}
.y18c{bottom:433.506667pt;}
.y137{bottom:433.986667pt;}
.ye5{bottom:434.146667pt;}
.yd0{bottom:440.066667pt;}
.y116{bottom:440.546667pt;}
.y100{bottom:441.666667pt;}
.y172{bottom:442.626667pt;}
.y15c{bottom:443.266667pt;}
.yc6{bottom:448.066667pt;}
.yf{bottom:453.186667pt;}
.y92{bottom:456.066667pt;}
.y53{bottom:456.546667pt;}
.y136{bottom:459.426667pt;}
.y73{bottom:459.746667pt;}
.y34{bottom:460.066667pt;}
.y18b{bottom:461.186667pt;}
.ye4{bottom:461.666667pt;}
.ycf{bottom:467.746667pt;}
.yff{bottom:469.346667pt;}
.y171{bottom:470.306667pt;}
.y15b{bottom:470.786667pt;}
.ye{bottom:471.586667pt;}
.yc5{bottom:475.746667pt;}
.y115{bottom:476.226667pt;}
.yaf{bottom:480.706667pt;}
.y135{bottom:482.466667pt;}
.y91{bottom:483.746667pt;}
.y52{bottom:484.226667pt;}
.y72{bottom:487.266667pt;}
.y33{bottom:487.746667pt;}
.y18a{bottom:488.706667pt;}
.ye3{bottom:489.346667pt;}
.yd{bottom:489.986667pt;}
.yce{bottom:495.266667pt;}
.yfe{bottom:496.866667pt;}
.y170{bottom:497.826667pt;}
.y15a{bottom:498.466667pt;}
.yc4{bottom:503.266667pt;}
.y114{bottom:503.746667pt;}
.y134{bottom:507.586667pt;}
.yc{bottom:508.386667pt;}
.y90{bottom:511.266667pt;}
.y51{bottom:511.746667pt;}
.y71{bottom:514.946667pt;}
.y32{bottom:515.266667pt;}
.y189{bottom:516.386667pt;}
.ye2{bottom:516.866667pt;}
.yfd{bottom:524.546667pt;}
.y16f{bottom:525.506667pt;}
.y159{bottom:525.986667pt;}
.yb{bottom:526.786667pt;}
.yc3{bottom:530.946667pt;}
.y113{bottom:531.426667pt;}
.y133{bottom:535.266667pt;}
.yae{bottom:535.906667pt;}
.y8f{bottom:538.946667pt;}
.y50{bottom:539.426667pt;}
.ya{bottom:541.826667pt;}
.y70{bottom:542.466667pt;}
.y31{bottom:542.946667pt;}
.y188{bottom:543.906667pt;}
.ye1{bottom:544.546667pt;}
.yfc{bottom:552.066667pt;}
.y16e{bottom:553.026667pt;}
.y158{bottom:553.666667pt;}
.yc2{bottom:558.466667pt;}
.y112{bottom:558.946667pt;}
.y132{bottom:562.786667pt;}
.yad{bottom:563.586667pt;}
.y8e{bottom:566.466667pt;}
.y4f{bottom:566.946667pt;}
.y6f{bottom:570.146667pt;}
.y30{bottom:570.466667pt;}
.y187{bottom:571.586667pt;}
.ye0{bottom:572.066667pt;}
.yfb{bottom:579.746667pt;}
.y16d{bottom:580.706667pt;}
.y157{bottom:581.186667pt;}
.yc1{bottom:586.146667pt;}
.y111{bottom:586.626667pt;}
.y131{bottom:590.466667pt;}
.yac{bottom:591.106667pt;}
.y8d{bottom:594.146667pt;}
.y4e{bottom:594.626667pt;}
.y6e{bottom:597.666667pt;}
.y2f{bottom:598.146667pt;}
.y186{bottom:599.106667pt;}
.ydf{bottom:599.746667pt;}
.yfa{bottom:607.266667pt;}
.y16c{bottom:608.226667pt;}
.y156{bottom:608.866667pt;}
.ycd{bottom:613.666667pt;}
.y110{bottom:614.146667pt;}
.y130{bottom:617.986667pt;}
.yab{bottom:618.786667pt;}
.y8c{bottom:621.693333pt;}
.y4d{bottom:622.173333pt;}
.y6d{bottom:625.213333pt;}
.y2e{bottom:625.693333pt;}
.y185{bottom:626.813333pt;}
.yf9{bottom:634.973333pt;}
.y16b{bottom:636.093333pt;}
.y155{bottom:636.413333pt;}
.ycc{bottom:641.213333pt;}
.y10f{bottom:641.853333pt;}
.y12f{bottom:645.693333pt;}
.yaa{bottom:646.333333pt;}
.yde{bottom:646.813333pt;}
.y8b{bottom:649.213333pt;}
.y4c{bottom:649.853333pt;}
.y6c{bottom:652.893333pt;}
.y2d{bottom:653.373333pt;}
.y184{bottom:654.333333pt;}
.yf8{bottom:662.493333pt;}
.y154{bottom:664.093333pt;}
.ycb{bottom:668.893333pt;}
.y10e{bottom:669.373333pt;}
.y2c{bottom:672.253333pt;}
.y12e{bottom:673.213333pt;}
.ya9{bottom:674.013333pt;}
.y8a{bottom:676.893333pt;}
.y4b{bottom:677.373333pt;}
.y6b{bottom:680.413333pt;}
.y183{bottom:682.013333pt;}
.yf7{bottom:690.173333pt;}
.y153{bottom:691.613333pt;}
.y10d{bottom:696.893333pt;}
.y147{bottom:700.253333pt;}
.y12d{bottom:700.893333pt;}
.ya8{bottom:701.533333pt;}
.y2b{bottom:702.333333pt;}
.y89{bottom:704.413333pt;}
.y4a{bottom:704.893333pt;}
.y6a{bottom:708.093333pt;}
.y182{bottom:709.533333pt;}
.yf6{bottom:712.253333pt;}
.y152{bottom:719.293333pt;}
.y10c{bottom:724.573333pt;}
.y12c{bottom:728.413333pt;}
.ya7{bottom:729.213333pt;}
.y146{bottom:731.613333pt;}
.y88{bottom:732.093333pt;}
.y49{bottom:732.573333pt;}
.y69{bottom:735.613333pt;}
.y181{bottom:737.213333pt;}
.y2a{bottom:743.293333pt;}
.y151{bottom:746.813333pt;}
.y12b{bottom:756.093333pt;}
.ya6{bottom:756.733333pt;}
.y87{bottom:759.613333pt;}
.y48{bottom:760.093333pt;}
.y68{bottom:763.293333pt;}
.y180{bottom:764.733333pt;}
.y144{bottom:765.053333pt;}
.y29{bottom:770.973333pt;}
.y150{bottom:774.493333pt;}
.yf5{bottom:776.253333pt;}
.y12a{bottom:783.613333pt;}
.ya5{bottom:784.413333pt;}
.yc0{bottom:787.293333pt;}
.y47{bottom:787.773333pt;}
.y16a{bottom:789.693333pt;}
.y67{bottom:790.813333pt;}
.y17f{bottom:792.413333pt;}
.y86{bottom:795.293333pt;}
.y28{bottom:798.493333pt;}
.y9{bottom:800.253333pt;}
.y14f{bottom:802.013333pt;}
.yf4{bottom:806.653333pt;}
.y129{bottom:809.053333pt;}
.ya4{bottom:811.933333pt;}
.ybf{bottom:814.813333pt;}
.y46{bottom:815.293333pt;}
.y66{bottom:818.493333pt;}
.y8{bottom:818.653333pt;}
.y169{bottom:819.933333pt;}
.y85{bottom:822.853333pt;}
.y27{bottom:826.213333pt;}
.y14e{bottom:829.733333pt;}
.y128{bottom:832.133333pt;}
.y7{bottom:837.093333pt;}
.ya3{bottom:839.653333pt;}
.ybe{bottom:842.533333pt;}
.y45{bottom:843.013333pt;}
.y65{bottom:846.053333pt;}
.yf3{bottom:847.653333pt;}
.y84{bottom:850.533333pt;}
.y26{bottom:853.733333pt;}
.y6{bottom:855.493333pt;}
.y127{bottom:857.253333pt;}
.ya2{bottom:867.173333pt;}
.ybd{bottom:870.053333pt;}
.y44{bottom:870.533333pt;}
.y64{bottom:873.733333pt;}
.y5{bottom:873.893333pt;}
.yf2{bottom:875.173333pt;}
.y83{bottom:878.053333pt;}
.y25{bottom:881.253333pt;}
.y126{bottom:884.933333pt;}
.y4{bottom:892.293333pt;}
.ya1{bottom:894.853333pt;}
.ybc{bottom:897.733333pt;}
.y43{bottom:898.213333pt;}
.y63{bottom:901.253333pt;}
.ydd{bottom:902.853333pt;}
.y82{bottom:905.733333pt;}
.y3{bottom:907.333333pt;}
.y24{bottom:908.933333pt;}
.y125{bottom:912.453333pt;}
.ya0{bottom:922.373333pt;}
.ybb{bottom:925.253333pt;}
.y42{bottom:925.733333pt;}
.y62{bottom:928.933333pt;}
.ydc{bottom:930.373333pt;}
.y81{bottom:933.253333pt;}
.y23{bottom:936.453333pt;}
.y124{bottom:940.133333pt;}
.y9f{bottom:950.053333pt;}
.y61{bottom:951.013333pt;}
.yba{bottom:952.933333pt;}
.y41{bottom:953.413333pt;}
.ydb{bottom:958.053333pt;}
.y80{bottom:960.933333pt;}
.y22{bottom:964.133333pt;}
.y123{bottom:967.653333pt;}
.yb9{bottom:980.453333pt;}
.y40{bottom:980.933333pt;}
.y9e{bottom:985.573333pt;}
.y7f{bottom:988.453333pt;}
.y21{bottom:991.653333pt;}
.y2{bottom:994.693333pt;}
.y122{bottom:1010.533333pt;}
.y20{bottom:1010.693333pt;}
.y1{bottom:1013.093333pt;}
.y60{bottom:1013.253333pt;}
.hc{height:31.360000pt;}
.he{height:31.520000pt;}
.hd{height:31.552000pt;}
.h8{height:53.535000pt;}
.h7{height:57.375000pt;}
.hb{height:62.781250pt;}
.h6{height:62.812500pt;}
.h4{height:64.500000pt;}
.h9{height:65.781915pt;}
.h2{height:66.750000pt;}
.h3{height:75.465000pt;}
.ha{height:78.097500pt;}
.h5{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:75.520000pt;}
.w5{width:85.152000pt;}
.w4{width:94.432000pt;}
.w3{width:167.866667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:26.080000pt;}
.xd{left:113.471988pt;}
.xa{left:132.991988pt;}
.x8{left:135.546655pt;}
.x10{left:137.466655pt;}
.x9{left:155.386655pt;}
.x11{left:160.666655pt;}
.xb{left:174.426655pt;}
.xf{left:184.666655pt;}
.x6{left:254.626655pt;}
.x18{left:266.786655pt;}
.x1b{left:274.306655pt;}
.x4{left:287.586655pt;}
.x1{left:289.826655pt;}
.xc{left:292.866655pt;}
.x7{left:313.826655pt;}
.x16{left:332.386655pt;}
.x1f{left:344.546655pt;}
.x19{left:347.106655pt;}
.x20{left:349.186655pt;}
.x1a{left:353.346655pt;}
.xe{left:360.093322pt;}
.x12{left:362.173322pt;}
.x13{left:363.293322pt;}
.x2{left:396.893322pt;}
.x14{left:408.893322pt;}
.x15{left:420.893322pt;}
.x3{left:439.453322pt;}
.x1d{left:447.773333pt;}
.x5{left:525.093322pt;}
.x1e{left:532.933333pt;}
.x17{left:559.013322pt;}
}




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