
    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_4b109223112011050a75aee5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.872070;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_ff85cd9f4de63e58a1855c11.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.878418;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_254595feaa3b5e66c7d9a7b3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921875;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_e81f1d3b4f4c4a4fd8740000.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967285;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_100b04bd05c93e0b4314a918.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.904297;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_1c73e81a0c65d69e7c74fb4d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.865234;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_59ff331d2d8ab55373a77de2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.858398;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_7ffe2d706e5785d0e9405395.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7f9456c0ebf4ec5baf3e7d2e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.878418;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_de086b53f107ca42e1d6eb4b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.865234;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_bc1814e69eed121b925ed7d5.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.967285;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_13fbb0af1ffd21fb984f78d4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.872070;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_360734063758d8abaeeac59a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.878418;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_3e097a57d3a22d4edf0b2aa5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.878418;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_1aac56e6cac77c1e3fa8c1e7.woff2')format("woff");}.fff{font-family:fff;line-height:0.921875;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);}
.v1{vertical-align:-31.850400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.984000px;}
.v2{vertical-align:17.982000px;}
.v3{vertical-align:19.980000px;}
.ls5a{letter-spacing:-4.380000px;}
.ls79{letter-spacing:-4.032000px;}
.ls67{letter-spacing:-2.064000px;}
.ls7a{letter-spacing:-1.920000px;}
.ls76{letter-spacing:-1.200000px;}
.ls5d{letter-spacing:-1.020000px;}
.ls7d{letter-spacing:-0.960000px;}
.ls7e{letter-spacing:-0.480000px;}
.ls69{letter-spacing:-0.360000px;}
.ls59{letter-spacing:0.000000px;}
.ls5f{letter-spacing:0.003000px;}
.ls75{letter-spacing:0.003600px;}
.ls65{letter-spacing:0.009600px;}
.ls64{letter-spacing:0.010200px;}
.ls66{letter-spacing:0.010800px;}
.ls4{letter-spacing:0.036012px;}
.ls7c{letter-spacing:0.336000px;}
.ls6{letter-spacing:0.495000px;}
.ls5{letter-spacing:0.510000px;}
.ls36{letter-spacing:0.549000px;}
.ls25{letter-spacing:0.558000px;}
.ls6e{letter-spacing:0.600000px;}
.ls6b{letter-spacing:0.624426px;}
.ls78{letter-spacing:0.676320px;}
.ls62{letter-spacing:0.693540px;}
.ls6d{letter-spacing:0.694140px;}
.ls72{letter-spacing:0.699600px;}
.ls68{letter-spacing:0.714840px;}
.ls6f{letter-spacing:0.900000px;}
.ls7b{letter-spacing:0.960000px;}
.ls57{letter-spacing:0.969000px;}
.ls6a{letter-spacing:1.080000px;}
.ls70{letter-spacing:1.170600px;}
.ls74{letter-spacing:1.174200px;}
.ls63{letter-spacing:1.189800px;}
.ls73{letter-spacing:1.190400px;}
.ls61{letter-spacing:1.200000px;}
.ls77{letter-spacing:1.543668px;}
.ls58{letter-spacing:1.989000px;}
.ls55{letter-spacing:1.992000px;}
.ls60{letter-spacing:2.340000px;}
.ls5b{letter-spacing:2.496000px;}
.ls71{letter-spacing:2.623920px;}
.ls6c{letter-spacing:2.748120px;}
.ls0{letter-spacing:3.510000px;}
.ls5c{letter-spacing:3.666000px;}
.ls38{letter-spacing:4.194000px;}
.ls43{letter-spacing:4.221021px;}
.ls40{letter-spacing:4.230000px;}
.ls44{letter-spacing:4.248000px;}
.ls42{letter-spacing:4.254000px;}
.ls41{letter-spacing:4.266000px;}
.ls39{letter-spacing:4.359582px;}
.ls23{letter-spacing:4.818000px;}
.ls37{letter-spacing:4.839021px;}
.ls20{letter-spacing:4.872000px;}
.ls24{letter-spacing:4.878000px;}
.ls2{letter-spacing:4.884000px;}
.ls22{letter-spacing:4.890000px;}
.ls21{letter-spacing:4.896000px;}
.ls1{letter-spacing:4.902000px;}
.ls3{letter-spacing:4.914000px;}
.ls35{letter-spacing:4.920000px;}
.ls4c{letter-spacing:4.968000px;}
.ls4b{letter-spacing:4.986000px;}
.ls4a{letter-spacing:5.004000px;}
.ls49{letter-spacing:5.007000px;}
.ls4d{letter-spacing:5.022000px;}
.ls53{letter-spacing:5.124000px;}
.ls52{letter-spacing:5.190021px;}
.ls4f{letter-spacing:5.202000px;}
.ls50{letter-spacing:5.205000px;}
.ls51{letter-spacing:5.208000px;}
.ls4e{letter-spacing:5.214000px;}
.ls54{letter-spacing:5.223036px;}
.ls9{letter-spacing:5.406000px;}
.lsa{letter-spacing:5.424000px;}
.ls1d{letter-spacing:5.553021px;}
.ls1e{letter-spacing:5.574000px;}
.ls1f{letter-spacing:5.577000px;}
.ls3a{letter-spacing:5.742042px;}
.ls3f{letter-spacing:5.754000px;}
.ls3d{letter-spacing:5.790000px;}
.ls3b{letter-spacing:5.796000px;}
.ls3e{letter-spacing:5.802000px;}
.ls3c{letter-spacing:5.826000px;}
.ls8{letter-spacing:6.114000px;}
.ls7{letter-spacing:6.171000px;}
.ls56{letter-spacing:7.110000px;}
.ls31{letter-spacing:7.344000px;}
.ls33{letter-spacing:7.368000px;}
.ls32{letter-spacing:7.380000px;}
.ls30{letter-spacing:7.386000px;}
.ls34{letter-spacing:7.392000px;}
.ls2f{letter-spacing:8.415057px;}
.ls2e{letter-spacing:8.445000px;}
.ls26{letter-spacing:10.536000px;}
.ls27{letter-spacing:10.560000px;}
.ls29{letter-spacing:11.916000px;}
.ls2c{letter-spacing:11.922000px;}
.ls2b{letter-spacing:11.928000px;}
.ls2d{letter-spacing:11.946000px;}
.ls2a{letter-spacing:11.964000px;}
.ls16{letter-spacing:13.272000px;}
.ls15{letter-spacing:13.278000px;}
.ls13{letter-spacing:13.296000px;}
.ls14{letter-spacing:13.320000px;}
.ls17{letter-spacing:13.326000px;}
.ls28{letter-spacing:13.704006px;}
.lsc{letter-spacing:13.995582px;}
.lsb{letter-spacing:14.015997px;}
.lse{letter-spacing:14.016000px;}
.lsd{letter-spacing:14.034000px;}
.lsf{letter-spacing:14.040000px;}
.ls12{letter-spacing:14.520000px;}
.ls11{letter-spacing:14.544000px;}
.ls10{letter-spacing:14.574000px;}
.ls47{letter-spacing:15.450000px;}
.ls45{letter-spacing:15.450021px;}
.ls48{letter-spacing:15.450582px;}
.ls46{letter-spacing:15.474000px;}
.ls1b{letter-spacing:17.310000px;}
.ls1c{letter-spacing:17.403021px;}
.ls18{letter-spacing:17.408961px;}
.ls19{letter-spacing:17.424000px;}
.ls1a{letter-spacing:17.433000px;}
.ls5e{letter-spacing:2163.225000px;}
.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;}
}
.ws6{word-spacing:-27.450000px;}
.ws1{word-spacing:-23.850000px;}
.ws32{word-spacing:-14.760000px;}
.ws3b{word-spacing:-14.460000px;}
.ws3a{word-spacing:-14.160000px;}
.ws3{word-spacing:-14.022000px;}
.ws31{word-spacing:-13.560000px;}
.ws5{word-spacing:-13.518000px;}
.ws38{word-spacing:-13.200000px;}
.ws0{word-spacing:-12.204000px;}
.ws4{word-spacing:-12.036000px;}
.ws5e{word-spacing:-11.808000px;}
.ws2{word-spacing:-11.526000px;}
.ws5f{word-spacing:-11.184000px;}
.ws35{word-spacing:-10.848000px;}
.ws7{word-spacing:-10.506000px;}
.ws2f{word-spacing:-9.492000px;}
.ws34{word-spacing:-8.784000px;}
.ws3f{word-spacing:-8.605080px;}
.ws33{word-spacing:-7.905480px;}
.ws30{word-spacing:-7.114932px;}
.ws26{word-spacing:-7.110000px;}
.ws50{word-spacing:-6.816000px;}
.ws3c{word-spacing:-6.324384px;}
.ws18{word-spacing:-3.774000px;}
.wsa{word-spacing:-3.510000px;}
.ws4a{word-spacing:-2.040000px;}
.ws9{word-spacing:-1.710000px;}
.ws3e{word-spacing:-1.440000px;}
.ws57{word-spacing:-1.392000px;}
.ws62{word-spacing:-1.344000px;}
.ws44{word-spacing:-1.320000px;}
.ws37{word-spacing:-1.200000px;}
.ws36{word-spacing:-1.140000px;}
.ws3d{word-spacing:-1.080000px;}
.ws27{word-spacing:-0.969000px;}
.ws63{word-spacing:-0.960000px;}
.ws55{word-spacing:-0.768000px;}
.ws42{word-spacing:-0.600000px;}
.ws51{word-spacing:-0.576000px;}
.ws54{word-spacing:-0.528000px;}
.ws40{word-spacing:-0.480000px;}
.ws4c{word-spacing:-0.300000px;}
.ws2e{word-spacing:-0.042000px;}
.ws8{word-spacing:0.000000px;}
.ws4b{word-spacing:0.060000px;}
.ws4d{word-spacing:0.360000px;}
.ws68{word-spacing:0.480000px;}
.wsf{word-spacing:0.492000px;}
.ws1e{word-spacing:0.498000px;}
.ws56{word-spacing:0.576000px;}
.ws1b{word-spacing:0.582000px;}
.ws1c{word-spacing:0.594000px;}
.ws20{word-spacing:0.600000px;}
.ws21{word-spacing:0.624000px;}
.ws22{word-spacing:0.630000px;}
.wsb{word-spacing:0.654000px;}
.ws2d{word-spacing:0.663000px;}
.ws15{word-spacing:0.678000px;}
.ws1d{word-spacing:0.708000px;}
.ws10{word-spacing:0.756000px;}
.ws67{word-spacing:0.960000px;}
.ws28{word-spacing:1.020000px;}
.ws1a{word-spacing:1.056000px;}
.ws48{word-spacing:1.200000px;}
.ws45{word-spacing:1.320000px;}
.ws2a{word-spacing:1.326000px;}
.ws17{word-spacing:1.338000px;}
.ws2c{word-spacing:1.734000px;}
.ws19{word-spacing:1.758000px;}
.wse{word-spacing:1.764000px;}
.wsc{word-spacing:1.770000px;}
.wsd{word-spacing:1.776000px;}
.ws11{word-spacing:1.800000px;}
.ws5d{word-spacing:1.920000px;}
.ws13{word-spacing:1.974000px;}
.ws1f{word-spacing:1.998000px;}
.ws12{word-spacing:2.166000px;}
.ws14{word-spacing:2.256000px;}
.ws39{word-spacing:3.120000px;}
.ws2b{word-spacing:3.213000px;}
.ws41{word-spacing:3.480000px;}
.ws49{word-spacing:3.900000px;}
.ws69{word-spacing:3.936000px;}
.ws4f{word-spacing:4.380000px;}
.ws65{word-spacing:4.512000px;}
.ws52{word-spacing:4.608000px;}
.ws4e{word-spacing:4.740000px;}
.ws59{word-spacing:4.896000px;}
.ws58{word-spacing:5.088000px;}
.ws61{word-spacing:5.472000px;}
.ws47{word-spacing:6.000000px;}
.ws43{word-spacing:6.060000px;}
.ws5b{word-spacing:6.384000px;}
.ws5a{word-spacing:7.104000px;}
.ws60{word-spacing:7.296000px;}
.ws5c{word-spacing:10.320000px;}
.ws16{word-spacing:11.376000px;}
.ws66{word-spacing:12.192000px;}
.ws64{word-spacing:14.064000px;}
.ws53{word-spacing:20.832000px;}
.ws29{word-spacing:22.185000px;}
.ws23{word-spacing:35.316000px;}
.ws24{word-spacing:39.276000px;}
.ws25{word-spacing:39.306000px;}
.ws46{word-spacing:2140.205400px;}
._11{margin-left:-2720.484600px;}
._13{margin-left:-10.855800px;}
._2{margin-left:-6.415200px;}
._4{margin-left:-5.069400px;}
._7{margin-left:-3.985176px;}
._3{margin-left:-2.937600px;}
._0{margin-left:-1.409400px;}
._1{width:1.971000px;}
._6{width:3.341970px;}
._10{width:4.538151px;}
._5{width:5.562009px;}
._8{width:7.190082px;}
._e{width:8.340336px;}
._f{width:9.381138px;}
._12{width:10.469664px;}
._14{width:11.554344px;}
._d{width:12.729600px;}
._b{width:14.422800px;}
._c{width:15.709800px;}
._a{width:20.614200px;}
._9{width:21.993000px;}
._15{width:23.044800px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:27.984000px;}
.fs7{font-size:31.482000px;}
.fs8{font-size:34.980000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y7a{bottom:100.533450px;}
.y4b{bottom:108.496050px;}
.y146{bottom:167.952600px;}
.y15e{bottom:167.952750px;}
.y78{bottom:167.952900px;}
.yf1{bottom:167.953050px;}
.y179{bottom:168.727500px;}
.y1c9{bottom:169.026300px;}
.y1a6{bottom:169.180650px;}
.y1cb{bottom:169.546650px;}
.y17c{bottom:169.626000px;}
.y77{bottom:183.432900px;}
.yf0{bottom:183.433050px;}
.y224{bottom:183.787200px;}
.y23f{bottom:183.997350px;}
.y15d{bottom:186.402750px;}
.y95{bottom:186.499350px;}
.y1f7{bottom:186.647700px;}
.y145{bottom:186.795750px;}
.y178{bottom:187.177500px;}
.y1c8{bottom:187.476300px;}
.y1a5{bottom:187.630650px;}
.y1ca{bottom:187.996650px;}
.y17b{bottom:188.076000px;}
.y76{bottom:198.912900px;}
.y15c{bottom:204.852750px;}
.y94{bottom:205.045950px;}
.y177{bottom:205.627500px;}
.y1c7{bottom:205.926300px;}
.y17a{bottom:206.526000px;}
.y223{bottom:208.125450px;}
.y23e{bottom:208.545900px;}
.y48{bottom:209.780850px;}
.y2a{bottom:210.009000px;}
.y1f6{bottom:213.846600px;}
.y144{bottom:214.142700px;}
.yc2{bottom:214.392900px;}
.y75{bottom:214.393050px;}
.y1a4{bottom:214.430250px;}
.yef{bottom:220.172850px;}
.y15b{bottom:223.302750px;}
.y93{bottom:223.592400px;}
.y47{bottom:224.060850px;}
.y29{bottom:224.289000px;}
.y1c6{bottom:224.376300px;}
.y23d{bottom:224.590650px;}
.yc1{bottom:229.872900px;}
.y74{bottom:229.873050px;}
.y222{bottom:232.463700px;}
.y1f5{bottom:232.541400px;}
.y1a3{bottom:232.880250px;}
.y143{bottom:232.985850px;}
.yee{bottom:238.652100px;}
.y23c{bottom:240.635250px;}
.y15a{bottom:241.752750px;}
.y92{bottom:242.139000px;}
.yc0{bottom:245.352900px;}
.y73{bottom:245.353050px;}
.y221{bottom:248.298150px;}
.y1f4{bottom:251.236350px;}
.y1a2{bottom:251.330250px;}
.y46{bottom:255.349350px;}
.y28{bottom:255.577500px;}
.yed{bottom:257.131500px;}
.y159{bottom:260.202750px;}
.y142{bottom:260.332800px;}
.y91{bottom:260.685450px;}
.ybf{bottom:260.832900px;}
.y72{bottom:260.833050px;}
.y220{bottom:264.132450px;}
.y23b{bottom:265.183800px;}
.y45{bottom:269.629350px;}
.y1c5{bottom:269.780250px;}
.y27{bottom:269.857500px;}
.y1f3{bottom:269.931300px;}
.yec{bottom:275.610750px;}
.ybe{bottom:276.312900px;}
.y71{bottom:276.313200px;}
.y1a1{bottom:278.284200px;}
.y141{bottom:279.175950px;}
.y90{bottom:279.231900px;}
.y23a{bottom:281.228400px;}
.y44{bottom:283.909350px;}
.y26{bottom:284.137500px;}
.y158{bottom:287.156700px;}
.y1c4{bottom:288.230250px;}
.y21f{bottom:288.470700px;}
.y1f2{bottom:288.626100px;}
.ybd{bottom:291.792900px;}
.y70{bottom:291.793200px;}
.yeb{bottom:294.090150px;}
.y1a0{bottom:296.734200px;}
.y239{bottom:297.273000px;}
.y118{bottom:297.572700px;}
.y8f{bottom:297.778500px;}
.y140{bottom:298.018950px;}
.y43{bottom:298.189350px;}
.y25{bottom:298.417500px;}
.y21e{bottom:304.305150px;}
.y157{bottom:305.606700px;}
.y1c3{bottom:306.680250px;}
.ybc{bottom:307.272900px;}
.y6f{bottom:307.273350px;}
.y1f1{bottom:307.321050px;}
.y42{bottom:312.469350px;}
.yea{bottom:312.569400px;}
.y24{bottom:312.697500px;}
.y19f{bottom:315.184200px;}
.y8e{bottom:316.324950px;}
.y238{bottom:321.821550px;}
.ybb{bottom:322.752900px;}
.y6e{bottom:322.753350px;}
.y156{bottom:324.056700px;}
.y117{bottom:324.760200px;}
.y1c2{bottom:325.130250px;}
.y13f{bottom:325.366050px;}
.y1f0{bottom:326.015850px;}
.y41{bottom:326.749350px;}
.y23{bottom:326.977500px;}
.y21d{bottom:328.643400px;}
.y19e{bottom:333.634200px;}
.y8d{bottom:334.871400px;}
.y237{bottom:337.866150px;}
.yba{bottom:338.232900px;}
.y6d{bottom:338.233350px;}
.ye9{bottom:339.552750px;}
.y40{bottom:341.029350px;}
.y22{bottom:341.257500px;}
.y155{bottom:342.506700px;}
.y116{bottom:343.443750px;}
.y1c1{bottom:343.580250px;}
.y13e{bottom:344.209050px;}
.y21c{bottom:344.477850px;}
.y19d{bottom:352.084200px;}
.y1ef{bottom:353.214750px;}
.y3f{bottom:355.309350px;}
.y21{bottom:355.537500px;}
.ye8{bottom:358.032000px;}
.y154{bottom:360.956700px;}
.y1c0{bottom:362.030250px;}
.y115{bottom:362.127300px;}
.y236{bottom:362.414700px;}
.y13d{bottom:363.052200px;}
.y21b{bottom:368.816100px;}
.y3e{bottom:369.589350px;}
.y20{bottom:369.817500px;}
.y19c{bottom:370.534200px;}
.y1ee{bottom:371.909550px;}
.yb9{bottom:374.972700px;}
.y6c{bottom:374.973150px;}
.ye7{bottom:376.511400px;}
.y235{bottom:378.459300px;}
.y153{bottom:379.406700px;}
.y1bf{bottom:380.480250px;}
.y114{bottom:380.810700px;}
.y13c{bottom:381.895200px;}
.y3d{bottom:383.869350px;}
.y1f{bottom:384.097500px;}
.y21a{bottom:384.650400px;}
.y19b{bottom:388.984200px;}
.y1ed{bottom:390.604500px;}
.yb8{bottom:393.771900px;}
.y6b{bottom:393.996150px;}
.ye6{bottom:394.990650px;}
.y8c{bottom:397.476300px;}
.y3c{bottom:398.149350px;}
.y1e{bottom:398.377500px;}
.y1be{bottom:398.930250px;}
.y219{bottom:400.484850px;}
.y13b{bottom:400.738350px;}
.y234{bottom:403.007850px;}
.y152{bottom:406.360650px;}
.y113{bottom:407.998200px;}
.y1ec{bottom:409.299300px;}
.y3b{bottom:412.429350px;}
.yb7{bottom:412.571100px;}
.y1d{bottom:412.657500px;}
.ye5{bottom:413.470050px;}
.y19a{bottom:415.938150px;}
.y218{bottom:416.319150px;}
.y1bd{bottom:417.380250px;}
.y233{bottom:419.052450px;}
.y6a{bottom:421.523100px;}
.y151{bottom:424.810650px;}
.y112{bottom:426.681750px;}
.y3a{bottom:426.709350px;}
.y1c{bottom:426.937500px;}
.y13a{bottom:428.085300px;}
.yb6{bottom:431.370150px;}
.ye4{bottom:431.949300px;}
.y232{bottom:435.097200px;}
.y1eb{bottom:436.498200px;}
.y69{bottom:440.546250px;}
.y217{bottom:440.657400px;}
.y39{bottom:440.989350px;}
.y1b{bottom:441.217500px;}
.y1bc{bottom:444.334200px;}
.y111{bottom:445.365300px;}
.y139{bottom:446.928450px;}
.yb5{bottom:450.169350px;}
.ye3{bottom:450.428700px;}
.y231{bottom:451.141800px;}
.y199{bottom:451.396050px;}
.y150{bottom:451.764600px;}
.y1ea{bottom:455.193000px;}
.y38{bottom:455.269350px;}
.y1a{bottom:455.497500px;}
.y216{bottom:456.491850px;}
.y68{bottom:459.569250px;}
.y1bb{bottom:462.784200px;}
.y110{bottom:464.048850px;}
.y138{bottom:465.771450px;}
.ye2{bottom:468.907950px;}
.yb4{bottom:468.968550px;}
.y37{bottom:469.549350px;}
.y19{bottom:469.777500px;}
.y198{bottom:469.846050px;}
.y14f{bottom:470.214600px;}
.y1e9{bottom:473.887950px;}
.y230{bottom:475.690350px;}
.y67{bottom:478.592250px;}
.y215{bottom:480.830100px;}
.y36{bottom:483.829350px;}
.y18{bottom:484.057500px;}
.y137{bottom:484.614600px;}
.ye1{bottom:487.387350px;}
.yb3{bottom:487.767600px;}
.y197{bottom:488.296050px;}
.y14e{bottom:488.664600px;}
.y1ba{bottom:489.738150px;}
.y10f{bottom:491.236350px;}
.y22f{bottom:491.734950px;}
.y1e8{bottom:492.582750px;}
.y214{bottom:496.664400px;}
.y66{bottom:497.615400px;}
.y35{bottom:498.109350px;}
.y17{bottom:498.337500px;}
.y136{bottom:503.457600px;}
.ye0{bottom:505.866600px;}
.y196{bottom:506.746050px;}
.y14d{bottom:507.114600px;}
.y1b9{bottom:508.188150px;}
.y10e{bottom:509.919900px;}
.y34{bottom:512.389350px;}
.y16{bottom:512.617500px;}
.yb2{bottom:515.070750px;}
.y22e{bottom:516.283500px;}
.y1e7{bottom:519.781650px;}
.y213{bottom:521.002650px;}
.y135{bottom:522.300750px;}
.ydf{bottom:524.345850px;}
.y65{bottom:525.142350px;}
.y195{bottom:525.196050px;}
.y33{bottom:526.669350px;}
.y15{bottom:526.897500px;}
.y10d{bottom:528.603450px;}
.y22d{bottom:532.328100px;}
.yb1{bottom:533.869950px;}
.y14c{bottom:534.068550px;}
.y1b8{bottom:535.142100px;}
.y212{bottom:536.837100px;}
.y1e6{bottom:538.476450px;}
.y32{bottom:540.949350px;}
.y134{bottom:541.143750px;}
.y14{bottom:541.177500px;}
.y194{bottom:543.646050px;}
.y64{bottom:544.165350px;}
.y10c{bottom:547.286850px;}
.yde{bottom:551.329200px;}
.y14b{bottom:552.518550px;}
.yb0{bottom:552.669000px;}
.y1b7{bottom:553.592100px;}
.y31{bottom:555.229350px;}
.y13{bottom:555.457500px;}
.y22c{bottom:556.876650px;}
.y1e5{bottom:557.171400px;}
.y211{bottom:561.175350px;}
.y63{bottom:563.188500px;}
.y10b{bottom:565.970400px;}
.y133{bottom:568.490850px;}
.y30{bottom:569.509350px;}
.y12{bottom:569.737500px;}
.ydd{bottom:569.808450px;}
.y193{bottom:570.600000px;}
.yaf{bottom:571.468200px;}
.y1b6{bottom:572.042100px;}
.y22b{bottom:572.921250px;}
.y1e4{bottom:575.866200px;}
.y210{bottom:577.009800px;}
.y14a{bottom:579.472500px;}
.y62{bottom:582.211500px;}
.y2f{bottom:583.789350px;}
.y11{bottom:584.017500px;}
.y10a{bottom:584.653950px;}
.y132{bottom:587.333850px;}
.ydc{bottom:588.287850px;}
.y192{bottom:589.050000px;}
.yae{bottom:590.267400px;}
.y1b5{bottom:590.492100px;}
.y22a{bottom:597.469800px;}
.y149{bottom:597.922500px;}
.y61{bottom:601.234500px;}
.y20f{bottom:601.348050px;}
.y1e3{bottom:603.065100px;}
.y109{bottom:603.337500px;}
.y131{bottom:606.177000px;}
.ydb{bottom:606.767100px;}
.y191{bottom:607.500000px;}
.yad{bottom:609.066450px;}
.y229{bottom:613.514400px;}
.y148{bottom:616.372500px;}
.y20e{bottom:617.182350px;}
.y1b4{bottom:617.446050px;}
.y60{bottom:620.257500px;}
.y1e2{bottom:621.760050px;}
.y108{bottom:622.021050px;}
.y130{bottom:625.020000px;}
.yda{bottom:625.246500px;}
.y190{bottom:625.950000px;}
.y228{bottom:629.559150px;}
.y10{bottom:632.313000px;}
.y147{bottom:634.822500px;}
.y1b3{bottom:635.896050px;}
.yac{bottom:636.369600px;}
.y5f{bottom:639.280650px;}
.y1e1{bottom:640.454850px;}
.y20d{bottom:641.520750px;}
.yd9{bottom:643.725750px;}
.y12f{bottom:643.863150px;}
.y18f{bottom:644.399850px;}
.y227{bottom:645.603750px;}
.yf{bottom:646.593000px;}
.y107{bottom:649.208550px;}
.y1b2{bottom:654.346050px;}
.yab{bottom:655.168800px;}
.y20c{bottom:657.355050px;}
.yd8{bottom:662.205150px;}
.y12e{bottom:662.706150px;}
.y18e{bottom:662.850000px;}
.y5e{bottom:666.807600px;}
.y1e0{bottom:667.653600px;}
.y106{bottom:667.892100px;}
.y226{bottom:670.152300px;}
.y176{bottom:671.353800px;}
.y1b1{bottom:672.796050px;}
.y160{bottom:673.602450px;}
.yaa{bottom:673.967850px;}
.y18d{bottom:681.300000px;}
.y12d{bottom:681.549300px;}
.y20b{bottom:683.946900px;}
.y5d{bottom:685.830600px;}
.y225{bottom:686.196900px;}
.y105{bottom:686.575500px;}
.yd7{bottom:689.188350px;}
.y175{bottom:689.803950px;}
.y1b0{bottom:691.246050px;}
.y15f{bottom:692.052450px;}
.ya9{bottom:692.767050px;}
.y2e{bottom:694.166100px;}
.ye{bottom:694.888500px;}
.y18c{bottom:699.750000px;}
.y1df{bottom:703.356450px;}
.y5c{bottom:704.853600px;}
.y104{bottom:705.259050px;}
.yd6{bottom:707.667600px;}
.y174{bottom:708.253950px;}
.y2d{bottom:708.586350px;}
.y12c{bottom:708.896250px;}
.yd{bottom:709.168500px;}
.y1af{bottom:709.696050px;}
.ya8{bottom:711.566250px;}
.y18b{bottom:718.200000px;}
.y20a{bottom:721.771650px;}
.y1de{bottom:722.051250px;}
.y2c{bottom:723.006600px;}
.yc{bottom:723.448500px;}
.y5b{bottom:723.876750px;}
.y103{bottom:723.942600px;}
.yd5{bottom:726.147000px;}
.y173{bottom:726.703800px;}
.y12b{bottom:727.739400px;}
.y1ae{bottom:728.146050px;}
.ya7{bottom:730.365300px;}
.y2b{bottom:737.426850px;}
.yb{bottom:737.728500px;}
.y209{bottom:740.481150px;}
.y1dd{bottom:740.746200px;}
.y5a{bottom:742.899750px;}
.yd4{bottom:744.626250px;}
.y172{bottom:745.153950px;}
.y12a{bottom:746.582400px;}
.y1ad{bottom:746.596050px;}
.ya6{bottom:749.164500px;}
.y102{bottom:751.130100px;}
.y208{bottom:759.190800px;}
.y1dc{bottom:759.441000px;}
.y252{bottom:761.362500px;}
.yd3{bottom:763.105650px;}
.y8b{bottom:763.501950px;}
.y18a{bottom:763.603800px;}
.y129{bottom:765.425550px;}
.y59{bottom:770.426700px;}
.y171{bottom:772.107750px;}
.y1ac{bottom:773.550000px;}
.ya5{bottom:776.467650px;}
.y251{bottom:777.147150px;}
.y207{bottom:777.900300px;}
.y1db{bottom:778.135950px;}
.y8a{bottom:782.048550px;}
.y189{bottom:782.053950px;}
.y128{bottom:784.268550px;}
.ya{bottom:786.015300px;}
.y262{bottom:786.079500px;}
.y101{bottom:786.821550px;}
.y58{bottom:789.449850px;}
.yd2{bottom:790.089000px;}
.y170{bottom:790.557900px;}
.ya4{bottom:795.266850px;}
.y206{bottom:796.609950px;}
.y1da{bottom:796.830900px;}
.y9{bottom:800.269800px;}
.y188{bottom:800.503950px;}
.y89{bottom:800.595000px;}
.y250{bottom:801.435900px;}
.y261{bottom:802.292550px;}
.y100{bottom:805.505100px;}
.y57{bottom:808.472850px;}
.yd1{bottom:808.568250px;}
.y16f{bottom:809.007900px;}
.y127{bottom:811.615650px;}
.ya3{bottom:814.065900px;}
.y8{bottom:814.524300px;}
.y205{bottom:815.319600px;}
.y24f{bottom:817.220700px;}
.y260{bottom:818.505600px;}
.y187{bottom:818.953800px;}
.y88{bottom:819.141600px;}
.y1d9{bottom:824.029650px;}
.yff{bottom:824.188500px;}
.yd0{bottom:827.047500px;}
.y16e{bottom:827.457750px;}
.y56{bottom:827.495850px;}
.y7{bottom:828.774300px;}
.y126{bottom:830.458800px;}
.ya2{bottom:832.865100px;}
.y25f{bottom:834.718650px;}
.y1ab{bottom:837.403950px;}
.y87{bottom:837.688050px;}
.y24e{bottom:841.509450px;}
.y204{bottom:842.533050px;}
.y1d8{bottom:842.724450px;}
.yfe{bottom:842.872050px;}
.ycf{bottom:845.526900px;}
.y16d{bottom:845.907750px;}
.y125{bottom:849.301800px;}
.ya1{bottom:851.664150px;}
.y55{bottom:855.022950px;}
.y24d{bottom:857.294100px;}
.y25e{bottom:859.435500px;}
.y203{bottom:861.242700px;}
.y1d7{bottom:861.419400px;}
.yfd{bottom:861.555600px;}
.yce{bottom:864.006150px;}
.y186{bottom:864.357750px;}
.y86{bottom:864.738450px;}
.y124{bottom:868.144950px;}
.ya0{bottom:870.463350px;}
.y16c{bottom:872.861700px;}
.y24c{bottom:873.078900px;}
.y25d{bottom:875.648550px;}
.y202{bottom:879.952350px;}
.y1d6{bottom:880.114350px;}
.ycd{bottom:882.485550px;}
.y54{bottom:882.549900px;}
.y6{bottom:882.589950px;}
.y185{bottom:882.807900px;}
.y123{bottom:886.987950px;}
.yfc{bottom:888.743100px;}
.y9f{bottom:889.262550px;}
.y16b{bottom:891.311700px;}
.y24b{bottom:897.367650px;}
.y201{bottom:898.662000px;}
.y1d5{bottom:898.809150px;}
.y85{bottom:900.292950px;}
.y25c{bottom:900.365550px;}
.ycc{bottom:900.964800px;}
.y1aa{bottom:901.257900px;}
.y122{bottom:905.831100px;}
.yfb{bottom:907.426500px;}
.y5{bottom:908.014950px;}
.y16a{bottom:909.761700px;}
.y53{bottom:910.076850px;}
.y24a{bottom:913.152300px;}
.y9e{bottom:916.565700px;}
.y25b{bottom:916.578600px;}
.y200{bottom:917.371650px;}
.y1d4{bottom:917.504100px;}
.y84{bottom:918.839400px;}
.ycb{bottom:919.444200px;}
.y121{bottom:924.674250px;}
.yfa{bottom:926.110050px;}
.y169{bottom:928.211850px;}
.y249{bottom:928.937100px;}
.y4{bottom:933.439950px;}
.y9d{bottom:935.364750px;}
.y1d3{bottom:936.198900px;}
.y83{bottom:937.385850px;}
.y52{bottom:937.603800px;}
.yca{bottom:937.923450px;}
.y25a{bottom:941.295600px;}
.y120{bottom:943.517250px;}
.y1ff{bottom:944.585100px;}
.y248{bottom:944.721900px;}
.yf9{bottom:944.793600px;}
.y168{bottom:946.661700px;}
.y184{bottom:946.661850px;}
.y9c{bottom:954.163950px;}
.y1d2{bottom:954.893850px;}
.y82{bottom:955.932300px;}
.yc9{bottom:956.402700px;}
.y259{bottom:957.508650px;}
.y11f{bottom:962.360250px;}
.y1fe{bottom:963.294750px;}
.yf8{bottom:963.477150px;}
.y167{bottom:965.111700px;}
.y183{bottom:965.111850px;}
.y51{bottom:965.130750px;}
.y247{bottom:969.010650px;}
.y9b{bottom:981.466950px;}
.y1fd{bottom:982.004250px;}
.y1d1{bottom:982.092600px;}
.yf7{bottom:982.160550px;}
.y258{bottom:982.225650px;}
.y81{bottom:982.982700px;}
.yc8{bottom:983.385900px;}
.y1a9{bottom:983.561700px;}
.y182{bottom:983.561850px;}
.y246{bottom:984.795300px;}
.y11e{bottom:989.707350px;}
.y166{bottom:992.065650px;}
.y50{bottom:992.657850px;}
.y9a{bottom:1000.266150px;}
.y1fc{bottom:1000.713900px;}
.y1d0{bottom:1000.787550px;}
.yf6{bottom:1000.844100px;}
.y80{bottom:1001.529300px;}
.yc7{bottom:1001.865300px;}
.y1a8{bottom:1002.011700px;}
.y257{bottom:1006.942500px;}
.y11d{bottom:1008.550350px;}
.y245{bottom:1009.084050px;}
.y165{bottom:1010.515650px;}
.y181{bottom:1010.515800px;}
.y99{bottom:1019.065200px;}
.y1fb{bottom:1019.423550px;}
.y1cf{bottom:1019.482350px;}
.yf5{bottom:1019.527650px;}
.y7f{bottom:1020.075750px;}
.y4f{bottom:1020.184800px;}
.yc6{bottom:1020.344550px;}
.y1a7{bottom:1020.461850px;}
.y256{bottom:1023.155700px;}
.y244{bottom:1024.868700px;}
.y11c{bottom:1027.393500px;}
.y4a{bottom:1028.125950px;}
.y79{bottom:1028.551200px;}
.y164{bottom:1028.965650px;}
.y180{bottom:1028.965800px;}
.y98{bottom:1037.864400px;}
.y1ce{bottom:1038.177150px;}
.yf4{bottom:1038.211200px;}
.y7e{bottom:1038.622350px;}
.yc5{bottom:1038.823950px;}
.y11b{bottom:1046.236500px;}
.y1fa{bottom:1046.637000px;}
.y163{bottom:1047.415650px;}
.y17f{bottom:1047.415800px;}
.y4e{bottom:1047.711750px;}
.y255{bottom:1047.872550px;}
.y243{bottom:1049.157450px;}
.y3{bottom:1055.038200px;}
.y49{bottom:1055.159700px;}
.y97{bottom:1056.663600px;}
.yf3{bottom:1056.894750px;}
.yc4{bottom:1057.303200px;}
.y254{bottom:1064.085600px;}
.y242{bottom:1064.942250px;}
.y11a{bottom:1065.079650px;}
.y1f9{bottom:1065.346650px;}
.y1cd{bottom:1065.376050px;}
.y7d{bottom:1065.672750px;}
.y162{bottom:1065.865650px;}
.y17e{bottom:1065.865800px;}
.y2{bottom:1074.532200px;}
.y4d{bottom:1075.238700px;}
.y119{bottom:1083.922650px;}
.y96{bottom:1083.966600px;}
.y1f8{bottom:1084.056150px;}
.y1cc{bottom:1084.070850px;}
.yf2{bottom:1084.082250px;}
.y7c{bottom:1084.219350px;}
.yc3{bottom:1084.286550px;}
.y161{bottom:1084.315650px;}
.y17d{bottom:1084.315800px;}
.y253{bottom:1088.802600px;}
.y241{bottom:1089.230850px;}
.y1{bottom:1094.026200px;}
.y4c{bottom:1102.765650px;}
.y7b{bottom:1102.765800px;}
.y240{bottom:1105.015650px;}
.hb{height:29.408203px;}
.h12{height:31.233398px;}
.hc{height:33.304688px;}
.h11{height:33.609375px;}
.h13{height:34.637695px;}
.ha{height:35.336426px;}
.h10{height:35.695312px;}
.h9{height:35.709961px;}
.h15{height:36.794367px;}
.h2{height:37.467773px;}
.h3{height:37.810547px;}
.h8{height:37.926270px;}
.h4{height:40.157227px;}
.h14{height:41.393663px;}
.hd{height:41.630859px;}
.he{height:44.619141px;}
.hf{height:45.992959px;}
.h7{height:47.920898px;}
.h16{height:49.482422px;}
.h5{height:62.446289px;}
.h6{height:74.223633px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:45.411000px;}
.x18{left:50.150250px;}
.x11{left:53.531700px;}
.xb{left:106.299000px;}
.x6{left:114.178350px;}
.x12{left:119.055150px;}
.x5{left:124.010850px;}
.x13{left:127.599000px;}
.x17{left:130.463250px;}
.x4{left:136.903350px;}
.x9{left:225.550800px;}
.x7{left:286.668000px;}
.x8{left:307.393050px;}
.xa{left:336.322800px;}
.x1b{left:459.212550px;}
.xf{left:461.338650px;}
.x1a{left:476.220450px;}
.xd{left:477.366000px;}
.xc{left:482.136000px;}
.xe{left:483.958500px;}
.x2{left:517.178400px;}
.x3{left:546.932400px;}
.x1{left:570.449400px;}
.x16{left:600.081600px;}
.x14{left:825.444450px;}
.x19{left:830.088900px;}
.x15{left:833.470350px;}
@media print{
.v1{vertical-align:-28.311467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:14.208000pt;}
.v2{vertical-align:15.984000pt;}
.v3{vertical-align:17.760000pt;}
.ls5a{letter-spacing:-3.893333pt;}
.ls79{letter-spacing:-3.584000pt;}
.ls67{letter-spacing:-1.834667pt;}
.ls7a{letter-spacing:-1.706667pt;}
.ls76{letter-spacing:-1.066667pt;}
.ls5d{letter-spacing:-0.906667pt;}
.ls7d{letter-spacing:-0.853333pt;}
.ls7e{letter-spacing:-0.426667pt;}
.ls69{letter-spacing:-0.320000pt;}
.ls59{letter-spacing:0.000000pt;}
.ls5f{letter-spacing:0.002667pt;}
.ls75{letter-spacing:0.003200pt;}
.ls65{letter-spacing:0.008533pt;}
.ls64{letter-spacing:0.009067pt;}
.ls66{letter-spacing:0.009600pt;}
.ls4{letter-spacing:0.032011pt;}
.ls7c{letter-spacing:0.298667pt;}
.ls6{letter-spacing:0.440000pt;}
.ls5{letter-spacing:0.453333pt;}
.ls36{letter-spacing:0.488000pt;}
.ls25{letter-spacing:0.496000pt;}
.ls6e{letter-spacing:0.533333pt;}
.ls6b{letter-spacing:0.555045pt;}
.ls78{letter-spacing:0.601173pt;}
.ls62{letter-spacing:0.616480pt;}
.ls6d{letter-spacing:0.617013pt;}
.ls72{letter-spacing:0.621867pt;}
.ls68{letter-spacing:0.635413pt;}
.ls6f{letter-spacing:0.800000pt;}
.ls7b{letter-spacing:0.853333pt;}
.ls57{letter-spacing:0.861333pt;}
.ls6a{letter-spacing:0.960000pt;}
.ls70{letter-spacing:1.040533pt;}
.ls74{letter-spacing:1.043733pt;}
.ls63{letter-spacing:1.057600pt;}
.ls73{letter-spacing:1.058133pt;}
.ls61{letter-spacing:1.066667pt;}
.ls77{letter-spacing:1.372149pt;}
.ls58{letter-spacing:1.768000pt;}
.ls55{letter-spacing:1.770667pt;}
.ls60{letter-spacing:2.080000pt;}
.ls5b{letter-spacing:2.218667pt;}
.ls71{letter-spacing:2.332373pt;}
.ls6c{letter-spacing:2.442773pt;}
.ls0{letter-spacing:3.120000pt;}
.ls5c{letter-spacing:3.258667pt;}
.ls38{letter-spacing:3.728000pt;}
.ls43{letter-spacing:3.752019pt;}
.ls40{letter-spacing:3.760000pt;}
.ls44{letter-spacing:3.776000pt;}
.ls42{letter-spacing:3.781333pt;}
.ls41{letter-spacing:3.792000pt;}
.ls39{letter-spacing:3.875184pt;}
.ls23{letter-spacing:4.282667pt;}
.ls37{letter-spacing:4.301352pt;}
.ls20{letter-spacing:4.330667pt;}
.ls24{letter-spacing:4.336000pt;}
.ls2{letter-spacing:4.341333pt;}
.ls22{letter-spacing:4.346667pt;}
.ls21{letter-spacing:4.352000pt;}
.ls1{letter-spacing:4.357333pt;}
.ls3{letter-spacing:4.368000pt;}
.ls35{letter-spacing:4.373333pt;}
.ls4c{letter-spacing:4.416000pt;}
.ls4b{letter-spacing:4.432000pt;}
.ls4a{letter-spacing:4.448000pt;}
.ls49{letter-spacing:4.450667pt;}
.ls4d{letter-spacing:4.464000pt;}
.ls53{letter-spacing:4.554667pt;}
.ls52{letter-spacing:4.613352pt;}
.ls4f{letter-spacing:4.624000pt;}
.ls50{letter-spacing:4.626667pt;}
.ls51{letter-spacing:4.629333pt;}
.ls4e{letter-spacing:4.634667pt;}
.ls54{letter-spacing:4.642699pt;}
.ls9{letter-spacing:4.805333pt;}
.lsa{letter-spacing:4.821333pt;}
.ls1d{letter-spacing:4.936019pt;}
.ls1e{letter-spacing:4.954667pt;}
.ls1f{letter-spacing:4.957333pt;}
.ls3a{letter-spacing:5.104037pt;}
.ls3f{letter-spacing:5.114667pt;}
.ls3d{letter-spacing:5.146667pt;}
.ls3b{letter-spacing:5.152000pt;}
.ls3e{letter-spacing:5.157333pt;}
.ls3c{letter-spacing:5.178667pt;}
.ls8{letter-spacing:5.434667pt;}
.ls7{letter-spacing:5.485333pt;}
.ls56{letter-spacing:6.320000pt;}
.ls31{letter-spacing:6.528000pt;}
.ls33{letter-spacing:6.549333pt;}
.ls32{letter-spacing:6.560000pt;}
.ls30{letter-spacing:6.565333pt;}
.ls34{letter-spacing:6.570667pt;}
.ls2f{letter-spacing:7.480051pt;}
.ls2e{letter-spacing:7.506667pt;}
.ls26{letter-spacing:9.365333pt;}
.ls27{letter-spacing:9.386667pt;}
.ls29{letter-spacing:10.592000pt;}
.ls2c{letter-spacing:10.597333pt;}
.ls2b{letter-spacing:10.602667pt;}
.ls2d{letter-spacing:10.618667pt;}
.ls2a{letter-spacing:10.634667pt;}
.ls16{letter-spacing:11.797333pt;}
.ls15{letter-spacing:11.802667pt;}
.ls13{letter-spacing:11.818667pt;}
.ls14{letter-spacing:11.840000pt;}
.ls17{letter-spacing:11.845333pt;}
.ls28{letter-spacing:12.181339pt;}
.lsc{letter-spacing:12.440517pt;}
.lsb{letter-spacing:12.458664pt;}
.lse{letter-spacing:12.458667pt;}
.lsd{letter-spacing:12.474667pt;}
.lsf{letter-spacing:12.480000pt;}
.ls12{letter-spacing:12.906667pt;}
.ls11{letter-spacing:12.928000pt;}
.ls10{letter-spacing:12.954667pt;}
.ls47{letter-spacing:13.733333pt;}
.ls45{letter-spacing:13.733352pt;}
.ls48{letter-spacing:13.733851pt;}
.ls46{letter-spacing:13.754667pt;}
.ls1b{letter-spacing:15.386667pt;}
.ls1c{letter-spacing:15.469352pt;}
.ls18{letter-spacing:15.474632pt;}
.ls19{letter-spacing:15.488000pt;}
.ls1a{letter-spacing:15.496000pt;}
.ls5e{letter-spacing:1922.866667pt;}
.ws6{word-spacing:-24.400000pt;}
.ws1{word-spacing:-21.200000pt;}
.ws32{word-spacing:-13.120000pt;}
.ws3b{word-spacing:-12.853333pt;}
.ws3a{word-spacing:-12.586667pt;}
.ws3{word-spacing:-12.464000pt;}
.ws31{word-spacing:-12.053333pt;}
.ws5{word-spacing:-12.016000pt;}
.ws38{word-spacing:-11.733333pt;}
.ws0{word-spacing:-10.848000pt;}
.ws4{word-spacing:-10.698667pt;}
.ws5e{word-spacing:-10.496000pt;}
.ws2{word-spacing:-10.245333pt;}
.ws5f{word-spacing:-9.941333pt;}
.ws35{word-spacing:-9.642667pt;}
.ws7{word-spacing:-9.338667pt;}
.ws2f{word-spacing:-8.437333pt;}
.ws34{word-spacing:-7.808000pt;}
.ws3f{word-spacing:-7.648960pt;}
.ws33{word-spacing:-7.027093pt;}
.ws30{word-spacing:-6.324384pt;}
.ws26{word-spacing:-6.320000pt;}
.ws50{word-spacing:-6.058667pt;}
.ws3c{word-spacing:-5.621675pt;}
.ws18{word-spacing:-3.354667pt;}
.wsa{word-spacing:-3.120000pt;}
.ws4a{word-spacing:-1.813333pt;}
.ws9{word-spacing:-1.520000pt;}
.ws3e{word-spacing:-1.280000pt;}
.ws57{word-spacing:-1.237333pt;}
.ws62{word-spacing:-1.194667pt;}
.ws44{word-spacing:-1.173333pt;}
.ws37{word-spacing:-1.066667pt;}
.ws36{word-spacing:-1.013333pt;}
.ws3d{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.861333pt;}
.ws63{word-spacing:-0.853333pt;}
.ws55{word-spacing:-0.682667pt;}
.ws42{word-spacing:-0.533333pt;}
.ws51{word-spacing:-0.512000pt;}
.ws54{word-spacing:-0.469333pt;}
.ws40{word-spacing:-0.426667pt;}
.ws4c{word-spacing:-0.266667pt;}
.ws2e{word-spacing:-0.037333pt;}
.ws8{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.053333pt;}
.ws4d{word-spacing:0.320000pt;}
.ws68{word-spacing:0.426667pt;}
.wsf{word-spacing:0.437333pt;}
.ws1e{word-spacing:0.442667pt;}
.ws56{word-spacing:0.512000pt;}
.ws1b{word-spacing:0.517333pt;}
.ws1c{word-spacing:0.528000pt;}
.ws20{word-spacing:0.533333pt;}
.ws21{word-spacing:0.554667pt;}
.ws22{word-spacing:0.560000pt;}
.wsb{word-spacing:0.581333pt;}
.ws2d{word-spacing:0.589333pt;}
.ws15{word-spacing:0.602667pt;}
.ws1d{word-spacing:0.629333pt;}
.ws10{word-spacing:0.672000pt;}
.ws67{word-spacing:0.853333pt;}
.ws28{word-spacing:0.906667pt;}
.ws1a{word-spacing:0.938667pt;}
.ws48{word-spacing:1.066667pt;}
.ws45{word-spacing:1.173333pt;}
.ws2a{word-spacing:1.178667pt;}
.ws17{word-spacing:1.189333pt;}
.ws2c{word-spacing:1.541333pt;}
.ws19{word-spacing:1.562667pt;}
.wse{word-spacing:1.568000pt;}
.wsc{word-spacing:1.573333pt;}
.wsd{word-spacing:1.578667pt;}
.ws11{word-spacing:1.600000pt;}
.ws5d{word-spacing:1.706667pt;}
.ws13{word-spacing:1.754667pt;}
.ws1f{word-spacing:1.776000pt;}
.ws12{word-spacing:1.925333pt;}
.ws14{word-spacing:2.005333pt;}
.ws39{word-spacing:2.773333pt;}
.ws2b{word-spacing:2.856000pt;}
.ws41{word-spacing:3.093333pt;}
.ws49{word-spacing:3.466667pt;}
.ws69{word-spacing:3.498667pt;}
.ws4f{word-spacing:3.893333pt;}
.ws65{word-spacing:4.010667pt;}
.ws52{word-spacing:4.096000pt;}
.ws4e{word-spacing:4.213333pt;}
.ws59{word-spacing:4.352000pt;}
.ws58{word-spacing:4.522667pt;}
.ws61{word-spacing:4.864000pt;}
.ws47{word-spacing:5.333333pt;}
.ws43{word-spacing:5.386667pt;}
.ws5b{word-spacing:5.674667pt;}
.ws5a{word-spacing:6.314667pt;}
.ws60{word-spacing:6.485333pt;}
.ws5c{word-spacing:9.173333pt;}
.ws16{word-spacing:10.112000pt;}
.ws66{word-spacing:10.837333pt;}
.ws64{word-spacing:12.501333pt;}
.ws53{word-spacing:18.517333pt;}
.ws29{word-spacing:19.720000pt;}
.ws23{word-spacing:31.392000pt;}
.ws24{word-spacing:34.912000pt;}
.ws25{word-spacing:34.938667pt;}
.ws46{word-spacing:1902.404800pt;}
._11{margin-left:-2418.208533pt;}
._13{margin-left:-9.649600pt;}
._2{margin-left:-5.702400pt;}
._4{margin-left:-4.506133pt;}
._7{margin-left:-3.542379pt;}
._3{margin-left:-2.611200pt;}
._0{margin-left:-1.252800pt;}
._1{width:1.752000pt;}
._6{width:2.970640pt;}
._10{width:4.033912pt;}
._5{width:4.944008pt;}
._8{width:6.391184pt;}
._e{width:7.413632pt;}
._f{width:8.338789pt;}
._12{width:9.306368pt;}
._14{width:10.270528pt;}
._d{width:11.315200pt;}
._b{width:12.820267pt;}
._c{width:13.964267pt;}
._a{width:18.323733pt;}
._9{width:19.549333pt;}
._15{width:20.484267pt;}
.fs9{font-size:24.874667pt;}
.fs7{font-size:27.984000pt;}
.fs8{font-size:31.093333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y7a{bottom:89.363067pt;}
.y4b{bottom:96.440933pt;}
.y146{bottom:149.291200pt;}
.y15e{bottom:149.291333pt;}
.y78{bottom:149.291467pt;}
.yf1{bottom:149.291600pt;}
.y179{bottom:149.980000pt;}
.y1c9{bottom:150.245600pt;}
.y1a6{bottom:150.382800pt;}
.y1cb{bottom:150.708133pt;}
.y17c{bottom:150.778667pt;}
.y77{bottom:163.051467pt;}
.yf0{bottom:163.051600pt;}
.y224{bottom:163.366400pt;}
.y23f{bottom:163.553200pt;}
.y15d{bottom:165.691333pt;}
.y95{bottom:165.777200pt;}
.y1f7{bottom:165.909067pt;}
.y145{bottom:166.040667pt;}
.y178{bottom:166.380000pt;}
.y1c8{bottom:166.645600pt;}
.y1a5{bottom:166.782800pt;}
.y1ca{bottom:167.108133pt;}
.y17b{bottom:167.178667pt;}
.y76{bottom:176.811467pt;}
.y15c{bottom:182.091333pt;}
.y94{bottom:182.263067pt;}
.y177{bottom:182.780000pt;}
.y1c7{bottom:183.045600pt;}
.y17a{bottom:183.578667pt;}
.y223{bottom:185.000400pt;}
.y23e{bottom:185.374133pt;}
.y48{bottom:186.471867pt;}
.y2a{bottom:186.674667pt;}
.y1f6{bottom:190.085867pt;}
.y144{bottom:190.349067pt;}
.yc2{bottom:190.571467pt;}
.y75{bottom:190.571600pt;}
.y1a4{bottom:190.604667pt;}
.yef{bottom:195.709200pt;}
.y15b{bottom:198.491333pt;}
.y93{bottom:198.748800pt;}
.y47{bottom:199.165200pt;}
.y29{bottom:199.368000pt;}
.y1c6{bottom:199.445600pt;}
.y23d{bottom:199.636133pt;}
.yc1{bottom:204.331467pt;}
.y74{bottom:204.331600pt;}
.y222{bottom:206.634400pt;}
.y1f5{bottom:206.703467pt;}
.y1a3{bottom:207.004667pt;}
.y143{bottom:207.098533pt;}
.yee{bottom:212.135200pt;}
.y23c{bottom:213.898000pt;}
.y15a{bottom:214.891333pt;}
.y92{bottom:215.234667pt;}
.yc0{bottom:218.091467pt;}
.y73{bottom:218.091600pt;}
.y221{bottom:220.709467pt;}
.y1f4{bottom:223.321200pt;}
.y1a2{bottom:223.404667pt;}
.y46{bottom:226.977200pt;}
.y28{bottom:227.180000pt;}
.yed{bottom:228.561333pt;}
.y159{bottom:231.291333pt;}
.y142{bottom:231.406933pt;}
.y91{bottom:231.720400pt;}
.ybf{bottom:231.851467pt;}
.y72{bottom:231.851600pt;}
.y220{bottom:234.784400pt;}
.y23b{bottom:235.718933pt;}
.y45{bottom:239.670533pt;}
.y1c5{bottom:239.804667pt;}
.y27{bottom:239.873333pt;}
.y1f3{bottom:239.938933pt;}
.yec{bottom:244.987333pt;}
.ybe{bottom:245.611467pt;}
.y71{bottom:245.611733pt;}
.y1a1{bottom:247.363733pt;}
.y141{bottom:248.156400pt;}
.y90{bottom:248.206133pt;}
.y23a{bottom:249.980800pt;}
.y44{bottom:252.363867pt;}
.y26{bottom:252.566667pt;}
.y158{bottom:255.250400pt;}
.y1c4{bottom:256.204667pt;}
.y21f{bottom:256.418400pt;}
.y1f2{bottom:256.556533pt;}
.ybd{bottom:259.371467pt;}
.y70{bottom:259.371733pt;}
.yeb{bottom:261.413467pt;}
.y1a0{bottom:263.763733pt;}
.y239{bottom:264.242667pt;}
.y118{bottom:264.509067pt;}
.y8f{bottom:264.692000pt;}
.y140{bottom:264.905733pt;}
.y43{bottom:265.057200pt;}
.y25{bottom:265.260000pt;}
.y21e{bottom:270.493467pt;}
.y157{bottom:271.650400pt;}
.y1c3{bottom:272.604667pt;}
.ybc{bottom:273.131467pt;}
.y6f{bottom:273.131867pt;}
.y1f1{bottom:273.174267pt;}
.y42{bottom:277.750533pt;}
.yea{bottom:277.839467pt;}
.y24{bottom:277.953333pt;}
.y19f{bottom:280.163733pt;}
.y8e{bottom:281.177733pt;}
.y238{bottom:286.063600pt;}
.ybb{bottom:286.891467pt;}
.y6e{bottom:286.891867pt;}
.y156{bottom:288.050400pt;}
.y117{bottom:288.675733pt;}
.y1c2{bottom:289.004667pt;}
.y13f{bottom:289.214267pt;}
.y1f0{bottom:289.791867pt;}
.y41{bottom:290.443867pt;}
.y23{bottom:290.646667pt;}
.y21d{bottom:292.127467pt;}
.y19e{bottom:296.563733pt;}
.y8d{bottom:297.663467pt;}
.y237{bottom:300.325467pt;}
.yba{bottom:300.651467pt;}
.y6d{bottom:300.651867pt;}
.ye9{bottom:301.824667pt;}
.y40{bottom:303.137200pt;}
.y22{bottom:303.340000pt;}
.y155{bottom:304.450400pt;}
.y116{bottom:305.283333pt;}
.y1c1{bottom:305.404667pt;}
.y13e{bottom:305.963600pt;}
.y21c{bottom:306.202533pt;}
.y19d{bottom:312.963733pt;}
.y1ef{bottom:313.968667pt;}
.y3f{bottom:315.830533pt;}
.y21{bottom:316.033333pt;}
.ye8{bottom:318.250667pt;}
.y154{bottom:320.850400pt;}
.y1c0{bottom:321.804667pt;}
.y115{bottom:321.890933pt;}
.y236{bottom:322.146400pt;}
.y13d{bottom:322.713067pt;}
.y21b{bottom:327.836533pt;}
.y3e{bottom:328.523867pt;}
.y20{bottom:328.726667pt;}
.y19c{bottom:329.363733pt;}
.y1ee{bottom:330.586267pt;}
.yb9{bottom:333.309067pt;}
.y6c{bottom:333.309467pt;}
.ye7{bottom:334.676800pt;}
.y235{bottom:336.408267pt;}
.y153{bottom:337.250400pt;}
.y1bf{bottom:338.204667pt;}
.y114{bottom:338.498400pt;}
.y13c{bottom:339.462400pt;}
.y3d{bottom:341.217200pt;}
.y1f{bottom:341.420000pt;}
.y21a{bottom:341.911467pt;}
.y19b{bottom:345.763733pt;}
.y1ed{bottom:347.204000pt;}
.yb8{bottom:350.019467pt;}
.y6b{bottom:350.218800pt;}
.ye6{bottom:351.102800pt;}
.y8c{bottom:353.312267pt;}
.y3c{bottom:353.910533pt;}
.y1e{bottom:354.113333pt;}
.y1be{bottom:354.604667pt;}
.y219{bottom:355.986533pt;}
.y13b{bottom:356.211867pt;}
.y234{bottom:358.229200pt;}
.y152{bottom:361.209467pt;}
.y113{bottom:362.665067pt;}
.y1ec{bottom:363.821600pt;}
.y3b{bottom:366.603867pt;}
.yb7{bottom:366.729867pt;}
.y1d{bottom:366.806667pt;}
.ye5{bottom:367.528933pt;}
.y19a{bottom:369.722800pt;}
.y218{bottom:370.061467pt;}
.y1bd{bottom:371.004667pt;}
.y233{bottom:372.491067pt;}
.y6a{bottom:374.687200pt;}
.y151{bottom:377.609467pt;}
.y112{bottom:379.272667pt;}
.y3a{bottom:379.297200pt;}
.y1c{bottom:379.500000pt;}
.y13a{bottom:380.520267pt;}
.yb6{bottom:383.440133pt;}
.ye4{bottom:383.954933pt;}
.y232{bottom:386.753067pt;}
.y1eb{bottom:387.998400pt;}
.y69{bottom:391.596667pt;}
.y217{bottom:391.695467pt;}
.y39{bottom:391.990533pt;}
.y1b{bottom:392.193333pt;}
.y1bc{bottom:394.963733pt;}
.y111{bottom:395.880267pt;}
.y139{bottom:397.269733pt;}
.yb5{bottom:400.150533pt;}
.ye3{bottom:400.381067pt;}
.y231{bottom:401.014933pt;}
.y199{bottom:401.240933pt;}
.y150{bottom:401.568533pt;}
.y1ea{bottom:404.616000pt;}
.y38{bottom:404.683867pt;}
.y1a{bottom:404.886667pt;}
.y216{bottom:405.770533pt;}
.y68{bottom:408.506000pt;}
.y1bb{bottom:411.363733pt;}
.y110{bottom:412.487867pt;}
.y138{bottom:414.019067pt;}
.ye2{bottom:416.807067pt;}
.yb4{bottom:416.860933pt;}
.y37{bottom:417.377200pt;}
.y19{bottom:417.580000pt;}
.y198{bottom:417.640933pt;}
.y14f{bottom:417.968533pt;}
.y1e9{bottom:421.233733pt;}
.y230{bottom:422.835867pt;}
.y67{bottom:425.415333pt;}
.y215{bottom:427.404533pt;}
.y36{bottom:430.070533pt;}
.y18{bottom:430.273333pt;}
.y137{bottom:430.768533pt;}
.ye1{bottom:433.233200pt;}
.yb3{bottom:433.571200pt;}
.y197{bottom:434.040933pt;}
.y14e{bottom:434.368533pt;}
.y1ba{bottom:435.322800pt;}
.y10f{bottom:436.654533pt;}
.y22f{bottom:437.097733pt;}
.y1e8{bottom:437.851333pt;}
.y214{bottom:441.479467pt;}
.y66{bottom:442.324800pt;}
.y35{bottom:442.763867pt;}
.y17{bottom:442.966667pt;}
.y136{bottom:447.517867pt;}
.ye0{bottom:449.659200pt;}
.y196{bottom:450.440933pt;}
.y14d{bottom:450.768533pt;}
.y1b9{bottom:451.722800pt;}
.y10e{bottom:453.262133pt;}
.y34{bottom:455.457200pt;}
.y16{bottom:455.660000pt;}
.yb2{bottom:457.840667pt;}
.y22e{bottom:458.918667pt;}
.y1e7{bottom:462.028133pt;}
.y213{bottom:463.113467pt;}
.y135{bottom:464.267333pt;}
.ydf{bottom:466.085200pt;}
.y65{bottom:466.793200pt;}
.y195{bottom:466.840933pt;}
.y33{bottom:468.150533pt;}
.y15{bottom:468.353333pt;}
.y10d{bottom:469.869733pt;}
.y22d{bottom:473.180533pt;}
.yb1{bottom:474.551067pt;}
.y14c{bottom:474.727600pt;}
.y1b8{bottom:475.681867pt;}
.y212{bottom:477.188533pt;}
.y1e6{bottom:478.645733pt;}
.y32{bottom:480.843867pt;}
.y134{bottom:481.016667pt;}
.y14{bottom:481.046667pt;}
.y194{bottom:483.240933pt;}
.y64{bottom:483.702533pt;}
.y10c{bottom:486.477200pt;}
.yde{bottom:490.070400pt;}
.y14b{bottom:491.127600pt;}
.yb0{bottom:491.261333pt;}
.y1b7{bottom:492.081867pt;}
.y31{bottom:493.537200pt;}
.y13{bottom:493.740000pt;}
.y22c{bottom:495.001467pt;}
.y1e5{bottom:495.263467pt;}
.y211{bottom:498.822533pt;}
.y63{bottom:500.612000pt;}
.y10b{bottom:503.084800pt;}
.y133{bottom:505.325200pt;}
.y30{bottom:506.230533pt;}
.y12{bottom:506.433333pt;}
.ydd{bottom:506.496400pt;}
.y193{bottom:507.200000pt;}
.yaf{bottom:507.971733pt;}
.y1b6{bottom:508.481867pt;}
.y22b{bottom:509.263333pt;}
.y1e4{bottom:511.881067pt;}
.y210{bottom:512.897600pt;}
.y14a{bottom:515.086667pt;}
.y62{bottom:517.521333pt;}
.y2f{bottom:518.923867pt;}
.y11{bottom:519.126667pt;}
.y10a{bottom:519.692400pt;}
.y132{bottom:522.074533pt;}
.ydc{bottom:522.922533pt;}
.y192{bottom:523.600000pt;}
.yae{bottom:524.682133pt;}
.y1b5{bottom:524.881867pt;}
.y22a{bottom:531.084267pt;}
.y149{bottom:531.486667pt;}
.y61{bottom:534.430667pt;}
.y20f{bottom:534.531600pt;}
.y1e3{bottom:536.057867pt;}
.y109{bottom:536.300000pt;}
.y131{bottom:538.824000pt;}
.ydb{bottom:539.348533pt;}
.y191{bottom:540.000000pt;}
.yad{bottom:541.392400pt;}
.y229{bottom:545.346133pt;}
.y148{bottom:547.886667pt;}
.y20e{bottom:548.606533pt;}
.y1b4{bottom:548.840933pt;}
.y60{bottom:551.340000pt;}
.y1e2{bottom:552.675600pt;}
.y108{bottom:552.907600pt;}
.y130{bottom:555.573333pt;}
.yda{bottom:555.774667pt;}
.y190{bottom:556.400000pt;}
.y228{bottom:559.608133pt;}
.y10{bottom:562.056000pt;}
.y147{bottom:564.286667pt;}
.y1b3{bottom:565.240933pt;}
.yac{bottom:565.661867pt;}
.y5f{bottom:568.249467pt;}
.y1e1{bottom:569.293200pt;}
.y20d{bottom:570.240667pt;}
.yd9{bottom:572.200667pt;}
.y12f{bottom:572.322800pt;}
.y18f{bottom:572.799867pt;}
.y227{bottom:573.870000pt;}
.yf{bottom:574.749333pt;}
.y107{bottom:577.074267pt;}
.y1b2{bottom:581.640933pt;}
.yab{bottom:582.372267pt;}
.y20c{bottom:584.315600pt;}
.yd8{bottom:588.626800pt;}
.y12e{bottom:589.072133pt;}
.y18e{bottom:589.200000pt;}
.y5e{bottom:592.717867pt;}
.y1e0{bottom:593.469867pt;}
.y106{bottom:593.681867pt;}
.y226{bottom:595.690933pt;}
.y176{bottom:596.758933pt;}
.y1b1{bottom:598.040933pt;}
.y160{bottom:598.757733pt;}
.yaa{bottom:599.082533pt;}
.y18d{bottom:605.600000pt;}
.y12d{bottom:605.821600pt;}
.y20b{bottom:607.952800pt;}
.y5d{bottom:609.627200pt;}
.y225{bottom:609.952800pt;}
.y105{bottom:610.289333pt;}
.yd7{bottom:612.611867pt;}
.y175{bottom:613.159067pt;}
.y1b0{bottom:614.440933pt;}
.y15f{bottom:615.157733pt;}
.ya9{bottom:615.792933pt;}
.y2e{bottom:617.036533pt;}
.ye{bottom:617.678667pt;}
.y18c{bottom:622.000000pt;}
.y1df{bottom:625.205733pt;}
.y5c{bottom:626.536533pt;}
.y104{bottom:626.896933pt;}
.yd6{bottom:629.037867pt;}
.y174{bottom:629.559067pt;}
.y2d{bottom:629.854533pt;}
.y12c{bottom:630.130000pt;}
.yd{bottom:630.372000pt;}
.y1af{bottom:630.840933pt;}
.ya8{bottom:632.503333pt;}
.y18b{bottom:638.400000pt;}
.y20a{bottom:641.574800pt;}
.y1de{bottom:641.823333pt;}
.y2c{bottom:642.672533pt;}
.yc{bottom:643.065333pt;}
.y5b{bottom:643.446000pt;}
.y103{bottom:643.504533pt;}
.yd5{bottom:645.464000pt;}
.y173{bottom:645.958933pt;}
.y12b{bottom:646.879467pt;}
.y1ae{bottom:647.240933pt;}
.ya7{bottom:649.213600pt;}
.y2b{bottom:655.490533pt;}
.yb{bottom:655.758667pt;}
.y209{bottom:658.205467pt;}
.y1dd{bottom:658.441067pt;}
.y5a{bottom:660.355333pt;}
.yd4{bottom:661.890000pt;}
.y172{bottom:662.359067pt;}
.y12a{bottom:663.628800pt;}
.y1ad{bottom:663.640933pt;}
.ya6{bottom:665.924000pt;}
.y102{bottom:667.671200pt;}
.y208{bottom:674.836267pt;}
.y1dc{bottom:675.058667pt;}
.y252{bottom:676.766667pt;}
.yd3{bottom:678.316133pt;}
.y8b{bottom:678.668400pt;}
.y18a{bottom:678.758933pt;}
.y129{bottom:680.378267pt;}
.y59{bottom:684.823733pt;}
.y171{bottom:686.318000pt;}
.y1ac{bottom:687.600000pt;}
.ya5{bottom:690.193467pt;}
.y251{bottom:690.797467pt;}
.y207{bottom:691.466933pt;}
.y1db{bottom:691.676400pt;}
.y8a{bottom:695.154267pt;}
.y189{bottom:695.159067pt;}
.y128{bottom:697.127600pt;}
.ya{bottom:698.680267pt;}
.y262{bottom:698.737333pt;}
.y101{bottom:699.396933pt;}
.y58{bottom:701.733200pt;}
.yd2{bottom:702.301333pt;}
.y170{bottom:702.718133pt;}
.ya4{bottom:706.903867pt;}
.y206{bottom:708.097733pt;}
.y1da{bottom:708.294133pt;}
.y9{bottom:711.350933pt;}
.y188{bottom:711.559067pt;}
.y89{bottom:711.640000pt;}
.y250{bottom:712.387467pt;}
.y261{bottom:713.148933pt;}
.y100{bottom:716.004533pt;}
.y57{bottom:718.642533pt;}
.yd1{bottom:718.727333pt;}
.y16f{bottom:719.118133pt;}
.y127{bottom:721.436133pt;}
.ya3{bottom:723.614133pt;}
.y8{bottom:724.021600pt;}
.y205{bottom:724.728533pt;}
.y24f{bottom:726.418400pt;}
.y260{bottom:727.560533pt;}
.y187{bottom:727.958933pt;}
.y88{bottom:728.125867pt;}
.y1d9{bottom:732.470800pt;}
.yff{bottom:732.612000pt;}
.yd0{bottom:735.153333pt;}
.y16e{bottom:735.518000pt;}
.y56{bottom:735.551867pt;}
.y7{bottom:736.688267pt;}
.y126{bottom:738.185600pt;}
.ya2{bottom:740.324533pt;}
.y25f{bottom:741.972133pt;}
.y1ab{bottom:744.359067pt;}
.y87{bottom:744.611600pt;}
.y24e{bottom:748.008400pt;}
.y204{bottom:748.918267pt;}
.y1d8{bottom:749.088400pt;}
.yfe{bottom:749.219600pt;}
.ycf{bottom:751.579467pt;}
.y16d{bottom:751.918000pt;}
.y125{bottom:754.934933pt;}
.ya1{bottom:757.034800pt;}
.y55{bottom:760.020400pt;}
.y24d{bottom:762.039200pt;}
.y25e{bottom:763.942667pt;}
.y203{bottom:765.549067pt;}
.y1d7{bottom:765.706133pt;}
.yfd{bottom:765.827200pt;}
.yce{bottom:768.005467pt;}
.y186{bottom:768.318000pt;}
.y86{bottom:768.656400pt;}
.y124{bottom:771.684400pt;}
.ya0{bottom:773.745200pt;}
.y16c{bottom:775.877067pt;}
.y24c{bottom:776.070133pt;}
.y25d{bottom:778.354267pt;}
.y202{bottom:782.179867pt;}
.y1d6{bottom:782.323867pt;}
.ycd{bottom:784.431600pt;}
.y54{bottom:784.488800pt;}
.y6{bottom:784.524400pt;}
.y185{bottom:784.718133pt;}
.y123{bottom:788.433733pt;}
.yfc{bottom:789.993867pt;}
.y9f{bottom:790.455600pt;}
.y16b{bottom:792.277067pt;}
.y24b{bottom:797.660133pt;}
.y201{bottom:798.810667pt;}
.y1d5{bottom:798.941467pt;}
.y85{bottom:800.260400pt;}
.y25c{bottom:800.324933pt;}
.ycc{bottom:800.857600pt;}
.y1aa{bottom:801.118133pt;}
.y122{bottom:805.183200pt;}
.yfb{bottom:806.601333pt;}
.y5{bottom:807.124400pt;}
.y16a{bottom:808.677067pt;}
.y53{bottom:808.957200pt;}
.y24a{bottom:811.690933pt;}
.y9e{bottom:814.725067pt;}
.y25b{bottom:814.736533pt;}
.y200{bottom:815.441467pt;}
.y1d4{bottom:815.559200pt;}
.y84{bottom:816.746133pt;}
.ycb{bottom:817.283733pt;}
.y121{bottom:821.932667pt;}
.yfa{bottom:823.208933pt;}
.y169{bottom:825.077200pt;}
.y249{bottom:825.721867pt;}
.y4{bottom:829.724400pt;}
.y9d{bottom:831.435333pt;}
.y1d3{bottom:832.176800pt;}
.y83{bottom:833.231867pt;}
.y52{bottom:833.425600pt;}
.yca{bottom:833.709733pt;}
.y25a{bottom:836.707200pt;}
.y120{bottom:838.682000pt;}
.y1ff{bottom:839.631200pt;}
.y248{bottom:839.752800pt;}
.yf9{bottom:839.816533pt;}
.y168{bottom:841.477067pt;}
.y184{bottom:841.477200pt;}
.y9c{bottom:848.145733pt;}
.y1d2{bottom:848.794533pt;}
.y82{bottom:849.717600pt;}
.yc9{bottom:850.135733pt;}
.y259{bottom:851.118800pt;}
.y11f{bottom:855.431333pt;}
.y1fe{bottom:856.262000pt;}
.yf8{bottom:856.424133pt;}
.y167{bottom:857.877067pt;}
.y183{bottom:857.877200pt;}
.y51{bottom:857.894000pt;}
.y247{bottom:861.342800pt;}
.y9b{bottom:872.415067pt;}
.y1fd{bottom:872.892667pt;}
.y1d1{bottom:872.971200pt;}
.yf7{bottom:873.031600pt;}
.y258{bottom:873.089467pt;}
.y81{bottom:873.762400pt;}
.yc8{bottom:874.120800pt;}
.y1a9{bottom:874.277067pt;}
.y182{bottom:874.277200pt;}
.y246{bottom:875.373600pt;}
.y11e{bottom:879.739867pt;}
.y166{bottom:881.836133pt;}
.y50{bottom:882.362533pt;}
.y9a{bottom:889.125467pt;}
.y1fc{bottom:889.523467pt;}
.y1d0{bottom:889.588933pt;}
.yf6{bottom:889.639200pt;}
.y80{bottom:890.248267pt;}
.yc7{bottom:890.546933pt;}
.y1a8{bottom:890.677067pt;}
.y257{bottom:895.060000pt;}
.y11d{bottom:896.489200pt;}
.y245{bottom:896.963600pt;}
.y165{bottom:898.236133pt;}
.y181{bottom:898.236267pt;}
.y99{bottom:905.835733pt;}
.y1fb{bottom:906.154267pt;}
.y1cf{bottom:906.206533pt;}
.yf5{bottom:906.246800pt;}
.y7f{bottom:906.734000pt;}
.y4f{bottom:906.830933pt;}
.yc6{bottom:906.972933pt;}
.y1a7{bottom:907.077200pt;}
.y256{bottom:909.471733pt;}
.y244{bottom:910.994400pt;}
.y11c{bottom:913.238667pt;}
.y4a{bottom:913.889733pt;}
.y79{bottom:914.267733pt;}
.y164{bottom:914.636133pt;}
.y180{bottom:914.636267pt;}
.y98{bottom:922.546133pt;}
.y1ce{bottom:922.824133pt;}
.yf4{bottom:922.854400pt;}
.y7e{bottom:923.219867pt;}
.yc5{bottom:923.399067pt;}
.y11b{bottom:929.988000pt;}
.y1fa{bottom:930.344000pt;}
.y163{bottom:931.036133pt;}
.y17f{bottom:931.036267pt;}
.y4e{bottom:931.299333pt;}
.y255{bottom:931.442267pt;}
.y243{bottom:932.584400pt;}
.y3{bottom:937.811733pt;}
.y49{bottom:937.919733pt;}
.y97{bottom:939.256533pt;}
.yf3{bottom:939.462000pt;}
.yc4{bottom:939.825067pt;}
.y254{bottom:945.853867pt;}
.y242{bottom:946.615333pt;}
.y11a{bottom:946.737467pt;}
.y1f9{bottom:946.974800pt;}
.y1cd{bottom:947.000933pt;}
.y7d{bottom:947.264667pt;}
.y162{bottom:947.436133pt;}
.y17e{bottom:947.436267pt;}
.y2{bottom:955.139733pt;}
.y4d{bottom:955.767733pt;}
.y119{bottom:963.486800pt;}
.y96{bottom:963.525867pt;}
.y1f8{bottom:963.605467pt;}
.y1cc{bottom:963.618533pt;}
.yf2{bottom:963.628667pt;}
.y7c{bottom:963.750533pt;}
.yc3{bottom:963.810267pt;}
.y161{bottom:963.836133pt;}
.y17d{bottom:963.836267pt;}
.y253{bottom:967.824533pt;}
.y241{bottom:968.205200pt;}
.y1{bottom:972.467733pt;}
.y4c{bottom:980.236133pt;}
.y7b{bottom:980.236267pt;}
.y240{bottom:982.236133pt;}
.hb{height:26.140625pt;}
.h12{height:27.763021pt;}
.hc{height:29.604167pt;}
.h11{height:29.875000pt;}
.h13{height:30.789062pt;}
.ha{height:31.410156pt;}
.h10{height:31.729167pt;}
.h9{height:31.742188pt;}
.h15{height:32.706104pt;}
.h2{height:33.304688pt;}
.h3{height:33.609375pt;}
.h8{height:33.712240pt;}
.h4{height:35.695312pt;}
.h14{height:36.794367pt;}
.hd{height:37.005208pt;}
.he{height:39.661458pt;}
.hf{height:40.882630pt;}
.h7{height:42.596354pt;}
.h16{height:43.984375pt;}
.h5{height:55.507812pt;}
.h6{height:65.976562pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:40.365333pt;}
.x18{left:44.578000pt;}
.x11{left:47.583733pt;}
.xb{left:94.488000pt;}
.x6{left:101.491867pt;}
.x12{left:105.826800pt;}
.x5{left:110.231867pt;}
.x13{left:113.421333pt;}
.x17{left:115.967333pt;}
.x4{left:121.691867pt;}
.x9{left:200.489600pt;}
.x7{left:254.816000pt;}
.x8{left:273.238267pt;}
.xa{left:298.953600pt;}
.x1b{left:408.188933pt;}
.xf{left:410.078800pt;}
.x1a{left:423.307067pt;}
.xd{left:424.325333pt;}
.xc{left:428.565333pt;}
.xe{left:430.185333pt;}
.x2{left:459.714133pt;}
.x3{left:486.162133pt;}
.x1{left:507.066133pt;}
.x16{left:533.405867pt;}
.x14{left:733.728400pt;}
.x19{left:737.856800pt;}
.x15{left:740.862533pt;}
}




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