
    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_3c4534a03b2bf5348e574f2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172363;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_5dc19314675b53020450b7fb.woff2')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_032c9f1e661646579654e034.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_f57d78e61345eeb9b0ef697c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_859147e48b1188b3fcfb8849.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a7738379f11a6069094d7429.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6e632b114d139baf37d28a95.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_a4554766366a6b20bce65cf5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_1eb55170118cd9aaf92d3dee.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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_a985d044fe522f405ec04cb3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.vf{vertical-align:-33.600000px;}
.v10{vertical-align:-32.520000px;}
.v2{vertical-align:-27.360000px;}
.v4{vertical-align:-14.400000px;}
.v8{vertical-align:-11.520000px;}
.v3{vertical-align:-5.760000px;}
.v7{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.160000px;}
.v5{vertical-align:14.400000px;}
.v9{vertical-align:22.320000px;}
.ve{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.va{vertical-align:33.840000px;}
.vc{vertical-align:38.880000px;}
.vd{vertical-align:56.880000px;}
.v6{vertical-align:59.040000px;}
.ls7{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.618000px;}
.ls1c{letter-spacing:-0.451200px;}
.ls6{letter-spacing:-0.360000px;}
.ls23{letter-spacing:-0.305400px;}
.ls27{letter-spacing:-0.288000px;}
.ls28{letter-spacing:-0.269400px;}
.ls1e{letter-spacing:-0.262200px;}
.ls2a{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.144000px;}
.ls22{letter-spacing:-0.109200px;}
.ls18{letter-spacing:-0.092400px;}
.ls30{letter-spacing:-0.018000px;}
.ls1b{letter-spacing:-0.011520px;}
.ls2{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.086400px;}
.ls1a{letter-spacing:0.104400px;}
.ls33{letter-spacing:0.120000px;}
.ls2f{letter-spacing:0.126000px;}
.ls9{letter-spacing:0.144000px;}
.ls26{letter-spacing:0.149760px;}
.ls10{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.181440px;}
.ls25{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.256200px;}
.ls1d{letter-spacing:0.262200px;}
.ls14{letter-spacing:0.266400px;}
.lsf{letter-spacing:0.269280px;}
.ls2e{letter-spacing:0.269400px;}
.ls8{letter-spacing:0.288000px;}
.ls2b{letter-spacing:0.289440px;}
.ls1{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.432000px;}
.ls2c{letter-spacing:0.504000px;}
.ls21{letter-spacing:0.576000px;}
.ls24{letter-spacing:0.720000px;}
.lsd{letter-spacing:2.340000px;}
.lse{letter-spacing:2.512800px;}
.ls31{letter-spacing:3.600000px;}
.ls5{letter-spacing:5.040000px;}
.lsc{letter-spacing:8.395920px;}
.ls13{letter-spacing:14.086080px;}
.ls17{letter-spacing:14.806080px;}
.ls12{letter-spacing:17.270400px;}
.ls15{letter-spacing:17.870400px;}
.ls16{letter-spacing:18.198720px;}
.lsb{letter-spacing:19.656000px;}
.lsa{letter-spacing:24.576480px;}
.ls4{letter-spacing:33.960000px;}
.ls2d{letter-spacing:334.062000px;}
.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;}
}
.ws1c{word-spacing:-18.720000px;}
.ws19{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.288000px;}
.ws1d{word-spacing:-18.216000px;}
.ws7{word-spacing:-18.144000px;}
.ws18{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws21{word-spacing:-17.856000px;}
.ws28{word-spacing:-17.784000px;}
.ws1e{word-spacing:-17.712000px;}
.ws13{word-spacing:-16.822200px;}
.ws15{word-spacing:-16.560000px;}
.ws1a{word-spacing:-16.450800px;}
.ws16{word-spacing:-16.297800px;}
.ws1b{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.840000px;}
.ws17{word-spacing:-15.226440px;}
.ws20{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.572800px;}
.wsd{word-spacing:-14.561280px;}
.ws5{word-spacing:-12.420000px;}
.ws29{word-spacing:-12.349440px;}
.ws2c{word-spacing:-12.329400px;}
.ws1{word-spacing:-12.241200px;}
.ws0{word-spacing:-12.060000px;}
.ws1f{word-spacing:-11.790600px;}
.ws4{word-spacing:-11.700000px;}
.ws9{word-spacing:-11.246400px;}
.wsf{word-spacing:-10.717200px;}
.ws12{word-spacing:-10.612800px;}
.wsb{word-spacing:-10.520400px;}
.ws14{word-spacing:-10.440000px;}
.ws11{word-spacing:-10.161600px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:3.535200px;}
.wsc{word-spacing:20.503440px;}
.wse{word-spacing:79.543440px;}
.ws2f{word-spacing:101.778720px;}
.ws26{word-spacing:118.020720px;}
.ws23{word-spacing:129.779760px;}
.ws25{word-spacing:146.820000px;}
.ws22{word-spacing:158.520000px;}
.ws2b{word-spacing:200.159760px;}
.ws2a{word-spacing:213.960000px;}
.ws2e{word-spacing:251.820000px;}
.ws2d{word-spacing:307.782000px;}
.ws27{word-spacing:397.968000px;}
.ws24{word-spacing:450.504000px;}
._a{margin-left:-4.499040px;}
._8{margin-left:-3.456000px;}
._0{margin-left:-1.684800px;}
._1{width:1.180800px;}
._e{width:2.186400px;}
._6{width:3.309600px;}
._5{width:4.852800px;}
._2{width:6.120000px;}
._3{width:7.344000px;}
._7{width:8.472000px;}
._d{width:9.600000px;}
._10{width:11.352000px;}
._b{width:13.248000px;}
._c{width:14.256000px;}
._f{width:15.427200px;}
._18{width:16.488000px;}
._19{width:19.228800px;}
._4{width:20.292000px;}
._2c{width:21.583200px;}
._2f{width:22.696800px;}
._22{width:24.048000px;}
._23{width:25.200000px;}
._11{width:26.208000px;}
._12{width:27.216000px;}
._2a{width:29.304000px;}
._9{width:31.944000px;}
._16{width:33.480000px;}
._17{width:34.500000px;}
._2d{width:37.944000px;}
._2e{width:39.655200px;}
._13{width:44.496000px;}
._14{width:45.504000px;}
._15{width:46.884000px;}
._1f{width:58.187520px;}
._1a{width:63.877440px;}
._1d{width:68.719440px;}
._2b{width:74.832000px;}
._20{width:90.961440px;}
._31{width:102.216000px;}
._1e{width:107.546400px;}
._24{width:119.952240px;}
._25{width:135.673200px;}
._29{width:136.771440px;}
._30{width:138.216000px;}
._27{width:147.360000px;}
._26{width:158.820000px;}
._1b{width:198.000000px;}
._1c{width:199.012800px;}
._21{width:200.414400px;}
._28{width:244.260000px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(5,99,193);}
.fc5{color:rgb(89,89,89);}
.fc3{color:rgb(46,46,46);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y19f{bottom:11.730000px;}
.y16c{bottom:15.765000px;}
.y187{bottom:16.350000px;}
.y152{bottom:20.850000px;}
.y147{bottom:20.880000px;}
.ya0{bottom:22.500000px;}
.yf6{bottom:22.545000px;}
.yc4{bottom:24.660000px;}
.yf3{bottom:24.690000px;}
.ye9{bottom:24.705000px;}
.yeb{bottom:25.920000px;}
.yf2{bottom:25.950000px;}
.yed{bottom:26.100000px;}
.y10a{bottom:27.540000px;}
.y10c{bottom:27.720000px;}
.y109{bottom:30.600000px;}
.ya1{bottom:30.780000px;}
.yf8{bottom:37.980000px;}
.y19d{bottom:46.365000px;}
.y150{bottom:47.775000px;}
.y145{bottom:48.750000px;}
.y185{bottom:50.190000px;}
.y16a{bottom:50.790000px;}
.y2{bottom:58.320000px;}
.yfa{bottom:60.480000px;}
.y197{bottom:63.615000px;}
.y9d{bottom:64.080000px;}
.y14a{bottom:65.055000px;}
.y13f{bottom:66.030000px;}
.yc3{bottom:66.060000px;}
.ye8{bottom:66.105000px;}
.y17f{bottom:67.065000px;}
.y164{bottom:68.040000px;}
.y9f{bottom:68.760000px;}
.y108{bottom:72.000000px;}
.y1{bottom:78.516000px;}
.y198{bottom:96.510000px;}
.y14b{bottom:98.205000px;}
.y180{bottom:98.850000px;}
.y140{bottom:99.285000px;}
.y165{bottom:100.950000px;}
.y9c{bottom:105.525000px;}
.y19e{bottom:105.660000px;}
.y9e{bottom:106.785000px;}
.ye7{bottom:107.505000px;}
.y75{bottom:112.716000px;}
.y13a{bottom:113.616000px;}
.y2e{bottom:114.696000px;}
.y158{bottom:115.416000px;}
.y122{bottom:115.590000px;}
.y110{bottom:115.956000px;}
.y17d{bottom:117.936000px;}
.y88{bottom:118.296000px;}
.y1b9{bottom:120.636000px;}
.ya4{bottom:121.176000px;}
.yd0{bottom:121.356000px;}
.y151{bottom:122.835000px;}
.y17{bottom:125.316000px;}
.y87{bottom:126.576000px;}
.y4a{bottom:128.376000px;}
.y199{bottom:129.780000px;}
.y35{bottom:130.176000px;}
.y181{bottom:130.650000px;}
.y14c{bottom:131.760000px;}
.y1c2{bottom:132.516000px;}
.y141{bottom:132.915000px;}
.y5c{bottom:133.776000px;}
.y166{bottom:134.385000px;}
.ybb{bottom:135.756000px;}
.y120{bottom:136.656000px;}
.y1ab{bottom:139.176000px;}
.y16b{bottom:144.330000px;}
.y1c8{bottom:144.576000px;}
.y186{bottom:146.235000px;}
.y195{bottom:147.456000px;}
.y146{bottom:148.710000px;}
.ye6{bottom:148.905000px;}
.y106{bottom:149.976000px;}
.y74{bottom:154.110000px;}
.y123{bottom:154.875000px;}
.y139{bottom:155.010000px;}
.y2d{bottom:156.090000px;}
.ye4{bottom:156.450000px;}
.y157{bottom:156.810000px;}
.y10f{bottom:157.350000px;}
.yda{bottom:157.710000px;}
.y17c{bottom:159.330000px;}
.ya3{bottom:159.870000px;}
.y182{bottom:162.435000px;}
.ycf{bottom:162.750000px;}
.y19a{bottom:163.410000px;}
.y14d{bottom:165.675000px;}
.y16{bottom:166.710000px;}
.y142{bottom:166.965000px;}
.y167{bottom:168.450000px;}
.y86{bottom:169.590000px;}
.y49{bottom:169.770000px;}
.y34{bottom:171.570000px;}
.y1b8{bottom:173.910000px;}
.y5b{bottom:175.170000px;}
.yba{bottom:177.150000px;}
.y11f{bottom:178.050000px;}
.y65{bottom:183.810000px;}
.y1c1{bottom:185.970000px;}
.y194{bottom:188.850000px;}
.y105{bottom:191.370000px;}
.y1aa{bottom:192.630000px;}
.y183{bottom:194.220000px;}
.y124{bottom:194.400000px;}
.y128{bottom:194.790000px;}
.y73{bottom:195.510000px;}
.y138{bottom:196.410000px;}
.y19b{bottom:197.460000px;}
.y2c{bottom:197.490000px;}
.ye3{bottom:197.850000px;}
.ya2{bottom:198.570000px;}
.yd9{bottom:199.110000px;}
.y14e{bottom:200.010000px;}
.y17b{bottom:200.730000px;}
.y143{bottom:201.390000px;}
.y168{bottom:203.070000px;}
.yce{bottom:204.150000px;}
.y85{bottom:204.510000px;}
.y156{bottom:206.310000px;}
.y10e{bottom:206.850000px;}
.y15{bottom:208.110000px;}
.y48{bottom:211.170000px;}
.y84{bottom:212.790000px;}
.y33{bottom:212.970000px;}
.y5a{bottom:216.570000px;}
.yb9{bottom:218.550000px;}
.y11e{bottom:219.450000px;}
.y64{bottom:225.210000px;}
.y184{bottom:226.005000px;}
.y1b7{bottom:227.370000px;}
.y193{bottom:230.250000px;}
.y19c{bottom:231.915000px;}
.y104{bottom:232.770000px;}
.y1a9{bottom:234.030000px;}
.y125{bottom:234.150000px;}
.y14f{bottom:234.750000px;}
.y144{bottom:236.235000px;}
.y72{bottom:236.910000px;}
.y9b{bottom:237.270000px;}
.y137{bottom:237.810000px;}
.y169{bottom:238.350000px;}
.ye2{bottom:239.250000px;}
.y1c7{bottom:239.430000px;}
.yd8{bottom:240.510000px;}
.y17a{bottom:242.130000px;}
.ycd{bottom:245.550000px;}
.y14{bottom:249.510000px;}
.y2b{bottom:250.950000px;}
.y47{bottom:252.570000px;}
.y32{bottom:254.370000px;}
.y59{bottom:257.970000px;}
.yb8{bottom:259.950000px;}
.y11d{bottom:260.850000px;}
.y63{bottom:266.610000px;}
.y1b6{bottom:268.770000px;}
.y1a0{bottom:269.070000px;}
.y16d{bottom:269.280000px;}
.y83{bottom:270.030000px;}
.y192{bottom:271.650000px;}
.y188{bottom:271.800000px;}
.y126{bottom:274.140000px;}
.y103{bottom:274.170000px;}
.y149{bottom:274.320000px;}
.y1a8{bottom:275.430000px;}
.y148{bottom:275.730000px;}
.y153{bottom:278.460000px;}
.y136{bottom:279.210000px;}
.ye1{bottom:280.650000px;}
.y1c0{bottom:280.830000px;}
.yd7{bottom:281.910000px;}
.y179{bottom:283.530000px;}
.y71{bottom:290.370000px;}
.y13{bottom:290.910000px;}
.y2a{bottom:292.350000px;}
.y46{bottom:293.970000px;}
.y162{bottom:295.770000px;}
.ycc{bottom:299.010000px;}
.y58{bottom:299.370000px;}
.yb7{bottom:301.350000px;}
.y11c{bottom:302.250000px;}
.y31{bottom:307.830000px;}
.y62{bottom:308.010000px;}
.y191{bottom:313.050000px;}
.y127{bottom:314.355000px;}
.y102{bottom:315.570000px;}
.y1a7{bottom:316.830000px;}
.ye0{bottom:322.095000px;}
.y1b5{bottom:322.275000px;}
.y82{bottom:323.355000px;}
.y178{bottom:324.975000px;}
.y70{bottom:331.815000px;}
.y12{bottom:332.355000px;}
.y135{bottom:332.715000px;}
.y29{bottom:333.795000px;}
.y1c6{bottom:334.155000px;}
.y45{bottom:335.415000px;}
.y161{bottom:337.215000px;}
.yb6{bottom:342.795000px;}
.y11b{bottom:343.695000px;}
.y129{bottom:347.145000px;}
.ycb{bottom:348.375000px;}
.y57{bottom:352.875000px;}
.y190{bottom:354.495000px;}
.y101{bottom:357.015000px;}
.y1a6{bottom:358.275000px;}
.y30{bottom:361.155000px;}
.y61{bottom:361.515000px;}
.ydf{bottom:363.495000px;}
.y1b4{bottom:363.675000px;}
.y81{bottom:364.755000px;}
.y177{bottom:366.195000px;}
.y10d{bottom:370.335000px;}
.y6f{bottom:373.215000px;}
.y11{bottom:373.755000px;}
.y28{bottom:375.195000px;}
.y1bf{bottom:375.555000px;}
.y44{bottom:376.815000px;}
.y160{bottom:378.615000px;}
.yb5{bottom:384.195000px;}
.y9a{bottom:384.915000px;}
.y11a{bottom:385.095000px;}
.y134{bottom:386.175000px;}
.y56{bottom:394.275000px;}
.y18f{bottom:395.895000px;}
.y1a5{bottom:399.675000px;}
.y2f{bottom:400.035000px;}
.y60{bottom:402.915000px;}
.yde{bottom:404.895000px;}
.y80{bottom:406.155000px;}
.y176{bottom:407.595000px;}
.y100{bottom:410.475000px;}
.y6e{bottom:414.435000px;}
.y10{bottom:415.155000px;}
.y27{bottom:416.595000px;}
.y1b3{bottom:416.955000px;}
.y115{bottom:418.215000px;}
.y10b{bottom:418.395000px;}
.yb4{bottom:425.595000px;}
.y99{bottom:426.315000px;}
.y119{bottom:426.495000px;}
.y133{bottom:427.575000px;}
.y1c5{bottom:429.015000px;}
.y43{bottom:430.275000px;}
.y15f{bottom:431.895000px;}
.y55{bottom:435.675000px;}
.y18e{bottom:437.295000px;}
.y1a4{bottom:441.075000px;}
.y5f{bottom:444.315000px;}
.ydd{bottom:446.295000px;}
.y7f{bottom:447.555000px;}
.y175{bottom:448.995000px;}
.yff{bottom:451.875000px;}
.y26{bottom:457.995000px;}
.y1b2{bottom:458.355000px;}
.y114{bottom:459.615000px;}
.y107{bottom:466.635000px;}
.yb3{bottom:466.995000px;}
.y6d{bottom:467.895000px;}
.yf{bottom:468.615000px;}
.y132{bottom:468.975000px;}
.yc1{bottom:470.415000px;}
.y42{bottom:471.675000px;}
.y15e{bottom:473.295000px;}
.y54{bottom:477.075000px;}
.y98{bottom:479.595000px;}
.y1c4{bottom:482.475000px;}
.y5e{bottom:487.335000px;}
.ydc{bottom:487.695000px;}
.y7e{bottom:488.955000px;}
.y174{bottom:490.395000px;}
.y18d{bottom:490.755000px;}
.yfe{bottom:493.275000px;}
.y1a3{bottom:494.355000px;}
.y25{bottom:499.395000px;}
.y113{bottom:501.015000px;}
.y6c{bottom:509.295000px;}
.y131{bottom:510.375000px;}
.yc0{bottom:511.815000px;}
.y41{bottom:513.075000px;}
.y53{bottom:518.475000px;}
.yb2{bottom:520.275000px;}
.y97{bottom:520.995000px;}
.ye{bottom:522.075000px;}
.y15d{bottom:522.255000px;}
.y163{bottom:522.360000px;}
.y1be{bottom:523.875000px;}
.ydb{bottom:529.095000px;}
.y7d{bottom:530.355000px;}
.y173{bottom:531.795000px;}
.yfd{bottom:534.675000px;}
.y1cb{bottom:535.755000px;}
.y24{bottom:540.795000px;}
.y112{bottom:542.415000px;}
.y18c{bottom:544.035000px;}
.y1a2{bottom:547.815000px;}
.y6b{bottom:550.695000px;}
.y130{bottom:551.775000px;}
.y40{bottom:554.475000px;}
.yf1{bottom:558.615000px;}
.y52{bottom:559.875000px;}
.yb1{bottom:561.675000px;}
.y96{bottom:562.395000px;}
.y118{bottom:562.755000px;}
.ybf{bottom:565.275000px;}
.yd{bottom:575.385000px;}
.yfc{bottom:576.105000px;}
.y1c3{bottom:577.185000px;}
.y23{bottom:582.225000px;}
.y7c{bottom:583.845000px;}
.y172{bottom:585.285000px;}
.y3f{bottom:595.905000px;}
.y18b{bottom:597.525000px;}
.yca{bottom:599.505000px;}
.yf0{bottom:600.765000px;}
.y1a1{bottom:601.305000px;}
.yb0{bottom:603.105000px;}
.y95{bottom:603.825000px;}
.y13d{bottom:604.005000px;}
.y13e{bottom:604.080000px;}
.y6a{bottom:604.185000px;}
.y12f{bottom:605.085000px;}
.y1b1{bottom:606.705000px;}
.y155{bottom:607.785000px;}
.y51{bottom:613.185000px;}
.y117{bottom:616.065000px;}
.ybe{bottom:618.585000px;}
.y22{bottom:623.625000px;}
.y7b{bottom:625.245000px;}
.yc{bottom:628.845000px;}
.yfb{bottom:629.385000px;}
.y1ca{bottom:630.645000px;}
.y3e{bottom:637.305000px;}
.yc9{bottom:638.205000px;}
.y171{bottom:638.745000px;}
.y18a{bottom:638.925000px;}
.yef{bottom:642.885000px;}
.yaf{bottom:644.505000px;}
.y94{bottom:645.225000px;}
.y69{bottom:645.585000px;}
.y12e{bottom:646.485000px;}
.yf9{bottom:646.845000px;}
.y154{bottom:649.185000px;}
.y50{bottom:654.585000px;}
.y116{bottom:657.465000px;}
.y1b0{bottom:659.985000px;}
.y21{bottom:665.025000px;}
.y7a{bottom:666.645000px;}
.ybd{bottom:672.045000px;}
.yc8{bottom:676.905000px;}
.yb{bottom:677.085000px;}
.y3d{bottom:678.705000px;}
.y1c9{bottom:683.925000px;}
.yee{bottom:685.005000px;}
.yae{bottom:685.905000px;}
.y93{bottom:686.625000px;}
.y12d{bottom:687.885000px;}
.y189{bottom:689.505000px;}
.y196{bottom:689.760000px;}
.yd6{bottom:690.585000px;}
.y170{bottom:692.025000px;}
.y4f{bottom:695.985000px;}
.y68{bottom:698.865000px;}
.y20{bottom:706.425000px;}
.y121{bottom:706.500000px;}
.y79{bottom:708.045000px;}
.y1af{bottom:713.445000px;}
.yc7{bottom:715.605000px;}
.y3c{bottom:719.925000px;}
.ya{bottom:723.525000px;}
.ybc{bottom:725.325000px;}
.yec{bottom:727.125000px;}
.yad{bottom:727.305000px;}
.y92{bottom:728.025000px;}
.y12c{bottom:729.285000px;}
.yd5{bottom:731.985000px;}
.y67{bottom:732.525000px;}
.y16f{bottom:733.425000px;}
.y4e{bottom:737.385000px;}
.y66{bottom:740.985000px;}
.y1f{bottom:747.825000px;}
.y78{bottom:749.445000px;}
.yc6{bottom:754.305000px;}
.y1bd{bottom:754.845000px;}
.y3b{bottom:761.325000px;}
.yf7{bottom:762.225000px;}
.y1ae{bottom:766.725000px;}
.yac{bottom:768.705000px;}
.yea{bottom:769.245000px;}
.y91{bottom:769.425000px;}
.y12b{bottom:770.685000px;}
.y9{bottom:771.765000px;}
.yd4{bottom:773.385000px;}
.y4d{bottom:778.785000px;}
.y16e{bottom:782.925000px;}
.y17e{bottom:784.440000px;}
.y1e{bottom:789.225000px;}
.y77{bottom:790.845000px;}
.yc5{bottom:793.005000px;}
.yf5{bottom:800.925000px;}
.y3a{bottom:802.725000px;}
.y1bc{bottom:808.125000px;}
.yab{bottom:810.105000px;}
.ye5{bottom:811.365000px;}
.y90{bottom:812.445000px;}
.y12a{bottom:813.345000px;}
.yd3{bottom:814.785000px;}
.y8{bottom:818.385000px;}
.y4c{bottom:820.230000px;}
.y1d{bottom:830.670000px;}
.yc2{bottom:831.750000px;}
.y5d{bottom:832.290000px;}
.yf4{bottom:839.670000px;}
.y39{bottom:844.170000px;}
.y1bb{bottom:849.570000px;}
.yaa{bottom:851.550000px;}
.y8f{bottom:851.730000px;}
.y15c{bottom:854.610000px;}
.yd2{bottom:856.230000px;}
.y1ad{bottom:861.630000px;}
.y7{bottom:866.670000px;}
.y1c{bottom:872.070000px;}
.y4b{bottom:873.690000px;}
.y38{bottom:885.570000px;}
.y8e{bottom:889.710000px;}
.ya9{bottom:892.950000px;}
.y15b{bottom:896.010000px;}
.yd1{bottom:897.630000px;}
.y1ba{bottom:903.030000px;}
.y6{bottom:913.290000px;}
.y1b{bottom:915.090000px;}
.y37{bottom:926.970000px;}
.y8d{bottom:935.250000px;}
.y15a{bottom:937.410000px;}
.y13c{bottom:938.310000px;}
.y76{bottom:939.030000px;}
.ya8{bottom:946.410000px;}
.y5{bottom:954.690000px;}
.y1ac{bottom:956.490000px;}
.ya7{bottom:963.870000px;}
.y1a{bottom:968.370000px;}
.y159{bottom:969.630000px;}
.y8c{bottom:978.270000px;}
.y13b{bottom:979.710000px;}
.y36{bottom:980.430000px;}
.ya6{bottom:1002.570000px;}
.y111{bottom:1009.770000px;}
.y4{bottom:1012.110000px;}
.y8b{bottom:1013.190000px;}
.y8a{bottom:1021.470000px;}
.y19{bottom:1021.830000px;}
.ya5{bottom:1041.270000px;}
.y3{bottom:1060.350000px;}
.y18{bottom:1063.230000px;}
.y89{bottom:1064.490000px;}
.h13{height:37.980000px;}
.h14{height:38.016000px;}
.h18{height:41.400000px;}
.h19{height:41.436000px;}
.h1e{height:47.340000px;}
.h5{height:47.344922px;}
.h1d{height:47.520000px;}
.h17{height:50.800781px;}
.h26{height:53.709961px;}
.h20{height:58.651172px;}
.h2{height:59.436914px;}
.h22{height:60.226875px;}
.h23{height:60.372000px;}
.ha{height:64.546875px;}
.hf{height:65.010937px;}
.h1{height:65.884219px;}
.h11{height:66.757500px;}
.h6{height:70.664062px;}
.h7{height:72.562500px;}
.h1b{height:74.680922px;}
.h4{height:74.681367px;}
.h9{height:74.704922px;}
.h8{height:74.953125px;}
.h1a{height:75.960000px;}
.hd{height:79.535391px;}
.h15{height:82.800000px;}
.h3{height:84.898125px;}
.h1c{height:91.800000px;}
.he{height:98.130938px;}
.h12{height:98.966250px;}
.hb{height:99.994219px;}
.hc{height:104.504062px;}
.h10{height:122.256000px;}
.h16{height:165.630000px;}
.h27{height:295.380000px;}
.h25{height:295.560000px;}
.h24{height:295.740000px;}
.h21{height:297.540000px;}
.h1f{height:373.500000px;}
.h0{height:1188.000000px;}
.w14{width:50.760000px;}
.w16{width:57.420000px;}
.w13{width:58.680000px;}
.w18{width:63.360000px;}
.w17{width:70.236000px;}
.w11{width:73.980000px;}
.w10{width:74.016000px;}
.w1a{width:74.376000px;}
.w12{width:79.560000px;}
.wc{width:90.900000px;}
.w19{width:107.640000px;}
.wa{width:108.756000px;}
.we{width:112.860000px;}
.wd{width:112.896000px;}
.wb{width:123.156000px;}
.w4{width:134.136000px;}
.wf{width:135.720000px;}
.w5{width:140.256000px;}
.w8{width:140.400000px;}
.w6{width:141.876000px;}
.w7{width:145.116000px;}
.w2{width:147.816000px;}
.w9{width:148.320000px;}
.w3{width:153.000000px;}
.w15{width:172.290000px;}
.w20{width:485.100000px;}
.w1d{width:489.060000px;}
.w1e{width:499.320000px;}
.w1c{width:509.940000px;}
.w1f{width:512.460000px;}
.w1b{width:598.860000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5d{left:4.500000px;}
.x15{left:7.740000px;}
.x2c{left:9.360000px;}
.x1e{left:10.800000px;}
.x47{left:12.060000px;}
.x17{left:13.140000px;}
.x35{left:14.580000px;}
.x4a{left:16.200000px;}
.x49{left:17.640000px;}
.x43{left:18.720000px;}
.x33{left:20.340000px;}
.x53{left:21.780000px;}
.x1b{left:22.890000px;}
.x36{left:24.660000px;}
.x23{left:26.490000px;}
.x60{left:27.870000px;}
.x22{left:29.520000px;}
.x3c{left:30.780000px;}
.x2b{left:31.860000px;}
.x21{left:33.660000px;}
.x2a{left:35.280000px;}
.x3a{left:36.900000px;}
.x31{left:38.385000px;}
.x25{left:39.780000px;}
.x5a{left:40.965000px;}
.x1c{left:41.970000px;}
.x5f{left:42.990000px;}
.x20{left:44.100000px;}
.x18{left:46.260000px;}
.x69{left:47.595000px;}
.x39{left:50.220000px;}
.x59{left:52.050000px;}
.x1f{left:53.100000px;}
.x19{left:55.080000px;}
.x3b{left:57.060000px;}
.x28{left:60.480000px;}
.x68{left:61.815000px;}
.x70{left:67.575000px;}
.x2f{left:74.154000px;}
.x5b{left:94.170000px;}
.x6c{left:96.810000px;}
.x2{left:108.035986px;}
.x63{left:109.295986px;}
.x50{left:110.915986px;}
.x6a{left:112.710000px;}
.x5{left:114.335986px;}
.x6e{left:118.835986px;}
.x75{left:120.270000px;}
.x62{left:122.435986px;}
.x73{left:127.835986px;}
.x71{left:130.110000px;}
.x3{left:131.435986px;}
.x8{left:135.035986px;}
.x4e{left:136.115986px;}
.x66{left:145.655986px;}
.x54{left:150.660000px;}
.x57{left:152.309986px;}
.x76{left:156.089986px;}
.x64{left:157.349986px;}
.x52{left:159.480000px;}
.x13{left:162.029986px;}
.x14{left:170.310000px;}
.x6{left:171.569986px;}
.x7{left:174.809986px;}
.x2e{left:178.769986px;}
.x45{left:184.530000px;}
.x6b{left:194.580000px;}
.x6f{left:202.500000px;}
.x58{left:203.580000px;}
.x65{left:207.389986px;}
.x67{left:210.960000px;}
.x5e{left:214.380000px;}
.x74{left:216.000000px;}
.x61{left:224.250000px;}
.x5c{left:234.285000px;}
.xa{left:237.809986px;}
.x26{left:244.650000px;}
.xd{left:250.769986px;}
.x30{left:257.790000px;}
.x4{left:275.969986px;}
.x12{left:304.094986px;}
.x51{left:305.174986px;}
.x16{left:318.855000px;}
.x3d{left:320.115000px;}
.x46{left:357.555000px;}
.x32{left:367.275000px;}
.x27{left:387.255000px;}
.x3e{left:394.815000px;}
.xc{left:411.014986px;}
.x48{left:415.875000px;}
.x10{left:424.514986px;}
.x4f{left:427.754986px;}
.x24{left:450.614986px;}
.x1{left:454.934986px;}
.xb{left:459.074986px;}
.x11{left:464.114986px;}
.x3f{left:469.515000px;}
.x1a{left:472.755000px;}
.xf{left:486.104986px;}
.x34{left:491.145000px;}
.xe{left:510.584986px;}
.x29{left:533.085000px;}
.x40{left:544.245000px;}
.x4b{left:550.905000px;}
.x37{left:582.945000px;}
.x1d{left:607.605000px;}
.x41{left:624.525000px;}
.x4c{left:659.265000px;}
.x4d{left:690.809986px;}
.x38{left:696.570000px;}
.x42{left:699.270000px;}
.x72{left:702.149986px;}
.x56{left:703.589986px;}
.x55{left:714.389986px;}
.x6d{left:715.649986px;}
.x2d{left:725.909986px;}
.x44{left:758.670000px;}
.x9{left:814.469986px;}
@media print{
.vf{vertical-align:-29.866667pt;}
.v10{vertical-align:-28.906667pt;}
.v2{vertical-align:-24.320000pt;}
.v4{vertical-align:-12.800000pt;}
.v8{vertical-align:-10.240000pt;}
.v3{vertical-align:-5.120000pt;}
.v7{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.920000pt;}
.v5{vertical-align:12.800000pt;}
.v9{vertical-align:19.840000pt;}
.ve{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.va{vertical-align:30.080000pt;}
.vc{vertical-align:34.560000pt;}
.vd{vertical-align:50.560000pt;}
.v6{vertical-align:52.480000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.549333pt;}
.ls1c{letter-spacing:-0.401067pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls23{letter-spacing:-0.271467pt;}
.ls27{letter-spacing:-0.256000pt;}
.ls28{letter-spacing:-0.239467pt;}
.ls1e{letter-spacing:-0.233067pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls22{letter-spacing:-0.097067pt;}
.ls18{letter-spacing:-0.082133pt;}
.ls30{letter-spacing:-0.016000pt;}
.ls1b{letter-spacing:-0.010240pt;}
.ls2{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.076800pt;}
.ls1a{letter-spacing:0.092800pt;}
.ls33{letter-spacing:0.106667pt;}
.ls2f{letter-spacing:0.112000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls26{letter-spacing:0.133120pt;}
.ls10{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.161280pt;}
.ls25{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.227733pt;}
.ls1d{letter-spacing:0.233067pt;}
.ls14{letter-spacing:0.236800pt;}
.lsf{letter-spacing:0.239360pt;}
.ls2e{letter-spacing:0.239467pt;}
.ls8{letter-spacing:0.256000pt;}
.ls2b{letter-spacing:0.257280pt;}
.ls1{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.384000pt;}
.ls2c{letter-spacing:0.448000pt;}
.ls21{letter-spacing:0.512000pt;}
.ls24{letter-spacing:0.640000pt;}
.lsd{letter-spacing:2.080000pt;}
.lse{letter-spacing:2.233600pt;}
.ls31{letter-spacing:3.200000pt;}
.ls5{letter-spacing:4.480000pt;}
.lsc{letter-spacing:7.463040pt;}
.ls13{letter-spacing:12.520960pt;}
.ls17{letter-spacing:13.160960pt;}
.ls12{letter-spacing:15.351467pt;}
.ls15{letter-spacing:15.884800pt;}
.ls16{letter-spacing:16.176640pt;}
.lsb{letter-spacing:17.472000pt;}
.lsa{letter-spacing:21.845760pt;}
.ls4{letter-spacing:30.186667pt;}
.ls2d{letter-spacing:296.944000pt;}
.ws1c{word-spacing:-16.640000pt;}
.ws19{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws1d{word-spacing:-16.192000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws18{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws21{word-spacing:-15.872000pt;}
.ws28{word-spacing:-15.808000pt;}
.ws1e{word-spacing:-15.744000pt;}
.ws13{word-spacing:-14.953067pt;}
.ws15{word-spacing:-14.720000pt;}
.ws1a{word-spacing:-14.622933pt;}
.ws16{word-spacing:-14.486933pt;}
.ws1b{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.080000pt;}
.ws17{word-spacing:-13.534613pt;}
.ws20{word-spacing:-13.280000pt;}
.wsa{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.943360pt;}
.ws5{word-spacing:-11.040000pt;}
.ws29{word-spacing:-10.977280pt;}
.ws2c{word-spacing:-10.959467pt;}
.ws1{word-spacing:-10.881067pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1f{word-spacing:-10.480533pt;}
.ws4{word-spacing:-10.400000pt;}
.ws9{word-spacing:-9.996800pt;}
.wsf{word-spacing:-9.526400pt;}
.ws12{word-spacing:-9.433600pt;}
.wsb{word-spacing:-9.351467pt;}
.ws14{word-spacing:-9.280000pt;}
.ws11{word-spacing:-9.032533pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:3.142400pt;}
.wsc{word-spacing:18.225280pt;}
.wse{word-spacing:70.705280pt;}
.ws2f{word-spacing:90.469973pt;}
.ws26{word-spacing:104.907307pt;}
.ws23{word-spacing:115.359787pt;}
.ws25{word-spacing:130.506667pt;}
.ws22{word-spacing:140.906667pt;}
.ws2b{word-spacing:177.919787pt;}
.ws2a{word-spacing:190.186667pt;}
.ws2e{word-spacing:223.840000pt;}
.ws2d{word-spacing:273.584000pt;}
.ws27{word-spacing:353.749333pt;}
.ws24{word-spacing:400.448000pt;}
._a{margin-left:-3.999147pt;}
._8{margin-left:-3.072000pt;}
._0{margin-left:-1.497600pt;}
._1{width:1.049600pt;}
._e{width:1.943467pt;}
._6{width:2.941867pt;}
._5{width:4.313600pt;}
._2{width:5.440000pt;}
._3{width:6.528000pt;}
._7{width:7.530667pt;}
._d{width:8.533333pt;}
._10{width:10.090667pt;}
._b{width:11.776000pt;}
._c{width:12.672000pt;}
._f{width:13.713067pt;}
._18{width:14.656000pt;}
._19{width:17.092267pt;}
._4{width:18.037333pt;}
._2c{width:19.185067pt;}
._2f{width:20.174933pt;}
._22{width:21.376000pt;}
._23{width:22.400000pt;}
._11{width:23.296000pt;}
._12{width:24.192000pt;}
._2a{width:26.048000pt;}
._9{width:28.394667pt;}
._16{width:29.760000pt;}
._17{width:30.666667pt;}
._2d{width:33.728000pt;}
._2e{width:35.249067pt;}
._13{width:39.552000pt;}
._14{width:40.448000pt;}
._15{width:41.674667pt;}
._1f{width:51.722240pt;}
._1a{width:56.779947pt;}
._1d{width:61.083947pt;}
._2b{width:66.517333pt;}
._20{width:80.854613pt;}
._31{width:90.858667pt;}
._1e{width:95.596800pt;}
._24{width:106.624213pt;}
._25{width:120.598400pt;}
._29{width:121.574613pt;}
._30{width:122.858667pt;}
._27{width:130.986667pt;}
._26{width:141.173333pt;}
._1b{width:176.000000pt;}
._1c{width:176.900267pt;}
._21{width:178.146133pt;}
._28{width:217.120000pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y19f{bottom:10.426667pt;}
.y16c{bottom:14.013333pt;}
.y187{bottom:14.533333pt;}
.y152{bottom:18.533333pt;}
.y147{bottom:18.560000pt;}
.ya0{bottom:20.000000pt;}
.yf6{bottom:20.040000pt;}
.yc4{bottom:21.920000pt;}
.yf3{bottom:21.946667pt;}
.ye9{bottom:21.960000pt;}
.yeb{bottom:23.040000pt;}
.yf2{bottom:23.066667pt;}
.yed{bottom:23.200000pt;}
.y10a{bottom:24.480000pt;}
.y10c{bottom:24.640000pt;}
.y109{bottom:27.200000pt;}
.ya1{bottom:27.360000pt;}
.yf8{bottom:33.760000pt;}
.y19d{bottom:41.213333pt;}
.y150{bottom:42.466667pt;}
.y145{bottom:43.333333pt;}
.y185{bottom:44.613333pt;}
.y16a{bottom:45.146667pt;}
.y2{bottom:51.840000pt;}
.yfa{bottom:53.760000pt;}
.y197{bottom:56.546667pt;}
.y9d{bottom:56.960000pt;}
.y14a{bottom:57.826667pt;}
.y13f{bottom:58.693333pt;}
.yc3{bottom:58.720000pt;}
.ye8{bottom:58.760000pt;}
.y17f{bottom:59.613333pt;}
.y164{bottom:60.480000pt;}
.y9f{bottom:61.120000pt;}
.y108{bottom:64.000000pt;}
.y1{bottom:69.792000pt;}
.y198{bottom:85.786667pt;}
.y14b{bottom:87.293333pt;}
.y180{bottom:87.866667pt;}
.y140{bottom:88.253333pt;}
.y165{bottom:89.733333pt;}
.y9c{bottom:93.800000pt;}
.y19e{bottom:93.920000pt;}
.y9e{bottom:94.920000pt;}
.ye7{bottom:95.560000pt;}
.y75{bottom:100.192000pt;}
.y13a{bottom:100.992000pt;}
.y2e{bottom:101.952000pt;}
.y158{bottom:102.592000pt;}
.y122{bottom:102.746667pt;}
.y110{bottom:103.072000pt;}
.y17d{bottom:104.832000pt;}
.y88{bottom:105.152000pt;}
.y1b9{bottom:107.232000pt;}
.ya4{bottom:107.712000pt;}
.yd0{bottom:107.872000pt;}
.y151{bottom:109.186667pt;}
.y17{bottom:111.392000pt;}
.y87{bottom:112.512000pt;}
.y4a{bottom:114.112000pt;}
.y199{bottom:115.360000pt;}
.y35{bottom:115.712000pt;}
.y181{bottom:116.133333pt;}
.y14c{bottom:117.120000pt;}
.y1c2{bottom:117.792000pt;}
.y141{bottom:118.146667pt;}
.y5c{bottom:118.912000pt;}
.y166{bottom:119.453333pt;}
.ybb{bottom:120.672000pt;}
.y120{bottom:121.472000pt;}
.y1ab{bottom:123.712000pt;}
.y16b{bottom:128.293333pt;}
.y1c8{bottom:128.512000pt;}
.y186{bottom:129.986667pt;}
.y195{bottom:131.072000pt;}
.y146{bottom:132.186667pt;}
.ye6{bottom:132.360000pt;}
.y106{bottom:133.312000pt;}
.y74{bottom:136.986667pt;}
.y123{bottom:137.666667pt;}
.y139{bottom:137.786667pt;}
.y2d{bottom:138.746667pt;}
.ye4{bottom:139.066667pt;}
.y157{bottom:139.386667pt;}
.y10f{bottom:139.866667pt;}
.yda{bottom:140.186667pt;}
.y17c{bottom:141.626667pt;}
.ya3{bottom:142.106667pt;}
.y182{bottom:144.386667pt;}
.ycf{bottom:144.666667pt;}
.y19a{bottom:145.253333pt;}
.y14d{bottom:147.266667pt;}
.y16{bottom:148.186667pt;}
.y142{bottom:148.413333pt;}
.y167{bottom:149.733333pt;}
.y86{bottom:150.746667pt;}
.y49{bottom:150.906667pt;}
.y34{bottom:152.506667pt;}
.y1b8{bottom:154.586667pt;}
.y5b{bottom:155.706667pt;}
.yba{bottom:157.466667pt;}
.y11f{bottom:158.266667pt;}
.y65{bottom:163.386667pt;}
.y1c1{bottom:165.306667pt;}
.y194{bottom:167.866667pt;}
.y105{bottom:170.106667pt;}
.y1aa{bottom:171.226667pt;}
.y183{bottom:172.640000pt;}
.y124{bottom:172.800000pt;}
.y128{bottom:173.146667pt;}
.y73{bottom:173.786667pt;}
.y138{bottom:174.586667pt;}
.y19b{bottom:175.520000pt;}
.y2c{bottom:175.546667pt;}
.ye3{bottom:175.866667pt;}
.ya2{bottom:176.506667pt;}
.yd9{bottom:176.986667pt;}
.y14e{bottom:177.786667pt;}
.y17b{bottom:178.426667pt;}
.y143{bottom:179.013333pt;}
.y168{bottom:180.506667pt;}
.yce{bottom:181.466667pt;}
.y85{bottom:181.786667pt;}
.y156{bottom:183.386667pt;}
.y10e{bottom:183.866667pt;}
.y15{bottom:184.986667pt;}
.y48{bottom:187.706667pt;}
.y84{bottom:189.146667pt;}
.y33{bottom:189.306667pt;}
.y5a{bottom:192.506667pt;}
.yb9{bottom:194.266667pt;}
.y11e{bottom:195.066667pt;}
.y64{bottom:200.186667pt;}
.y184{bottom:200.893333pt;}
.y1b7{bottom:202.106667pt;}
.y193{bottom:204.666667pt;}
.y19c{bottom:206.146667pt;}
.y104{bottom:206.906667pt;}
.y1a9{bottom:208.026667pt;}
.y125{bottom:208.133333pt;}
.y14f{bottom:208.666667pt;}
.y144{bottom:209.986667pt;}
.y72{bottom:210.586667pt;}
.y9b{bottom:210.906667pt;}
.y137{bottom:211.386667pt;}
.y169{bottom:211.866667pt;}
.ye2{bottom:212.666667pt;}
.y1c7{bottom:212.826667pt;}
.yd8{bottom:213.786667pt;}
.y17a{bottom:215.226667pt;}
.ycd{bottom:218.266667pt;}
.y14{bottom:221.786667pt;}
.y2b{bottom:223.066667pt;}
.y47{bottom:224.506667pt;}
.y32{bottom:226.106667pt;}
.y59{bottom:229.306667pt;}
.yb8{bottom:231.066667pt;}
.y11d{bottom:231.866667pt;}
.y63{bottom:236.986667pt;}
.y1b6{bottom:238.906667pt;}
.y1a0{bottom:239.173333pt;}
.y16d{bottom:239.360000pt;}
.y83{bottom:240.026667pt;}
.y192{bottom:241.466667pt;}
.y188{bottom:241.600000pt;}
.y126{bottom:243.680000pt;}
.y103{bottom:243.706667pt;}
.y149{bottom:243.840000pt;}
.y1a8{bottom:244.826667pt;}
.y148{bottom:245.093333pt;}
.y153{bottom:247.520000pt;}
.y136{bottom:248.186667pt;}
.ye1{bottom:249.466667pt;}
.y1c0{bottom:249.626667pt;}
.yd7{bottom:250.586667pt;}
.y179{bottom:252.026667pt;}
.y71{bottom:258.106667pt;}
.y13{bottom:258.586667pt;}
.y2a{bottom:259.866667pt;}
.y46{bottom:261.306667pt;}
.y162{bottom:262.906667pt;}
.ycc{bottom:265.786667pt;}
.y58{bottom:266.106667pt;}
.yb7{bottom:267.866667pt;}
.y11c{bottom:268.666667pt;}
.y31{bottom:273.626667pt;}
.y62{bottom:273.786667pt;}
.y191{bottom:278.266667pt;}
.y127{bottom:279.426667pt;}
.y102{bottom:280.506667pt;}
.y1a7{bottom:281.626667pt;}
.ye0{bottom:286.306667pt;}
.y1b5{bottom:286.466667pt;}
.y82{bottom:287.426667pt;}
.y178{bottom:288.866667pt;}
.y70{bottom:294.946667pt;}
.y12{bottom:295.426667pt;}
.y135{bottom:295.746667pt;}
.y29{bottom:296.706667pt;}
.y1c6{bottom:297.026667pt;}
.y45{bottom:298.146667pt;}
.y161{bottom:299.746667pt;}
.yb6{bottom:304.706667pt;}
.y11b{bottom:305.506667pt;}
.y129{bottom:308.573333pt;}
.ycb{bottom:309.666667pt;}
.y57{bottom:313.666667pt;}
.y190{bottom:315.106667pt;}
.y101{bottom:317.346667pt;}
.y1a6{bottom:318.466667pt;}
.y30{bottom:321.026667pt;}
.y61{bottom:321.346667pt;}
.ydf{bottom:323.106667pt;}
.y1b4{bottom:323.266667pt;}
.y81{bottom:324.226667pt;}
.y177{bottom:325.506667pt;}
.y10d{bottom:329.186667pt;}
.y6f{bottom:331.746667pt;}
.y11{bottom:332.226667pt;}
.y28{bottom:333.506667pt;}
.y1bf{bottom:333.826667pt;}
.y44{bottom:334.946667pt;}
.y160{bottom:336.546667pt;}
.yb5{bottom:341.506667pt;}
.y9a{bottom:342.146667pt;}
.y11a{bottom:342.306667pt;}
.y134{bottom:343.266667pt;}
.y56{bottom:350.466667pt;}
.y18f{bottom:351.906667pt;}
.y1a5{bottom:355.266667pt;}
.y2f{bottom:355.586667pt;}
.y60{bottom:358.146667pt;}
.yde{bottom:359.906667pt;}
.y80{bottom:361.026667pt;}
.y176{bottom:362.306667pt;}
.y100{bottom:364.866667pt;}
.y6e{bottom:368.386667pt;}
.y10{bottom:369.026667pt;}
.y27{bottom:370.306667pt;}
.y1b3{bottom:370.626667pt;}
.y115{bottom:371.746667pt;}
.y10b{bottom:371.906667pt;}
.yb4{bottom:378.306667pt;}
.y99{bottom:378.946667pt;}
.y119{bottom:379.106667pt;}
.y133{bottom:380.066667pt;}
.y1c5{bottom:381.346667pt;}
.y43{bottom:382.466667pt;}
.y15f{bottom:383.906667pt;}
.y55{bottom:387.266667pt;}
.y18e{bottom:388.706667pt;}
.y1a4{bottom:392.066667pt;}
.y5f{bottom:394.946667pt;}
.ydd{bottom:396.706667pt;}
.y7f{bottom:397.826667pt;}
.y175{bottom:399.106667pt;}
.yff{bottom:401.666667pt;}
.y26{bottom:407.106667pt;}
.y1b2{bottom:407.426667pt;}
.y114{bottom:408.546667pt;}
.y107{bottom:414.786667pt;}
.yb3{bottom:415.106667pt;}
.y6d{bottom:415.906667pt;}
.yf{bottom:416.546667pt;}
.y132{bottom:416.866667pt;}
.yc1{bottom:418.146667pt;}
.y42{bottom:419.266667pt;}
.y15e{bottom:420.706667pt;}
.y54{bottom:424.066667pt;}
.y98{bottom:426.306667pt;}
.y1c4{bottom:428.866667pt;}
.y5e{bottom:433.186667pt;}
.ydc{bottom:433.506667pt;}
.y7e{bottom:434.626667pt;}
.y174{bottom:435.906667pt;}
.y18d{bottom:436.226667pt;}
.yfe{bottom:438.466667pt;}
.y1a3{bottom:439.426667pt;}
.y25{bottom:443.906667pt;}
.y113{bottom:445.346667pt;}
.y6c{bottom:452.706667pt;}
.y131{bottom:453.666667pt;}
.yc0{bottom:454.946667pt;}
.y41{bottom:456.066667pt;}
.y53{bottom:460.866667pt;}
.yb2{bottom:462.466667pt;}
.y97{bottom:463.106667pt;}
.ye{bottom:464.066667pt;}
.y15d{bottom:464.226667pt;}
.y163{bottom:464.320000pt;}
.y1be{bottom:465.666667pt;}
.ydb{bottom:470.306667pt;}
.y7d{bottom:471.426667pt;}
.y173{bottom:472.706667pt;}
.yfd{bottom:475.266667pt;}
.y1cb{bottom:476.226667pt;}
.y24{bottom:480.706667pt;}
.y112{bottom:482.146667pt;}
.y18c{bottom:483.586667pt;}
.y1a2{bottom:486.946667pt;}
.y6b{bottom:489.506667pt;}
.y130{bottom:490.466667pt;}
.y40{bottom:492.866667pt;}
.yf1{bottom:496.546667pt;}
.y52{bottom:497.666667pt;}
.yb1{bottom:499.266667pt;}
.y96{bottom:499.906667pt;}
.y118{bottom:500.226667pt;}
.ybf{bottom:502.466667pt;}
.yd{bottom:511.453333pt;}
.yfc{bottom:512.093333pt;}
.y1c3{bottom:513.053333pt;}
.y23{bottom:517.533333pt;}
.y7c{bottom:518.973333pt;}
.y172{bottom:520.253333pt;}
.y3f{bottom:529.693333pt;}
.y18b{bottom:531.133333pt;}
.yca{bottom:532.893333pt;}
.yf0{bottom:534.013333pt;}
.y1a1{bottom:534.493333pt;}
.yb0{bottom:536.093333pt;}
.y95{bottom:536.733333pt;}
.y13d{bottom:536.893333pt;}
.y13e{bottom:536.960000pt;}
.y6a{bottom:537.053333pt;}
.y12f{bottom:537.853333pt;}
.y1b1{bottom:539.293333pt;}
.y155{bottom:540.253333pt;}
.y51{bottom:545.053333pt;}
.y117{bottom:547.613333pt;}
.ybe{bottom:549.853333pt;}
.y22{bottom:554.333333pt;}
.y7b{bottom:555.773333pt;}
.yc{bottom:558.973333pt;}
.yfb{bottom:559.453333pt;}
.y1ca{bottom:560.573333pt;}
.y3e{bottom:566.493333pt;}
.yc9{bottom:567.293333pt;}
.y171{bottom:567.773333pt;}
.y18a{bottom:567.933333pt;}
.yef{bottom:571.453333pt;}
.yaf{bottom:572.893333pt;}
.y94{bottom:573.533333pt;}
.y69{bottom:573.853333pt;}
.y12e{bottom:574.653333pt;}
.yf9{bottom:574.973333pt;}
.y154{bottom:577.053333pt;}
.y50{bottom:581.853333pt;}
.y116{bottom:584.413333pt;}
.y1b0{bottom:586.653333pt;}
.y21{bottom:591.133333pt;}
.y7a{bottom:592.573333pt;}
.ybd{bottom:597.373333pt;}
.yc8{bottom:601.693333pt;}
.yb{bottom:601.853333pt;}
.y3d{bottom:603.293333pt;}
.y1c9{bottom:607.933333pt;}
.yee{bottom:608.893333pt;}
.yae{bottom:609.693333pt;}
.y93{bottom:610.333333pt;}
.y12d{bottom:611.453333pt;}
.y189{bottom:612.893333pt;}
.y196{bottom:613.120000pt;}
.yd6{bottom:613.853333pt;}
.y170{bottom:615.133333pt;}
.y4f{bottom:618.653333pt;}
.y68{bottom:621.213333pt;}
.y20{bottom:627.933333pt;}
.y121{bottom:628.000000pt;}
.y79{bottom:629.373333pt;}
.y1af{bottom:634.173333pt;}
.yc7{bottom:636.093333pt;}
.y3c{bottom:639.933333pt;}
.ya{bottom:643.133333pt;}
.ybc{bottom:644.733333pt;}
.yec{bottom:646.333333pt;}
.yad{bottom:646.493333pt;}
.y92{bottom:647.133333pt;}
.y12c{bottom:648.253333pt;}
.yd5{bottom:650.653333pt;}
.y67{bottom:651.133333pt;}
.y16f{bottom:651.933333pt;}
.y4e{bottom:655.453333pt;}
.y66{bottom:658.653333pt;}
.y1f{bottom:664.733333pt;}
.y78{bottom:666.173333pt;}
.yc6{bottom:670.493333pt;}
.y1bd{bottom:670.973333pt;}
.y3b{bottom:676.733333pt;}
.yf7{bottom:677.533333pt;}
.y1ae{bottom:681.533333pt;}
.yac{bottom:683.293333pt;}
.yea{bottom:683.773333pt;}
.y91{bottom:683.933333pt;}
.y12b{bottom:685.053333pt;}
.y9{bottom:686.013333pt;}
.yd4{bottom:687.453333pt;}
.y4d{bottom:692.253333pt;}
.y16e{bottom:695.933333pt;}
.y17e{bottom:697.280000pt;}
.y1e{bottom:701.533333pt;}
.y77{bottom:702.973333pt;}
.yc5{bottom:704.893333pt;}
.yf5{bottom:711.933333pt;}
.y3a{bottom:713.533333pt;}
.y1bc{bottom:718.333333pt;}
.yab{bottom:720.093333pt;}
.ye5{bottom:721.213333pt;}
.y90{bottom:722.173333pt;}
.y12a{bottom:722.973333pt;}
.yd3{bottom:724.253333pt;}
.y8{bottom:727.453333pt;}
.y4c{bottom:729.093333pt;}
.y1d{bottom:738.373333pt;}
.yc2{bottom:739.333333pt;}
.y5d{bottom:739.813333pt;}
.yf4{bottom:746.373333pt;}
.y39{bottom:750.373333pt;}
.y1bb{bottom:755.173333pt;}
.yaa{bottom:756.933333pt;}
.y8f{bottom:757.093333pt;}
.y15c{bottom:759.653333pt;}
.yd2{bottom:761.093333pt;}
.y1ad{bottom:765.893333pt;}
.y7{bottom:770.373333pt;}
.y1c{bottom:775.173333pt;}
.y4b{bottom:776.613333pt;}
.y38{bottom:787.173333pt;}
.y8e{bottom:790.853333pt;}
.ya9{bottom:793.733333pt;}
.y15b{bottom:796.453333pt;}
.yd1{bottom:797.893333pt;}
.y1ba{bottom:802.693333pt;}
.y6{bottom:811.813333pt;}
.y1b{bottom:813.413333pt;}
.y37{bottom:823.973333pt;}
.y8d{bottom:831.333333pt;}
.y15a{bottom:833.253333pt;}
.y13c{bottom:834.053333pt;}
.y76{bottom:834.693333pt;}
.ya8{bottom:841.253333pt;}
.y5{bottom:848.613333pt;}
.y1ac{bottom:850.213333pt;}
.ya7{bottom:856.773333pt;}
.y1a{bottom:860.773333pt;}
.y159{bottom:861.893333pt;}
.y8c{bottom:869.573333pt;}
.y13b{bottom:870.853333pt;}
.y36{bottom:871.493333pt;}
.ya6{bottom:891.173333pt;}
.y111{bottom:897.573333pt;}
.y4{bottom:899.653333pt;}
.y8b{bottom:900.613333pt;}
.y8a{bottom:907.973333pt;}
.y19{bottom:908.293333pt;}
.ya5{bottom:925.573333pt;}
.y3{bottom:942.533333pt;}
.y18{bottom:945.093333pt;}
.y89{bottom:946.213333pt;}
.h13{height:33.760000pt;}
.h14{height:33.792000pt;}
.h18{height:36.800000pt;}
.h19{height:36.832000pt;}
.h1e{height:42.080000pt;}
.h5{height:42.084375pt;}
.h1d{height:42.240000pt;}
.h17{height:45.156250pt;}
.h26{height:47.742188pt;}
.h20{height:52.134375pt;}
.h2{height:52.832812pt;}
.h22{height:53.535000pt;}
.h23{height:53.664000pt;}
.ha{height:57.375000pt;}
.hf{height:57.787500pt;}
.h1{height:58.563750pt;}
.h11{height:59.340000pt;}
.h6{height:62.812500pt;}
.h7{height:64.500000pt;}
.h1b{height:66.383042pt;}
.h4{height:66.383438pt;}
.h9{height:66.404375pt;}
.h8{height:66.625000pt;}
.h1a{height:67.520000pt;}
.hd{height:70.698125pt;}
.h15{height:73.600000pt;}
.h3{height:75.465000pt;}
.h1c{height:81.600000pt;}
.he{height:87.227500pt;}
.h12{height:87.970000pt;}
.hb{height:88.883750pt;}
.hc{height:92.892500pt;}
.h10{height:108.672000pt;}
.h16{height:147.226667pt;}
.h27{height:262.560000pt;}
.h25{height:262.720000pt;}
.h24{height:262.880000pt;}
.h21{height:264.480000pt;}
.h1f{height:332.000000pt;}
.h0{height:1056.000000pt;}
.w14{width:45.120000pt;}
.w16{width:51.040000pt;}
.w13{width:52.160000pt;}
.w18{width:56.320000pt;}
.w17{width:62.432000pt;}
.w11{width:65.760000pt;}
.w10{width:65.792000pt;}
.w1a{width:66.112000pt;}
.w12{width:70.720000pt;}
.wc{width:80.800000pt;}
.w19{width:95.680000pt;}
.wa{width:96.672000pt;}
.we{width:100.320000pt;}
.wd{width:100.352000pt;}
.wb{width:109.472000pt;}
.w4{width:119.232000pt;}
.wf{width:120.640000pt;}
.w5{width:124.672000pt;}
.w8{width:124.800000pt;}
.w6{width:126.112000pt;}
.w7{width:128.992000pt;}
.w2{width:131.392000pt;}
.w9{width:131.840000pt;}
.w3{width:136.000000pt;}
.w15{width:153.146667pt;}
.w20{width:431.200000pt;}
.w1d{width:434.720000pt;}
.w1e{width:443.840000pt;}
.w1c{width:453.280000pt;}
.w1f{width:455.520000pt;}
.w1b{width:532.320000pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5d{left:4.000000pt;}
.x15{left:6.880000pt;}
.x2c{left:8.320000pt;}
.x1e{left:9.600000pt;}
.x47{left:10.720000pt;}
.x17{left:11.680000pt;}
.x35{left:12.960000pt;}
.x4a{left:14.400000pt;}
.x49{left:15.680000pt;}
.x43{left:16.640000pt;}
.x33{left:18.080000pt;}
.x53{left:19.360000pt;}
.x1b{left:20.346667pt;}
.x36{left:21.920000pt;}
.x23{left:23.546667pt;}
.x60{left:24.773333pt;}
.x22{left:26.240000pt;}
.x3c{left:27.360000pt;}
.x2b{left:28.320000pt;}
.x21{left:29.920000pt;}
.x2a{left:31.360000pt;}
.x3a{left:32.800000pt;}
.x31{left:34.120000pt;}
.x25{left:35.360000pt;}
.x5a{left:36.413333pt;}
.x1c{left:37.306667pt;}
.x5f{left:38.213333pt;}
.x20{left:39.200000pt;}
.x18{left:41.120000pt;}
.x69{left:42.306667pt;}
.x39{left:44.640000pt;}
.x59{left:46.266667pt;}
.x1f{left:47.200000pt;}
.x19{left:48.960000pt;}
.x3b{left:50.720000pt;}
.x28{left:53.760000pt;}
.x68{left:54.946667pt;}
.x70{left:60.066667pt;}
.x2f{left:65.914667pt;}
.x5b{left:83.706667pt;}
.x6c{left:86.053333pt;}
.x2{left:96.031988pt;}
.x63{left:97.151988pt;}
.x50{left:98.591988pt;}
.x6a{left:100.186667pt;}
.x5{left:101.631988pt;}
.x6e{left:105.631988pt;}
.x75{left:106.906667pt;}
.x62{left:108.831988pt;}
.x73{left:113.631988pt;}
.x71{left:115.653333pt;}
.x3{left:116.831988pt;}
.x8{left:120.031988pt;}
.x4e{left:120.991988pt;}
.x66{left:129.471988pt;}
.x54{left:133.920000pt;}
.x57{left:135.386655pt;}
.x76{left:138.746655pt;}
.x64{left:139.866655pt;}
.x52{left:141.760000pt;}
.x13{left:144.026655pt;}
.x14{left:151.386667pt;}
.x6{left:152.506655pt;}
.x7{left:155.386655pt;}
.x2e{left:158.906655pt;}
.x45{left:164.026667pt;}
.x6b{left:172.960000pt;}
.x6f{left:180.000000pt;}
.x58{left:180.960000pt;}
.x65{left:184.346655pt;}
.x67{left:187.520000pt;}
.x5e{left:190.560000pt;}
.x74{left:192.000000pt;}
.x61{left:199.333333pt;}
.x5c{left:208.253333pt;}
.xa{left:211.386655pt;}
.x26{left:217.466667pt;}
.xd{left:222.906655pt;}
.x30{left:229.146667pt;}
.x4{left:245.306655pt;}
.x12{left:270.306655pt;}
.x51{left:271.266655pt;}
.x16{left:283.426667pt;}
.x3d{left:284.546667pt;}
.x46{left:317.826667pt;}
.x32{left:326.466667pt;}
.x27{left:344.226667pt;}
.x3e{left:350.946667pt;}
.xc{left:365.346655pt;}
.x48{left:369.666667pt;}
.x10{left:377.346655pt;}
.x4f{left:380.226655pt;}
.x24{left:400.546655pt;}
.x1{left:404.386655pt;}
.xb{left:408.066655pt;}
.x11{left:412.546655pt;}
.x3f{left:417.346667pt;}
.x1a{left:420.226667pt;}
.xf{left:432.093321pt;}
.x34{left:436.573333pt;}
.xe{left:453.853321pt;}
.x29{left:473.853333pt;}
.x40{left:483.773333pt;}
.x4b{left:489.693333pt;}
.x37{left:518.173333pt;}
.x1d{left:540.093333pt;}
.x41{left:555.133333pt;}
.x4c{left:586.013333pt;}
.x4d{left:614.053321pt;}
.x38{left:619.173333pt;}
.x42{left:621.573333pt;}
.x72{left:624.133321pt;}
.x56{left:625.413321pt;}
.x55{left:635.013321pt;}
.x6d{left:636.133321pt;}
.x2d{left:645.253321pt;}
.x44{left:674.373333pt;}
.x9{left:723.973321pt;}
}




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