
    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_b3bd4b9c787aa12fb71acf8b.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_847c5efee4b38d2433d2d68b.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_83f0d6686d3e6dbf2185a050.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_0ebdbd55b09f443571e348d7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a48e651547daac4e0e3dc0af.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_c0568a1c8adbd77cb49f0c0d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3fafd33bb9bc13eebb46a9af.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_49f69931b4cc742d8fe98009.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a2c9d97c12290f5ec83bce92.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e6f0708552efe89a65852fea.woff')format("woff");}.ffc{font-family:ffc;line-height:0.854004;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);}
.v3{vertical-align:-56.340000px;}
.v5{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v4{vertical-align:23.760000px;}
.lsb{letter-spacing:-4.662000px;}
.ls24{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.305400px;}
.ls20{letter-spacing:-0.259800px;}
.ls23{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.206400px;}
.ls18{letter-spacing:-0.144000px;}
.ls26{letter-spacing:-0.126000px;}
.lsa{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.000001px;}
.ls8{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.119520px;}
.ls19{letter-spacing:0.144000px;}
.ls30{letter-spacing:0.152400px;}
.ls1{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.259800px;}
.ls4{letter-spacing:0.259920px;}
.ls1f{letter-spacing:0.262200px;}
.ls17{letter-spacing:0.288000px;}
.ls32{letter-spacing:0.305400px;}
.ls1c{letter-spacing:0.360000px;}
.lse{letter-spacing:0.720000px;}
.ls1a{letter-spacing:1.440000px;}
.ls12{letter-spacing:2.160000px;}
.ls10{letter-spacing:2.880000px;}
.ls14{letter-spacing:3.600000px;}
.ls13{letter-spacing:4.320000px;}
.ls1d{letter-spacing:5.040000px;}
.ls15{letter-spacing:5.760000px;}
.ls2f{letter-spacing:6.785280px;}
.ls27{letter-spacing:7.200000px;}
.ls1b{letter-spacing:7.920000px;}
.ls25{letter-spacing:8.640000px;}
.ls2a{letter-spacing:9.360000px;}
.ls16{letter-spacing:10.800000px;}
.ls2e{letter-spacing:11.520000px;}
.ls2b{letter-spacing:12.240000px;}
.ls11{letter-spacing:12.960000px;}
.ls2c{letter-spacing:15.840000px;}
.ls1e{letter-spacing:17.280000px;}
.lsf{letter-spacing:20.880000px;}
.ls29{letter-spacing:21.576000px;}
.ls28{letter-spacing:22.320000px;}
.ls2d{letter-spacing:39.905280px;}
.ls6{letter-spacing:93.060000px;}
.ls2{letter-spacing:155.700000px;}
.ls0{letter-spacing:182.520000px;}
.ls5{letter-spacing:430.200000px;}
.ls7{letter-spacing:1075.836000px;}
.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;}
}
.ws7{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.216000px;}
.ws9{word-spacing:-18.144000px;}
.ws5{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.999999px;}
.ws8{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.784000px;}
.ws13{word-spacing:-16.712400px;}
.ws12{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.254600px;}
.wsc{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.680200px;}
.ws10{word-spacing:-13.860000px;}
.wse{word-spacing:-13.500000px;}
.wsf{word-spacing:-13.374000px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1f{margin-left:-8.908800px;}
._9{margin-left:-7.171920px;}
._3{margin-left:-6.095520px;}
._8{margin-left:-4.242240px;}
._5{margin-left:-2.442960px;}
._1{margin-left:-1.338720px;}
._0{width:1.135440px;}
._2{width:2.229120px;}
._a{width:3.524880px;}
._4{width:4.626720px;}
._11{width:5.840640px;}
._14{width:6.864240px;}
._13{width:7.914240px;}
._12{width:9.000000px;}
._19{width:10.208160px;}
._e{width:11.337120px;}
._d{width:12.384000px;}
._f{width:13.458960px;}
._10{width:14.858880px;}
._15{width:16.001520px;}
._1e{width:18.159600px;}
._18{width:19.324560px;}
._17{width:20.520000px;}
._1a{width:21.589680px;}
._16{width:22.608000px;}
._b{width:24.552000px;}
._c{width:26.580000px;}
._1d{width:27.832320px;}
._1c{width:34.704000px;}
._1b{width:35.712000px;}
._6{width:71.422560px;}
._7{width:93.060000px;}
.fcc{color:rgb(62,61,64);}
.fc8{color:rgb(33,37,41);}
.fc6{color:rgb(91,97,107);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fcb{color:rgb(32,32,32);}
.fca{color:rgb(51,51,51);}
.fc7{color:rgb(27,27,27);}
.fc5{color:rgb(33,33,33);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(238,0,0);}
.fc9{color:rgb(192,0,0);}
.fc0{color:rgb(0,176,240);}
.fs3{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y16c{bottom:-50.940000px;}
.y16b{bottom:-14.760000px;}
.y34{bottom:-14.040000px;}
.y0{bottom:0.000000px;}
.y16a{bottom:2.520000px;}
.ye3{bottom:2.880000px;}
.ye0{bottom:3.060000px;}
.y33{bottom:3.240000px;}
.yde{bottom:9.540000px;}
.ye2{bottom:18.360000px;}
.ydf{bottom:18.540000px;}
.y169{bottom:19.800000px;}
.y32{bottom:20.340000px;}
.y4{bottom:24.300000px;}
.y168{bottom:37.116000px;}
.y167{bottom:54.216000px;}
.y9a{bottom:62.820000px;}
.y86{bottom:64.980000px;}
.ye8{bottom:65.340000px;}
.y108{bottom:65.520000px;}
.y104{bottom:69.480000px;}
.y166{bottom:71.496000px;}
.ycc{bottom:73.080000px;}
.y30{bottom:75.780000px;}
.y5e{bottom:80.460000px;}
.y137{bottom:84.240000px;}
.y99{bottom:86.580000px;}
.y85{bottom:88.740000px;}
.y165{bottom:88.770000px;}
.y107{bottom:89.460000px;}
.y103{bottom:93.276000px;}
.ycb{bottom:97.056000px;}
.y2f{bottom:99.576000px;}
.y136{bottom:103.356000px;}
.y5d{bottom:104.256000px;}
.y98{bottom:110.376000px;}
.y84{bottom:112.716000px;}
.y106{bottom:113.256000px;}
.y102{bottom:117.216000px;}
.yca{bottom:120.816000px;}
.y135{bottom:122.256000px;}
.y2e{bottom:123.516000px;}
.y5c{bottom:128.016000px;}
.ye7{bottom:128.916000px;}
.y97{bottom:134.316000px;}
.y83{bottom:136.476000px;}
.y105{bottom:137.016000px;}
.y101{bottom:140.976000px;}
.y134{bottom:141.336000px;}
.yc9{bottom:144.576000px;}
.y2d{bottom:147.276000px;}
.y5b{bottom:151.770000px;}
.y96{bottom:158.070000px;}
.y82{bottom:160.230000px;}
.ye6{bottom:160.770000px;}
.y100{bottom:164.730000px;}
.yc8{bottom:168.330000px;}
.y2c{bottom:171.030000px;}
.y133{bottom:179.130000px;}
.y95{bottom:181.830000px;}
.y81{bottom:183.990000px;}
.y5a{bottom:184.710000px;}
.yff{bottom:188.490000px;}
.y164{bottom:188.850000px;}
.yc7{bottom:192.270000px;}
.ye5{bottom:192.450000px;}
.y2b{bottom:194.790000px;}
.y132{bottom:198.210000px;}
.y94{bottom:205.590000px;}
.y80{bottom:207.750000px;}
.y59{bottom:208.470000px;}
.yfe{bottom:212.430000px;}
.yc6{bottom:216.030000px;}
.y131{bottom:217.110000px;}
.ye4{bottom:224.310000px;}
.y163{bottom:226.830000px;}
.y2a{bottom:227.730000px;}
.y93{bottom:228.810000px;}
.y58{bottom:232.230000px;}
.yfd{bottom:236.190000px;}
.yc5{bottom:239.790000px;}
.y7f{bottom:240.690000px;}
.y162{bottom:245.730000px;}
.y92{bottom:247.350000px;}
.y29{bottom:251.490000px;}
.y130{bottom:255.090000px;}
.y57{bottom:255.990000px;}
.ye1{bottom:256.170000px;}
.yfc{bottom:259.950000px;}
.yc4{bottom:263.550000px;}
.y7e{bottom:264.450000px;}
.y161{bottom:264.810000px;}
.y12f{bottom:273.990000px;}
.y28{bottom:275.250000px;}
.y56{bottom:279.750000px;}
.yfb{bottom:283.710000px;}
.ydd{bottom:287.850000px;}
.y7d{bottom:288.210000px;}
.y12e{bottom:293.070000px;}
.yc3{bottom:296.310000px;}
.y27{bottom:299.010000px;}
.y160{bottom:302.610000px;}
.y55{bottom:303.690000px;}
.yfa{bottom:307.650000px;}
.y7c{bottom:311.970000px;}
.yc2{bottom:320.250000px;}
.y15f{bottom:321.690000px;}
.y26{bottom:322.950000px;}
.y54{bottom:327.450000px;}
.y12d{bottom:331.050000px;}
.yf9{bottom:331.410000px;}
.ydc{bottom:335.010000px;}
.y7b{bottom:335.910000px;}
.y15e{bottom:340.635000px;}
.yc1{bottom:344.055000px;}
.y25{bottom:346.755000px;}
.y12c{bottom:349.995000px;}
.y53{bottom:351.255000px;}
.yf8{bottom:355.215000px;}
.ydb{bottom:357.555000px;}
.y7a{bottom:359.715000px;}
.y12b{bottom:368.895000px;}
.y24{bottom:370.515000px;}
.y52{bottom:375.015000px;}
.y15d{bottom:378.615000px;}
.yc0{bottom:379.515000px;}
.yda{bottom:381.495000px;}
.yf7{bottom:387.975000px;}
.y79{bottom:392.475000px;}
.y23{bottom:394.275000px;}
.ybf{bottom:397.515000px;}
.y15c{bottom:397.695000px;}
.y51{bottom:398.955000px;}
.yd9{bottom:405.255000px;}
.y12a{bottom:406.875000px;}
.yf6{bottom:411.915000px;}
.ybe{bottom:415.515000px;}
.y78{bottom:416.235000px;}
.y15b{bottom:416.595000px;}
.y22{bottom:418.215000px;}
.y50{bottom:422.715000px;}
.y129{bottom:425.955000px;}
.yd8{bottom:429.015000px;}
.ybd{bottom:433.515000px;}
.y15a{bottom:435.495000px;}
.yf5{bottom:435.675000px;}
.y77{bottom:440.175000px;}
.y21{bottom:441.975000px;}
.y128{bottom:444.855000px;}
.y4f{bottom:446.475000px;}
.ybc{bottom:451.515000px;}
.y159{bottom:454.575000px;}
.yf4{bottom:459.435000px;}
.yd7{bottom:461.775000px;}
.y127{bottom:463.755000px;}
.y76{bottom:463.935000px;}
.y20{bottom:465.735000px;}
.ybb{bottom:469.515000px;}
.y4e{bottom:470.235000px;}
.y158{bottom:473.475000px;}
.y126{bottom:482.835000px;}
.yf3{bottom:483.195000px;}
.yd6{bottom:485.715000px;}
.yba{bottom:487.515000px;}
.y1f{bottom:489.495000px;}
.y157{bottom:492.555000px;}
.y4d{bottom:494.175000px;}
.y75{bottom:496.695000px;}
.y125{bottom:501.735000px;}
.yb9{bottom:505.515000px;}
.yf2{bottom:507.135000px;}
.yd5{bottom:509.475000px;}
.y156{bottom:511.455000px;}
.y1e{bottom:513.255000px;}
.y4c{bottom:517.935000px;}
.y74{bottom:520.455000px;}
.y124{bottom:520.815000px;}
.y155{bottom:530.355000px;}
.yf1{bottom:530.895000px;}
.y1d{bottom:537.195000px;}
.yb8{bottom:538.815000px;}
.y123{bottom:539.715000px;}
.y4b{bottom:541.695000px;}
.yd4{bottom:542.235000px;}
.y73{bottom:544.395000px;}
.y154{bottom:549.435000px;}
.yf0{bottom:554.655000px;}
.y122{bottom:558.795000px;}
.y1c{bottom:560.955000px;}
.yb7{bottom:561.315000px;}
.y4a{bottom:565.455000px;}
.yd3{bottom:565.995000px;}
.y72{bottom:568.155000px;}
.y153{bottom:568.335000px;}
.y121{bottom:577.695000px;}
.y1b{bottom:584.745000px;}
.yb6{bottom:585.285000px;}
.yef{bottom:587.445000px;}
.y49{bottom:589.425000px;}
.y71{bottom:591.945000px;}
.y120{bottom:596.625000px;}
.yd2{bottom:604.005000px;}
.y152{bottom:606.345000px;}
.y1a{bottom:608.505000px;}
.yb5{bottom:609.045000px;}
.yee{bottom:611.205000px;}
.y48{bottom:613.185000px;}
.y70{bottom:615.705000px;}
.yd1{bottom:621.285000px;}
.y151{bottom:625.245000px;}
.y91{bottom:627.945000px;}
.yed{bottom:631.185000px;}
.y19{bottom:632.445000px;}
.yb4{bottom:632.805000px;}
.y11f{bottom:634.605000px;}
.y47{bottom:636.945000px;}
.yd0{bottom:638.565000px;}
.y6f{bottom:639.645000px;}
.y150{bottom:644.325000px;}
.yec{bottom:648.465000px;}
.y90{bottom:651.705000px;}
.y11e{bottom:653.685000px;}
.yb3{bottom:655.305000px;}
.ycf{bottom:655.845000px;}
.y18{bottom:656.205000px;}
.y46{bottom:660.705000px;}
.y14f{bottom:663.225000px;}
.y6e{bottom:663.405000px;}
.yeb{bottom:665.745000px;}
.yb2{bottom:670.245000px;}
.y11d{bottom:672.585000px;}
.yce{bottom:673.125000px;}
.y8f{bottom:675.645000px;}
.y17{bottom:679.965000px;}
.y14e{bottom:682.305000px;}
.y45{bottom:684.645000px;}
.y6d{bottom:687.165000px;}
.yb1{bottom:688.245000px;}
.ycd{bottom:690.405000px;}
.y11c{bottom:691.485000px;}
.yea{bottom:695.085000px;}
.y8e{bottom:699.405000px;}
.y14d{bottom:701.205000px;}
.y16{bottom:703.725000px;}
.yb0{bottom:706.245000px;}
.y44{bottom:708.405000px;}
.y11b{bottom:710.565000px;}
.y6c{bottom:719.925000px;}
.y14c{bottom:720.105000px;}
.y8d{bottom:723.165000px;}
.yaf{bottom:724.245000px;}
.ye9{bottom:725.685000px;}
.y15{bottom:727.665000px;}
.y11a{bottom:729.465000px;}
.y43{bottom:732.165000px;}
.y14b{bottom:739.185000px;}
.yae{bottom:742.245000px;}
.y6b{bottom:743.865000px;}
.y8c{bottom:746.925000px;}
.y119{bottom:748.545000px;}
.y14{bottom:751.425000px;}
.y42{bottom:755.925000px;}
.y14a{bottom:758.085000px;}
.yad{bottom:760.245000px;}
.y118{bottom:767.445000px;}
.y8b{bottom:770.865000px;}
.y13{bottom:771.405000px;}
.y6a{bottom:776.625000px;}
.y149{bottom:777.165000px;}
.yac{bottom:778.245000px;}
.y41{bottom:779.865000px;}
.y117{bottom:786.345000px;}
.y12{bottom:788.685000px;}
.y148{bottom:796.065000px;}
.yab{bottom:796.245000px;}
.y69{bottom:800.385000px;}
.y40{bottom:803.625000px;}
.y116{bottom:805.425000px;}
.y11{bottom:805.965000px;}
.yaa{bottom:814.245000px;}
.y147{bottom:814.965000px;}
.y68{bottom:824.145000px;}
.y115{bottom:824.325000px;}
.y3f{bottom:827.385000px;}
.ya9{bottom:832.290000px;}
.y146{bottom:834.090000px;}
.y10{bottom:839.850000px;}
.y114{bottom:843.450000px;}
.y67{bottom:847.950000px;}
.ya8{bottom:850.110000px;}
.y8a{bottom:851.190000px;}
.y145{bottom:852.990000px;}
.y31{bottom:856.770000px;}
.y3e{bottom:860.190000px;}
.y113{bottom:862.350000px;}
.ya7{bottom:868.110000px;}
.y66{bottom:871.890000px;}
.y144{bottom:872.070000px;}
.y89{bottom:874.950000px;}
.y112{bottom:881.250000px;}
.y3d{bottom:883.950000px;}
.ya6{bottom:886.110000px;}
.y143{bottom:890.970000px;}
.y88{bottom:898.890000px;}
.y111{bottom:900.330000px;}
.ya5{bottom:904.110000px;}
.y65{bottom:904.650000px;}
.y3c{bottom:907.890000px;}
.y142{bottom:910.050000px;}
.yf{bottom:915.630000px;}
.y110{bottom:919.230000px;}
.ya4{bottom:922.110000px;}
.y87{bottom:922.650000px;}
.y141{bottom:928.950000px;}
.y3b{bottom:931.650000px;}
.ye{bottom:934.170000px;}
.y64{bottom:937.410000px;}
.y10f{bottom:938.310000px;}
.ya3{bottom:940.110000px;}
.y140{bottom:947.850000px;}
.y3a{bottom:955.410000px;}
.yd{bottom:956.670000px;}
.y10e{bottom:957.210000px;}
.ya2{bottom:958.110000px;}
.y63{bottom:961.170000px;}
.y13f{bottom:966.930000px;}
.yc{bottom:973.770000px;}
.ya1{bottom:976.110000px;}
.y10d{bottom:976.290000px;}
.y39{bottom:979.170000px;}
.y62{bottom:985.110000px;}
.y13e{bottom:985.830000px;}
.yb{bottom:991.050000px;}
.ya0{bottom:994.110000px;}
.y10c{bottom:995.190000px;}
.ya{bottom:1003.110000px;}
.y13d{bottom:1004.910000px;}
.y9f{bottom:1012.110000px;}
.y10b{bottom:1014.090000px;}
.y61{bottom:1017.870000px;}
.y9{bottom:1020.390000px;}
.y13c{bottom:1023.810000px;}
.y38{bottom:1026.870000px;}
.y9e{bottom:1030.110000px;}
.y10a{bottom:1033.170000px;}
.y60{bottom:1041.630000px;}
.y8{bottom:1042.350000px;}
.y13b{bottom:1042.710000px;}
.y9d{bottom:1048.110000px;}
.y37{bottom:1050.630000px;}
.y109{bottom:1052.070000px;}
.y7{bottom:1060.890000px;}
.y13a{bottom:1061.790000px;}
.y5f{bottom:1065.390000px;}
.y9c{bottom:1066.110000px;}
.y36{bottom:1074.420000px;}
.y139{bottom:1080.720000px;}
.y6{bottom:1083.780000px;}
.y35{bottom:1098.360000px;}
.y9b{bottom:1099.620000px;}
.y138{bottom:1099.800000px;}
.y5{bottom:1101.060000px;}
.y3{bottom:1118.340000px;}
.y2{bottom:1135.440000px;}
.y1{bottom:1152.720000px;}
.h10{height:17.100000px;}
.h11{height:17.136000px;}
.hf{height:17.280000px;}
.he{height:17.316000px;}
.h6{height:27.147656px;}
.h15{height:30.960000px;}
.h17{height:30.996000px;}
.h13{height:31.140000px;}
.hc{height:34.380000px;}
.h16{height:37.705078px;}
.h14{height:38.100586px;}
.h3{height:41.726953px;}
.h1{height:42.164648px;}
.h12{height:43.156758px;}
.hd{height:43.506914px;}
.h19{height:46.251562px;}
.h7{height:46.736719px;}
.h18{height:48.224531px;}
.h5{height:48.312422px;}
.h2{height:49.255313px;}
.ha{height:50.273438px;}
.h1c{height:50.510039px;}
.hb{height:50.800781px;}
.h9{height:51.996094px;}
.h1a{height:52.918594px;}
.h8{height:59.343750px;}
.h4{height:59.436914px;}
.h1d{height:60.855469px;}
.h1b{height:102.816000px;}
.h0{height:1188.000000px;}
.w4{width:58.680000px;}
.w5{width:58.860000px;}
.w3{width:60.876000px;}
.w8{width:73.836000px;}
.wb{width:84.276000px;}
.wc{width:95.040000px;}
.wf{width:115.956000px;}
.we{width:148.176000px;}
.w13{width:149.796000px;}
.w7{width:152.490000px;}
.w10{width:162.210000px;}
.wa{width:179.670000px;}
.w9{width:180.750000px;}
.w6{width:185.430000px;}
.w12{width:186.510000px;}
.wd{width:190.650000px;}
.w11{width:191.370000px;}
.w2{width:732.570000px;}
.w14{width:806.760000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x18{left:7.560000px;}
.x1a{left:8.640000px;}
.xf{left:10.800000px;}
.x23{left:12.240000px;}
.x4c{left:13.320000px;}
.x22{left:14.580000px;}
.x40{left:15.840000px;}
.x16{left:17.316000px;}
.x27{left:19.080000px;}
.x33{left:20.565000px;}
.x36{left:21.960000px;}
.x38{left:23.400000px;}
.x4f{left:24.660000px;}
.x34{left:25.740000px;}
.x2e{left:27.045000px;}
.x25{left:28.260000px;}
.x21{left:30.060000px;}
.x48{left:31.716000px;}
.x37{left:32.985000px;}
.x2b{left:35.280000px;}
.x1e{left:36.390000px;}
.x29{left:37.440000px;}
.x26{left:38.745000px;}
.x50{left:39.960000px;}
.x4e{left:41.040000px;}
.x4d{left:43.200000px;}
.x24{left:44.490000px;}
.x31{left:45.945000px;}
.x4a{left:46.980000px;}
.x2d{left:48.600000px;}
.x30{left:49.860000px;}
.x1c{left:52.785000px;}
.x1{left:53.999986px;}
.x2f{left:55.470000px;}
.x28{left:57.090000px;}
.x32{left:58.140000px;}
.x2a{left:59.250000px;}
.x3a{left:60.696000px;}
.x35{left:63.390000px;}
.x45{left:64.979986px;}
.x2c{left:66.060000px;}
.x4{left:68.399986px;}
.x44{left:69.659986px;}
.x15{left:71.280000px;}
.x51{left:80.100000px;}
.xd{left:104.075986px;}
.x55{left:108.035986px;}
.xa{left:114.155986px;}
.x41{left:122.615986px;}
.x42{left:124.415986px;}
.xe{left:129.636000px;}
.x17{left:133.056000px;}
.xc{left:141.335986px;}
.x9{left:144.395986px;}
.xb{left:152.489986px;}
.x7{left:169.409986px;}
.x43{left:171.029986px;}
.x6{left:182.729986px;}
.x19{left:192.450000px;}
.x46{left:194.969986px;}
.x47{left:215.669986px;}
.x5{left:222.329986px;}
.x53{left:225.569986px;}
.x3b{left:246.630000px;}
.x1b{left:252.030000px;}
.x13{left:269.354986px;}
.x8{left:294.554986px;}
.x3{left:307.874986px;}
.x11{left:309.314986px;}
.x14{left:315.254986px;}
.x3c{left:331.635000px;}
.x39{left:334.694986px;}
.x54{left:355.214986px;}
.x10{left:366.189000px;}
.x3d{left:427.395000px;}
.x1d{left:438.195000px;}
.x2{left:459.104986px;}
.x49{left:526.425000px;}
.x1f{left:591.585000px;}
.x3e{left:618.765000px;}
.x20{left:666.150000px;}
.x3f{left:703.770000px;}
.x4b{left:713.670000px;}
.x12{left:833.039986px;}
.x52{left:837.539986px;}
@media print{
.v3{vertical-align:-50.080000pt;}
.v5{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v4{vertical-align:21.120000pt;}
.lsb{letter-spacing:-4.144000pt;}
.ls24{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.271467pt;}
.ls20{letter-spacing:-0.230933pt;}
.ls23{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls18{letter-spacing:-0.128000pt;}
.ls26{letter-spacing:-0.112000pt;}
.lsa{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.000001pt;}
.ls8{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.106240pt;}
.ls19{letter-spacing:0.128000pt;}
.ls30{letter-spacing:0.135467pt;}
.ls1{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.230933pt;}
.ls4{letter-spacing:0.231040pt;}
.ls1f{letter-spacing:0.233067pt;}
.ls17{letter-spacing:0.256000pt;}
.ls32{letter-spacing:0.271467pt;}
.ls1c{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls12{letter-spacing:1.920000pt;}
.ls10{letter-spacing:2.560000pt;}
.ls14{letter-spacing:3.200000pt;}
.ls13{letter-spacing:3.840000pt;}
.ls1d{letter-spacing:4.480000pt;}
.ls15{letter-spacing:5.120000pt;}
.ls2f{letter-spacing:6.031360pt;}
.ls27{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:7.040000pt;}
.ls25{letter-spacing:7.680000pt;}
.ls2a{letter-spacing:8.320000pt;}
.ls16{letter-spacing:9.600000pt;}
.ls2e{letter-spacing:10.240000pt;}
.ls2b{letter-spacing:10.880000pt;}
.ls11{letter-spacing:11.520000pt;}
.ls2c{letter-spacing:14.080000pt;}
.ls1e{letter-spacing:15.360000pt;}
.lsf{letter-spacing:18.560000pt;}
.ls29{letter-spacing:19.178667pt;}
.ls28{letter-spacing:19.840000pt;}
.ls2d{letter-spacing:35.471360pt;}
.ls6{letter-spacing:82.720000pt;}
.ls2{letter-spacing:138.400000pt;}
.ls0{letter-spacing:162.240000pt;}
.ls5{letter-spacing:382.400000pt;}
.ls7{letter-spacing:956.298667pt;}
.ws7{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.192000pt;}
.ws9{word-spacing:-16.128000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.999999pt;}
.ws8{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.808000pt;}
.ws13{word-spacing:-14.855467pt;}
.ws12{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.448533pt;}
.wsc{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.049067pt;}
.ws10{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.000000pt;}
.wsf{word-spacing:-11.888000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1f{margin-left:-7.918933pt;}
._9{margin-left:-6.375040pt;}
._3{margin-left:-5.418240pt;}
._8{margin-left:-3.770880pt;}
._5{margin-left:-2.171520pt;}
._1{margin-left:-1.189973pt;}
._0{width:1.009280pt;}
._2{width:1.981440pt;}
._a{width:3.133227pt;}
._4{width:4.112640pt;}
._11{width:5.191680pt;}
._14{width:6.101547pt;}
._13{width:7.034880pt;}
._12{width:8.000000pt;}
._19{width:9.073920pt;}
._e{width:10.077440pt;}
._d{width:11.008000pt;}
._f{width:11.963520pt;}
._10{width:13.207893pt;}
._15{width:14.223573pt;}
._1e{width:16.141867pt;}
._18{width:17.177387pt;}
._17{width:18.240000pt;}
._1a{width:19.190827pt;}
._16{width:20.096000pt;}
._b{width:21.824000pt;}
._c{width:23.626667pt;}
._1d{width:24.739840pt;}
._1c{width:30.848000pt;}
._1b{width:31.744000pt;}
._6{width:63.486720pt;}
._7{width:82.720000pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y16c{bottom:-45.280000pt;}
.y16b{bottom:-13.120000pt;}
.y34{bottom:-12.480000pt;}
.y0{bottom:0.000000pt;}
.y16a{bottom:2.240000pt;}
.ye3{bottom:2.560000pt;}
.ye0{bottom:2.720000pt;}
.y33{bottom:2.880000pt;}
.yde{bottom:8.480000pt;}
.ye2{bottom:16.320000pt;}
.ydf{bottom:16.480000pt;}
.y169{bottom:17.600000pt;}
.y32{bottom:18.080000pt;}
.y4{bottom:21.600000pt;}
.y168{bottom:32.992000pt;}
.y167{bottom:48.192000pt;}
.y9a{bottom:55.840000pt;}
.y86{bottom:57.760000pt;}
.ye8{bottom:58.080000pt;}
.y108{bottom:58.240000pt;}
.y104{bottom:61.760000pt;}
.y166{bottom:63.552000pt;}
.ycc{bottom:64.960000pt;}
.y30{bottom:67.360000pt;}
.y5e{bottom:71.520000pt;}
.y137{bottom:74.880000pt;}
.y99{bottom:76.960000pt;}
.y85{bottom:78.880000pt;}
.y165{bottom:78.906667pt;}
.y107{bottom:79.520000pt;}
.y103{bottom:82.912000pt;}
.ycb{bottom:86.272000pt;}
.y2f{bottom:88.512000pt;}
.y136{bottom:91.872000pt;}
.y5d{bottom:92.672000pt;}
.y98{bottom:98.112000pt;}
.y84{bottom:100.192000pt;}
.y106{bottom:100.672000pt;}
.y102{bottom:104.192000pt;}
.yca{bottom:107.392000pt;}
.y135{bottom:108.672000pt;}
.y2e{bottom:109.792000pt;}
.y5c{bottom:113.792000pt;}
.ye7{bottom:114.592000pt;}
.y97{bottom:119.392000pt;}
.y83{bottom:121.312000pt;}
.y105{bottom:121.792000pt;}
.y101{bottom:125.312000pt;}
.y134{bottom:125.632000pt;}
.yc9{bottom:128.512000pt;}
.y2d{bottom:130.912000pt;}
.y5b{bottom:134.906667pt;}
.y96{bottom:140.506667pt;}
.y82{bottom:142.426667pt;}
.ye6{bottom:142.906667pt;}
.y100{bottom:146.426667pt;}
.yc8{bottom:149.626667pt;}
.y2c{bottom:152.026667pt;}
.y133{bottom:159.226667pt;}
.y95{bottom:161.626667pt;}
.y81{bottom:163.546667pt;}
.y5a{bottom:164.186667pt;}
.yff{bottom:167.546667pt;}
.y164{bottom:167.866667pt;}
.yc7{bottom:170.906667pt;}
.ye5{bottom:171.066667pt;}
.y2b{bottom:173.146667pt;}
.y132{bottom:176.186667pt;}
.y94{bottom:182.746667pt;}
.y80{bottom:184.666667pt;}
.y59{bottom:185.306667pt;}
.yfe{bottom:188.826667pt;}
.yc6{bottom:192.026667pt;}
.y131{bottom:192.986667pt;}
.ye4{bottom:199.386667pt;}
.y163{bottom:201.626667pt;}
.y2a{bottom:202.426667pt;}
.y93{bottom:203.386667pt;}
.y58{bottom:206.426667pt;}
.yfd{bottom:209.946667pt;}
.yc5{bottom:213.146667pt;}
.y7f{bottom:213.946667pt;}
.y162{bottom:218.426667pt;}
.y92{bottom:219.866667pt;}
.y29{bottom:223.546667pt;}
.y130{bottom:226.746667pt;}
.y57{bottom:227.546667pt;}
.ye1{bottom:227.706667pt;}
.yfc{bottom:231.066667pt;}
.yc4{bottom:234.266667pt;}
.y7e{bottom:235.066667pt;}
.y161{bottom:235.386667pt;}
.y12f{bottom:243.546667pt;}
.y28{bottom:244.666667pt;}
.y56{bottom:248.666667pt;}
.yfb{bottom:252.186667pt;}
.ydd{bottom:255.866667pt;}
.y7d{bottom:256.186667pt;}
.y12e{bottom:260.506667pt;}
.yc3{bottom:263.386667pt;}
.y27{bottom:265.786667pt;}
.y160{bottom:268.986667pt;}
.y55{bottom:269.946667pt;}
.yfa{bottom:273.466667pt;}
.y7c{bottom:277.306667pt;}
.yc2{bottom:284.666667pt;}
.y15f{bottom:285.946667pt;}
.y26{bottom:287.066667pt;}
.y54{bottom:291.066667pt;}
.y12d{bottom:294.266667pt;}
.yf9{bottom:294.586667pt;}
.ydc{bottom:297.786667pt;}
.y7b{bottom:298.586667pt;}
.y15e{bottom:302.786667pt;}
.yc1{bottom:305.826667pt;}
.y25{bottom:308.226667pt;}
.y12c{bottom:311.106667pt;}
.y53{bottom:312.226667pt;}
.yf8{bottom:315.746667pt;}
.ydb{bottom:317.826667pt;}
.y7a{bottom:319.746667pt;}
.y12b{bottom:327.906667pt;}
.y24{bottom:329.346667pt;}
.y52{bottom:333.346667pt;}
.y15d{bottom:336.546667pt;}
.yc0{bottom:337.346667pt;}
.yda{bottom:339.106667pt;}
.yf7{bottom:344.866667pt;}
.y79{bottom:348.866667pt;}
.y23{bottom:350.466667pt;}
.ybf{bottom:353.346667pt;}
.y15c{bottom:353.506667pt;}
.y51{bottom:354.626667pt;}
.yd9{bottom:360.226667pt;}
.y12a{bottom:361.666667pt;}
.yf6{bottom:366.146667pt;}
.ybe{bottom:369.346667pt;}
.y78{bottom:369.986667pt;}
.y15b{bottom:370.306667pt;}
.y22{bottom:371.746667pt;}
.y50{bottom:375.746667pt;}
.y129{bottom:378.626667pt;}
.yd8{bottom:381.346667pt;}
.ybd{bottom:385.346667pt;}
.y15a{bottom:387.106667pt;}
.yf5{bottom:387.266667pt;}
.y77{bottom:391.266667pt;}
.y21{bottom:392.866667pt;}
.y128{bottom:395.426667pt;}
.y4f{bottom:396.866667pt;}
.ybc{bottom:401.346667pt;}
.y159{bottom:404.066667pt;}
.yf4{bottom:408.386667pt;}
.yd7{bottom:410.466667pt;}
.y127{bottom:412.226667pt;}
.y76{bottom:412.386667pt;}
.y20{bottom:413.986667pt;}
.ybb{bottom:417.346667pt;}
.y4e{bottom:417.986667pt;}
.y158{bottom:420.866667pt;}
.y126{bottom:429.186667pt;}
.yf3{bottom:429.506667pt;}
.yd6{bottom:431.746667pt;}
.yba{bottom:433.346667pt;}
.y1f{bottom:435.106667pt;}
.y157{bottom:437.826667pt;}
.y4d{bottom:439.266667pt;}
.y75{bottom:441.506667pt;}
.y125{bottom:445.986667pt;}
.yb9{bottom:449.346667pt;}
.yf2{bottom:450.786667pt;}
.yd5{bottom:452.866667pt;}
.y156{bottom:454.626667pt;}
.y1e{bottom:456.226667pt;}
.y4c{bottom:460.386667pt;}
.y74{bottom:462.626667pt;}
.y124{bottom:462.946667pt;}
.y155{bottom:471.426667pt;}
.yf1{bottom:471.906667pt;}
.y1d{bottom:477.506667pt;}
.yb8{bottom:478.946667pt;}
.y123{bottom:479.746667pt;}
.y4b{bottom:481.506667pt;}
.yd4{bottom:481.986667pt;}
.y73{bottom:483.906667pt;}
.y154{bottom:488.386667pt;}
.yf0{bottom:493.026667pt;}
.y122{bottom:496.706667pt;}
.y1c{bottom:498.626667pt;}
.yb7{bottom:498.946667pt;}
.y4a{bottom:502.626667pt;}
.yd3{bottom:503.106667pt;}
.y72{bottom:505.026667pt;}
.y153{bottom:505.186667pt;}
.y121{bottom:513.506667pt;}
.y1b{bottom:519.773333pt;}
.yb6{bottom:520.253333pt;}
.yef{bottom:522.173333pt;}
.y49{bottom:523.933333pt;}
.y71{bottom:526.173333pt;}
.y120{bottom:530.333333pt;}
.yd2{bottom:536.893333pt;}
.y152{bottom:538.973333pt;}
.y1a{bottom:540.893333pt;}
.yb5{bottom:541.373333pt;}
.yee{bottom:543.293333pt;}
.y48{bottom:545.053333pt;}
.y70{bottom:547.293333pt;}
.yd1{bottom:552.253333pt;}
.y151{bottom:555.773333pt;}
.y91{bottom:558.173333pt;}
.yed{bottom:561.053333pt;}
.y19{bottom:562.173333pt;}
.yb4{bottom:562.493333pt;}
.y11f{bottom:564.093333pt;}
.y47{bottom:566.173333pt;}
.yd0{bottom:567.613333pt;}
.y6f{bottom:568.573333pt;}
.y150{bottom:572.733333pt;}
.yec{bottom:576.413333pt;}
.y90{bottom:579.293333pt;}
.y11e{bottom:581.053333pt;}
.yb3{bottom:582.493333pt;}
.ycf{bottom:582.973333pt;}
.y18{bottom:583.293333pt;}
.y46{bottom:587.293333pt;}
.y14f{bottom:589.533333pt;}
.y6e{bottom:589.693333pt;}
.yeb{bottom:591.773333pt;}
.yb2{bottom:595.773333pt;}
.y11d{bottom:597.853333pt;}
.yce{bottom:598.333333pt;}
.y8f{bottom:600.573333pt;}
.y17{bottom:604.413333pt;}
.y14e{bottom:606.493333pt;}
.y45{bottom:608.573333pt;}
.y6d{bottom:610.813333pt;}
.yb1{bottom:611.773333pt;}
.ycd{bottom:613.693333pt;}
.y11c{bottom:614.653333pt;}
.yea{bottom:617.853333pt;}
.y8e{bottom:621.693333pt;}
.y14d{bottom:623.293333pt;}
.y16{bottom:625.533333pt;}
.yb0{bottom:627.773333pt;}
.y44{bottom:629.693333pt;}
.y11b{bottom:631.613333pt;}
.y6c{bottom:639.933333pt;}
.y14c{bottom:640.093333pt;}
.y8d{bottom:642.813333pt;}
.yaf{bottom:643.773333pt;}
.ye9{bottom:645.053333pt;}
.y15{bottom:646.813333pt;}
.y11a{bottom:648.413333pt;}
.y43{bottom:650.813333pt;}
.y14b{bottom:657.053333pt;}
.yae{bottom:659.773333pt;}
.y6b{bottom:661.213333pt;}
.y8c{bottom:663.933333pt;}
.y119{bottom:665.373333pt;}
.y14{bottom:667.933333pt;}
.y42{bottom:671.933333pt;}
.y14a{bottom:673.853333pt;}
.yad{bottom:675.773333pt;}
.y118{bottom:682.173333pt;}
.y8b{bottom:685.213333pt;}
.y13{bottom:685.693333pt;}
.y6a{bottom:690.333333pt;}
.y149{bottom:690.813333pt;}
.yac{bottom:691.773333pt;}
.y41{bottom:693.213333pt;}
.y117{bottom:698.973333pt;}
.y12{bottom:701.053333pt;}
.y148{bottom:707.613333pt;}
.yab{bottom:707.773333pt;}
.y69{bottom:711.453333pt;}
.y40{bottom:714.333333pt;}
.y116{bottom:715.933333pt;}
.y11{bottom:716.413333pt;}
.yaa{bottom:723.773333pt;}
.y147{bottom:724.413333pt;}
.y68{bottom:732.573333pt;}
.y115{bottom:732.733333pt;}
.y3f{bottom:735.453333pt;}
.ya9{bottom:739.813333pt;}
.y146{bottom:741.413333pt;}
.y10{bottom:746.533333pt;}
.y114{bottom:749.733333pt;}
.y67{bottom:753.733333pt;}
.ya8{bottom:755.653333pt;}
.y8a{bottom:756.613333pt;}
.y145{bottom:758.213333pt;}
.y31{bottom:761.573333pt;}
.y3e{bottom:764.613333pt;}
.y113{bottom:766.533333pt;}
.ya7{bottom:771.653333pt;}
.y66{bottom:775.013333pt;}
.y144{bottom:775.173333pt;}
.y89{bottom:777.733333pt;}
.y112{bottom:783.333333pt;}
.y3d{bottom:785.733333pt;}
.ya6{bottom:787.653333pt;}
.y143{bottom:791.973333pt;}
.y88{bottom:799.013333pt;}
.y111{bottom:800.293333pt;}
.ya5{bottom:803.653333pt;}
.y65{bottom:804.133333pt;}
.y3c{bottom:807.013333pt;}
.y142{bottom:808.933333pt;}
.yf{bottom:813.893333pt;}
.y110{bottom:817.093333pt;}
.ya4{bottom:819.653333pt;}
.y87{bottom:820.133333pt;}
.y141{bottom:825.733333pt;}
.y3b{bottom:828.133333pt;}
.ye{bottom:830.373333pt;}
.y64{bottom:833.253333pt;}
.y10f{bottom:834.053333pt;}
.ya3{bottom:835.653333pt;}
.y140{bottom:842.533333pt;}
.y3a{bottom:849.253333pt;}
.yd{bottom:850.373333pt;}
.y10e{bottom:850.853333pt;}
.ya2{bottom:851.653333pt;}
.y63{bottom:854.373333pt;}
.y13f{bottom:859.493333pt;}
.yc{bottom:865.573333pt;}
.ya1{bottom:867.653333pt;}
.y10d{bottom:867.813333pt;}
.y39{bottom:870.373333pt;}
.y62{bottom:875.653333pt;}
.y13e{bottom:876.293333pt;}
.yb{bottom:880.933333pt;}
.ya0{bottom:883.653333pt;}
.y10c{bottom:884.613333pt;}
.ya{bottom:891.653333pt;}
.y13d{bottom:893.253333pt;}
.y9f{bottom:899.653333pt;}
.y10b{bottom:901.413333pt;}
.y61{bottom:904.773333pt;}
.y9{bottom:907.013333pt;}
.y13c{bottom:910.053333pt;}
.y38{bottom:912.773333pt;}
.y9e{bottom:915.653333pt;}
.y10a{bottom:918.373333pt;}
.y60{bottom:925.893333pt;}
.y8{bottom:926.533333pt;}
.y13b{bottom:926.853333pt;}
.y9d{bottom:931.653333pt;}
.y37{bottom:933.893333pt;}
.y109{bottom:935.173333pt;}
.y7{bottom:943.013333pt;}
.y13a{bottom:943.813333pt;}
.y5f{bottom:947.013333pt;}
.y9c{bottom:947.653333pt;}
.y36{bottom:955.040000pt;}
.y139{bottom:960.640000pt;}
.y6{bottom:963.360000pt;}
.y35{bottom:976.320000pt;}
.y9b{bottom:977.440000pt;}
.y138{bottom:977.600000pt;}
.y5{bottom:978.720000pt;}
.y3{bottom:994.080000pt;}
.y2{bottom:1009.280000pt;}
.y1{bottom:1024.640000pt;}
.h10{height:15.200000pt;}
.h11{height:15.232000pt;}
.hf{height:15.360000pt;}
.he{height:15.392000pt;}
.h6{height:24.131250pt;}
.h15{height:27.520000pt;}
.h17{height:27.552000pt;}
.h13{height:27.680000pt;}
.hc{height:30.560000pt;}
.h16{height:33.515625pt;}
.h14{height:33.867188pt;}
.h3{height:37.090625pt;}
.h1{height:37.479688pt;}
.h12{height:38.361562pt;}
.hd{height:38.672812pt;}
.h19{height:41.112500pt;}
.h7{height:41.543750pt;}
.h18{height:42.866250pt;}
.h5{height:42.944375pt;}
.h2{height:43.782500pt;}
.ha{height:44.687500pt;}
.h1c{height:44.897813pt;}
.hb{height:45.156250pt;}
.h9{height:46.218750pt;}
.h1a{height:47.038750pt;}
.h8{height:52.750000pt;}
.h4{height:52.832812pt;}
.h1d{height:54.093750pt;}
.h1b{height:91.392000pt;}
.h0{height:1056.000000pt;}
.w4{width:52.160000pt;}
.w5{width:52.320000pt;}
.w3{width:54.112000pt;}
.w8{width:65.632000pt;}
.wb{width:74.912000pt;}
.wc{width:84.480000pt;}
.wf{width:103.072000pt;}
.we{width:131.712000pt;}
.w13{width:133.152000pt;}
.w7{width:135.546667pt;}
.w10{width:144.186667pt;}
.wa{width:159.706667pt;}
.w9{width:160.666667pt;}
.w6{width:164.826667pt;}
.w12{width:165.786667pt;}
.wd{width:169.466667pt;}
.w11{width:170.106667pt;}
.w2{width:651.173333pt;}
.w14{width:717.120000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.720000pt;}
.x1a{left:7.680000pt;}
.xf{left:9.600000pt;}
.x23{left:10.880000pt;}
.x4c{left:11.840000pt;}
.x22{left:12.960000pt;}
.x40{left:14.080000pt;}
.x16{left:15.392000pt;}
.x27{left:16.960000pt;}
.x33{left:18.280000pt;}
.x36{left:19.520000pt;}
.x38{left:20.800000pt;}
.x4f{left:21.920000pt;}
.x34{left:22.880000pt;}
.x2e{left:24.040000pt;}
.x25{left:25.120000pt;}
.x21{left:26.720000pt;}
.x48{left:28.192000pt;}
.x37{left:29.320000pt;}
.x2b{left:31.360000pt;}
.x1e{left:32.346667pt;}
.x29{left:33.280000pt;}
.x26{left:34.440000pt;}
.x50{left:35.520000pt;}
.x4e{left:36.480000pt;}
.x4d{left:38.400000pt;}
.x24{left:39.546667pt;}
.x31{left:40.840000pt;}
.x4a{left:41.760000pt;}
.x2d{left:43.200000pt;}
.x30{left:44.320000pt;}
.x1c{left:46.920000pt;}
.x1{left:47.999988pt;}
.x2f{left:49.306667pt;}
.x28{left:50.746667pt;}
.x32{left:51.680000pt;}
.x2a{left:52.666667pt;}
.x3a{left:53.952000pt;}
.x35{left:56.346667pt;}
.x45{left:57.759988pt;}
.x2c{left:58.720000pt;}
.x4{left:60.799988pt;}
.x44{left:61.919988pt;}
.x15{left:63.360000pt;}
.x51{left:71.200000pt;}
.xd{left:92.511988pt;}
.x55{left:96.031988pt;}
.xa{left:101.471988pt;}
.x41{left:108.991988pt;}
.x42{left:110.591988pt;}
.xe{left:115.232000pt;}
.x17{left:118.272000pt;}
.xc{left:125.631988pt;}
.x9{left:128.351988pt;}
.xb{left:135.546655pt;}
.x7{left:150.586655pt;}
.x43{left:152.026655pt;}
.x6{left:162.426655pt;}
.x19{left:171.066667pt;}
.x46{left:173.306655pt;}
.x47{left:191.706655pt;}
.x5{left:197.626655pt;}
.x53{left:200.506655pt;}
.x3b{left:219.226667pt;}
.x1b{left:224.026667pt;}
.x13{left:239.426655pt;}
.x8{left:261.826655pt;}
.x3{left:273.666655pt;}
.x11{left:274.946655pt;}
.x14{left:280.226655pt;}
.x3c{left:294.786667pt;}
.x39{left:297.506655pt;}
.x54{left:315.746655pt;}
.x10{left:325.501333pt;}
.x3d{left:379.906667pt;}
.x1d{left:389.506667pt;}
.x2{left:408.093321pt;}
.x49{left:467.933333pt;}
.x1f{left:525.853333pt;}
.x3e{left:550.013333pt;}
.x20{left:592.133333pt;}
.x3f{left:625.573333pt;}
.x4b{left:634.373333pt;}
.x12{left:740.479988pt;}
.x52{left:744.479988pt;}
}




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