
    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_0f13d45945bb94a2afd54d18.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_d0df8eb1d88598acef055ccf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ae0872a77903764926737853.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_ace71053a3180a2afd793fab.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_136c61414b06881576ac60ca.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_afc85e18cff2219325adb4c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_905f8006a8d6898d5d3decab.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ca54dccaf6dc241b5235ce7c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_b2942b5601a9a6fee0f3d5d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.944824;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_e4b8d38a45391e77ceb3e2c9.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c954f005f30cb62850ddc4de.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_77a566c1a6d94a53c8562893.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_81abbc70fa103f336a386ea3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.853027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252626,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.291012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.291012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.291012,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);}
.v1{vertical-align:-87.840000px;}
.v3{vertical-align:-30.240000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:9.360000px;}
.va{vertical-align:14.417554px;}
.vb{vertical-align:15.749832px;}
.v5{vertical-align:23.760000px;}
.v7{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.v6{vertical-align:31.680000px;}
.v8{vertical-align:59.040000px;}
.ls5{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.702000px;}
.lsa{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.108000px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls16{letter-spacing:0.104446px;}
.ls7{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.219000px;}
.lse{letter-spacing:0.260400px;}
.ls1{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.612000px;}
.ls10{letter-spacing:0.720000px;}
.ls15{letter-spacing:25.308000px;}
.ls11{letter-spacing:29.628000px;}
.lsc{letter-spacing:48.348000px;}
.ls13{letter-spacing:52.668000px;}
.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;}
}
.ws5{word-spacing:-19.457280px;}
.wse{word-spacing:-19.440000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-13.860000px;}
.wsd{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.284000px;}
.wsa{word-spacing:-11.140085px;}
.ws3{word-spacing:-10.440000px;}
.wsf{word-spacing:-10.361731px;}
.wsb{word-spacing:-9.485233px;}
.ws9{word-spacing:-9.000000px;}
.wsc{word-spacing:-6.355106px;}
.ws6{word-spacing:0.000000px;}
._19{margin-left:-13.608000px;}
._1a{margin-left:-10.008000px;}
._1e{margin-left:-5.238000px;}
._21{margin-left:-2.862000px;}
._0{margin-left:-1.026000px;}
._1{width:1.866000px;}
._7{width:3.348000px;}
._3{width:4.590000px;}
._9{width:5.640000px;}
._a{width:6.672000px;}
._c{width:8.665200px;}
._6{width:9.990000px;}
._d{width:11.772000px;}
._b{width:15.174000px;}
._8{width:16.416000px;}
._4{width:17.928000px;}
._5{width:19.548000px;}
._10{width:21.060000px;}
._11{width:22.542000px;}
._12{width:23.670000px;}
._e{width:24.714000px;}
._1d{width:25.758000px;}
._17{width:26.838000px;}
._16{width:27.918000px;}
._f{width:28.998000px;}
._28{width:30.780000px;}
._30{width:31.992000px;}
._13{width:33.426000px;}
._14{width:34.506000px;}
._15{width:36.120000px;}
._2a{width:37.206000px;}
._27{width:39.258000px;}
._1f{width:40.392000px;}
._2b{width:41.838000px;}
._18{width:45.956160px;}
._2d{width:47.424000px;}
._20{width:48.492000px;}
._2c{width:51.300000px;}
._29{width:63.522000px;}
._24{width:66.504000px;}
._1c{width:86.935920px;}
._1b{width:88.413120px;}
._2e{width:113.616000px;}
._2f{width:114.750000px;}
._25{width:131.376000px;}
._22{width:150.204000px;}
._23{width:161.112000px;}
._26{width:165.432000px;}
._2{width:1169.580000px;}
.fca{color:rgb(238,0,0);}
.fc7{color:transparent;}
.fc8{color:rgb(38,74,96);}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc6{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc9{color:rgb(1,2,5);}
.fc5{color:rgb(32,33,36);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:25.420423px;}
.fs10{font-size:27.769440px;}
.fsa{font-size:36.000000px;}
.fsd{font-size:37.940930px;}
.fsb{font-size:38.880000px;}
.fsf{font-size:41.446926px;}
.fs5{font-size:41.760000px;}
.fsc{font-size:44.560340px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:102.240000px;}
.fs2{font-size:108.000000px;}
.y23e{bottom:-21.067991px;}
.y248{bottom:-9.151999px;}
.y1f0{bottom:-6.918735px;}
.y201{bottom:-5.287701px;}
.y0{bottom:0.000000px;}
.y1f5{bottom:2.086751px;}
.y1f3{bottom:2.102560px;}
.y1fa{bottom:2.181603px;}
.y242{bottom:2.279581px;}
.y1e3{bottom:2.450819px;}
.y1e6{bottom:2.469386px;}
.y1eb{bottom:2.562220px;}
.y1fc{bottom:2.940422px;}
.y4{bottom:3.060000px;}
.y1ec{bottom:3.453426px;}
.y247{bottom:4.649482px;}
.y240{bottom:5.932091px;}
.y245{bottom:9.553516px;}
.y79{bottom:9.720000px;}
.y15b{bottom:10.065000px;}
.y7b{bottom:10.080000px;}
.y80{bottom:10.125000px;}
.y160{bottom:10.245000px;}
.y7d{bottom:10.260000px;}
.y18f{bottom:10.980000px;}
.y1f2{bottom:14.717919px;}
.y1ff{bottom:14.720765px;}
.y1f6{bottom:14.796963px;}
.y5{bottom:15.660000px;}
.y243{bottom:16.081407px;}
.y1e5{bottom:17.285699px;}
.y1e7{bottom:17.378533px;}
.y246{bottom:18.534547px;}
.y153{bottom:18.720000px;}
.y3{bottom:18.900000px;}
.y154{bottom:27.540000px;}
.y1f8{bottom:29.043782px;}
.y6{bottom:39.780000px;}
.y19f{bottom:45.540000px;}
.y2{bottom:60.660000px;}
.y1e9{bottom:63.854967px;}
.y41{bottom:68.790000px;}
.y40{bottom:88.770000px;}
.ya8{bottom:101.700000px;}
.y1e1{bottom:103.140000px;}
.y23c{bottom:108.360000px;}
.y3f{bottom:108.570000px;}
.y13f{bottom:108.720000px;}
.y168{bottom:111.240000px;}
.y37{bottom:112.680000px;}
.yd9{bottom:117.000000px;}
.y71{bottom:118.080000px;}
.ya7{bottom:119.520000px;}
.y33{bottom:121.680000px;}
.y18c{bottom:121.860000px;}
.y212{bottom:122.400000px;}
.y1ba{bottom:124.740000px;}
.y23b{bottom:126.180000px;}
.y13e{bottom:126.720000px;}
.y3e{bottom:128.370000px;}
.yf6{bottom:129.600000px;}
.y1e0{bottom:129.960000px;}
.y36{bottom:130.500000px;}
.yd8{bottom:134.820000px;}
.y70{bottom:136.080000px;}
.ya6{bottom:137.340000px;}
.y167{bottom:138.060000px;}
.y32{bottom:139.500000px;}
.y11d{bottom:141.660000px;}
.y211{bottom:142.200000px;}
.y1b9{bottom:142.740000px;}
.y23a{bottom:144.000000px;}
.y13d{bottom:144.540000px;}
.y3d{bottom:148.170000px;}
.y35{bottom:148.320000px;}
.y18b{bottom:149.940000px;}
.y1df{bottom:153.900000px;}
.y200{bottom:154.065000px;}
.y166{bottom:156.060000px;}
.yf5{bottom:156.420000px;}
.ya5{bottom:157.140000px;}
.y31{bottom:157.320000px;}
.y1fe{bottom:157.598565px;}
.yd7{bottom:161.640000px;}
.y239{bottom:162.000000px;}
.y13c{bottom:162.360000px;}
.y6f{bottom:162.540000px;}
.y34{bottom:166.320000px;}
.y3c{bottom:168.015000px;}
.y11c{bottom:168.840000px;}
.y1b8{bottom:169.560000px;}
.y210{bottom:175.140000px;}
.y30{bottom:175.320000px;}
.y18a{bottom:178.020000px;}
.y165{bottom:178.380000px;}
.yd6{bottom:179.460000px;}
.y238{bottom:179.820000px;}
.y13b{bottom:180.180000px;}
.y1fd{bottom:182.847938px;}
.ya4{bottom:183.060000px;}
.yf4{bottom:183.420000px;}
.y11b{bottom:186.660000px;}
.y1b7{bottom:187.380000px;}
.y3b{bottom:187.995000px;}
.y6e{bottom:189.360000px;}
.y20f{bottom:192.960000px;}
.y2f{bottom:193.140000px;}
.y1f7{bottom:196.316969px;}
.yd5{bottom:197.280000px;}
.y237{bottom:197.640000px;}
.y13a{bottom:198.000000px;}
.yf3{bottom:201.240000px;}
.y11a{bottom:204.480000px;}
.y1b6{bottom:205.200000px;}
.y189{bottom:205.605000px;}
.y164{bottom:205.965000px;}
.y6d{bottom:207.210000px;}
.y3a{bottom:207.795000px;}
.y1fb{bottom:209.785999px;}
.y20e{bottom:210.810000px;}
.y2e{bottom:210.990000px;}
.yd4{bottom:215.310000px;}
.y236{bottom:215.490000px;}
.ya3{bottom:215.850000px;}
.y119{bottom:222.510000px;}
.y1b5{bottom:223.050000px;}
.y1f9{bottom:223.179147px;}
.yf2{bottom:227.730000px;}
.y20d{bottom:228.630000px;}
.y2d{bottom:230.790000px;}
.yd3{bottom:233.130000px;}
.y235{bottom:233.310000px;}
.y163{bottom:233.505000px;}
.ya2{bottom:233.670000px;}
.y188{bottom:233.685000px;}
.y139{bottom:233.850000px;}
.y6c{bottom:234.030000px;}
.y1f4{bottom:236.649758px;}
.y39{bottom:238.035000px;}
.y1b4{bottom:241.050000px;}
.y20c{bottom:246.450000px;}
.y118{bottom:249.330000px;}
.yd2{bottom:250.950000px;}
.y234{bottom:251.310000px;}
.ya1{bottom:251.490000px;}
.y138{bottom:251.670000px;}
.yf1{bottom:254.550000px;}
.y6b{bottom:258.150000px;}
.y1b3{bottom:258.870000px;}
.y162{bottom:261.225000px;}
.y187{bottom:261.765000px;}
.y1f1{bottom:261.975329px;}
.y2c{bottom:263.190000px;}
.y20b{bottom:264.270000px;}
.yd1{bottom:268.770000px;}
.y233{bottom:269.130000px;}
.ya0{bottom:269.310000px;}
.y137{bottom:269.490000px;}
.y117{bottom:276.150000px;}
.y1b2{bottom:276.690000px;}
.yf0{bottom:278.670000px;}
.y38{bottom:279.720000px;}
.y20a{bottom:282.270000px;}
.yd0{bottom:286.590000px;}
.y232{bottom:286.950000px;}
.y9f{bottom:287.310000px;}
.y1de{bottom:287.850000px;}
.y161{bottom:288.765000px;}
.y186{bottom:289.305000px;}
.y2b{bottom:290.190000px;}
.y1b1{bottom:294.510000px;}
.y43{bottom:299.550000px;}
.y209{bottom:300.090000px;}
.y116{bottom:302.970000px;}
.ycf{bottom:304.410000px;}
.y231{bottom:304.770000px;}
.y9e{bottom:305.130000px;}
.y1dd{bottom:305.670000px;}
.y136{bottom:307.110000px;}
.y15f{bottom:316.305000px;}
.y2a{bottom:317.010000px;}
.y185{bottom:317.385000px;}
.y1b0{bottom:320.970000px;}
.yce{bottom:322.050000px;}
.y230{bottom:322.590000px;}
.y9d{bottom:322.950000px;}
.y1dc{bottom:323.490000px;}
.y208{bottom:326.550000px;}
.y42{bottom:328.710000px;}
.y115{bottom:329.790000px;}
.y135{bottom:340.050000px;}
.y22f{bottom:340.410000px;}
.y1db{bottom:341.310000px;}
.y25{bottom:343.830000px;}
.y15e{bottom:344.025000px;}
.y184{bottom:345.465000px;}
.y1af{bottom:347.790000px;}
.ycd{bottom:349.230000px;}
.y9c{bottom:349.770000px;}
.y29{bottom:352.650000px;}
.y207{bottom:353.370000px;}
.y114{bottom:356.610000px;}
.y134{bottom:357.870000px;}
.y22e{bottom:358.410000px;}
.y1da{bottom:359.130000px;}
.y1ae{bottom:365.790000px;}
.ycc{bottom:367.050000px;}
.y9b{bottom:367.590000px;}
.y24{bottom:370.650000px;}
.y15d{bottom:371.565000px;}
.y183{bottom:373.005000px;}
.y133{bottom:375.690000px;}
.y22d{bottom:376.230000px;}
.y1d9{bottom:376.950000px;}
.y206{bottom:377.490000px;}
.y23d{bottom:378.390000px;}
.y28{bottom:379.470000px;}
.y113{bottom:383.610000px;}
.ycb{bottom:384.870000px;}
.y9a{bottom:385.410000px;}
.y1ad{bottom:388.125000px;}
.y132{bottom:393.510000px;}
.y22c{bottom:394.050000px;}
.y1d8{bottom:394.950000px;}
.y23{bottom:397.470000px;}
.y15c{bottom:399.285000px;}
.y182{bottom:401.085000px;}
.yca{bottom:402.690000px;}
.y99{bottom:403.410000px;}
.y27{bottom:406.290000px;}
.y244{bottom:409.255008px;}
.y112{bottom:410.430000px;}
.y131{bottom:411.330000px;}
.y22b{bottom:411.870000px;}
.y1ac{bottom:415.665000px;}
.yc9{bottom:420.690000px;}
.y98{bottom:421.230000px;}
.y1d7{bottom:421.770000px;}
.y22{bottom:424.650000px;}
.y15a{bottom:426.825000px;}
.y181{bottom:429.165000px;}
.y130{bottom:429.330000px;}
.y22a{bottom:429.690000px;}
.y241{bottom:431.242602px;}
.y26{bottom:433.290000px;}
.y111{bottom:436.890000px;}
.yc8{bottom:438.510000px;}
.y97{bottom:439.050000px;}
.y1d6{bottom:439.590000px;}
.y21{bottom:442.695000px;}
.y1ab{bottom:443.235000px;}
.y12f{bottom:447.195000px;}
.y229{bottom:447.735000px;}
.y159{bottom:454.395000px;}
.yc7{bottom:456.375000px;}
.y180{bottom:456.735000px;}
.y96{bottom:456.915000px;}
.y1d5{bottom:457.455000px;}
.y20{bottom:460.155000px;}
.y110{bottom:464.115000px;}
.y228{bottom:465.555000px;}
.yef{bottom:466.275000px;}
.y1aa{bottom:470.955000px;}
.y6a{bottom:473.115000px;}
.y23f{bottom:473.432982px;}
.y12e{bottom:474.015000px;}
.yc6{bottom:474.195000px;}
.y95{bottom:474.735000px;}
.y1d4{bottom:475.275000px;}
.y10f{bottom:481.935000px;}
.y158{bottom:482.115000px;}
.y227{bottom:483.375000px;}
.yee{bottom:484.095000px;}
.y17f{bottom:484.815000px;}
.y69{bottom:490.935000px;}
.yc5{bottom:491.655000px;}
.y94{bottom:492.735000px;}
.y1d3{bottom:493.275000px;}
.y1f{bottom:495.795000px;}
.y1a9{bottom:498.495000px;}
.y10e{bottom:499.935000px;}
.y12d{bottom:500.835000px;}
.y226{bottom:501.195000px;}
.yed{bottom:501.915000px;}
.y68{bottom:508.935000px;}
.y157{bottom:509.655000px;}
.y1d2{bottom:511.095000px;}
.y1e{bottom:513.615000px;}
.y10d{bottom:517.755000px;}
.y12c{bottom:518.655000px;}
.yc4{bottom:518.835000px;}
.y225{bottom:519.015000px;}
.y93{bottom:519.555000px;}
.yec{bottom:519.915000px;}
.y1a8{bottom:526.215000px;}
.y67{bottom:526.755000px;}
.y205{bottom:526.935000px;}
.y1d1{bottom:528.915000px;}
.y1d{bottom:533.415000px;}
.y10c{bottom:535.575000px;}
.y17e{bottom:535.935000px;}
.y12b{bottom:536.475000px;}
.yc3{bottom:536.835000px;}
.y156{bottom:537.195000px;}
.y92{bottom:537.375000px;}
.yeb{bottom:537.735000px;}
.y66{bottom:544.575000px;}
.y204{bottom:544.755000px;}
.y1d0{bottom:546.735000px;}
.y10b{bottom:553.395000px;}
.y17d{bottom:553.755000px;}
.y12a{bottom:554.475000px;}
.yc2{bottom:554.655000px;}
.y224{bottom:554.835000px;}
.y91{bottom:555.195000px;}
.yea{bottom:555.555000px;}
.y1c{bottom:557.175000px;}
.y25e{bottom:560.775000px;}
.y65{bottom:562.395000px;}
.y203{bottom:562.575000px;}
.y1cf{bottom:564.555000px;}
.y155{bottom:564.915000px;}
.y10a{bottom:571.215000px;}
.y17c{bottom:571.575000px;}
.yc1{bottom:572.475000px;}
.y223{bottom:572.655000px;}
.y90{bottom:573.015000px;}
.ye9{bottom:573.375000px;}
.y129{bottom:578.235000px;}
.y25d{bottom:578.595000px;}
.y64{bottom:580.215000px;}
.y202{bottom:580.395000px;}
.y1b{bottom:580.755000px;}
.y1a7{bottom:581.295000px;}
.y1ce{bottom:582.375000px;}
.y128{bottom:585.075000px;}
.y109{bottom:588.675000px;}
.y17b{bottom:589.395000px;}
.yc0{bottom:590.295000px;}
.y222{bottom:590.475000px;}
.y8f{bottom:590.835000px;}
.ye8{bottom:591.195000px;}
.y152{bottom:592.455000px;}
.y63{bottom:598.035000px;}
.y1cd{bottom:600.375000px;}
.y25c{bottom:605.415000px;}
.y1a{bottom:607.035000px;}
.y17a{bottom:607.215000px;}
.ybf{bottom:608.115000px;}
.y221{bottom:608.295000px;}
.y8e{bottom:608.835000px;}
.y1a6{bottom:609.015000px;}
.ye7{bottom:611.175000px;}
.y108{bottom:616.035000px;}
.y1cc{bottom:618.195000px;}
.y127{bottom:624.855000px;}
.y62{bottom:625.035000px;}
.ybe{bottom:626.115000px;}
.y8d{bottom:626.655000px;}
.y25b{bottom:632.235000px;}
.y107{bottom:633.855000px;}
.y1cb{bottom:636.015000px;}
.y1a5{bottom:636.555000px;}
.ye6{bottom:636.915000px;}
.y19{bottom:637.995000px;}
.y126{bottom:642.675000px;}
.y61{bottom:642.855000px;}
.y179{bottom:643.035000px;}
.y151{bottom:643.575000px;}
.ybd{bottom:643.935000px;}
.y8c{bottom:644.475000px;}
.y220{bottom:646.095000px;}
.y106{bottom:651.675000px;}
.y1ca{bottom:653.835000px;}
.y25a{bottom:659.055000px;}
.y125{bottom:660.495000px;}
.y60{bottom:660.675000px;}
.y178{bottom:660.855000px;}
.y150{bottom:661.395000px;}
.ybc{bottom:661.755000px;}
.y8b{bottom:662.295000px;}
.y1a4{bottom:664.095000px;}
.y105{bottom:669.495000px;}
.ye5{bottom:669.675000px;}
.y1c9{bottom:671.655000px;}
.y5f{bottom:678.525000px;}
.y177{bottom:678.705000px;}
.y21f{bottom:678.885000px;}
.y14f{bottom:679.245000px;}
.ybb{bottom:679.605000px;}
.y8a{bottom:680.145000px;}
.y259{bottom:686.085000px;}
.y124{bottom:686.985000px;}
.y104{bottom:687.345000px;}
.ye4{bottom:687.525000px;}
.y1a3{bottom:691.845000px;}
.y18{bottom:694.365000px;}
.y5e{bottom:696.345000px;}
.y176{bottom:696.525000px;}
.y21e{bottom:696.705000px;}
.y14e{bottom:697.065000px;}
.yba{bottom:697.425000px;}
.y89{bottom:698.145000px;}
.y1c8{bottom:698.685000px;}
.y103{bottom:705.165000px;}
.ye3{bottom:705.345000px;}
.y258{bottom:713.265000px;}
.y5d{bottom:714.165000px;}
.y175{bottom:714.345000px;}
.y21d{bottom:714.525000px;}
.y14d{bottom:714.885000px;}
.yb9{bottom:715.245000px;}
.y88{bottom:715.965000px;}
.y1c7{bottom:716.505000px;}
.y1a2{bottom:719.385000px;}
.ye2{bottom:723.165000px;}
.y17{bottom:730.725000px;}
.y123{bottom:732.165000px;}
.y21c{bottom:732.345000px;}
.y14c{bottom:732.885000px;}
.y87{bottom:733.785000px;}
.y257{bottom:740.085000px;}
.y102{bottom:740.985000px;}
.y5c{bottom:741.165000px;}
.yb8{bottom:742.245000px;}
.y1c6{bottom:743.325000px;}
.y1a1{bottom:746.925000px;}
.y122{bottom:749.985000px;}
.y174{bottom:750.165000px;}
.y14b{bottom:750.705000px;}
.y101{bottom:758.805000px;}
.y5b{bottom:758.985000px;}
.yb7{bottom:760.065000px;}
.y86{bottom:760.245000px;}
.y256{bottom:766.905000px;}
.y121{bottom:767.805000px;}
.y173{bottom:767.985000px;}
.y21b{bottom:768.165000px;}
.y14a{bottom:768.525000px;}
.y1c5{bottom:770.145000px;}
.y1a0{bottom:774.645000px;}
.y100{bottom:776.625000px;}
.y5a{bottom:776.805000px;}
.yb6{bottom:777.885000px;}
.y16{bottom:781.305000px;}
.y120{bottom:785.625000px;}
.ye1{bottom:785.805000px;}
.y21a{bottom:785.985000px;}
.y149{bottom:786.345000px;}
.y85{bottom:787.065000px;}
.y255{bottom:793.725000px;}
.y59{bottom:794.625000px;}
.yb5{bottom:795.705000px;}
.y1c4{bottom:796.965000px;}
.y19e{bottom:802.185000px;}
.yff{bottom:803.445000px;}
.ye0{bottom:803.625000px;}
.y219{bottom:803.805000px;}
.y148{bottom:804.165000px;}
.y84{bottom:804.885000px;}
.y15{bottom:809.205000px;}
.y58{bottom:812.445000px;}
.y172{bottom:812.625000px;}
.yb4{bottom:813.525000px;}
.y254{bottom:820.545000px;}
.ydf{bottom:821.445000px;}
.y218{bottom:821.625000px;}
.y147{bottom:821.985000px;}
.y1c3{bottom:823.785000px;}
.y83{bottom:827.385000px;}
.y57{bottom:830.445000px;}
.yb3{bottom:831.345000px;}
.yfe{bottom:839.265000px;}
.yde{bottom:839.445000px;}
.y146{bottom:839.985000px;}
.y253{bottom:847.545000px;}
.y56{bottom:848.265000px;}
.y171{bottom:848.445000px;}
.yb2{bottom:849.345000px;}
.y1c2{bottom:850.425000px;}
.y82{bottom:854.925000px;}
.y14{bottom:855.285000px;}
.yfd{bottom:857.085000px;}
.ydd{bottom:857.265000px;}
.y217{bottom:857.445000px;}
.y145{bottom:857.805000px;}
.y55{bottom:866.085000px;}
.y170{bottom:866.265000px;}
.yb1{bottom:866.805000px;}
.y19d{bottom:871.125000px;}
.y252{bottom:874.365000px;}
.yfc{bottom:874.905000px;}
.ydc{bottom:875.085000px;}
.y216{bottom:875.265000px;}
.y144{bottom:875.625000px;}
.y1c1{bottom:877.605000px;}
.y13{bottom:878.145000px;}
.y81{bottom:882.465000px;}
.y16f{bottom:884.085000px;}
.yb0{bottom:886.965000px;}
.y19c{bottom:888.945000px;}
.ydb{bottom:892.545000px;}
.yfb{bottom:892.725000px;}
.y54{bottom:892.905000px;}
.y215{bottom:893.085000px;}
.y1c0{bottom:895.425000px;}
.y12{bottom:899.745000px;}
.y251{bottom:901.185000px;}
.y16e{bottom:901.905000px;}
.y143{bottom:902.085000px;}
.y19b{bottom:906.765000px;}
.y7f{bottom:910.185000px;}
.yfa{bottom:910.590000px;}
.y53{bottom:910.770000px;}
.y214{bottom:910.950000px;}
.y1bf{bottom:913.290000px;}
.yaf{bottom:919.770000px;}
.y11{bottom:921.930000px;}
.y19a{bottom:924.630000px;}
.y250{bottom:928.050000px;}
.y52{bottom:928.590000px;}
.y213{bottom:928.770000px;}
.y142{bottom:928.950000px;}
.y1be{bottom:931.110000px;}
.yae{bottom:937.590000px;}
.y7e{bottom:937.770000px;}
.y10{bottom:944.790000px;}
.y51{bottom:946.590000px;}
.y141{bottom:946.950000px;}
.y199{bottom:951.630000px;}
.y24f{bottom:954.870000px;}
.yf9{bottom:955.410000px;}
.yad{bottom:955.590000px;}
.y1bd{bottom:957.750000px;}
.y50{bottom:964.410000px;}
.y16d{bottom:964.590000px;}
.y7c{bottom:965.310000px;}
.yf{bottom:966.930000px;}
.y198{bottom:969.450000px;}
.y140{bottom:970.890000px;}
.yf8{bottom:973.230000px;}
.yac{bottom:973.410000px;}
.y24e{bottom:981.870000px;}
.y4f{bottom:982.230000px;}
.y16c{bottom:982.410000px;}
.y1bc{bottom:984.570000px;}
.y197{bottom:987.270000px;}
.y11f{bottom:991.050000px;}
.yab{bottom:991.230000px;}
.y7a{bottom:993.030000px;}
.y4e{bottom:1000.050000px;}
.y16b{bottom:1000.230000px;}
.y196{bottom:1005.090000px;}
.y1ef{bottom:1008.495000px;}
.y1bb{bottom:1008.690000px;}
.yaa{bottom:1009.050000px;}
.ye{bottom:1011.570000px;}
.y1ee{bottom:1011.936544px;}
.y11e{bottom:1017.510000px;}
.yf7{bottom:1017.870000px;}
.y16a{bottom:1018.050000px;}
.y78{bottom:1020.570000px;}
.y195{bottom:1022.910000px;}
.yd{bottom:1023.630000px;}
.y4d{bottom:1026.870000px;}
.y1e8{bottom:1027.666158px;}
.y24d{bottom:1035.510000px;}
.yc{bottom:1035.690000px;}
.y169{bottom:1035.870000px;}
.y194{bottom:1040.910000px;}
.y4c{bottom:1044.870000px;}
.yb{bottom:1047.750000px;}
.y77{bottom:1053.870000px;}
.y1ed{bottom:1058.301392px;}
.y193{bottom:1058.730000px;}
.ya{bottom:1061.970000px;}
.y24c{bottom:1062.330000px;}
.y4b{bottom:1062.690000px;}
.y76{bottom:1071.690000px;}
.y4a{bottom:1080.510000px;}
.y192{bottom:1085.190000px;}
.y9{bottom:1087.170000px;}
.y1ea{bottom:1088.958905px;}
.y24b{bottom:1089.150000px;}
.y75{bottom:1089.510000px;}
.y49{bottom:1098.330000px;}
.y1e2{bottom:1104.782468px;}
.y74{bottom:1107.330000px;}
.y191{bottom:1112.010000px;}
.y24a{bottom:1115.970000px;}
.y48{bottom:1116.150000px;}
.y8{bottom:1116.870000px;}
.y73{bottom:1125.150000px;}
.y190{bottom:1129.830000px;}
.yda{bottom:1133.610000px;}
.y47{bottom:1133.970000px;}
.y1e4{bottom:1134.526495px;}
.y72{bottom:1142.970000px;}
.ya9{bottom:1152.000000px;}
.y18e{bottom:1152.180000px;}
.y46{bottom:1161.000000px;}
.y7{bottom:1165.860000px;}
.y249{bottom:1169.820000px;}
.y45{bottom:1178.820000px;}
.y18d{bottom:1181.340000px;}
.y44{bottom:1196.640000px;}
.y1{bottom:1215.000000px;}
.h36{height:11.342757px;}
.h3e{height:12.615359px;}
.h3d{height:12.634330px;}
.h3b{height:12.710212px;}
.h34{height:14.838593px;}
.h32{height:14.927714px;}
.h43{height:21.055038px;}
.h3f{height:25.249689px;}
.h38{height:25.325571px;}
.h23{height:26.805000px;}
.h16{height:26.820000px;}
.h24{height:26.841000px;}
.h2c{height:26.850000px;}
.h18{height:26.856000px;}
.h25{height:26.985000px;}
.h17{height:27.000000px;}
.h27{height:27.165000px;}
.h28{height:27.175500px;}
.h26{height:27.345000px;}
.h29{height:27.355500px;}
.h2a{height:28.260000px;}
.h2f{height:29.651193px;}
.h30{height:29.744027px;}
.h33{height:29.766307px;}
.h47{height:30.036069px;}
.h3{height:31.135500px;}
.h39{height:37.236948px;}
.h12{height:37.705078px;}
.h19{height:38.100586px;}
.h37{height:38.237344px;}
.h3c{height:39.366309px;}
.h3a{height:39.572390px;}
.h42{height:40.677891px;}
.h8{height:40.985156px;}
.h44{height:41.770730px;}
.h45{height:42.192971px;}
.h46{height:43.004019px;}
.h2e{height:43.733537px;}
.h22{height:44.625000px;}
.h1b{height:52.971680px;}
.h4{height:52.998047px;}
.h10{height:54.421875px;}
.h1c{height:55.503491px;}
.h1a{height:56.214844px;}
.h14{height:58.621992px;}
.h9{height:58.651172px;}
.h15{height:58.763250px;}
.h1d{height:59.074453px;}
.h21{height:59.092031px;}
.h2d{height:59.395220px;}
.ha{height:60.226875px;}
.h2b{height:62.640000px;}
.h1e{height:64.447031px;}
.hb{height:65.010937px;}
.h2{height:65.884219px;}
.he{height:66.757500px;}
.hd{height:72.326250px;}
.hf{height:72.562500px;}
.h31{height:76.220461px;}
.h11{height:78.367500px;}
.h20{height:80.331680px;}
.hc{height:82.676953px;}
.h7{height:84.898125px;}
.h1f{height:91.807031px;}
.h6{height:103.038750px;}
.h5{height:108.843750px;}
.h41{height:116.100611px;}
.h40{height:119.253087px;}
.h35{height:155.679903px;}
.h13{height:265.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:32.565835px;}
.w24{width:33.918739px;}
.w1a{width:34.237592px;}
.w17{width:39.029963px;}
.w23{width:43.704973px;}
.w19{width:45.137451px;}
.w16{width:45.159741px;}
.w20{width:46.483689px;}
.w22{width:46.505771px;}
.w29{width:47.138514px;}
.w25{width:59.401959px;}
.w2a{width:60.331434px;}
.w2b{width:63.598252px;}
.w21{width:64.282194px;}
.w15{width:64.997929px;}
.w1f{width:67.506241px;}
.w14{width:78.594889px;}
.wa{width:80.265000px;}
.wd{width:80.302500px;}
.w3{width:80.310000px;}
.wf{width:84.780000px;}
.wc{width:84.810000px;}
.w2c{width:86.403157px;}
.w2d{width:87.157039px;}
.w12{width:89.640000px;}
.w1e{width:93.317017px;}
.w9{width:99.000000px;}
.w1b{width:104.001887px;}
.w7{width:119.542500px;}
.w10{width:122.242500px;}
.w5{width:131.925000px;}
.w13{width:138.245052px;}
.w8{width:148.896000px;}
.w11{width:154.830000px;}
.wb{width:201.795000px;}
.we{width:201.810000px;}
.w6{width:234.600000px;}
.w28{width:347.247784px;}
.w27{width:363.581876px;}
.w26{width:365.263158px;}
.w1d{width:365.336767px;}
.w1c{width:368.696813px;}
.w2{width:722.115000px;}
.w4{width:813.600000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x44{left:2.786262px;}
.x46{left:4.346569px;}
.x4e{left:6.464129px;}
.x6{left:8.640000px;}
.x14{left:10.800000px;}
.x35{left:12.585000px;}
.x4b{left:13.708411px;}
.x52{left:16.258250px;}
.x4d{left:17.274827px;}
.x29{left:19.080000px;}
.x56{left:20.113488px;}
.x3e{left:21.420000px;}
.x33{left:23.205000px;}
.x3f{left:25.560000px;}
.x38{left:26.625000px;}
.x37{left:31.140000px;}
.x3b{left:32.220000px;}
.x41{left:33.480000px;}
.x31{left:34.740000px;}
.x2f{left:35.820000px;}
.x2a{left:37.980000px;}
.x13{left:39.240000px;}
.x2e{left:41.580000px;}
.x27{left:42.691500px;}
.x3a{left:44.130000px;}
.x2{left:45.364500px;}
.x2c{left:47.520000px;}
.x15{left:50.040000px;}
.x2d{left:51.120000px;}
.x19{left:52.365000px;}
.x1{left:54.000000px;}
.x5c{left:55.616187px;}
.x58{left:61.852929px;}
.x18{left:65.370000px;}
.x30{left:67.680000px;}
.xd{left:71.280000px;}
.x1b{left:81.000000px;}
.x39{left:85.710000px;}
.x1a{left:93.450000px;}
.x20{left:108.036000px;}
.x10{left:133.416000px;}
.x59{left:135.969099px;}
.xe{left:150.330000px;}
.x4f{left:161.597986px;}
.x50{left:164.027062px;}
.x5a{left:170.266973px;}
.x28{left:172.470000px;}
.x3d{left:175.530000px;}
.x3{left:222.370500px;}
.x5b{left:234.704616px;}
.xa{left:268.815000px;}
.x4{left:271.330500px;}
.xf{left:275.655000px;}
.xb{left:287.175000px;}
.x8{left:305.175000px;}
.x11{left:314.355000px;}
.x2b{left:322.275000px;}
.x40{left:331.275000px;}
.x3c{left:336.135000px;}
.x9{left:364.395000px;}
.xc{left:378.795000px;}
.x16{left:416.775000px;}
.x26{left:421.095000px;}
.x7{left:446.505000px;}
.x32{left:472.080000px;}
.x12{left:473.505000px;}
.x21{left:494.745000px;}
.x1c{left:500.505000px;}
.x4c{left:507.712592px;}
.x23{left:515.985000px;}
.x43{left:521.745000px;}
.x22{left:527.505000px;}
.x34{left:553.080000px;}
.x1e{left:554.505000px;}
.x1f{left:558.465000px;}
.x24{left:562.065000px;}
.x51{left:566.792017px;}
.x25{left:594.105000px;}
.x17{left:605.460000px;}
.x45{left:611.720052px;}
.x53{left:635.183399px;}
.x4a{left:645.173775px;}
.x54{left:682.550388px;}
.x47{left:691.202830px;}
.x55{left:747.721403px;}
.x36{left:755.610000px;}
.x48{left:757.097935px;}
.x5{left:767.490000px;}
.x57{left:795.106794px;}
.x49{left:803.145565px;}
.x1d{left:838.980000px;}
.x42{left:842.580000px;}
@media print{
.v1{vertical-align:-78.080000pt;}
.v3{vertical-align:-26.880000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.320000pt;}
.va{vertical-align:12.815603pt;}
.vb{vertical-align:13.999851pt;}
.v5{vertical-align:21.120000pt;}
.v7{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.v6{vertical-align:28.160000pt;}
.v8{vertical-align:52.480000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.624000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls16{letter-spacing:0.092841pt;}
.ls7{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.194667pt;}
.lse{letter-spacing:0.231467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.544000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls15{letter-spacing:22.496000pt;}
.ls11{letter-spacing:26.336000pt;}
.lsc{letter-spacing:42.976000pt;}
.ls13{letter-spacing:46.816000pt;}
.ws5{word-spacing:-17.295360pt;}
.wse{word-spacing:-17.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.320000pt;}
.wsd{word-spacing:-12.192000pt;}
.ws0{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.808000pt;}
.wsa{word-spacing:-9.902298pt;}
.ws3{word-spacing:-9.280000pt;}
.wsf{word-spacing:-9.210428pt;}
.wsb{word-spacing:-8.431318pt;}
.ws9{word-spacing:-8.000000pt;}
.wsc{word-spacing:-5.648983pt;}
.ws6{word-spacing:0.000000pt;}
._19{margin-left:-12.096000pt;}
._1a{margin-left:-8.896000pt;}
._1e{margin-left:-4.656000pt;}
._21{margin-left:-2.544000pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.658667pt;}
._7{width:2.976000pt;}
._3{width:4.080000pt;}
._9{width:5.013333pt;}
._a{width:5.930667pt;}
._c{width:7.702400pt;}
._6{width:8.880000pt;}
._d{width:10.464000pt;}
._b{width:13.488000pt;}
._8{width:14.592000pt;}
._4{width:15.936000pt;}
._5{width:17.376000pt;}
._10{width:18.720000pt;}
._11{width:20.037333pt;}
._12{width:21.040000pt;}
._e{width:21.968000pt;}
._1d{width:22.896000pt;}
._17{width:23.856000pt;}
._16{width:24.816000pt;}
._f{width:25.776000pt;}
._28{width:27.360000pt;}
._30{width:28.437333pt;}
._13{width:29.712000pt;}
._14{width:30.672000pt;}
._15{width:32.106667pt;}
._2a{width:33.072000pt;}
._27{width:34.896000pt;}
._1f{width:35.904000pt;}
._2b{width:37.189333pt;}
._18{width:40.849920pt;}
._2d{width:42.154667pt;}
._20{width:43.104000pt;}
._2c{width:45.600000pt;}
._29{width:56.464000pt;}
._24{width:59.114667pt;}
._1c{width:77.276373pt;}
._1b{width:78.589440pt;}
._2e{width:100.992000pt;}
._2f{width:102.000000pt;}
._25{width:116.778667pt;}
._22{width:133.514667pt;}
._23{width:143.210667pt;}
._26{width:147.050667pt;}
._2{width:1039.626667pt;}
.fse{font-size:22.595932pt;}
.fs10{font-size:24.683947pt;}
.fsa{font-size:32.000000pt;}
.fsd{font-size:33.725271pt;}
.fsb{font-size:34.560000pt;}
.fsf{font-size:36.841712pt;}
.fs5{font-size:37.120000pt;}
.fsc{font-size:39.609191pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:90.880000pt;}
.fs2{font-size:96.000000pt;}
.y23e{bottom:-18.727103pt;}
.y248{bottom:-8.135111pt;}
.y1f0{bottom:-6.149987pt;}
.y201{bottom:-4.700179pt;}
.y0{bottom:0.000000pt;}
.y1f5{bottom:1.854890pt;}
.y1f3{bottom:1.868942pt;}
.y1fa{bottom:1.939203pt;}
.y242{bottom:2.026294pt;}
.y1e3{bottom:2.178506pt;}
.y1e6{bottom:2.195009pt;}
.y1eb{bottom:2.277528pt;}
.y1fc{bottom:2.613709pt;}
.y4{bottom:2.720000pt;}
.y1ec{bottom:3.069712pt;}
.y247{bottom:4.132873pt;}
.y240{bottom:5.272970pt;}
.y245{bottom:8.492015pt;}
.y79{bottom:8.640000pt;}
.y15b{bottom:8.946667pt;}
.y7b{bottom:8.960000pt;}
.y80{bottom:9.000000pt;}
.y160{bottom:9.106667pt;}
.y7d{bottom:9.120000pt;}
.y18f{bottom:9.760000pt;}
.y1f2{bottom:13.082595pt;}
.y1ff{bottom:13.085124pt;}
.y1f6{bottom:13.152856pt;}
.y5{bottom:13.920000pt;}
.y243{bottom:14.294584pt;}
.y1e5{bottom:15.365065pt;}
.y1e7{bottom:15.447585pt;}
.y246{bottom:16.475153pt;}
.y153{bottom:16.640000pt;}
.y3{bottom:16.800000pt;}
.y154{bottom:24.480000pt;}
.y1f8{bottom:25.816695pt;}
.y6{bottom:35.360000pt;}
.y19f{bottom:40.480000pt;}
.y2{bottom:53.920000pt;}
.y1e9{bottom:56.759971pt;}
.y41{bottom:61.146667pt;}
.y40{bottom:78.906667pt;}
.ya8{bottom:90.400000pt;}
.y1e1{bottom:91.680000pt;}
.y23c{bottom:96.320000pt;}
.y3f{bottom:96.506667pt;}
.y13f{bottom:96.640000pt;}
.y168{bottom:98.880000pt;}
.y37{bottom:100.160000pt;}
.yd9{bottom:104.000000pt;}
.y71{bottom:104.960000pt;}
.ya7{bottom:106.240000pt;}
.y33{bottom:108.160000pt;}
.y18c{bottom:108.320000pt;}
.y212{bottom:108.800000pt;}
.y1ba{bottom:110.880000pt;}
.y23b{bottom:112.160000pt;}
.y13e{bottom:112.640000pt;}
.y3e{bottom:114.106667pt;}
.yf6{bottom:115.200000pt;}
.y1e0{bottom:115.520000pt;}
.y36{bottom:116.000000pt;}
.yd8{bottom:119.840000pt;}
.y70{bottom:120.960000pt;}
.ya6{bottom:122.080000pt;}
.y167{bottom:122.720000pt;}
.y32{bottom:124.000000pt;}
.y11d{bottom:125.920000pt;}
.y211{bottom:126.400000pt;}
.y1b9{bottom:126.880000pt;}
.y23a{bottom:128.000000pt;}
.y13d{bottom:128.480000pt;}
.y3d{bottom:131.706667pt;}
.y35{bottom:131.840000pt;}
.y18b{bottom:133.280000pt;}
.y1df{bottom:136.800000pt;}
.y200{bottom:136.946667pt;}
.y166{bottom:138.720000pt;}
.yf5{bottom:139.040000pt;}
.ya5{bottom:139.680000pt;}
.y31{bottom:139.840000pt;}
.y1fe{bottom:140.087614pt;}
.yd7{bottom:143.680000pt;}
.y239{bottom:144.000000pt;}
.y13c{bottom:144.320000pt;}
.y6f{bottom:144.480000pt;}
.y34{bottom:147.840000pt;}
.y3c{bottom:149.346667pt;}
.y11c{bottom:150.080000pt;}
.y1b8{bottom:150.720000pt;}
.y210{bottom:155.680000pt;}
.y30{bottom:155.840000pt;}
.y18a{bottom:158.240000pt;}
.y165{bottom:158.560000pt;}
.yd6{bottom:159.520000pt;}
.y238{bottom:159.840000pt;}
.y13b{bottom:160.160000pt;}
.y1fd{bottom:162.531501pt;}
.ya4{bottom:162.720000pt;}
.yf4{bottom:163.040000pt;}
.y11b{bottom:165.920000pt;}
.y1b7{bottom:166.560000pt;}
.y3b{bottom:167.106667pt;}
.y6e{bottom:168.320000pt;}
.y20f{bottom:171.520000pt;}
.y2f{bottom:171.680000pt;}
.y1f7{bottom:174.503972pt;}
.yd5{bottom:175.360000pt;}
.y237{bottom:175.680000pt;}
.y13a{bottom:176.000000pt;}
.yf3{bottom:178.880000pt;}
.y11a{bottom:181.760000pt;}
.y1b6{bottom:182.400000pt;}
.y189{bottom:182.760000pt;}
.y164{bottom:183.080000pt;}
.y6d{bottom:184.186667pt;}
.y3a{bottom:184.706667pt;}
.y1fb{bottom:186.476443pt;}
.y20e{bottom:187.386667pt;}
.y2e{bottom:187.546667pt;}
.yd4{bottom:191.386667pt;}
.y236{bottom:191.546667pt;}
.ya3{bottom:191.866667pt;}
.y119{bottom:197.786667pt;}
.y1b5{bottom:198.266667pt;}
.y1f9{bottom:198.381464pt;}
.yf2{bottom:202.426667pt;}
.y20d{bottom:203.226667pt;}
.y2d{bottom:205.146667pt;}
.yd3{bottom:207.226667pt;}
.y235{bottom:207.386667pt;}
.y163{bottom:207.560000pt;}
.ya2{bottom:207.706667pt;}
.y188{bottom:207.720000pt;}
.y139{bottom:207.866667pt;}
.y6c{bottom:208.026667pt;}
.y1f4{bottom:210.355341pt;}
.y39{bottom:211.586667pt;}
.y1b4{bottom:214.266667pt;}
.y20c{bottom:219.066667pt;}
.y118{bottom:221.626667pt;}
.yd2{bottom:223.066667pt;}
.y234{bottom:223.386667pt;}
.ya1{bottom:223.546667pt;}
.y138{bottom:223.706667pt;}
.yf1{bottom:226.266667pt;}
.y6b{bottom:229.466667pt;}
.y1b3{bottom:230.106667pt;}
.y162{bottom:232.200000pt;}
.y187{bottom:232.680000pt;}
.y1f1{bottom:232.866959pt;}
.y2c{bottom:233.946667pt;}
.y20b{bottom:234.906667pt;}
.yd1{bottom:238.906667pt;}
.y233{bottom:239.226667pt;}
.ya0{bottom:239.386667pt;}
.y137{bottom:239.546667pt;}
.y117{bottom:245.466667pt;}
.y1b2{bottom:245.946667pt;}
.yf0{bottom:247.706667pt;}
.y38{bottom:248.640000pt;}
.y20a{bottom:250.906667pt;}
.yd0{bottom:254.746667pt;}
.y232{bottom:255.066667pt;}
.y9f{bottom:255.386667pt;}
.y1de{bottom:255.866667pt;}
.y161{bottom:256.680000pt;}
.y186{bottom:257.160000pt;}
.y2b{bottom:257.946667pt;}
.y1b1{bottom:261.786667pt;}
.y43{bottom:266.266667pt;}
.y209{bottom:266.746667pt;}
.y116{bottom:269.306667pt;}
.ycf{bottom:270.586667pt;}
.y231{bottom:270.906667pt;}
.y9e{bottom:271.226667pt;}
.y1dd{bottom:271.706667pt;}
.y136{bottom:272.986667pt;}
.y15f{bottom:281.160000pt;}
.y2a{bottom:281.786667pt;}
.y185{bottom:282.120000pt;}
.y1b0{bottom:285.306667pt;}
.yce{bottom:286.266667pt;}
.y230{bottom:286.746667pt;}
.y9d{bottom:287.066667pt;}
.y1dc{bottom:287.546667pt;}
.y208{bottom:290.266667pt;}
.y42{bottom:292.186667pt;}
.y115{bottom:293.146667pt;}
.y135{bottom:302.266667pt;}
.y22f{bottom:302.586667pt;}
.y1db{bottom:303.386667pt;}
.y25{bottom:305.626667pt;}
.y15e{bottom:305.800000pt;}
.y184{bottom:307.080000pt;}
.y1af{bottom:309.146667pt;}
.ycd{bottom:310.426667pt;}
.y9c{bottom:310.906667pt;}
.y29{bottom:313.466667pt;}
.y207{bottom:314.106667pt;}
.y114{bottom:316.986667pt;}
.y134{bottom:318.106667pt;}
.y22e{bottom:318.586667pt;}
.y1da{bottom:319.226667pt;}
.y1ae{bottom:325.146667pt;}
.ycc{bottom:326.266667pt;}
.y9b{bottom:326.746667pt;}
.y24{bottom:329.466667pt;}
.y15d{bottom:330.280000pt;}
.y183{bottom:331.560000pt;}
.y133{bottom:333.946667pt;}
.y22d{bottom:334.426667pt;}
.y1d9{bottom:335.066667pt;}
.y206{bottom:335.546667pt;}
.y23d{bottom:336.346667pt;}
.y28{bottom:337.306667pt;}
.y113{bottom:340.986667pt;}
.ycb{bottom:342.106667pt;}
.y9a{bottom:342.586667pt;}
.y1ad{bottom:345.000000pt;}
.y132{bottom:349.786667pt;}
.y22c{bottom:350.266667pt;}
.y1d8{bottom:351.066667pt;}
.y23{bottom:353.306667pt;}
.y15c{bottom:354.920000pt;}
.y182{bottom:356.520000pt;}
.yca{bottom:357.946667pt;}
.y99{bottom:358.586667pt;}
.y27{bottom:361.146667pt;}
.y244{bottom:363.782229pt;}
.y112{bottom:364.826667pt;}
.y131{bottom:365.626667pt;}
.y22b{bottom:366.106667pt;}
.y1ac{bottom:369.480000pt;}
.yc9{bottom:373.946667pt;}
.y98{bottom:374.426667pt;}
.y1d7{bottom:374.906667pt;}
.y22{bottom:377.466667pt;}
.y15a{bottom:379.400000pt;}
.y181{bottom:381.480000pt;}
.y130{bottom:381.626667pt;}
.y22a{bottom:381.946667pt;}
.y241{bottom:383.326757pt;}
.y26{bottom:385.146667pt;}
.y111{bottom:388.346667pt;}
.yc8{bottom:389.786667pt;}
.y97{bottom:390.266667pt;}
.y1d6{bottom:390.746667pt;}
.y21{bottom:393.506667pt;}
.y1ab{bottom:393.986667pt;}
.y12f{bottom:397.506667pt;}
.y229{bottom:397.986667pt;}
.y159{bottom:403.906667pt;}
.yc7{bottom:405.666667pt;}
.y180{bottom:405.986667pt;}
.y96{bottom:406.146667pt;}
.y1d5{bottom:406.626667pt;}
.y20{bottom:409.026667pt;}
.y110{bottom:412.546667pt;}
.y228{bottom:413.826667pt;}
.yef{bottom:414.466667pt;}
.y1aa{bottom:418.626667pt;}
.y6a{bottom:420.546667pt;}
.y23f{bottom:420.829317pt;}
.y12e{bottom:421.346667pt;}
.yc6{bottom:421.506667pt;}
.y95{bottom:421.986667pt;}
.y1d4{bottom:422.466667pt;}
.y10f{bottom:428.386667pt;}
.y158{bottom:428.546667pt;}
.y227{bottom:429.666667pt;}
.yee{bottom:430.306667pt;}
.y17f{bottom:430.946667pt;}
.y69{bottom:436.386667pt;}
.yc5{bottom:437.026667pt;}
.y94{bottom:437.986667pt;}
.y1d3{bottom:438.466667pt;}
.y1f{bottom:440.706667pt;}
.y1a9{bottom:443.106667pt;}
.y10e{bottom:444.386667pt;}
.y12d{bottom:445.186667pt;}
.y226{bottom:445.506667pt;}
.yed{bottom:446.146667pt;}
.y68{bottom:452.386667pt;}
.y157{bottom:453.026667pt;}
.y1d2{bottom:454.306667pt;}
.y1e{bottom:456.546667pt;}
.y10d{bottom:460.226667pt;}
.y12c{bottom:461.026667pt;}
.yc4{bottom:461.186667pt;}
.y225{bottom:461.346667pt;}
.y93{bottom:461.826667pt;}
.yec{bottom:462.146667pt;}
.y1a8{bottom:467.746667pt;}
.y67{bottom:468.226667pt;}
.y205{bottom:468.386667pt;}
.y1d1{bottom:470.146667pt;}
.y1d{bottom:474.146667pt;}
.y10c{bottom:476.066667pt;}
.y17e{bottom:476.386667pt;}
.y12b{bottom:476.866667pt;}
.yc3{bottom:477.186667pt;}
.y156{bottom:477.506667pt;}
.y92{bottom:477.666667pt;}
.yeb{bottom:477.986667pt;}
.y66{bottom:484.066667pt;}
.y204{bottom:484.226667pt;}
.y1d0{bottom:485.986667pt;}
.y10b{bottom:491.906667pt;}
.y17d{bottom:492.226667pt;}
.y12a{bottom:492.866667pt;}
.yc2{bottom:493.026667pt;}
.y224{bottom:493.186667pt;}
.y91{bottom:493.506667pt;}
.yea{bottom:493.826667pt;}
.y1c{bottom:495.266667pt;}
.y25e{bottom:498.466667pt;}
.y65{bottom:499.906667pt;}
.y203{bottom:500.066667pt;}
.y1cf{bottom:501.826667pt;}
.y155{bottom:502.146667pt;}
.y10a{bottom:507.746667pt;}
.y17c{bottom:508.066667pt;}
.yc1{bottom:508.866667pt;}
.y223{bottom:509.026667pt;}
.y90{bottom:509.346667pt;}
.ye9{bottom:509.666667pt;}
.y129{bottom:513.986667pt;}
.y25d{bottom:514.306667pt;}
.y64{bottom:515.746667pt;}
.y202{bottom:515.906667pt;}
.y1b{bottom:516.226667pt;}
.y1a7{bottom:516.706667pt;}
.y1ce{bottom:517.666667pt;}
.y128{bottom:520.066667pt;}
.y109{bottom:523.266667pt;}
.y17b{bottom:523.906667pt;}
.yc0{bottom:524.706667pt;}
.y222{bottom:524.866667pt;}
.y8f{bottom:525.186667pt;}
.ye8{bottom:525.506667pt;}
.y152{bottom:526.626667pt;}
.y63{bottom:531.586667pt;}
.y1cd{bottom:533.666667pt;}
.y25c{bottom:538.146667pt;}
.y1a{bottom:539.586667pt;}
.y17a{bottom:539.746667pt;}
.ybf{bottom:540.546667pt;}
.y221{bottom:540.706667pt;}
.y8e{bottom:541.186667pt;}
.y1a6{bottom:541.346667pt;}
.ye7{bottom:543.266667pt;}
.y108{bottom:547.586667pt;}
.y1cc{bottom:549.506667pt;}
.y127{bottom:555.426667pt;}
.y62{bottom:555.586667pt;}
.ybe{bottom:556.546667pt;}
.y8d{bottom:557.026667pt;}
.y25b{bottom:561.986667pt;}
.y107{bottom:563.426667pt;}
.y1cb{bottom:565.346667pt;}
.y1a5{bottom:565.826667pt;}
.ye6{bottom:566.146667pt;}
.y19{bottom:567.106667pt;}
.y126{bottom:571.266667pt;}
.y61{bottom:571.426667pt;}
.y179{bottom:571.586667pt;}
.y151{bottom:572.066667pt;}
.ybd{bottom:572.386667pt;}
.y8c{bottom:572.866667pt;}
.y220{bottom:574.306667pt;}
.y106{bottom:579.266667pt;}
.y1ca{bottom:581.186667pt;}
.y25a{bottom:585.826667pt;}
.y125{bottom:587.106667pt;}
.y60{bottom:587.266667pt;}
.y178{bottom:587.426667pt;}
.y150{bottom:587.906667pt;}
.ybc{bottom:588.226667pt;}
.y8b{bottom:588.706667pt;}
.y1a4{bottom:590.306667pt;}
.y105{bottom:595.106667pt;}
.ye5{bottom:595.266667pt;}
.y1c9{bottom:597.026667pt;}
.y5f{bottom:603.133333pt;}
.y177{bottom:603.293333pt;}
.y21f{bottom:603.453333pt;}
.y14f{bottom:603.773333pt;}
.ybb{bottom:604.093333pt;}
.y8a{bottom:604.573333pt;}
.y259{bottom:609.853333pt;}
.y124{bottom:610.653333pt;}
.y104{bottom:610.973333pt;}
.ye4{bottom:611.133333pt;}
.y1a3{bottom:614.973333pt;}
.y18{bottom:617.213333pt;}
.y5e{bottom:618.973333pt;}
.y176{bottom:619.133333pt;}
.y21e{bottom:619.293333pt;}
.y14e{bottom:619.613333pt;}
.yba{bottom:619.933333pt;}
.y89{bottom:620.573333pt;}
.y1c8{bottom:621.053333pt;}
.y103{bottom:626.813333pt;}
.ye3{bottom:626.973333pt;}
.y258{bottom:634.013333pt;}
.y5d{bottom:634.813333pt;}
.y175{bottom:634.973333pt;}
.y21d{bottom:635.133333pt;}
.y14d{bottom:635.453333pt;}
.yb9{bottom:635.773333pt;}
.y88{bottom:636.413333pt;}
.y1c7{bottom:636.893333pt;}
.y1a2{bottom:639.453333pt;}
.ye2{bottom:642.813333pt;}
.y17{bottom:649.533333pt;}
.y123{bottom:650.813333pt;}
.y21c{bottom:650.973333pt;}
.y14c{bottom:651.453333pt;}
.y87{bottom:652.253333pt;}
.y257{bottom:657.853333pt;}
.y102{bottom:658.653333pt;}
.y5c{bottom:658.813333pt;}
.yb8{bottom:659.773333pt;}
.y1c6{bottom:660.733333pt;}
.y1a1{bottom:663.933333pt;}
.y122{bottom:666.653333pt;}
.y174{bottom:666.813333pt;}
.y14b{bottom:667.293333pt;}
.y101{bottom:674.493333pt;}
.y5b{bottom:674.653333pt;}
.yb7{bottom:675.613333pt;}
.y86{bottom:675.773333pt;}
.y256{bottom:681.693333pt;}
.y121{bottom:682.493333pt;}
.y173{bottom:682.653333pt;}
.y21b{bottom:682.813333pt;}
.y14a{bottom:683.133333pt;}
.y1c5{bottom:684.573333pt;}
.y1a0{bottom:688.573333pt;}
.y100{bottom:690.333333pt;}
.y5a{bottom:690.493333pt;}
.yb6{bottom:691.453333pt;}
.y16{bottom:694.493333pt;}
.y120{bottom:698.333333pt;}
.ye1{bottom:698.493333pt;}
.y21a{bottom:698.653333pt;}
.y149{bottom:698.973333pt;}
.y85{bottom:699.613333pt;}
.y255{bottom:705.533333pt;}
.y59{bottom:706.333333pt;}
.yb5{bottom:707.293333pt;}
.y1c4{bottom:708.413333pt;}
.y19e{bottom:713.053333pt;}
.yff{bottom:714.173333pt;}
.ye0{bottom:714.333333pt;}
.y219{bottom:714.493333pt;}
.y148{bottom:714.813333pt;}
.y84{bottom:715.453333pt;}
.y15{bottom:719.293333pt;}
.y58{bottom:722.173333pt;}
.y172{bottom:722.333333pt;}
.yb4{bottom:723.133333pt;}
.y254{bottom:729.373333pt;}
.ydf{bottom:730.173333pt;}
.y218{bottom:730.333333pt;}
.y147{bottom:730.653333pt;}
.y1c3{bottom:732.253333pt;}
.y83{bottom:735.453333pt;}
.y57{bottom:738.173333pt;}
.yb3{bottom:738.973333pt;}
.yfe{bottom:746.013333pt;}
.yde{bottom:746.173333pt;}
.y146{bottom:746.653333pt;}
.y253{bottom:753.373333pt;}
.y56{bottom:754.013333pt;}
.y171{bottom:754.173333pt;}
.yb2{bottom:754.973333pt;}
.y1c2{bottom:755.933333pt;}
.y82{bottom:759.933333pt;}
.y14{bottom:760.253333pt;}
.yfd{bottom:761.853333pt;}
.ydd{bottom:762.013333pt;}
.y217{bottom:762.173333pt;}
.y145{bottom:762.493333pt;}
.y55{bottom:769.853333pt;}
.y170{bottom:770.013333pt;}
.yb1{bottom:770.493333pt;}
.y19d{bottom:774.333333pt;}
.y252{bottom:777.213333pt;}
.yfc{bottom:777.693333pt;}
.ydc{bottom:777.853333pt;}
.y216{bottom:778.013333pt;}
.y144{bottom:778.333333pt;}
.y1c1{bottom:780.093333pt;}
.y13{bottom:780.573333pt;}
.y81{bottom:784.413333pt;}
.y16f{bottom:785.853333pt;}
.yb0{bottom:788.413333pt;}
.y19c{bottom:790.173333pt;}
.ydb{bottom:793.373333pt;}
.yfb{bottom:793.533333pt;}
.y54{bottom:793.693333pt;}
.y215{bottom:793.853333pt;}
.y1c0{bottom:795.933333pt;}
.y12{bottom:799.773333pt;}
.y251{bottom:801.053333pt;}
.y16e{bottom:801.693333pt;}
.y143{bottom:801.853333pt;}
.y19b{bottom:806.013333pt;}
.y7f{bottom:809.053333pt;}
.yfa{bottom:809.413333pt;}
.y53{bottom:809.573333pt;}
.y214{bottom:809.733333pt;}
.y1bf{bottom:811.813333pt;}
.yaf{bottom:817.573333pt;}
.y11{bottom:819.493333pt;}
.y19a{bottom:821.893333pt;}
.y250{bottom:824.933333pt;}
.y52{bottom:825.413333pt;}
.y213{bottom:825.573333pt;}
.y142{bottom:825.733333pt;}
.y1be{bottom:827.653333pt;}
.yae{bottom:833.413333pt;}
.y7e{bottom:833.573333pt;}
.y10{bottom:839.813333pt;}
.y51{bottom:841.413333pt;}
.y141{bottom:841.733333pt;}
.y199{bottom:845.893333pt;}
.y24f{bottom:848.773333pt;}
.yf9{bottom:849.253333pt;}
.yad{bottom:849.413333pt;}
.y1bd{bottom:851.333333pt;}
.y50{bottom:857.253333pt;}
.y16d{bottom:857.413333pt;}
.y7c{bottom:858.053333pt;}
.yf{bottom:859.493333pt;}
.y198{bottom:861.733333pt;}
.y140{bottom:863.013333pt;}
.yf8{bottom:865.093333pt;}
.yac{bottom:865.253333pt;}
.y24e{bottom:872.773333pt;}
.y4f{bottom:873.093333pt;}
.y16c{bottom:873.253333pt;}
.y1bc{bottom:875.173333pt;}
.y197{bottom:877.573333pt;}
.y11f{bottom:880.933333pt;}
.yab{bottom:881.093333pt;}
.y7a{bottom:882.693333pt;}
.y4e{bottom:888.933333pt;}
.y16b{bottom:889.093333pt;}
.y196{bottom:893.413333pt;}
.y1ef{bottom:896.440000pt;}
.y1bb{bottom:896.613333pt;}
.yaa{bottom:896.933333pt;}
.ye{bottom:899.173333pt;}
.y1ee{bottom:899.499150pt;}
.y11e{bottom:904.453333pt;}
.yf7{bottom:904.773333pt;}
.y16a{bottom:904.933333pt;}
.y78{bottom:907.173333pt;}
.y195{bottom:909.253333pt;}
.yd{bottom:909.893333pt;}
.y4d{bottom:912.773333pt;}
.y1e8{bottom:913.481029pt;}
.y24d{bottom:920.453333pt;}
.yc{bottom:920.613333pt;}
.y169{bottom:920.773333pt;}
.y194{bottom:925.253333pt;}
.y4c{bottom:928.773333pt;}
.yb{bottom:931.333333pt;}
.y77{bottom:936.773333pt;}
.y1ed{bottom:940.712348pt;}
.y193{bottom:941.093333pt;}
.ya{bottom:943.973333pt;}
.y24c{bottom:944.293333pt;}
.y4b{bottom:944.613333pt;}
.y76{bottom:952.613333pt;}
.y4a{bottom:960.453333pt;}
.y192{bottom:964.613333pt;}
.y9{bottom:966.373333pt;}
.y1ea{bottom:967.963472pt;}
.y24b{bottom:968.133333pt;}
.y75{bottom:968.453333pt;}
.y49{bottom:976.293333pt;}
.y1e2{bottom:982.028860pt;}
.y74{bottom:984.293333pt;}
.y191{bottom:988.453333pt;}
.y24a{bottom:991.973333pt;}
.y48{bottom:992.133333pt;}
.y8{bottom:992.773333pt;}
.y73{bottom:1000.133333pt;}
.y190{bottom:1004.293333pt;}
.yda{bottom:1007.653333pt;}
.y47{bottom:1007.973333pt;}
.y1e4{bottom:1008.467995pt;}
.y72{bottom:1015.973333pt;}
.ya9{bottom:1024.000000pt;}
.y18e{bottom:1024.160000pt;}
.y46{bottom:1032.000000pt;}
.y7{bottom:1036.320000pt;}
.y249{bottom:1039.840000pt;}
.y45{bottom:1047.840000pt;}
.y18d{bottom:1050.080000pt;}
.y44{bottom:1063.680000pt;}
.y1{bottom:1080.000000pt;}
.h36{height:10.082451pt;}
.h3e{height:11.213653pt;}
.h3d{height:11.230515pt;}
.h3b{height:11.297966pt;}
.h34{height:13.189861pt;}
.h32{height:13.269079pt;}
.h43{height:18.715590pt;}
.h3f{height:22.444168pt;}
.h38{height:22.511619pt;}
.h23{height:23.826667pt;}
.h16{height:23.840000pt;}
.h24{height:23.858667pt;}
.h2c{height:23.866667pt;}
.h18{height:23.872000pt;}
.h25{height:23.986667pt;}
.h17{height:24.000000pt;}
.h27{height:24.146667pt;}
.h28{height:24.156000pt;}
.h26{height:24.306667pt;}
.h29{height:24.316000pt;}
.h2a{height:25.120000pt;}
.h2f{height:26.356616pt;}
.h30{height:26.439135pt;}
.h33{height:26.458940pt;}
.h47{height:26.698728pt;}
.h3{height:27.676000pt;}
.h39{height:33.099510pt;}
.h12{height:33.515625pt;}
.h19{height:33.867188pt;}
.h37{height:33.988750pt;}
.h3c{height:34.992275pt;}
.h3a{height:35.175458pt;}
.h42{height:36.158126pt;}
.h8{height:36.431250pt;}
.h44{height:37.129538pt;}
.h45{height:37.504863pt;}
.h46{height:38.225795pt;}
.h2e{height:38.874255pt;}
.h22{height:39.666667pt;}
.h1b{height:47.085938pt;}
.h4{height:47.109375pt;}
.h10{height:48.375000pt;}
.h1c{height:49.336436pt;}
.h1a{height:49.968750pt;}
.h14{height:52.108438pt;}
.h9{height:52.134375pt;}
.h15{height:52.234000pt;}
.h1d{height:52.510625pt;}
.h21{height:52.526250pt;}
.h2d{height:52.795751pt;}
.ha{height:53.535000pt;}
.h2b{height:55.680000pt;}
.h1e{height:57.286250pt;}
.hb{height:57.787500pt;}
.h2{height:58.563750pt;}
.he{height:59.340000pt;}
.hd{height:64.290000pt;}
.hf{height:64.500000pt;}
.h31{height:67.751521pt;}
.h11{height:69.660000pt;}
.h20{height:71.405938pt;}
.hc{height:73.490625pt;}
.h7{height:75.465000pt;}
.h1f{height:81.606250pt;}
.h6{height:91.590000pt;}
.h5{height:96.750000pt;}
.h41{height:103.200543pt;}
.h40{height:106.002744pt;}
.h35{height:138.382136pt;}
.h13{height:235.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:28.947409pt;}
.w24{width:30.149990pt;}
.w1a{width:30.433415pt;}
.w17{width:34.693301pt;}
.w23{width:38.848865pt;}
.w19{width:40.122178pt;}
.w16{width:40.141992pt;}
.w20{width:41.318834pt;}
.w22{width:41.338463pt;}
.w29{width:41.900901pt;}
.w25{width:52.801741pt;}
.w2a{width:53.627941pt;}
.w2b{width:56.531780pt;}
.w21{width:57.139728pt;}
.w15{width:57.775937pt;}
.w1f{width:60.005547pt;}
.w14{width:69.862124pt;}
.wa{width:71.346667pt;}
.wd{width:71.380000pt;}
.w3{width:71.386667pt;}
.wf{width:75.360000pt;}
.wc{width:75.386667pt;}
.w2c{width:76.802807pt;}
.w2d{width:77.472923pt;}
.w12{width:79.680000pt;}
.w1e{width:82.948460pt;}
.w9{width:88.000000pt;}
.w1b{width:92.446122pt;}
.w7{width:106.260000pt;}
.w10{width:108.660000pt;}
.w5{width:117.266667pt;}
.w13{width:122.884490pt;}
.w8{width:132.352000pt;}
.w11{width:137.626667pt;}
.wb{width:179.373333pt;}
.we{width:179.386667pt;}
.w6{width:208.533333pt;}
.w28{width:308.664697pt;}
.w27{width:323.183890pt;}
.w26{width:324.678363pt;}
.w1d{width:324.743793pt;}
.w1c{width:327.730501pt;}
.w2{width:641.880000pt;}
.w4{width:723.200000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x44{left:2.476678pt;}
.x46{left:3.863617pt;}
.x4e{left:5.745892pt;}
.x6{left:7.680000pt;}
.x14{left:9.600000pt;}
.x35{left:11.186667pt;}
.x4b{left:12.185254pt;}
.x52{left:14.451778pt;}
.x4d{left:15.355402pt;}
.x29{left:16.960000pt;}
.x56{left:17.878656pt;}
.x3e{left:19.040000pt;}
.x33{left:20.626667pt;}
.x3f{left:22.720000pt;}
.x38{left:23.666667pt;}
.x37{left:27.680000pt;}
.x3b{left:28.640000pt;}
.x41{left:29.760000pt;}
.x31{left:30.880000pt;}
.x2f{left:31.840000pt;}
.x2a{left:33.760000pt;}
.x13{left:34.880000pt;}
.x2e{left:36.960000pt;}
.x27{left:37.948000pt;}
.x3a{left:39.226667pt;}
.x2{left:40.324000pt;}
.x2c{left:42.240000pt;}
.x15{left:44.480000pt;}
.x2d{left:45.440000pt;}
.x19{left:46.546667pt;}
.x1{left:48.000000pt;}
.x5c{left:49.436610pt;}
.x58{left:54.980381pt;}
.x18{left:58.106667pt;}
.x30{left:60.160000pt;}
.xd{left:63.360000pt;}
.x1b{left:72.000000pt;}
.x39{left:76.186667pt;}
.x1a{left:83.066667pt;}
.x20{left:96.032000pt;}
.x10{left:118.592000pt;}
.x59{left:120.861421pt;}
.xe{left:133.626667pt;}
.x4f{left:143.642654pt;}
.x50{left:145.801833pt;}
.x5a{left:151.348420pt;}
.x28{left:153.306667pt;}
.x3d{left:156.026667pt;}
.x3{left:197.662667pt;}
.x5b{left:208.626325pt;}
.xa{left:238.946667pt;}
.x4{left:241.182667pt;}
.xf{left:245.026667pt;}
.xb{left:255.266667pt;}
.x8{left:271.266667pt;}
.x11{left:279.426667pt;}
.x2b{left:286.466667pt;}
.x40{left:294.466667pt;}
.x3c{left:298.786667pt;}
.x9{left:323.906667pt;}
.xc{left:336.706667pt;}
.x16{left:370.466667pt;}
.x26{left:374.306667pt;}
.x7{left:396.893333pt;}
.x32{left:419.626667pt;}
.x12{left:420.893333pt;}
.x21{left:439.773333pt;}
.x1c{left:444.893333pt;}
.x4c{left:451.300082pt;}
.x23{left:458.653333pt;}
.x43{left:463.773333pt;}
.x22{left:468.893333pt;}
.x34{left:491.626667pt;}
.x1e{left:492.893333pt;}
.x1f{left:496.413333pt;}
.x24{left:499.613333pt;}
.x51{left:503.815126pt;}
.x25{left:528.093333pt;}
.x17{left:538.186667pt;}
.x45{left:543.751157pt;}
.x53{left:564.607465pt;}
.x4a{left:573.487800pt;}
.x54{left:606.711456pt;}
.x47{left:614.402516pt;}
.x55{left:664.641247pt;}
.x36{left:671.653333pt;}
.x48{left:672.975942pt;}
.x5{left:682.213333pt;}
.x57{left:706.761595pt;}
.x49{left:713.907169pt;}
.x1d{left:745.760000pt;}
.x42{left:748.960000pt;}
}




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