
    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_2682fffca1ac9b4312150e82.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.872559;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_57da383130b5bca7a7df2f53.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.903320;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_71e82a62bc2ac01bbe673b44.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901855;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_cb80de6d83c32d4535a81c2c.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_a2e665fdf549a75dc2a5dafb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_b4e3bc705ed27cc716e1add2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.903320;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_23127f53f442b35fdd0d5166.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.690918;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2e2588a6194488c0690ae705.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.903320;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_7015a1f2bab53b1b1bfa293b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.903320;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_88ddf67c3a0436441ba0505d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911621;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_063b5c641a1dbda9368e7ed9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.903320;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_146f52638f1ea2424e0bb3e9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.903320;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_be849e0c628ae008db618a92.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871094;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:ffe;src:url('chunks/assets/font_037330c9e199333c29e2df09.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.903320;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:fff;src:url('chunks/assets/font_2faf04c1773412be7ca91d17.woff2')format("woff");}.fff{font-family:fff;line-height:0.925293;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:ff10;src:url('chunks/assets/font_71e7db71b8dca1baf0ce2ef4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.731445;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:ff11;src:url('chunks/assets/font_1baced62acbe5c028af8fd7f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.903320;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:ff12;src:url('chunks/assets/font_2aaa117a6223a321f80a1ad4.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.911621;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:ff13;src:url('chunks/assets/font_0c930475f330579092b72de6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.911621;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:ff14;src:url('chunks/assets/font_9165274d9317fc48e6f3c920.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.903320;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:ff15;src:url('chunks/assets/font_22505fe1c410c2098f7bc0f8.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.872559;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:ff16;src:url('chunks/assets/font_a7d6c7b85d43e0f58a6469f8.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.926270;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:ff17;src:url('chunks/assets/font_2a43cc041910a0e413b51d0f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.715820;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:ff18;src:url('chunks/assets/font_edd1095156702a77516d57b1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.866211;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-29.897919px;}
.v5{vertical-align:-19.997955px;}
.v4{vertical-align:-9.899998px;}
.v7{vertical-align:-8.099997px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.543999px;}
.v2{vertical-align:16.362000px;}
.v1{vertical-align:18.180000px;}
.v3{vertical-align:19.998001px;}
.ls3{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012001px;}
.ls8{letter-spacing:0.012033px;}
.ls6{letter-spacing:0.012125px;}
.ls0{letter-spacing:0.030000px;}
.lsd{letter-spacing:0.030004px;}
.lsa{letter-spacing:0.035995px;}
.lsb{letter-spacing:0.036001px;}
.lsc{letter-spacing:0.036003px;}
.ls2{letter-spacing:0.132000px;}
.ls1{letter-spacing:0.180006px;}
.ls4{letter-spacing:0.509864px;}
.ls9{letter-spacing:5.682006px;}
.ls5{letter-spacing:7.728012px;}
.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;}
}
.ws4{word-spacing:-13.560000px;}
.ws5{word-spacing:-12.204000px;}
.ws8{word-spacing:-11.760000px;}
.ws7{word-spacing:-10.848000px;}
.ws3{word-spacing:-9.492000px;}
.ws0{word-spacing:-8.814000px;}
.ws6{word-spacing:-8.136000px;}
.ws1{word-spacing:0.000000px;}
.ws2{word-spacing:38.465998px;}
._0{width:1.181994px;}
._4{width:2.478012px;}
._2{width:3.990006px;}
._5{width:5.544018px;}
._6{width:6.683980px;}
._3{width:7.824006px;}
._a{width:9.449996px;}
._9{width:11.105977px;}
._8{width:12.294010px;}
._7{width:13.589990px;}
._b{width:15.953979px;}
._1{width:17.394000px;}
._10{width:18.480038px;}
._18{width:19.709946px;}
._16{width:21.096024px;}
._e{width:22.326003px;}
._d{width:23.399992px;}
._13{width:26.688179px;}
._12{width:27.797989px;}
._c{width:29.610000px;}
._15{width:35.106092px;}
._14{width:36.263981px;}
._11{width:37.955995px;}
._17{width:47.994001px;}
._f{width:53.381998px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(112,48,160);}
.fc3{color:rgb(64,85,255);}
.fc1{color:rgb(0,0,128);}
.fc4{color:rgb(100,100,100);}
.fc2{color:rgb(100,100,100);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:30.000000px;}
.fs4{font-size:36.000000px;}
.fs2{font-size:39.000000px;}
.fs5{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y22e{bottom:4.722001px;}
.y1f5{bottom:5.113499px;}
.y1a3{bottom:5.125500px;}
.y187{bottom:5.528998px;}
.y24e{bottom:5.937000px;}
.y1a7{bottom:6.448500px;}
.y253{bottom:6.499500px;}
.y1cf{bottom:6.960001px;}
.y176{bottom:7.024501px;}
.y1d9{bottom:7.536000px;}
.y21d{bottom:8.047501px;}
.y1f3{bottom:9.974999px;}
.y22f{bottom:12.046500px;}
.y1a5{bottom:13.365000px;}
.y188{bottom:14.684999px;}
.y22d{bottom:19.370999px;}
.y1a2{bottom:21.604500px;}
.y170{bottom:22.675501px;}
.y186{bottom:23.839499px;}
.y1a4{bottom:29.844000px;}
.y1a1{bottom:38.083500px;}
.y173{bottom:52.125000px;}
.y16f{bottom:52.200073px;}
.y6b{bottom:56.850000px;}
.yc9{bottom:56.850037px;}
.y6a{bottom:76.350000px;}
.yc8{bottom:76.350037px;}
.y69{bottom:95.850000px;}
.yc7{bottom:95.850037px;}
.y8e{bottom:114.660025px;}
.y68{bottom:115.350000px;}
.yc6{bottom:115.350037px;}
.y16d{bottom:118.536059px;}
.y218{bottom:120.005998px;}
.y30{bottom:120.570000px;}
.yfa{bottom:127.749045px;}
.y11c{bottom:127.749062px;}
.y217{bottom:130.753498px;}
.y67{bottom:134.850000px;}
.yc5{bottom:134.850037px;}
.y10b{bottom:139.536047px;}
.y24a{bottom:140.508001px;}
.y8d{bottom:144.873023px;}
.y216{bottom:145.603489px;}
.y16c{bottom:148.749056px;}
.y66{bottom:154.350000px;}
.yc4{bottom:154.350037px;}
.yf9{bottom:157.962042px;}
.y11b{bottom:157.962065px;}
.y2f{bottom:158.049000px;}
.y215{bottom:160.453480px;}
.y15e{bottom:160.536047px;}
.y249{bottom:161.808020px;}
.y1d4{bottom:166.714525px;}
.ye2{bottom:167.175005px;}
.y10a{bottom:169.749045px;}
.y65{bottom:173.850000px;}
.yc3{bottom:173.850037px;}
.y8c{bottom:175.086031px;}
.y214{bottom:175.303471px;}
.y16b{bottom:178.962059px;}
.y248{bottom:183.108038px;}
.y1d3{bottom:185.839525px;}
.y146{bottom:188.175015px;}
.yf8{bottom:188.175040px;}
.y1f0{bottom:188.425495px;}
.y213{bottom:190.153461px;}
.y15d{bottom:190.749045px;}
.y64{bottom:193.350000px;}
.yc2{bottom:193.350037px;}
.y2e{bottom:195.528000px;}
.ye1{bottom:197.388003px;}
.y135{bottom:198.591040px;}
.y109{bottom:199.962042px;}
.y247{bottom:204.408056px;}
.y1ef{bottom:204.904484px;}
.y1d2{bottom:204.964525px;}
.y212{bottom:205.003498px;}
.y8b{bottom:205.299029px;}
.y11a{bottom:209.175040px;}
.y16a{bottom:209.175057px;}
.y63{bottom:212.850000px;}
.yc1{bottom:212.850037px;}
.yf7{bottom:218.388037px;}
.y211{bottom:220.603489px;}
.y15c{bottom:220.962042px;}
.y1ee{bottom:221.383472px;}
.y1d1{bottom:224.089525px;}
.y246{bottom:225.708075px;}
.ye0{bottom:227.601006px;}
.y134{bottom:228.804038px;}
.y108{bottom:230.175051px;}
.y62{bottom:232.350000px;}
.yc0{bottom:232.350037px;}
.y2d{bottom:233.007000px;}
.y1ed{bottom:233.486979px;}
.y210{bottom:235.453480px;}
.y8a{bottom:235.512026px;}
.y145{bottom:239.388003px;}
.y119{bottom:239.388037px;}
.y169{bottom:239.388060px;}
.y1d0{bottom:243.214525px;}
.y245{bottom:247.008001px;}
.yf6{bottom:248.601035px;}
.y20f{bottom:250.303471px;}
.y15b{bottom:251.175040px;}
.y61{bottom:251.850000px;}
.ybf{bottom:251.850037px;}
.y1ec{bottom:254.786997px;}
.ydf{bottom:257.814003px;}
.y133{bottom:259.017035px;}
.y107{bottom:260.388049px;}
.y1ce{bottom:262.339525px;}
.y19d{bottom:262.873529px;}
.y20e{bottom:265.153461px;}
.y89{bottom:265.725029px;}
.y244{bottom:268.308020px;}
.y144{bottom:269.601006px;}
.y118{bottom:269.601035px;}
.y2c{bottom:270.486000px;}
.y60{bottom:271.350000px;}
.ybe{bottom:271.350037px;}
.y1eb{bottom:276.086969px;}
.yf5{bottom:278.814032px;}
.y20d{bottom:280.003498px;}
.y19c{bottom:281.184076px;}
.y15a{bottom:281.388049px;}
.y1cd{bottom:281.464525px;}
.yde{bottom:288.027007px;}
.y132{bottom:289.230032px;}
.y243{bottom:289.608038px;}
.y168{bottom:290.601035px;}
.y106{bottom:290.601046px;}
.y5f{bottom:290.850000px;}
.ybd{bottom:290.850037px;}
.y20c{bottom:294.853489px;}
.y88{bottom:295.938027px;}
.y1ea{bottom:297.386988px;}
.y19b{bottom:299.494532px;}
.y143{bottom:299.814003px;}
.y117{bottom:299.814032px;}
.y1cc{bottom:300.589525px;}
.y2b{bottom:307.965000px;}
.yf4{bottom:309.027029px;}
.y20b{bottom:309.703480px;}
.y5e{bottom:310.350000px;}
.ybc{bottom:310.350037px;}
.y242{bottom:310.908056px;}
.y159{bottom:311.601046px;}
.y19a{bottom:313.026043px;}
.y1e9{bottom:319.436983px;}
.y131{bottom:319.443030px;}
.y1cb{bottom:319.714525px;}
.y167{bottom:320.814032px;}
.y105{bottom:320.814049px;}
.y2a{bottom:324.444000px;}
.y20a{bottom:324.553471px;}
.y87{bottom:326.151030px;}
.y5d{bottom:329.850000px;}
.ybb{bottom:329.850037px;}
.y142{bottom:330.027007px;}
.y116{bottom:330.027041px;}
.y241{bottom:332.208029px;}
.y199{bottom:334.326047px;}
.y1ca{bottom:338.839525px;}
.yf3{bottom:339.240038px;}
.ydd{bottom:339.240050px;}
.y209{bottom:340.153461px;}
.y1e8{bottom:340.736979px;}
.y29{bottom:340.923000px;}
.y158{bottom:341.814044px;}
.y5c{bottom:349.350000px;}
.yba{bottom:349.350037px;}
.y130{bottom:349.656039px;}
.y166{bottom:351.027030px;}
.y104{bottom:351.027047px;}
.y240{bottom:353.508047px;}
.y208{bottom:355.003498px;}
.y1c9{bottom:357.964525px;}
.y115{bottom:360.240038px;}
.y1e7{bottom:362.036974px;}
.y25f{bottom:364.961958px;}
.y5b{bottom:368.850000px;}
.yb9{bottom:368.850037px;}
.yf2{bottom:369.453036px;}
.y207{bottom:369.853489px;}
.y198{bottom:370.947018px;}
.y157{bottom:372.027047px;}
.y23f{bottom:374.808022px;}
.y1c8{bottom:377.089525px;}
.y86{bottom:377.364026px;}
.y28{bottom:378.402000px;}
.y12f{bottom:379.869036px;}
.y165{bottom:381.240027px;}
.y141{bottom:381.240038px;}
.y103{bottom:381.240050px;}
.y25e{bottom:383.272459px;}
.y1e6{bottom:383.336969px;}
.y206{bottom:384.703480px;}
.y5a{bottom:388.350000px;}
.yb8{bottom:388.350037px;}
.ydc{bottom:390.453036px;}
.y197{bottom:392.247022px;}
.y27{bottom:394.881000px;}
.y1c7{bottom:396.214525px;}
.y25d{bottom:398.303982px;}
.yf1{bottom:399.666033px;}
.y205{bottom:400.303471px;}
.y156{bottom:402.240044px;}
.y23e{bottom:404.106039px;}
.y1e5{bottom:405.386988px;}
.y59{bottom:407.850000px;}
.yb7{bottom:407.850037px;}
.y12e{bottom:410.359541px;}
.y26{bottom:411.360000px;}
.y164{bottom:411.453024px;}
.y140{bottom:411.453042px;}
.y204{bottom:415.153484px;}
.y1c6{bottom:415.339525px;}
.y25c{bottom:417.428982px;}
.ydb{bottom:420.666033px;}
.y114{bottom:420.666039px;}
.y23d{bottom:425.406057px;}
.y1e4{bottom:426.686983px;}
.y58{bottom:427.350000px;}
.yb6{bottom:427.350037px;}
.y25{bottom:427.839000px;}
.y196{bottom:428.868038px;}
.yf0{bottom:429.879036px;}
.y203{bottom:430.003475px;}
.y102{bottom:432.453047px;}
.y1c5{bottom:434.464525px;}
.y25b{bottom:436.553982px;}
.y163{bottom:441.666022px;}
.y12d{bottom:441.666039px;}
.y24{bottom:444.318000px;}
.y202{bottom:444.853489px;}
.y23c{bottom:446.706030px;}
.y57{bottom:446.850000px;}
.yb5{bottom:446.850037px;}
.y1e3{bottom:447.986979px;}
.y195{bottom:450.168011px;}
.yda{bottom:450.879036px;}
.y85{bottom:451.740050px;}
.y1c4{bottom:453.589525px;}
.y25a{bottom:455.678982px;}
.y201{bottom:459.703480px;}
.yef{bottom:460.092034px;}
.y23{bottom:460.797000px;}
.y101{bottom:462.666045px;}
.y56{bottom:466.350000px;}
.yb4{bottom:466.350037px;}
.y23b{bottom:468.006048px;}
.y1e2{bottom:469.286974px;}
.y162{bottom:471.879031px;}
.y12c{bottom:471.879036px;}
.y13f{bottom:471.879042px;}
.y194{bottom:472.218029px;}
.y1c3{bottom:472.714525px;}
.y200{bottom:474.553471px;}
.y259{bottom:474.803982px;}
.y84{bottom:474.903029px;}
.y22{bottom:477.276000px;}
.yd9{bottom:481.092034px;}
.y113{bottom:481.092040px;}
.y155{bottom:483.666045px;}
.y55{bottom:485.850000px;}
.yb3{bottom:485.850037px;}
.y23a{bottom:489.306021px;}
.y1ff{bottom:489.403484px;}
.yee{bottom:490.305037px;}
.y1e1{bottom:491.336981px;}
.y1c2{bottom:491.839525px;}
.y193{bottom:493.518047px;}
.y21{bottom:493.755000px;}
.y258{bottom:493.928982px;}
.y100{bottom:497.878531px;}
.y83{bottom:498.066054px;}
.y161{bottom:502.092028px;}
.y12b{bottom:502.092040px;}
.y1fe{bottom:504.253475px;}
.y54{bottom:505.350000px;}
.yb2{bottom:505.350037px;}
.y20{bottom:510.234000px;}
.y239{bottom:510.606039px;}
.y1c1{bottom:510.964525px;}
.yd8{bottom:511.305037px;}
.y1e0{bottom:512.636976px;}
.y257{bottom:513.053982px;}
.y154{bottom:513.879042px;}
.y192{bottom:514.818020px;}
.y1fd{bottom:519.103489px;}
.y82{bottom:521.229033px;}
.y13e{bottom:523.092018px;}
.yff{bottom:523.092040px;}
.y53{bottom:524.850000px;}
.yb1{bottom:524.850037px;}
.y1f{bottom:526.713000px;}
.y1c0{bottom:530.089525px;}
.y238{bottom:531.906057px;}
.y112{bottom:532.305026px;}
.y256{bottom:533.303982px;}
.y1df{bottom:533.936983px;}
.y1fc{bottom:533.953480px;}
.y191{bottom:536.118038px;}
.yed{bottom:541.518034px;}
.y1e{bottom:543.192000px;}
.y153{bottom:544.092040px;}
.y52{bottom:544.350000px;}
.yb0{bottom:544.350037px;}
.y81{bottom:544.392058px;}
.y1bf{bottom:549.214525px;}
.y1fb{bottom:549.553482px;}
.y255{bottom:552.428982px;}
.y237{bottom:553.206030px;}
.y12a{bottom:553.305016px;}
.yfe{bottom:553.305037px;}
.y1de{bottom:555.236979px;}
.y190{bottom:557.418011px;}
.y1d{bottom:559.671000px;}
.y111{bottom:562.518023px;}
.y160{bottom:562.518029px;}
.yd7{bottom:562.518033px;}
.y51{bottom:563.850000px;}
.yaf{bottom:563.850037px;}
.y1fa{bottom:564.403484px;}
.y80{bottom:567.555037px;}
.y1be{bottom:568.339525px;}
.y254{bottom:571.553982px;}
.y152{bottom:574.305037px;}
.y236{bottom:574.506048px;}
.y1c{bottom:576.150000px;}
.y1dd{bottom:577.286980px;}
.y18f{bottom:578.718029px;}
.y1f9{bottom:579.253475px;}
.y50{bottom:583.350000px;}
.yae{bottom:583.350037px;}
.y13d{bottom:583.518024px;}
.yfd{bottom:583.518034px;}
.y129{bottom:583.518036px;}
.y1bd{bottom:587.464525px;}
.y7f{bottom:590.718016px;}
.y252{bottom:591.803982px;}
.y1b{bottom:592.629000px;}
.y110{bottom:592.731020px;}
.yec{bottom:592.731026px;}
.y1f8{bottom:594.103477px;}
.y235{bottom:595.806021px;}
.y1dc{bottom:598.586981px;}
.y18e{bottom:600.018047px;}
.y4f{bottom:602.850000px;}
.yad{bottom:602.850037px;}
.y151{bottom:604.518034px;}
.y1bc{bottom:606.589525px;}
.y1f7{bottom:608.953480px;}
.y1a{bottom:609.108000px;}
.y251{bottom:612.053982px;}
.y13c{bottom:613.731022px;}
.yd6{bottom:613.731032px;}
.y128{bottom:613.731033px;}
.yfc{bottom:613.731043px;}
.y7e{bottom:613.881041px;}
.y234{bottom:617.106039px;}
.y1db{bottom:619.886979px;}
.y18d{bottom:621.318020px;}
.y4e{bottom:622.350000px;}
.yac{bottom:622.350037px;}
.y10f{bottom:622.944024px;}
.yeb{bottom:622.944029px;}
.y1f6{bottom:623.803482px;}
.y19{bottom:625.587000px;}
.y1bb{bottom:625.714525px;}
.y250{bottom:631.178982px;}
.y150{bottom:634.731032px;}
.y7d{bottom:637.044020px;}
.y233{bottom:638.406057px;}
.y1f4{bottom:638.653484px;}
.y1da{bottom:641.186979px;}
.y4d{bottom:641.850000px;}
.yab{bottom:641.850037px;}
.y18{bottom:642.066000px;}
.y18c{bottom:642.618038px;}
.y13b{bottom:643.944019px;}
.yd5{bottom:643.944029px;}
.y127{bottom:643.944031px;}
.yfb{bottom:643.944041px;}
.y1ba{bottom:644.839525px;}
.y24f{bottom:650.303982px;}
.y10e{bottom:653.157021px;}
.y1f2{bottom:655.753484px;}
.y17{bottom:658.545000px;}
.y232{bottom:659.706030px;}
.y7c{bottom:660.207045px;}
.y4c{bottom:661.350000px;}
.yaa{bottom:661.350037px;}
.y1d8{bottom:663.236979px;}
.y18b{bottom:663.918011px;}
.y1b9{bottom:663.964525px;}
.y14f{bottom:664.944029px;}
.y24d{bottom:670.553982px;}
.y13a{bottom:674.157022px;}
.y16e{bottom:674.157027px;}
.y126{bottom:674.157028px;}
.yd4{bottom:674.157038px;}
.y16{bottom:675.024000px;}
.y4b{bottom:680.850000px;}
.ya9{bottom:680.850037px;}
.y231{bottom:681.006048px;}
.y1b8{bottom:683.089548px;}
.y7b{bottom:683.370024px;}
.y18a{bottom:685.218038px;}
.y15{bottom:691.503000px;}
.y14e{bottom:695.157038px;}
.y4a{bottom:700.350000px;}
.ya8{bottom:700.350037px;}
.y1b7{bottom:702.214548px;}
.y230{bottom:702.306044px;}
.y139{bottom:704.370018px;}
.y125{bottom:704.370026px;}
.yd3{bottom:704.370036px;}
.yea{bottom:704.370041px;}
.y14{bottom:707.982000px;}
.y1d7{bottom:710.062479px;}
.y24c{bottom:715.204479px;}
.y49{bottom:719.850000px;}
.ya7{bottom:719.850037px;}
.y1b6{bottom:721.339548px;}
.y189{bottom:721.839031px;}
.y22c{bottom:723.606042px;}
.y13{bottom:724.461000px;}
.y14d{bottom:725.370036px;}
.y1d6{bottom:731.119479px;}
.y7a{bottom:734.583022px;}
.y124{bottom:734.583023px;}
.yd2{bottom:734.583033px;}
.ye9{bottom:734.583039px;}
.y24b{bottom:736.261479px;}
.y48{bottom:739.350000px;}
.ya6{bottom:739.350037px;}
.y1b5{bottom:740.464548px;}
.y12{bottom:740.940000px;}
.y185{bottom:743.139035px;}
.y1d5{bottom:752.176479px;}
.y22b{bottom:752.904036px;}
.y14c{bottom:755.583033px;}
.y11{bottom:757.419000px;}
.y47{bottom:758.850000px;}
.ya5{bottom:758.850037px;}
.y1b4{bottom:759.589548px;}
.y123{bottom:764.796032px;}
.yd1{bottom:764.796036px;}
.ye8{bottom:764.796042px;}
.y1f1{bottom:773.746479px;}
.y10{bottom:773.898000px;}
.y22a{bottom:774.204031px;}
.y46{bottom:778.350000px;}
.ya4{bottom:778.350037px;}
.y1b3{bottom:778.714548px;}
.y184{bottom:779.760029px;}
.y10d{bottom:785.796031px;}
.y14b{bottom:785.796036px;}
.yf{bottom:790.377000px;}
.y122{bottom:795.009029px;}
.yd0{bottom:795.009034px;}
.y15f{bottom:795.009039px;}
.y229{bottom:795.504049px;}
.y1b2{bottom:797.839548px;}
.y45{bottom:797.850000px;}
.ya3{bottom:797.850037px;}
.y183{bottom:801.060024px;}
.ye{bottom:806.856000px;}
.y10c{bottom:816.009028px;}
.ye7{bottom:816.009034px;}
.y79{bottom:816.009039px;}
.y228{bottom:816.804045px;}
.y1b1{bottom:816.964548px;}
.y44{bottom:817.350000px;}
.ya2{bottom:817.350037px;}
.y182{bottom:822.360043px;}
.yd{bottom:823.335000px;}
.y121{bottom:825.222027px;}
.ycf{bottom:825.222037px;}
.y1b0{bottom:836.089548px;}
.y43{bottom:836.850000px;}
.ya1{bottom:836.850037px;}
.y227{bottom:838.104040px;}
.yc{bottom:839.814000px;}
.y181{bottom:843.660038px;}
.y138{bottom:846.222025px;}
.ye6{bottom:846.222031px;}
.y78{bottom:846.222037px;}
.y1af{bottom:855.214548px;}
.y120{bottom:855.435024px;}
.yb{bottom:856.293000px;}
.y42{bottom:856.350000px;}
.ya0{bottom:856.350037px;}
.y226{bottom:859.404036px;}
.y180{bottom:864.960033px;}
.y1ae{bottom:874.339537px;}
.y41{bottom:875.850000px;}
.y9f{bottom:875.850037px;}
.ye5{bottom:876.435029px;}
.y77{bottom:876.435034px;}
.y225{bottom:880.704042px;}
.y267{bottom:880.989027px;}
.y11f{bottom:885.648033px;}
.y17f{bottom:886.260029px;}
.ya{bottom:889.251000px;}
.y1ad{bottom:893.464537px;}
.y40{bottom:895.350000px;}
.y9e{bottom:895.350037px;}
.y14a{bottom:897.435034px;}
.y224{bottom:902.004038px;}
.y9{bottom:905.730000px;}
.y76{bottom:906.648032px;}
.ye4{bottom:906.648037px;}
.y17e{bottom:907.560036px;}
.y1ac{bottom:912.589537px;}
.y3f{bottom:914.850000px;}
.y9d{bottom:914.850037px;}
.y11e{bottom:915.861028px;}
.y266{bottom:920.202031px;}
.y8{bottom:922.209000px;}
.y223{bottom:923.304045px;}
.y149{bottom:927.648032px;}
.y17d{bottom:928.860031px;}
.y1ab{bottom:931.714537px;}
.y3e{bottom:934.350000px;}
.y9c{bottom:934.350037px;}
.y137{bottom:936.861029px;}
.yce{bottom:936.861035px;}
.y75{bottom:936.861041px;}
.y7{bottom:938.688000px;}
.y222{bottom:944.604040px;}
.y17c{bottom:950.160038px;}
.y265{bottom:950.415034px;}
.y1aa{bottom:950.839537px;}
.y3d{bottom:953.850000px;}
.y9b{bottom:953.850037px;}
.y6{bottom:955.167000px;}
.y148{bottom:957.861029px;}
.y221{bottom:965.904041px;}
.ycd{bottom:967.074032px;}
.y74{bottom:967.074038px;}
.y1a9{bottom:969.964537px;}
.y17b{bottom:971.460033px;}
.y5{bottom:971.646000px;}
.y3c{bottom:973.350000px;}
.y9a{bottom:973.350037px;}
.y220{bottom:987.204042px;}
.y147{bottom:988.074038px;}
.y1a8{bottom:989.089537px;}
.y264{bottom:989.628031px;}
.y17a{bottom:992.760035px;}
.y3b{bottom:992.850000px;}
.y99{bottom:992.850037px;}
.y136{bottom:997.287030px;}
.y73{bottom:997.287035px;}
.y4{bottom:1006.839000px;}
.y1a6{bottom:1008.214537px;}
.y21f{bottom:1008.504041px;}
.y3a{bottom:1012.350000px;}
.y98{bottom:1012.350037px;}
.y179{bottom:1014.060036px;}
.y11d{bottom:1018.287035px;}
.y3{bottom:1025.149500px;}
.ye3{bottom:1027.500033px;}
.y72{bottom:1027.500039px;}
.y1a0{bottom:1028.089537px;}
.y263{bottom:1028.841040px;}
.y21e{bottom:1030.929040px;}
.y39{bottom:1031.850000px;}
.y97{bottom:1031.850037px;}
.y178{bottom:1035.360034px;}
.ycc{bottom:1048.500033px;}
.y38{bottom:1051.350000px;}
.y96{bottom:1051.350037px;}
.y21c{bottom:1053.354040px;}
.y71{bottom:1057.713036px;}
.y177{bottom:1057.785034px;}
.y2{bottom:1061.206500px;}
.y262{bottom:1068.054038px;}
.y37{bottom:1070.850000px;}
.y95{bottom:1070.850037px;}
.ycb{bottom:1078.713036px;}
.y175{bottom:1081.335033px;}
.y70{bottom:1087.926039px;}
.y36{bottom:1090.350000px;}
.y94{bottom:1090.350037px;}
.y261{bottom:1098.267038px;}
.y21b{bottom:1100.179539px;}
.y19f{bottom:1102.116035px;}
.y172{bottom:1104.168035px;}
.yca{bottom:1108.926033px;}
.y35{bottom:1109.850000px;}
.y93{bottom:1109.850037px;}
.y1{bottom:1118.997000px;}
.y19e{bottom:1120.426536px;}
.y21a{bottom:1121.236539px;}
.y171{bottom:1123.908035px;}
.y34{bottom:1129.350000px;}
.y92{bottom:1129.350037px;}
.y6f{bottom:1139.139037px;}
.y174{bottom:1140.568537px;}
.y260{bottom:1140.780036px;}
.y219{bottom:1142.293539px;}
.y33{bottom:1148.850000px;}
.y91{bottom:1148.850037px;}
.y32{bottom:1168.350000px;}
.y90{bottom:1168.350037px;}
.y6e{bottom:1178.881500px;}
.y31{bottom:1187.850000px;}
.y8f{bottom:1187.850037px;}
.y6d{bottom:1196.881500px;}
.y6c{bottom:1214.881500px;}
.h21{height:17.849999px;}
.h24{height:18.599999px;}
.h22{height:20.099999px;}
.h19{height:22.125000px;}
.h28{height:23.250000px;}
.h10{height:24.300001px;}
.h16{height:25.050001px;}
.h23{height:30.187500px;}
.h20{height:30.577148px;}
.hb{height:30.720703px;}
.h26{height:32.297999px;}
.h1a{height:35.109375px;}
.h25{height:35.625000px;}
.h27{height:36.809624px;}
.he{height:37.857001px;}
.h1d{height:37.889648px;}
.h4{height:39.445312px;}
.h6{height:39.498047px;}
.h14{height:39.620999px;}
.h18{height:40.078125px;}
.h1e{height:41.621770px;}
.h29{height:42.187500px;}
.h5{height:42.694031px;}
.h2b{height:42.949219px;}
.h8{height:43.681641px;}
.hf{height:43.886719px;}
.h11{height:44.531250px;}
.h2c{height:45.826172px;}
.h2{height:46.406250px;}
.h2a{height:46.706366px;}
.h3{height:46.706367px;}
.h13{height:46.706368px;}
.h15{height:46.706371px;}
.h12{height:47.125314px;}
.h9{height:48.275391px;}
.hd{height:48.761719px;}
.hc{height:50.718658px;}
.ha{height:50.718704px;}
.h17{height:52.437000px;}
.h7{height:62.578125px;}
.h1f{height:100.799995px;}
.h1b{height:892.949982px;}
.h1c{height:893.250000px;}
.h0{height:1262.850037px;}
.h1{height:1263.000000px;}
.w2{width:8.802000px;}
.w1c{width:33.224999px;}
.w1f{width:33.525001px;}
.w1d{width:34.275001px;}
.w1e{width:37.050001px;}
.w25{width:37.724999px;}
.w7{width:42.974999px;}
.w8{width:44.474999px;}
.wa{width:47.550001px;}
.w19{width:51.074999px;}
.w9{width:55.199999px;}
.w1a{width:57.750000px;}
.we{width:57.824999px;}
.wd{width:64.649998px;}
.wf{width:71.550001px;}
.wc{width:74.699999px;}
.w11{width:75.750000px;}
.wb{width:85.800001px;}
.w12{width:96.075005px;}
.w21{width:96.899998px;}
.w22{width:102.225002px;}
.w23{width:109.049995px;}
.w10{width:111.524998px;}
.w20{width:116.850002px;}
.w26{width:118.725002px;}
.w27{width:119.250000px;}
.w24{width:121.200005px;}
.w18{width:121.424995px;}
.w2c{width:128.024998px;}
.w4{width:130.350002px;}
.w5{width:131.024998px;}
.w17{width:134.774998px;}
.w2a{width:142.200005px;}
.w28{width:147.149998px;}
.w16{width:148.500000px;}
.w13{width:149.250000px;}
.w6{width:153.674995px;}
.w1b{width:153.899998px;}
.w29{width:155.774998px;}
.w3{width:198.000000px;}
.w2b{width:245.700005px;}
.w0{width:892.949982px;}
.w1{width:893.250000px;}
.w14{width:1262.850037px;}
.w15{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:6.000000px;}
.x72{left:7.917000px;}
.x1d{left:8.940000px;}
.x19{left:10.083000px;}
.x22{left:11.170500px;}
.x1b{left:12.370500px;}
.x33{left:13.543500px;}
.x1f{left:14.634000px;}
.xe{left:16.546500px;}
.x26{left:17.733000px;}
.x16{left:18.834000px;}
.x20{left:19.941000px;}
.x11{left:21.168001px;}
.x28{left:23.442000px;}
.x1a{left:25.303501px;}
.x31{left:26.845500px;}
.x23{left:28.223999px;}
.x1e{left:29.602499px;}
.x1c{left:31.495500px;}
.x2f{left:32.649001px;}
.xa{left:34.233001px;}
.x2e{left:36.068999px;}
.x18{left:37.432500px;}
.x68{left:40.386000px;}
.x3e{left:41.853001px;}
.x30{left:43.793999px;}
.x3f{left:45.274501px;}
.x3{left:46.662000px;}
.x69{left:49.962001px;}
.x2d{left:52.340999px;}
.x32{left:53.695501px;}
.x6c{left:55.042500px;}
.x67{left:56.524498px;}
.x6e{left:59.334000px;}
.x35{left:60.565498px;}
.x8{left:74.250000px;}
.x2c{left:78.375000px;}
.x1{left:81.000000px;}
.x3c{left:97.800003px;}
.x70{left:99.600002px;}
.x65{left:102.937498px;}
.x6{left:106.350002px;}
.x4{left:108.000000px;}
.x40{left:133.237507px;}
.x41{left:163.837509px;}
.x42{left:195.487507px;}
.x66{left:218.662500px;}
.x21{left:224.625000px;}
.x43{left:227.137505px;}
.x3d{left:248.700000px;}
.x44{left:258.787514px;}
.xd{left:269.250000px;}
.x45{left:290.437500px;}
.x24{left:296.325005px;}
.x46{left:322.087509px;}
.x64{left:334.912489px;}
.x71{left:342.300007px;}
.x47{left:356.512505px;}
.x25{left:357.974991px;}
.x60{left:369.637502px;}
.x48{left:388.162514px;}
.x34{left:399.599998px;}
.x9{left:419.924995px;}
.x49{left:451.462486px;}
.xf{left:459.900009px;}
.x61{left:463.537489px;}
.x6a{left:467.324993px;}
.x27{left:474.449982px;}
.x4a{left:483.112495px;}
.x10{left:501.375000px;}
.x4b{left:514.762505px;}
.x29{left:543.000000px;}
.x36{left:545.100021px;}
.xb{left:547.275009px;}
.x12{left:553.574982px;}
.x62{left:562.762479px;}
.x4c{left:578.062523px;}
.x13{left:593.550018px;}
.x4d{left:609.712486px;}
.x6b{left:611.475002px;}
.x14{left:635.025009px;}
.x4e{left:641.362495px;}
.x2a{left:651.525009px;}
.x63{left:668.812498px;}
.x4f{left:673.012505px;}
.xc{left:675.300018px;}
.x15{left:687.224991px;}
.x37{left:690.600021px;}
.x50{left:704.662514px;}
.x2b{left:724.275009px;}
.x17{left:731.775009px;}
.x51{left:736.312523px;}
.x6d{left:764.250011px;}
.x52{left:767.962486px;}
.x5{left:778.397955px;}
.x53{left:799.612541px;}
.x7{left:803.747992px;}
.x38{left:822.374984px;}
.x54{left:831.262505px;}
.x55{left:862.912468px;}
.x56{left:894.562523px;}
.x6f{left:903.450039px;}
.x57{left:926.212486px;}
.x39{left:940.800003px;}
.x58{left:957.862541px;}
.x3a{left:988.874984px;}
.x59{left:1021.162468px;}
.x5a{left:1052.812523px;}
.x5b{left:1084.462486px;}
.x3b{left:1107.300003px;}
.x5c{left:1116.112541px;}
.x5d{left:1147.762505px;}
.x5e{left:1179.412468px;}
.x5f{left:1211.062523px;}
@media print{
.v6{vertical-align:-26.575928pt;}
.v5{vertical-align:-17.775960pt;}
.v4{vertical-align:-8.799998pt;}
.v7{vertical-align:-7.199997pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.927999pt;}
.v2{vertical-align:14.544000pt;}
.v1{vertical-align:16.160000pt;}
.v3{vertical-align:17.776001pt;}
.ls3{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.010668pt;}
.ls8{letter-spacing:0.010696pt;}
.ls6{letter-spacing:0.010777pt;}
.ls0{letter-spacing:0.026667pt;}
.lsd{letter-spacing:0.026670pt;}
.lsa{letter-spacing:0.031996pt;}
.lsb{letter-spacing:0.032001pt;}
.lsc{letter-spacing:0.032003pt;}
.ls2{letter-spacing:0.117333pt;}
.ls1{letter-spacing:0.160005pt;}
.ls4{letter-spacing:0.453212pt;}
.ls9{letter-spacing:5.050672pt;}
.ls5{letter-spacing:6.869344pt;}
.ws4{word-spacing:-12.053333pt;}
.ws5{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.453333pt;}
.ws7{word-spacing:-9.642667pt;}
.ws3{word-spacing:-8.437333pt;}
.ws0{word-spacing:-7.834667pt;}
.ws6{word-spacing:-7.232000pt;}
.ws1{word-spacing:0.000000pt;}
.ws2{word-spacing:34.191998pt;}
._0{width:1.050661pt;}
._4{width:2.202677pt;}
._2{width:3.546672pt;}
._5{width:4.928016pt;}
._6{width:5.941315pt;}
._3{width:6.954672pt;}
._a{width:8.399997pt;}
._9{width:9.871980pt;}
._8{width:10.928009pt;}
._7{width:12.079991pt;}
._b{width:14.181314pt;}
._1{width:15.461333pt;}
._10{width:16.426700pt;}
._18{width:17.519952pt;}
._16{width:18.752021pt;}
._e{width:19.845336pt;}
._d{width:20.799993pt;}
._13{width:23.722825pt;}
._12{width:24.709323pt;}
._c{width:26.320000pt;}
._15{width:31.205415pt;}
._14{width:32.234650pt;}
._11{width:33.738662pt;}
._17{width:42.661334pt;}
._f{width:47.450665pt;}
.fs8{font-size:26.666667pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:34.666667pt;}
.fs5{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y22e{bottom:4.197334pt;}
.y1f5{bottom:4.545333pt;}
.y1a3{bottom:4.556000pt;}
.y187{bottom:4.914665pt;}
.y24e{bottom:5.277334pt;}
.y1a7{bottom:5.732000pt;}
.y253{bottom:5.777334pt;}
.y1cf{bottom:6.186667pt;}
.y176{bottom:6.244001pt;}
.y1d9{bottom:6.698667pt;}
.y21d{bottom:7.153334pt;}
.y1f3{bottom:8.866666pt;}
.y22f{bottom:10.708000pt;}
.y1a5{bottom:11.880000pt;}
.y188{bottom:13.053332pt;}
.y22d{bottom:17.218666pt;}
.y1a2{bottom:19.204000pt;}
.y170{bottom:20.156001pt;}
.y186{bottom:21.190666pt;}
.y1a4{bottom:26.528000pt;}
.y1a1{bottom:33.852000pt;}
.y173{bottom:46.333333pt;}
.y16f{bottom:46.400065pt;}
.y6b{bottom:50.533333pt;}
.yc9{bottom:50.533366pt;}
.y6a{bottom:67.866667pt;}
.yc8{bottom:67.866699pt;}
.y69{bottom:85.200000pt;}
.yc7{bottom:85.200033pt;}
.y8e{bottom:101.920022pt;}
.y68{bottom:102.533333pt;}
.yc6{bottom:102.533366pt;}
.y16d{bottom:105.365386pt;}
.y218{bottom:106.671998pt;}
.y30{bottom:107.173333pt;}
.yfa{bottom:113.554707pt;}
.y11c{bottom:113.554722pt;}
.y217{bottom:116.225332pt;}
.y67{bottom:119.866667pt;}
.yc5{bottom:119.866699pt;}
.y10b{bottom:124.032042pt;}
.y24a{bottom:124.896001pt;}
.y8d{bottom:128.776020pt;}
.y216{bottom:129.425323pt;}
.y16c{bottom:132.221383pt;}
.y66{bottom:137.200000pt;}
.yc4{bottom:137.200033pt;}
.yf9{bottom:140.410704pt;}
.y11b{bottom:140.410725pt;}
.y2f{bottom:140.488000pt;}
.y215{bottom:142.625315pt;}
.y15e{bottom:142.698709pt;}
.y249{bottom:143.829351pt;}
.y1d4{bottom:148.190689pt;}
.ye2{bottom:148.600005pt;}
.y10a{bottom:150.888040pt;}
.y65{bottom:154.533333pt;}
.yc3{bottom:154.533366pt;}
.y8c{bottom:155.632028pt;}
.y214{bottom:155.825307pt;}
.y16b{bottom:159.077386pt;}
.y248{bottom:162.762700pt;}
.y1d3{bottom:165.190689pt;}
.y146{bottom:167.266680pt;}
.yf8{bottom:167.266702pt;}
.y1f0{bottom:167.489329pt;}
.y213{bottom:169.025299pt;}
.y15d{bottom:169.554707pt;}
.y64{bottom:171.866667pt;}
.yc2{bottom:171.866699pt;}
.y2e{bottom:173.802667pt;}
.ye1{bottom:175.456003pt;}
.y135{bottom:176.525369pt;}
.y109{bottom:177.744038pt;}
.y247{bottom:181.696050pt;}
.y1ef{bottom:182.137319pt;}
.y1d2{bottom:182.190689pt;}
.y212{bottom:182.225332pt;}
.y8b{bottom:182.488026pt;}
.y11a{bottom:185.933369pt;}
.y16a{bottom:185.933384pt;}
.y63{bottom:189.200000pt;}
.yc1{bottom:189.200033pt;}
.yf7{bottom:194.122700pt;}
.y211{bottom:196.091990pt;}
.y15c{bottom:196.410704pt;}
.y1ee{bottom:196.785309pt;}
.y1d1{bottom:199.190689pt;}
.y246{bottom:200.629400pt;}
.ye0{bottom:202.312005pt;}
.y134{bottom:203.381367pt;}
.y108{bottom:204.600046pt;}
.y62{bottom:206.533333pt;}
.yc0{bottom:206.533366pt;}
.y2d{bottom:207.117333pt;}
.y1ed{bottom:207.543981pt;}
.y210{bottom:209.291982pt;}
.y8a{bottom:209.344023pt;}
.y145{bottom:212.789336pt;}
.y119{bottom:212.789366pt;}
.y169{bottom:212.789387pt;}
.y1d0{bottom:216.190689pt;}
.y245{bottom:219.562668pt;}
.yf6{bottom:220.978697pt;}
.y20f{bottom:222.491974pt;}
.y15b{bottom:223.266702pt;}
.y61{bottom:223.866667pt;}
.ybf{bottom:223.866699pt;}
.y1ec{bottom:226.477331pt;}
.ydf{bottom:229.168003pt;}
.y133{bottom:230.237364pt;}
.y107{bottom:231.456043pt;}
.y1ce{bottom:233.190689pt;}
.y19d{bottom:233.665359pt;}
.y20e{bottom:235.691966pt;}
.y89{bottom:236.200026pt;}
.y244{bottom:238.496017pt;}
.y144{bottom:239.645339pt;}
.y118{bottom:239.645364pt;}
.y2c{bottom:240.432000pt;}
.y60{bottom:241.200000pt;}
.ybe{bottom:241.200033pt;}
.y1eb{bottom:245.410639pt;}
.yf5{bottom:247.834695pt;}
.y20d{bottom:248.891998pt;}
.y19c{bottom:249.941401pt;}
.y15a{bottom:250.122710pt;}
.y1cd{bottom:250.190689pt;}
.yde{bottom:256.024006pt;}
.y132{bottom:257.093362pt;}
.y243{bottom:257.429367pt;}
.y168{bottom:258.312031pt;}
.y106{bottom:258.312041pt;}
.y5f{bottom:258.533333pt;}
.ybd{bottom:258.533366pt;}
.y20c{bottom:262.091990pt;}
.y88{bottom:263.056024pt;}
.y1ea{bottom:264.343989pt;}
.y19b{bottom:266.217361pt;}
.y143{bottom:266.501336pt;}
.y117{bottom:266.501362pt;}
.y1cc{bottom:267.190689pt;}
.y2b{bottom:273.746667pt;}
.yf4{bottom:274.690693pt;}
.y20b{bottom:275.291982pt;}
.y5e{bottom:275.866667pt;}
.ybc{bottom:275.866699pt;}
.y242{bottom:276.362717pt;}
.y159{bottom:276.978708pt;}
.y19a{bottom:278.245372pt;}
.y1e9{bottom:283.943985pt;}
.y131{bottom:283.949360pt;}
.y1cb{bottom:284.190689pt;}
.y167{bottom:285.168029pt;}
.y105{bottom:285.168044pt;}
.y2a{bottom:288.394667pt;}
.y20a{bottom:288.491974pt;}
.y87{bottom:289.912027pt;}
.y5d{bottom:293.200000pt;}
.ybb{bottom:293.200033pt;}
.y142{bottom:293.357339pt;}
.y116{bottom:293.357370pt;}
.y241{bottom:295.296026pt;}
.y199{bottom:297.178708pt;}
.y1ca{bottom:301.190689pt;}
.yf3{bottom:301.546701pt;}
.ydd{bottom:301.546711pt;}
.y209{bottom:302.358632pt;}
.y1e8{bottom:302.877314pt;}
.y29{bottom:303.042667pt;}
.y158{bottom:303.834705pt;}
.y5c{bottom:310.533333pt;}
.yba{bottom:310.533366pt;}
.y130{bottom:310.805368pt;}
.y166{bottom:312.024026pt;}
.y104{bottom:312.024041pt;}
.y240{bottom:314.229375pt;}
.y208{bottom:315.558665pt;}
.y1c9{bottom:318.190689pt;}
.y115{bottom:320.213367pt;}
.y1e7{bottom:321.810644pt;}
.y25f{bottom:324.410629pt;}
.y5b{bottom:327.866667pt;}
.yb9{bottom:327.866699pt;}
.yf2{bottom:328.402698pt;}
.y207{bottom:328.758657pt;}
.y198{bottom:329.730682pt;}
.y157{bottom:330.690708pt;}
.y23f{bottom:333.162687pt;}
.y1c8{bottom:335.190689pt;}
.y86{bottom:335.434690pt;}
.y28{bottom:336.357333pt;}
.y12f{bottom:337.661365pt;}
.y165{bottom:338.880024pt;}
.y141{bottom:338.880034pt;}
.y103{bottom:338.880044pt;}
.y25e{bottom:340.686630pt;}
.y1e6{bottom:340.743973pt;}
.y206{bottom:341.958649pt;}
.y5a{bottom:345.200000pt;}
.yb8{bottom:345.200033pt;}
.ydc{bottom:347.069365pt;}
.y197{bottom:348.664019pt;}
.y27{bottom:351.005333pt;}
.y1c7{bottom:352.190689pt;}
.y25d{bottom:354.047984pt;}
.yf1{bottom:355.258696pt;}
.y205{bottom:355.825307pt;}
.y156{bottom:357.546706pt;}
.y23e{bottom:359.205368pt;}
.y1e5{bottom:360.343989pt;}
.y59{bottom:362.533333pt;}
.yb7{bottom:362.533366pt;}
.y12e{bottom:364.764037pt;}
.y26{bottom:365.653333pt;}
.y164{bottom:365.736022pt;}
.y140{bottom:365.736037pt;}
.y204{bottom:369.025319pt;}
.y1c6{bottom:369.190689pt;}
.y25c{bottom:371.047984pt;}
.ydb{bottom:373.925363pt;}
.y114{bottom:373.925368pt;}
.y23d{bottom:378.138718pt;}
.y1e4{bottom:379.277318pt;}
.y58{bottom:379.866667pt;}
.yb6{bottom:379.866699pt;}
.y25{bottom:380.301333pt;}
.y196{bottom:381.216034pt;}
.yf0{bottom:382.114699pt;}
.y203{bottom:382.225311pt;}
.y102{bottom:384.402709pt;}
.y1c5{bottom:386.190689pt;}
.y25b{bottom:388.047984pt;}
.y163{bottom:392.592019pt;}
.y12d{bottom:392.592035pt;}
.y24{bottom:394.949333pt;}
.y202{bottom:395.425323pt;}
.y23c{bottom:397.072027pt;}
.y57{bottom:397.200000pt;}
.yb5{bottom:397.200033pt;}
.y1e3{bottom:398.210648pt;}
.y195{bottom:400.149343pt;}
.yda{bottom:400.781366pt;}
.y85{bottom:401.546711pt;}
.y1c4{bottom:403.190689pt;}
.y25a{bottom:405.047984pt;}
.y201{bottom:408.625315pt;}
.yef{bottom:408.970697pt;}
.y23{bottom:409.597333pt;}
.y101{bottom:411.258706pt;}
.y56{bottom:414.533333pt;}
.yb4{bottom:414.533366pt;}
.y23b{bottom:416.005376pt;}
.y1e2{bottom:417.143977pt;}
.y162{bottom:419.448027pt;}
.y12c{bottom:419.448032pt;}
.y13f{bottom:419.448037pt;}
.y194{bottom:419.749359pt;}
.y1c3{bottom:420.190689pt;}
.y200{bottom:421.825307pt;}
.y259{bottom:422.047984pt;}
.y84{bottom:422.136026pt;}
.y22{bottom:424.245333pt;}
.yd9{bottom:427.637363pt;}
.y113{bottom:427.637369pt;}
.y155{bottom:429.925373pt;}
.y55{bottom:431.866667pt;}
.yb3{bottom:431.866699pt;}
.y23a{bottom:434.938685pt;}
.y1ff{bottom:435.025319pt;}
.yee{bottom:435.826700pt;}
.y1e1{bottom:436.743983pt;}
.y1c2{bottom:437.190689pt;}
.y193{bottom:438.682709pt;}
.y21{bottom:438.893333pt;}
.y258{bottom:439.047984pt;}
.y100{bottom:442.558694pt;}
.y83{bottom:442.725381pt;}
.y161{bottom:446.304025pt;}
.y12b{bottom:446.304035pt;}
.y1fe{bottom:448.225311pt;}
.y54{bottom:449.200000pt;}
.yb2{bottom:449.200033pt;}
.y20{bottom:453.541333pt;}
.y239{bottom:453.872035pt;}
.y1c1{bottom:454.190689pt;}
.yd8{bottom:454.493366pt;}
.y1e0{bottom:455.677312pt;}
.y257{bottom:456.047984pt;}
.y154{bottom:456.781371pt;}
.y192{bottom:457.616018pt;}
.y1fd{bottom:461.425323pt;}
.y82{bottom:463.314696pt;}
.y13e{bottom:464.970683pt;}
.yff{bottom:464.970702pt;}
.y53{bottom:466.533333pt;}
.yb1{bottom:466.533366pt;}
.y1f{bottom:468.189333pt;}
.y1c0{bottom:471.190689pt;}
.y238{bottom:472.805384pt;}
.y112{bottom:473.160023pt;}
.y256{bottom:474.047984pt;}
.y1df{bottom:474.610652pt;}
.y1fc{bottom:474.625315pt;}
.y191{bottom:476.549367pt;}
.yed{bottom:481.349364pt;}
.y1e{bottom:482.837333pt;}
.y153{bottom:483.637369pt;}
.y52{bottom:483.866667pt;}
.yb0{bottom:483.866699pt;}
.y81{bottom:483.904051pt;}
.y1bf{bottom:488.190689pt;}
.y1fb{bottom:488.491984pt;}
.y255{bottom:491.047984pt;}
.y237{bottom:491.738693pt;}
.y12a{bottom:491.826681pt;}
.yfe{bottom:491.826700pt;}
.y1de{bottom:493.543981pt;}
.y190{bottom:495.482676pt;}
.y1d{bottom:497.485333pt;}
.y111{bottom:500.016020pt;}
.y160{bottom:500.016026pt;}
.yd7{bottom:500.016029pt;}
.y51{bottom:501.200000pt;}
.yaf{bottom:501.200033pt;}
.y1fa{bottom:501.691986pt;}
.y80{bottom:504.493366pt;}
.y1be{bottom:505.190689pt;}
.y254{bottom:508.047984pt;}
.y152{bottom:510.493366pt;}
.y236{bottom:510.672043pt;}
.y1c{bottom:512.133333pt;}
.y1dd{bottom:513.143982pt;}
.y18f{bottom:514.416026pt;}
.y1f9{bottom:514.891978pt;}
.y50{bottom:518.533333pt;}
.yae{bottom:518.533366pt;}
.y13d{bottom:518.682688pt;}
.yfd{bottom:518.682697pt;}
.y129{bottom:518.682699pt;}
.y1bd{bottom:522.190689pt;}
.y7f{bottom:525.082681pt;}
.y252{bottom:526.047984pt;}
.y1b{bottom:526.781333pt;}
.y110{bottom:526.872018pt;}
.yec{bottom:526.872023pt;}
.y1f8{bottom:528.091980pt;}
.y235{bottom:529.605352pt;}
.y1dc{bottom:532.077316pt;}
.y18e{bottom:533.349375pt;}
.y4f{bottom:535.866667pt;}
.yad{bottom:535.866699pt;}
.y151{bottom:537.349364pt;}
.y1bc{bottom:539.190689pt;}
.y1f7{bottom:541.291982pt;}
.y1a{bottom:541.429333pt;}
.y251{bottom:544.047984pt;}
.y13c{bottom:545.538686pt;}
.yd6{bottom:545.538695pt;}
.y128{bottom:545.538696pt;}
.yfc{bottom:545.538705pt;}
.y7e{bottom:545.672036pt;}
.y234{bottom:548.538701pt;}
.y1db{bottom:551.010648pt;}
.y18d{bottom:552.282684pt;}
.y4e{bottom:553.200000pt;}
.yac{bottom:553.200033pt;}
.y10f{bottom:553.728021pt;}
.yeb{bottom:553.728026pt;}
.y1f6{bottom:554.491984pt;}
.y19{bottom:556.077333pt;}
.y1bb{bottom:556.190689pt;}
.y250{bottom:561.047984pt;}
.y150{bottom:564.205362pt;}
.y7d{bottom:566.261351pt;}
.y233{bottom:567.472051pt;}
.y1f4{bottom:567.691986pt;}
.y1da{bottom:569.943981pt;}
.y4d{bottom:570.533333pt;}
.yab{bottom:570.533366pt;}
.y18{bottom:570.725333pt;}
.y18c{bottom:571.216034pt;}
.y13b{bottom:572.394684pt;}
.yd5{bottom:572.394693pt;}
.y127{bottom:572.394694pt;}
.yfb{bottom:572.394703pt;}
.y1ba{bottom:573.190689pt;}
.y24f{bottom:578.047984pt;}
.y10e{bottom:580.584019pt;}
.y1f2{bottom:582.891986pt;}
.y17{bottom:585.373333pt;}
.y232{bottom:586.405360pt;}
.y7c{bottom:586.850707pt;}
.y4c{bottom:587.866667pt;}
.yaa{bottom:587.866699pt;}
.y1d8{bottom:589.543981pt;}
.y18b{bottom:590.149343pt;}
.y1b9{bottom:590.190689pt;}
.y14f{bottom:591.061359pt;}
.y24d{bottom:596.047984pt;}
.y13a{bottom:599.250687pt;}
.y16e{bottom:599.250690pt;}
.y126{bottom:599.250692pt;}
.yd4{bottom:599.250701pt;}
.y16{bottom:600.021333pt;}
.y4b{bottom:605.200000pt;}
.ya9{bottom:605.200033pt;}
.y231{bottom:605.338710pt;}
.y1b8{bottom:607.190709pt;}
.y7b{bottom:607.440022pt;}
.y18a{bottom:609.082700pt;}
.y15{bottom:614.669333pt;}
.y14e{bottom:617.917367pt;}
.y4a{bottom:622.533333pt;}
.ya8{bottom:622.533366pt;}
.y1b7{bottom:624.190709pt;}
.y230{bottom:624.272039pt;}
.y139{bottom:626.106683pt;}
.y125{bottom:626.106689pt;}
.yd3{bottom:626.106698pt;}
.yea{bottom:626.106703pt;}
.y14{bottom:629.317333pt;}
.y1d7{bottom:631.166648pt;}
.y24c{bottom:635.737315pt;}
.y49{bottom:639.866667pt;}
.ya7{bottom:639.866699pt;}
.y1b6{bottom:641.190709pt;}
.y189{bottom:641.634694pt;}
.y22c{bottom:643.205371pt;}
.y13{bottom:643.965333pt;}
.y14d{bottom:644.773365pt;}
.y1d6{bottom:649.883981pt;}
.y7a{bottom:652.962686pt;}
.y124{bottom:652.962687pt;}
.yd2{bottom:652.962696pt;}
.ye9{bottom:652.962701pt;}
.y24b{bottom:654.454648pt;}
.y48{bottom:657.200000pt;}
.ya6{bottom:657.200033pt;}
.y1b5{bottom:658.190709pt;}
.y12{bottom:658.613333pt;}
.y185{bottom:660.568031pt;}
.y1d5{bottom:668.601315pt;}
.y22b{bottom:669.248032pt;}
.y14c{bottom:671.629363pt;}
.y11{bottom:673.261333pt;}
.y47{bottom:674.533333pt;}
.ya5{bottom:674.533366pt;}
.y1b4{bottom:675.190709pt;}
.y123{bottom:679.818695pt;}
.yd1{bottom:679.818699pt;}
.ye8{bottom:679.818704pt;}
.y1f1{bottom:687.774648pt;}
.y10{bottom:687.909333pt;}
.y22a{bottom:688.181361pt;}
.y46{bottom:691.866667pt;}
.ya4{bottom:691.866699pt;}
.y1b3{bottom:692.190709pt;}
.y184{bottom:693.120026pt;}
.y10d{bottom:698.485360pt;}
.y14b{bottom:698.485366pt;}
.yf{bottom:702.557333pt;}
.y122{bottom:706.674693pt;}
.yd0{bottom:706.674697pt;}
.y15f{bottom:706.674702pt;}
.y229{bottom:707.114710pt;}
.y1b2{bottom:709.190709pt;}
.y45{bottom:709.200000pt;}
.ya3{bottom:709.200033pt;}
.y183{bottom:712.053355pt;}
.ye{bottom:717.205333pt;}
.y10c{bottom:725.341358pt;}
.ye7{bottom:725.341363pt;}
.y79{bottom:725.341368pt;}
.y228{bottom:726.048040pt;}
.y1b1{bottom:726.190709pt;}
.y44{bottom:726.533333pt;}
.ya2{bottom:726.533366pt;}
.y182{bottom:730.986705pt;}
.yd{bottom:731.853333pt;}
.y121{bottom:733.530691pt;}
.ycf{bottom:733.530699pt;}
.y1b0{bottom:743.190709pt;}
.y43{bottom:743.866667pt;}
.ya1{bottom:743.866699pt;}
.y227{bottom:744.981369pt;}
.yc{bottom:746.501333pt;}
.y181{bottom:749.920034pt;}
.y138{bottom:752.197356pt;}
.ye6{bottom:752.197361pt;}
.y78{bottom:752.197366pt;}
.y1af{bottom:760.190709pt;}
.y120{bottom:760.386688pt;}
.yb{bottom:761.149333pt;}
.y42{bottom:761.200000pt;}
.ya0{bottom:761.200033pt;}
.y226{bottom:763.914698pt;}
.y180{bottom:768.853363pt;}
.y1ae{bottom:777.190699pt;}
.y41{bottom:778.533333pt;}
.y9f{bottom:778.533366pt;}
.ye5{bottom:779.053359pt;}
.y77{bottom:779.053364pt;}
.y225{bottom:782.848038pt;}
.y267{bottom:783.101358pt;}
.y11f{bottom:787.242696pt;}
.y17f{bottom:787.786692pt;}
.ya{bottom:790.445333pt;}
.y1ad{bottom:794.190699pt;}
.y40{bottom:795.866667pt;}
.y9e{bottom:795.866699pt;}
.y14a{bottom:797.720030pt;}
.y224{bottom:801.781367pt;}
.y9{bottom:805.093333pt;}
.y76{bottom:805.909362pt;}
.ye4{bottom:805.909367pt;}
.y17e{bottom:806.720032pt;}
.y1ac{bottom:811.190699pt;}
.y3f{bottom:813.200000pt;}
.y9d{bottom:813.200033pt;}
.y11e{bottom:814.098691pt;}
.y266{bottom:817.957361pt;}
.y8{bottom:819.741333pt;}
.y223{bottom:820.714706pt;}
.y149{bottom:824.576028pt;}
.y17d{bottom:825.653361pt;}
.y1ab{bottom:828.190699pt;}
.y3e{bottom:830.533333pt;}
.y9c{bottom:830.533366pt;}
.y137{bottom:832.765359pt;}
.yce{bottom:832.765364pt;}
.y75{bottom:832.765369pt;}
.y7{bottom:834.389333pt;}
.y222{bottom:839.648036pt;}
.y17c{bottom:844.586700pt;}
.y265{bottom:844.813363pt;}
.y1aa{bottom:845.190699pt;}
.y3d{bottom:847.866667pt;}
.y9b{bottom:847.866699pt;}
.y6{bottom:849.037333pt;}
.y148{bottom:851.432026pt;}
.y221{bottom:858.581370pt;}
.ycd{bottom:859.621362pt;}
.y74{bottom:859.621367pt;}
.y1a9{bottom:862.190699pt;}
.y17b{bottom:863.520030pt;}
.y5{bottom:863.685333pt;}
.y3c{bottom:865.200000pt;}
.y9a{bottom:865.200033pt;}
.y220{bottom:877.514704pt;}
.y147{bottom:878.288034pt;}
.y1a8{bottom:879.190699pt;}
.y264{bottom:879.669361pt;}
.y17a{bottom:882.453364pt;}
.y3b{bottom:882.533333pt;}
.y99{bottom:882.533366pt;}
.y136{bottom:886.477360pt;}
.y73{bottom:886.477365pt;}
.y4{bottom:894.968000pt;}
.y1a6{bottom:896.190699pt;}
.y21f{bottom:896.448036pt;}
.y3a{bottom:899.866667pt;}
.y98{bottom:899.866699pt;}
.y179{bottom:901.386698pt;}
.y11d{bottom:905.144032pt;}
.y3{bottom:911.244000pt;}
.ye3{bottom:913.333363pt;}
.y72{bottom:913.333368pt;}
.y1a0{bottom:913.857366pt;}
.y263{bottom:914.525369pt;}
.y21e{bottom:916.381369pt;}
.y39{bottom:917.200000pt;}
.y97{bottom:917.200033pt;}
.y178{bottom:920.320030pt;}
.ycc{bottom:932.000029pt;}
.y38{bottom:934.533333pt;}
.y96{bottom:934.533366pt;}
.y21c{bottom:936.314702pt;}
.y71{bottom:940.189365pt;}
.y177{bottom:940.253363pt;}
.y2{bottom:943.294667pt;}
.y262{bottom:949.381367pt;}
.y37{bottom:951.866667pt;}
.y95{bottom:951.866699pt;}
.ycb{bottom:958.856032pt;}
.y175{bottom:961.186696pt;}
.y70{bottom:967.045368pt;}
.y36{bottom:969.200000pt;}
.y94{bottom:969.200033pt;}
.y261{bottom:976.237367pt;}
.y21b{bottom:977.937368pt;}
.y19f{bottom:979.658698pt;}
.y172{bottom:981.482698pt;}
.yca{bottom:985.712030pt;}
.y35{bottom:986.533333pt;}
.y93{bottom:986.533366pt;}
.y1{bottom:994.664000pt;}
.y19e{bottom:995.934699pt;}
.y21a{bottom:996.654701pt;}
.y171{bottom:999.029364pt;}
.y34{bottom:1003.866667pt;}
.y92{bottom:1003.866699pt;}
.y6f{bottom:1012.568033pt;}
.y174{bottom:1013.838699pt;}
.y260{bottom:1014.026699pt;}
.y219{bottom:1015.372035pt;}
.y33{bottom:1021.200000pt;}
.y91{bottom:1021.200033pt;}
.y32{bottom:1038.533333pt;}
.y90{bottom:1038.533366pt;}
.y6e{bottom:1047.894667pt;}
.y31{bottom:1055.866667pt;}
.y8f{bottom:1055.866699pt;}
.y6d{bottom:1063.894667pt;}
.y6c{bottom:1079.894667pt;}
.h21{height:15.866666pt;}
.h24{height:16.533333pt;}
.h22{height:17.866666pt;}
.h19{height:19.666667pt;}
.h28{height:20.666667pt;}
.h10{height:21.600001pt;}
.h16{height:22.266668pt;}
.h23{height:26.833333pt;}
.h20{height:27.179688pt;}
.hb{height:27.307292pt;}
.h26{height:28.709333pt;}
.h1a{height:31.208333pt;}
.h25{height:31.666667pt;}
.h27{height:32.719666pt;}
.he{height:33.650667pt;}
.h1d{height:33.679688pt;}
.h4{height:35.062500pt;}
.h6{height:35.109375pt;}
.h14{height:35.218666pt;}
.h18{height:35.625000pt;}
.h1e{height:36.997129pt;}
.h29{height:37.500000pt;}
.h5{height:37.950250pt;}
.h2b{height:38.177083pt;}
.h8{height:38.828125pt;}
.hf{height:39.010417pt;}
.h11{height:39.583333pt;}
.h2c{height:40.734375pt;}
.h2{height:41.250000pt;}
.h2a{height:41.516769pt;}
.h3{height:41.516771pt;}
.h13{height:41.516772pt;}
.h15{height:41.516775pt;}
.h12{height:41.889168pt;}
.h9{height:42.911458pt;}
.hd{height:43.343750pt;}
.hc{height:45.083252pt;}
.ha{height:45.083293pt;}
.h17{height:46.610667pt;}
.h7{height:55.625000pt;}
.h1f{height:89.599996pt;}
.h1b{height:793.733317pt;}
.h1c{height:794.000000pt;}
.h0{height:1122.533366pt;}
.h1{height:1122.666667pt;}
.w2{width:7.824000pt;}
.w1c{width:29.533333pt;}
.w1f{width:29.800001pt;}
.w1d{width:30.466667pt;}
.w1e{width:32.933334pt;}
.w25{width:33.533333pt;}
.w7{width:38.199999pt;}
.w8{width:39.533333pt;}
.wa{width:42.266668pt;}
.w19{width:45.399999pt;}
.w9{width:49.066666pt;}
.w1a{width:51.333333pt;}
.we{width:51.399999pt;}
.wd{width:57.466665pt;}
.wf{width:63.600001pt;}
.wc{width:66.399999pt;}
.w11{width:67.333333pt;}
.wb{width:76.266668pt;}
.w12{width:85.400004pt;}
.w21{width:86.133331pt;}
.w22{width:90.866669pt;}
.w23{width:96.933329pt;}
.w10{width:99.133331pt;}
.w20{width:103.866669pt;}
.w26{width:105.533335pt;}
.w27{width:106.000000pt;}
.w24{width:107.733337pt;}
.w18{width:107.933329pt;}
.w2c{width:113.799998pt;}
.w4{width:115.866669pt;}
.w5{width:116.466665pt;}
.w17{width:119.799998pt;}
.w2a{width:126.400004pt;}
.w28{width:130.799998pt;}
.w16{width:132.000000pt;}
.w13{width:132.666667pt;}
.w6{width:136.599996pt;}
.w1b{width:136.799998pt;}
.w29{width:138.466665pt;}
.w3{width:176.000000pt;}
.w2b{width:218.400004pt;}
.w0{width:793.733317pt;}
.w1{width:794.000000pt;}
.w14{width:1122.533366pt;}
.w15{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:5.333333pt;}
.x72{left:7.037333pt;}
.x1d{left:7.946667pt;}
.x19{left:8.962667pt;}
.x22{left:9.929333pt;}
.x1b{left:10.996000pt;}
.x33{left:12.038666pt;}
.x1f{left:13.008000pt;}
.xe{left:14.708000pt;}
.x26{left:15.762667pt;}
.x16{left:16.741333pt;}
.x20{left:17.725333pt;}
.x11{left:18.816001pt;}
.x28{left:20.837334pt;}
.x1a{left:22.492001pt;}
.x31{left:23.862667pt;}
.x23{left:25.087999pt;}
.x1e{left:26.313333pt;}
.x1c{left:27.996000pt;}
.x2f{left:29.021334pt;}
.xa{left:30.429334pt;}
.x2e{left:32.061333pt;}
.x18{left:33.273333pt;}
.x68{left:35.898666pt;}
.x3e{left:37.202667pt;}
.x30{left:38.927999pt;}
.x3f{left:40.244001pt;}
.x3{left:41.477333pt;}
.x69{left:44.410667pt;}
.x2d{left:46.525332pt;}
.x32{left:47.729335pt;}
.x6c{left:48.926666pt;}
.x67{left:50.243998pt;}
.x6e{left:52.741333pt;}
.x35{left:53.835999pt;}
.x8{left:66.000000pt;}
.x2c{left:69.666667pt;}
.x1{left:72.000000pt;}
.x3c{left:86.933336pt;}
.x70{left:88.533335pt;}
.x65{left:91.499998pt;}
.x6{left:94.533335pt;}
.x4{left:96.000000pt;}
.x40{left:118.433339pt;}
.x41{left:145.633341pt;}
.x42{left:173.766673pt;}
.x66{left:194.366667pt;}
.x21{left:199.666667pt;}
.x43{left:201.900004pt;}
.x3d{left:221.066667pt;}
.x44{left:230.033346pt;}
.xd{left:239.333333pt;}
.x45{left:258.166667pt;}
.x24{left:263.400004pt;}
.x46{left:286.300008pt;}
.x64{left:297.699990pt;}
.x71{left:304.266673pt;}
.x47{left:316.900004pt;}
.x25{left:318.199992pt;}
.x60{left:328.566669pt;}
.x48{left:345.033346pt;}
.x34{left:355.199998pt;}
.x9{left:373.266663pt;}
.x49{left:401.299988pt;}
.xf{left:408.800008pt;}
.x61{left:412.033323pt;}
.x6a{left:415.399994pt;}
.x27{left:421.733317pt;}
.x4a{left:429.433329pt;}
.x10{left:445.666667pt;}
.x4b{left:457.566671pt;}
.x29{left:482.666667pt;}
.x36{left:484.533352pt;}
.xb{left:486.466675pt;}
.x12{left:492.066650pt;}
.x62{left:500.233315pt;}
.x4c{left:513.833354pt;}
.x13{left:527.600016pt;}
.x4d{left:541.966654pt;}
.x6b{left:543.533335pt;}
.x14{left:564.466675pt;}
.x4e{left:570.099996pt;}
.x2a{left:579.133341pt;}
.x63{left:594.499998pt;}
.x4f{left:598.233337pt;}
.xc{left:600.266683pt;}
.x15{left:610.866659pt;}
.x37{left:613.866685pt;}
.x50{left:626.366679pt;}
.x2b{left:643.800008pt;}
.x17{left:650.466675pt;}
.x51{left:654.500020pt;}
.x6d{left:679.333344pt;}
.x52{left:682.633321pt;}
.x5{left:691.909294pt;}
.x53{left:710.766703pt;}
.x7{left:714.442659pt;}
.x38{left:730.999986pt;}
.x54{left:738.900004pt;}
.x55{left:767.033305pt;}
.x56{left:795.166687pt;}
.x6f{left:803.066701pt;}
.x57{left:823.299988pt;}
.x39{left:836.266669pt;}
.x58{left:851.433370pt;}
.x3a{left:878.999986pt;}
.x59{left:907.699972pt;}
.x5a{left:935.833354pt;}
.x5b{left:963.966654pt;}
.x3b{left:984.266669pt;}
.x5c{left:992.100037pt;}
.x5d{left:1020.233337pt;}
.x5e{left:1048.366638pt;}
.x5f{left:1076.500020pt;}
}




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