
    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_1cd38cf45d71e732debe644e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.694336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ca3f09ca96c3e3fbee30c69a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_fb692aafe0457f639272d862.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_4f030a570b356551d8ee7479.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_7c26a673ba1c595435d9e48b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_088d6e9322b44ad5d9527f1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_6ce94fbaa47b9645cd416163.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.859863;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_2075c08d985e10d2c38c7124.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.005371;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_d57f63a428f3e23654161afc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.859863;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);}
.v1{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-1.176000px;}
.ls2{letter-spacing:-0.948000px;}
.ls1a{letter-spacing:-0.594000px;}
.ls6{letter-spacing:-0.414600px;}
.ls14{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.342000px;}
.ls9{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.262200px;}
.ls3{letter-spacing:-0.229800px;}
.lsb{letter-spacing:-0.152400px;}
.ls5{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.106800px;}
.ls16{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.025920px;}
.ls19{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.132480px;}
.ls0{letter-spacing:0.142560px;}
.ls17{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.262080px;}
.ls7{letter-spacing:0.262200px;}
.lsd{letter-spacing:0.305280px;}
.ls11{letter-spacing:0.305400px;}
.lsa{letter-spacing:1.548000px;}
.ls18{letter-spacing:19.386720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-19.962720px;}
.ws1{word-spacing:-18.808440px;}
.ws4{word-spacing:-18.676920px;}
.ws3{word-spacing:-18.414720px;}
.ws8{word-spacing:-18.305520px;}
.ws9{word-spacing:-18.262320px;}
.ws2{word-spacing:-18.152520px;}
.ws6{word-spacing:-18.109320px;}
.ws0{word-spacing:-18.090240px;}
.wsa{word-spacing:-17.238720px;}
.ws11{word-spacing:-16.666560px;}
.ws10{word-spacing:-16.613280px;}
.wsf{word-spacing:-16.506480px;}
.wse{word-spacing:-16.253280px;}
.wsc{word-spacing:-15.228000px;}
.ws12{word-spacing:-15.156000px;}
.wsd{word-spacing:-15.012000px;}
.ws13{word-spacing:-14.994000px;}
.wsb{word-spacing:-14.904000px;}
.ws15{word-spacing:-14.670000px;}
.ws14{word-spacing:-14.418000px;}
.ws5{word-spacing:0.000000px;}
._d{margin-left:-3.139200px;}
._0{margin-left:-1.179360px;}
._4{width:1.258560px;}
._3{width:2.450880px;}
._1{width:3.551040px;}
._2{width:4.787040px;}
._a{width:6.690240px;}
._b{width:7.750080px;}
._c{width:9.517920px;}
._8{width:11.525760px;}
._9{width:14.136000px;}
._5{width:19.443360px;}
._6{width:36.961920px;}
._7{width:37.968000px;}
._e{width:47.301360px;}
._f{width:849.185760px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.y25f{bottom:-4.320000px;}
.y263{bottom:-4.140000px;}
.y87{bottom:-1.800000px;}
.y2a0{bottom:-1.440000px;}
.y298{bottom:-1.260000px;}
.y15d{bottom:-1.080000px;}
.y16f{bottom:-0.900000px;}
.y0{bottom:0.000000px;}
.y166{bottom:2.340000px;}
.y16c{bottom:2.520000px;}
.y1e5{bottom:3.240000px;}
.y12d{bottom:3.420000px;}
.y7a{bottom:3.585000px;}
.y17{bottom:3.600000px;}
.y76{bottom:3.765000px;}
.y16{bottom:3.780000px;}
.y26{bottom:3.960000px;}
.y1b{bottom:5.040000px;}
.y1e{bottom:5.220000px;}
.y14f{bottom:5.760000px;}
.yaf{bottom:5.934000px;}
.y86{bottom:5.940000px;}
.y9c{bottom:5.970000px;}
.y198{bottom:6.105000px;}
.y1ca{bottom:6.112500px;}
.y84{bottom:6.120000px;}
.yd4{bottom:6.285000px;}
.yd7{bottom:6.286500px;}
.y117{bottom:6.292500px;}
.y83{bottom:6.300000px;}
.y273{bottom:6.330000px;}
.y295{bottom:6.345000px;}
.ycf{bottom:6.465000px;}
.yda{bottom:6.472500px;}
.y1a{bottom:6.480000px;}
.ycc{bottom:6.510000px;}
.yd3{bottom:6.645000px;}
.yd6{bottom:6.646500px;}
.y116{bottom:6.652500px;}
.y19{bottom:6.660000px;}
.y294{bottom:6.705000px;}
.yce{bottom:6.825000px;}
.yd9{bottom:6.832500px;}
.y1d{bottom:6.840000px;}
.ycb{bottom:6.870000px;}
.y157{bottom:10.800000px;}
.y167{bottom:10.845000px;}
.y152{bottom:10.980000px;}
.y159{bottom:11.520000px;}
.y151{bottom:11.700000px;}
.y14{bottom:12.420000px;}
.y2b{bottom:13.140000px;}
.y155{bottom:14.040000px;}
.y169{bottom:16.200000px;}
.y15c{bottom:18.000000px;}
.y46{bottom:18.720000px;}
.y45{bottom:18.900000px;}
.y16b{bottom:19.620000px;}
.y165{bottom:19.665000px;}
.y1ef{bottom:20.160000px;}
.y21f{bottom:20.190000px;}
.y1f7{bottom:20.205000px;}
.y22b{bottom:20.334000px;}
.y1f1{bottom:20.340000px;}
.y20e{bottom:20.370000px;}
.y207{bottom:20.385000px;}
.y12c{bottom:20.520000px;}
.y13a{bottom:20.700000px;}
.y13c{bottom:20.880000px;}
.y13{bottom:21.420000px;}
.y12{bottom:21.600000px;}
.y78{bottom:22.665000px;}
.y2a{bottom:22.680000px;}
.y30{bottom:22.860000px;}
.y14d{bottom:23.220000px;}
.y154{bottom:23.400000px;}
.y7c{bottom:24.465000px;}
.y12b{bottom:37.800000px;}
.y133{bottom:37.980000px;}
.y145{bottom:38.010000px;}
.y149{bottom:38.160000px;}
.y173{bottom:39.600000px;}
.y1d2{bottom:41.580000px;}
.y120{bottom:41.760000px;}
.y11f{bottom:41.940000px;}
.y12a{bottom:55.080000px;}
.y132{bottom:55.260000px;}
.y144{bottom:55.290000px;}
.y148{bottom:55.440000px;}
.y139{bottom:72.360000px;}
.y143{bottom:72.390000px;}
.y129{bottom:72.405000px;}
.y13b{bottom:72.540000px;}
.y140{bottom:72.570000px;}
.y131{bottom:72.585000px;}
.y147{bottom:72.720000px;}
.y172{bottom:73.800000px;}
.y138{bottom:89.640000px;}
.y142{bottom:89.670000px;}
.y128{bottom:89.685000px;}
.y136{bottom:89.820000px;}
.y13f{bottom:89.850000px;}
.y130{bottom:89.865000px;}
.yb1{bottom:101.736000px;}
.y1e4{bottom:106.740000px;}
.y137{bottom:106.920000px;}
.y141{bottom:106.950000px;}
.y127{bottom:106.965000px;}
.y135{bottom:107.100000px;}
.y13e{bottom:107.130000px;}
.y12f{bottom:107.145000px;}
.y171{bottom:107.820000px;}
.y115{bottom:108.223500px;}
.y19e{bottom:109.483500px;}
.y80{bottom:113.436000px;}
.y1cb{bottom:114.523500px;}
.y5c{bottom:117.720000px;}
.y43{bottom:118.656000px;}
.y20b{bottom:120.276000px;}
.y1cc{bottom:120.996000px;}
.yd8{bottom:122.983500px;}
.y1e3{bottom:124.020000px;}
.y126{bottom:124.065000px;}
.yb0{bottom:124.236000px;}
.y12e{bottom:124.245000px;}
.y2b3{bottom:129.276000px;}
.y114{bottom:131.443500px;}
.y246{bottom:131.616000px;}
.y19d{bottom:133.063500px;}
.y7f{bottom:135.216000px;}
.y22a{bottom:135.936000px;}
.y48{bottom:136.620000px;}
.y6d{bottom:136.830000px;}
.y1c9{bottom:138.283500px;}
.y1e2{bottom:141.300000px;}
.y125{bottom:141.345000px;}
.y1ea{bottom:141.480000px;}
.y123{bottom:141.525000px;}
.y170{bottom:141.840000px;}
.yd5{bottom:146.383500px;}
.ye{bottom:146.556000px;}
.yae{bottom:146.736000px;}
.y20a{bottom:153.930000px;}
.y113{bottom:154.665000px;}
.y52{bottom:155.565000px;}
.y6c{bottom:155.730000px;}
.y42{bottom:156.810000px;}
.y19c{bottom:156.825000px;}
.y7e{bottom:156.990000px;}
.y1e1{bottom:158.580000px;}
.y124{bottom:158.625000px;}
.y1e9{bottom:158.760000px;}
.y122{bottom:158.805000px;}
.y1c8{bottom:161.865000px;}
.y2b2{bottom:167.430000px;}
.yd{bottom:168.510000px;}
.yad{bottom:169.230000px;}
.y229{bottom:169.590000px;}
.yd2{bottom:169.605000px;}
.y245{bottom:169.770000px;}
.y7b{bottom:173.745000px;}
.y1e0{bottom:175.860000px;}
.y16e{bottom:175.890000px;}
.y112{bottom:177.885000px;}
.y19b{bottom:180.405000px;}
.y2b1{bottom:183.825000px;}
.y1c7{bottom:185.445000px;}
.y209{bottom:187.590000px;}
.yc{bottom:190.290000px;}
.yac{bottom:191.730000px;}
.yd1{bottom:192.825000px;}
.y1df{bottom:193.140000px;}
.y1e8{bottom:193.320000px;}
.y7d{bottom:194.265000px;}
.y41{bottom:194.970000px;}
.y111{bottom:201.285000px;}
.y228{bottom:203.250000px;}
.y19a{bottom:203.985000px;}
.y2b0{bottom:207.045000px;}
.y244{bottom:207.930000px;}
.y1c6{bottom:209.025000px;}
.y16d{bottom:209.910000px;}
.y1de{bottom:210.240000px;}
.y1e7{bottom:210.420000px;}
.yb{bottom:212.070000px;}
.y77{bottom:213.345000px;}
.yab{bottom:214.230000px;}
.yd0{bottom:216.045000px;}
.y208{bottom:221.070000px;}
.y110{bottom:224.505000px;}
.y199{bottom:227.565000px;}
.y1e6{bottom:227.745000px;}
.y2af{bottom:230.265000px;}
.y79{bottom:232.245000px;}
.y1c5{bottom:232.785000px;}
.y40{bottom:233.130000px;}
.ya{bottom:234.030000px;}
.yaa{bottom:236.730000px;}
.ycd{bottom:239.265000px;}
.y16a{bottom:243.930000px;}
.y1dd{bottom:244.845000px;}
.y1d8{bottom:245.025000px;}
.y243{bottom:246.090000px;}
.y10f{bottom:247.725000px;}
.y6b{bottom:251.145000px;}
.y197{bottom:251.325000px;}
.y2ae{bottom:253.485000px;}
.y206{bottom:254.730000px;}
.y1c4{bottom:256.365000px;}
.ya9{bottom:259.230000px;}
.y1dc{bottom:262.125000px;}
.y1d7{bottom:262.305000px;}
.yca{bottom:262.485000px;}
.y9{bottom:267.150000px;}
.y75{bottom:270.255000px;}
.y227{bottom:270.435000px;}
.y10e{bottom:270.975000px;}
.y3f{bottom:271.335000px;}
.y196{bottom:274.935000px;}
.y2ad{bottom:276.915000px;}
.y168{bottom:278.130000px;}
.y1db{bottom:279.405000px;}
.y1d6{bottom:279.585000px;}
.y1c3{bottom:279.975000px;}
.y25c{bottom:280.155000px;}
.ya8{bottom:281.775000px;}
.y242{bottom:284.295000px;}
.yc9{bottom:285.915000px;}
.y205{bottom:288.435000px;}
.y74{bottom:289.155000px;}
.y10d{bottom:294.195000px;}
.y1da{bottom:296.685000px;}
.y1d5{bottom:296.865000px;}
.y195{bottom:298.515000px;}
.y2ac{bottom:300.135000px;}
.y1c2{bottom:303.555000px;}
.y226{bottom:304.095000px;}
.ya7{bottom:304.275000px;}
.y73{bottom:308.235000px;}
.yc8{bottom:309.135000px;}
.y3e{bottom:309.495000px;}
.y1d9{bottom:313.785000px;}
.y1d4{bottom:313.965000px;}
.y10c{bottom:317.415000px;}
.y25b{bottom:318.315000px;}
.y164{bottom:321.510000px;}
.y204{bottom:321.915000px;}
.y194{bottom:322.095000px;}
.y241{bottom:322.455000px;}
.y2ab{bottom:323.355000px;}
.ya6{bottom:326.775000px;}
.y72{bottom:327.135000px;}
.y1c1{bottom:327.315000px;}
.yc7{bottom:332.355000px;}
.y225{bottom:337.575000px;}
.y10b{bottom:340.815000px;}
.y193{bottom:345.855000px;}
.y71{bottom:346.035000px;}
.y2aa{bottom:346.575000px;}
.y3d{bottom:347.655000px;}
.ya5{bottom:349.275000px;}
.y1c0{bottom:350.895000px;}
.y14b{bottom:352.695000px;}
.yc6{bottom:355.575000px;}
.y25a{bottom:356.475000px;}
.y240{bottom:360.615000px;}
.y10a{bottom:364.035000px;}
.y70{bottom:365.115000px;}
.y192{bottom:369.435000px;}
.y2a9{bottom:369.795000px;}
.y14a{bottom:369.975000px;}
.y224{bottom:371.235000px;}
.ya4{bottom:371.775000px;}
.y1bf{bottom:374.475000px;}
.yc5{bottom:378.795000px;}
.y259{bottom:379.875000px;}
.y6f{bottom:384.015000px;}
.y3c{bottom:385.815000px;}
.y109{bottom:387.255000px;}
.y203{bottom:389.235000px;}
.y163{bottom:389.775000px;}
.y191{bottom:393.015000px;}
.ya3{bottom:394.275000px;}
.y1be{bottom:398.055000px;}
.y23f{bottom:398.775000px;}
.yc4{bottom:402.015000px;}
.y146{bottom:402.555000px;}
.y6e{bottom:403.095000px;}
.y223{bottom:404.895000px;}
.y108{bottom:410.475000px;}
.y2a8{bottom:416.415000px;}
.y190{bottom:416.595000px;}
.ya2{bottom:416.775000px;}
.y258{bottom:417.855000px;}
.y1bd{bottom:421.815000px;}
.y6a{bottom:421.995000px;}
.y202{bottom:422.715000px;}
.y162{bottom:423.795000px;}
.y3b{bottom:423.975000px;}
.yc3{bottom:425.415000px;}
.y107{bottom:433.695000px;}
.y278{bottom:434.055000px;}
.y23e{bottom:436.935000px;}
.y222{bottom:438.555000px;}
.ya1{bottom:439.275000px;}
.y2a7{bottom:439.635000px;}
.y18f{bottom:440.355000px;}
.y68{bottom:441.075000px;}
.y1bc{bottom:445.395000px;}
.yc2{bottom:448.635000px;}
.y257{bottom:456.015000px;}
.y201{bottom:456.375000px;}
.y106{bottom:456.915000px;}
.y277{bottom:457.275000px;}
.y161{bottom:457.815000px;}
.y69{bottom:459.975000px;}
.ya0{bottom:461.775000px;}
.y3a{bottom:462.135000px;}
.y2a6{bottom:462.855000px;}
.y18e{bottom:463.935000px;}
.y1bb{bottom:468.975000px;}
.yc1{bottom:471.855000px;}
.y221{bottom:472.035000px;}
.y23d{bottom:475.095000px;}
.y67{bottom:478.875000px;}
.y105{bottom:480.315000px;}
.y276{bottom:480.495000px;}
.y9f{bottom:484.275000px;}
.y2a5{bottom:486.075000px;}
.y18d{bottom:487.515000px;}
.y200{bottom:490.035000px;}
.y160{bottom:491.865000px;}
.y1ba{bottom:492.555000px;}
.y256{bottom:494.175000px;}
.yc0{bottom:495.075000px;}
.y66{bottom:497.955000px;}
.y39{bottom:498.675000px;}
.y104{bottom:503.535000px;}
.y275{bottom:503.715000px;}
.y220{bottom:505.695000px;}
.y9e{bottom:506.775000px;}
.y2a4{bottom:509.295000px;}
.y18c{bottom:511.095000px;}
.y23c{bottom:513.255000px;}
.y1b9{bottom:516.315000px;}
.y65{bottom:516.855000px;}
.ybf{bottom:518.295000px;}
.y38{bottom:518.475000px;}
.y13d{bottom:523.335000px;}
.y1ff{bottom:523.695000px;}
.y15f{bottom:525.885000px;}
.y103{bottom:526.755000px;}
.y274{bottom:526.935000px;}
.y9d{bottom:529.275000px;}
.y255{bottom:532.335000px;}
.y2a3{bottom:532.515000px;}
.y18b{bottom:534.855000px;}
.y64{bottom:535.935000px;}
.y37{bottom:538.275000px;}
.y21e{bottom:539.355000px;}
.y1b8{bottom:539.895000px;}
.ybe{bottom:541.515000px;}
.y102{bottom:549.975000px;}
.y272{bottom:550.335000px;}
.y23b{bottom:551.415000px;}
.y9b{bottom:551.775000px;}
.y36{bottom:553.965000px;}
.y5b{bottom:554.865000px;}
.y2a2{bottom:555.945000px;}
.y1fe{bottom:557.205000px;}
.y18a{bottom:558.465000px;}
.y15e{bottom:559.905000px;}
.y1b7{bottom:563.505000px;}
.ybd{bottom:564.945000px;}
.y254{bottom:570.525000px;}
.y35{bottom:572.865000px;}
.y101{bottom:573.225000px;}
.y271{bottom:573.585000px;}
.y63{bottom:573.765000px;}
.y9a{bottom:574.305000px;}
.y2a1{bottom:579.165000px;}
.y189{bottom:582.045000px;}
.y1b6{bottom:587.085000px;}
.ybc{bottom:588.165000px;}
.y23a{bottom:589.605000px;}
.y1fd{bottom:590.865000px;}
.y34{bottom:591.945000px;}
.y62{bottom:592.845000px;}
.y15b{bottom:594.105000px;}
.y100{bottom:596.445000px;}
.y99{bottom:596.805000px;}
.y1eb{bottom:601.485000px;}
.y29f{bottom:602.385000px;}
.y188{bottom:605.625000px;}
.y21d{bottom:606.525000px;}
.y253{bottom:608.685000px;}
.y33{bottom:610.845000px;}
.ybb{bottom:611.385000px;}
.y61{bottom:611.745000px;}
.y1d3{bottom:618.765000px;}
.y98{bottom:619.305000px;}
.yff{bottom:619.845000px;}
.y270{bottom:620.025000px;}
.y1fc{bottom:624.525000px;}
.y29e{bottom:625.605000px;}
.y239{bottom:627.765000px;}
.y15a{bottom:628.125000px;}
.y187{bottom:629.385000px;}
.y32{bottom:629.745000px;}
.y60{bottom:630.825000px;}
.y1b5{bottom:634.425000px;}
.yba{bottom:634.605000px;}
.y21c{bottom:640.185000px;}
.y97{bottom:641.805000px;}
.yfe{bottom:643.065000px;}
.y26f{bottom:643.245000px;}
.y134{bottom:644.145000px;}
.y8{bottom:645.225000px;}
.y252{bottom:646.845000px;}
.y31{bottom:648.825000px;}
.y5f{bottom:649.725000px;}
.y186{bottom:652.965000px;}
.yb9{bottom:657.825000px;}
.y1b4{bottom:658.005000px;}
.y158{bottom:662.190000px;}
.y96{bottom:664.305000px;}
.y238{bottom:665.925000px;}
.yfd{bottom:666.285000px;}
.y26e{bottom:666.465000px;}
.y2f{bottom:667.725000px;}
.y5e{bottom:668.625000px;}
.y29d{bottom:672.045000px;}
.y21b{bottom:673.665000px;}
.y185{bottom:676.545000px;}
.yb8{bottom:681.045000px;}
.y1b3{bottom:681.585000px;}
.y7{bottom:681.945000px;}
.y251{bottom:685.005000px;}
.y95{bottom:686.805000px;}
.y5d{bottom:687.705000px;}
.y28a{bottom:688.785000px;}
.yfc{bottom:689.505000px;}
.y26d{bottom:689.865000px;}
.y1fb{bottom:691.665000px;}
.y29c{bottom:695.445000px;}
.y156{bottom:696.210000px;}
.y184{bottom:700.125000px;}
.y237{bottom:704.085000px;}
.yb7{bottom:704.445000px;}
.y1b2{bottom:705.345000px;}
.y2e{bottom:705.705000px;}
.y5a{bottom:706.605000px;}
.y21a{bottom:707.325000px;}
.y94{bottom:709.305000px;}
.y289{bottom:712.005000px;}
.yfb{bottom:712.725000px;}
.y26c{bottom:713.085000px;}
.y29b{bottom:718.665000px;}
.y6{bottom:718.845000px;}
.y250{bottom:723.165000px;}
.y183{bottom:723.885000px;}
.y2d{bottom:724.605000px;}
.y1fa{bottom:725.325000px;}
.y51{bottom:725.685000px;}
.yb6{bottom:727.665000px;}
.y1b1{bottom:728.925000px;}
.y153{bottom:730.230000px;}
.y93{bottom:731.805000px;}
.y288{bottom:735.225000px;}
.yfa{bottom:735.945000px;}
.y26b{bottom:736.305000px;}
.y5{bottom:740.625000px;}
.y219{bottom:740.985000px;}
.y29a{bottom:741.885000px;}
.y236{bottom:742.245000px;}
.y2c{bottom:743.685000px;}
.y59{bottom:744.585000px;}
.y182{bottom:747.465000px;}
.y1b0{bottom:752.505000px;}
.y92{bottom:754.305000px;}
.y287{bottom:758.445000px;}
.y1f9{bottom:758.805000px;}
.yf9{bottom:759.345000px;}
.y26a{bottom:759.525000px;}
.y24f{bottom:761.325000px;}
.y4{bottom:762.585000px;}
.y58{bottom:763.485000px;}
.y121{bottom:764.925000px;}
.y299{bottom:765.105000px;}
.y150{bottom:770.550000px;}
.y181{bottom:771.045000px;}
.yb5{bottom:773.385000px;}
.y218{bottom:774.465000px;}
.y1af{bottom:776.085000px;}
.y91{bottom:776.805000px;}
.y235{bottom:780.405000px;}
.y29{bottom:781.665000px;}
.y286{bottom:781.845000px;}
.yf8{bottom:782.565000px;}
.y269{bottom:782.745000px;}
.y297{bottom:788.325000px;}
.y1f8{bottom:792.465000px;}
.y180{bottom:794.625000px;}
.y3{bottom:799.305000px;}
.y24e{bottom:799.485000px;}
.y1ae{bottom:799.845000px;}
.y57{bottom:801.465000px;}
.y14e{bottom:804.750000px;}
.y285{bottom:805.065000px;}
.yf7{bottom:805.785000px;}
.y268{bottom:805.965000px;}
.y217{bottom:808.125000px;}
.yb4{bottom:810.645000px;}
.y296{bottom:811.545000px;}
.y17f{bottom:818.385000px;}
.y234{bottom:818.565000px;}
.y28{bottom:819.465000px;}
.y56{bottom:820.545000px;}
.y90{bottom:821.805000px;}
.y1ad{bottom:823.425000px;}
.y1f6{bottom:826.125000px;}
.y284{bottom:828.285000px;}
.yf6{bottom:829.005000px;}
.y267{bottom:829.365000px;}
.yb3{bottom:832.605000px;}
.y293{bottom:834.945000px;}
.y24d{bottom:837.690000px;}
.y27{bottom:838.590000px;}
.y55{bottom:839.490000px;}
.y216{bottom:841.830000px;}
.y17e{bottom:842.010000px;}
.y8f{bottom:844.350000px;}
.y14c{bottom:845.820000px;}
.y1ac{bottom:847.050000px;}
.y283{bottom:851.550000px;}
.yf5{bottom:852.270000px;}
.y266{bottom:852.630000px;}
.y233{bottom:856.770000px;}
.y25{bottom:857.490000px;}
.y292{bottom:858.210000px;}
.y54{bottom:858.570000px;}
.y1f5{bottom:859.650000px;}
.y17d{bottom:865.590000px;}
.y8e{bottom:866.850000px;}
.yb2{bottom:869.370000px;}
.y1ab{bottom:870.630000px;}
.y282{bottom:874.770000px;}
.y215{bottom:875.310000px;}
.yf4{bottom:875.490000px;}
.y24c{bottom:875.850000px;}
.y24{bottom:876.570000px;}
.y53{bottom:877.470000px;}
.y291{bottom:881.430000px;}
.ye7{bottom:885.390000px;}
.y17c{bottom:889.170000px;}
.y8d{bottom:889.350000px;}
.y1f4{bottom:893.310000px;}
.y1aa{bottom:894.390000px;}
.y232{bottom:894.930000px;}
.y23{bottom:895.470000px;}
.y50{bottom:896.370000px;}
.y281{bottom:897.990000px;}
.yf3{bottom:898.890000px;}
.y265{bottom:899.070000px;}
.y290{bottom:904.650000px;}
.ye6{bottom:907.890000px;}
.y214{bottom:908.970000px;}
.y8c{bottom:911.850000px;}
.y17b{bottom:912.930000px;}
.y24b{bottom:914.010000px;}
.y22{bottom:914.370000px;}
.y47{bottom:915.450000px;}
.y1a9{bottom:917.970000px;}
.y280{bottom:921.390000px;}
.yf2{bottom:922.110000px;}
.y264{bottom:922.290000px;}
.y1f3{bottom:926.970000px;}
.y28f{bottom:927.870000px;}
.ye5{bottom:930.390000px;}
.y231{bottom:933.090000px;}
.y4f{bottom:934.350000px;}
.y21{bottom:936.330000px;}
.y17a{bottom:936.510000px;}
.y11e{bottom:938.850000px;}
.y1a8{bottom:941.550000px;}
.y213{bottom:942.630000px;}
.y27f{bottom:944.610000px;}
.yf1{bottom:945.330000px;}
.y262{bottom:945.510000px;}
.y1d1{bottom:948.030000px;}
.y28e{bottom:951.090000px;}
.y24a{bottom:952.170000px;}
.ye4{bottom:952.890000px;}
.y4e{bottom:953.430000px;}
.y8b{bottom:956.850000px;}
.y20{bottom:958.110000px;}
.y179{bottom:960.090000px;}
.y1f2{bottom:960.450000px;}
.y1a7{bottom:965.130000px;}
.y27e{bottom:967.830000px;}
.yf0{bottom:968.550000px;}
.y261{bottom:968.910000px;}
.y230{bottom:971.250000px;}
.y4d{bottom:972.330000px;}
.y28d{bottom:974.490000px;}
.ye3{bottom:975.390000px;}
.y212{bottom:976.110000px;}
.y8a{bottom:979.350000px;}
.y1f{bottom:979.890000px;}
.y178{bottom:983.670000px;}
.y1a6{bottom:988.890000px;}
.y249{bottom:990.330000px;}
.y27d{bottom:991.050000px;}
.y4c{bottom:991.230000px;}
.yef{bottom:991.770000px;}
.y260{bottom:992.130000px;}
.y1f0{bottom:994.110000px;}
.y28c{bottom:997.710000px;}
.ye2{bottom:997.890000px;}
.y1c{bottom:1001.670000px;}
.y89{bottom:1001.850000px;}
.y22f{bottom:1009.410000px;}
.y211{bottom:1009.770000px;}
.y4b{bottom:1010.310000px;}
.y11d{bottom:1010.670000px;}
.y1a5{bottom:1012.470000px;}
.y27c{bottom:1014.270000px;}
.yee{bottom:1014.990000px;}
.y25e{bottom:1015.350000px;}
.ye1{bottom:1020.390000px;}
.y28b{bottom:1020.930000px;}
.y18{bottom:1023.630000px;}
.y88{bottom:1024.350000px;}
.y1ee{bottom:1027.770000px;}
.y248{bottom:1028.490000px;}
.y1d0{bottom:1028.850000px;}
.y4a{bottom:1029.210000px;}
.y177{bottom:1029.930000px;}
.y1a4{bottom:1036.050000px;}
.y27b{bottom:1037.490000px;}
.yed{bottom:1038.390000px;}
.y25d{bottom:1038.570000px;}
.y11c{bottom:1039.110000px;}
.ye0{bottom:1042.890000px;}
.y210{bottom:1043.430000px;}
.y15{bottom:1045.410000px;}
.y85{bottom:1046.850000px;}
.y22e{bottom:1047.570000px;}
.y49{bottom:1048.290000px;}
.y1a3{bottom:1059.630000px;}
.y27a{bottom:1060.890000px;}
.y1ed{bottom:1061.250000px;}
.yec{bottom:1061.610000px;}
.ydf{bottom:1065.390000px;}
.y11{bottom:1065.930000px;}
.y247{bottom:1066.650000px;}
.y1cf{bottom:1067.010000px;}
.y176{bottom:1067.190000px;}
.y11b{bottom:1067.370000px;}
.y44{bottom:1068.630000px;}
.y82{bottom:1069.350000px;}
.y20f{bottom:1076.910000px;}
.y1a2{bottom:1083.390000px;}
.y279{bottom:1084.110000px;}
.yeb{bottom:1084.830000px;}
.y22d{bottom:1085.730000px;}
.yde{bottom:1087.890000px;}
.y11a{bottom:1095.810000px;}
.y175{bottom:1103.910000px;}
.y1ec{bottom:1104.090000px;}
.y1ce{bottom:1105.170000px;}
.y1a1{bottom:1106.970000px;}
.yea{bottom:1108.050000px;}
.ydd{bottom:1110.390000px;}
.y20d{bottom:1110.570000px;}
.y2{bottom:1113.090000px;}
.y22c{bottom:1123.920000px;}
.y119{bottom:1124.460000px;}
.y10{bottom:1125.900000px;}
.y1a0{bottom:1130.580000px;}
.ye9{bottom:1131.300000px;}
.ydc{bottom:1132.920000px;}
.y1cd{bottom:1134.000000px;}
.y81{bottom:1140.660000px;}
.y20c{bottom:1144.260000px;}
.y19f{bottom:1154.160000px;}
.ye8{bottom:1154.520000px;}
.ydb{bottom:1155.420000px;}
.y1{bottom:1157.760000px;}
.y118{bottom:1162.260000px;}
.y174{bottom:1162.620000px;}
.yf{bottom:1162.800000px;}
.h5{height:18.885000px;}
.hc{height:18.900000px;}
.h13{height:18.922500px;}
.h15{height:18.930000px;}
.h8{height:19.065000px;}
.hb{height:19.080000px;}
.h18{height:19.101000px;}
.h9{height:19.102500px;}
.h1a{height:21.600000px;}
.h1c{height:21.636000px;}
.h6{height:21.765000px;}
.h2b{height:21.816000px;}
.h7{height:21.945000px;}
.h37{height:21.952500px;}
.h36{height:21.960000px;}
.h30{height:22.125000px;}
.h35{height:22.132500px;}
.h32{height:22.140000px;}
.h34{height:22.161000px;}
.h31{height:22.162500px;}
.h33{height:22.170000px;}
.h20{height:22.485000px;}
.h22{height:22.492500px;}
.h1e{height:22.500000px;}
.h21{height:22.521000px;}
.h23{height:22.522500px;}
.h1f{height:22.530000px;}
.h3e{height:22.536000px;}
.h3b{height:32.760000px;}
.h3c{height:32.796000px;}
.h3a{height:32.940000px;}
.h3d{height:32.976000px;}
.h2c{height:33.300000px;}
.h2e{height:33.336000px;}
.h10{height:34.005000px;}
.h4{height:36.705000px;}
.h16{height:37.785000px;}
.ha{height:37.800000px;}
.hd{height:37.980000px;}
.h19{height:39.585000px;}
.h2d{height:39.600000px;}
.h2f{height:42.660000px;}
.h1d{height:45.184219px;}
.hf{height:45.248906px;}
.h1b{height:56.320312px;}
.h38{height:56.865000px;}
.h24{height:57.045000px;}
.h2{height:57.544805px;}
.he{height:62.327813px;}
.h3{height:69.086250px;}
.h28{height:120.765000px;}
.h26{height:120.780000px;}
.h27{height:120.810000px;}
.h11{height:151.725000px;}
.h14{height:151.740000px;}
.h12{height:170.670000px;}
.h17{height:170.835000px;}
.h25{height:172.470000px;}
.h39{height:327.630000px;}
.h29{height:892.980000px;}
.h2a{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w49{width:34.221000px;}
.w2a{width:35.280000px;}
.w48{width:35.625000px;}
.w16{width:35.640000px;}
.wf{width:35.676000px;}
.w3d{width:35.820000px;}
.w36{width:41.040000px;}
.w42{width:43.200000px;}
.w40{width:45.360000px;}
.w13{width:48.600000px;}
.w12{width:50.580000px;}
.w38{width:52.560000px;}
.w10{width:59.580000px;}
.w2b{width:60.840000px;}
.w46{width:61.200000px;}
.w43{width:64.800000px;}
.w37{width:65.376000px;}
.w2f{width:68.205000px;}
.w18{width:68.565000px;}
.w14{width:68.616000px;}
.w2d{width:71.085000px;}
.w2e{width:71.121000px;}
.w1e{width:71.850000px;}
.w2c{width:78.696000px;}
.w47{width:78.829500px;}
.w41{width:84.816000px;}
.wc{width:84.990000px;}
.w3b{width:84.996000px;}
.w3a{width:85.680000px;}
.w29{width:86.421000px;}
.w7{width:86.565000px;}
.w4{width:86.760000px;}
.wd{width:87.120000px;}
.w15{width:87.141000px;}
.w3f{width:91.080000px;}
.w3c{width:92.520000px;}
.w35{width:93.276000px;}
.w32{width:94.896000px;}
.w1b{width:95.256000px;}
.w6{width:95.961000px;}
.w39{width:98.856000px;}
.w45{width:100.296000px;}
.w2{width:103.849500px;}
.w5{width:104.256000px;}
.w34{width:105.645000px;}
.w1d{width:106.185000px;}
.w3e{width:106.236000px;}
.w3{width:107.481000px;}
.w19{width:108.349500px;}
.w30{width:111.229500px;}
.w33{width:115.761000px;}
.w22{width:116.100000px;}
.w1c{width:116.841000px;}
.w11{width:118.296000px;}
.w4a{width:119.700000px;}
.w44{width:121.320000px;}
.w27{width:122.400000px;}
.w9{width:123.289500px;}
.wb{width:127.605000px;}
.w4c{width:140.790000px;}
.w21{width:145.656000px;}
.w8{width:146.550000px;}
.w31{width:154.635000px;}
.w1a{width:155.355000px;}
.we{width:155.550000px;}
.w23{width:169.230000px;}
.w24{width:194.760000px;}
.w25{width:195.150000px;}
.w26{width:209.190000px;}
.w4b{width:245.595000px;}
.w17{width:251.535000px;}
.wa{width:340.290000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w28{width:1160.070000px;}
.w1f{width:1262.880000px;}
.w20{width:1263.000000px;}
.x0{left:0.000000px;}
.x2c{left:5.220000px;}
.x2e{left:6.300000px;}
.x1c{left:8.100000px;}
.x1b{left:9.180000px;}
.x1e{left:11.149500px;}
.x35{left:12.780000px;}
.x1d{left:13.845000px;}
.x33{left:14.940000px;}
.x37{left:16.020000px;}
.x2a{left:17.100000px;}
.xe{left:18.540000px;}
.x8{left:20.340000px;}
.x6{left:21.945000px;}
.x21{left:24.285000px;}
.x1a{left:25.725000px;}
.x4{left:27.529500px;}
.x62{left:28.620000px;}
.x15{left:29.865000px;}
.xc{left:31.485000px;}
.x1f{left:33.465000px;}
.xa{left:34.590000px;}
.x17{left:35.985000px;}
.x20{left:37.605000px;}
.x16{left:39.270000px;}
.x18{left:40.500000px;}
.x42{left:41.565000px;}
.x12{left:43.200000px;}
.x4e{left:44.280000px;}
.x34{left:46.080000px;}
.x13{left:47.865000px;}
.x4b{left:48.960000px;}
.x73{left:50.580000px;}
.x10{left:51.660000px;}
.x11{left:53.625000px;}
.x36{left:55.440000px;}
.x53{left:56.520000px;}
.x50{left:58.140000px;}
.x3d{left:59.250000px;}
.x19{left:60.330000px;}
.x27{left:61.543500px;}
.x75{left:63.750000px;}
.x4c{left:66.060000px;}
.x3b{left:67.890000px;}
.x72{left:70.560000px;}
.x14{left:73.110000px;}
.x74{left:76.350000px;}
.x77{left:77.430000px;}
.x3{left:80.866500px;}
.x22{left:85.176000px;}
.x4f{left:95.400000px;}
.x51{left:97.200000px;}
.x4d{left:100.080000px;}
.x52{left:104.580000px;}
.x23{left:108.406500px;}
.x6f{left:111.990000px;}
.x3e{left:119.566500px;}
.x76{left:122.970000px;}
.x1{left:127.656000px;}
.x28{left:133.236000px;}
.x6c{left:174.645000px;}
.x5{left:184.725000px;}
.x45{left:187.230000px;}
.x38{left:194.445000px;}
.x54{left:208.305000px;}
.x6d{left:210.645000px;}
.x29{left:220.710000px;}
.x5c{left:226.290000px;}
.x3f{left:227.925000px;}
.x24{left:231.705000px;}
.x6e{left:245.235000px;}
.x63{left:272.955000px;}
.x39{left:281.955000px;}
.x7{left:292.215000px;}
.x55{left:295.455000px;}
.x46{left:304.230000px;}
.x3a{left:317.955000px;}
.x5d{left:320.295000px;}
.x56{left:331.455000px;}
.x69{left:336.675000px;}
.x5e{left:362.055000px;}
.x64{left:365.835000px;}
.x2b{left:376.815000px;}
.x9{left:378.975000px;}
.x40{left:383.295000px;}
.x5a{left:385.455000px;}
.x57{left:393.015000px;}
.x65{left:402.045000px;}
.x2d{left:412.845000px;}
.x5f{left:428.145000px;}
.x66{left:461.985000px;}
.x2f{left:472.785000px;}
.x47{left:474.375000px;}
.x41{left:478.560000px;}
.x5b{left:480.360000px;}
.x60{left:481.425000px;}
.xb{left:483.240000px;}
.x6a{left:523.545000px;}
.x58{left:544.620000px;}
.x67{left:568.590000px;}
.x25{left:572.010000px;}
.xd{left:579.210000px;}
.x61{left:581.190000px;}
.x30{left:591.450000px;}
.x43{left:595.590000px;}
.x70{left:611.250000px;}
.x59{left:616.650000px;}
.x6b{left:624.210000px;}
.x3c{left:630.150000px;}
.x31{left:642.390000px;}
.x68{left:660.030000px;}
.xf{left:665.790000px;}
.x48{left:670.035000px;}
.x32{left:691.350000px;}
.x2{left:698.010000px;}
.x26{left:699.630000px;}
.x44{left:701.790000px;}
.x71{left:752.400000px;}
.x49{left:865.905000px;}
.x4a{left:1076.010000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-1.045333pt;}
.ls2{letter-spacing:-0.842667pt;}
.ls1a{letter-spacing:-0.528000pt;}
.ls6{letter-spacing:-0.368533pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.304000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.233067pt;}
.ls3{letter-spacing:-0.204267pt;}
.lsb{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.094933pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.023040pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.117760pt;}
.ls0{letter-spacing:0.126720pt;}
.ls17{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.232960pt;}
.ls7{letter-spacing:0.233067pt;}
.lsd{letter-spacing:0.271360pt;}
.ls11{letter-spacing:0.271467pt;}
.lsa{letter-spacing:1.376000pt;}
.ls18{letter-spacing:17.232640pt;}
.ws7{word-spacing:-17.744640pt;}
.ws1{word-spacing:-16.718613pt;}
.ws4{word-spacing:-16.601707pt;}
.ws3{word-spacing:-16.368640pt;}
.ws8{word-spacing:-16.271573pt;}
.ws9{word-spacing:-16.233173pt;}
.ws2{word-spacing:-16.135573pt;}
.ws6{word-spacing:-16.097173pt;}
.ws0{word-spacing:-16.080213pt;}
.wsa{word-spacing:-15.323307pt;}
.ws11{word-spacing:-14.814720pt;}
.ws10{word-spacing:-14.767360pt;}
.wsf{word-spacing:-14.672427pt;}
.wse{word-spacing:-14.447360pt;}
.wsc{word-spacing:-13.536000pt;}
.ws12{word-spacing:-13.472000pt;}
.wsd{word-spacing:-13.344000pt;}
.ws13{word-spacing:-13.328000pt;}
.wsb{word-spacing:-13.248000pt;}
.ws15{word-spacing:-13.040000pt;}
.ws14{word-spacing:-12.816000pt;}
.ws5{word-spacing:0.000000pt;}
._d{margin-left:-2.790400pt;}
._0{margin-left:-1.048320pt;}
._4{width:1.118720pt;}
._3{width:2.178560pt;}
._1{width:3.156480pt;}
._2{width:4.255147pt;}
._a{width:5.946880pt;}
._b{width:6.888960pt;}
._c{width:8.460373pt;}
._8{width:10.245120pt;}
._9{width:12.565333pt;}
._5{width:17.282987pt;}
._6{width:32.855040pt;}
._7{width:33.749333pt;}
._e{width:42.045653pt;}
._f{width:754.831787pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.y25f{bottom:-3.840000pt;}
.y263{bottom:-3.680000pt;}
.y87{bottom:-1.600000pt;}
.y2a0{bottom:-1.280000pt;}
.y298{bottom:-1.120000pt;}
.y15d{bottom:-0.960000pt;}
.y16f{bottom:-0.800000pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:2.080000pt;}
.y16c{bottom:2.240000pt;}
.y1e5{bottom:2.880000pt;}
.y12d{bottom:3.040000pt;}
.y7a{bottom:3.186667pt;}
.y17{bottom:3.200000pt;}
.y76{bottom:3.346667pt;}
.y16{bottom:3.360000pt;}
.y26{bottom:3.520000pt;}
.y1b{bottom:4.480000pt;}
.y1e{bottom:4.640000pt;}
.y14f{bottom:5.120000pt;}
.yaf{bottom:5.274667pt;}
.y86{bottom:5.280000pt;}
.y9c{bottom:5.306667pt;}
.y198{bottom:5.426667pt;}
.y1ca{bottom:5.433333pt;}
.y84{bottom:5.440000pt;}
.yd4{bottom:5.586667pt;}
.yd7{bottom:5.588000pt;}
.y117{bottom:5.593333pt;}
.y83{bottom:5.600000pt;}
.y273{bottom:5.626667pt;}
.y295{bottom:5.640000pt;}
.ycf{bottom:5.746667pt;}
.yda{bottom:5.753333pt;}
.y1a{bottom:5.760000pt;}
.ycc{bottom:5.786667pt;}
.yd3{bottom:5.906667pt;}
.yd6{bottom:5.908000pt;}
.y116{bottom:5.913333pt;}
.y19{bottom:5.920000pt;}
.y294{bottom:5.960000pt;}
.yce{bottom:6.066667pt;}
.yd9{bottom:6.073333pt;}
.y1d{bottom:6.080000pt;}
.ycb{bottom:6.106667pt;}
.y157{bottom:9.600000pt;}
.y167{bottom:9.640000pt;}
.y152{bottom:9.760000pt;}
.y159{bottom:10.240000pt;}
.y151{bottom:10.400000pt;}
.y14{bottom:11.040000pt;}
.y2b{bottom:11.680000pt;}
.y155{bottom:12.480000pt;}
.y169{bottom:14.400000pt;}
.y15c{bottom:16.000000pt;}
.y46{bottom:16.640000pt;}
.y45{bottom:16.800000pt;}
.y16b{bottom:17.440000pt;}
.y165{bottom:17.480000pt;}
.y1ef{bottom:17.920000pt;}
.y21f{bottom:17.946667pt;}
.y1f7{bottom:17.960000pt;}
.y22b{bottom:18.074667pt;}
.y1f1{bottom:18.080000pt;}
.y20e{bottom:18.106667pt;}
.y207{bottom:18.120000pt;}
.y12c{bottom:18.240000pt;}
.y13a{bottom:18.400000pt;}
.y13c{bottom:18.560000pt;}
.y13{bottom:19.040000pt;}
.y12{bottom:19.200000pt;}
.y78{bottom:20.146667pt;}
.y2a{bottom:20.160000pt;}
.y30{bottom:20.320000pt;}
.y14d{bottom:20.640000pt;}
.y154{bottom:20.800000pt;}
.y7c{bottom:21.746667pt;}
.y12b{bottom:33.600000pt;}
.y133{bottom:33.760000pt;}
.y145{bottom:33.786667pt;}
.y149{bottom:33.920000pt;}
.y173{bottom:35.200000pt;}
.y1d2{bottom:36.960000pt;}
.y120{bottom:37.120000pt;}
.y11f{bottom:37.280000pt;}
.y12a{bottom:48.960000pt;}
.y132{bottom:49.120000pt;}
.y144{bottom:49.146667pt;}
.y148{bottom:49.280000pt;}
.y139{bottom:64.320000pt;}
.y143{bottom:64.346667pt;}
.y129{bottom:64.360000pt;}
.y13b{bottom:64.480000pt;}
.y140{bottom:64.506667pt;}
.y131{bottom:64.520000pt;}
.y147{bottom:64.640000pt;}
.y172{bottom:65.600000pt;}
.y138{bottom:79.680000pt;}
.y142{bottom:79.706667pt;}
.y128{bottom:79.720000pt;}
.y136{bottom:79.840000pt;}
.y13f{bottom:79.866667pt;}
.y130{bottom:79.880000pt;}
.yb1{bottom:90.432000pt;}
.y1e4{bottom:94.880000pt;}
.y137{bottom:95.040000pt;}
.y141{bottom:95.066667pt;}
.y127{bottom:95.080000pt;}
.y135{bottom:95.200000pt;}
.y13e{bottom:95.226667pt;}
.y12f{bottom:95.240000pt;}
.y171{bottom:95.840000pt;}
.y115{bottom:96.198667pt;}
.y19e{bottom:97.318667pt;}
.y80{bottom:100.832000pt;}
.y1cb{bottom:101.798667pt;}
.y5c{bottom:104.640000pt;}
.y43{bottom:105.472000pt;}
.y20b{bottom:106.912000pt;}
.y1cc{bottom:107.552000pt;}
.yd8{bottom:109.318667pt;}
.y1e3{bottom:110.240000pt;}
.y126{bottom:110.280000pt;}
.yb0{bottom:110.432000pt;}
.y12e{bottom:110.440000pt;}
.y2b3{bottom:114.912000pt;}
.y114{bottom:116.838667pt;}
.y246{bottom:116.992000pt;}
.y19d{bottom:118.278667pt;}
.y7f{bottom:120.192000pt;}
.y22a{bottom:120.832000pt;}
.y48{bottom:121.440000pt;}
.y6d{bottom:121.626667pt;}
.y1c9{bottom:122.918667pt;}
.y1e2{bottom:125.600000pt;}
.y125{bottom:125.640000pt;}
.y1ea{bottom:125.760000pt;}
.y123{bottom:125.800000pt;}
.y170{bottom:126.080000pt;}
.yd5{bottom:130.118667pt;}
.ye{bottom:130.272000pt;}
.yae{bottom:130.432000pt;}
.y20a{bottom:136.826667pt;}
.y113{bottom:137.480000pt;}
.y52{bottom:138.280000pt;}
.y6c{bottom:138.426667pt;}
.y42{bottom:139.386667pt;}
.y19c{bottom:139.400000pt;}
.y7e{bottom:139.546667pt;}
.y1e1{bottom:140.960000pt;}
.y124{bottom:141.000000pt;}
.y1e9{bottom:141.120000pt;}
.y122{bottom:141.160000pt;}
.y1c8{bottom:143.880000pt;}
.y2b2{bottom:148.826667pt;}
.yd{bottom:149.786667pt;}
.yad{bottom:150.426667pt;}
.y229{bottom:150.746667pt;}
.yd2{bottom:150.760000pt;}
.y245{bottom:150.906667pt;}
.y7b{bottom:154.440000pt;}
.y1e0{bottom:156.320000pt;}
.y16e{bottom:156.346667pt;}
.y112{bottom:158.120000pt;}
.y19b{bottom:160.360000pt;}
.y2b1{bottom:163.400000pt;}
.y1c7{bottom:164.840000pt;}
.y209{bottom:166.746667pt;}
.yc{bottom:169.146667pt;}
.yac{bottom:170.426667pt;}
.yd1{bottom:171.400000pt;}
.y1df{bottom:171.680000pt;}
.y1e8{bottom:171.840000pt;}
.y7d{bottom:172.680000pt;}
.y41{bottom:173.306667pt;}
.y111{bottom:178.920000pt;}
.y228{bottom:180.666667pt;}
.y19a{bottom:181.320000pt;}
.y2b0{bottom:184.040000pt;}
.y244{bottom:184.826667pt;}
.y1c6{bottom:185.800000pt;}
.y16d{bottom:186.586667pt;}
.y1de{bottom:186.880000pt;}
.y1e7{bottom:187.040000pt;}
.yb{bottom:188.506667pt;}
.y77{bottom:189.640000pt;}
.yab{bottom:190.426667pt;}
.yd0{bottom:192.040000pt;}
.y208{bottom:196.506667pt;}
.y110{bottom:199.560000pt;}
.y199{bottom:202.280000pt;}
.y1e6{bottom:202.440000pt;}
.y2af{bottom:204.680000pt;}
.y79{bottom:206.440000pt;}
.y1c5{bottom:206.920000pt;}
.y40{bottom:207.226667pt;}
.ya{bottom:208.026667pt;}
.yaa{bottom:210.426667pt;}
.ycd{bottom:212.680000pt;}
.y16a{bottom:216.826667pt;}
.y1dd{bottom:217.640000pt;}
.y1d8{bottom:217.800000pt;}
.y243{bottom:218.746667pt;}
.y10f{bottom:220.200000pt;}
.y6b{bottom:223.240000pt;}
.y197{bottom:223.400000pt;}
.y2ae{bottom:225.320000pt;}
.y206{bottom:226.426667pt;}
.y1c4{bottom:227.880000pt;}
.ya9{bottom:230.426667pt;}
.y1dc{bottom:233.000000pt;}
.y1d7{bottom:233.160000pt;}
.yca{bottom:233.320000pt;}
.y9{bottom:237.466667pt;}
.y75{bottom:240.226667pt;}
.y227{bottom:240.386667pt;}
.y10e{bottom:240.866667pt;}
.y3f{bottom:241.186667pt;}
.y196{bottom:244.386667pt;}
.y2ad{bottom:246.146667pt;}
.y168{bottom:247.226667pt;}
.y1db{bottom:248.360000pt;}
.y1d6{bottom:248.520000pt;}
.y1c3{bottom:248.866667pt;}
.y25c{bottom:249.026667pt;}
.ya8{bottom:250.466667pt;}
.y242{bottom:252.706667pt;}
.yc9{bottom:254.146667pt;}
.y205{bottom:256.386667pt;}
.y74{bottom:257.026667pt;}
.y10d{bottom:261.506667pt;}
.y1da{bottom:263.720000pt;}
.y1d5{bottom:263.880000pt;}
.y195{bottom:265.346667pt;}
.y2ac{bottom:266.786667pt;}
.y1c2{bottom:269.826667pt;}
.y226{bottom:270.306667pt;}
.ya7{bottom:270.466667pt;}
.y73{bottom:273.986667pt;}
.yc8{bottom:274.786667pt;}
.y3e{bottom:275.106667pt;}
.y1d9{bottom:278.920000pt;}
.y1d4{bottom:279.080000pt;}
.y10c{bottom:282.146667pt;}
.y25b{bottom:282.946667pt;}
.y164{bottom:285.786667pt;}
.y204{bottom:286.146667pt;}
.y194{bottom:286.306667pt;}
.y241{bottom:286.626667pt;}
.y2ab{bottom:287.426667pt;}
.ya6{bottom:290.466667pt;}
.y72{bottom:290.786667pt;}
.y1c1{bottom:290.946667pt;}
.yc7{bottom:295.426667pt;}
.y225{bottom:300.066667pt;}
.y10b{bottom:302.946667pt;}
.y193{bottom:307.426667pt;}
.y71{bottom:307.586667pt;}
.y2aa{bottom:308.066667pt;}
.y3d{bottom:309.026667pt;}
.ya5{bottom:310.466667pt;}
.y1c0{bottom:311.906667pt;}
.y14b{bottom:313.506667pt;}
.yc6{bottom:316.066667pt;}
.y25a{bottom:316.866667pt;}
.y240{bottom:320.546667pt;}
.y10a{bottom:323.586667pt;}
.y70{bottom:324.546667pt;}
.y192{bottom:328.386667pt;}
.y2a9{bottom:328.706667pt;}
.y14a{bottom:328.866667pt;}
.y224{bottom:329.986667pt;}
.ya4{bottom:330.466667pt;}
.y1bf{bottom:332.866667pt;}
.yc5{bottom:336.706667pt;}
.y259{bottom:337.666667pt;}
.y6f{bottom:341.346667pt;}
.y3c{bottom:342.946667pt;}
.y109{bottom:344.226667pt;}
.y203{bottom:345.986667pt;}
.y163{bottom:346.466667pt;}
.y191{bottom:349.346667pt;}
.ya3{bottom:350.466667pt;}
.y1be{bottom:353.826667pt;}
.y23f{bottom:354.466667pt;}
.yc4{bottom:357.346667pt;}
.y146{bottom:357.826667pt;}
.y6e{bottom:358.306667pt;}
.y223{bottom:359.906667pt;}
.y108{bottom:364.866667pt;}
.y2a8{bottom:370.146667pt;}
.y190{bottom:370.306667pt;}
.ya2{bottom:370.466667pt;}
.y258{bottom:371.426667pt;}
.y1bd{bottom:374.946667pt;}
.y6a{bottom:375.106667pt;}
.y202{bottom:375.746667pt;}
.y162{bottom:376.706667pt;}
.y3b{bottom:376.866667pt;}
.yc3{bottom:378.146667pt;}
.y107{bottom:385.506667pt;}
.y278{bottom:385.826667pt;}
.y23e{bottom:388.386667pt;}
.y222{bottom:389.826667pt;}
.ya1{bottom:390.466667pt;}
.y2a7{bottom:390.786667pt;}
.y18f{bottom:391.426667pt;}
.y68{bottom:392.066667pt;}
.y1bc{bottom:395.906667pt;}
.yc2{bottom:398.786667pt;}
.y257{bottom:405.346667pt;}
.y201{bottom:405.666667pt;}
.y106{bottom:406.146667pt;}
.y277{bottom:406.466667pt;}
.y161{bottom:406.946667pt;}
.y69{bottom:408.866667pt;}
.ya0{bottom:410.466667pt;}
.y3a{bottom:410.786667pt;}
.y2a6{bottom:411.426667pt;}
.y18e{bottom:412.386667pt;}
.y1bb{bottom:416.866667pt;}
.yc1{bottom:419.426667pt;}
.y221{bottom:419.586667pt;}
.y23d{bottom:422.306667pt;}
.y67{bottom:425.666667pt;}
.y105{bottom:426.946667pt;}
.y276{bottom:427.106667pt;}
.y9f{bottom:430.466667pt;}
.y2a5{bottom:432.066667pt;}
.y18d{bottom:433.346667pt;}
.y200{bottom:435.586667pt;}
.y160{bottom:437.213333pt;}
.y1ba{bottom:437.826667pt;}
.y256{bottom:439.266667pt;}
.yc0{bottom:440.066667pt;}
.y66{bottom:442.626667pt;}
.y39{bottom:443.266667pt;}
.y104{bottom:447.586667pt;}
.y275{bottom:447.746667pt;}
.y220{bottom:449.506667pt;}
.y9e{bottom:450.466667pt;}
.y2a4{bottom:452.706667pt;}
.y18c{bottom:454.306667pt;}
.y23c{bottom:456.226667pt;}
.y1b9{bottom:458.946667pt;}
.y65{bottom:459.426667pt;}
.ybf{bottom:460.706667pt;}
.y38{bottom:460.866667pt;}
.y13d{bottom:465.186667pt;}
.y1ff{bottom:465.506667pt;}
.y15f{bottom:467.453333pt;}
.y103{bottom:468.226667pt;}
.y274{bottom:468.386667pt;}
.y9d{bottom:470.466667pt;}
.y255{bottom:473.186667pt;}
.y2a3{bottom:473.346667pt;}
.y18b{bottom:475.426667pt;}
.y64{bottom:476.386667pt;}
.y37{bottom:478.466667pt;}
.y21e{bottom:479.426667pt;}
.y1b8{bottom:479.906667pt;}
.ybe{bottom:481.346667pt;}
.y102{bottom:488.866667pt;}
.y272{bottom:489.186667pt;}
.y23b{bottom:490.146667pt;}
.y9b{bottom:490.466667pt;}
.y36{bottom:492.413333pt;}
.y5b{bottom:493.213333pt;}
.y2a2{bottom:494.173333pt;}
.y1fe{bottom:495.293333pt;}
.y18a{bottom:496.413333pt;}
.y15e{bottom:497.693333pt;}
.y1b7{bottom:500.893333pt;}
.ybd{bottom:502.173333pt;}
.y254{bottom:507.133333pt;}
.y35{bottom:509.213333pt;}
.y101{bottom:509.533333pt;}
.y271{bottom:509.853333pt;}
.y63{bottom:510.013333pt;}
.y9a{bottom:510.493333pt;}
.y2a1{bottom:514.813333pt;}
.y189{bottom:517.373333pt;}
.y1b6{bottom:521.853333pt;}
.ybc{bottom:522.813333pt;}
.y23a{bottom:524.093333pt;}
.y1fd{bottom:525.213333pt;}
.y34{bottom:526.173333pt;}
.y62{bottom:526.973333pt;}
.y15b{bottom:528.093333pt;}
.y100{bottom:530.173333pt;}
.y99{bottom:530.493333pt;}
.y1eb{bottom:534.653333pt;}
.y29f{bottom:535.453333pt;}
.y188{bottom:538.333333pt;}
.y21d{bottom:539.133333pt;}
.y253{bottom:541.053333pt;}
.y33{bottom:542.973333pt;}
.ybb{bottom:543.453333pt;}
.y61{bottom:543.773333pt;}
.y1d3{bottom:550.013333pt;}
.y98{bottom:550.493333pt;}
.yff{bottom:550.973333pt;}
.y270{bottom:551.133333pt;}
.y1fc{bottom:555.133333pt;}
.y29e{bottom:556.093333pt;}
.y239{bottom:558.013333pt;}
.y15a{bottom:558.333333pt;}
.y187{bottom:559.453333pt;}
.y32{bottom:559.773333pt;}
.y60{bottom:560.733333pt;}
.y1b5{bottom:563.933333pt;}
.yba{bottom:564.093333pt;}
.y21c{bottom:569.053333pt;}
.y97{bottom:570.493333pt;}
.yfe{bottom:571.613333pt;}
.y26f{bottom:571.773333pt;}
.y134{bottom:572.573333pt;}
.y8{bottom:573.533333pt;}
.y252{bottom:574.973333pt;}
.y31{bottom:576.733333pt;}
.y5f{bottom:577.533333pt;}
.y186{bottom:580.413333pt;}
.yb9{bottom:584.733333pt;}
.y1b4{bottom:584.893333pt;}
.y158{bottom:588.613333pt;}
.y96{bottom:590.493333pt;}
.y238{bottom:591.933333pt;}
.yfd{bottom:592.253333pt;}
.y26e{bottom:592.413333pt;}
.y2f{bottom:593.533333pt;}
.y5e{bottom:594.333333pt;}
.y29d{bottom:597.373333pt;}
.y21b{bottom:598.813333pt;}
.y185{bottom:601.373333pt;}
.yb8{bottom:605.373333pt;}
.y1b3{bottom:605.853333pt;}
.y7{bottom:606.173333pt;}
.y251{bottom:608.893333pt;}
.y95{bottom:610.493333pt;}
.y5d{bottom:611.293333pt;}
.y28a{bottom:612.253333pt;}
.yfc{bottom:612.893333pt;}
.y26d{bottom:613.213333pt;}
.y1fb{bottom:614.813333pt;}
.y29c{bottom:618.173333pt;}
.y156{bottom:618.853333pt;}
.y184{bottom:622.333333pt;}
.y237{bottom:625.853333pt;}
.yb7{bottom:626.173333pt;}
.y1b2{bottom:626.973333pt;}
.y2e{bottom:627.293333pt;}
.y5a{bottom:628.093333pt;}
.y21a{bottom:628.733333pt;}
.y94{bottom:630.493333pt;}
.y289{bottom:632.893333pt;}
.yfb{bottom:633.533333pt;}
.y26c{bottom:633.853333pt;}
.y29b{bottom:638.813333pt;}
.y6{bottom:638.973333pt;}
.y250{bottom:642.813333pt;}
.y183{bottom:643.453333pt;}
.y2d{bottom:644.093333pt;}
.y1fa{bottom:644.733333pt;}
.y51{bottom:645.053333pt;}
.yb6{bottom:646.813333pt;}
.y1b1{bottom:647.933333pt;}
.y153{bottom:649.093333pt;}
.y93{bottom:650.493333pt;}
.y288{bottom:653.533333pt;}
.yfa{bottom:654.173333pt;}
.y26b{bottom:654.493333pt;}
.y5{bottom:658.333333pt;}
.y219{bottom:658.653333pt;}
.y29a{bottom:659.453333pt;}
.y236{bottom:659.773333pt;}
.y2c{bottom:661.053333pt;}
.y59{bottom:661.853333pt;}
.y182{bottom:664.413333pt;}
.y1b0{bottom:668.893333pt;}
.y92{bottom:670.493333pt;}
.y287{bottom:674.173333pt;}
.y1f9{bottom:674.493333pt;}
.yf9{bottom:674.973333pt;}
.y26a{bottom:675.133333pt;}
.y24f{bottom:676.733333pt;}
.y4{bottom:677.853333pt;}
.y58{bottom:678.653333pt;}
.y121{bottom:679.933333pt;}
.y299{bottom:680.093333pt;}
.y150{bottom:684.933333pt;}
.y181{bottom:685.373333pt;}
.yb5{bottom:687.453333pt;}
.y218{bottom:688.413333pt;}
.y1af{bottom:689.853333pt;}
.y91{bottom:690.493333pt;}
.y235{bottom:693.693333pt;}
.y29{bottom:694.813333pt;}
.y286{bottom:694.973333pt;}
.yf8{bottom:695.613333pt;}
.y269{bottom:695.773333pt;}
.y297{bottom:700.733333pt;}
.y1f8{bottom:704.413333pt;}
.y180{bottom:706.333333pt;}
.y3{bottom:710.493333pt;}
.y24e{bottom:710.653333pt;}
.y1ae{bottom:710.973333pt;}
.y57{bottom:712.413333pt;}
.y14e{bottom:715.333333pt;}
.y285{bottom:715.613333pt;}
.yf7{bottom:716.253333pt;}
.y268{bottom:716.413333pt;}
.y217{bottom:718.333333pt;}
.yb4{bottom:720.573333pt;}
.y296{bottom:721.373333pt;}
.y17f{bottom:727.453333pt;}
.y234{bottom:727.613333pt;}
.y28{bottom:728.413333pt;}
.y56{bottom:729.373333pt;}
.y90{bottom:730.493333pt;}
.y1ad{bottom:731.933333pt;}
.y1f6{bottom:734.333333pt;}
.y284{bottom:736.253333pt;}
.yf6{bottom:736.893333pt;}
.y267{bottom:737.213333pt;}
.yb3{bottom:740.093333pt;}
.y293{bottom:742.173333pt;}
.y24d{bottom:744.613333pt;}
.y27{bottom:745.413333pt;}
.y55{bottom:746.213333pt;}
.y216{bottom:748.293333pt;}
.y17e{bottom:748.453333pt;}
.y8f{bottom:750.533333pt;}
.y14c{bottom:751.840000pt;}
.y1ac{bottom:752.933333pt;}
.y283{bottom:756.933333pt;}
.yf5{bottom:757.573333pt;}
.y266{bottom:757.893333pt;}
.y233{bottom:761.573333pt;}
.y25{bottom:762.213333pt;}
.y292{bottom:762.853333pt;}
.y54{bottom:763.173333pt;}
.y1f5{bottom:764.133333pt;}
.y17d{bottom:769.413333pt;}
.y8e{bottom:770.533333pt;}
.yb2{bottom:772.773333pt;}
.y1ab{bottom:773.893333pt;}
.y282{bottom:777.573333pt;}
.y215{bottom:778.053333pt;}
.yf4{bottom:778.213333pt;}
.y24c{bottom:778.533333pt;}
.y24{bottom:779.173333pt;}
.y53{bottom:779.973333pt;}
.y291{bottom:783.493333pt;}
.ye7{bottom:787.013333pt;}
.y17c{bottom:790.373333pt;}
.y8d{bottom:790.533333pt;}
.y1f4{bottom:794.053333pt;}
.y1aa{bottom:795.013333pt;}
.y232{bottom:795.493333pt;}
.y23{bottom:795.973333pt;}
.y50{bottom:796.773333pt;}
.y281{bottom:798.213333pt;}
.yf3{bottom:799.013333pt;}
.y265{bottom:799.173333pt;}
.y290{bottom:804.133333pt;}
.ye6{bottom:807.013333pt;}
.y214{bottom:807.973333pt;}
.y8c{bottom:810.533333pt;}
.y17b{bottom:811.493333pt;}
.y24b{bottom:812.453333pt;}
.y22{bottom:812.773333pt;}
.y47{bottom:813.733333pt;}
.y1a9{bottom:815.973333pt;}
.y280{bottom:819.013333pt;}
.yf2{bottom:819.653333pt;}
.y264{bottom:819.813333pt;}
.y1f3{bottom:823.973333pt;}
.y28f{bottom:824.773333pt;}
.ye5{bottom:827.013333pt;}
.y231{bottom:829.413333pt;}
.y4f{bottom:830.533333pt;}
.y21{bottom:832.293333pt;}
.y17a{bottom:832.453333pt;}
.y11e{bottom:834.533333pt;}
.y1a8{bottom:836.933333pt;}
.y213{bottom:837.893333pt;}
.y27f{bottom:839.653333pt;}
.yf1{bottom:840.293333pt;}
.y262{bottom:840.453333pt;}
.y1d1{bottom:842.693333pt;}
.y28e{bottom:845.413333pt;}
.y24a{bottom:846.373333pt;}
.ye4{bottom:847.013333pt;}
.y4e{bottom:847.493333pt;}
.y8b{bottom:850.533333pt;}
.y20{bottom:851.653333pt;}
.y179{bottom:853.413333pt;}
.y1f2{bottom:853.733333pt;}
.y1a7{bottom:857.893333pt;}
.y27e{bottom:860.293333pt;}
.yf0{bottom:860.933333pt;}
.y261{bottom:861.253333pt;}
.y230{bottom:863.333333pt;}
.y4d{bottom:864.293333pt;}
.y28d{bottom:866.213333pt;}
.ye3{bottom:867.013333pt;}
.y212{bottom:867.653333pt;}
.y8a{bottom:870.533333pt;}
.y1f{bottom:871.013333pt;}
.y178{bottom:874.373333pt;}
.y1a6{bottom:879.013333pt;}
.y249{bottom:880.293333pt;}
.y27d{bottom:880.933333pt;}
.y4c{bottom:881.093333pt;}
.yef{bottom:881.573333pt;}
.y260{bottom:881.893333pt;}
.y1f0{bottom:883.653333pt;}
.y28c{bottom:886.853333pt;}
.ye2{bottom:887.013333pt;}
.y1c{bottom:890.373333pt;}
.y89{bottom:890.533333pt;}
.y22f{bottom:897.253333pt;}
.y211{bottom:897.573333pt;}
.y4b{bottom:898.053333pt;}
.y11d{bottom:898.373333pt;}
.y1a5{bottom:899.973333pt;}
.y27c{bottom:901.573333pt;}
.yee{bottom:902.213333pt;}
.y25e{bottom:902.533333pt;}
.ye1{bottom:907.013333pt;}
.y28b{bottom:907.493333pt;}
.y18{bottom:909.893333pt;}
.y88{bottom:910.533333pt;}
.y1ee{bottom:913.573333pt;}
.y248{bottom:914.213333pt;}
.y1d0{bottom:914.533333pt;}
.y4a{bottom:914.853333pt;}
.y177{bottom:915.493333pt;}
.y1a4{bottom:920.933333pt;}
.y27b{bottom:922.213333pt;}
.yed{bottom:923.013333pt;}
.y25d{bottom:923.173333pt;}
.y11c{bottom:923.653333pt;}
.ye0{bottom:927.013333pt;}
.y210{bottom:927.493333pt;}
.y15{bottom:929.253333pt;}
.y85{bottom:930.533333pt;}
.y22e{bottom:931.173333pt;}
.y49{bottom:931.813333pt;}
.y1a3{bottom:941.893333pt;}
.y27a{bottom:943.013333pt;}
.y1ed{bottom:943.333333pt;}
.yec{bottom:943.653333pt;}
.ydf{bottom:947.013333pt;}
.y11{bottom:947.493333pt;}
.y247{bottom:948.133333pt;}
.y1cf{bottom:948.453333pt;}
.y176{bottom:948.613333pt;}
.y11b{bottom:948.773333pt;}
.y44{bottom:949.893333pt;}
.y82{bottom:950.533333pt;}
.y20f{bottom:957.253333pt;}
.y1a2{bottom:963.013333pt;}
.y279{bottom:963.653333pt;}
.yeb{bottom:964.293333pt;}
.y22d{bottom:965.093333pt;}
.yde{bottom:967.013333pt;}
.y11a{bottom:974.053333pt;}
.y175{bottom:981.253333pt;}
.y1ec{bottom:981.413333pt;}
.y1ce{bottom:982.373333pt;}
.y1a1{bottom:983.973333pt;}
.yea{bottom:984.933333pt;}
.ydd{bottom:987.013333pt;}
.y20d{bottom:987.173333pt;}
.y2{bottom:989.413333pt;}
.y22c{bottom:999.040000pt;}
.y119{bottom:999.520000pt;}
.y10{bottom:1000.800000pt;}
.y1a0{bottom:1004.960000pt;}
.ye9{bottom:1005.600000pt;}
.ydc{bottom:1007.040000pt;}
.y1cd{bottom:1008.000000pt;}
.y81{bottom:1013.920000pt;}
.y20c{bottom:1017.120000pt;}
.y19f{bottom:1025.920000pt;}
.ye8{bottom:1026.240000pt;}
.ydb{bottom:1027.040000pt;}
.y1{bottom:1029.120000pt;}
.y118{bottom:1033.120000pt;}
.y174{bottom:1033.440000pt;}
.yf{bottom:1033.600000pt;}
.h5{height:16.786667pt;}
.hc{height:16.800000pt;}
.h13{height:16.820000pt;}
.h15{height:16.826667pt;}
.h8{height:16.946667pt;}
.hb{height:16.960000pt;}
.h18{height:16.978667pt;}
.h9{height:16.980000pt;}
.h1a{height:19.200000pt;}
.h1c{height:19.232000pt;}
.h6{height:19.346667pt;}
.h2b{height:19.392000pt;}
.h7{height:19.506667pt;}
.h37{height:19.513333pt;}
.h36{height:19.520000pt;}
.h30{height:19.666667pt;}
.h35{height:19.673333pt;}
.h32{height:19.680000pt;}
.h34{height:19.698667pt;}
.h31{height:19.700000pt;}
.h33{height:19.706667pt;}
.h20{height:19.986667pt;}
.h22{height:19.993333pt;}
.h1e{height:20.000000pt;}
.h21{height:20.018667pt;}
.h23{height:20.020000pt;}
.h1f{height:20.026667pt;}
.h3e{height:20.032000pt;}
.h3b{height:29.120000pt;}
.h3c{height:29.152000pt;}
.h3a{height:29.280000pt;}
.h3d{height:29.312000pt;}
.h2c{height:29.600000pt;}
.h2e{height:29.632000pt;}
.h10{height:30.226667pt;}
.h4{height:32.626667pt;}
.h16{height:33.586667pt;}
.ha{height:33.600000pt;}
.hd{height:33.760000pt;}
.h19{height:35.186667pt;}
.h2d{height:35.200000pt;}
.h2f{height:37.920000pt;}
.h1d{height:40.163750pt;}
.hf{height:40.221250pt;}
.h1b{height:50.062500pt;}
.h38{height:50.546667pt;}
.h24{height:50.706667pt;}
.h2{height:51.150937pt;}
.he{height:55.402500pt;}
.h3{height:61.410000pt;}
.h28{height:107.346667pt;}
.h26{height:107.360000pt;}
.h27{height:107.386667pt;}
.h11{height:134.866667pt;}
.h14{height:134.880000pt;}
.h12{height:151.706667pt;}
.h17{height:151.853333pt;}
.h25{height:153.306667pt;}
.h39{height:291.226667pt;}
.h29{height:793.760000pt;}
.h2a{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w49{width:30.418667pt;}
.w2a{width:31.360000pt;}
.w48{width:31.666667pt;}
.w16{width:31.680000pt;}
.wf{width:31.712000pt;}
.w3d{width:31.840000pt;}
.w36{width:36.480000pt;}
.w42{width:38.400000pt;}
.w40{width:40.320000pt;}
.w13{width:43.200000pt;}
.w12{width:44.960000pt;}
.w38{width:46.720000pt;}
.w10{width:52.960000pt;}
.w2b{width:54.080000pt;}
.w46{width:54.400000pt;}
.w43{width:57.600000pt;}
.w37{width:58.112000pt;}
.w2f{width:60.626667pt;}
.w18{width:60.946667pt;}
.w14{width:60.992000pt;}
.w2d{width:63.186667pt;}
.w2e{width:63.218667pt;}
.w1e{width:63.866667pt;}
.w2c{width:69.952000pt;}
.w47{width:70.070667pt;}
.w41{width:75.392000pt;}
.wc{width:75.546667pt;}
.w3b{width:75.552000pt;}
.w3a{width:76.160000pt;}
.w29{width:76.818667pt;}
.w7{width:76.946667pt;}
.w4{width:77.120000pt;}
.wd{width:77.440000pt;}
.w15{width:77.458667pt;}
.w3f{width:80.960000pt;}
.w3c{width:82.240000pt;}
.w35{width:82.912000pt;}
.w32{width:84.352000pt;}
.w1b{width:84.672000pt;}
.w6{width:85.298667pt;}
.w39{width:87.872000pt;}
.w45{width:89.152000pt;}
.w2{width:92.310667pt;}
.w5{width:92.672000pt;}
.w34{width:93.906667pt;}
.w1d{width:94.386667pt;}
.w3e{width:94.432000pt;}
.w3{width:95.538667pt;}
.w19{width:96.310667pt;}
.w30{width:98.870667pt;}
.w33{width:102.898667pt;}
.w22{width:103.200000pt;}
.w1c{width:103.858667pt;}
.w11{width:105.152000pt;}
.w4a{width:106.400000pt;}
.w44{width:107.840000pt;}
.w27{width:108.800000pt;}
.w9{width:109.590667pt;}
.wb{width:113.426667pt;}
.w4c{width:125.146667pt;}
.w21{width:129.472000pt;}
.w8{width:130.266667pt;}
.w31{width:137.453333pt;}
.w1a{width:138.093333pt;}
.we{width:138.266667pt;}
.w23{width:150.426667pt;}
.w24{width:173.120000pt;}
.w25{width:173.466667pt;}
.w26{width:185.946667pt;}
.w4b{width:218.306667pt;}
.w17{width:223.586667pt;}
.wa{width:302.480000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w28{width:1031.173333pt;}
.w1f{width:1122.560000pt;}
.w20{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2c{left:4.640000pt;}
.x2e{left:5.600000pt;}
.x1c{left:7.200000pt;}
.x1b{left:8.160000pt;}
.x1e{left:9.910667pt;}
.x35{left:11.360000pt;}
.x1d{left:12.306667pt;}
.x33{left:13.280000pt;}
.x37{left:14.240000pt;}
.x2a{left:15.200000pt;}
.xe{left:16.480000pt;}
.x8{left:18.080000pt;}
.x6{left:19.506667pt;}
.x21{left:21.586667pt;}
.x1a{left:22.866667pt;}
.x4{left:24.470667pt;}
.x62{left:25.440000pt;}
.x15{left:26.546667pt;}
.xc{left:27.986667pt;}
.x1f{left:29.746667pt;}
.xa{left:30.746667pt;}
.x17{left:31.986667pt;}
.x20{left:33.426667pt;}
.x16{left:34.906667pt;}
.x18{left:36.000000pt;}
.x42{left:36.946667pt;}
.x12{left:38.400000pt;}
.x4e{left:39.360000pt;}
.x34{left:40.960000pt;}
.x13{left:42.546667pt;}
.x4b{left:43.520000pt;}
.x73{left:44.960000pt;}
.x10{left:45.920000pt;}
.x11{left:47.666667pt;}
.x36{left:49.280000pt;}
.x53{left:50.240000pt;}
.x50{left:51.680000pt;}
.x3d{left:52.666667pt;}
.x19{left:53.626667pt;}
.x27{left:54.705333pt;}
.x75{left:56.666667pt;}
.x4c{left:58.720000pt;}
.x3b{left:60.346667pt;}
.x72{left:62.720000pt;}
.x14{left:64.986667pt;}
.x74{left:67.866667pt;}
.x77{left:68.826667pt;}
.x3{left:71.881333pt;}
.x22{left:75.712000pt;}
.x4f{left:84.800000pt;}
.x51{left:86.400000pt;}
.x4d{left:88.960000pt;}
.x52{left:92.960000pt;}
.x23{left:96.361333pt;}
.x6f{left:99.546667pt;}
.x3e{left:106.281333pt;}
.x76{left:109.306667pt;}
.x1{left:113.472000pt;}
.x28{left:118.432000pt;}
.x6c{left:155.240000pt;}
.x5{left:164.200000pt;}
.x45{left:166.426667pt;}
.x38{left:172.840000pt;}
.x54{left:185.160000pt;}
.x6d{left:187.240000pt;}
.x29{left:196.186667pt;}
.x5c{left:201.146667pt;}
.x3f{left:202.600000pt;}
.x24{left:205.960000pt;}
.x6e{left:217.986667pt;}
.x63{left:242.626667pt;}
.x39{left:250.626667pt;}
.x7{left:259.746667pt;}
.x55{left:262.626667pt;}
.x46{left:270.426667pt;}
.x3a{left:282.626667pt;}
.x5d{left:284.706667pt;}
.x56{left:294.626667pt;}
.x69{left:299.266667pt;}
.x5e{left:321.826667pt;}
.x64{left:325.186667pt;}
.x2b{left:334.946667pt;}
.x9{left:336.866667pt;}
.x40{left:340.706667pt;}
.x5a{left:342.626667pt;}
.x57{left:349.346667pt;}
.x65{left:357.373333pt;}
.x2d{left:366.973333pt;}
.x5f{left:380.573333pt;}
.x66{left:410.653333pt;}
.x2f{left:420.253333pt;}
.x47{left:421.666667pt;}
.x41{left:425.386667pt;}
.x5b{left:426.986667pt;}
.x60{left:427.933333pt;}
.xb{left:429.546667pt;}
.x6a{left:465.373333pt;}
.x58{left:484.106667pt;}
.x67{left:505.413333pt;}
.x25{left:508.453333pt;}
.xd{left:514.853333pt;}
.x61{left:516.613333pt;}
.x30{left:525.733333pt;}
.x43{left:529.413333pt;}
.x70{left:543.333333pt;}
.x59{left:548.133333pt;}
.x6b{left:554.853333pt;}
.x3c{left:560.133333pt;}
.x31{left:571.013333pt;}
.x68{left:586.693333pt;}
.xf{left:591.813333pt;}
.x48{left:595.586667pt;}
.x32{left:614.533333pt;}
.x2{left:620.453333pt;}
.x26{left:621.893333pt;}
.x44{left:623.813333pt;}
.x71{left:668.800000pt;}
.x49{left:769.693333pt;}
.x4a{left:956.453333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  