
    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_366947c404ebb16630f602c2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f19b68676700c10081444ec2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_cf16f4077213831225eef480.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_f8f643d0834449ff83fcc444.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_8030ee21f830baaf6284bf43.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7da88fe6963b45d8fd1cd5b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_32c71e874cb18413785bd37d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_777c06c869166594f864b6a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_3dee2b020c240cb180b5378b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b710ceab947b37b4f8bf4c88.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m3{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);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v2{vertical-align:27.360000px;}
.ls4{letter-spacing:-0.942000px;}
.ls9{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.126000px;}
.ls1a{letter-spacing:-0.108000px;}
.lsf{letter-spacing:-0.106800px;}
.lse{letter-spacing:-0.100200px;}
.lsa{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.lsc{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.312600px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.379920px;}
.lsb{letter-spacing:0.439920px;}
.ls17{letter-spacing:0.480000px;}
.ls2{letter-spacing:2.340000px;}
.ls15{letter-spacing:3.780000px;}
.ls11{letter-spacing:10.980000px;}
.ls18{letter-spacing:46.026720px;}
.ls13{letter-spacing:93.204000px;}
.ls7{letter-spacing:202.476000px;}
.ls8{letter-spacing:203.940000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-37.913760px;}
.ws14{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.199800px;}
.ws13{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wse{word-spacing:-14.839800px;}
.wsf{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.580000px;}
.ws7{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.518000px;}
.ws4{word-spacing:-13.500000px;}
.ws15{word-spacing:-13.482000px;}
.ws16{word-spacing:-13.392000px;}
.ws18{word-spacing:-13.374000px;}
.ws17{word-spacing:-13.140000px;}
.ws9{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws12{word-spacing:-9.750360px;}
.ws11{word-spacing:-9.437760px;}
.ws6{word-spacing:0.000000px;}
._12{margin-left:-3.022272px;}
._13{margin-left:-2.013120px;}
._0{margin-left:-1.013040px;}
._1{width:1.254240px;}
._4{width:3.012720px;}
._7{width:4.901040px;}
._6{width:6.035760px;}
._a{width:7.350480px;}
._9{width:8.546400px;}
._8{width:9.561600px;}
._3{width:10.697760px;}
._2{width:12.257280px;}
._5{width:13.489200px;}
._4e{width:14.772000px;}
._e{width:16.673040px;}
._10{width:17.748720px;}
._f{width:18.824400px;}
._11{width:20.490480px;}
._c{width:21.812400px;}
._b{width:23.186880px;}
._25{width:24.621840px;}
._1b{width:26.234640px;}
._2b{width:27.967680px;}
._15{width:29.064960px;}
._14{width:30.398400px;}
._3e{width:32.032800px;}
._26{width:34.002720px;}
._27{width:35.139600px;}
._19{width:36.275040px;}
._16{width:37.709280px;}
._37{width:38.789280px;}
._2d{width:39.800160px;}
._3c{width:41.055840px;}
._21{width:42.608880px;}
._41{width:44.282160px;}
._23{width:45.656640px;}
._35{width:46.852560px;}
._32{width:47.867040px;}
._1a{width:49.183200px;}
._42{width:50.916240px;}
._33{width:52.230960px;}
._3a{width:54.740880px;}
._31{width:55.756080px;}
._38{width:57.190320px;}
._45{width:58.266720px;}
._2c{width:59.640480px;}
._43{width:60.657120px;}
._20{width:62.987760px;}
._34{width:67.169520px;}
._17{width:68.366160px;}
._18{width:69.559920px;}
._40{width:72.369360px;}
._1c{width:73.692000px;}
._24{width:75.289680px;}
._3b{width:76.851360px;}
._4c{width:80.496720px;}
._47{width:82.827360px;}
._46{width:84.381840px;}
._2a{width:85.878480px;}
._29{width:87.010560px;}
._30{width:88.205760px;}
._49{width:91.313280px;}
._50{width:93.798000px;}
._22{width:95.556240px;}
._4a{width:98.962560px;}
._39{width:100.337040px;}
._4b{width:101.651760px;}
._2f{width:109.720080px;}
._4f{width:112.680000px;}
._1d{width:117.787680px;}
._1e{width:118.922400px;}
._28{width:122.269680px;}
._1f{width:124.122240px;}
._44{width:128.842560px;}
._36{width:131.771520px;}
._3f{width:136.312560px;}
._4d{width:139.680000px;}
._48{width:155.495520px;}
._3d{width:171.869760px;}
._2e{width:227.566080px;}
._d{width:502.176000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,124);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs4{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.y0{bottom:0.000000px;}
.y34{bottom:2.880000px;}
.yc6{bottom:3.240000px;}
.yec{bottom:3.960000px;}
.yc{bottom:4.500000px;}
.y140{bottom:11.520000px;}
.y10a{bottom:11.880000px;}
.y132{bottom:11.910000px;}
.y33{bottom:18.360000px;}
.ye8{bottom:19.800000px;}
.y198{bottom:20.334000px;}
.ycc{bottom:20.340000px;}
.yc8{bottom:20.520000px;}
.y109{bottom:20.550000px;}
.yd5{bottom:20.565000px;}
.yea{bottom:21.270000px;}
.yb{bottom:24.120000px;}
.y13e{bottom:28.800000px;}
.y19a{bottom:28.974000px;}
.y14c{bottom:28.980000px;}
.y143{bottom:29.160000px;}
.y32{bottom:34.020000px;}
.y197{bottom:37.614000px;}
.y14d{bottom:37.620000px;}
.yd4{bottom:37.665000px;}
.yd1{bottom:37.800000px;}
.y1b8{bottom:37.830000px;}
.yd8{bottom:39.960000px;}
.ye1{bottom:41.400000px;}
.yb3{bottom:43.950000px;}
.ya{bottom:44.100000px;}
.y13d{bottom:46.080000px;}
.y191{bottom:46.254000px;}
.y149{bottom:46.260000px;}
.y142{bottom:46.440000px;}
.y31{bottom:49.500000px;}
.y196{bottom:54.894000px;}
.y145{bottom:54.900000px;}
.y184{bottom:54.930000px;}
.y1a2{bottom:54.945000px;}
.y13c{bottom:55.080000px;}
.y16e{bottom:55.110000px;}
.y18e{bottom:55.125000px;}
.yd7{bottom:57.240000px;}
.y2{bottom:57.420000px;}
.ydf{bottom:58.680000px;}
.yae{bottom:58.830000px;}
.yb2{bottom:58.890000px;}
.y9{bottom:62.640000px;}
.y13f{bottom:63.360000px;}
.y190{bottom:63.534000px;}
.y148{bottom:63.540000px;}
.y17f{bottom:63.570000px;}
.y176{bottom:63.720000px;}
.y1a8{bottom:63.750000px;}
.y18a{bottom:63.765000px;}
.y30{bottom:64.980000px;}
.y165{bottom:68.220000px;}
.y195{bottom:72.174000px;}
.y144{bottom:72.180000px;}
.y183{bottom:72.210000px;}
.y14b{bottom:72.225000px;}
.y13b{bottom:72.360000px;}
.y16d{bottom:72.390000px;}
.y18d{bottom:72.405000px;}
.yad{bottom:73.590000px;}
.yb1{bottom:73.650000px;}
.yde{bottom:75.960000px;}
.y1{bottom:76.536000px;}
.y164{bottom:79.920000px;}
.y2f{bottom:80.460000px;}
.y18f{bottom:80.814000px;}
.y172{bottom:80.820000px;}
.y17e{bottom:80.850000px;}
.y147{bottom:80.865000px;}
.y175{bottom:81.000000px;}
.y8{bottom:82.620000px;}
.yb0{bottom:88.410000px;}
.yac{bottom:88.530000px;}
.y194{bottom:89.454000px;}
.y13a{bottom:89.460000px;}
.y182{bottom:89.490000px;}
.y14a{bottom:89.505000px;}
.y173{bottom:89.640000px;}
.y19e{bottom:89.670000px;}
.y18c{bottom:89.685000px;}
.y163{bottom:91.440000px;}
.y79{bottom:92.556000px;}
.y1ca{bottom:92.916000px;}
.ydd{bottom:93.240000px;}
.y2e{bottom:96.120000px;}
.y3a{bottom:96.516000px;}
.y199{bottom:98.094000px;}
.y171{bottom:98.100000px;}
.y17d{bottom:98.130000px;}
.y1b2{bottom:98.280000px;}
.y9e{bottom:98.856000px;}
.y167{bottom:100.290000px;}
.y7{bottom:101.520000px;}
.y14e{bottom:101.556000px;}
.y107{bottom:101.916000px;}
.y1aa{bottom:102.276000px;}
.y162{bottom:102.960000px;}
.y15c{bottom:103.170000px;}
.yaf{bottom:103.350000px;}
.y1c5{bottom:106.560000px;}
.y193{bottom:106.734000px;}
.y139{bottom:106.740000px;}
.y181{bottom:106.770000px;}
.y18b{bottom:106.785000px;}
.y78{bottom:109.836000px;}
.y15b{bottom:109.980000px;}
.y1c9{bottom:110.196000px;}
.y1e1{bottom:111.456000px;}
.y2d{bottom:111.645000px;}
.y234{bottom:111.816000px;}
.y39{bottom:113.796000px;}
.y161{bottom:114.480000px;}
.y1f9{bottom:114.516000px;}
.y1a0{bottom:115.200000px;}
.y174{bottom:115.380000px;}
.y1a9{bottom:115.410000px;}
.y1ae{bottom:115.734000px;}
.y9d{bottom:116.136000px;}
.y6{bottom:118.830000px;}
.y106{bottom:119.196000px;}
.y150{bottom:120.810000px;}
.y15a{bottom:121.500000px;}
.y166{bottom:122.610000px;}
.y192{bottom:123.834000px;}
.y1a1{bottom:123.840000px;}
.y138{bottom:124.020000px;}
.y180{bottom:124.050000px;}
.y160{bottom:126.000000px;}
.y77{bottom:127.116000px;}
.y2c{bottom:127.125000px;}
.y155{bottom:127.470000px;}
.y1c8{bottom:127.476000px;}
.y1e0{bottom:128.736000px;}
.y233{bottom:129.636000px;}
.y38{bottom:130.896000px;}
.y1f8{bottom:132.336000px;}
.y187{bottom:132.660000px;}
.y1ad{bottom:133.014000px;}
.y159{bottom:133.020000px;}
.y9c{bottom:133.416000px;}
.y105{bottom:136.476000px;}
.y178{bottom:136.836000px;}
.y15f{bottom:137.520000px;}
.y188{bottom:141.300000px;}
.y169{bottom:141.330000px;}
.y177{bottom:141.345000px;}
.y1c7{bottom:142.236000px;}
.y2b{bottom:142.605000px;}
.y76{bottom:144.216000px;}
.y158{bottom:144.540000px;}
.y1df{bottom:146.016000px;}
.y232{bottom:147.456000px;}
.y37{bottom:148.176000px;}
.y15e{bottom:149.040000px;}
.y1b1{bottom:149.940000px;}
.y1ac{bottom:150.294000px;}
.y1f7{bottom:150.330000px;}
.y1bd{bottom:150.660000px;}
.y9b{bottom:150.690000px;}
.y168{bottom:151.590000px;}
.y104{bottom:153.570000px;}
.y133{bottom:154.110000px;}
.y157{bottom:156.060000px;}
.y185{bottom:158.430000px;}
.y1b6{bottom:158.625000px;}
.ya2{bottom:160.530000px;}
.y15d{bottom:160.560000px;}
.y75{bottom:161.490000px;}
.y1de{bottom:163.290000px;}
.y231{bottom:165.270000px;}
.y36{bottom:167.250000px;}
.y1b0{bottom:167.265000px;}
.y1ab{bottom:167.394000px;}
.y156{bottom:167.580000px;}
.y9a{bottom:167.790000px;}
.y1bc{bottom:167.940000px;}
.y1f6{bottom:168.150000px;}
.y103{bottom:170.850000px;}
.y1af{bottom:171.930000px;}
.y154{bottom:172.080000px;}
.y1b5{bottom:175.905000px;}
.y1a6{bottom:176.580000px;}
.y74{bottom:178.770000px;}
.y1dd{bottom:180.570000px;}
.y230{bottom:183.270000px;}
.y153{bottom:183.600000px;}
.y1bb{bottom:185.040000px;}
.y99{bottom:185.070000px;}
.y1f5{bottom:185.970000px;}
.y102{bottom:188.130000px;}
.y1b4{bottom:193.185000px;}
.y1a5{bottom:193.860000px;}
.y152{bottom:195.120000px;}
.y35{bottom:195.870000px;}
.y73{bottom:196.050000px;}
.yce{bottom:196.785000px;}
.y1dc{bottom:197.670000px;}
.y22f{bottom:201.090000px;}
.y98{bottom:202.350000px;}
.y135{bottom:202.725000px;}
.y1f4{bottom:203.790000px;}
.y101{bottom:205.410000px;}
.ya1{bottom:206.640000px;}
.y1b3{bottom:210.285000px;}
.y1a4{bottom:210.990000px;}
.y72{bottom:213.330000px;}
.ycd{bottom:214.065000px;}
.y1db{bottom:214.950000px;}
.y2a{bottom:217.470000px;}
.y151{bottom:218.340000px;}
.y22e{bottom:218.910000px;}
.y97{bottom:219.630000px;}
.y134{bottom:220.005000px;}
.y1f3{bottom:221.610000px;}
.y100{bottom:222.690000px;}
.y1a3{bottom:228.270000px;}
.y71{bottom:230.610000px;}
.yca{bottom:231.165000px;}
.y1da{bottom:232.230000px;}
.y22d{bottom:236.730000px;}
.y96{bottom:236.910000px;}
.yb8{bottom:238.755000px;}
.y1f2{bottom:239.610000px;}
.yff{bottom:239.970000px;}
.yab{bottom:246.315000px;}
.y70{bottom:247.710000px;}
.y1d9{bottom:249.510000px;}
.ya0{bottom:252.720000px;}
.yb7{bottom:253.725000px;}
.y95{bottom:254.190000px;}
.y22c{bottom:254.550000px;}
.yfe{bottom:257.070000px;}
.y1f1{bottom:257.430000px;}
.y146{bottom:258.330000px;}
.yaa{bottom:261.075000px;}
.y17c{bottom:263.019000px;}
.y6f{bottom:264.990000px;}
.y1d8{bottom:266.790000px;}
.yb6{bottom:268.485000px;}
.y94{bottom:271.290000px;}
.y22b{bottom:272.370000px;}
.yfd{bottom:274.350000px;}
.y1f0{bottom:275.250000px;}
.y189{bottom:275.430000px;}
.ya9{bottom:275.835000px;}
.y17b{bottom:280.299000px;}
.y1c6{bottom:280.830000px;}
.y6e{bottom:282.270000px;}
.yb5{bottom:283.245000px;}
.y1d7{bottom:284.070000px;}
.y93{bottom:288.570000px;}
.y22a{bottom:290.370000px;}
.ya8{bottom:290.775000px;}
.yfc{bottom:291.630000px;}
.y1ef{bottom:293.070000px;}
.y17a{bottom:297.579000px;}
.yb4{bottom:298.185000px;}
.y6d{bottom:299.550000px;}
.y1d6{bottom:301.170000px;}
.y92{bottom:305.850000px;}
.y229{bottom:308.190000px;}
.yfb{bottom:308.910000px;}
.y1ee{bottom:310.890000px;}
.y179{bottom:314.859000px;}
.y6c{bottom:316.830000px;}
.y1d5{bottom:318.450000px;}
.y91{bottom:323.130000px;}
.y228{bottom:326.010000px;}
.yfa{bottom:326.190000px;}
.y1ed{bottom:328.755000px;}
.y6b{bottom:333.975000px;}
.y1d4{bottom:335.775000px;}
.y90{bottom:340.455000px;}
.yf9{bottom:343.515000px;}
.y227{bottom:343.875000px;}
.y1ec{bottom:346.755000px;}
.y19c{bottom:349.815000px;}
.y6a{bottom:351.255000px;}
.y1d3{bottom:353.055000px;}
.y8f{bottom:357.735000px;}
.ya7{bottom:359.175000px;}
.yf8{bottom:360.615000px;}
.y226{bottom:361.695000px;}
.y141{bottom:362.595000px;}
.y1eb{bottom:364.575000px;}
.y69{bottom:368.535000px;}
.y1d2{bottom:370.335000px;}
.ya6{bottom:374.115000px;}
.y8e{bottom:374.835000px;}
.y29{bottom:376.815000px;}
.yf7{bottom:377.895000px;}
.y225{bottom:379.695000px;}
.y1ea{bottom:382.395000px;}
.y1c4{bottom:385.275000px;}
.y68{bottom:385.815000px;}
.y1d1{bottom:387.615000px;}
.ya5{bottom:388.875000px;}
.y8d{bottom:392.115000px;}
.yf6{bottom:395.175000px;}
.y186{bottom:396.975000px;}
.y224{bottom:397.515000px;}
.y1e9{bottom:400.215000px;}
.y28{bottom:402.735000px;}
.y67{bottom:403.095000px;}
.yc3{bottom:403.455000px;}
.ya4{bottom:403.635000px;}
.y1d0{bottom:404.715000px;}
.y8c{bottom:409.395000px;}
.yf5{bottom:412.455000px;}
.y223{bottom:415.335000px;}
.y1e8{bottom:418.035000px;}
.ya3{bottom:418.575000px;}
.y66{bottom:420.375000px;}
.yc2{bottom:421.995000px;}
.y8b{bottom:426.675000px;}
.y27{bottom:426.855000px;}
.yf4{bottom:429.735000px;}
.y222{bottom:433.155000px;}
.y26{bottom:434.055000px;}
.y1e7{bottom:435.855000px;}
.y16b{bottom:436.935000px;}
.y65{bottom:437.475000px;}
.yc1{bottom:439.275000px;}
.y8a{bottom:443.955000px;}
.yf3{bottom:447.015000px;}
.y137{bottom:449.535000px;}
.y221{bottom:450.975000px;}
.y25{bottom:453.855000px;}
.y64{bottom:454.755000px;}
.yc0{bottom:456.555000px;}
.y89{bottom:461.055000px;}
.yf2{bottom:464.115000px;}
.y220{bottom:468.795000px;}
.y1e6{bottom:471.675000px;}
.y63{bottom:472.035000px;}
.y24{bottom:473.655000px;}
.ybf{bottom:473.835000px;}
.y88{bottom:478.335000px;}
.yf1{bottom:481.395000px;}
.y21f{bottom:486.795000px;}
.y62{bottom:489.315000px;}
.y1e5{bottom:489.495000px;}
.ybe{bottom:490.935000px;}
.y23{bottom:493.455000px;}
.y87{bottom:495.615000px;}
.yf0{bottom:498.675000px;}
.y21e{bottom:504.615000px;}
.y61{bottom:506.595000px;}
.y1e4{bottom:507.315000px;}
.ybd{bottom:508.215000px;}
.y86{bottom:512.895000px;}
.y22{bottom:513.435000px;}
.yef{bottom:515.955000px;}
.y21d{bottom:522.435000px;}
.y60{bottom:523.875000px;}
.y1e3{bottom:525.135000px;}
.ybc{bottom:525.495000px;}
.y1c3{bottom:527.115000px;}
.y85{bottom:530.175000px;}
.y21{bottom:533.235000px;}
.y136{bottom:535.755000px;}
.y21c{bottom:540.255000px;}
.y5f{bottom:540.975000px;}
.y1e2{bottom:541.515000px;}
.ybb{bottom:542.775000px;}
.y84{bottom:547.455000px;}
.yee{bottom:550.335000px;}
.y20{bottom:553.035000px;}
.y1c2{bottom:555.555000px;}
.y21b{bottom:558.075000px;}
.y5e{bottom:558.255000px;}
.yba{bottom:560.055000px;}
.y83{bottom:564.555000px;}
.yed{bottom:567.615000px;}
.y1f{bottom:572.835000px;}
.y1cf{bottom:575.535000px;}
.y5d{bottom:575.895000px;}
.y21a{bottom:576.075000px;}
.yb9{bottom:577.335000px;}
.y82{bottom:581.835000px;}
.ye9{bottom:582.375000px;}
.y124{bottom:584.895000px;}
.y131{bottom:588.315000px;}
.y1c1{bottom:589.935000px;}
.y1e{bottom:592.635000px;}
.y1ce{bottom:592.815000px;}
.y219{bottom:593.895000px;}
.y5c{bottom:594.435000px;}
.y81{bottom:599.145000px;}
.yeb{bottom:600.405000px;}
.y123{bottom:602.205000px;}
.y1cd{bottom:610.125000px;}
.y5b{bottom:611.745000px;}
.y1d{bottom:612.645000px;}
.y80{bottom:616.425000px;}
.ye6{bottom:618.405000px;}
.y122{bottom:619.485000px;}
.y1c0{bottom:624.525000px;}
.y130{bottom:626.145000px;}
.y1cc{bottom:627.405000px;}
.y5a{bottom:629.025000px;}
.y218{bottom:629.565000px;}
.y1c{bottom:632.445000px;}
.y7f{bottom:633.705000px;}
.y121{bottom:636.765000px;}
.y1ba{bottom:639.285000px;}
.y12f{bottom:640.005000px;}
.y1cb{bottom:645.045000px;}
.y59{bottom:646.305000px;}
.y217{bottom:647.385000px;}
.y7e{bottom:650.985000px;}
.y1b{bottom:652.245000px;}
.ye7{bottom:652.965000px;}
.y120{bottom:653.865000px;}
.y12e{bottom:654.405000px;}
.y58{bottom:663.585000px;}
.y216{bottom:665.205000px;}
.y7d{bottom:668.085000px;}
.ydc{bottom:670.965000px;}
.y11f{bottom:671.145000px;}
.y12d{bottom:671.685000px;}
.y1a{bottom:672.045000px;}
.y1a7{bottom:674.565000px;}
.y57{bottom:680.865000px;}
.y215{bottom:683.205000px;}
.y7c{bottom:684.645000px;}
.y11e{bottom:688.425000px;}
.ye5{bottom:688.965000px;}
.y19{bottom:691.845000px;}
.y56{bottom:697.965000px;}
.y7b{bottom:698.505000px;}
.y214{bottom:701.025000px;}
.y11d{bottom:705.705000px;}
.y12c{bottom:706.245000px;}
.ye4{bottom:706.965000px;}
.y7a{bottom:709.845000px;}
.y9f{bottom:709.920000px;}
.y18{bottom:711.825000px;}
.y55{bottom:715.245000px;}
.y213{bottom:718.845000px;}
.y11c{bottom:720.465000px;}
.y12b{bottom:723.345000px;}
.ye3{bottom:724.965000px;}
.y16a{bottom:726.225000px;}
.y54{bottom:732.525000px;}
.y17{bottom:736.485000px;}
.y212{bottom:736.665000px;}
.y11b{bottom:738.465000px;}
.y12a{bottom:740.625000px;}
.ye2{bottom:742.965000px;}
.y1bf{bottom:743.505000px;}
.y53{bottom:749.805000px;}
.y211{bottom:754.485000px;}
.y16{bottom:756.465000px;}
.y129{bottom:758.445000px;}
.ye0{bottom:760.965000px;}
.y52{bottom:767.085000px;}
.y210{bottom:772.485000px;}
.y11a{bottom:774.465000px;}
.y128{bottom:776.985000px;}
.yd6{bottom:778.965000px;}
.y51{bottom:784.365000px;}
.y15{bottom:788.325000px;}
.y20f{bottom:790.305000px;}
.y119{bottom:792.465000px;}
.y127{bottom:793.365000px;}
.ydb{bottom:796.965000px;}
.y50{bottom:801.465000px;}
.y14{bottom:806.865000px;}
.y126{bottom:807.225000px;}
.y20e{bottom:808.125000px;}
.y118{bottom:810.465000px;}
.y19b{bottom:813.345000px;}
.yda{bottom:814.965000px;}
.y125{bottom:818.565000px;}
.y14f{bottom:818.640000px;}
.y4f{bottom:818.745000px;}
.y13{bottom:823.425000px;}
.y20d{bottom:825.945000px;}
.y117{bottom:828.465000px;}
.yd9{bottom:832.965000px;}
.y4e{bottom:836.025000px;}
.y12{bottom:841.245000px;}
.y20c{bottom:843.765000px;}
.y116{bottom:846.465000px;}
.yc9{bottom:850.965000px;}
.y4d{bottom:853.305000px;}
.y20b{bottom:861.585000px;}
.y115{bottom:864.510000px;}
.y1be{bottom:865.050000px;}
.y11{bottom:869.370000px;}
.y4c{bottom:870.630000px;}
.y20a{bottom:879.630000px;}
.y170{bottom:882.330000px;}
.y114{bottom:882.510000px;}
.y4b{bottom:887.730000px;}
.y235{bottom:896.010000px;}
.y209{bottom:897.450000px;}
.y113{bottom:900.510000px;}
.y10{bottom:902.670000px;}
.yd3{bottom:903.390000px;}
.y4a{bottom:905.010000px;}
.y208{bottom:915.270000px;}
.y112{bottom:918.510000px;}
.y49{bottom:922.290000px;}
.y207{bottom:933.090000px;}
.y19f{bottom:934.890000px;}
.y111{bottom:936.510000px;}
.yd2{bottom:938.670000px;}
.y48{bottom:939.570000px;}
.yf{bottom:949.110000px;}
.y206{bottom:950.910000px;}
.y47{bottom:956.850000px;}
.y205{bottom:968.910000px;}
.y110{bottom:971.790000px;}
.yd0{bottom:973.950000px;}
.y46{bottom:974.130000px;}
.y1b9{bottom:986.550000px;}
.y204{bottom:986.730000px;}
.ye{bottom:987.810000px;}
.y45{bottom:991.230000px;}
.y16f{bottom:1003.830000px;}
.y203{bottom:1004.550000px;}
.y10f{bottom:1006.890000px;}
.yd{bottom:1008.510000px;}
.y202{bottom:1022.370000px;}
.y10e{bottom:1024.890000px;}
.y44{bottom:1025.790000px;}
.ycf{bottom:1026.510000px;}
.y5{bottom:1027.410000px;}
.y201{bottom:1040.190000px;}
.y10d{bottom:1042.890000px;}
.y43{bottom:1043.070000px;}
.y200{bottom:1058.010000px;}
.y42{bottom:1060.350000px;}
.y10c{bottom:1060.890000px;}
.ycb{bottom:1061.790000px;}
.y19d{bottom:1073.490000px;}
.y1ff{bottom:1076.010000px;}
.y41{bottom:1077.630000px;}
.y10b{bottom:1078.890000px;}
.y16c{bottom:1090.770000px;}
.y1fe{bottom:1093.830000px;}
.y40{bottom:1094.730000px;}
.yc7{bottom:1096.890000px;}
.y1fd{bottom:1111.650000px;}
.y3f{bottom:1112.010000px;}
.y108{bottom:1114.890000px;}
.y1b7{bottom:1125.330000px;}
.y3e{bottom:1129.320000px;}
.y1fc{bottom:1129.500000px;}
.yc5{bottom:1132.200000px;}
.y3d{bottom:1146.600000px;}
.y1fb{bottom:1147.320000px;}
.yc4{bottom:1152.720000px;}
.y4{bottom:1162.800000px;}
.y3c{bottom:1163.880000px;}
.y1fa{bottom:1165.320000px;}
.y3{bottom:1166.580000px;}
.y3b{bottom:1196.280000px;}
.he{height:5.653125px;}
.h1a{height:17.280000px;}
.h25{height:17.316000px;}
.h23{height:33.840000px;}
.h1d{height:34.380000px;}
.h1f{height:34.560000px;}
.h1b{height:34.596000px;}
.h24{height:35.316000px;}
.h2d{height:41.535703px;}
.hd{height:42.661046px;}
.h13{height:43.215117px;}
.h3{height:47.344922px;}
.h15{height:48.616875px;}
.h20{height:51.696000px;}
.h1e{height:51.840000px;}
.hb{height:52.971680px;}
.h10{height:52.998047px;}
.h19{height:53.709961px;}
.h12{height:54.421875px;}
.hc{height:58.621992px;}
.h8{height:58.651172px;}
.ha{height:59.038594px;}
.h6{height:60.226875px;}
.h40{height:61.423863px;}
.h2{height:65.010937px;}
.h7{height:65.884219px;}
.hf{height:66.757500px;}
.h3d{height:68.940000px;}
.h4{height:70.664062px;}
.h21{height:71.280000px;}
.h9{height:72.562500px;}
.h14{height:74.704922px;}
.h28{height:85.500000px;}
.h29{height:86.220000px;}
.h2f{height:86.256000px;}
.h2b{height:103.500000px;}
.h2a{height:103.536000px;}
.h22{height:107.280000px;}
.h3f{height:120.600000px;}
.h38{height:120.636000px;}
.h30{height:120.780000px;}
.h35{height:120.816000px;}
.h5{height:132.876000px;}
.h36{height:137.880000px;}
.h27{height:138.060000px;}
.h3a{height:138.096000px;}
.h11{height:155.190000px;}
.h34{height:155.340000px;}
.h31{height:155.370000px;}
.h17{height:166.858945px;}
.h18{height:167.002172px;}
.h33{height:172.470000px;}
.h3c{height:224.310000px;}
.h1c{height:245.190000px;}
.h2c{height:290.160000px;}
.h3b{height:293.970000px;}
.h3e{height:346.530000px;}
.h37{height:363.675000px;}
.h39{height:415.650000px;}
.h26{height:433.470000px;}
.h2e{height:450.795000px;}
.h16{height:468.000000px;}
.h32{height:588.675000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:92.736000px;}
.wa{width:96.156000px;}
.we{width:102.096000px;}
.wf{width:107.136000px;}
.w7{width:140.976000px;}
.w5{width:168.510000px;}
.w3{width:195.330000px;}
.w12{width:208.515000px;}
.w14{width:233.490000px;}
.wb{width:235.290000px;}
.w9{width:249.330000px;}
.w10{width:257.430000px;}
.w11{width:288.210000px;}
.w13{width:297.390000px;}
.wd{width:310.350000px;}
.w4{width:337.530000px;}
.w8{width:349.815000px;}
.w6{width:744.450000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x36{left:77.040000px;}
.x2{left:84.959987px;}
.x2e{left:86.400000px;}
.x31{left:88.740000px;}
.x9{left:100.260000px;}
.x4{left:106.596000px;}
.x3a{left:108.575987px;}
.x14{left:111.995987px;}
.x8{left:113.040000px;}
.x3b{left:115.487987px;}
.xc{left:129.645000px;}
.x17{left:138.995987px;}
.x15{left:142.235987px;}
.x7{left:166.680000px;}
.x5{left:173.514000px;}
.x37{left:180.030000px;}
.x32{left:185.610000px;}
.x3{left:224.129987px;}
.x2f{left:228.090000px;}
.x3c{left:234.509987px;}
.xf{left:235.829987px;}
.x3d{left:241.409987px;}
.x29{left:243.869987px;}
.x2a{left:253.409987px;}
.x2c{left:258.269987px;}
.x2d{left:259.349987px;}
.x2b{left:262.409987px;}
.x38{left:288.075000px;}
.x47{left:295.995000px;}
.x6{left:301.935000px;}
.x25{left:315.794987px;}
.x27{left:323.174987px;}
.x26{left:325.874987px;}
.x28{left:330.374987px;}
.x10{left:355.574987px;}
.x3e{left:360.434987px;}
.x1a{left:365.429987px;}
.x3f{left:367.349987px;}
.x18{left:377.669987px;}
.x19{left:387.209987px;}
.xd{left:393.554987px;}
.x1b{left:409.034987px;}
.x12{left:411.194987px;}
.x11{left:419.294987px;}
.x33{left:421.635000px;}
.x13{left:423.614987px;}
.x1d{left:425.414987px;}
.x1c{left:436.754987px;}
.x1{left:440.534987px;}
.xe{left:457.094987px;}
.x40{left:486.359987px;}
.x41{left:493.274987px;}
.x34{left:515.265000px;}
.x22{left:518.294987px;}
.x23{left:525.314987px;}
.x24{left:528.554987px;}
.x39{left:546.225000px;}
.x1f{left:575.669987px;}
.x30{left:578.625000px;}
.x1e{left:579.809987px;}
.x20{left:584.129987px;}
.x48{left:594.105000px;}
.x21{left:596.189987px;}
.x42{left:600.734987px;}
.x43{left:612.434987px;}
.x44{left:619.199987px;}
.xb{left:639.465000px;}
.x45{left:738.209987px;}
.x46{left:745.124987px;}
.x16{left:825.269987px;}
.x35{left:832.109987px;}
@media print{
.v3{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v2{vertical-align:24.320000pt;}
.ls4{letter-spacing:-0.837333pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.112000pt;}
.ls1a{letter-spacing:-0.096000pt;}
.lsf{letter-spacing:-0.094933pt;}
.lse{letter-spacing:-0.089067pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.lsc{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.277867pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.337707pt;}
.lsb{letter-spacing:0.391040pt;}
.ls17{letter-spacing:0.426667pt;}
.ls2{letter-spacing:2.080000pt;}
.ls15{letter-spacing:3.360000pt;}
.ls11{letter-spacing:9.760000pt;}
.ls18{letter-spacing:40.912640pt;}
.ls13{letter-spacing:82.848000pt;}
.ls7{letter-spacing:179.978667pt;}
.ls8{letter-spacing:181.280000pt;}
.wsb{word-spacing:-33.701120pt;}
.ws14{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.510933pt;}
.ws13{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wse{word-spacing:-13.190933pt;}
.wsf{word-spacing:-13.185067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.016000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws15{word-spacing:-11.984000pt;}
.ws16{word-spacing:-11.904000pt;}
.ws18{word-spacing:-11.888000pt;}
.ws17{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws12{word-spacing:-8.666987pt;}
.ws11{word-spacing:-8.389120pt;}
.ws6{word-spacing:0.000000pt;}
._12{margin-left:-2.686464pt;}
._13{margin-left:-1.789440pt;}
._0{margin-left:-0.900480pt;}
._1{width:1.114880pt;}
._4{width:2.677973pt;}
._7{width:4.356480pt;}
._6{width:5.365120pt;}
._a{width:6.533760pt;}
._9{width:7.596800pt;}
._8{width:8.499200pt;}
._3{width:9.509120pt;}
._2{width:10.895360pt;}
._5{width:11.990400pt;}
._4e{width:13.130667pt;}
._e{width:14.820480pt;}
._10{width:15.776640pt;}
._f{width:16.732800pt;}
._11{width:18.213760pt;}
._c{width:19.388800pt;}
._b{width:20.610560pt;}
._25{width:21.886080pt;}
._1b{width:23.319680pt;}
._2b{width:24.860160pt;}
._15{width:25.835520pt;}
._14{width:27.020800pt;}
._3e{width:28.473600pt;}
._26{width:30.224640pt;}
._27{width:31.235200pt;}
._19{width:32.244480pt;}
._16{width:33.519360pt;}
._37{width:34.479360pt;}
._2d{width:35.377920pt;}
._3c{width:36.494080pt;}
._21{width:37.874560pt;}
._41{width:39.361920pt;}
._23{width:40.583680pt;}
._35{width:41.646720pt;}
._32{width:42.548480pt;}
._1a{width:43.718400pt;}
._42{width:45.258880pt;}
._33{width:46.427520pt;}
._3a{width:48.658560pt;}
._31{width:49.560960pt;}
._38{width:50.835840pt;}
._45{width:51.792640pt;}
._2c{width:53.013760pt;}
._43{width:53.917440pt;}
._20{width:55.989120pt;}
._34{width:59.706240pt;}
._17{width:60.769920pt;}
._18{width:61.831040pt;}
._40{width:64.328320pt;}
._1c{width:65.504000pt;}
._24{width:66.924160pt;}
._3b{width:68.312320pt;}
._4c{width:71.552640pt;}
._47{width:73.624320pt;}
._46{width:75.006080pt;}
._2a{width:76.336427pt;}
._29{width:77.342720pt;}
._30{width:78.405120pt;}
._49{width:81.167360pt;}
._50{width:83.376000pt;}
._22{width:84.938880pt;}
._4a{width:87.966720pt;}
._39{width:89.188480pt;}
._4b{width:90.357120pt;}
._2f{width:97.528960pt;}
._4f{width:100.160000pt;}
._1d{width:104.700160pt;}
._1e{width:105.708800pt;}
._28{width:108.684160pt;}
._1f{width:110.330880pt;}
._44{width:114.526720pt;}
._36{width:117.130240pt;}
._3f{width:121.166720pt;}
._4d{width:124.160000pt;}
._48{width:138.218240pt;}
._3d{width:152.773120pt;}
._2e{width:202.280960pt;}
._d{width:446.378667pt;}
.fs7{font-size:5.120000pt;}
.fs4{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.560000pt;}
.yc6{bottom:2.880000pt;}
.yec{bottom:3.520000pt;}
.yc{bottom:4.000000pt;}
.y140{bottom:10.240000pt;}
.y10a{bottom:10.560000pt;}
.y132{bottom:10.586667pt;}
.y33{bottom:16.320000pt;}
.ye8{bottom:17.600000pt;}
.y198{bottom:18.074667pt;}
.ycc{bottom:18.080000pt;}
.yc8{bottom:18.240000pt;}
.y109{bottom:18.266667pt;}
.yd5{bottom:18.280000pt;}
.yea{bottom:18.906667pt;}
.yb{bottom:21.440000pt;}
.y13e{bottom:25.600000pt;}
.y19a{bottom:25.754667pt;}
.y14c{bottom:25.760000pt;}
.y143{bottom:25.920000pt;}
.y32{bottom:30.240000pt;}
.y197{bottom:33.434667pt;}
.y14d{bottom:33.440000pt;}
.yd4{bottom:33.480000pt;}
.yd1{bottom:33.600000pt;}
.y1b8{bottom:33.626667pt;}
.yd8{bottom:35.520000pt;}
.ye1{bottom:36.800000pt;}
.yb3{bottom:39.066667pt;}
.ya{bottom:39.200000pt;}
.y13d{bottom:40.960000pt;}
.y191{bottom:41.114667pt;}
.y149{bottom:41.120000pt;}
.y142{bottom:41.280000pt;}
.y31{bottom:44.000000pt;}
.y196{bottom:48.794667pt;}
.y145{bottom:48.800000pt;}
.y184{bottom:48.826667pt;}
.y1a2{bottom:48.840000pt;}
.y13c{bottom:48.960000pt;}
.y16e{bottom:48.986667pt;}
.y18e{bottom:49.000000pt;}
.yd7{bottom:50.880000pt;}
.y2{bottom:51.040000pt;}
.ydf{bottom:52.160000pt;}
.yae{bottom:52.293333pt;}
.yb2{bottom:52.346667pt;}
.y9{bottom:55.680000pt;}
.y13f{bottom:56.320000pt;}
.y190{bottom:56.474667pt;}
.y148{bottom:56.480000pt;}
.y17f{bottom:56.506667pt;}
.y176{bottom:56.640000pt;}
.y1a8{bottom:56.666667pt;}
.y18a{bottom:56.680000pt;}
.y30{bottom:57.760000pt;}
.y165{bottom:60.640000pt;}
.y195{bottom:64.154667pt;}
.y144{bottom:64.160000pt;}
.y183{bottom:64.186667pt;}
.y14b{bottom:64.200000pt;}
.y13b{bottom:64.320000pt;}
.y16d{bottom:64.346667pt;}
.y18d{bottom:64.360000pt;}
.yad{bottom:65.413333pt;}
.yb1{bottom:65.466667pt;}
.yde{bottom:67.520000pt;}
.y1{bottom:68.032000pt;}
.y164{bottom:71.040000pt;}
.y2f{bottom:71.520000pt;}
.y18f{bottom:71.834667pt;}
.y172{bottom:71.840000pt;}
.y17e{bottom:71.866667pt;}
.y147{bottom:71.880000pt;}
.y175{bottom:72.000000pt;}
.y8{bottom:73.440000pt;}
.yb0{bottom:78.586667pt;}
.yac{bottom:78.693333pt;}
.y194{bottom:79.514667pt;}
.y13a{bottom:79.520000pt;}
.y182{bottom:79.546667pt;}
.y14a{bottom:79.560000pt;}
.y173{bottom:79.680000pt;}
.y19e{bottom:79.706667pt;}
.y18c{bottom:79.720000pt;}
.y163{bottom:81.280000pt;}
.y79{bottom:82.272000pt;}
.y1ca{bottom:82.592000pt;}
.ydd{bottom:82.880000pt;}
.y2e{bottom:85.440000pt;}
.y3a{bottom:85.792000pt;}
.y199{bottom:87.194667pt;}
.y171{bottom:87.200000pt;}
.y17d{bottom:87.226667pt;}
.y1b2{bottom:87.360000pt;}
.y9e{bottom:87.872000pt;}
.y167{bottom:89.146667pt;}
.y7{bottom:90.240000pt;}
.y14e{bottom:90.272000pt;}
.y107{bottom:90.592000pt;}
.y1aa{bottom:90.912000pt;}
.y162{bottom:91.520000pt;}
.y15c{bottom:91.706667pt;}
.yaf{bottom:91.866667pt;}
.y1c5{bottom:94.720000pt;}
.y193{bottom:94.874667pt;}
.y139{bottom:94.880000pt;}
.y181{bottom:94.906667pt;}
.y18b{bottom:94.920000pt;}
.y78{bottom:97.632000pt;}
.y15b{bottom:97.760000pt;}
.y1c9{bottom:97.952000pt;}
.y1e1{bottom:99.072000pt;}
.y2d{bottom:99.240000pt;}
.y234{bottom:99.392000pt;}
.y39{bottom:101.152000pt;}
.y161{bottom:101.760000pt;}
.y1f9{bottom:101.792000pt;}
.y1a0{bottom:102.400000pt;}
.y174{bottom:102.560000pt;}
.y1a9{bottom:102.586667pt;}
.y1ae{bottom:102.874667pt;}
.y9d{bottom:103.232000pt;}
.y6{bottom:105.626667pt;}
.y106{bottom:105.952000pt;}
.y150{bottom:107.386667pt;}
.y15a{bottom:108.000000pt;}
.y166{bottom:108.986667pt;}
.y192{bottom:110.074667pt;}
.y1a1{bottom:110.080000pt;}
.y138{bottom:110.240000pt;}
.y180{bottom:110.266667pt;}
.y160{bottom:112.000000pt;}
.y77{bottom:112.992000pt;}
.y2c{bottom:113.000000pt;}
.y155{bottom:113.306667pt;}
.y1c8{bottom:113.312000pt;}
.y1e0{bottom:114.432000pt;}
.y233{bottom:115.232000pt;}
.y38{bottom:116.352000pt;}
.y1f8{bottom:117.632000pt;}
.y187{bottom:117.920000pt;}
.y1ad{bottom:118.234667pt;}
.y159{bottom:118.240000pt;}
.y9c{bottom:118.592000pt;}
.y105{bottom:121.312000pt;}
.y178{bottom:121.632000pt;}
.y15f{bottom:122.240000pt;}
.y188{bottom:125.600000pt;}
.y169{bottom:125.626667pt;}
.y177{bottom:125.640000pt;}
.y1c7{bottom:126.432000pt;}
.y2b{bottom:126.760000pt;}
.y76{bottom:128.192000pt;}
.y158{bottom:128.480000pt;}
.y1df{bottom:129.792000pt;}
.y232{bottom:131.072000pt;}
.y37{bottom:131.712000pt;}
.y15e{bottom:132.480000pt;}
.y1b1{bottom:133.280000pt;}
.y1ac{bottom:133.594667pt;}
.y1f7{bottom:133.626667pt;}
.y1bd{bottom:133.920000pt;}
.y9b{bottom:133.946667pt;}
.y168{bottom:134.746667pt;}
.y104{bottom:136.506667pt;}
.y133{bottom:136.986667pt;}
.y157{bottom:138.720000pt;}
.y185{bottom:140.826667pt;}
.y1b6{bottom:141.000000pt;}
.ya2{bottom:142.693333pt;}
.y15d{bottom:142.720000pt;}
.y75{bottom:143.546667pt;}
.y1de{bottom:145.146667pt;}
.y231{bottom:146.906667pt;}
.y36{bottom:148.666667pt;}
.y1b0{bottom:148.680000pt;}
.y1ab{bottom:148.794667pt;}
.y156{bottom:148.960000pt;}
.y9a{bottom:149.146667pt;}
.y1bc{bottom:149.280000pt;}
.y1f6{bottom:149.466667pt;}
.y103{bottom:151.866667pt;}
.y1af{bottom:152.826667pt;}
.y154{bottom:152.960000pt;}
.y1b5{bottom:156.360000pt;}
.y1a6{bottom:156.960000pt;}
.y74{bottom:158.906667pt;}
.y1dd{bottom:160.506667pt;}
.y230{bottom:162.906667pt;}
.y153{bottom:163.200000pt;}
.y1bb{bottom:164.480000pt;}
.y99{bottom:164.506667pt;}
.y1f5{bottom:165.306667pt;}
.y102{bottom:167.226667pt;}
.y1b4{bottom:171.720000pt;}
.y1a5{bottom:172.320000pt;}
.y152{bottom:173.440000pt;}
.y35{bottom:174.106667pt;}
.y73{bottom:174.266667pt;}
.yce{bottom:174.920000pt;}
.y1dc{bottom:175.706667pt;}
.y22f{bottom:178.746667pt;}
.y98{bottom:179.866667pt;}
.y135{bottom:180.200000pt;}
.y1f4{bottom:181.146667pt;}
.y101{bottom:182.586667pt;}
.ya1{bottom:183.680000pt;}
.y1b3{bottom:186.920000pt;}
.y1a4{bottom:187.546667pt;}
.y72{bottom:189.626667pt;}
.ycd{bottom:190.280000pt;}
.y1db{bottom:191.066667pt;}
.y2a{bottom:193.306667pt;}
.y151{bottom:194.080000pt;}
.y22e{bottom:194.586667pt;}
.y97{bottom:195.226667pt;}
.y134{bottom:195.560000pt;}
.y1f3{bottom:196.986667pt;}
.y100{bottom:197.946667pt;}
.y1a3{bottom:202.906667pt;}
.y71{bottom:204.986667pt;}
.yca{bottom:205.480000pt;}
.y1da{bottom:206.426667pt;}
.y22d{bottom:210.426667pt;}
.y96{bottom:210.586667pt;}
.yb8{bottom:212.226667pt;}
.y1f2{bottom:212.986667pt;}
.yff{bottom:213.306667pt;}
.yab{bottom:218.946667pt;}
.y70{bottom:220.186667pt;}
.y1d9{bottom:221.786667pt;}
.ya0{bottom:224.640000pt;}
.yb7{bottom:225.533333pt;}
.y95{bottom:225.946667pt;}
.y22c{bottom:226.266667pt;}
.yfe{bottom:228.506667pt;}
.y1f1{bottom:228.826667pt;}
.y146{bottom:229.626667pt;}
.yaa{bottom:232.066667pt;}
.y17c{bottom:233.794667pt;}
.y6f{bottom:235.546667pt;}
.y1d8{bottom:237.146667pt;}
.yb6{bottom:238.653333pt;}
.y94{bottom:241.146667pt;}
.y22b{bottom:242.106667pt;}
.yfd{bottom:243.866667pt;}
.y1f0{bottom:244.666667pt;}
.y189{bottom:244.826667pt;}
.ya9{bottom:245.186667pt;}
.y17b{bottom:249.154667pt;}
.y1c6{bottom:249.626667pt;}
.y6e{bottom:250.906667pt;}
.yb5{bottom:251.773333pt;}
.y1d7{bottom:252.506667pt;}
.y93{bottom:256.506667pt;}
.y22a{bottom:258.106667pt;}
.ya8{bottom:258.466667pt;}
.yfc{bottom:259.226667pt;}
.y1ef{bottom:260.506667pt;}
.y17a{bottom:264.514667pt;}
.yb4{bottom:265.053333pt;}
.y6d{bottom:266.266667pt;}
.y1d6{bottom:267.706667pt;}
.y92{bottom:271.866667pt;}
.y229{bottom:273.946667pt;}
.yfb{bottom:274.586667pt;}
.y1ee{bottom:276.346667pt;}
.y179{bottom:279.874667pt;}
.y6c{bottom:281.626667pt;}
.y1d5{bottom:283.066667pt;}
.y91{bottom:287.226667pt;}
.y228{bottom:289.786667pt;}
.yfa{bottom:289.946667pt;}
.y1ed{bottom:292.226667pt;}
.y6b{bottom:296.866667pt;}
.y1d4{bottom:298.466667pt;}
.y90{bottom:302.626667pt;}
.yf9{bottom:305.346667pt;}
.y227{bottom:305.666667pt;}
.y1ec{bottom:308.226667pt;}
.y19c{bottom:310.946667pt;}
.y6a{bottom:312.226667pt;}
.y1d3{bottom:313.826667pt;}
.y8f{bottom:317.986667pt;}
.ya7{bottom:319.266667pt;}
.yf8{bottom:320.546667pt;}
.y226{bottom:321.506667pt;}
.y141{bottom:322.306667pt;}
.y1eb{bottom:324.066667pt;}
.y69{bottom:327.586667pt;}
.y1d2{bottom:329.186667pt;}
.ya6{bottom:332.546667pt;}
.y8e{bottom:333.186667pt;}
.y29{bottom:334.946667pt;}
.yf7{bottom:335.906667pt;}
.y225{bottom:337.506667pt;}
.y1ea{bottom:339.906667pt;}
.y1c4{bottom:342.466667pt;}
.y68{bottom:342.946667pt;}
.y1d1{bottom:344.546667pt;}
.ya5{bottom:345.666667pt;}
.y8d{bottom:348.546667pt;}
.yf6{bottom:351.266667pt;}
.y186{bottom:352.866667pt;}
.y224{bottom:353.346667pt;}
.y1e9{bottom:355.746667pt;}
.y28{bottom:357.986667pt;}
.y67{bottom:358.306667pt;}
.yc3{bottom:358.626667pt;}
.ya4{bottom:358.786667pt;}
.y1d0{bottom:359.746667pt;}
.y8c{bottom:363.906667pt;}
.yf5{bottom:366.626667pt;}
.y223{bottom:369.186667pt;}
.y1e8{bottom:371.586667pt;}
.ya3{bottom:372.066667pt;}
.y66{bottom:373.666667pt;}
.yc2{bottom:375.106667pt;}
.y8b{bottom:379.266667pt;}
.y27{bottom:379.426667pt;}
.yf4{bottom:381.986667pt;}
.y222{bottom:385.026667pt;}
.y26{bottom:385.826667pt;}
.y1e7{bottom:387.426667pt;}
.y16b{bottom:388.386667pt;}
.y65{bottom:388.866667pt;}
.yc1{bottom:390.466667pt;}
.y8a{bottom:394.626667pt;}
.yf3{bottom:397.346667pt;}
.y137{bottom:399.586667pt;}
.y221{bottom:400.866667pt;}
.y25{bottom:403.426667pt;}
.y64{bottom:404.226667pt;}
.yc0{bottom:405.826667pt;}
.y89{bottom:409.826667pt;}
.yf2{bottom:412.546667pt;}
.y220{bottom:416.706667pt;}
.y1e6{bottom:419.266667pt;}
.y63{bottom:419.586667pt;}
.y24{bottom:421.026667pt;}
.ybf{bottom:421.186667pt;}
.y88{bottom:425.186667pt;}
.yf1{bottom:427.906667pt;}
.y21f{bottom:432.706667pt;}
.y62{bottom:434.946667pt;}
.y1e5{bottom:435.106667pt;}
.ybe{bottom:436.386667pt;}
.y23{bottom:438.626667pt;}
.y87{bottom:440.546667pt;}
.yf0{bottom:443.266667pt;}
.y21e{bottom:448.546667pt;}
.y61{bottom:450.306667pt;}
.y1e4{bottom:450.946667pt;}
.ybd{bottom:451.746667pt;}
.y86{bottom:455.906667pt;}
.y22{bottom:456.386667pt;}
.yef{bottom:458.626667pt;}
.y21d{bottom:464.386667pt;}
.y60{bottom:465.666667pt;}
.y1e3{bottom:466.786667pt;}
.ybc{bottom:467.106667pt;}
.y1c3{bottom:468.546667pt;}
.y85{bottom:471.266667pt;}
.y21{bottom:473.986667pt;}
.y136{bottom:476.226667pt;}
.y21c{bottom:480.226667pt;}
.y5f{bottom:480.866667pt;}
.y1e2{bottom:481.346667pt;}
.ybb{bottom:482.466667pt;}
.y84{bottom:486.626667pt;}
.yee{bottom:489.186667pt;}
.y20{bottom:491.586667pt;}
.y1c2{bottom:493.826667pt;}
.y21b{bottom:496.066667pt;}
.y5e{bottom:496.226667pt;}
.yba{bottom:497.826667pt;}
.y83{bottom:501.826667pt;}
.yed{bottom:504.546667pt;}
.y1f{bottom:509.186667pt;}
.y1cf{bottom:511.586667pt;}
.y5d{bottom:511.906667pt;}
.y21a{bottom:512.066667pt;}
.yb9{bottom:513.186667pt;}
.y82{bottom:517.186667pt;}
.ye9{bottom:517.666667pt;}
.y124{bottom:519.906667pt;}
.y131{bottom:522.946667pt;}
.y1c1{bottom:524.386667pt;}
.y1e{bottom:526.786667pt;}
.y1ce{bottom:526.946667pt;}
.y219{bottom:527.906667pt;}
.y5c{bottom:528.386667pt;}
.y81{bottom:532.573333pt;}
.yeb{bottom:533.693333pt;}
.y123{bottom:535.293333pt;}
.y1cd{bottom:542.333333pt;}
.y5b{bottom:543.773333pt;}
.y1d{bottom:544.573333pt;}
.y80{bottom:547.933333pt;}
.ye6{bottom:549.693333pt;}
.y122{bottom:550.653333pt;}
.y1c0{bottom:555.133333pt;}
.y130{bottom:556.573333pt;}
.y1cc{bottom:557.693333pt;}
.y5a{bottom:559.133333pt;}
.y218{bottom:559.613333pt;}
.y1c{bottom:562.173333pt;}
.y7f{bottom:563.293333pt;}
.y121{bottom:566.013333pt;}
.y1ba{bottom:568.253333pt;}
.y12f{bottom:568.893333pt;}
.y1cb{bottom:573.373333pt;}
.y59{bottom:574.493333pt;}
.y217{bottom:575.453333pt;}
.y7e{bottom:578.653333pt;}
.y1b{bottom:579.773333pt;}
.ye7{bottom:580.413333pt;}
.y120{bottom:581.213333pt;}
.y12e{bottom:581.693333pt;}
.y58{bottom:589.853333pt;}
.y216{bottom:591.293333pt;}
.y7d{bottom:593.853333pt;}
.ydc{bottom:596.413333pt;}
.y11f{bottom:596.573333pt;}
.y12d{bottom:597.053333pt;}
.y1a{bottom:597.373333pt;}
.y1a7{bottom:599.613333pt;}
.y57{bottom:605.213333pt;}
.y215{bottom:607.293333pt;}
.y7c{bottom:608.573333pt;}
.y11e{bottom:611.933333pt;}
.ye5{bottom:612.413333pt;}
.y19{bottom:614.973333pt;}
.y56{bottom:620.413333pt;}
.y7b{bottom:620.893333pt;}
.y214{bottom:623.133333pt;}
.y11d{bottom:627.293333pt;}
.y12c{bottom:627.773333pt;}
.ye4{bottom:628.413333pt;}
.y7a{bottom:630.973333pt;}
.y9f{bottom:631.040000pt;}
.y18{bottom:632.733333pt;}
.y55{bottom:635.773333pt;}
.y213{bottom:638.973333pt;}
.y11c{bottom:640.413333pt;}
.y12b{bottom:642.973333pt;}
.ye3{bottom:644.413333pt;}
.y16a{bottom:645.533333pt;}
.y54{bottom:651.133333pt;}
.y17{bottom:654.653333pt;}
.y212{bottom:654.813333pt;}
.y11b{bottom:656.413333pt;}
.y12a{bottom:658.333333pt;}
.ye2{bottom:660.413333pt;}
.y1bf{bottom:660.893333pt;}
.y53{bottom:666.493333pt;}
.y211{bottom:670.653333pt;}
.y16{bottom:672.413333pt;}
.y129{bottom:674.173333pt;}
.ye0{bottom:676.413333pt;}
.y52{bottom:681.853333pt;}
.y210{bottom:686.653333pt;}
.y11a{bottom:688.413333pt;}
.y128{bottom:690.653333pt;}
.yd6{bottom:692.413333pt;}
.y51{bottom:697.213333pt;}
.y15{bottom:700.733333pt;}
.y20f{bottom:702.493333pt;}
.y119{bottom:704.413333pt;}
.y127{bottom:705.213333pt;}
.ydb{bottom:708.413333pt;}
.y50{bottom:712.413333pt;}
.y14{bottom:717.213333pt;}
.y126{bottom:717.533333pt;}
.y20e{bottom:718.333333pt;}
.y118{bottom:720.413333pt;}
.y19b{bottom:722.973333pt;}
.yda{bottom:724.413333pt;}
.y125{bottom:727.613333pt;}
.y14f{bottom:727.680000pt;}
.y4f{bottom:727.773333pt;}
.y13{bottom:731.933333pt;}
.y20d{bottom:734.173333pt;}
.y117{bottom:736.413333pt;}
.yd9{bottom:740.413333pt;}
.y4e{bottom:743.133333pt;}
.y12{bottom:747.773333pt;}
.y20c{bottom:750.013333pt;}
.y116{bottom:752.413333pt;}
.yc9{bottom:756.413333pt;}
.y4d{bottom:758.493333pt;}
.y20b{bottom:765.853333pt;}
.y115{bottom:768.453333pt;}
.y1be{bottom:768.933333pt;}
.y11{bottom:772.773333pt;}
.y4c{bottom:773.893333pt;}
.y20a{bottom:781.893333pt;}
.y170{bottom:784.293333pt;}
.y114{bottom:784.453333pt;}
.y4b{bottom:789.093333pt;}
.y235{bottom:796.453333pt;}
.y209{bottom:797.733333pt;}
.y113{bottom:800.453333pt;}
.y10{bottom:802.373333pt;}
.yd3{bottom:803.013333pt;}
.y4a{bottom:804.453333pt;}
.y208{bottom:813.573333pt;}
.y112{bottom:816.453333pt;}
.y49{bottom:819.813333pt;}
.y207{bottom:829.413333pt;}
.y19f{bottom:831.013333pt;}
.y111{bottom:832.453333pt;}
.yd2{bottom:834.373333pt;}
.y48{bottom:835.173333pt;}
.yf{bottom:843.653333pt;}
.y206{bottom:845.253333pt;}
.y47{bottom:850.533333pt;}
.y205{bottom:861.253333pt;}
.y110{bottom:863.813333pt;}
.yd0{bottom:865.733333pt;}
.y46{bottom:865.893333pt;}
.y1b9{bottom:876.933333pt;}
.y204{bottom:877.093333pt;}
.ye{bottom:878.053333pt;}
.y45{bottom:881.093333pt;}
.y16f{bottom:892.293333pt;}
.y203{bottom:892.933333pt;}
.y10f{bottom:895.013333pt;}
.yd{bottom:896.453333pt;}
.y202{bottom:908.773333pt;}
.y10e{bottom:911.013333pt;}
.y44{bottom:911.813333pt;}
.ycf{bottom:912.453333pt;}
.y5{bottom:913.253333pt;}
.y201{bottom:924.613333pt;}
.y10d{bottom:927.013333pt;}
.y43{bottom:927.173333pt;}
.y200{bottom:940.453333pt;}
.y42{bottom:942.533333pt;}
.y10c{bottom:943.013333pt;}
.ycb{bottom:943.813333pt;}
.y19d{bottom:954.213333pt;}
.y1ff{bottom:956.453333pt;}
.y41{bottom:957.893333pt;}
.y10b{bottom:959.013333pt;}
.y16c{bottom:969.573333pt;}
.y1fe{bottom:972.293333pt;}
.y40{bottom:973.093333pt;}
.yc7{bottom:975.013333pt;}
.y1fd{bottom:988.133333pt;}
.y3f{bottom:988.453333pt;}
.y108{bottom:991.013333pt;}
.y1b7{bottom:1000.293333pt;}
.y3e{bottom:1003.840000pt;}
.y1fc{bottom:1004.000000pt;}
.yc5{bottom:1006.400000pt;}
.y3d{bottom:1019.200000pt;}
.y1fb{bottom:1019.840000pt;}
.yc4{bottom:1024.640000pt;}
.y4{bottom:1033.600000pt;}
.y3c{bottom:1034.560000pt;}
.y1fa{bottom:1035.840000pt;}
.y3{bottom:1036.960000pt;}
.y3b{bottom:1063.360000pt;}
.he{height:5.025000pt;}
.h1a{height:15.360000pt;}
.h25{height:15.392000pt;}
.h23{height:30.080000pt;}
.h1d{height:30.560000pt;}
.h1f{height:30.720000pt;}
.h1b{height:30.752000pt;}
.h24{height:31.392000pt;}
.h2d{height:36.920625pt;}
.hd{height:37.920930pt;}
.h13{height:38.413438pt;}
.h3{height:42.084375pt;}
.h15{height:43.215000pt;}
.h20{height:45.952000pt;}
.h1e{height:46.080000pt;}
.hb{height:47.085938pt;}
.h10{height:47.109375pt;}
.h19{height:47.742188pt;}
.h12{height:48.375000pt;}
.hc{height:52.108438pt;}
.h8{height:52.134375pt;}
.ha{height:52.478750pt;}
.h6{height:53.535000pt;}
.h40{height:54.598989pt;}
.h2{height:57.787500pt;}
.h7{height:58.563750pt;}
.hf{height:59.340000pt;}
.h3d{height:61.280000pt;}
.h4{height:62.812500pt;}
.h21{height:63.360000pt;}
.h9{height:64.500000pt;}
.h14{height:66.404375pt;}
.h28{height:76.000000pt;}
.h29{height:76.640000pt;}
.h2f{height:76.672000pt;}
.h2b{height:92.000000pt;}
.h2a{height:92.032000pt;}
.h22{height:95.360000pt;}
.h3f{height:107.200000pt;}
.h38{height:107.232000pt;}
.h30{height:107.360000pt;}
.h35{height:107.392000pt;}
.h5{height:118.112000pt;}
.h36{height:122.560000pt;}
.h27{height:122.720000pt;}
.h3a{height:122.752000pt;}
.h11{height:137.946667pt;}
.h34{height:138.080000pt;}
.h31{height:138.106667pt;}
.h17{height:148.319063pt;}
.h18{height:148.446375pt;}
.h33{height:153.306667pt;}
.h3c{height:199.386667pt;}
.h1c{height:217.946667pt;}
.h2c{height:257.920000pt;}
.h3b{height:261.306667pt;}
.h3e{height:308.026667pt;}
.h37{height:323.266667pt;}
.h39{height:369.466667pt;}
.h26{height:385.306667pt;}
.h2e{height:400.706667pt;}
.h16{height:416.000000pt;}
.h32{height:523.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:82.432000pt;}
.wa{width:85.472000pt;}
.we{width:90.752000pt;}
.wf{width:95.232000pt;}
.w7{width:125.312000pt;}
.w5{width:149.786667pt;}
.w3{width:173.626667pt;}
.w12{width:185.346667pt;}
.w14{width:207.546667pt;}
.wb{width:209.146667pt;}
.w9{width:221.626667pt;}
.w10{width:228.826667pt;}
.w11{width:256.186667pt;}
.w13{width:264.346667pt;}
.wd{width:275.866667pt;}
.w4{width:300.026667pt;}
.w8{width:310.946667pt;}
.w6{width:661.733333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x36{left:68.480000pt;}
.x2{left:75.519988pt;}
.x2e{left:76.800000pt;}
.x31{left:78.880000pt;}
.x9{left:89.120000pt;}
.x4{left:94.752000pt;}
.x3a{left:96.511988pt;}
.x14{left:99.551988pt;}
.x8{left:100.480000pt;}
.x3b{left:102.655988pt;}
.xc{left:115.240000pt;}
.x17{left:123.551988pt;}
.x15{left:126.431988pt;}
.x7{left:148.160000pt;}
.x5{left:154.234667pt;}
.x37{left:160.026667pt;}
.x32{left:164.986667pt;}
.x3{left:199.226655pt;}
.x2f{left:202.746667pt;}
.x3c{left:208.453322pt;}
.xf{left:209.626655pt;}
.x3d{left:214.586655pt;}
.x29{left:216.773322pt;}
.x2a{left:225.253322pt;}
.x2c{left:229.573322pt;}
.x2d{left:230.533322pt;}
.x2b{left:233.253322pt;}
.x38{left:256.066667pt;}
.x47{left:263.106667pt;}
.x6{left:268.386667pt;}
.x25{left:280.706655pt;}
.x27{left:287.266655pt;}
.x26{left:289.666655pt;}
.x28{left:293.666655pt;}
.x10{left:316.066655pt;}
.x3e{left:320.386655pt;}
.x1a{left:324.826655pt;}
.x3f{left:326.533322pt;}
.x18{left:335.706655pt;}
.x19{left:344.186655pt;}
.xd{left:349.826655pt;}
.x1b{left:363.586655pt;}
.x12{left:365.506655pt;}
.x11{left:372.706655pt;}
.x33{left:374.786667pt;}
.x13{left:376.546655pt;}
.x1d{left:378.146655pt;}
.x1c{left:388.226655pt;}
.x1{left:391.586655pt;}
.xe{left:406.306655pt;}
.x40{left:432.319988pt;}
.x41{left:438.466655pt;}
.x34{left:458.013333pt;}
.x22{left:460.706655pt;}
.x23{left:466.946655pt;}
.x24{left:469.826655pt;}
.x39{left:485.533333pt;}
.x1f{left:511.706655pt;}
.x30{left:514.333333pt;}
.x1e{left:515.386655pt;}
.x20{left:519.226655pt;}
.x48{left:528.093333pt;}
.x21{left:529.946655pt;}
.x42{left:533.986655pt;}
.x43{left:544.386655pt;}
.x44{left:550.399988pt;}
.xb{left:568.413333pt;}
.x45{left:656.186655pt;}
.x46{left:662.333322pt;}
.x16{left:733.573322pt;}
.x35{left:739.653322pt;}
}




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