
    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_3b922057902ecd4b1110456a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.694336;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691406;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_30da6b97271f377716e26028.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1fe4b2718f45fb4c771cbf68.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a4db3bc17e173bb16a29e11e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_937f26fdcc74d5ef15813760.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_78212775bb4d014a9ddac683.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f4e0478b87442934a9172599.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b1afd02269206b7a1081d189.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087891;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_3a2c57f81699c96388fae954.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;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_b448bcd9a9ee9531f2a4fa8f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4a93dedb37e262ce6d5164b0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.691406;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);}
.v4{vertical-align:-303.816000px;}
.v3{vertical-align:-144.720000px;}
.v2{vertical-align:-143.280000px;}
.v1{vertical-align:-124.560000px;}
.v5{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.262200px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.lse{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.008000px;}
.ls9{letter-spacing:5.040000px;}
.ls1{letter-spacing:43.920000px;}
.lsf{letter-spacing:44.784000px;}
.ls11{letter-spacing:49.985280px;}
.ls7{letter-spacing:55.386720px;}
.ls10{letter-spacing:89.976000px;}
.ls8{letter-spacing:192.960000px;}
.ls0{letter-spacing:547.680000px;}
.ls5{letter-spacing:849.185760px;}
.ls2{letter-spacing:968.760000px;}
.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;}
}
.ws2{word-spacing:-30.420000px;}
.ws1{word-spacing:-19.008000px;}
.wsa{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.712000px;}
.ws9{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.297800px;}
.ws4{word-spacing:-14.940000px;}
.ws0{word-spacing:0.000000px;}
._26{margin-left:-16.326720px;}
._39{margin-left:-10.975200px;}
._34{margin-left:-2.544000px;}
._0{margin-left:-1.442880px;}
._1{width:1.054080px;}
._2{width:2.080560px;}
._9{width:3.314160px;}
._10{width:5.292720px;}
._d{width:7.053120px;}
._6{width:8.354880px;}
._5{width:9.432000px;}
._7{width:10.537920px;}
._8{width:11.820000px;}
._27{width:12.950880px;}
._a{width:14.616000px;}
._b{width:15.624000px;}
._c{width:16.698240px;}
._2c{width:19.756800px;}
._2a{width:21.024000px;}
._2b{width:22.464000px;}
._11{width:24.264000px;}
._30{width:25.395840px;}
._36{width:27.020160px;}
._f{width:28.080000px;}
._2e{width:29.088000px;}
._2f{width:30.456000px;}
._35{width:31.544640px;}
._5c{width:33.480000px;}
._5b{width:34.850880px;}
._2d{width:35.928000px;}
._28{width:37.612800px;}
._29{width:38.779200px;}
._48{width:40.464000px;}
._47{width:42.410880px;}
._46{width:43.490880px;}
._31{width:44.496000px;}
._32{width:45.936000px;}
._52{width:47.088000px;}
._51{width:48.456000px;}
._4f{width:49.538880px;}
._44{width:50.904000px;}
._54{width:52.128000px;}
._42{width:53.136000px;}
._43{width:54.144000px;}
._59{width:56.736000px;}
._3e{width:58.464000px;}
._12{width:59.736000px;}
._45{width:60.768000px;}
._4d{width:62.208000px;}
._3b{width:65.016000px;}
._3c{width:66.913920px;}
._4a{width:70.416000px;}
._4{width:74.604000px;}
._57{width:79.588800px;}
._4c{width:81.144000px;}
._4b{width:82.152000px;}
._61{width:83.592000px;}
._62{width:84.600000px;}
._5d{width:86.760000px;}
._3d{width:89.064000px;}
._50{width:93.588480px;}
._33{width:94.913760px;}
._5e{width:97.272000px;}
._5f{width:99.072000px;}
._4e{width:107.208000px;}
._49{width:114.364800px;}
._53{width:117.432000px;}
._3a{width:118.889760px;}
._40{width:120.744000px;}
._41{width:122.112000px;}
._56{width:124.632000px;}
._55{width:125.640000px;}
._20{width:129.111120px;}
._5a{width:131.616000px;}
._37{width:166.913760px;}
._3f{width:168.246240px;}
._38{width:192.024000px;}
._58{width:193.536000px;}
._3{width:196.478880px;}
._60{width:313.344000px;}
._1f{width:574.062720px;}
._1a{width:679.473600px;}
._e{width:846.156000px;}
._21{width:973.516800px;}
._22{width:1191.220800px;}
._24{width:1434.940800px;}
._1c{width:1615.108800px;}
._1d{width:1648.848000px;}
._15{width:1676.400000px;}
._18{width:1684.392000px;}
._1e{width:1812.936000px;}
._17{width:1820.788800px;}
._1b{width:1960.824000px;}
._13{width:1994.880000px;}
._14{width:1998.840000px;}
._19{width:2017.060800px;}
._23{width:2022.216000px;}
._25{width:2038.560000px;}
._16{width:2142.528000px;}
.fc2{color:rgb(79,129,189);}
.fc1{color:rgb(54,96,145);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:108.000000px;}
.fs3{font-size:120.240000px;}
.fs6{font-size:126.000000px;}
.fs5{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y198{bottom:3.585000px;}
.y1a2{bottom:3.592500px;}
.y122{bottom:3.600000px;}
.y1d2{bottom:3.765000px;}
.y14e{bottom:3.772500px;}
.y130{bottom:3.780000px;}
.y19a{bottom:3.945000px;}
.y1a3{bottom:3.952500px;}
.y124{bottom:3.960000px;}
.y19c{bottom:4.126500px;}
.y179{bottom:4.132500px;}
.y127{bottom:4.140000px;}
.y1cf{bottom:4.485000px;}
.y1a0{bottom:4.486500px;}
.y1de{bottom:4.500000px;}
.y1cc{bottom:4.680000px;}
.y12c{bottom:22.320000px;}
.y168{bottom:22.500000px;}
.y14d{bottom:23.212500px;}
.y1d5{bottom:23.386500px;}
.y153{bottom:23.400000px;}
.y157{bottom:23.580000px;}
.y205{bottom:23.926500px;}
.y178{bottom:24.826500px;}
.y187{bottom:24.840000px;}
.y207{bottom:24.870000px;}
.y19f{bottom:25.186500px;}
.y126{bottom:25.200000px;}
.y1ce{bottom:25.230000px;}
.y210{bottom:25.245000px;}
.y14c{bottom:43.906500px;}
.y204{bottom:44.086500px;}
.y152{bottom:44.100000px;}
.y15d{bottom:44.145000px;}
.y177{bottom:45.526500px;}
.y186{bottom:45.540000px;}
.y19e{bottom:45.886500px;}
.y20a{bottom:45.900000px;}
.y20f{bottom:45.945000px;}
.y12b{bottom:46.080000px;}
.y12f{bottom:46.260000px;}
.y1c5{bottom:46.290000px;}
.y18c{bottom:46.305000px;}
.y15{bottom:57.636000px;}
.y14b{bottom:64.606500px;}
.y156{bottom:64.620000px;}
.y203{bottom:64.786500px;}
.y15c{bottom:64.845000px;}
.y176{bottom:66.226500px;}
.y185{bottom:66.240000px;}
.y19d{bottom:66.586500px;}
.y20e{bottom:66.645000px;}
.y180{bottom:67.846500px;}
.y12a{bottom:70.020000px;}
.y167{bottom:70.200000px;}
.y1c4{bottom:70.230000px;}
.y14{bottom:77.796000px;}
.y14a{bottom:85.306500px;}
.y202{bottom:85.486500px;}
.y15b{bottom:85.545000px;}
.y175{bottom:86.926500px;}
.y184{bottom:86.940000px;}
.y17f{bottom:87.286500px;}
.y1ca{bottom:93.780000px;}
.y1d9{bottom:93.960000px;}
.y166{bottom:93.990000px;}
.y149{bottom:106.006500px;}
.y201{bottom:106.186500px;}
.y15a{bottom:106.245000px;}
.y174{bottom:107.626500px;}
.y183{bottom:107.640000px;}
.y17e{bottom:107.986500px;}
.y134{bottom:113.263500px;}
.y67{bottom:115.056000px;}
.y1c9{bottom:117.720000px;}
.y1d8{bottom:117.750000px;}
.yf1{bottom:119.916000px;}
.y1d6{bottom:124.963500px;}
.y16f{bottom:126.043500px;}
.y1e1{bottom:126.403500px;}
.y148{bottom:126.706500px;}
.y200{bottom:126.886500px;}
.yac{bottom:128.016000px;}
.y173{bottom:128.326500px;}
.y1b4{bottom:128.340000px;}
.y182{bottom:128.370000px;}
.y17d{bottom:128.686500px;}
.y1a1{bottom:129.103500px;}
.y104{bottom:134.856000px;}
.yc8{bottom:135.756000px;}
.y1c8{bottom:141.480000px;}
.y1d4{bottom:145.483500px;}
.y82{bottom:146.016000px;}
.y66{bottom:146.196000px;}
.y147{bottom:147.406500px;}
.y1ff{bottom:147.631500px;}
.y1b3{bottom:149.040000px;}
.y172{bottom:149.071500px;}
.y17c{bottom:149.431500px;}
.y19b{bottom:149.623500px;}
.yf0{bottom:150.870000px;}
.y1fa{bottom:151.951500px;}
.yda{bottom:152.850000px;}
.yab{bottom:159.150000px;}
.y103{bottom:165.810000px;}
.yc7{bottom:166.890000px;}
.y13{bottom:168.330000px;}
.y1fe{bottom:168.331500px;}
.y146{bottom:168.511500px;}
.y171{bottom:169.771500px;}
.y1b2{bottom:169.785000px;}
.y17b{bottom:170.131500px;}
.y1f9{bottom:171.211500px;}
.y231{bottom:173.550000px;}
.y65{bottom:177.150000px;}
.y120{bottom:178.050000px;}
.yef{bottom:182.010000px;}
.y1d3{bottom:186.705000px;}
.y2c{bottom:187.770000px;}
.y1fd{bottom:189.031500px;}
.y145{bottom:189.211500px;}
.y170{bottom:190.471500px;}
.y1b1{bottom:190.485000px;}
.y17a{bottom:190.831500px;}
.y1f8{bottom:191.011500px;}
.y102{bottom:196.950000px;}
.yc6{bottom:197.850000px;}
.yd9{bottom:198.930000px;}
.y12{bottom:199.830000px;}
.y230{bottom:204.510000px;}
.yaa{bottom:205.230000px;}
.y1d1{bottom:207.045000px;}
.y64{bottom:208.290000px;}
.y11f{bottom:209.010000px;}
.y1fc{bottom:209.731500px;}
.y144{bottom:209.911500px;}
.y1f7{bottom:210.811500px;}
.y1b0{bottom:211.185000px;}
.yee{bottom:212.970000px;}
.y81{bottom:223.230000px;}
.y48{bottom:225.570000px;}
.y101{bottom:227.910000px;}
.yc5{bottom:228.990000px;}
.y1fb{bottom:230.431500px;}
.y143{bottom:230.611500px;}
.y1af{bottom:231.885000px;}
.y199{bottom:233.865000px;}
.y2b{bottom:234.210000px;}
.y22f{bottom:235.650000px;}
.y63{bottom:239.250000px;}
.y11e{bottom:240.150000px;}
.yed{bottom:244.110000px;}
.yd8{bottom:245.010000px;}
.y1d0{bottom:250.050000px;}
.y1f6{bottom:251.131500px;}
.ya9{bottom:251.310000px;}
.y142{bottom:251.311500px;}
.y1ae{bottom:252.585000px;}
.y80{bottom:254.190000px;}
.y197{bottom:254.385000px;}
.y100{bottom:259.050000px;}
.yd7{bottom:259.950000px;}
.y22e{bottom:266.610000px;}
.y1cd{bottom:267.165000px;}
.y62{bottom:270.390000px;}
.y11d{bottom:271.110000px;}
.y1f5{bottom:271.831500px;}
.y141{bottom:272.011500px;}
.y11{bottom:272.190000px;}
.y1ad{bottom:273.285000px;}
.y47{bottom:273.675000px;}
.y196{bottom:274.755000px;}
.y1bf{bottom:274.905000px;}
.yc4{bottom:275.115000px;}
.y1bd{bottom:275.805000px;}
.y2a{bottom:280.335000px;}
.y7f{bottom:285.375000px;}
.yec{bottom:290.055000px;}
.yd6{bottom:291.135000px;}
.y1f4{bottom:292.531500px;}
.y140{bottom:292.711500px;}
.y1ac{bottom:293.985000px;}
.y1be{bottom:294.345000px;}
.y1bc{bottom:294.885000px;}
.ya8{bottom:297.255000px;}
.y11c{bottom:302.295000px;}
.y46{bottom:305.895000px;}
.yc3{bottom:306.075000px;}
.y1cb{bottom:310.215000px;}
.y22d{bottom:312.735000px;}
.y1f3{bottom:313.231500px;}
.y13f{bottom:313.411500px;}
.y1ab{bottom:314.685000px;}
.y1bb{bottom:315.045000px;}
.y7e{bottom:316.335000px;}
.y61{bottom:316.515000px;}
.yeb{bottom:321.195000px;}
.yd5{bottom:322.095000px;}
.y29{bottom:326.415000px;}
.y11b{bottom:327.135000px;}
.y1c7{bottom:331.815000px;}
.y1f2{bottom:333.931500px;}
.y13e{bottom:334.111500px;}
.y16e{bottom:334.515000px;}
.y1aa{bottom:335.385000px;}
.y1ba{bottom:335.745000px;}
.y45{bottom:337.215000px;}
.y10{bottom:342.615000px;}
.ya7{bottom:343.335000px;}
.y22c{bottom:343.875000px;}
.y60{bottom:347.475000px;}
.yea{bottom:352.155000px;}
.yd4{bottom:353.235000px;}
.y1f1{bottom:354.631500px;}
.y13d{bottom:354.811500px;}
.y16d{bottom:355.035000px;}
.y1a9{bottom:356.085000px;}
.y1b9{bottom:356.445000px;}
.y7d{bottom:362.415000px;}
.y195{bottom:362.775000px;}
.yc2{bottom:368.175000px;}
.y44{bottom:368.355000px;}
.y28{bottom:372.315000px;}
.ya6{bottom:374.475000px;}
.y22b{bottom:374.835000px;}
.y1f0{bottom:375.331500px;}
.y16c{bottom:375.375000px;}
.y13c{bottom:375.511500px;}
.y11a{bottom:376.635000px;}
.y1a8{bottom:376.785000px;}
.y1b8{bottom:377.145000px;}
.y5f{bottom:378.615000px;}
.y91{bottom:380.415000px;}
.ye9{bottom:383.295000px;}
.yf{bottom:384.015000px;}
.yd3{bottom:384.195000px;}
.y194{bottom:384.915000px;}
.y7c{bottom:393.555000px;}
.y16b{bottom:395.895000px;}
.y1ef{bottom:396.031500px;}
.y13b{bottom:396.211500px;}
.y1a7{bottom:397.485000px;}
.y1b7{bottom:397.845000px;}
.yc1{bottom:399.315000px;}
.y43{bottom:399.675000px;}
.ya5{bottom:405.075000px;}
.y119{bottom:407.775000px;}
.y23e{bottom:408.495000px;}
.y5e{bottom:409.575000px;}
.ye8{bottom:414.255000px;}
.yd2{bottom:415.335000px;}
.y16a{bottom:416.415000px;}
.y1ee{bottom:416.731500px;}
.y13a{bottom:416.911500px;}
.ye{bottom:417.135000px;}
.y1a6{bottom:418.185000px;}
.y27{bottom:418.395000px;}
.y1b6{bottom:418.545000px;}
.y22a{bottom:420.915000px;}
.y7b{bottom:424.515000px;}
.y90{bottom:426.315000px;}
.yc0{bottom:430.275000px;}
.y42{bottom:430.995000px;}
.y1ed{bottom:437.461500px;}
.y139{bottom:437.611500px;}
.y118{bottom:438.735000px;}
.y1a5{bottom:438.915000px;}
.y1b5{bottom:439.275000px;}
.y23d{bottom:439.635000px;}
.y5d{bottom:440.715000px;}
.y105{bottom:445.215000px;}
.ye7{bottom:445.395000px;}
.ya4{bottom:451.515000px;}
.y229{bottom:451.875000px;}
.y7a{bottom:455.655000px;}
.y169{bottom:456.735000px;}
.y8f{bottom:457.455000px;}
.y1ec{bottom:458.161500px;}
.y138{bottom:458.341500px;}
.yff{bottom:460.335000px;}
.ybf{bottom:461.055000px;}
.yd1{bottom:461.415000px;}
.y2e{bottom:461.775000px;}
.y41{bottom:462.315000px;}
.y26{bottom:464.475000px;}
.y23c{bottom:470.595000px;}
.y5c{bottom:471.675000px;}
.y193{bottom:472.935000px;}
.ye6{bottom:476.355000px;}
.y165{bottom:477.075000px;}
.y1eb{bottom:478.861500px;}
.y137{bottom:479.041500px;}
.y14f{bottom:480.301500px;}
.ya3{bottom:482.655000px;}
.y228{bottom:483.015000px;}
.y117{bottom:484.815000px;}
.y79{bottom:486.615000px;}
.y1c6{bottom:491.115000px;}
.yfe{bottom:491.295000px;}
.yd0{bottom:492.375000px;}
.y192{bottom:493.275000px;}
.y40{bottom:493.635000px;}
.y1ea{bottom:499.561500px;}
.y136{bottom:499.741500px;}
.y23b{bottom:501.735000px;}
.y5b{bottom:502.815000px;}
.y8e{bottom:503.535000px;}
.ye5{bottom:507.135000px;}
.ybe{bottom:507.315000px;}
.y2d{bottom:509.835000px;}
.y25{bottom:510.555000px;}
.y1c3{bottom:513.255000px;}
.ya2{bottom:513.615000px;}
.y227{bottom:513.975000px;}
.y116{bottom:515.775000px;}
.y78{bottom:517.575000px;}
.y1e9{bottom:520.261500px;}
.y135{bottom:520.441500px;}
.yfd{bottom:522.435000px;}
.ycf{bottom:523.515000px;}
.y3f{bottom:524.955000px;}
.y23a{bottom:532.695000px;}
.y8d{bottom:534.495000px;}
.y191{bottom:536.295000px;}
.ybd{bottom:538.455000px;}
.y1e8{bottom:540.961500px;}
.ya1{bottom:544.575000px;}
.y226{bottom:545.115000px;}
.y115{bottom:546.915000px;}
.y5a{bottom:548.715000px;}
.yfc{bottom:553.395000px;}
.yce{bottom:554.475000px;}
.ye4{bottom:555.585000px;}
.y3e{bottom:556.305000px;}
.y24{bottom:556.665000px;}
.y1e7{bottom:561.661500px;}
.y77{bottom:563.685000px;}
.y239{bottom:563.865000px;}
.ybc{bottom:569.445000px;}
.y225{bottom:576.105000px;}
.y114{bottom:577.905000px;}
.y59{bottom:579.885000px;}
.y8c{bottom:580.605000px;}
.y1e6{bottom:582.361500px;}
.yfb{bottom:584.565000px;}
.ycd{bottom:585.645000px;}
.y3d{bottom:587.625000px;}
.y164{bottom:588.885000px;}
.ya0{bottom:590.685000px;}
.y76{bottom:594.825000px;}
.y190{bottom:599.145000px;}
.ybb{bottom:600.585000px;}
.y1c2{bottom:601.305000px;}
.y23{bottom:602.745000px;}
.y1e5{bottom:603.061500px;}
.ye3{bottom:604.725000px;}
.y113{bottom:609.045000px;}
.y163{bottom:609.405000px;}
.y58{bottom:610.845000px;}
.y8b{bottom:611.745000px;}
.yfa{bottom:615.525000px;}
.y3c{bottom:618.945000px;}
.y9f{bottom:621.825000px;}
.y224{bottom:622.185000px;}
.y1c1{bottom:623.445000px;}
.y1e4{bottom:623.761500px;}
.y75{bottom:625.785000px;}
.y238{bottom:625.965000px;}
.yba{bottom:631.545000px;}
.y22{bottom:633.705000px;}
.y112{bottom:640.005000px;}
.y57{bottom:641.985000px;}
.y1e3{bottom:644.461500px;}
.yf9{bottom:646.665000px;}
.y3b{bottom:650.265000px;}
.ye2{bottom:650.805000px;}
.y133{bottom:651.345000px;}
.y162{bottom:652.245000px;}
.y9e{bottom:652.785000px;}
.y223{bottom:653.325000px;}
.y74{bottom:656.925000px;}
.y8a{bottom:657.645000px;}
.yb9{bottom:662.685000px;}
.y21{bottom:664.845000px;}
.y111{bottom:665.025000px;}
.y1e2{bottom:665.161500px;}
.y1c0{bottom:666.285000px;}
.y132{bottom:671.865000px;}
.y161{bottom:672.765000px;}
.y56{bottom:672.945000px;}
.yf8{bottom:677.625000px;}
.y18f{bottom:679.065000px;}
.y3a{bottom:681.405000px;}
.y9d{bottom:683.925000px;}
.y222{bottom:684.285000px;}
.y1a4{bottom:686.805000px;}
.y73{bottom:687.885000px;}
.y237{bottom:688.065000px;}
.y89{bottom:688.785000px;}
.y131{bottom:692.205000px;}
.yb8{bottom:693.645000px;}
.y20{bottom:695.805000px;}
.ye1{bottom:696.885000px;}
.y18e{bottom:699.585000px;}
.y214{bottom:701.205000px;}
.y55{bottom:704.085000px;}
.yf7{bottom:708.765000px;}
.y39{bottom:712.725000px;}
.y110{bottom:714.345000px;}
.y9c{bottom:714.885000px;}
.y160{bottom:715.065000px;}
.y221{bottom:715.425000px;}
.y236{bottom:719.025000px;}
.y72{bottom:721.005000px;}
.y88{bottom:721.905000px;}
.yb7{bottom:724.785000px;}
.y1f{bottom:726.765000px;}
.y15f{bottom:731.625000px;}
.y12e{bottom:733.245000px;}
.yd{bottom:734.685000px;}
.y54{bottom:735.045000px;}
.yf6{bottom:739.725000px;}
.ye0{bottom:742.965000px;}
.y213{bottom:743.505000px;}
.y38{bottom:744.045000px;}
.y10f{bottom:745.485000px;}
.y9b{bottom:746.025000px;}
.y220{bottom:746.385000px;}
.y235{bottom:750.165000px;}
.yb6{bottom:755.745000px;}
.y1e{bottom:757.905000px;}
.y212{bottom:760.785000px;}
.y53{bottom:766.185000px;}
.yf5{bottom:770.865000px;}
.y87{bottom:771.045000px;}
.y71{bottom:773.205000px;}
.y37{bottom:775.365000px;}
.yc{bottom:776.085000px;}
.y234{bottom:781.125000px;}
.ycc{bottom:786.885000px;}
.y18d{bottom:787.425000px;}
.y1d{bottom:788.865000px;}
.y10e{bottom:791.565000px;}
.y9a{bottom:792.105000px;}
.y21f{bottom:792.465000px;}
.y15e{bottom:793.365000px;}
.y52{bottom:797.145000px;}
.yb5{bottom:801.825000px;}
.y86{bottom:802.005000px;}
.y211{bottom:803.625000px;}
.y70{bottom:804.165000px;}
.y36{bottom:806.685000px;}
.y18b{bottom:807.945000px;}
.y1e0{bottom:809.205000px;}
.y233{bottom:812.265000px;}
.y159{bottom:813.885000px;}
.yb{bottom:817.485000px;}
.ycb{bottom:817.845000px;}
.y1c{bottom:820.005000px;}
.y12d{bottom:821.085000px;}
.y10d{bottom:822.525000px;}
.y99{bottom:823.065000px;}
.y21e{bottom:823.425000px;}
.y20d{bottom:825.225000px;}
.y51{bottom:828.285000px;}
.y1df{bottom:831.525000px;}
.yf4{bottom:832.605000px;}
.yb4{bottom:832.965000px;}
.y85{bottom:833.145000px;}
.ydf{bottom:834.945000px;}
.y35{bottom:838.005000px;}
.y232{bottom:843.270000px;}
.y129{bottom:843.450000px;}
.yca{bottom:849.030000px;}
.y1dd{bottom:853.710000px;}
.y98{bottom:854.250000px;}
.y21d{bottom:854.610000px;}
.ya{bottom:858.930000px;}
.y6f{bottom:862.530000px;}
.yb3{bottom:863.970000px;}
.y1b{bottom:865.770000px;}
.y84{bottom:866.310000px;}
.y10c{bottom:868.650000px;}
.y34{bottom:869.370000px;}
.y18a{bottom:872.070000px;}
.y50{bottom:874.410000px;}
.y1dc{bottom:875.850000px;}
.yf3{bottom:878.910000px;}
.yc9{bottom:879.990000px;}
.yde{bottom:881.070000px;}
.y97{bottom:885.210000px;}
.y21c{bottom:885.570000px;}
.y189{bottom:892.590000px;}
.yb2{bottom:895.110000px;}
.y1db{bottom:898.170000px;}
.y9{bottom:899.430000px;}
.y10b{bottom:899.610000px;}
.y33{bottom:900.690000px;}
.y4f{bottom:905.370000px;}
.y20c{bottom:909.690000px;}
.yf2{bottom:910.050000px;}
.y1a{bottom:912.210000px;}
.y96{bottom:916.350000px;}
.y21b{bottom:916.710000px;}
.y83{bottom:924.630000px;}
.yb1{bottom:926.070000px;}
.ydd{bottom:927.150000px;}
.y10a{bottom:930.750000px;}
.y128{bottom:931.290000px;}
.y32{bottom:933.810000px;}
.y4e{bottom:936.510000px;}
.y158{bottom:937.950000px;}
.y8{bottom:938.310000px;}
.y6e{bottom:941.010000px;}
.y95{bottom:947.310000px;}
.y21a{bottom:947.670000px;}
.y125{bottom:951.810000px;}
.yb0{bottom:957.210000px;}
.y19{bottom:957.750000px;}
.ydc{bottom:958.110000px;}
.y155{bottom:958.290000px;}
.y109{bottom:961.710000px;}
.y4d{bottom:967.470000px;}
.y6d{bottom:972.150000px;}
.y188{bottom:976.830000px;}
.y94{bottom:978.270000px;}
.y219{bottom:978.810000px;}
.y7{bottom:979.710000px;}
.y1da{bottom:986.010000px;}
.yaf{bottom:988.170000px;}
.y108{bottom:992.850000px;}
.y123{bottom:994.650000px;}
.y20b{bottom:994.830000px;}
.y181{bottom:997.350000px;}
.y4c{bottom:998.610000px;}
.y6c{bottom:1003.110000px;}
.y18{bottom:1004.190000px;}
.y31{bottom:1004.910000px;}
.y1d7{bottom:1008.150000px;}
.y93{bottom:1009.050000px;}
.y218{bottom:1009.770000px;}
.y121{bottom:1015.170000px;}
.y209{bottom:1016.430000px;}
.yae{bottom:1019.310000px;}
.y107{bottom:1023.810000px;}
.y4b{bottom:1029.570000px;}
.y6b{bottom:1034.250000px;}
.ydb{bottom:1035.330000px;}
.y154{bottom:1040.910000px;}
.y30{bottom:1046.490000px;}
.y6{bottom:1049.910000px;}
.yad{bottom:1050.270000px;}
.y217{bottom:1055.850000px;}
.y92{bottom:1057.650000px;}
.y151{bottom:1061.430000px;}
.y106{bottom:1064.130000px;}
.y6a{bottom:1065.210000px;}
.y4a{bottom:1075.650000px;}
.y208{bottom:1080.150000px;}
.y5{bottom:1081.410000px;}
.y216{bottom:1086.990000px;}
.y17{bottom:1095.990000px;}
.y69{bottom:1096.350000px;}
.y206{bottom:1101.750000px;}
.y215{bottom:1115.250000px;}
.y49{bottom:1115.790000px;}
.y4{bottom:1119.030000px;}
.y150{bottom:1123.380000px;}
.y2f{bottom:1126.620000px;}
.y16{bottom:1126.980000px;}
.y68{bottom:1127.340000px;}
.y3{bottom:1157.940000px;}
.y2{bottom:1178.100000px;}
.y1{bottom:1224.540000px;}
.h16{height:18.885000px;}
.h32{height:18.892500px;}
.h1f{height:18.900000px;}
.h30{height:18.921000px;}
.h22{height:19.065000px;}
.h3c{height:19.072500px;}
.h1e{height:19.080000px;}
.h41{height:19.965000px;}
.h38{height:20.145000px;}
.h44{height:20.160000px;}
.h2e{height:20.685000px;}
.h35{height:20.700000px;}
.h1c{height:20.722500px;}
.h28{height:38.685000px;}
.h3b{height:39.592500px;}
.h40{height:40.530000px;}
.h19{height:41.385000px;}
.h26{height:41.400000px;}
.h3a{height:41.421000px;}
.h3{height:45.184219px;}
.h39{height:45.248906px;}
.h10{height:49.113281px;}
.h2{height:49.183594px;}
.h25{height:60.300000px;}
.h21{height:60.330000px;}
.h42{height:62.085000px;}
.h2d{height:62.100000px;}
.h2c{height:62.662500px;}
.hf{height:64.546875px;}
.h18{height:65.010937px;}
.h17{height:66.757500px;}
.h34{height:67.837500px;}
.h3f{height:69.660000px;}
.h14{height:70.628906px;}
.he{height:70.664062px;}
.hd{height:72.562500px;}
.h15{height:73.956797px;}
.h1b{height:74.004654px;}
.h23{height:81.165000px;}
.h2b{height:82.785000px;}
.h31{height:82.792500px;}
.h43{height:82.822500px;}
.h12{height:84.898125px;}
.h1a{height:86.385000px;}
.h1d{height:86.400000px;}
.h2f{height:86.565000px;}
.h36{height:86.610000px;}
.h4{height:98.367188px;}
.h11{height:105.562266px;}
.hc{height:105.996094px;}
.h6{height:108.843750px;}
.h27{height:110.370000px;}
.ha{height:118.008984px;}
.h5{height:121.179375px;}
.h24{height:122.422500px;}
.hb{height:123.662109px;}
.h13{height:125.171719px;}
.h9{height:129.093750px;}
.h8{height:132.789375px;}
.h3d{height:134.130000px;}
.h7{height:141.328125px;}
.h2a{height:144.930000px;}
.h37{height:157.845000px;}
.h29{height:207.022500px;}
.h33{height:455.475000px;}
.h20{height:536.647500px;}
.h3e{height:681.367500px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:214.575000px;}
.w3{width:214.579500px;}
.w4{width:214.770000px;}
.w2{width:646.830000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.909500px;}
.x28{left:9.169500px;}
.x23{left:15.829500px;}
.x24{left:22.309500px;}
.x20{left:30.583500px;}
.x18{left:34.903500px;}
.x29{left:38.683500px;}
.x1e{left:61.903500px;}
.x1{left:74.520000px;}
.x21{left:82.963500px;}
.x5{left:84.060000px;}
.x3{left:91.080000px;}
.x6{left:97.560000px;}
.x2c{left:102.763500px;}
.x12{left:119.746500px;}
.xd{left:127.656000px;}
.x9{left:131.256000px;}
.xe{left:144.216000px;}
.x10{left:154.650000px;}
.xf{left:160.590000px;}
.x13{left:168.103500px;}
.x7{left:176.610000px;}
.x11{left:181.650000px;}
.x1a{left:192.988500px;}
.xa{left:196.410000px;}
.x1c{left:203.068500px;}
.x2b{left:227.188500px;}
.x1b{left:239.788500px;}
.x4{left:242.670000px;}
.x2a{left:255.988500px;}
.x19{left:263.008500px;}
.x1f{left:267.148500px;}
.x26{left:269.848500px;}
.x1d{left:274.348500px;}
.x17{left:276.148500px;}
.x27{left:278.128500px;}
.x25{left:282.808500px;}
.x22{left:323.488500px;}
.x15{left:335.775000px;}
.xb{left:349.815000px;}
.x2{left:446.655000px;}
.x16{left:552.000000px;}
.x8{left:601.305000px;}
.xc{left:765.510000px;}
@media print{
.v4{vertical-align:-270.058667pt;}
.v3{vertical-align:-128.640000pt;}
.v2{vertical-align:-127.360000pt;}
.v1{vertical-align:-110.720000pt;}
.v5{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.233067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.896000pt;}
.ls9{letter-spacing:4.480000pt;}
.ls1{letter-spacing:39.040000pt;}
.lsf{letter-spacing:39.808000pt;}
.ls11{letter-spacing:44.431360pt;}
.ls7{letter-spacing:49.232640pt;}
.ls10{letter-spacing:79.978667pt;}
.ls8{letter-spacing:171.520000pt;}
.ls0{letter-spacing:486.826667pt;}
.ls5{letter-spacing:754.831787pt;}
.ls2{letter-spacing:861.120000pt;}
.ws2{word-spacing:-27.040000pt;}
.ws1{word-spacing:-16.896000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.486933pt;}
.ws4{word-spacing:-13.280000pt;}
.ws0{word-spacing:0.000000pt;}
._26{margin-left:-14.512640pt;}
._39{margin-left:-9.755733pt;}
._34{margin-left:-2.261333pt;}
._0{margin-left:-1.282560pt;}
._1{width:0.936960pt;}
._2{width:1.849387pt;}
._9{width:2.945920pt;}
._10{width:4.704640pt;}
._d{width:6.269440pt;}
._6{width:7.426560pt;}
._5{width:8.384000pt;}
._7{width:9.367040pt;}
._8{width:10.506667pt;}
._27{width:11.511893pt;}
._a{width:12.992000pt;}
._b{width:13.888000pt;}
._c{width:14.842880pt;}
._2c{width:17.561600pt;}
._2a{width:18.688000pt;}
._2b{width:19.968000pt;}
._11{width:21.568000pt;}
._30{width:22.574080pt;}
._36{width:24.017920pt;}
._f{width:24.960000pt;}
._2e{width:25.856000pt;}
._2f{width:27.072000pt;}
._35{width:28.039680pt;}
._5c{width:29.760000pt;}
._5b{width:30.978560pt;}
._2d{width:31.936000pt;}
._28{width:33.433600pt;}
._29{width:34.470400pt;}
._48{width:35.968000pt;}
._47{width:37.698560pt;}
._46{width:38.658560pt;}
._31{width:39.552000pt;}
._32{width:40.832000pt;}
._52{width:41.856000pt;}
._51{width:43.072000pt;}
._4f{width:44.034560pt;}
._44{width:45.248000pt;}
._54{width:46.336000pt;}
._42{width:47.232000pt;}
._43{width:48.128000pt;}
._59{width:50.432000pt;}
._3e{width:51.968000pt;}
._12{width:53.098667pt;}
._45{width:54.016000pt;}
._4d{width:55.296000pt;}
._3b{width:57.792000pt;}
._3c{width:59.479040pt;}
._4a{width:62.592000pt;}
._4{width:66.314667pt;}
._57{width:70.745600pt;}
._4c{width:72.128000pt;}
._4b{width:73.024000pt;}
._61{width:74.304000pt;}
._62{width:75.200000pt;}
._5d{width:77.120000pt;}
._3d{width:79.168000pt;}
._50{width:83.189760pt;}
._33{width:84.367787pt;}
._5e{width:86.464000pt;}
._5f{width:88.064000pt;}
._4e{width:95.296000pt;}
._49{width:101.657600pt;}
._53{width:104.384000pt;}
._3a{width:105.679787pt;}
._40{width:107.328000pt;}
._41{width:108.544000pt;}
._56{width:110.784000pt;}
._55{width:111.680000pt;}
._20{width:114.765440pt;}
._5a{width:116.992000pt;}
._37{width:148.367787pt;}
._3f{width:149.552213pt;}
._38{width:170.688000pt;}
._58{width:172.032000pt;}
._3{width:174.647893pt;}
._60{width:278.528000pt;}
._1f{width:510.277973pt;}
._1a{width:603.976533pt;}
._e{width:752.138667pt;}
._21{width:865.348267pt;}
._22{width:1058.862933pt;}
._24{width:1275.502933pt;}
._1c{width:1435.652267pt;}
._1d{width:1465.642667pt;}
._15{width:1490.133333pt;}
._18{width:1497.237333pt;}
._1e{width:1611.498667pt;}
._17{width:1618.478933pt;}
._1b{width:1742.954667pt;}
._13{width:1773.226667pt;}
._14{width:1776.746667pt;}
._19{width:1792.942933pt;}
._23{width:1797.525333pt;}
._25{width:1812.053333pt;}
._16{width:1904.469333pt;}
.fs8{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:96.000000pt;}
.fs3{font-size:106.880000pt;}
.fs6{font-size:112.000000pt;}
.fs5{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y198{bottom:3.186667pt;}
.y1a2{bottom:3.193333pt;}
.y122{bottom:3.200000pt;}
.y1d2{bottom:3.346667pt;}
.y14e{bottom:3.353333pt;}
.y130{bottom:3.360000pt;}
.y19a{bottom:3.506667pt;}
.y1a3{bottom:3.513333pt;}
.y124{bottom:3.520000pt;}
.y19c{bottom:3.668000pt;}
.y179{bottom:3.673333pt;}
.y127{bottom:3.680000pt;}
.y1cf{bottom:3.986667pt;}
.y1a0{bottom:3.988000pt;}
.y1de{bottom:4.000000pt;}
.y1cc{bottom:4.160000pt;}
.y12c{bottom:19.840000pt;}
.y168{bottom:20.000000pt;}
.y14d{bottom:20.633333pt;}
.y1d5{bottom:20.788000pt;}
.y153{bottom:20.800000pt;}
.y157{bottom:20.960000pt;}
.y205{bottom:21.268000pt;}
.y178{bottom:22.068000pt;}
.y187{bottom:22.080000pt;}
.y207{bottom:22.106667pt;}
.y19f{bottom:22.388000pt;}
.y126{bottom:22.400000pt;}
.y1ce{bottom:22.426667pt;}
.y210{bottom:22.440000pt;}
.y14c{bottom:39.028000pt;}
.y204{bottom:39.188000pt;}
.y152{bottom:39.200000pt;}
.y15d{bottom:39.240000pt;}
.y177{bottom:40.468000pt;}
.y186{bottom:40.480000pt;}
.y19e{bottom:40.788000pt;}
.y20a{bottom:40.800000pt;}
.y20f{bottom:40.840000pt;}
.y12b{bottom:40.960000pt;}
.y12f{bottom:41.120000pt;}
.y1c5{bottom:41.146667pt;}
.y18c{bottom:41.160000pt;}
.y15{bottom:51.232000pt;}
.y14b{bottom:57.428000pt;}
.y156{bottom:57.440000pt;}
.y203{bottom:57.588000pt;}
.y15c{bottom:57.640000pt;}
.y176{bottom:58.868000pt;}
.y185{bottom:58.880000pt;}
.y19d{bottom:59.188000pt;}
.y20e{bottom:59.240000pt;}
.y180{bottom:60.308000pt;}
.y12a{bottom:62.240000pt;}
.y167{bottom:62.400000pt;}
.y1c4{bottom:62.426667pt;}
.y14{bottom:69.152000pt;}
.y14a{bottom:75.828000pt;}
.y202{bottom:75.988000pt;}
.y15b{bottom:76.040000pt;}
.y175{bottom:77.268000pt;}
.y184{bottom:77.280000pt;}
.y17f{bottom:77.588000pt;}
.y1ca{bottom:83.360000pt;}
.y1d9{bottom:83.520000pt;}
.y166{bottom:83.546667pt;}
.y149{bottom:94.228000pt;}
.y201{bottom:94.388000pt;}
.y15a{bottom:94.440000pt;}
.y174{bottom:95.668000pt;}
.y183{bottom:95.680000pt;}
.y17e{bottom:95.988000pt;}
.y134{bottom:100.678667pt;}
.y67{bottom:102.272000pt;}
.y1c9{bottom:104.640000pt;}
.y1d8{bottom:104.666667pt;}
.yf1{bottom:106.592000pt;}
.y1d6{bottom:111.078667pt;}
.y16f{bottom:112.038667pt;}
.y1e1{bottom:112.358667pt;}
.y148{bottom:112.628000pt;}
.y200{bottom:112.788000pt;}
.yac{bottom:113.792000pt;}
.y173{bottom:114.068000pt;}
.y1b4{bottom:114.080000pt;}
.y182{bottom:114.106667pt;}
.y17d{bottom:114.388000pt;}
.y1a1{bottom:114.758667pt;}
.y104{bottom:119.872000pt;}
.yc8{bottom:120.672000pt;}
.y1c8{bottom:125.760000pt;}
.y1d4{bottom:129.318667pt;}
.y82{bottom:129.792000pt;}
.y66{bottom:129.952000pt;}
.y147{bottom:131.028000pt;}
.y1ff{bottom:131.228000pt;}
.y1b3{bottom:132.480000pt;}
.y172{bottom:132.508000pt;}
.y17c{bottom:132.828000pt;}
.y19b{bottom:132.998667pt;}
.yf0{bottom:134.106667pt;}
.y1fa{bottom:135.068000pt;}
.yda{bottom:135.866667pt;}
.yab{bottom:141.466667pt;}
.y103{bottom:147.386667pt;}
.yc7{bottom:148.346667pt;}
.y13{bottom:149.626667pt;}
.y1fe{bottom:149.628000pt;}
.y146{bottom:149.788000pt;}
.y171{bottom:150.908000pt;}
.y1b2{bottom:150.920000pt;}
.y17b{bottom:151.228000pt;}
.y1f9{bottom:152.188000pt;}
.y231{bottom:154.266667pt;}
.y65{bottom:157.466667pt;}
.y120{bottom:158.266667pt;}
.yef{bottom:161.786667pt;}
.y1d3{bottom:165.960000pt;}
.y2c{bottom:166.906667pt;}
.y1fd{bottom:168.028000pt;}
.y145{bottom:168.188000pt;}
.y170{bottom:169.308000pt;}
.y1b1{bottom:169.320000pt;}
.y17a{bottom:169.628000pt;}
.y1f8{bottom:169.788000pt;}
.y102{bottom:175.066667pt;}
.yc6{bottom:175.866667pt;}
.yd9{bottom:176.826667pt;}
.y12{bottom:177.626667pt;}
.y230{bottom:181.786667pt;}
.yaa{bottom:182.426667pt;}
.y1d1{bottom:184.040000pt;}
.y64{bottom:185.146667pt;}
.y11f{bottom:185.786667pt;}
.y1fc{bottom:186.428000pt;}
.y144{bottom:186.588000pt;}
.y1f7{bottom:187.388000pt;}
.y1b0{bottom:187.720000pt;}
.yee{bottom:189.306667pt;}
.y81{bottom:198.426667pt;}
.y48{bottom:200.506667pt;}
.y101{bottom:202.586667pt;}
.yc5{bottom:203.546667pt;}
.y1fb{bottom:204.828000pt;}
.y143{bottom:204.988000pt;}
.y1af{bottom:206.120000pt;}
.y199{bottom:207.880000pt;}
.y2b{bottom:208.186667pt;}
.y22f{bottom:209.466667pt;}
.y63{bottom:212.666667pt;}
.y11e{bottom:213.466667pt;}
.yed{bottom:216.986667pt;}
.yd8{bottom:217.786667pt;}
.y1d0{bottom:222.266667pt;}
.y1f6{bottom:223.228000pt;}
.ya9{bottom:223.386667pt;}
.y142{bottom:223.388000pt;}
.y1ae{bottom:224.520000pt;}
.y80{bottom:225.946667pt;}
.y197{bottom:226.120000pt;}
.y100{bottom:230.266667pt;}
.yd7{bottom:231.066667pt;}
.y22e{bottom:236.986667pt;}
.y1cd{bottom:237.480000pt;}
.y62{bottom:240.346667pt;}
.y11d{bottom:240.986667pt;}
.y1f5{bottom:241.628000pt;}
.y141{bottom:241.788000pt;}
.y11{bottom:241.946667pt;}
.y1ad{bottom:242.920000pt;}
.y47{bottom:243.266667pt;}
.y196{bottom:244.226667pt;}
.y1bf{bottom:244.360000pt;}
.yc4{bottom:244.546667pt;}
.y1bd{bottom:245.160000pt;}
.y2a{bottom:249.186667pt;}
.y7f{bottom:253.666667pt;}
.yec{bottom:257.826667pt;}
.yd6{bottom:258.786667pt;}
.y1f4{bottom:260.028000pt;}
.y140{bottom:260.188000pt;}
.y1ac{bottom:261.320000pt;}
.y1be{bottom:261.640000pt;}
.y1bc{bottom:262.120000pt;}
.ya8{bottom:264.226667pt;}
.y11c{bottom:268.706667pt;}
.y46{bottom:271.906667pt;}
.yc3{bottom:272.066667pt;}
.y1cb{bottom:275.746667pt;}
.y22d{bottom:277.986667pt;}
.y1f3{bottom:278.428000pt;}
.y13f{bottom:278.588000pt;}
.y1ab{bottom:279.720000pt;}
.y1bb{bottom:280.040000pt;}
.y7e{bottom:281.186667pt;}
.y61{bottom:281.346667pt;}
.yeb{bottom:285.506667pt;}
.yd5{bottom:286.306667pt;}
.y29{bottom:290.146667pt;}
.y11b{bottom:290.786667pt;}
.y1c7{bottom:294.946667pt;}
.y1f2{bottom:296.828000pt;}
.y13e{bottom:296.988000pt;}
.y16e{bottom:297.346667pt;}
.y1aa{bottom:298.120000pt;}
.y1ba{bottom:298.440000pt;}
.y45{bottom:299.746667pt;}
.y10{bottom:304.546667pt;}
.ya7{bottom:305.186667pt;}
.y22c{bottom:305.666667pt;}
.y60{bottom:308.866667pt;}
.yea{bottom:313.026667pt;}
.yd4{bottom:313.986667pt;}
.y1f1{bottom:315.228000pt;}
.y13d{bottom:315.388000pt;}
.y16d{bottom:315.586667pt;}
.y1a9{bottom:316.520000pt;}
.y1b9{bottom:316.840000pt;}
.y7d{bottom:322.146667pt;}
.y195{bottom:322.466667pt;}
.yc2{bottom:327.266667pt;}
.y44{bottom:327.426667pt;}
.y28{bottom:330.946667pt;}
.ya6{bottom:332.866667pt;}
.y22b{bottom:333.186667pt;}
.y1f0{bottom:333.628000pt;}
.y16c{bottom:333.666667pt;}
.y13c{bottom:333.788000pt;}
.y11a{bottom:334.786667pt;}
.y1a8{bottom:334.920000pt;}
.y1b8{bottom:335.240000pt;}
.y5f{bottom:336.546667pt;}
.y91{bottom:338.146667pt;}
.ye9{bottom:340.706667pt;}
.yf{bottom:341.346667pt;}
.yd3{bottom:341.506667pt;}
.y194{bottom:342.146667pt;}
.y7c{bottom:349.826667pt;}
.y16b{bottom:351.906667pt;}
.y1ef{bottom:352.028000pt;}
.y13b{bottom:352.188000pt;}
.y1a7{bottom:353.320000pt;}
.y1b7{bottom:353.640000pt;}
.yc1{bottom:354.946667pt;}
.y43{bottom:355.266667pt;}
.ya5{bottom:360.066667pt;}
.y119{bottom:362.466667pt;}
.y23e{bottom:363.106667pt;}
.y5e{bottom:364.066667pt;}
.ye8{bottom:368.226667pt;}
.yd2{bottom:369.186667pt;}
.y16a{bottom:370.146667pt;}
.y1ee{bottom:370.428000pt;}
.y13a{bottom:370.588000pt;}
.ye{bottom:370.786667pt;}
.y1a6{bottom:371.720000pt;}
.y27{bottom:371.906667pt;}
.y1b6{bottom:372.040000pt;}
.y22a{bottom:374.146667pt;}
.y7b{bottom:377.346667pt;}
.y90{bottom:378.946667pt;}
.yc0{bottom:382.466667pt;}
.y42{bottom:383.106667pt;}
.y1ed{bottom:388.854667pt;}
.y139{bottom:388.988000pt;}
.y118{bottom:389.986667pt;}
.y1a5{bottom:390.146667pt;}
.y1b5{bottom:390.466667pt;}
.y23d{bottom:390.786667pt;}
.y5d{bottom:391.746667pt;}
.y105{bottom:395.746667pt;}
.ye7{bottom:395.906667pt;}
.ya4{bottom:401.346667pt;}
.y229{bottom:401.666667pt;}
.y7a{bottom:405.026667pt;}
.y169{bottom:405.986667pt;}
.y8f{bottom:406.626667pt;}
.y1ec{bottom:407.254667pt;}
.y138{bottom:407.414667pt;}
.yff{bottom:409.186667pt;}
.ybf{bottom:409.826667pt;}
.yd1{bottom:410.146667pt;}
.y2e{bottom:410.466667pt;}
.y41{bottom:410.946667pt;}
.y26{bottom:412.866667pt;}
.y23c{bottom:418.306667pt;}
.y5c{bottom:419.266667pt;}
.y193{bottom:420.386667pt;}
.ye6{bottom:423.426667pt;}
.y165{bottom:424.066667pt;}
.y1eb{bottom:425.654667pt;}
.y137{bottom:425.814667pt;}
.y14f{bottom:426.934667pt;}
.ya3{bottom:429.026667pt;}
.y228{bottom:429.346667pt;}
.y117{bottom:430.946667pt;}
.y79{bottom:432.546667pt;}
.y1c6{bottom:436.546667pt;}
.yfe{bottom:436.706667pt;}
.yd0{bottom:437.666667pt;}
.y192{bottom:438.466667pt;}
.y40{bottom:438.786667pt;}
.y1ea{bottom:444.054667pt;}
.y136{bottom:444.214667pt;}
.y23b{bottom:445.986667pt;}
.y5b{bottom:446.946667pt;}
.y8e{bottom:447.586667pt;}
.ye5{bottom:450.786667pt;}
.ybe{bottom:450.946667pt;}
.y2d{bottom:453.186667pt;}
.y25{bottom:453.826667pt;}
.y1c3{bottom:456.226667pt;}
.ya2{bottom:456.546667pt;}
.y227{bottom:456.866667pt;}
.y116{bottom:458.466667pt;}
.y78{bottom:460.066667pt;}
.y1e9{bottom:462.454667pt;}
.y135{bottom:462.614667pt;}
.yfd{bottom:464.386667pt;}
.ycf{bottom:465.346667pt;}
.y3f{bottom:466.626667pt;}
.y23a{bottom:473.506667pt;}
.y8d{bottom:475.106667pt;}
.y191{bottom:476.706667pt;}
.ybd{bottom:478.626667pt;}
.y1e8{bottom:480.854667pt;}
.ya1{bottom:484.066667pt;}
.y226{bottom:484.546667pt;}
.y115{bottom:486.146667pt;}
.y5a{bottom:487.746667pt;}
.yfc{bottom:491.906667pt;}
.yce{bottom:492.866667pt;}
.ye4{bottom:493.853333pt;}
.y3e{bottom:494.493333pt;}
.y24{bottom:494.813333pt;}
.y1e7{bottom:499.254667pt;}
.y77{bottom:501.053333pt;}
.y239{bottom:501.213333pt;}
.ybc{bottom:506.173333pt;}
.y225{bottom:512.093333pt;}
.y114{bottom:513.693333pt;}
.y59{bottom:515.453333pt;}
.y8c{bottom:516.093333pt;}
.y1e6{bottom:517.654667pt;}
.yfb{bottom:519.613333pt;}
.ycd{bottom:520.573333pt;}
.y3d{bottom:522.333333pt;}
.y164{bottom:523.453333pt;}
.ya0{bottom:525.053333pt;}
.y76{bottom:528.733333pt;}
.y190{bottom:532.573333pt;}
.ybb{bottom:533.853333pt;}
.y1c2{bottom:534.493333pt;}
.y23{bottom:535.773333pt;}
.y1e5{bottom:536.054667pt;}
.ye3{bottom:537.533333pt;}
.y113{bottom:541.373333pt;}
.y163{bottom:541.693333pt;}
.y58{bottom:542.973333pt;}
.y8b{bottom:543.773333pt;}
.yfa{bottom:547.133333pt;}
.y3c{bottom:550.173333pt;}
.y9f{bottom:552.733333pt;}
.y224{bottom:553.053333pt;}
.y1c1{bottom:554.173333pt;}
.y1e4{bottom:554.454667pt;}
.y75{bottom:556.253333pt;}
.y238{bottom:556.413333pt;}
.yba{bottom:561.373333pt;}
.y22{bottom:563.293333pt;}
.y112{bottom:568.893333pt;}
.y57{bottom:570.653333pt;}
.y1e3{bottom:572.854667pt;}
.yf9{bottom:574.813333pt;}
.y3b{bottom:578.013333pt;}
.ye2{bottom:578.493333pt;}
.y133{bottom:578.973333pt;}
.y162{bottom:579.773333pt;}
.y9e{bottom:580.253333pt;}
.y223{bottom:580.733333pt;}
.y74{bottom:583.933333pt;}
.y8a{bottom:584.573333pt;}
.yb9{bottom:589.053333pt;}
.y21{bottom:590.973333pt;}
.y111{bottom:591.133333pt;}
.y1e2{bottom:591.254667pt;}
.y1c0{bottom:592.253333pt;}
.y132{bottom:597.213333pt;}
.y161{bottom:598.013333pt;}
.y56{bottom:598.173333pt;}
.yf8{bottom:602.333333pt;}
.y18f{bottom:603.613333pt;}
.y3a{bottom:605.693333pt;}
.y9d{bottom:607.933333pt;}
.y222{bottom:608.253333pt;}
.y1a4{bottom:610.493333pt;}
.y73{bottom:611.453333pt;}
.y237{bottom:611.613333pt;}
.y89{bottom:612.253333pt;}
.y131{bottom:615.293333pt;}
.yb8{bottom:616.573333pt;}
.y20{bottom:618.493333pt;}
.ye1{bottom:619.453333pt;}
.y18e{bottom:621.853333pt;}
.y214{bottom:623.293333pt;}
.y55{bottom:625.853333pt;}
.yf7{bottom:630.013333pt;}
.y39{bottom:633.533333pt;}
.y110{bottom:634.973333pt;}
.y9c{bottom:635.453333pt;}
.y160{bottom:635.613333pt;}
.y221{bottom:635.933333pt;}
.y236{bottom:639.133333pt;}
.y72{bottom:640.893333pt;}
.y88{bottom:641.693333pt;}
.yb7{bottom:644.253333pt;}
.y1f{bottom:646.013333pt;}
.y15f{bottom:650.333333pt;}
.y12e{bottom:651.773333pt;}
.yd{bottom:653.053333pt;}
.y54{bottom:653.373333pt;}
.yf6{bottom:657.533333pt;}
.ye0{bottom:660.413333pt;}
.y213{bottom:660.893333pt;}
.y38{bottom:661.373333pt;}
.y10f{bottom:662.653333pt;}
.y9b{bottom:663.133333pt;}
.y220{bottom:663.453333pt;}
.y235{bottom:666.813333pt;}
.yb6{bottom:671.773333pt;}
.y1e{bottom:673.693333pt;}
.y212{bottom:676.253333pt;}
.y53{bottom:681.053333pt;}
.yf5{bottom:685.213333pt;}
.y87{bottom:685.373333pt;}
.y71{bottom:687.293333pt;}
.y37{bottom:689.213333pt;}
.yc{bottom:689.853333pt;}
.y234{bottom:694.333333pt;}
.ycc{bottom:699.453333pt;}
.y18d{bottom:699.933333pt;}
.y1d{bottom:701.213333pt;}
.y10e{bottom:703.613333pt;}
.y9a{bottom:704.093333pt;}
.y21f{bottom:704.413333pt;}
.y15e{bottom:705.213333pt;}
.y52{bottom:708.573333pt;}
.yb5{bottom:712.733333pt;}
.y86{bottom:712.893333pt;}
.y211{bottom:714.333333pt;}
.y70{bottom:714.813333pt;}
.y36{bottom:717.053333pt;}
.y18b{bottom:718.173333pt;}
.y1e0{bottom:719.293333pt;}
.y233{bottom:722.013333pt;}
.y159{bottom:723.453333pt;}
.yb{bottom:726.653333pt;}
.ycb{bottom:726.973333pt;}
.y1c{bottom:728.893333pt;}
.y12d{bottom:729.853333pt;}
.y10d{bottom:731.133333pt;}
.y99{bottom:731.613333pt;}
.y21e{bottom:731.933333pt;}
.y20d{bottom:733.533333pt;}
.y51{bottom:736.253333pt;}
.y1df{bottom:739.133333pt;}
.yf4{bottom:740.093333pt;}
.yb4{bottom:740.413333pt;}
.y85{bottom:740.573333pt;}
.ydf{bottom:742.173333pt;}
.y35{bottom:744.893333pt;}
.y232{bottom:749.573333pt;}
.y129{bottom:749.733333pt;}
.yca{bottom:754.693333pt;}
.y1dd{bottom:758.853333pt;}
.y98{bottom:759.333333pt;}
.y21d{bottom:759.653333pt;}
.ya{bottom:763.493333pt;}
.y6f{bottom:766.693333pt;}
.yb3{bottom:767.973333pt;}
.y1b{bottom:769.573333pt;}
.y84{bottom:770.053333pt;}
.y10c{bottom:772.133333pt;}
.y34{bottom:772.773333pt;}
.y18a{bottom:775.173333pt;}
.y50{bottom:777.253333pt;}
.y1dc{bottom:778.533333pt;}
.yf3{bottom:781.253333pt;}
.yc9{bottom:782.213333pt;}
.yde{bottom:783.173333pt;}
.y97{bottom:786.853333pt;}
.y21c{bottom:787.173333pt;}
.y189{bottom:793.413333pt;}
.yb2{bottom:795.653333pt;}
.y1db{bottom:798.373333pt;}
.y9{bottom:799.493333pt;}
.y10b{bottom:799.653333pt;}
.y33{bottom:800.613333pt;}
.y4f{bottom:804.773333pt;}
.y20c{bottom:808.613333pt;}
.yf2{bottom:808.933333pt;}
.y1a{bottom:810.853333pt;}
.y96{bottom:814.533333pt;}
.y21b{bottom:814.853333pt;}
.y83{bottom:821.893333pt;}
.yb1{bottom:823.173333pt;}
.ydd{bottom:824.133333pt;}
.y10a{bottom:827.333333pt;}
.y128{bottom:827.813333pt;}
.y32{bottom:830.053333pt;}
.y4e{bottom:832.453333pt;}
.y158{bottom:833.733333pt;}
.y8{bottom:834.053333pt;}
.y6e{bottom:836.453333pt;}
.y95{bottom:842.053333pt;}
.y21a{bottom:842.373333pt;}
.y125{bottom:846.053333pt;}
.yb0{bottom:850.853333pt;}
.y19{bottom:851.333333pt;}
.ydc{bottom:851.653333pt;}
.y155{bottom:851.813333pt;}
.y109{bottom:854.853333pt;}
.y4d{bottom:859.973333pt;}
.y6d{bottom:864.133333pt;}
.y188{bottom:868.293333pt;}
.y94{bottom:869.573333pt;}
.y219{bottom:870.053333pt;}
.y7{bottom:870.853333pt;}
.y1da{bottom:876.453333pt;}
.yaf{bottom:878.373333pt;}
.y108{bottom:882.533333pt;}
.y123{bottom:884.133333pt;}
.y20b{bottom:884.293333pt;}
.y181{bottom:886.533333pt;}
.y4c{bottom:887.653333pt;}
.y6c{bottom:891.653333pt;}
.y18{bottom:892.613333pt;}
.y31{bottom:893.253333pt;}
.y1d7{bottom:896.133333pt;}
.y93{bottom:896.933333pt;}
.y218{bottom:897.573333pt;}
.y121{bottom:902.373333pt;}
.y209{bottom:903.493333pt;}
.yae{bottom:906.053333pt;}
.y107{bottom:910.053333pt;}
.y4b{bottom:915.173333pt;}
.y6b{bottom:919.333333pt;}
.ydb{bottom:920.293333pt;}
.y154{bottom:925.253333pt;}
.y30{bottom:930.213333pt;}
.y6{bottom:933.253333pt;}
.yad{bottom:933.573333pt;}
.y217{bottom:938.533333pt;}
.y92{bottom:940.133333pt;}
.y151{bottom:943.493333pt;}
.y106{bottom:945.893333pt;}
.y6a{bottom:946.853333pt;}
.y4a{bottom:956.133333pt;}
.y208{bottom:960.133333pt;}
.y5{bottom:961.253333pt;}
.y216{bottom:966.213333pt;}
.y17{bottom:974.213333pt;}
.y69{bottom:974.533333pt;}
.y206{bottom:979.333333pt;}
.y215{bottom:991.333333pt;}
.y49{bottom:991.813333pt;}
.y4{bottom:994.693333pt;}
.y150{bottom:998.560000pt;}
.y2f{bottom:1001.440000pt;}
.y16{bottom:1001.760000pt;}
.y68{bottom:1002.080000pt;}
.y3{bottom:1029.280000pt;}
.y2{bottom:1047.200000pt;}
.y1{bottom:1088.480000pt;}
.h16{height:16.786667pt;}
.h32{height:16.793333pt;}
.h1f{height:16.800000pt;}
.h30{height:16.818667pt;}
.h22{height:16.946667pt;}
.h3c{height:16.953333pt;}
.h1e{height:16.960000pt;}
.h41{height:17.746667pt;}
.h38{height:17.906667pt;}
.h44{height:17.920000pt;}
.h2e{height:18.386667pt;}
.h35{height:18.400000pt;}
.h1c{height:18.420000pt;}
.h28{height:34.386667pt;}
.h3b{height:35.193333pt;}
.h40{height:36.026667pt;}
.h19{height:36.786667pt;}
.h26{height:36.800000pt;}
.h3a{height:36.818667pt;}
.h3{height:40.163750pt;}
.h39{height:40.221250pt;}
.h10{height:43.656250pt;}
.h2{height:43.718750pt;}
.h25{height:53.600000pt;}
.h21{height:53.626667pt;}
.h42{height:55.186667pt;}
.h2d{height:55.200000pt;}
.h2c{height:55.700000pt;}
.hf{height:57.375000pt;}
.h18{height:57.787500pt;}
.h17{height:59.340000pt;}
.h34{height:60.300000pt;}
.h3f{height:61.920000pt;}
.h14{height:62.781250pt;}
.he{height:62.812500pt;}
.hd{height:64.500000pt;}
.h15{height:65.739375pt;}
.h1b{height:65.781915pt;}
.h23{height:72.146667pt;}
.h2b{height:73.586667pt;}
.h31{height:73.593333pt;}
.h43{height:73.620000pt;}
.h12{height:75.465000pt;}
.h1a{height:76.786667pt;}
.h1d{height:76.800000pt;}
.h2f{height:76.946667pt;}
.h36{height:76.986667pt;}
.h4{height:87.437500pt;}
.h11{height:93.833125pt;}
.hc{height:94.218750pt;}
.h6{height:96.750000pt;}
.h27{height:98.106667pt;}
.ha{height:104.896875pt;}
.h5{height:107.715000pt;}
.h24{height:108.820000pt;}
.hb{height:109.921875pt;}
.h13{height:111.263750pt;}
.h9{height:114.750000pt;}
.h8{height:118.035000pt;}
.h3d{height:119.226667pt;}
.h7{height:125.625000pt;}
.h2a{height:128.826667pt;}
.h37{height:140.306667pt;}
.h29{height:184.020000pt;}
.h33{height:404.866667pt;}
.h20{height:477.020000pt;}
.h3e{height:605.660000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:190.733333pt;}
.w3{width:190.737333pt;}
.w4{width:190.906667pt;}
.w2{width:574.960000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:7.030667pt;}
.x28{left:8.150667pt;}
.x23{left:14.070667pt;}
.x24{left:19.830667pt;}
.x20{left:27.185333pt;}
.x18{left:31.025333pt;}
.x29{left:34.385333pt;}
.x1e{left:55.025333pt;}
.x1{left:66.240000pt;}
.x21{left:73.745333pt;}
.x5{left:74.720000pt;}
.x3{left:80.960000pt;}
.x6{left:86.720000pt;}
.x2c{left:91.345333pt;}
.x12{left:106.441333pt;}
.xd{left:113.472000pt;}
.x9{left:116.672000pt;}
.xe{left:128.192000pt;}
.x10{left:137.466667pt;}
.xf{left:142.746667pt;}
.x13{left:149.425333pt;}
.x7{left:156.986667pt;}
.x11{left:161.466667pt;}
.x1a{left:171.545333pt;}
.xa{left:174.586667pt;}
.x1c{left:180.505333pt;}
.x2b{left:201.945333pt;}
.x1b{left:213.145333pt;}
.x4{left:215.706667pt;}
.x2a{left:227.545333pt;}
.x19{left:233.785333pt;}
.x1f{left:237.465333pt;}
.x26{left:239.865333pt;}
.x1d{left:243.865333pt;}
.x17{left:245.465333pt;}
.x27{left:247.225333pt;}
.x25{left:251.385333pt;}
.x22{left:287.545333pt;}
.x15{left:298.466667pt;}
.xb{left:310.946667pt;}
.x2{left:397.026667pt;}
.x16{left:490.666667pt;}
.x8{left:534.493333pt;}
.xc{left:680.453333pt;}
}




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