
    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_ab8d1ee07a9882f9722f8e39.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_1854f07323c1621407b49029.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_cd33b464d5089a54533e5660.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_7c8043cb69bc1782b4a1aad5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_b58c234f5b14c769bdb4d5f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b264b7ca71a2d0e6ae53b79d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5983c318450b6c85837db109.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_032441600c103d2739a1436a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.863770;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_bc3644a52b9c03bdc9d6544b.woff2')format("woff");}.ff9{font-family:ff9;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;}
.mf{transform:matrix(0.161081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161081,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.163587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163587,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.165764,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165764,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165764,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.169568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169568,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.169948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169948,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.221898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221898,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.223923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223923,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.224436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224436,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.225191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225191,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.226774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226774,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.228496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228496,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.230692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230692,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.233144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233144,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.233153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233153,0.000000,0.000000,0.250000,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);}
.m4{transform:matrix(0.271919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271919,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.276834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276834,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.278487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.278487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.278487,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.279917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.279917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.279917,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240418px;}
.v2{vertical-align:30.959883px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.358830px;}
.ls1{letter-spacing:0.358834px;}
.ls3{letter-spacing:0.358902px;}
.ls4{letter-spacing:0.950398px;}
.ls5{letter-spacing:4.466871px;}
.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;}
}
.ws2{word-spacing:-79.203150px;}
.ws8d{word-spacing:-27.719884px;}
.ws1{word-spacing:-23.760900px;}
.ws8e{word-spacing:-23.759953px;}
.ws6{word-spacing:-19.800788px;}
.ws4{word-spacing:-15.840563px;}
.ws33{word-spacing:-14.644696px;}
.ws5{word-spacing:-13.860563px;}
.ws32{word-spacing:-12.692181px;}
.ws2f{word-spacing:-11.715756px;}
.ws1f{word-spacing:-10.089026px;}
.ws71{word-spacing:-8.949777px;}
.ws51{word-spacing:-8.461565px;}
.ws8{word-spacing:-8.136315px;}
.ws74{word-spacing:-7.973585px;}
.ws6f{word-spacing:-7.810726px;}
.ws4e{word-spacing:-7.322514px;}
.ws53{word-spacing:-7.159555px;}
.ws35{word-spacing:-6.834302px;}
.ws6c{word-spacing:-2.756112px;}
.ws3{word-spacing:0.000000px;}
.ws0{word-spacing:0.665305px;}
.ws64{word-spacing:1.457255px;}
.ws40{word-spacing:2.298261px;}
.ws45{word-spacing:3.004355px;}
.ws39{word-spacing:5.654932px;}
.wsf{word-spacing:5.976232px;}
.wsd{word-spacing:6.012233px;}
.ws65{word-spacing:6.480443px;}
.ws6a{word-spacing:6.795166px;}
.ws4a{word-spacing:7.118994px;}
.ws48{word-spacing:7.832231px;}
.ws67{word-spacing:8.141618px;}
.ws75{word-spacing:8.714493px;}
.ws13{word-spacing:8.856343px;}
.ws55{word-spacing:9.662231px;}
.ws2c{word-spacing:10.160568px;}
.ws15{word-spacing:10.620412px;}
.ws5f{word-spacing:11.309562px;}
.ws41{word-spacing:11.415041px;}
.wsa{word-spacing:11.772456px;}
.ws80{word-spacing:12.207347px;}
.ws63{word-spacing:12.259946px;}
.ws57{word-spacing:12.640099px;}
.ws47{word-spacing:12.912598px;}
.ws7b{word-spacing:13.319235px;}
.ws54{word-spacing:13.400406px;}
.ws4d{word-spacing:13.456923px;}
.ws6d{word-spacing:13.482320px;}
.ws7d{word-spacing:13.485008px;}
.ws52{word-spacing:13.590482px;}
.ws7f{word-spacing:14.712323px;}
.ws30{word-spacing:15.569357px;}
.ws31{word-spacing:15.862927px;}
.ws11{word-spacing:16.020621px;}
.ws16{word-spacing:16.630179px;}
.ws68{word-spacing:16.993439px;}
.ws62{word-spacing:17.265298px;}
.wse{word-spacing:17.602134px;}
.ws61{word-spacing:17.835528px;}
.ws5e{word-spacing:17.962246px;}
.ws59{word-spacing:19.218521px;}
.wsc{word-spacing:20.304744px;}
.ws73{word-spacing:20.356939px;}
.ws7e{word-spacing:20.357079px;}
.ws3b{word-spacing:20.642144px;}
.ws7a{word-spacing:21.062966px;}
.wsb{word-spacing:21.096817px;}
.ws6b{word-spacing:21.130191px;}
.ws38{word-spacing:21.319394px;}
.ws44{word-spacing:21.417123px;}
.ws5b{word-spacing:21.510344px;}
.ws3e{word-spacing:22.891889px;}
.ws58{word-spacing:22.967599px;}
.ws43{word-spacing:24.071260px;}
.ws3d{word-spacing:24.373662px;}
.ws9{word-spacing:25.308981px;}
.ws6e{word-spacing:25.755390px;}
.ws79{word-spacing:26.608437px;}
.ws69{word-spacing:26.800812px;}
.ws76{word-spacing:27.719154px;}
.ws36{word-spacing:29.423788px;}
.ws72{word-spacing:29.727549px;}
.ws3c{word-spacing:31.601088px;}
.ws3f{word-spacing:32.148493px;}
.ws60{word-spacing:32.598150px;}
.ws37{word-spacing:33.717908px;}
.ws66{word-spacing:33.909921px;}
.ws3a{word-spacing:34.740622px;}
.ws14{word-spacing:37.261444px;}
.ws78{word-spacing:37.504075px;}
.ws4c{word-spacing:38.029419px;}
.ws49{word-spacing:38.038611px;}
.ws5d{word-spacing:40.080511px;}
.ws5a{word-spacing:41.088242px;}
.ws5c{word-spacing:42.925650px;}
.ws12{word-spacing:44.893740px;}
.ws2d{word-spacing:45.371945px;}
.ws42{word-spacing:45.915526px;}
.ws7c{word-spacing:47.523978px;}
.ws2e{word-spacing:49.092130px;}
.ws56{word-spacing:51.859254px;}
.ws46{word-spacing:53.849710px;}
.ws7{word-spacing:55.622155px;}
.ws10{word-spacing:57.494228px;}
.ws34{word-spacing:73.393149px;}
.ws4b{word-spacing:77.984272px;}
.ws77{word-spacing:98.964187px;}
.ws84{word-spacing:296.373129px;}
.ws86{word-spacing:296.831067px;}
.ws50{word-spacing:298.026795px;}
.ws4f{word-spacing:298.775606px;}
.ws17{word-spacing:298.980976px;}
.ws1a{word-spacing:299.600953px;}
.ws87{word-spacing:305.013188px;}
.ws89{word-spacing:305.471125px;}
.ws1c{word-spacing:308.241012px;}
.ws70{word-spacing:316.806260px;}
.ws85{word-spacing:327.322093px;}
.ws19{word-spacing:331.056075px;}
.ws88{word-spacing:335.962152px;}
.ws18{word-spacing:358.919348px;}
.ws81{word-spacing:734.853138px;}
.ws83{word-spacing:735.311076px;}
.ws20{word-spacing:741.780949px;}
.ws22{word-spacing:742.400926px;}
.ws23{word-spacing:750.421007px;}
.ws25{word-spacing:751.040985px;}
.ws82{word-spacing:765.802102px;}
.ws21{word-spacing:773.856048px;}
.ws24{word-spacing:782.496106px;}
.ws8a{word-spacing:1173.333147px;}
.ws8c{word-spacing:1173.791085px;}
.ws26{word-spacing:1184.580922px;}
.ws28{word-spacing:1185.200899px;}
.ws8b{word-spacing:1204.282111px;}
.ws27{word-spacing:1216.656021px;}
.ws1b{word-spacing:1244.610875px;}
.ws1e{word-spacing:1253.092800px;}
.ws1d{word-spacing:1265.592479px;}
.ws29{word-spacing:1636.021088px;}
.ws2b{word-spacing:1636.641066px;}
.ws2a{word-spacing:1668.096187px;}
._1d{margin-left:-24.467030px;}
._1a{margin-left:-22.783541px;}
._16{margin-left:-19.239439px;}
._7{margin-left:-12.545755px;}
._9{margin-left:-10.644883px;}
._6{margin-left:-8.648968px;}
._8{margin-left:-7.223314px;}
._c{margin-left:-5.811396px;}
._4{margin-left:-4.676164px;}
._10{margin-left:-3.354928px;}
._3{margin-left:-1.900872px;}
._0{width:1.064507px;}
._2{width:2.090959px;}
._1{width:3.231482px;}
._5{width:4.372006px;}
._a{width:5.957303px;}
._b{width:7.490995px;}
._f{width:8.538702px;}
._15{width:9.548146px;}
._14{width:10.557388px;}
._12{width:11.997027px;}
._d{width:13.287077px;}
._e{width:15.187949px;}
._13{width:16.392528px;}
._19{width:17.963240px;}
._22{width:19.795539px;}
._1e{width:21.981135px;}
._29{width:23.068635px;}
._2a{width:25.280263px;}
._21{width:27.450770px;}
._2d{width:29.260393px;}
._20{width:30.321818px;}
._1f{width:32.171325px;}
._2e{width:34.227031px;}
._38{width:35.693304px;}
._2c{width:38.195912px;}
._1b{width:39.627750px;}
._2f{width:40.900186px;}
._1c{width:45.045235px;}
._33{width:48.722578px;}
._37{width:49.922086px;}
._39{width:56.776752px;}
._2b{width:64.609348px;}
._3b{width:202.368545px;}
._24{width:205.298646px;}
._3c{width:211.008603px;}
._3e{width:260.931440px;}
._32{width:313.181623px;}
._31{width:318.273538px;}
._30{width:325.387243px;}
._34{width:333.834665px;}
._36{width:336.923492px;}
._35{width:344.447641px;}
._3a{width:640.848554px;}
._25{width:648.098619px;}
._26{width:656.738678px;}
._23{width:812.837744px;}
._3f{width:863.516926px;}
._41{width:908.670808px;}
._3d{width:1079.328563px;}
._27{width:1090.898592px;}
._40{width:1354.312740px;}
._28{width:1542.338759px;}
._18{width:1663.871951px;}
._17{width:1666.031861px;}
._11{width:1695.551852px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:30.240276px;}
.fsf{font-size:31.679446px;}
.fsd{font-size:32.400506px;}
.fs10{font-size:34.560737px;}
.fs12{font-size:35.281350px;}
.fs6{font-size:36.001395px;}
.fse{font-size:37.440552px;}
.fs13{font-size:38.161485px;}
.fs7{font-size:38.881485px;}
.fs11{font-size:39.600783px;}
.fs8{font-size:44.641710px;}
.fs9{font-size:51.839630px;}
.fs5{font-size:55.442250px;}
.fsa{font-size:56.160091px;}
.fs1{font-size:63.362250px;}
.fsb{font-size:64.799538px;}
.fs0{font-size:71.282700px;}
.fs3{font-size:79.203150px;}
.fs4{font-size:95.039814px;}
.fs2{font-size:95.043600px;}
.fs14{font-size:110.879537px;}
.y0{bottom:0.000000px;}
.yee{bottom:1.979508px;}
.yf3{bottom:1.979553px;}
.ye6{bottom:1.981851px;}
.yeb{bottom:1.984149px;}
.y13b{bottom:2.155901px;}
.y145{bottom:2.155948px;}
.y138{bottom:2.158355px;}
.y141{bottom:2.160763px;}
.y17e{bottom:2.160810px;}
.y13e{bottom:2.163170px;}
.y189{bottom:2.339951px;}
.y186{bottom:2.339984px;}
.y183{bottom:2.339985px;}
.y81{bottom:2.340019px;}
.yc3{bottom:3.423474px;}
.y1{bottom:37.980011px;}
.y2{bottom:41.040115px;}
.y51{bottom:97.920043px;}
.y5d{bottom:100.080093px;}
.ybd{bottom:106.740005px;}
.y5e{bottom:121.320099px;}
.y206{bottom:121.324785px;}
.y70{bottom:121.680039px;}
.y77{bottom:121.860077px;}
.y50{bottom:126.360077px;}
.yb1{bottom:140.940033px;}
.y6f{bottom:145.440033px;}
.y3d{bottom:149.940033px;}
.y1ee{bottom:149.944348px;}
.y4f{bottom:150.120072px;}
.y1f{bottom:150.300041px;}
.ye3{bottom:153.000068px;}
.yb0{bottom:155.880066px;}
.y177{bottom:156.576664px;}
.y176{bottom:156.578885px;}
.yb2{bottom:164.880066px;}
.y174{bottom:169.715381px;}
.y175{bottom:169.719319px;}
.yaf{bottom:170.820099px;}
.y17f{bottom:172.460989px;}
.y6e{bottom:173.520058px;}
.y3c{bottom:178.380066px;}
.y4a{bottom:178.560036px;}
.y1ed{bottom:178.563911px;}
.y1e{bottom:178.920043px;}
.y17d{bottom:180.917859px;}
.y173{bottom:183.037233px;}
.y172{bottom:183.038922px;}
.y5c{bottom:185.580093px;}
.yae{bottom:185.940033px;}
.y12c{bottom:190.962967px;}
.y12d{bottom:190.965948px;}
.y170{bottom:196.175418px;}
.y171{bottom:196.176819px;}
.y6d{bottom:197.280052px;}
.y1ea{bottom:199.800041px;}
.y1a8{bottom:201.600083px;}
.yad{bottom:203.040047px;}
.y12a{bottom:203.562541px;}
.y12b{bottom:203.565959px;}
.y1cd{bottom:204.660049px;}
.y49{bottom:207.000068px;}
.y1ec{bottom:207.002129px;}
.y75{bottom:207.360077px;}
.y135{bottom:210.948902px;}
.y16e{bottom:211.476541px;}
.y16f{bottom:211.476753px;}
.y128{bottom:215.981738px;}
.y129{bottom:215.983088px;}
.y1a7{bottom:216.360077px;}
.yac{bottom:217.980079px;}
.y16c{bottom:224.797610px;}
.y16d{bottom:224.800686px;}
.y1ab{bottom:225.360077px;}
.yb7{bottom:226.980079px;}
.y126{bottom:228.405764px;}
.y127{bottom:228.406019px;}
.y1a6{bottom:231.300041px;}
.y17c{bottom:232.756622px;}
.yab{bottom:232.920043px;}
.y1cc{bottom:233.280052px;}
.y3b{bottom:235.440033px;}
.y48{bottom:235.620072px;}
.y205{bottom:235.621693px;}
.y74{bottom:235.980079px;}
.y16a{bottom:237.939256px;}
.y16b{bottom:237.940273px;}
.y125{bottom:242.802716px;}
.y124{bottom:242.804945px;}
.y1a5{bottom:246.060036px;}
.yaa{bottom:247.860077px;}
.y6c{bottom:249.120072px;}
.y168{bottom:251.257647px;}
.y169{bottom:251.261255px;}
.y122{bottom:255.224143px;}
.y123{bottom:255.225535px;}
.y1e9{bottom:256.860077px;}
.y1cb{bottom:261.720085px;}
.y134{bottom:262.610587px;}
.y1a4{bottom:262.980079px;}
.y20e{bottom:264.059982px;}
.y3a{bottom:264.060036px;}
.y1eb{bottom:264.074280px;}
.y1d{bottom:264.420043px;}
.ya9{bottom:265.140060px;}
.y166{bottom:266.558770px;}
.y167{bottom:266.561071px;}
.y121{bottom:267.642664px;}
.y120{bottom:267.643244px;}
.y5b{bottom:271.260064px;}
.y1a3{bottom:277.920043px;}
.y164{bottom:279.700519px;}
.y165{bottom:279.700717px;}
.y11e{bottom:280.062345px;}
.y11f{bottom:280.065595px;}
.ya8{bottom:280.080093px;}
.y1e8{bottom:285.300041px;}
.y1aa{bottom:286.740074px;}
.y17b{bottom:287.836552px;}
.yb6{bottom:289.080093px;}
.y1ca{bottom:290.340088px;}
.y39{bottom:292.500068px;}
.y47{bottom:292.680039px;}
.y163{bottom:293.018572px;}
.y162{bottom:293.018808px;}
.y1c{bottom:293.040047px;}
.y11c{bottom:294.464037px;}
.y11d{bottom:294.467983px;}
.ya7{bottom:295.020058px;}
.y160{bottom:306.337199px;}
.y161{bottom:306.342505px;}
.y11a{bottom:306.883138px;}
.y11b{bottom:306.885112px;}
.y1a2{bottom:307.440033px;}
.ya6{bottom:309.960091px;}
.y1e7{bottom:313.920043px;}
.y133{bottom:314.452248px;}
.y1c9{bottom:318.780052px;}
.y118{bottom:319.307260px;}
.y119{bottom:319.307931px;}
.y38{bottom:321.120072px;}
.y204{bottom:321.125056px;}
.y15e{bottom:321.459104px;}
.y15f{bottom:321.461102px;}
.y73{bottom:321.480079px;}
.y1a1{bottom:324.360077px;}
.ya5{bottom:327.240074px;}
.y117{bottom:331.725116px;}
.y116{bottom:331.726361px;}
.y15d{bottom:334.779016px;}
.y15c{bottom:334.782749px;}
.y1a0{bottom:339.300041px;}
.ya4{bottom:342.180039px;}
.y1e6{bottom:342.360077px;}
.y180{bottom:342.737571px;}
.y115{bottom:346.124658px;}
.y114{bottom:346.125543px;}
.y1c8{bottom:347.400055px;}
.y15a{bottom:348.101037px;}
.y15b{bottom:348.102949px;}
.y1ae{bottom:348.120072px;}
.y46{bottom:349.740074px;}
.y203{bottom:349.744620px;}
.y1b{bottom:350.100083px;}
.yb5{bottom:351.180039px;}
.y19f{bottom:354.060036px;}
.ya3{bottom:357.120072px;}
.y112{bottom:358.544740px;}
.y113{bottom:358.547534px;}
.y159{bottom:361.242594px;}
.y158{bottom:361.242786px;}
.y132{bottom:366.111589px;}
.y19e{bottom:368.820099px;}
.y1e5{bottom:370.080093px;}
.y110{bottom:370.963841px;}
.y111{bottom:370.964718px;}
.ya2{bottom:372.060036px;}
.y1c7{bottom:375.840088px;}
.y156{bottom:376.538656px;}
.y157{bottom:376.542411px;}
.y37{bottom:378.180039px;}
.y202{bottom:378.182909px;}
.y1a{bottom:378.540047px;}
.y10e{bottom:383.565925px;}
.y10f{bottom:383.567519px;}
.y5a{bottom:385.380066px;}
.y19d{bottom:385.920043px;}
.y6b{bottom:388.620072px;}
.ya1{bottom:389.340088px;}
.y154{bottom:389.862300px;}
.y155{bottom:389.863334px;}
.y10c{bottom:397.787145px;}
.y10d{bottom:397.789981px;}
.y1e4{bottom:397.800041px;}
.y179{bottom:397.817407px;}
.y19c{bottom:400.680039px;}
.y152{bottom:403.001371px;}
.y153{bottom:403.002979px;}
.ya0{bottom:404.280052px;}
.y1c6{bottom:404.460091px;}
.y36{bottom:406.620072px;}
.y45{bottom:406.800041px;}
.y19{bottom:407.160049px;}
.y1ad{bottom:409.500068px;}
.y10a{bottom:410.206246px;}
.y10b{bottom:410.207110px;}
.yb4{bottom:413.280052px;}
.y59{bottom:413.820099px;}
.y6a{bottom:414.360077px;}
.y19b{bottom:415.440033px;}
.y151{bottom:416.320893px;}
.y150{bottom:416.322337px;}
.y131{bottom:417.773364px;}
.y9f{bottom:419.220085px;}
.y109{bottom:422.807065px;}
.y108{bottom:422.808330px;}
.y1e3{bottom:425.700096px;}
.y19a{bottom:430.200096px;}
.y14f{bottom:431.620710px;}
.y14e{bottom:431.620937px;}
.y1c5{bottom:432.900055px;}
.y9e{bottom:434.160049px;}
.y106{bottom:435.227431px;}
.y107{bottom:435.229941px;}
.y35{bottom:435.240074px;}
.y201{bottom:435.240690px;}
.y18{bottom:435.600083px;}
.y14c{bottom:444.762634px;}
.y14d{bottom:444.766433px;}
.y199{bottom:447.300041px;}
.y104{bottom:449.446237px;}
.y105{bottom:449.449558px;}
.y9d{bottom:451.440033px;}
.y178{bottom:452.713611px;}
.y1e2{bottom:453.420043px;}
.y14a{bottom:458.080974px;}
.y14b{bottom:458.084288px;}
.y1c4{bottom:461.520058px;}
.y102{bottom:462.048272px;}
.y103{bottom:462.049513px;}
.y198{bottom:462.060036px;}
.y34{bottom:463.680039px;}
.y4e{bottom:463.860077px;}
.y200{bottom:463.860253px;}
.y17{bottom:464.220085px;}
.y69{bottom:465.840088px;}
.y9c{bottom:466.380066px;}
.y12f{bottom:469.435049px;}
.y1ac{bottom:470.880066px;}
.y149{bottom:471.220924px;}
.y148{bottom:471.222671px;}
.y101{bottom:474.466642px;}
.y100{bottom:474.467422px;}
.yb3{bottom:475.380066px;}
.y197{bottom:476.820099px;}
.y1e1{bottom:481.140060px;}
.y9b{bottom:481.320099px;}
.y146{bottom:486.014320px;}
.yfe{bottom:486.889033px;}
.yff{bottom:486.889517px;}
.y68{bottom:491.580093px;}
.y33{bottom:492.300041px;}
.y20d{bottom:492.305765px;}
.y16{bottom:492.660049px;}
.y144{bottom:494.294781px;}
.y9a{bottom:496.260064px;}
.y147{bottom:496.450729px;}
.yfc{bottom:501.285704px;}
.yfd{bottom:501.289059px;}
.y143{bottom:504.912461px;}
.y142{bottom:507.075631px;}
.y196{bottom:508.680039px;}
.y1e0{bottom:508.860077px;}
.y99{bottom:513.540047px;}
.yfb{bottom:513.709089px;}
.yfa{bottom:513.709826px;}
.y140{bottom:515.532549px;}
.y67{bottom:517.320099px;}
.y13f{bottom:517.693312px;}
.y1c3{bottom:518.580093px;}
.y32{bottom:520.740074px;}
.y44{bottom:520.920043px;}
.y1ff{bottom:520.925328px;}
.y12e{bottom:521.092137px;}
.y15{bottom:521.280052px;}
.y195{bottom:523.440033px;}
.yf8{bottom:526.128927px;}
.yf9{bottom:526.129119px;}
.y13d{bottom:526.150182px;}
.y13c{bottom:528.313352px;}
.y98{bottom:528.480079px;}
.ydd{bottom:532.257285px;}
.y1b0{bottom:532.260064px;}
.yde{bottom:532.263660px;}
.y1df{bottom:536.580093px;}
.y13a{bottom:536.775132px;}
.ybc{bottom:537.480079px;}
.y194{bottom:538.200096px;}
.yf6{bottom:538.548077px;}
.yf7{bottom:538.549094px;}
.y139{bottom:538.931032px;}
.y66{bottom:543.060036px;}
.y97{bottom:543.420043px;}
.y1c2{bottom:547.020058px;}
.y137{bottom:547.392765px;}
.y43{bottom:549.360077px;}
.y1fe{bottom:549.362130px;}
.y136{bottom:549.551120px;}
.y14{bottom:549.720085px;}
.y193{bottom:552.960091px;}
.ydb{bottom:553.680660px;}
.ydc{bottom:553.685238px;}
.y96{bottom:558.360077px;}
.y1de{bottom:564.300041px;}
.ye1{bottom:566.644960px;}
.y65{bottom:568.800041px;}
.y192{bottom:570.060036px;}
.yf4{bottom:570.232089px;}
.yf5{bottom:572.216238px;}
.y17a{bottom:572.748701px;}
.yd9{bottom:575.284000px;}
.yda{bottom:575.284726px;}
.y95{bottom:575.640060px;}
.y31{bottom:577.800041px;}
.y42{bottom:577.980079px;}
.y1fd{bottom:577.983180px;}
.y13{bottom:578.340088px;}
.yf2{bottom:580.314335px;}
.yf1{bottom:582.293887px;}
.y191{bottom:584.820099px;}
.yf0{bottom:590.214351px;}
.y94{bottom:590.580093px;}
.y1dd{bottom:592.020058px;}
.yef{bottom:592.193859px;}
.y1af{bottom:593.820099px;}
.y64{bottom:594.540047px;}
.yd7{bottom:596.878762px;}
.yd8{bottom:596.879290px;}
.ybb{bottom:599.580093px;}
.yed{bottom:600.114323px;}
.yec{bottom:602.093831px;}
.y1c1{bottom:604.080093px;}
.y93{bottom:605.520058px;}
.y1fc{bottom:606.418495px;}
.y30{bottom:606.420043px;}
.y12{bottom:606.780052px;}
.yea{bottom:610.191927px;}
.ye9{bottom:612.176076px;}
.y58{bottom:613.440033px;}
.y190{bottom:614.520058px;}
.y1dc{bottom:619.920043px;}
.ye8{bottom:620.094242px;}
.y63{bottom:620.280052px;}
.y92{bottom:620.460091px;}
.yd5{bottom:621.537066px;}
.yd6{bottom:621.543989px;}
.ye7{bottom:622.076093px;}
.ye5{bottom:629.994214px;}
.y18e{bottom:630.720085px;}
.ye4{bottom:631.976065px;}
.y1c0{bottom:632.700096px;}
.y2f{bottom:634.860077px;}
.y20c{bottom:635.039546px;}
.y4d{bottom:635.040047px;}
.y11{bottom:635.400055px;}
.y91{bottom:637.740074px;}
.y18d{bottom:640.260064px;}
.y57{bottom:641.160049px;}
.y18c{bottom:642.600083px;}
.yd3{bottom:643.136096px;}
.yd4{bottom:643.148450px;}
.y62{bottom:646.020058px;}
.y1db{bottom:647.640060px;}
.y18b{bottom:652.140060px;}
.y90{bottom:652.680039px;}
.y130{bottom:653.931215px;}
.y18f{bottom:654.480079px;}
.ye0{bottom:656.104213px;}
.y1bf{bottom:661.140060px;}
.yba{bottom:661.680039px;}
.y2e{bottom:663.480079px;}
.y1fb{bottom:663.486474px;}
.y10{bottom:663.840088px;}
.yd1{bottom:664.559471px;}
.yd2{bottom:664.569980px;}
.y18a{bottom:666.180039px;}
.y8f{bottom:667.620072px;}
.y56{bottom:669.060036px;}
.y61{bottom:671.760064px;}
.y1da{bottom:675.360077px;}
.y188{bottom:675.720085px;}
.y187{bottom:678.060036px;}
.y8e{bottom:682.560036px;}
.ycf{bottom:686.154233px;}
.yd0{bottom:686.164543px;}
.y185{bottom:687.600083px;}
.y1be{bottom:689.760064px;}
.y184{bottom:689.940067px;}
.y2d{bottom:691.920078px;}
.y1fa{bottom:692.095911px;}
.y41{bottom:692.100083px;}
.yf{bottom:692.460056px;}
.y55{bottom:696.780052px;}
.y60{bottom:697.500068px;}
.y182{bottom:699.480079px;}
.y8d{bottom:699.840054px;}
.y181{bottom:701.820065px;}
.y1d9{bottom:703.080059px;}
.ycd{bottom:711.001080px;}
.yce{bottom:711.002277px;}
.y8c{bottom:714.780052px;}
.y1bd{bottom:718.200061px;}
.y2c{bottom:720.540081px;}
.y1f9{bottom:720.542874px;}
.y72{bottom:720.900055px;}
.y5f{bottom:723.240074px;}
.yb9{bottom:723.780052px;}
.y54{bottom:724.500068px;}
.y1a9{bottom:727.560070px;}
.y8b{bottom:729.720051px;}
.y1d8{bottom:730.800076px;}
.ycb{bottom:732.415878px;}
.ycc{bottom:732.418882px;}
.y8a{bottom:744.660049px;}
.ydf{bottom:745.381549px;}
.y2b{bottom:748.978260px;}
.y40{bottom:749.160049px;}
.y20b{bottom:749.163889px;}
.y76{bottom:749.520058px;}
.y53{bottom:752.220051px;}
.yc9{bottom:754.019217px;}
.yca{bottom:754.023343px;}
.y1d7{bottom:758.520058px;}
.y89{bottom:761.040081px;}
.y88{bottom:770.760064px;}
.y87{bottom:773.100083px;}
.y1bc{bottom:775.260064px;}
.yc7{bottom:775.442592px;}
.yc8{bottom:775.443907px;}
.y1f8{bottom:777.599239px;}
.y2a{bottom:777.600083px;}
.ye{bottom:777.960056px;}
.y86{bottom:782.640060px;}
.y85{bottom:784.980079px;}
.y1d6{bottom:786.420078px;}
.y84{bottom:794.700061px;}
.y83{bottom:797.040081px;}
.y1bb{bottom:803.880066px;}
.y4c{bottom:806.220051px;}
.y1f7{bottom:806.220254px;}
.yd{bottom:806.580059px;}
.y82{bottom:808.920078px;}
.y1d5{bottom:813.960056px;}
.y80{bottom:818.640060px;}
.y7f{bottom:820.980079px;}
.yc6{bottom:833.583103px;}
.y1f6{bottom:834.655640px;}
.y4b{bottom:834.660049px;}
.yc{bottom:835.020058px;}
.y52{bottom:835.380066px;}
.y1d4{bottom:841.680073px;}
.yb8{bottom:847.080059px;}
.yc5{bottom:850.866672px;}
.y1ba{bottom:860.940067px;}
.y20a{bottom:863.276619px;}
.y29{bottom:863.280052px;}
.yb{bottom:863.640060px;}
.yc4{bottom:868.140778px;}
.y7e{bottom:877.140060px;}
.yc2{bottom:881.822083px;}
.yc1{bottom:885.245558px;}
.y1b9{bottom:889.380066px;}
.y28{bottom:891.720051px;}
.y1f5{bottom:891.723583px;}
.ya{bottom:892.080059px;}
.yc0{bottom:902.521208px;}
.y1b8{bottom:918.000068px;}
.ybf{bottom:919.803193px;}
.y3f{bottom:920.340054px;}
.y1f4{bottom:920.344597px;}
.y9{bottom:920.700061px;}
.y1d3{bottom:925.020058px;}
.y7d{bottom:934.200061px;}
.ybe{bottom:936.901678px;}
.y1b7{bottom:946.440067px;}
.y209{bottom:948.779983px;}
.y27{bottom:948.780053px;}
.y8{bottom:949.140060px;}
.y1d2{bottom:952.740074px;}
.y7c{bottom:962.640060px;}
.y1b6{bottom:975.060070px;}
.y26{bottom:977.400072px;}
.y1f3{bottom:977.400963px;}
.y71{bottom:977.760064px;}
.y1d1{bottom:980.460074px;}
.y7b{bottom:988.380066px;}
.y1b5{bottom:1003.500068px;}
.y208{bottom:1005.836349px;}
.y25{bottom:1005.840070px;}
.y7{bottom:1006.200061px;}
.y1d0{bottom:1008.180073px;}
.y7a{bottom:1014.300058px;}
.y1b4{bottom:1032.120072px;}
.y207{bottom:1034.457346px;}
.y3e{bottom:1034.460074px;}
.y6{bottom:1034.820065px;}
.y1cf{bottom:1035.900072px;}
.y79{bottom:1040.040064px;}
.y1b3{bottom:1060.560070px;}
.y24{bottom:1062.900072px;}
.y1f2{bottom:1062.904327px;}
.y5{bottom:1063.260064px;}
.y1ce{bottom:1063.800058px;}
.y78{bottom:1065.780069px;}
.y1b2{bottom:1089.180073px;}
.y23{bottom:1091.520058px;}
.y1f1{bottom:1091.525324px;}
.y20{bottom:1096.920061px;}
.y22{bottom:1119.960065px;}
.y1f0{bottom:1119.960692px;}
.y4{bottom:1120.320065px;}
.y1b1{bottom:1146.238182px;}
.y21{bottom:1148.580068px;}
.y1ef{bottom:1148.581698px;}
.y3{bottom:1148.940067px;}
.ye2{bottom:1151.640069px;}
.h1c{height:9.180114px;}
.h1a{height:9.180159px;}
.h1b{height:9.182457px;}
.h23{height:9.716139px;}
.h22{height:9.718547px;}
.h25{height:9.720954px;}
.h2a{height:9.721048px;}
.h24{height:9.723409px;}
.h2d{height:10.799972px;}
.h2c{height:10.799973px;}
.hf{height:10.980010px;}
.he{height:10.980011px;}
.h15{height:15.839164px;}
.h1f{height:20.731127px;}
.h19{height:20.952613px;}
.h28{height:21.717745px;}
.h21{height:21.949773px;}
.h1d{height:22.449374px;}
.h26{height:23.946135px;}
.h2e{height:24.187019px;}
.h2b{height:24.445428px;}
.h12{height:24.469698px;}
.h11{height:24.680644px;}
.hd{height:24.944326px;}
.h20{height:25.667254px;}
.h1e{height:25.941476px;}
.h29{height:27.148193px;}
.h27{height:27.438237px;}
.h13{height:30.603985px;}
.h10{height:30.930950px;}
.h18{height:35.538497px;}
.h14{height:35.918181px;}
.h16{height:38.911704px;}
.h17{height:44.897727px;}
.h9{height:55.302981px;}
.h3{height:55.596662px;}
.h2{height:57.534328px;}
.h32{height:64.411749px;}
.h7{height:64.414315px;}
.h8{height:65.992187px;}
.ha{height:67.837080px;}
.hc{height:69.496123px;}
.h5{height:70.346938px;}
.hb{height:83.391868px;}
.h6{height:83.395190px;}
.h30{height:84.115208px;}
.h2f{height:84.412803px;}
.h4{height:84.416166px;}
.h31{height:98.481385px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2d{width:4.140414px;}
.w24{width:5.402473px;}
.w43{width:6.839985px;}
.w5{width:7.019989px;}
.w4a{width:7.020057px;}
.w41{width:7.199089px;}
.w2b{width:7.199120px;}
.w3a{width:7.199151px;}
.w32{width:7.379359px;}
.w3b{width:7.561296px;}
.w34{width:8.639883px;}
.w1e{width:9.358427px;}
.w21{width:9.360528px;}
.w16{width:9.541867px;}
.w1f{width:11.159265px;}
.w15{width:11.340605px;}
.w2f{width:11.700103px;}
.w36{width:11.701679px;}
.w45{width:12.060002px;}
.w47{width:12.060036px;}
.w40{width:12.060673px;}
.wa{width:12.240006px;}
.w39{width:12.960597px;}
.w1d{width:13.497780px;}
.w19{width:13.502023px;}
.w3c{width:14.580116px;}
.w30{width:14.760323px;}
.w23{width:15.119379px;}
.w25{width:15.121521px;}
.w14{width:15.300719px;}
.w26{width:15.661298px;}
.w3d{width:16.379904px;}
.w4{width:16.560001px;}
.w1b{width:16.920217px;}
.w2c{width:17.279736px;}
.w28{width:17.279767px;}
.w35{width:17.460036px;}
.w33{width:17.819030px;}
.w2a{width:17.819061px;}
.w37{width:19.079493px;}
.wb{width:19.799972px;}
.wc{width:19.800042px;}
.w12{width:19.979933px;}
.w20{width:20.338412px;}
.w1c{width:20.340512px;}
.w31{width:22.139744px;}
.w3e{width:22.500406px;}
.w27{width:22.679068px;}
.w22{width:25.017625px;}
.w11{width:25.561686px;}
.w7{width:26.459988px;}
.w1a{width:27.902302px;}
.w3f{width:28.260246px;}
.w29{width:29.519164px;}
.w48{width:29.880033px;}
.w13{width:31.320538px;}
.wf{width:31.860009px;}
.w2e{width:32.220390px;}
.w49{width:38.880033px;}
.w18{width:39.422147px;}
.w9{width:40.679970px;}
.w8{width:40.680003px;}
.w2{width:42.120003px;}
.we{width:42.300042px;}
.wd{width:51.300042px;}
.w44{width:54.359974px;}
.w4b{width:54.360008px;}
.w3{width:54.719982px;}
.w6{width:54.899985px;}
.w38{width:62.459179px;}
.w10{width:72.181901px;}
.w17{width:82.081148px;}
.w42{width:87.300302px;}
.w46{width:105.299973px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.819996px;}
.x3e{left:125.459997px;}
.x32{left:127.980002px;}
.x30{left:131.040003px;}
.x10{left:140.939999px;}
.x5e{left:142.203339px;}
.x5d{left:145.800944px;}
.x5f{left:146.881940px;}
.x2f{left:148.860008px;}
.x8{left:152.099997px;}
.x35{left:154.979994px;}
.x31{left:157.139992px;}
.x33{left:158.759994px;}
.x36{left:162.360008px;}
.x17{left:174.060001px;}
.x19{left:176.039996px;}
.xa7{left:178.197838px;}
.x5b{left:180.723491px;}
.x8f{left:184.324176px;}
.x98{left:187.742934px;}
.x89{left:196.199993px;}
.x1b{left:199.979994px;}
.x92{left:201.603279px;}
.xa9{left:210.057484px;}
.x7{left:214.020006px;}
.x87{left:215.460005px;}
.x7a{left:217.981088px;}
.x88{left:221.400003px;}
.x12{left:224.638907px;}
.x90{left:231.661509px;}
.x7b{left:238.859859px;}
.x5{left:240.300007px;}
.x79{left:241.561504px;}
.x3{left:246.599997px;}
.x57{left:248.038158px;}
.x94{left:249.476083px;}
.x2e{left:251.460005px;}
.x77{left:256.502531px;}
.x37{left:257.939999px;}
.xc{left:261.900003px;}
.xa{left:263.699993px;}
.x1a{left:264.960005px;}
.x97{left:266.218040px;}
.x3d{left:270.900003px;}
.x9c{left:274.673905px;}
.x3c{left:281.881814px;}
.xa1{left:291.057135px;}
.x3f{left:292.316437px;}
.xac{left:293.937462px;}
.x9e{left:295.196726px;}
.x3b{left:297.361763px;}
.xb{left:300.420010px;}
.x76{left:307.629591px;}
.x1c{left:309.060001px;}
.x14{left:314.459988px;}
.x95{left:316.794940px;}
.x96{left:322.381962px;}
.x58{left:325.799427px;}
.x59{left:327.417839px;}
.xaa{left:333.359233px;}
.xe{left:338.040012px;}
.x8a{left:339.475718px;}
.x60{left:341.277280px;}
.x42{left:343.077047px;}
.x9a{left:344.696497px;}
.x9{left:347.399987px;}
.x40{left:348.835898px;}
.x41{left:354.417652px;}
.xf{left:357.480011px;}
.x43{left:359.096866px;}
.x1e{left:360.720017px;}
.x44{left:363.056979px;}
.x13{left:365.040012px;}
.xd{left:367.019989px;}
.x1d{left:373.319996px;}
.x9d{left:374.759465px;}
.x45{left:377.457300px;}
.x99{left:380.873765px;}
.x8c{left:382.321599px;}
.x86{left:385.019989px;}
.x61{left:386.456692px;}
.x11{left:389.160015px;}
.xa5{left:393.660054px;}
.x62{left:396.537339px;}
.x1f{left:398.879998px;}
.xa2{left:403.923438px;}
.x63{left:406.077116px;}
.x8b{left:409.500000px;}
.x7c{left:415.980011px;}
.xa8{left:417.602391px;}
.xa0{left:418.673302px;}
.x20{left:419.759994px;}
.x5c{left:421.733350px;}
.x49{left:431.636146px;}
.x66{left:436.315874px;}
.x46{left:444.237729px;}
.x48{left:446.036425px;}
.x47{left:449.996580px;}
.x64{left:451.256528px;}
.x67{left:456.836161px;}
.x7d{left:458.279983px;}
.x4a{left:462.598163px;}
.x65{left:464.395850px;}
.x3a{left:465.833772px;}
.x22{left:471.420010px;}
.x7e{left:474.480011px;}
.x34{left:481.860008px;}
.x24{left:485.639992px;}
.x9b{left:487.078927px;}
.x78{left:491.934968px;}
.x15{left:493.740006px;}
.x23{left:499.860008px;}
.xab{left:506.516202px;}
.x68{left:511.196326px;}
.x6a{left:515.517040px;}
.x21{left:519.300007px;}
.x1{left:524.879998px;}
.x69{left:525.956711px;}
.x4b{left:527.575653px;}
.x25{left:530.459988px;}
.x4d{left:533.336605px;}
.x4c{left:535.137443px;}
.x81{left:541.079990px;}
.xa3{left:545.399095px;}
.x4e{left:547.734825px;}
.x80{left:550.079990px;}
.x38{left:556.566733px;}
.x91{left:564.659645px;}
.x7f{left:567.899987px;}
.x6f{left:579.056413px;}
.x6c{left:580.675870px;}
.x82{left:584.100014px;}
.x6d{left:586.434227px;}
.x6b{left:589.496022px;}
.x6e{left:590.756547px;}
.x26{left:596.340019px;}
.x70{left:600.476563px;}
.x51{left:604.617008px;}
.x8d{left:605.695433px;}
.x16{left:608.039978px;}
.x4f{left:609.296221px;}
.x52{left:614.515254px;}
.x6{left:616.320030px;}
.x50{left:620.274105px;}
.x27{left:624.779983px;}
.x28{left:630.000000px;}
.x93{left:631.253649px;}
.x53{left:632.875688px;}
.x84{left:635.220017px;}
.x29{left:641.159981px;}
.xa4{left:644.034102px;}
.x74{left:646.375569px;}
.x73{left:648.175357px;}
.x71{left:649.794875px;}
.x39{left:652.143533px;}
.x72{left:655.556322px;}
.x4{left:665.279983px;}
.x5a{left:667.972889px;}
.x85{left:677.340019px;}
.x83{left:682.559967px;}
.xa6{left:689.578610px;}
.x18{left:690.659981px;}
.x56{left:692.096427px;}
.x2b{left:696.419975px;}
.x55{left:699.653975px;}
.x2c{left:705.419975px;}
.x54{left:709.373023px;}
.x2d{left:715.860008px;}
.x75{left:720.356158px;}
.x2a{left:727.919975px;}
.x8e{left:797.762233px;}
.x9f{left:803.155629px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v2{vertical-align:27.519896pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.318960pt;}
.ls1{letter-spacing:0.318964pt;}
.ls3{letter-spacing:0.319024pt;}
.ls4{letter-spacing:0.844798pt;}
.ls5{letter-spacing:3.970552pt;}
.ws2{word-spacing:-70.402800pt;}
.ws8d{word-spacing:-24.639897pt;}
.ws1{word-spacing:-21.120800pt;}
.ws8e{word-spacing:-21.119959pt;}
.ws6{word-spacing:-17.600700pt;}
.ws4{word-spacing:-14.080500pt;}
.ws33{word-spacing:-13.017507pt;}
.ws5{word-spacing:-12.320500pt;}
.ws32{word-spacing:-11.281938pt;}
.ws2f{word-spacing:-10.414006pt;}
.ws1f{word-spacing:-8.968024pt;}
.ws71{word-spacing:-7.955357pt;}
.ws51{word-spacing:-7.521391pt;}
.ws8{word-spacing:-7.232280pt;}
.ws74{word-spacing:-7.087631pt;}
.ws6f{word-spacing:-6.942868pt;}
.ws4e{word-spacing:-6.508902pt;}
.ws53{word-spacing:-6.364049pt;}
.ws35{word-spacing:-6.074935pt;}
.ws6c{word-spacing:-2.449877pt;}
.ws3{word-spacing:0.000000pt;}
.ws0{word-spacing:0.591382pt;}
.ws64{word-spacing:1.295337pt;}
.ws40{word-spacing:2.042899pt;}
.ws45{word-spacing:2.670538pt;}
.ws39{word-spacing:5.026606pt;}
.wsf{word-spacing:5.312206pt;}
.wsd{word-spacing:5.344207pt;}
.ws65{word-spacing:5.760394pt;}
.ws6a{word-spacing:6.040148pt;}
.ws4a{word-spacing:6.327995pt;}
.ws48{word-spacing:6.961984pt;}
.ws67{word-spacing:7.236994pt;}
.ws75{word-spacing:7.746216pt;}
.ws13{word-spacing:7.872305pt;}
.ws55{word-spacing:8.588650pt;}
.ws2c{word-spacing:9.031616pt;}
.ws15{word-spacing:9.440366pt;}
.ws5f{word-spacing:10.052944pt;}
.ws41{word-spacing:10.146703pt;}
.wsa{word-spacing:10.464405pt;}
.ws80{word-spacing:10.850975pt;}
.ws63{word-spacing:10.897730pt;}
.ws57{word-spacing:11.235644pt;}
.ws47{word-spacing:11.477865pt;}
.ws7b{word-spacing:11.839320pt;}
.ws54{word-spacing:11.911472pt;}
.ws4d{word-spacing:11.961709pt;}
.ws6d{word-spacing:11.984285pt;}
.ws7d{word-spacing:11.986674pt;}
.ws52{word-spacing:12.080429pt;}
.ws7f{word-spacing:13.077620pt;}
.ws30{word-spacing:13.839428pt;}
.ws31{word-spacing:14.100379pt;}
.ws11{word-spacing:14.240552pt;}
.ws16{word-spacing:14.782381pt;}
.ws68{word-spacing:15.105279pt;}
.ws62{word-spacing:15.346932pt;}
.wse{word-spacing:15.646342pt;}
.ws61{word-spacing:15.853803pt;}
.ws5e{word-spacing:15.966441pt;}
.ws59{word-spacing:17.083130pt;}
.wsc{word-spacing:18.048662pt;}
.ws73{word-spacing:18.095057pt;}
.ws7e{word-spacing:18.095181pt;}
.ws3b{word-spacing:18.348572pt;}
.ws7a{word-spacing:18.722636pt;}
.wsb{word-spacing:18.752727pt;}
.ws6b{word-spacing:18.782392pt;}
.ws38{word-spacing:18.950573pt;}
.ws44{word-spacing:19.037443pt;}
.ws5b{word-spacing:19.120306pt;}
.ws3e{word-spacing:20.348346pt;}
.ws58{word-spacing:20.415643pt;}
.ws43{word-spacing:21.396675pt;}
.ws3d{word-spacing:21.665478pt;}
.ws9{word-spacing:22.496872pt;}
.ws6e{word-spacing:22.893680pt;}
.ws79{word-spacing:23.651944pt;}
.ws69{word-spacing:23.822944pt;}
.ws76{word-spacing:24.639248pt;}
.ws36{word-spacing:26.154479pt;}
.ws72{word-spacing:26.424488pt;}
.ws3c{word-spacing:28.089856pt;}
.ws3f{word-spacing:28.576438pt;}
.ws60{word-spacing:28.976134pt;}
.ws37{word-spacing:29.971473pt;}
.ws66{word-spacing:30.142152pt;}
.ws3a{word-spacing:30.880553pt;}
.ws14{word-spacing:33.121283pt;}
.ws78{word-spacing:33.336956pt;}
.ws4c{word-spacing:33.803928pt;}
.ws49{word-spacing:33.812099pt;}
.ws5d{word-spacing:35.627120pt;}
.ws5a{word-spacing:36.522882pt;}
.ws5c{word-spacing:38.156133pt;}
.ws12{word-spacing:39.905546pt;}
.ws2d{word-spacing:40.330618pt;}
.ws42{word-spacing:40.813801pt;}
.ws7c{word-spacing:42.243536pt;}
.ws2e{word-spacing:43.637449pt;}
.ws56{word-spacing:46.097114pt;}
.ws46{word-spacing:47.866409pt;}
.ws7{word-spacing:49.441916pt;}
.ws10{word-spacing:51.105980pt;}
.ws34{word-spacing:65.238355pt;}
.ws4b{word-spacing:69.319353pt;}
.ws77{word-spacing:87.968166pt;}
.ws84{word-spacing:263.442781pt;}
.ws86{word-spacing:263.849837pt;}
.ws50{word-spacing:264.912707pt;}
.ws4f{word-spacing:265.578317pt;}
.ws17{word-spacing:265.760867pt;}
.ws1a{word-spacing:266.311958pt;}
.ws87{word-spacing:271.122833pt;}
.ws89{word-spacing:271.529889pt;}
.ws1c{word-spacing:273.992010pt;}
.ws70{word-spacing:281.605565pt;}
.ws85{word-spacing:290.952972pt;}
.ws19{word-spacing:294.272066pt;}
.ws88{word-spacing:298.633024pt;}
.ws18{word-spacing:319.039421pt;}
.ws81{word-spacing:653.202789pt;}
.ws83{word-spacing:653.609845pt;}
.ws20{word-spacing:659.360843pt;}
.ws22{word-spacing:659.911934pt;}
.ws23{word-spacing:667.040895pt;}
.ws25{word-spacing:667.591986pt;}
.ws82{word-spacing:680.712980pt;}
.ws21{word-spacing:687.872042pt;}
.ws24{word-spacing:695.552094pt;}
.ws8a{word-spacing:1042.962797pt;}
.ws8c{word-spacing:1043.369853pt;}
.ws26{word-spacing:1052.960819pt;}
.ws28{word-spacing:1053.511910pt;}
.ws8b{word-spacing:1070.472988pt;}
.ws27{word-spacing:1081.472018pt;}
.ws1b{word-spacing:1106.320778pt;}
.ws1e{word-spacing:1113.860266pt;}
.ws1d{word-spacing:1124.971092pt;}
.ws29{word-spacing:1454.240967pt;}
.ws2b{word-spacing:1454.792058pt;}
.ws2a{word-spacing:1482.752166pt;}
._1d{margin-left:-21.748471pt;}
._1a{margin-left:-20.252037pt;}
._16{margin-left:-17.101724pt;}
._7{margin-left:-11.151782pt;}
._9{margin-left:-9.462118pt;}
._6{margin-left:-7.687971pt;}
._8{margin-left:-6.420723pt;}
._c{margin-left:-5.165686pt;}
._4{margin-left:-4.156590pt;}
._10{margin-left:-2.982158pt;}
._3{margin-left:-1.689664pt;}
._0{width:0.946228pt;}
._2{width:1.858630pt;}
._1{width:2.872429pt;}
._5{width:3.886227pt;}
._a{width:5.295381pt;}
._b{width:6.658662pt;}
._f{width:7.589958pt;}
._15{width:8.487241pt;}
._14{width:9.384345pt;}
._12{width:10.664024pt;}
._d{width:11.810735pt;}
._e{width:13.500399pt;}
._13{width:14.571136pt;}
._19{width:15.967325pt;}
._22{width:17.596034pt;}
._1e{width:19.538786pt;}
._29{width:20.505454pt;}
._2a{width:22.471345pt;}
._21{width:24.400685pt;}
._2d{width:26.009238pt;}
._20{width:26.952727pt;}
._1f{width:28.596733pt;}
._2e{width:30.424028pt;}
._38{width:31.727382pt;}
._2c{width:33.951922pt;}
._1b{width:35.224666pt;}
._2f{width:36.355721pt;}
._1c{width:40.040209pt;}
._33{width:43.308958pt;}
._37{width:44.375188pt;}
._39{width:50.468224pt;}
._2b{width:57.430532pt;}
._3b{width:179.883151pt;}
._24{width:182.487686pt;}
._3c{width:187.563203pt;}
._3e{width:231.939057pt;}
._32{width:278.383665pt;}
._31{width:282.909811pt;}
._30{width:289.233105pt;}
._34{width:296.741925pt;}
._36{width:299.487549pt;}
._35{width:306.175681pt;}
._3a{width:569.643159pt;}
._25{width:576.087662pt;}
._26{width:583.767714pt;}
._23{width:722.522439pt;}
._3f{width:767.570600pt;}
._41{width:807.707385pt;}
._3d{width:959.403167pt;}
._27{width:969.687638pt;}
._40{width:1203.833547pt;}
._28{width:1370.967786pt;}
._18{width:1478.997290pt;}
._17{width:1480.917210pt;}
._11{width:1507.157202pt;}
.fsc{font-size:26.880245pt;}
.fsf{font-size:28.159508pt;}
.fsd{font-size:28.800450pt;}
.fs10{font-size:30.720655pt;}
.fs12{font-size:31.361200pt;}
.fs6{font-size:32.001240pt;}
.fse{font-size:33.280491pt;}
.fs13{font-size:33.921320pt;}
.fs7{font-size:34.561320pt;}
.fs11{font-size:35.200696pt;}
.fs8{font-size:39.681520pt;}
.fs9{font-size:46.079671pt;}
.fs5{font-size:49.282000pt;}
.fsa{font-size:49.920081pt;}
.fs1{font-size:56.322000pt;}
.fsb{font-size:57.599589pt;}
.fs0{font-size:63.362400pt;}
.fs3{font-size:70.402800pt;}
.fs4{font-size:84.479834pt;}
.fs2{font-size:84.483200pt;}
.fs14{font-size:98.559588pt;}
.y0{bottom:0.000000pt;}
.yee{bottom:1.759562pt;}
.yf3{bottom:1.759602pt;}
.ye6{bottom:1.761645pt;}
.yeb{bottom:1.763688pt;}
.y13b{bottom:1.916356pt;}
.y145{bottom:1.916398pt;}
.y138{bottom:1.918538pt;}
.y141{bottom:1.920678pt;}
.y17e{bottom:1.920720pt;}
.y13e{bottom:1.922818pt;}
.y189{bottom:2.079956pt;}
.y186{bottom:2.079986pt;}
.y183{bottom:2.079987pt;}
.y81{bottom:2.080017pt;}
.yc3{bottom:3.043088pt;}
.y1{bottom:33.760010pt;}
.y2{bottom:36.480103pt;}
.y51{bottom:87.040039pt;}
.y5d{bottom:88.960083pt;}
.ybd{bottom:94.880005pt;}
.y5e{bottom:107.840088pt;}
.y206{bottom:107.844253pt;}
.y70{bottom:108.160035pt;}
.y77{bottom:108.320069pt;}
.y50{bottom:112.320069pt;}
.yb1{bottom:125.280030pt;}
.y6f{bottom:129.280030pt;}
.y3d{bottom:133.280030pt;}
.y1ee{bottom:133.283865pt;}
.y4f{bottom:133.440064pt;}
.y1f{bottom:133.600037pt;}
.ye3{bottom:136.000061pt;}
.yb0{bottom:138.560059pt;}
.y177{bottom:139.179257pt;}
.y176{bottom:139.181231pt;}
.yb2{bottom:146.560059pt;}
.y174{bottom:150.858116pt;}
.y175{bottom:150.861617pt;}
.yaf{bottom:151.840088pt;}
.y17f{bottom:153.298657pt;}
.y6e{bottom:154.240052pt;}
.y3c{bottom:158.560059pt;}
.y4a{bottom:158.720032pt;}
.y1ed{bottom:158.723477pt;}
.y1e{bottom:159.040039pt;}
.y17d{bottom:160.815875pt;}
.y173{bottom:162.699763pt;}
.y172{bottom:162.701264pt;}
.y5c{bottom:164.960083pt;}
.yae{bottom:165.280030pt;}
.y12c{bottom:169.744860pt;}
.y12d{bottom:169.747509pt;}
.y170{bottom:174.378149pt;}
.y171{bottom:174.379395pt;}
.y6d{bottom:175.360047pt;}
.y1ea{bottom:177.600037pt;}
.y1a8{bottom:179.200074pt;}
.yad{bottom:180.480042pt;}
.y12a{bottom:180.944481pt;}
.y12b{bottom:180.947519pt;}
.y1cd{bottom:181.920044pt;}
.y49{bottom:184.000061pt;}
.y1ec{bottom:184.001893pt;}
.y75{bottom:184.320069pt;}
.y135{bottom:187.510136pt;}
.y16e{bottom:187.979147pt;}
.y16f{bottom:187.979336pt;}
.y128{bottom:191.983767pt;}
.y129{bottom:191.984967pt;}
.y1a7{bottom:192.320069pt;}
.yac{bottom:193.760071pt;}
.y16c{bottom:199.820098pt;}
.y16d{bottom:199.822832pt;}
.y1ab{bottom:200.320069pt;}
.yb7{bottom:201.760071pt;}
.y126{bottom:203.027346pt;}
.y127{bottom:203.027572pt;}
.y1a6{bottom:205.600037pt;}
.y17c{bottom:206.894775pt;}
.yab{bottom:207.040039pt;}
.y1cc{bottom:207.360047pt;}
.y3b{bottom:209.280030pt;}
.y48{bottom:209.440064pt;}
.y205{bottom:209.441504pt;}
.y74{bottom:209.760071pt;}
.y16a{bottom:211.501561pt;}
.y16b{bottom:211.502465pt;}
.y125{bottom:215.824636pt;}
.y124{bottom:215.826618pt;}
.y1a5{bottom:218.720032pt;}
.yaa{bottom:220.320069pt;}
.y6c{bottom:221.440064pt;}
.y168{bottom:223.340131pt;}
.y169{bottom:223.343338pt;}
.y122{bottom:226.865905pt;}
.y123{bottom:226.867143pt;}
.y1e9{bottom:228.320069pt;}
.y1cb{bottom:232.640076pt;}
.y134{bottom:233.431633pt;}
.y1a4{bottom:233.760071pt;}
.y20e{bottom:234.719984pt;}
.y3a{bottom:234.720032pt;}
.y1eb{bottom:234.732694pt;}
.y1d{bottom:235.040039pt;}
.ya9{bottom:235.680054pt;}
.y166{bottom:236.941129pt;}
.y167{bottom:236.943175pt;}
.y121{bottom:237.904591pt;}
.y120{bottom:237.905106pt;}
.y5b{bottom:241.120057pt;}
.y1a3{bottom:247.040039pt;}
.y164{bottom:248.622683pt;}
.y165{bottom:248.622860pt;}
.y11e{bottom:248.944307pt;}
.y11f{bottom:248.947196pt;}
.ya8{bottom:248.960083pt;}
.y1e8{bottom:253.600037pt;}
.y1aa{bottom:254.880066pt;}
.y17b{bottom:255.854713pt;}
.yb6{bottom:256.960083pt;}
.y1ca{bottom:258.080079pt;}
.y39{bottom:260.000061pt;}
.y47{bottom:260.160035pt;}
.y163{bottom:260.460953pt;}
.y162{bottom:260.461162pt;}
.y1c{bottom:260.480042pt;}
.y11c{bottom:261.745811pt;}
.y11d{bottom:261.749318pt;}
.ya7{bottom:262.240052pt;}
.y160{bottom:272.299733pt;}
.y161{bottom:272.304449pt;}
.y11a{bottom:272.785012pt;}
.y11b{bottom:272.786766pt;}
.y1a2{bottom:273.280030pt;}
.ya6{bottom:275.520081pt;}
.y1e7{bottom:279.040039pt;}
.y133{bottom:279.513109pt;}
.y1c9{bottom:283.360047pt;}
.y118{bottom:283.828676pt;}
.y119{bottom:283.829272pt;}
.y38{bottom:285.440064pt;}
.y204{bottom:285.444495pt;}
.y15e{bottom:285.741426pt;}
.y15f{bottom:285.743202pt;}
.y73{bottom:285.760071pt;}
.y1a1{bottom:288.320069pt;}
.ya5{bottom:290.880066pt;}
.y117{bottom:294.866770pt;}
.y116{bottom:294.867877pt;}
.y15d{bottom:297.581348pt;}
.y15c{bottom:297.584665pt;}
.y1a0{bottom:301.600037pt;}
.ya4{bottom:304.160035pt;}
.y1e6{bottom:304.320069pt;}
.y180{bottom:304.655619pt;}
.y115{bottom:307.666363pt;}
.y114{bottom:307.667149pt;}
.y1c8{bottom:308.800049pt;}
.y15a{bottom:309.423144pt;}
.y15b{bottom:309.424844pt;}
.y1ae{bottom:309.440064pt;}
.y46{bottom:310.880066pt;}
.y203{bottom:310.884106pt;}
.y1b{bottom:311.200074pt;}
.yb5{bottom:312.160035pt;}
.y19f{bottom:314.720032pt;}
.ya3{bottom:317.440064pt;}
.y112{bottom:318.706436pt;}
.y113{bottom:318.708919pt;}
.y159{bottom:321.104528pt;}
.y158{bottom:321.104698pt;}
.y132{bottom:325.432524pt;}
.y19e{bottom:327.840088pt;}
.y1e5{bottom:328.960083pt;}
.y110{bottom:329.745637pt;}
.y111{bottom:329.746416pt;}
.ya2{bottom:330.720032pt;}
.y1c7{bottom:334.080079pt;}
.y156{bottom:334.701027pt;}
.y157{bottom:334.704365pt;}
.y37{bottom:336.160035pt;}
.y202{bottom:336.162586pt;}
.y1a{bottom:336.480042pt;}
.y10e{bottom:340.947489pt;}
.y10f{bottom:340.948906pt;}
.y5a{bottom:342.560059pt;}
.y19d{bottom:343.040039pt;}
.y6b{bottom:345.440064pt;}
.ya1{bottom:346.080079pt;}
.y154{bottom:346.544267pt;}
.y155{bottom:346.545186pt;}
.y10c{bottom:353.588573pt;}
.y10d{bottom:353.591094pt;}
.y1e4{bottom:353.600037pt;}
.y179{bottom:353.615473pt;}
.y19c{bottom:356.160035pt;}
.y152{bottom:358.223441pt;}
.y153{bottom:358.224871pt;}
.ya0{bottom:359.360047pt;}
.y1c6{bottom:359.520081pt;}
.y36{bottom:361.440064pt;}
.y45{bottom:361.600037pt;}
.y19{bottom:361.920044pt;}
.y1ad{bottom:364.000061pt;}
.y10a{bottom:364.627774pt;}
.y10b{bottom:364.628542pt;}
.yb4{bottom:367.360047pt;}
.y59{bottom:367.840088pt;}
.y6a{bottom:368.320069pt;}
.y19b{bottom:369.280030pt;}
.y151{bottom:370.063016pt;}
.y150{bottom:370.064300pt;}
.y131{bottom:371.354102pt;}
.y9f{bottom:372.640076pt;}
.y109{bottom:375.828503pt;}
.y108{bottom:375.829627pt;}
.y1e3{bottom:378.400086pt;}
.y19a{bottom:382.400086pt;}
.y14f{bottom:383.662853pt;}
.y14e{bottom:383.663055pt;}
.y1c5{bottom:384.800049pt;}
.y9e{bottom:385.920044pt;}
.y106{bottom:386.868828pt;}
.y107{bottom:386.871058pt;}
.y35{bottom:386.880066pt;}
.y201{bottom:386.880613pt;}
.y18{bottom:387.200074pt;}
.y14c{bottom:395.344563pt;}
.y14d{bottom:395.347940pt;}
.y199{bottom:397.600037pt;}
.y104{bottom:399.507766pt;}
.y105{bottom:399.510718pt;}
.y9d{bottom:401.280030pt;}
.y178{bottom:402.412099pt;}
.y1e2{bottom:403.040039pt;}
.y14a{bottom:407.183088pt;}
.y14b{bottom:407.186034pt;}
.y1c4{bottom:410.240052pt;}
.y102{bottom:410.709575pt;}
.y103{bottom:410.710678pt;}
.y198{bottom:410.720032pt;}
.y34{bottom:412.160035pt;}
.y4e{bottom:412.320069pt;}
.y200{bottom:412.320225pt;}
.y17{bottom:412.640076pt;}
.y69{bottom:414.080079pt;}
.y9c{bottom:414.560059pt;}
.y12f{bottom:417.275599pt;}
.y1ac{bottom:418.560059pt;}
.y149{bottom:418.863044pt;}
.y148{bottom:418.864596pt;}
.y101{bottom:421.748126pt;}
.y100{bottom:421.748819pt;}
.yb3{bottom:422.560059pt;}
.y197{bottom:423.840088pt;}
.y1e1{bottom:427.680054pt;}
.y9b{bottom:427.840088pt;}
.y146{bottom:432.012729pt;}
.yfe{bottom:432.790252pt;}
.yff{bottom:432.790682pt;}
.y68{bottom:436.960083pt;}
.y33{bottom:437.600037pt;}
.y20d{bottom:437.605124pt;}
.y16{bottom:437.920044pt;}
.y144{bottom:439.373139pt;}
.y9a{bottom:441.120057pt;}
.y147{bottom:441.289537pt;}
.yfc{bottom:445.587293pt;}
.yfd{bottom:445.590275pt;}
.y143{bottom:448.811077pt;}
.y142{bottom:450.733895pt;}
.y196{bottom:452.160035pt;}
.y1e0{bottom:452.320069pt;}
.y99{bottom:456.480042pt;}
.yfb{bottom:456.630302pt;}
.yfa{bottom:456.630957pt;}
.y140{bottom:458.251155pt;}
.y67{bottom:459.840088pt;}
.y13f{bottom:460.171833pt;}
.y1c3{bottom:460.960083pt;}
.y32{bottom:462.880066pt;}
.y44{bottom:463.040039pt;}
.y1ff{bottom:463.044736pt;}
.y12e{bottom:463.193011pt;}
.y15{bottom:463.360047pt;}
.y195{bottom:465.280030pt;}
.yf8{bottom:467.670158pt;}
.yf9{bottom:467.670328pt;}
.y13d{bottom:467.689051pt;}
.y13c{bottom:469.611869pt;}
.y98{bottom:469.760071pt;}
.ydd{bottom:473.117587pt;}
.y1b0{bottom:473.120057pt;}
.yde{bottom:473.123253pt;}
.y1df{bottom:476.960083pt;}
.y13a{bottom:477.133451pt;}
.ybc{bottom:477.760071pt;}
.y194{bottom:478.400086pt;}
.yf6{bottom:478.709401pt;}
.yf7{bottom:478.710305pt;}
.y139{bottom:479.049807pt;}
.y66{bottom:482.720032pt;}
.y97{bottom:483.040039pt;}
.y1c2{bottom:486.240052pt;}
.y137{bottom:486.571347pt;}
.y43{bottom:488.320069pt;}
.y1fe{bottom:488.321894pt;}
.y136{bottom:488.489885pt;}
.y14{bottom:488.640076pt;}
.y193{bottom:491.520081pt;}
.ydb{bottom:492.160587pt;}
.ydc{bottom:492.164656pt;}
.y96{bottom:496.320069pt;}
.y1de{bottom:501.600037pt;}
.ye1{bottom:503.684409pt;}
.y65{bottom:505.600037pt;}
.y192{bottom:506.720032pt;}
.yf4{bottom:506.872968pt;}
.yf5{bottom:508.636656pt;}
.y17a{bottom:509.109956pt;}
.yd9{bottom:511.363555pt;}
.yda{bottom:511.364201pt;}
.y95{bottom:511.680054pt;}
.y31{bottom:513.600037pt;}
.y42{bottom:513.760071pt;}
.y1fd{bottom:513.762827pt;}
.y13{bottom:514.080079pt;}
.yf2{bottom:515.834964pt;}
.yf1{bottom:517.594567pt;}
.y191{bottom:519.840088pt;}
.yf0{bottom:524.634979pt;}
.y94{bottom:524.960083pt;}
.y1dd{bottom:526.240052pt;}
.yef{bottom:526.394541pt;}
.y1af{bottom:527.840088pt;}
.y64{bottom:528.480042pt;}
.yd7{bottom:530.558899pt;}
.yd8{bottom:530.559368pt;}
.ybb{bottom:532.960083pt;}
.yed{bottom:533.434954pt;}
.yec{bottom:535.194516pt;}
.y1c1{bottom:536.960083pt;}
.y93{bottom:538.240052pt;}
.y1fc{bottom:539.038663pt;}
.y30{bottom:539.040039pt;}
.y12{bottom:539.360047pt;}
.yea{bottom:542.392824pt;}
.ye9{bottom:544.156512pt;}
.y58{bottom:545.280030pt;}
.y190{bottom:546.240052pt;}
.y1dc{bottom:551.040039pt;}
.ye8{bottom:551.194882pt;}
.y63{bottom:551.360047pt;}
.y92{bottom:551.520081pt;}
.yd5{bottom:552.477392pt;}
.yd6{bottom:552.483546pt;}
.ye7{bottom:552.956527pt;}
.ye5{bottom:559.994857pt;}
.y18e{bottom:560.640076pt;}
.ye4{bottom:561.756502pt;}
.y1c0{bottom:562.400086pt;}
.y2f{bottom:564.320069pt;}
.y20c{bottom:564.479596pt;}
.y4d{bottom:564.480042pt;}
.y11{bottom:564.800049pt;}
.y91{bottom:566.880066pt;}
.y18d{bottom:569.120057pt;}
.y57{bottom:569.920044pt;}
.y18c{bottom:571.200074pt;}
.yd3{bottom:571.676530pt;}
.yd4{bottom:571.687511pt;}
.y62{bottom:574.240052pt;}
.y1db{bottom:575.680054pt;}
.y18b{bottom:579.680054pt;}
.y90{bottom:580.160035pt;}
.y130{bottom:581.272191pt;}
.y18f{bottom:581.760071pt;}
.ye0{bottom:583.203745pt;}
.y1bf{bottom:587.680054pt;}
.yba{bottom:588.160035pt;}
.y2e{bottom:589.760071pt;}
.y1fb{bottom:589.765754pt;}
.y10{bottom:590.080079pt;}
.yd1{bottom:590.719530pt;}
.yd2{bottom:590.728871pt;}
.y18a{bottom:592.160035pt;}
.y8f{bottom:593.440064pt;}
.y56{bottom:594.720032pt;}
.y61{bottom:597.120057pt;}
.y1da{bottom:600.320069pt;}
.y188{bottom:600.640076pt;}
.y187{bottom:602.720032pt;}
.y8e{bottom:606.720032pt;}
.ycf{bottom:609.914874pt;}
.yd0{bottom:609.924038pt;}
.y185{bottom:611.200074pt;}
.y1be{bottom:613.120057pt;}
.y184{bottom:613.280060pt;}
.y2d{bottom:615.040070pt;}
.y1fa{bottom:615.196365pt;}
.y41{bottom:615.200074pt;}
.yf{bottom:615.520050pt;}
.y55{bottom:619.360047pt;}
.y60{bottom:620.000061pt;}
.y182{bottom:621.760071pt;}
.y8d{bottom:622.080048pt;}
.y181{bottom:623.840058pt;}
.y1d9{bottom:624.960053pt;}
.ycd{bottom:632.000960pt;}
.yce{bottom:632.002024pt;}
.y8c{bottom:635.360047pt;}
.y1bd{bottom:638.400055pt;}
.y2c{bottom:640.480072pt;}
.y1f9{bottom:640.482555pt;}
.y72{bottom:640.800049pt;}
.y5f{bottom:642.880066pt;}
.yb9{bottom:643.360047pt;}
.y54{bottom:644.000061pt;}
.y1a9{bottom:646.720063pt;}
.y8b{bottom:648.640046pt;}
.y1d8{bottom:649.600068pt;}
.ycb{bottom:651.036336pt;}
.ycc{bottom:651.039006pt;}
.y8a{bottom:661.920044pt;}
.ydf{bottom:662.561377pt;}
.y2b{bottom:665.758453pt;}
.y40{bottom:665.920044pt;}
.y20b{bottom:665.923457pt;}
.y76{bottom:666.240052pt;}
.y53{bottom:668.640046pt;}
.yc9{bottom:670.239304pt;}
.yca{bottom:670.242971pt;}
.y1d7{bottom:674.240052pt;}
.y89{bottom:676.480072pt;}
.y88{bottom:685.120057pt;}
.y87{bottom:687.200074pt;}
.y1bc{bottom:689.120057pt;}
.yc7{bottom:689.282304pt;}
.yc8{bottom:689.283473pt;}
.y1f8{bottom:691.199324pt;}
.y2a{bottom:691.200074pt;}
.ye{bottom:691.520050pt;}
.y86{bottom:695.680054pt;}
.y85{bottom:697.760071pt;}
.y1d6{bottom:699.040070pt;}
.y84{bottom:706.400055pt;}
.y83{bottom:708.480072pt;}
.y1bb{bottom:714.560059pt;}
.y4c{bottom:716.640046pt;}
.y1f7{bottom:716.640226pt;}
.yd{bottom:716.960053pt;}
.y82{bottom:719.040070pt;}
.y1d5{bottom:723.520050pt;}
.y80{bottom:727.680054pt;}
.y7f{bottom:729.760071pt;}
.yc6{bottom:740.962759pt;}
.y1f6{bottom:741.916124pt;}
.y4b{bottom:741.920044pt;}
.yc{bottom:742.240052pt;}
.y52{bottom:742.560059pt;}
.y1d4{bottom:748.160065pt;}
.yb8{bottom:752.960053pt;}
.yc5{bottom:756.325931pt;}
.y1ba{bottom:765.280060pt;}
.y20a{bottom:767.356995pt;}
.y29{bottom:767.360047pt;}
.yb{bottom:767.680054pt;}
.yc4{bottom:771.680691pt;}
.y7e{bottom:779.680054pt;}
.yc2{bottom:783.841852pt;}
.yc1{bottom:786.884940pt;}
.y1b9{bottom:790.560059pt;}
.y28{bottom:792.640046pt;}
.y1f5{bottom:792.643185pt;}
.ya{bottom:792.960053pt;}
.yc0{bottom:802.241074pt;}
.y1b8{bottom:816.000061pt;}
.ybf{bottom:817.602839pt;}
.y3f{bottom:818.080048pt;}
.y1f4{bottom:818.084087pt;}
.y9{bottom:818.400055pt;}
.y1d3{bottom:822.240052pt;}
.y7d{bottom:830.400055pt;}
.ybe{bottom:832.801491pt;}
.y1b7{bottom:841.280060pt;}
.y209{bottom:843.359985pt;}
.y27{bottom:843.360047pt;}
.y8{bottom:843.680054pt;}
.y1d2{bottom:846.880066pt;}
.y7c{bottom:855.680054pt;}
.y1b6{bottom:866.720063pt;}
.y26{bottom:868.800064pt;}
.y1f3{bottom:868.800856pt;}
.y71{bottom:869.120057pt;}
.y1d1{bottom:871.520066pt;}
.y7b{bottom:878.560059pt;}
.y1b5{bottom:892.000061pt;}
.y208{bottom:894.076754pt;}
.y25{bottom:894.080063pt;}
.y7{bottom:894.400055pt;}
.y1d0{bottom:896.160065pt;}
.y7a{bottom:901.600052pt;}
.y1b4{bottom:917.440064pt;}
.y207{bottom:919.517641pt;}
.y3e{bottom:919.520066pt;}
.y6{bottom:919.840058pt;}
.y1cf{bottom:920.800064pt;}
.y79{bottom:924.480057pt;}
.y1b3{bottom:942.720063pt;}
.y24{bottom:944.800064pt;}
.y1f2{bottom:944.803846pt;}
.y5{bottom:945.120057pt;}
.y1ce{bottom:945.600052pt;}
.y78{bottom:947.360062pt;}
.y1b2{bottom:968.160065pt;}
.y23{bottom:970.240052pt;}
.y1f1{bottom:970.244732pt;}
.y20{bottom:975.040055pt;}
.y22{bottom:995.520058pt;}
.y1f0{bottom:995.520615pt;}
.y4{bottom:995.840058pt;}
.y1b1{bottom:1018.878384pt;}
.y21{bottom:1020.960061pt;}
.y1ef{bottom:1020.961509pt;}
.y3{bottom:1021.280060pt;}
.ye2{bottom:1023.680062pt;}
.h1c{height:8.160101pt;}
.h1a{height:8.160141pt;}
.h1b{height:8.162184pt;}
.h23{height:8.636568pt;}
.h22{height:8.638708pt;}
.h25{height:8.640848pt;}
.h2a{height:8.640932pt;}
.h24{height:8.643030pt;}
.h2d{height:9.599975pt;}
.h2c{height:9.599976pt;}
.hf{height:9.760009pt;}
.he{height:9.760010pt;}
.h15{height:14.079257pt;}
.h1f{height:18.427668pt;}
.h19{height:18.624545pt;}
.h28{height:19.304663pt;}
.h21{height:19.510909pt;}
.h1d{height:19.954999pt;}
.h26{height:21.285454pt;}
.h2e{height:21.499573pt;}
.h2b{height:21.729269pt;}
.h12{height:21.750843pt;}
.h11{height:21.938350pt;}
.hd{height:22.172734pt;}
.h20{height:22.815336pt;}
.h1e{height:23.059090pt;}
.h29{height:24.131727pt;}
.h27{height:24.389544pt;}
.h13{height:27.203542pt;}
.h10{height:27.494178pt;}
.h18{height:31.589775pt;}
.h14{height:31.927272pt;}
.h16{height:34.588181pt;}
.h17{height:39.909090pt;}
.h9{height:49.158205pt;}
.h3{height:49.419255pt;}
.h2{height:51.141625pt;}
.h32{height:57.254888pt;}
.h7{height:57.257169pt;}
.h8{height:58.659722pt;}
.ha{height:60.299627pt;}
.hc{height:61.774332pt;}
.h5{height:62.530612pt;}
.hb{height:74.126105pt;}
.h6{height:74.129058pt;}
.h30{height:74.769074pt;}
.h2f{height:75.033603pt;}
.h4{height:75.036592pt;}
.h31{height:87.539009pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2d{width:3.680368pt;}
.w24{width:4.802198pt;}
.w43{width:6.079987pt;}
.w5{width:6.239990pt;}
.w4a{width:6.240051pt;}
.w41{width:6.399191pt;}
.w2b{width:6.399218pt;}
.w3a{width:6.399246pt;}
.w32{width:6.559430pt;}
.w3b{width:6.721152pt;}
.w34{width:7.679896pt;}
.w1e{width:8.318602pt;}
.w21{width:8.320469pt;}
.w16{width:8.481660pt;}
.w1f{width:9.919347pt;}
.w15{width:10.080538pt;}
.w2f{width:10.400092pt;}
.w36{width:10.401492pt;}
.w45{width:10.720002pt;}
.w47{width:10.720032pt;}
.w40{width:10.720598pt;}
.wa{width:10.880005pt;}
.w39{width:11.520531pt;}
.w1d{width:11.998027pt;}
.w19{width:12.001798pt;}
.w3c{width:12.960103pt;}
.w30{width:13.120287pt;}
.w23{width:13.439448pt;}
.w25{width:13.441352pt;}
.w14{width:13.600639pt;}
.w26{width:13.921154pt;}
.w3d{width:14.559915pt;}
.w4{width:14.720001pt;}
.w1b{width:15.040193pt;}
.w2c{width:15.359765pt;}
.w28{width:15.359793pt;}
.w35{width:15.520032pt;}
.w33{width:15.839138pt;}
.w2a{width:15.839165pt;}
.w37{width:16.959549pt;}
.wb{width:17.599975pt;}
.wc{width:17.600037pt;}
.w12{width:17.759940pt;}
.w20{width:18.078588pt;}
.w1c{width:18.080455pt;}
.w31{width:19.679772pt;}
.w3e{width:20.000361pt;}
.w27{width:20.159172pt;}
.w22{width:22.237889pt;}
.w11{width:22.721499pt;}
.w7{width:23.519989pt;}
.w1a{width:24.802046pt;}
.w3f{width:25.120218pt;}
.w29{width:26.239257pt;}
.w48{width:26.560029pt;}
.w13{width:27.840478pt;}
.wf{width:28.320008pt;}
.w2e{width:28.640347pt;}
.w49{width:34.560029pt;}
.w18{width:35.041908pt;}
.w9{width:36.159973pt;}
.w8{width:36.160003pt;}
.w2{width:37.440003pt;}
.we{width:37.600037pt;}
.wd{width:45.600037pt;}
.w44{width:48.319977pt;}
.w4b{width:48.320007pt;}
.w3{width:48.639984pt;}
.w6{width:48.799987pt;}
.w38{width:55.519270pt;}
.w10{width:64.161690pt;}
.w17{width:72.961020pt;}
.w42{width:77.600269pt;}
.w46{width:93.599976pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.839996pt;}
.x3e{left:111.519997pt;}
.x32{left:113.760002pt;}
.x30{left:116.480003pt;}
.x10{left:125.279999pt;}
.x5e{left:126.402968pt;}
.x5d{left:129.600839pt;}
.x5f{left:130.561725pt;}
.x2f{left:132.320007pt;}
.x8{left:135.199997pt;}
.x35{left:137.759995pt;}
.x31{left:139.679993pt;}
.x33{left:141.119995pt;}
.x36{left:144.320007pt;}
.x17{left:154.720001pt;}
.x19{left:156.479996pt;}
.xa7{left:158.398078pt;}
.x5b{left:160.643103pt;}
.x8f{left:163.843712pt;}
.x98{left:166.882608pt;}
.x89{left:174.399994pt;}
.x1b{left:177.759995pt;}
.x92{left:179.202915pt;}
.xa9{left:186.717764pt;}
.x7{left:190.240005pt;}
.x87{left:191.520004pt;}
.x7a{left:193.760967pt;}
.x88{left:196.800003pt;}
.x12{left:199.679029pt;}
.x90{left:205.921341pt;}
.x7b{left:212.319874pt;}
.x5{left:213.600006pt;}
.x79{left:214.721337pt;}
.x3{left:219.199997pt;}
.x57{left:220.478363pt;}
.x94{left:221.756518pt;}
.x2e{left:223.520004pt;}
.x77{left:228.002250pt;}
.x37{left:229.279999pt;}
.xc{left:232.800003pt;}
.xa{left:234.399994pt;}
.x1a{left:235.520004pt;}
.x97{left:236.638258pt;}
.x3d{left:240.800003pt;}
.x9c{left:244.154582pt;}
.x3c{left:250.561612pt;}
.xa1{left:258.717454pt;}
.x3f{left:259.836833pt;}
.xac{left:261.277744pt;}
.x9e{left:262.397090pt;}
.x3b{left:264.321567pt;}
.xb{left:267.040009pt;}
.x76{left:273.448525pt;}
.x1c{left:274.720001pt;}
.x14{left:279.519989pt;}
.x95{left:281.595502pt;}
.x96{left:286.561744pt;}
.x58{left:289.599491pt;}
.x59{left:291.038079pt;}
.xaa{left:296.319319pt;}
.xe{left:300.480011pt;}
.x8a{left:301.756194pt;}
.x60{left:303.357582pt;}
.x42{left:304.957375pt;}
.x9a{left:306.396886pt;}
.x9{left:308.799988pt;}
.x40{left:310.076354pt;}
.x41{left:315.037913pt;}
.xf{left:317.760010pt;}
.x43{left:319.197214pt;}
.x1e{left:320.640015pt;}
.x44{left:322.717315pt;}
.x13{left:324.480011pt;}
.xd{left:326.239990pt;}
.x1d{left:331.839996pt;}
.x9d{left:333.119525pt;}
.x45{left:335.517600pt;}
.x99{left:338.554457pt;}
.x8c{left:339.841421pt;}
.x86{left:342.239990pt;}
.x61{left:343.517060pt;}
.x11{left:345.920013pt;}
.xa5{left:349.920048pt;}
.x62{left:352.477634pt;}
.x1f{left:354.559998pt;}
.xa2{left:359.043056pt;}
.x63{left:360.957436pt;}
.x8b{left:364.000000pt;}
.x7c{left:369.760010pt;}
.xa8{left:371.202125pt;}
.xa0{left:372.154046pt;}
.x20{left:373.119995pt;}
.x5c{left:374.874089pt;}
.x49{left:383.676574pt;}
.x66{left:387.836332pt;}
.x46{left:394.877981pt;}
.x48{left:396.476822pt;}
.x47{left:399.996960pt;}
.x64{left:401.116914pt;}
.x67{left:406.076587pt;}
.x7d{left:407.359985pt;}
.x4a{left:411.198367pt;}
.x65{left:412.796311pt;}
.x3a{left:414.074464pt;}
.x22{left:419.040009pt;}
.x7e{left:421.760010pt;}
.x34{left:428.320007pt;}
.x24{left:431.679993pt;}
.x9b{left:432.959046pt;}
.x78{left:437.275527pt;}
.x15{left:438.880005pt;}
.x23{left:444.320007pt;}
.xab{left:450.236624pt;}
.x68{left:454.396734pt;}
.x6a{left:458.237369pt;}
.x21{left:461.600006pt;}
.x1{left:466.559998pt;}
.x69{left:467.517076pt;}
.x4b{left:468.956136pt;}
.x25{left:471.519989pt;}
.x4d{left:474.076982pt;}
.x4c{left:475.677727pt;}
.x81{left:480.959991pt;}
.xa3{left:484.799196pt;}
.x4e{left:486.875400pt;}
.x80{left:488.959991pt;}
.x38{left:494.725985pt;}
.x91{left:501.919684pt;}
.x7f{left:504.799988pt;}
.x6f{left:514.716811pt;}
.x6c{left:516.156329pt;}
.x82{left:519.200012pt;}
.x6d{left:521.274868pt;}
.x6b{left:523.996464pt;}
.x6e{left:525.116931pt;}
.x26{left:530.080017pt;}
.x70{left:533.756945pt;}
.x51{left:537.437340pt;}
.x8d{left:538.395941pt;}
.x16{left:540.479980pt;}
.x4f{left:541.596641pt;}
.x52{left:546.235781pt;}
.x6{left:547.840027pt;}
.x50{left:551.354760pt;}
.x27{left:555.359985pt;}
.x28{left:560.000000pt;}
.x93{left:561.114355pt;}
.x53{left:562.556167pt;}
.x84{left:564.640015pt;}
.x29{left:569.919983pt;}
.xa4{left:572.474758pt;}
.x74{left:574.556061pt;}
.x73{left:576.155873pt;}
.x71{left:577.595445pt;}
.x39{left:579.683140pt;}
.x72{left:582.716730pt;}
.x4{left:591.359985pt;}
.x5a{left:593.753679pt;}
.x85{left:602.080017pt;}
.x83{left:606.719971pt;}
.xa6{left:612.958764pt;}
.x18{left:613.919983pt;}
.x56{left:615.196824pt;}
.x2b{left:619.039978pt;}
.x55{left:621.914644pt;}
.x2c{left:627.039978pt;}
.x54{left:630.553798pt;}
.x2d{left:636.320007pt;}
.x75{left:640.316585pt;}
.x2a{left:647.039978pt;}
.x8e{left:709.121985pt;}
.x9f{left:713.916115pt;}
}




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