
    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_c6818a08a84312d3b7ef894a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.132000;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_d53a33c1fcfb2012d67f15df.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.140000;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_6ccc9dca00265a97f9aa9dfe.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.116000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.116000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.054000;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_9e80a7dc6e5f57de9d42c11a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.133000;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_51044527f47429ad6d36fc29.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.054000;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_739268ca29d8dd37fb454a03.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.995000;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_e2c5f3c4ffee9e5171f7842c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.995000;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_87666c984761d662774d109b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.121000;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_4b9726782c2ff92fa65ccc0f.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.116000;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_163ef94adc860de9963179e1.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.054000;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_57d743884053bef1301e1fa9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.130000;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_03b0b7d5ac08c287d06d1bcf.woff2')format("woff");}.fff{font-family:fff;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cc3e0ab77bfc1db12ee76810.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_4947eb7373d01d8e9ce5da02.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.681000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_afd906231865e41df58a540a.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.090000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_640813faf7495bb3b10c3755.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9c53780a6189832f02baa04e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.965000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_d98535451e61683d3743716f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_5089d32fe449b61316c74ff1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.771000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_d0e4539a96e8f0e31724edeb.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.994000;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;}
.m4{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m6{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.368200px;}
.ls9{letter-spacing:-2.475000px;}
.ls4{letter-spacing:-0.612000px;}
.ls2{letter-spacing:-0.450000px;}
.ls3{letter-spacing:-0.306000px;}
.lsa{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.183600px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.000192px;}
.ls8{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.306000px;}
.ls1{letter-spacing:0.450000px;}
.ls7{letter-spacing:0.550800px;}
.ls11{letter-spacing:0.795600px;}
.ls5{letter-spacing:0.900000px;}
.lse{letter-spacing:1.101600px;}
.lsd{letter-spacing:1.591200px;}
.lsf{letter-spacing:2.019600px;}
.lsb{letter-spacing:4.284000px;}
.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;}
}
.ws3{word-spacing:-19.555200px;}
.ws2a{word-spacing:-16.891200px;}
.ws0{word-spacing:-15.129107px;}
.ws29{word-spacing:-14.994000px;}
.ws3c{word-spacing:-14.904000px;}
.ws4{word-spacing:-14.256000px;}
.ws5{word-spacing:-13.878000px;}
.ws4d{word-spacing:-13.831200px;}
.ws6{word-spacing:-13.770000px;}
.ws7{word-spacing:-13.464000px;}
.ws8{word-spacing:-13.158000px;}
.ws53{word-spacing:-13.035600px;}
.ws47{word-spacing:-12.546000px;}
.ws12{word-spacing:-12.240000px;}
.ws4f{word-spacing:-12.056400px;}
.ws4e{word-spacing:-11.934000px;}
.ws11{word-spacing:-7.135920px;}
.wsf{word-spacing:-2.692800px;}
.ws44{word-spacing:-2.448000px;}
.ws2d{word-spacing:-2.264400px;}
.ws51{word-spacing:-2.019600px;}
.ws31{word-spacing:-2.016000px;}
.ws41{word-spacing:-1.974000px;}
.ws1b{word-spacing:-1.806000px;}
.ws28{word-spacing:-1.722000px;}
.ws4c{word-spacing:-1.713600px;}
.ws40{word-spacing:-1.512000px;}
.ws50{word-spacing:-1.101600px;}
.wse{word-spacing:-0.900000px;}
.ws37{word-spacing:-0.882000px;}
.ws18{word-spacing:-0.588000px;}
.ws46{word-spacing:-0.550800px;}
.ws9{word-spacing:-0.450000px;}
.ws1f{word-spacing:-0.378000px;}
.ws48{word-spacing:-0.367200px;}
.ws49{word-spacing:-0.306000px;}
.ws1a{word-spacing:-0.180000px;}
.ws19{word-spacing:-0.042000px;}
.ws1{word-spacing:0.000000px;}
.ws1c{word-spacing:0.084000px;}
.ws15{word-spacing:0.168000px;}
.ws2b{word-spacing:0.270000px;}
.ws27{word-spacing:0.294000px;}
.wsc{word-spacing:0.306000px;}
.ws2e{word-spacing:0.462000px;}
.ws3f{word-spacing:0.546000px;}
.ws17{word-spacing:0.588000px;}
.wsd{word-spacing:0.612000px;}
.ws3e{word-spacing:0.924000px;}
.ws25{word-spacing:1.008000px;}
.ws20{word-spacing:1.260000px;}
.ws30{word-spacing:1.722000px;}
.ws16{word-spacing:1.932000px;}
.ws2f{word-spacing:2.520000px;}
.ws3d{word-spacing:2.570400px;}
.ws2c{word-spacing:2.815200px;}
.ws35{word-spacing:2.856000px;}
.ws38{word-spacing:2.898000px;}
.ws32{word-spacing:2.982000px;}
.ws26{word-spacing:3.318000px;}
.ws33{word-spacing:3.738000px;}
.ws36{word-spacing:3.948000px;}
.ws4a{word-spacing:4.161600px;}
.ws1e{word-spacing:4.536000px;}
.ws39{word-spacing:4.578000px;}
.ws13{word-spacing:4.620000px;}
.ws14{word-spacing:4.704000px;}
.ws1d{word-spacing:5.124000px;}
.ws34{word-spacing:6.006000px;}
.ws22{word-spacing:9.118800px;}
.ws43{word-spacing:9.792000px;}
.ws45{word-spacing:11.138400px;}
.ws23{word-spacing:11.995200px;}
.ws54{word-spacing:12.423600px;}
.wsa{word-spacing:16.218000px;}
.wsb{word-spacing:25.704000px;}
.ws24{word-spacing:28.029600px;}
.ws52{word-spacing:82.714706px;}
.ws42{word-spacing:83.389706px;}
.ws4b{word-spacing:87.259706px;}
.ws2{word-spacing:87.754706px;}
.ws3b{word-spacing:87.934706px;}
.ws10{word-spacing:88.924706px;}
.ws3a{word-spacing:89.374706px;}
.ws21{word-spacing:93.154706px;}
._20{margin-left:-12.263185px;}
._c{margin-left:-7.137840px;}
._1a{margin-left:-5.795880px;}
._a{margin-left:-3.696000px;}
._b{margin-left:-2.079792px;}
._9{margin-left:-1.035000px;}
._5{width:1.700664px;}
._8{width:3.673434px;}
._d{width:5.560638px;}
._3{width:6.734629px;}
._6{width:7.959108px;}
._e{width:9.225852px;}
._1b{width:10.541268px;}
._10{width:11.934000px;}
._2{width:13.809392px;}
._13{width:15.310224px;}
._15{width:16.541064px;}
._14{width:18.114480px;}
._f{width:19.560240px;}
._17{width:20.812200px;}
._16{width:22.743840px;}
._4{width:24.183442px;}
._1d{width:25.869480px;}
._1e{width:27.478800px;}
._1{width:29.183394px;}
._19{width:30.872166px;}
._2b{width:31.977348px;}
._1c{width:33.014754px;}
._11{width:34.351560px;}
._12{width:35.403192px;}
._1f{width:36.585360px;}
._22{width:40.716360px;}
._25{width:42.350400px;}
._26{width:43.439760px;}
._21{width:44.461800px;}
._7{width:46.598194px;}
._29{width:49.149720px;}
._28{width:50.617512px;}
._23{width:52.534080px;}
._2a{width:55.324800px;}
._27{width:57.834000px;}
._2c{width:59.731200px;}
._24{width:62.439348px;}
._18{width:69.950592px;}
._0{width:846.085199px;}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:34.013280px;}
.fse{font-size:35.679600px;}
.fs3{font-size:38.872320px;}
.fsf{font-size:42.000000px;}
.fs6{font-size:42.759552px;}
.fs7{font-size:43.731360px;}
.fs8{font-size:45.000000px;}
.fs2{font-size:48.590400px;}
.fs1{font-size:53.449440px;}
.fsb{font-size:54.000000px;}
.fs5{font-size:54.421248px;}
.fsc{font-size:61.200000px;}
.fsa{font-size:67.200000px;}
.fs0{font-size:68.026560px;}
.fsd{font-size:114.000000px;}
.fs9{font-size:222.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.307530px;}
.y49{bottom:47.074950px;}
.y20{bottom:48.137850px;}
.y1e{bottom:51.809514px;}
.y48{bottom:63.578700px;}
.y47{bottom:63.649500px;}
.y1f{bottom:64.889550px;}
.y1d{bottom:65.584892px;}
.y1c{bottom:79.360271px;}
.y1b{bottom:93.135649px;}
.y1a{bottom:104.906674px;}
.y19{bottom:127.209667px;}
.y228{bottom:127.755750px;}
.y1a6{bottom:127.762650px;}
.y181{bottom:127.769550px;}
.y176{bottom:127.771050px;}
.y1db{bottom:127.772550px;}
.y225{bottom:127.776450px;}
.y190{bottom:127.777950px;}
.y165{bottom:127.783500px;}
.y109{bottom:127.801500px;}
.y1c0{bottom:127.805850px;}
.ya1{bottom:127.810500px;}
.yd7{bottom:127.819500px;}
.y130{bottom:127.841850px;}
.y108{bottom:144.297000px;}
.y1bf{bottom:144.301350px;}
.ya0{bottom:144.306000px;}
.yd6{bottom:144.315000px;}
.y12f{bottom:144.337350px;}
.y1da{bottom:148.748850px;}
.y1e9{bottom:148.762650px;}
.y204{bottom:148.764150px;}
.y20e{bottom:148.767150px;}
.y18f{bottom:148.769550px;}
.y180{bottom:148.771050px;}
.y21a{bottom:148.776450px;}
.y3c{bottom:148.776600px;}
.y175{bottom:148.777950px;}
.y224{bottom:148.783350px;}
.y107{bottom:160.792500px;}
.y1be{bottom:160.796850px;}
.y9f{bottom:160.801500px;}
.yd5{bottom:160.810500px;}
.y12e{bottom:160.832850px;}
.y1d9{bottom:169.755750px;}
.y227{bottom:169.764150px;}
.y14c{bottom:169.769550px;}
.y1f7{bottom:169.771050px;}
.y20d{bottom:169.774050px;}
.y18e{bottom:169.775550px;}
.y1a5{bottom:169.776450px;}
.y164{bottom:169.777950px;}
.y219{bottom:169.783350px;}
.y3b{bottom:169.783500px;}
.y106{bottom:177.288000px;}
.y1bd{bottom:177.292350px;}
.y9e{bottom:177.297000px;}
.yd4{bottom:177.306000px;}
.y12d{bottom:177.328350px;}
.y20c{bottom:190.735050px;}
.y14b{bottom:190.757250px;}
.y1d8{bottom:190.762650px;}
.y163{bottom:190.769550px;}
.y174{bottom:190.771050px;}
.y1e8{bottom:190.772550px;}
.y1f6{bottom:190.777950px;}
.y18d{bottom:190.782450px;}
.y1a4{bottom:190.783350px;}
.y18{bottom:192.004966px;}
.y105{bottom:193.783500px;}
.y1bc{bottom:193.787850px;}
.y9d{bottom:193.792500px;}
.yd3{bottom:193.801500px;}
.y12c{bottom:193.823850px;}
.y17{bottom:202.330426px;}
.y1bb{bottom:210.283350px;}
.y9c{bottom:210.288000px;}
.yd2{bottom:210.297000px;}
.y12b{bottom:210.319350px;}
.y18c{bottom:211.728150px;}
.y20b{bottom:211.741950px;}
.y218{bottom:211.762650px;}
.y14a{bottom:211.764150px;}
.y1d7{bottom:211.769550px;}
.y3a{bottom:211.769700px;}
.y46{bottom:211.771200px;}
.y1a3{bottom:211.771350px;}
.y162{bottom:211.774050px;}
.y173{bottom:211.777950px;}
.y1e7{bottom:211.779450px;}
.y16{bottom:211.805554px;}
.y15{bottom:220.406054px;}
.y9b{bottom:226.783500px;}
.yd1{bottom:226.792500px;}
.y12a{bottom:226.814850px;}
.y14{bottom:229.018703px;}
.y18b{bottom:232.735050px;}
.y20a{bottom:232.748850px;}
.y1e6{bottom:232.755750px;}
.y203{bottom:232.757250px;}
.y104{bottom:232.762650px;}
.y39{bottom:232.762800px;}
.y1cf{bottom:232.764150px;}
.yef{bottom:232.769550px;}
.y149{bottom:232.771050px;}
.y223{bottom:232.776450px;}
.y1a2{bottom:232.777350px;}
.y161{bottom:232.780950px;}
.y13{bottom:237.631351px;}
.yd0{bottom:243.288000px;}
.y129{bottom:243.310350px;}
.y12{bottom:246.231852px;}
.y160{bottom:253.741950px;}
.y209{bottom:253.755750px;}
.y172{bottom:253.757250px;}
.y1ba{bottom:253.762650px;}
.y202{bottom:253.764150px;}
.y103{bottom:253.769550px;}
.y38{bottom:253.769700px;}
.y1ce{bottom:253.771050px;}
.yee{bottom:253.776450px;}
.y148{bottom:253.777950px;}
.y1a1{bottom:253.783350px;}
.y11{bottom:254.844500px;}
.ycf{bottom:259.783500px;}
.y128{bottom:259.805850px;}
.y10{bottom:272.555701px;}
.y15f{bottom:274.748850px;}
.y45{bottom:274.755750px;}
.y1cd{bottom:274.762650px;}
.y37{bottom:274.762800px;}
.y171{bottom:274.764150px;}
.y9a{bottom:274.765800px;}
.y147{bottom:274.769550px;}
.y7a{bottom:274.769700px;}
.y102{bottom:274.771050px;}
.yed{bottom:274.783350px;}
.y127{bottom:276.301350px;}
.y126{bottom:292.796850px;}
.y217{bottom:295.741950px;}
.ybb{bottom:295.748850px;}
.y79{bottom:295.749000px;}
.y15e{bottom:295.755750px;}
.y44{bottom:295.762650px;}
.y17f{bottom:295.764150px;}
.y1e5{bottom:295.765650px;}
.yec{bottom:295.769550px;}
.y36{bottom:295.769700px;}
.y146{bottom:295.771050px;}
.y99{bottom:295.772700px;}
.y1b9{bottom:295.776450px;}
.y101{bottom:295.777950px;}
.y125{bottom:309.292350px;}
.y35{bottom:316.748850px;}
.y98{bottom:316.749000px;}
.yba{bottom:316.755750px;}
.y78{bottom:316.755900px;}
.y15d{bottom:316.762650px;}
.y43{bottom:316.769550px;}
.yeb{bottom:316.771050px;}
.y1e4{bottom:316.772550px;}
.y222{bottom:316.776450px;}
.y145{bottom:316.777950px;}
.y1b8{bottom:316.783350px;}
.y124{bottom:325.787850px;}
.y1a0{bottom:337.748850px;}
.y34{bottom:337.755750px;}
.y97{bottom:337.755900px;}
.yb9{bottom:337.762650px;}
.y77{bottom:337.762800px;}
.y42{bottom:337.764150px;}
.y144{bottom:337.769550px;}
.y1b7{bottom:337.771050px;}
.yce{bottom:337.776450px;}
.yea{bottom:337.777950px;}
.y221{bottom:337.783350px;}
.y123{bottom:342.283350px;}
.y19f{bottom:358.755750px;}
.y143{bottom:358.758750px;}
.y33{bottom:358.762650px;}
.y96{bottom:358.762800px;}
.y15c{bottom:358.764150px;}
.y220{bottom:358.765650px;}
.y5d{bottom:358.769550px;}
.y76{bottom:358.769700px;}
.y41{bottom:358.771050px;}
.y170{bottom:358.774050px;}
.y18a{bottom:358.776450px;}
.ycd{bottom:358.783350px;}
.yf{bottom:371.327837px;}
.y232{bottom:379.760250px;}
.y40{bottom:379.762650px;}
.y75{bottom:379.762800px;}
.y142{bottom:379.765650px;}
.y1cc{bottom:379.767150px;}
.y32{bottom:379.769550px;}
.y95{bottom:379.769700px;}
.yb8{bottom:379.771050px;}
.y21f{bottom:379.772550px;}
.y5c{bottom:379.776450px;}
.y1ad{bottom:379.777950px;}
.y16f{bottom:379.780950px;}
.y189{bottom:379.783350px;}
.y16e{bottom:400.741950px;}
.y122{bottom:400.755750px;}
.ycc{bottom:400.757250px;}
.y31{bottom:400.762650px;}
.y231{bottom:400.767150px;}
.y3f{bottom:400.769550px;}
.y74{bottom:400.769700px;}
.y141{bottom:400.772550px;}
.y1cb{bottom:400.774050px;}
.y94{bottom:400.774200px;}
.ye9{bottom:400.776450px;}
.yb7{bottom:400.777950px;}
.y21e{bottom:400.779450px;}
.y5b{bottom:400.783350px;}
.y140{bottom:421.748850px;}
.y21d{bottom:421.755750px;}
.y121{bottom:421.762650px;}
.ycb{bottom:421.764150px;}
.y73{bottom:421.764300px;}
.y201{bottom:421.765650px;}
.y30{bottom:421.769550px;}
.y230{bottom:421.774050px;}
.y3e{bottom:421.776450px;}
.yff{bottom:421.777950px;}
.y1ca{bottom:421.780950px;}
.y93{bottom:421.781100px;}
.ye8{bottom:421.783350px;}
.y100{bottom:426.878250px;}
.y1c9{bottom:442.741950px;}
.y92{bottom:442.742100px;}
.y22f{bottom:442.750350px;}
.y13f{bottom:442.755750px;}
.y188{bottom:442.762650px;}
.y5a{bottom:442.764150px;}
.yca{bottom:442.767150px;}
.yfe{bottom:442.769550px;}
.y115{bottom:442.771050px;}
.y72{bottom:442.771200px;}
.y200{bottom:442.772550px;}
.y2f{bottom:442.776450px;}
.ye7{bottom:442.777950px;}
.y3d{bottom:442.783350px;}
.y1c8{bottom:463.748850px;}
.y91{bottom:463.749000px;}
.yfd{bottom:463.755750px;}
.y13e{bottom:463.762650px;}
.y19e{bottom:463.764150px;}
.y1e3{bottom:463.765650px;}
.ye6{bottom:463.769550px;}
.y59{bottom:463.771050px;}
.y1f5{bottom:463.776450px;}
.y114{bottom:463.777950px;}
.y71{bottom:463.778100px;}
.y1ff{bottom:463.779450px;}
.y2e{bottom:463.783350px;}
.y1c7{bottom:484.755750px;}
.y90{bottom:484.755900px;}
.y58{bottom:484.762650px;}
.ye5{bottom:484.764150px;}
.y113{bottom:484.769550px;}
.y70{bottom:484.769700px;}
.y19d{bottom:484.771050px;}
.y1e2{bottom:484.772550px;}
.y1d6{bottom:484.776450px;}
.yb6{bottom:484.777950px;}
.y1f4{bottom:484.783350px;}
.y22e{bottom:505.755750px;}
.y16d{bottom:505.757250px;}
.y13d{bottom:505.760250px;}
.y1c6{bottom:505.762650px;}
.y8f{bottom:505.762800px;}
.y1b6{bottom:505.764150px;}
.y6f{bottom:505.764300px;}
.y57{bottom:505.769550px;}
.ye4{bottom:505.771050px;}
.yc9{bottom:505.772550px;}
.y208{bottom:505.776450px;}
.y2b{bottom:505.777350px;}
.y19c{bottom:505.777950px;}
.y1e1{bottom:505.779450px;}
.y1d5{bottom:505.783350px;}
.y56{bottom:526.748850px;}
.y1e0{bottom:526.755750px;}
.ye3{bottom:526.762650px;}
.y16c{bottom:526.764150px;}
.y15b{bottom:526.765650px;}
.y13c{bottom:526.767150px;}
.y19b{bottom:526.769550px;}
.y8e{bottom:526.769700px;}
.y1b5{bottom:526.771050px;}
.y6e{bottom:526.771200px;}
.yb5{bottom:526.776450px;}
.y2d{bottom:526.777350px;}
.y112{bottom:526.777950px;}
.yc8{bottom:526.779450px;}
.y2a{bottom:526.783350px;}
.y19a{bottom:547.748850px;}
.y55{bottom:547.755750px;}
.yb4{bottom:547.762650px;}
.y6d{bottom:547.762800px;}
.y1ac{bottom:547.764150px;}
.ye2{bottom:547.769550px;}
.y16b{bottom:547.771050px;}
.y8d{bottom:547.771200px;}
.y15a{bottom:547.772550px;}
.y13b{bottom:547.774050px;}
.y1fe{bottom:547.776450px;}
.y29{bottom:547.777350px;}
.y2c{bottom:547.783350px;}
.ye{bottom:554.185660px;}
.y13a{bottom:568.735050px;}
.y199{bottom:568.755750px;}
.y54{bottom:568.762650px;}
.ye1{bottom:568.764150px;}
.y216{bottom:568.767150px;}
.yb3{bottom:568.769550px;}
.y6c{bottom:568.769700px;}
.y1ab{bottom:568.771050px;}
.y120{bottom:568.772550px;}
.yfc{bottom:568.776450px;}
.y17e{bottom:568.777950px;}
.y8c{bottom:568.778100px;}
.y159{bottom:568.779450px;}
.y28{bottom:568.783350px;}
.yd{bottom:580.740313px;}
.y139{bottom:589.741950px;}
.y158{bottom:589.755750px;}
.y1fd{bottom:589.757250px;}
.y198{bottom:589.762650px;}
.y6b{bottom:589.762800px;}
.y53{bottom:589.769550px;}
.y8b{bottom:589.769700px;}
.yb2{bottom:589.771050px;}
.y215{bottom:589.774050px;}
.yfb{bottom:589.776450px;}
.y1aa{bottom:589.777950px;}
.y11f{bottom:589.779450px;}
.yc{bottom:594.515692px;}
.y138{bottom:610.748850px;}
.y11e{bottom:610.755750px;}
.yc7{bottom:610.762650px;}
.y1fc{bottom:610.764150px;}
.y111{bottom:610.765650px;}
.y197{bottom:610.769550px;}
.y6a{bottom:610.769700px;}
.y1f3{bottom:610.771050px;}
.y52{bottom:610.776450px;}
.y8a{bottom:610.776600px;}
.yb1{bottom:610.777950px;}
.y214{bottom:610.780950px;}
.yfa{bottom:610.783350px;}
.y27{bottom:610.783500px;}
.yb{bottom:621.337592px;}
.yf9{bottom:631.728150px;}
.y213{bottom:631.741950px;}
.y137{bottom:631.755750px;}
.y69{bottom:631.755900px;}
.y11d{bottom:631.762650px;}
.yb0{bottom:631.769550px;}
.y196{bottom:631.771050px;}
.y110{bottom:631.772550px;}
.y1b4{bottom:631.774050px;}
.y1c5{bottom:631.776450px;}
.y1df{bottom:631.777950px;}
.y89{bottom:631.778100px;}
.y51{bottom:631.783350px;}
.y26{bottom:631.783500px;}
.ya{bottom:635.112971px;}
.y9{bottom:648.888349px;}
.yf8{bottom:652.735050px;}
.y212{bottom:652.748850px;}
.ye0{bottom:652.762650px;}
.y68{bottom:652.762800px;}
.y10f{bottom:652.764150px;}
.y187{bottom:652.767150px;}
.y11c{bottom:652.769550px;}
.y88{bottom:652.769700px;}
.yaf{bottom:652.771050px;}
.y22d{bottom:652.772550px;}
.y1de{bottom:652.774050px;}
.yc6{bottom:652.776450px;}
.y17d{bottom:652.777350px;}
.y195{bottom:652.777950px;}
.y1b3{bottom:652.780950px;}
.y1c4{bottom:652.783350px;}
.y25{bottom:652.783500px;}
.y8{bottom:662.651580px;}
.yf7{bottom:673.741950px;}
.y211{bottom:673.755750px;}
.y1f2{bottom:673.762650px;}
.y87{bottom:673.763100px;}
.y226{bottom:673.764150px;}
.y1a9{bottom:673.765650px;}
.ydf{bottom:673.769550px;}
.y67{bottom:673.769700px;}
.yc5{bottom:673.771050px;}
.y186{bottom:673.774050px;}
.yae{bottom:673.777950px;}
.y22c{bottom:673.779450px;}
.y157{bottom:673.783350px;}
.y24{bottom:673.783500px;}
.y7{bottom:676.426958px;}
.y4f{bottom:693.322650px;}
.y185{bottom:694.735050px;}
.yf6{bottom:694.748850px;}
.y1fb{bottom:694.750350px;}
.y21c{bottom:694.755750px;}
.yde{bottom:694.762650px;}
.y194{bottom:694.765650px;}
.yad{bottom:694.769550px;}
.y86{bottom:694.770000px;}
.y1d4{bottom:694.771050px;}
.y1a8{bottom:694.772550px;}
.y136{bottom:694.776450px;}
.y66{bottom:694.776600px;}
.y156{bottom:694.777350px;}
.yc4{bottom:694.777950px;}
.y23{bottom:694.783500px;}
.y85{bottom:715.700400px;}
.y184{bottom:715.741950px;}
.y17c{bottom:715.748850px;}
.yac{bottom:715.750350px;}
.yf5{bottom:715.755750px;}
.y1fa{bottom:715.757250px;}
.y16a{bottom:715.762650px;}
.yc3{bottom:715.769550px;}
.y193{bottom:715.772550px;}
.y1f1{bottom:715.776450px;}
.y135{bottom:715.777950px;}
.y155{bottom:715.783350px;}
.y22{bottom:715.783500px;}
.y65{bottom:715.786350px;}
.y4e{bottom:726.325650px;}
.y84{bottom:736.707300px;}
.y183{bottom:736.748850px;}
.y17b{bottom:736.755750px;}
.yab{bottom:736.757250px;}
.yf4{bottom:736.762650px;}
.y1f9{bottom:736.764150px;}
.y210{bottom:736.767150px;}
.y134{bottom:736.769550px;}
.yc2{bottom:736.771050px;}
.y10e{bottom:736.776450px;}
.y1ef{bottom:736.777950px;}
.y1f0{bottom:736.783350px;}
.y6{bottom:740.627024px;}
.y83{bottom:757.714200px;}
.y182{bottom:757.755750px;}
.y17a{bottom:757.762650px;}
.yaa{bottom:757.764150px;}
.y1d3{bottom:757.765650px;}
.yf3{bottom:757.769550px;}
.y133{bottom:757.771050px;}
.y169{bottom:757.774050px;}
.y207{bottom:757.776450px;}
.yc1{bottom:757.777950px;}
.y10d{bottom:757.783350px;}
.y64{bottom:757.784850px;}
.y4d{bottom:759.328650px;}
.y5{bottom:761.059288px;}
.y82{bottom:778.721100px;}
.y20f{bottom:778.735050px;}
.yf2{bottom:778.762650px;}
.y154{bottom:778.769250px;}
.yc0{bottom:778.769550px;}
.ya9{bottom:778.771050px;}
.y1d2{bottom:778.772550px;}
.y1c3{bottom:778.776450px;}
.y11b{bottom:778.777350px;}
.y132{bottom:778.777950px;}
.y168{bottom:778.780950px;}
.y206{bottom:778.783350px;}
.y4{bottom:785.160126px;}
.y4c{bottom:792.331650px;}
.y81{bottom:799.728000px;}
.y167{bottom:799.741950px;}
.y1d1{bottom:799.748850px;}
.ya8{bottom:799.762650px;}
.ydd{bottom:799.764150px;}
.yf1{bottom:799.769550px;}
.y1dd{bottom:799.772550px;}
.y153{bottom:799.776150px;}
.y1ee{bottom:799.777950px;}
.y63{bottom:799.783350px;}
.y3{bottom:809.260964px;}
.y80{bottom:820.734900px;}
.y166{bottom:820.748850px;}
.y10b{bottom:820.755750px;}
.y131{bottom:820.762650px;}
.yf0{bottom:820.764150px;}
.ya7{bottom:820.769550px;}
.ydc{bottom:820.771050px;}
.y1c2{bottom:820.771350px;}
.y1f8{bottom:820.776450px;}
.y1dc{bottom:820.779450px;}
.y152{bottom:820.783050px;}
.y62{bottom:820.783500px;}
.y4b{bottom:825.334650px;}
.y10c{bottom:825.878250px;}
.y2{bottom:833.373950px;}
.y7f{bottom:841.741800px;}
.ya6{bottom:841.755750px;}
.y151{bottom:841.759350px;}
.y10a{bottom:841.762650px;}
.y11a{bottom:841.769550px;}
.ybf{bottom:841.771050px;}
.y1ed{bottom:841.773150px;}
.y1b2{bottom:841.776450px;}
.y1c1{bottom:841.777350px;}
.ydb{bottom:841.777950px;}
.y61{bottom:841.783500px;}
.y4a{bottom:858.337650px;}
.y7e{bottom:862.748700px;}
.ya5{bottom:862.762650px;}
.y21b{bottom:862.764750px;}
.y150{bottom:862.766250px;}
.yda{bottom:862.769550px;}
.y119{bottom:862.776450px;}
.ybe{bottom:862.777950px;}
.y1ec{bottom:862.780050px;}
.y1b1{bottom:862.783350px;}
.y60{bottom:862.783500px;}
.y7d{bottom:883.755600px;}
.y179{bottom:883.764750px;}
.ya4{bottom:883.769550px;}
.y1eb{bottom:883.771650px;}
.y14f{bottom:883.773150px;}
.y22b{bottom:883.774650px;}
.y118{bottom:883.775250px;}
.y1b0{bottom:883.776150px;}
.yd9{bottom:883.776450px;}
.y5f{bottom:883.783500px;}
.y117{bottom:904.751550px;}
.y7c{bottom:904.762500px;}
.ybd{bottom:904.765350px;}
.y178{bottom:904.771650px;}
.y192{bottom:904.773150px;}
.ya3{bottom:904.776450px;}
.y1ea{bottom:904.778550px;}
.y14e{bottom:904.780050px;}
.y22a{bottom:904.781550px;}
.y1af{bottom:904.783050px;}
.yd8{bottom:904.783350px;}
.y5e{bottom:904.783500px;}
.y21{bottom:908.411100px;}
.y1a7{bottom:909.878250px;}
.y116{bottom:925.758450px;}
.y7b{bottom:925.769400px;}
.y1d0{bottom:925.771650px;}
.ybc{bottom:925.772250px;}
.y14d{bottom:925.773150px;}
.y1ae{bottom:925.776150px;}
.y177{bottom:925.778550px;}
.y191{bottom:925.780050px;}
.ya2{bottom:925.783350px;}
.y50{bottom:925.783500px;}
.y205{bottom:925.786950px;}
.y229{bottom:925.788450px;}
.h7{height:28.804389px;}
.h28{height:29.899505px;}
.ha{height:31.088138px;}
.h9{height:35.840279px;}
.h24{height:35.952000px;}
.h8{height:36.005486px;}
.h11{height:38.520000px;}
.h5{height:39.606035px;}
.hd{height:39.970463px;}
.h10{height:41.085000px;}
.h2a{height:41.688000px;}
.h16{height:43.207200px;}
.h33{height:43.390800px;}
.h6{height:44.411626px;}
.hb{height:44.800349px;}
.h15{height:46.224000px;}
.h1e{height:47.246400px;}
.h26{height:47.262000px;}
.h32{height:48.960000px;}
.h34{height:49.021200px;}
.h14{height:49.734000px;}
.hc{height:49.741021px;}
.h18{height:50.918400px;}
.h1c{height:50.946000px;}
.h17{height:50.979600px;}
.h1a{height:51.001800px;}
.h19{height:51.040800px;}
.h1d{height:51.285600px;}
.h31{height:51.286800px;}
.h2f{height:51.289200px;}
.h35{height:51.292800px;}
.h23{height:51.295200px;}
.h30{height:51.298800px;}
.h2b{height:51.301200px;}
.h22{height:51.307200px;}
.h27{height:51.313200px;}
.h2e{height:51.314400px;}
.h25{height:51.334800px;}
.h20{height:51.346800px;}
.h2c{height:51.350400px;}
.h29{height:51.356400px;}
.h2d{height:51.362400px;}
.h1f{height:51.368400px;}
.h21{height:51.408000px;}
.h13{height:61.353600px;}
.h3{height:62.176276px;}
.h4{height:62.720488px;}
.h1b{height:105.564000px;}
.h12{height:204.462000px;}
.he{height:1020.714000px;}
.hf{height:1020.750000px;}
.h2{height:1022.694296px;}
.h1{height:1023.000000px;}
.h0{height:1023.300000px;}
.w1{width:723.000000px;}
.w2{width:723.119100px;}
.w0{width:723.120000px;}
.x0{left:0.000000px;}
.x3{left:37.876217px;}
.x5{left:43.178850px;}
.x1{left:44.763906px;}
.x6{left:83.663850px;}
.xc{left:92.940900px;}
.x21{left:96.419850px;}
.x1f{left:105.310350px;}
.x2{left:120.516340px;}
.x14{left:124.939800px;}
.x7{left:204.969300px;}
.x15{left:238.498200px;}
.x16{left:242.736900px;}
.x12{left:277.727400px;}
.xd{left:281.444850px;}
.x1d{left:313.768500px;}
.x4{left:354.673477px;}
.x8{left:367.192800px;}
.xf{left:375.711450px;}
.x1e{left:379.566144px;}
.x13{left:384.198348px;}
.x20{left:388.454208px;}
.x10{left:432.064800px;}
.x11{left:436.260600px;}
.xb{left:438.916725px;}
.x1b{left:463.124100px;}
.x1c{left:495.896100px;}
.x17{left:518.193150px;}
.x19{left:524.796000px;}
.x18{left:550.965150px;}
.x1a{left:557.568000px;}
.xa{left:587.299950px;}
.xe{left:665.495100px;}
.x9{left:667.583700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.105067pt;}
.ls9{letter-spacing:-2.200000pt;}
.ls4{letter-spacing:-0.544000pt;}
.ls2{letter-spacing:-0.400000pt;}
.ls3{letter-spacing:-0.272000pt;}
.lsa{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.163200pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.000171pt;}
.ls8{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.272000pt;}
.ls1{letter-spacing:0.400000pt;}
.ls7{letter-spacing:0.489600pt;}
.ls11{letter-spacing:0.707200pt;}
.ls5{letter-spacing:0.800000pt;}
.lse{letter-spacing:0.979200pt;}
.lsd{letter-spacing:1.414400pt;}
.lsf{letter-spacing:1.795200pt;}
.lsb{letter-spacing:3.808000pt;}
.ws3{word-spacing:-17.382400pt;}
.ws2a{word-spacing:-15.014400pt;}
.ws0{word-spacing:-13.448095pt;}
.ws29{word-spacing:-13.328000pt;}
.ws3c{word-spacing:-13.248000pt;}
.ws4{word-spacing:-12.672000pt;}
.ws5{word-spacing:-12.336000pt;}
.ws4d{word-spacing:-12.294400pt;}
.ws6{word-spacing:-12.240000pt;}
.ws7{word-spacing:-11.968000pt;}
.ws8{word-spacing:-11.696000pt;}
.ws53{word-spacing:-11.587200pt;}
.ws47{word-spacing:-11.152000pt;}
.ws12{word-spacing:-10.880000pt;}
.ws4f{word-spacing:-10.716800pt;}
.ws4e{word-spacing:-10.608000pt;}
.ws11{word-spacing:-6.343040pt;}
.wsf{word-spacing:-2.393600pt;}
.ws44{word-spacing:-2.176000pt;}
.ws2d{word-spacing:-2.012800pt;}
.ws51{word-spacing:-1.795200pt;}
.ws31{word-spacing:-1.792000pt;}
.ws41{word-spacing:-1.754667pt;}
.ws1b{word-spacing:-1.605333pt;}
.ws28{word-spacing:-1.530667pt;}
.ws4c{word-spacing:-1.523200pt;}
.ws40{word-spacing:-1.344000pt;}
.ws50{word-spacing:-0.979200pt;}
.wse{word-spacing:-0.800000pt;}
.ws37{word-spacing:-0.784000pt;}
.ws18{word-spacing:-0.522667pt;}
.ws46{word-spacing:-0.489600pt;}
.ws9{word-spacing:-0.400000pt;}
.ws1f{word-spacing:-0.336000pt;}
.ws48{word-spacing:-0.326400pt;}
.ws49{word-spacing:-0.272000pt;}
.ws1a{word-spacing:-0.160000pt;}
.ws19{word-spacing:-0.037333pt;}
.ws1{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.074667pt;}
.ws15{word-spacing:0.149333pt;}
.ws2b{word-spacing:0.240000pt;}
.ws27{word-spacing:0.261333pt;}
.wsc{word-spacing:0.272000pt;}
.ws2e{word-spacing:0.410667pt;}
.ws3f{word-spacing:0.485333pt;}
.ws17{word-spacing:0.522667pt;}
.wsd{word-spacing:0.544000pt;}
.ws3e{word-spacing:0.821333pt;}
.ws25{word-spacing:0.896000pt;}
.ws20{word-spacing:1.120000pt;}
.ws30{word-spacing:1.530667pt;}
.ws16{word-spacing:1.717333pt;}
.ws2f{word-spacing:2.240000pt;}
.ws3d{word-spacing:2.284800pt;}
.ws2c{word-spacing:2.502400pt;}
.ws35{word-spacing:2.538667pt;}
.ws38{word-spacing:2.576000pt;}
.ws32{word-spacing:2.650667pt;}
.ws26{word-spacing:2.949333pt;}
.ws33{word-spacing:3.322667pt;}
.ws36{word-spacing:3.509333pt;}
.ws4a{word-spacing:3.699200pt;}
.ws1e{word-spacing:4.032000pt;}
.ws39{word-spacing:4.069333pt;}
.ws13{word-spacing:4.106667pt;}
.ws14{word-spacing:4.181333pt;}
.ws1d{word-spacing:4.554667pt;}
.ws34{word-spacing:5.338667pt;}
.ws22{word-spacing:8.105600pt;}
.ws43{word-spacing:8.704000pt;}
.ws45{word-spacing:9.900800pt;}
.ws23{word-spacing:10.662400pt;}
.ws54{word-spacing:11.043200pt;}
.wsa{word-spacing:14.416000pt;}
.wsb{word-spacing:22.848000pt;}
.ws24{word-spacing:24.915200pt;}
.ws52{word-spacing:73.524183pt;}
.ws42{word-spacing:74.124183pt;}
.ws4b{word-spacing:77.564183pt;}
.ws2{word-spacing:78.004183pt;}
.ws3b{word-spacing:78.164183pt;}
.ws10{word-spacing:79.044183pt;}
.ws3a{word-spacing:79.444183pt;}
.ws21{word-spacing:82.804183pt;}
._20{margin-left:-10.900609pt;}
._c{margin-left:-6.344747pt;}
._1a{margin-left:-5.151893pt;}
._a{margin-left:-3.285333pt;}
._b{margin-left:-1.848704pt;}
._9{margin-left:-0.920000pt;}
._5{width:1.511701pt;}
._8{width:3.265275pt;}
._d{width:4.942789pt;}
._3{width:5.986337pt;}
._6{width:7.074762pt;}
._e{width:8.200758pt;}
._1b{width:9.370016pt;}
._10{width:10.608000pt;}
._2{width:12.275015pt;}
._13{width:13.609088pt;}
._15{width:14.703168pt;}
._14{width:16.101760pt;}
._f{width:17.386880pt;}
._17{width:18.499733pt;}
._16{width:20.216747pt;}
._4{width:21.496393pt;}
._1d{width:22.995093pt;}
._1e{width:24.425600pt;}
._1{width:25.940795pt;}
._19{width:27.441925pt;}
._2b{width:28.424310pt;}
._1c{width:29.346448pt;}
._11{width:30.534720pt;}
._12{width:31.469504pt;}
._1f{width:32.520320pt;}
._22{width:36.192320pt;}
._25{width:37.644800pt;}
._26{width:38.613120pt;}
._21{width:39.521600pt;}
._7{width:41.420617pt;}
._29{width:43.688640pt;}
._28{width:44.993344pt;}
._23{width:46.696960pt;}
._2a{width:49.177600pt;}
._27{width:51.408000pt;}
._2c{width:53.094400pt;}
._24{width:55.501642pt;}
._18{width:62.178304pt;}
._0{width:752.075732pt;}
.fs4{font-size:30.234027pt;}
.fse{font-size:31.715200pt;}
.fs3{font-size:34.553173pt;}
.fsf{font-size:37.333333pt;}
.fs6{font-size:38.008491pt;}
.fs7{font-size:38.872320pt;}
.fs8{font-size:40.000000pt;}
.fs2{font-size:43.191467pt;}
.fs1{font-size:47.510613pt;}
.fsb{font-size:48.000000pt;}
.fs5{font-size:48.374443pt;}
.fsc{font-size:54.400000pt;}
.fsa{font-size:59.733333pt;}
.fs0{font-size:60.468053pt;}
.fsd{font-size:101.333333pt;}
.fs9{font-size:197.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.273360pt;}
.y49{bottom:41.844400pt;}
.y20{bottom:42.789200pt;}
.y1e{bottom:46.052901pt;}
.y48{bottom:56.514400pt;}
.y47{bottom:56.577333pt;}
.y1f{bottom:57.679600pt;}
.y1d{bottom:58.297682pt;}
.y1c{bottom:70.542463pt;}
.y1b{bottom:82.787244pt;}
.y1a{bottom:93.250377pt;}
.y19{bottom:113.075260pt;}
.y228{bottom:113.560667pt;}
.y1a6{bottom:113.566800pt;}
.y181{bottom:113.572933pt;}
.y176{bottom:113.574267pt;}
.y1db{bottom:113.575600pt;}
.y225{bottom:113.579067pt;}
.y190{bottom:113.580400pt;}
.y165{bottom:113.585333pt;}
.y109{bottom:113.601333pt;}
.y1c0{bottom:113.605200pt;}
.ya1{bottom:113.609333pt;}
.yd7{bottom:113.617333pt;}
.y130{bottom:113.637200pt;}
.y108{bottom:128.264000pt;}
.y1bf{bottom:128.267867pt;}
.ya0{bottom:128.272000pt;}
.yd6{bottom:128.280000pt;}
.y12f{bottom:128.299867pt;}
.y1da{bottom:132.221200pt;}
.y1e9{bottom:132.233467pt;}
.y204{bottom:132.234800pt;}
.y20e{bottom:132.237467pt;}
.y18f{bottom:132.239600pt;}
.y180{bottom:132.240933pt;}
.y21a{bottom:132.245733pt;}
.y3c{bottom:132.245867pt;}
.y175{bottom:132.247067pt;}
.y224{bottom:132.251867pt;}
.y107{bottom:142.926667pt;}
.y1be{bottom:142.930533pt;}
.y9f{bottom:142.934667pt;}
.yd5{bottom:142.942667pt;}
.y12e{bottom:142.962533pt;}
.y1d9{bottom:150.894000pt;}
.y227{bottom:150.901467pt;}
.y14c{bottom:150.906267pt;}
.y1f7{bottom:150.907600pt;}
.y20d{bottom:150.910267pt;}
.y18e{bottom:150.911600pt;}
.y1a5{bottom:150.912400pt;}
.y164{bottom:150.913733pt;}
.y219{bottom:150.918533pt;}
.y3b{bottom:150.918667pt;}
.y106{bottom:157.589333pt;}
.y1bd{bottom:157.593200pt;}
.y9e{bottom:157.597333pt;}
.yd4{bottom:157.605333pt;}
.y12d{bottom:157.625200pt;}
.y20c{bottom:169.542267pt;}
.y14b{bottom:169.562000pt;}
.y1d8{bottom:169.566800pt;}
.y163{bottom:169.572933pt;}
.y174{bottom:169.574267pt;}
.y1e8{bottom:169.575600pt;}
.y1f6{bottom:169.580400pt;}
.y18d{bottom:169.584400pt;}
.y1a4{bottom:169.585200pt;}
.y18{bottom:170.671081pt;}
.y105{bottom:172.252000pt;}
.y1bc{bottom:172.255867pt;}
.y9d{bottom:172.260000pt;}
.yd3{bottom:172.268000pt;}
.y12c{bottom:172.287867pt;}
.y17{bottom:179.849267pt;}
.y1bb{bottom:186.918533pt;}
.y9c{bottom:186.922667pt;}
.yd2{bottom:186.930667pt;}
.y12b{bottom:186.950533pt;}
.y18c{bottom:188.202800pt;}
.y20b{bottom:188.215067pt;}
.y218{bottom:188.233467pt;}
.y14a{bottom:188.234800pt;}
.y1d7{bottom:188.239600pt;}
.y3a{bottom:188.239733pt;}
.y46{bottom:188.241067pt;}
.y1a3{bottom:188.241200pt;}
.y162{bottom:188.243600pt;}
.y173{bottom:188.247067pt;}
.y1e7{bottom:188.248400pt;}
.y16{bottom:188.271603pt;}
.y15{bottom:195.916493pt;}
.y9b{bottom:201.585333pt;}
.yd1{bottom:201.593333pt;}
.y12a{bottom:201.613200pt;}
.y14{bottom:203.572180pt;}
.y18b{bottom:206.875600pt;}
.y20a{bottom:206.887867pt;}
.y1e6{bottom:206.894000pt;}
.y203{bottom:206.895333pt;}
.y104{bottom:206.900133pt;}
.y39{bottom:206.900267pt;}
.y1cf{bottom:206.901467pt;}
.yef{bottom:206.906267pt;}
.y149{bottom:206.907600pt;}
.y223{bottom:206.912400pt;}
.y1a2{bottom:206.913200pt;}
.y161{bottom:206.916400pt;}
.y13{bottom:211.227868pt;}
.yd0{bottom:216.256000pt;}
.y129{bottom:216.275867pt;}
.y12{bottom:218.872757pt;}
.y160{bottom:225.548400pt;}
.y209{bottom:225.560667pt;}
.y172{bottom:225.562000pt;}
.y1ba{bottom:225.566800pt;}
.y202{bottom:225.568133pt;}
.y103{bottom:225.572933pt;}
.y38{bottom:225.573067pt;}
.y1ce{bottom:225.574267pt;}
.yee{bottom:225.579067pt;}
.y148{bottom:225.580400pt;}
.y1a1{bottom:225.585200pt;}
.y11{bottom:226.528445pt;}
.ycf{bottom:230.918667pt;}
.y128{bottom:230.938533pt;}
.y10{bottom:242.271734pt;}
.y15f{bottom:244.221200pt;}
.y45{bottom:244.227333pt;}
.y1cd{bottom:244.233467pt;}
.y37{bottom:244.233600pt;}
.y171{bottom:244.234800pt;}
.y9a{bottom:244.236267pt;}
.y147{bottom:244.239600pt;}
.y7a{bottom:244.239733pt;}
.y102{bottom:244.240933pt;}
.yed{bottom:244.251867pt;}
.y127{bottom:245.601200pt;}
.y126{bottom:260.263867pt;}
.y217{bottom:262.881733pt;}
.ybb{bottom:262.887867pt;}
.y79{bottom:262.888000pt;}
.y15e{bottom:262.894000pt;}
.y44{bottom:262.900133pt;}
.y17f{bottom:262.901467pt;}
.y1e5{bottom:262.902800pt;}
.yec{bottom:262.906267pt;}
.y36{bottom:262.906400pt;}
.y146{bottom:262.907600pt;}
.y99{bottom:262.909067pt;}
.y1b9{bottom:262.912400pt;}
.y101{bottom:262.913733pt;}
.y125{bottom:274.926533pt;}
.y35{bottom:281.554533pt;}
.y98{bottom:281.554667pt;}
.yba{bottom:281.560667pt;}
.y78{bottom:281.560800pt;}
.y15d{bottom:281.566800pt;}
.y43{bottom:281.572933pt;}
.yeb{bottom:281.574267pt;}
.y1e4{bottom:281.575600pt;}
.y222{bottom:281.579067pt;}
.y145{bottom:281.580400pt;}
.y1b8{bottom:281.585200pt;}
.y124{bottom:289.589200pt;}
.y1a0{bottom:300.221200pt;}
.y34{bottom:300.227333pt;}
.y97{bottom:300.227467pt;}
.yb9{bottom:300.233467pt;}
.y77{bottom:300.233600pt;}
.y42{bottom:300.234800pt;}
.y144{bottom:300.239600pt;}
.y1b7{bottom:300.240933pt;}
.yce{bottom:300.245733pt;}
.yea{bottom:300.247067pt;}
.y221{bottom:300.251867pt;}
.y123{bottom:304.251867pt;}
.y19f{bottom:318.894000pt;}
.y143{bottom:318.896667pt;}
.y33{bottom:318.900133pt;}
.y96{bottom:318.900267pt;}
.y15c{bottom:318.901467pt;}
.y220{bottom:318.902800pt;}
.y5d{bottom:318.906267pt;}
.y76{bottom:318.906400pt;}
.y41{bottom:318.907600pt;}
.y170{bottom:318.910267pt;}
.y18a{bottom:318.912400pt;}
.ycd{bottom:318.918533pt;}
.yf{bottom:330.069188pt;}
.y232{bottom:337.564667pt;}
.y40{bottom:337.566800pt;}
.y75{bottom:337.566933pt;}
.y142{bottom:337.569467pt;}
.y1cc{bottom:337.570800pt;}
.y32{bottom:337.572933pt;}
.y95{bottom:337.573067pt;}
.yb8{bottom:337.574267pt;}
.y21f{bottom:337.575600pt;}
.y5c{bottom:337.579067pt;}
.y1ad{bottom:337.580400pt;}
.y16f{bottom:337.583067pt;}
.y189{bottom:337.585200pt;}
.y16e{bottom:356.215067pt;}
.y122{bottom:356.227333pt;}
.ycc{bottom:356.228667pt;}
.y31{bottom:356.233467pt;}
.y231{bottom:356.237467pt;}
.y3f{bottom:356.239600pt;}
.y74{bottom:356.239733pt;}
.y141{bottom:356.242267pt;}
.y1cb{bottom:356.243600pt;}
.y94{bottom:356.243733pt;}
.ye9{bottom:356.245733pt;}
.yb7{bottom:356.247067pt;}
.y21e{bottom:356.248400pt;}
.y5b{bottom:356.251867pt;}
.y140{bottom:374.887867pt;}
.y21d{bottom:374.894000pt;}
.y121{bottom:374.900133pt;}
.ycb{bottom:374.901467pt;}
.y73{bottom:374.901600pt;}
.y201{bottom:374.902800pt;}
.y30{bottom:374.906267pt;}
.y230{bottom:374.910267pt;}
.y3e{bottom:374.912400pt;}
.yff{bottom:374.913733pt;}
.y1ca{bottom:374.916400pt;}
.y93{bottom:374.916533pt;}
.ye8{bottom:374.918533pt;}
.y100{bottom:379.447333pt;}
.y1c9{bottom:393.548400pt;}
.y92{bottom:393.548533pt;}
.y22f{bottom:393.555867pt;}
.y13f{bottom:393.560667pt;}
.y188{bottom:393.566800pt;}
.y5a{bottom:393.568133pt;}
.yca{bottom:393.570800pt;}
.yfe{bottom:393.572933pt;}
.y115{bottom:393.574267pt;}
.y72{bottom:393.574400pt;}
.y200{bottom:393.575600pt;}
.y2f{bottom:393.579067pt;}
.ye7{bottom:393.580400pt;}
.y3d{bottom:393.585200pt;}
.y1c8{bottom:412.221200pt;}
.y91{bottom:412.221333pt;}
.yfd{bottom:412.227333pt;}
.y13e{bottom:412.233467pt;}
.y19e{bottom:412.234800pt;}
.y1e3{bottom:412.236133pt;}
.ye6{bottom:412.239600pt;}
.y59{bottom:412.240933pt;}
.y1f5{bottom:412.245733pt;}
.y114{bottom:412.247067pt;}
.y71{bottom:412.247200pt;}
.y1ff{bottom:412.248400pt;}
.y2e{bottom:412.251867pt;}
.y1c7{bottom:430.894000pt;}
.y90{bottom:430.894133pt;}
.y58{bottom:430.900133pt;}
.ye5{bottom:430.901467pt;}
.y113{bottom:430.906267pt;}
.y70{bottom:430.906400pt;}
.y19d{bottom:430.907600pt;}
.y1e2{bottom:430.908933pt;}
.y1d6{bottom:430.912400pt;}
.yb6{bottom:430.913733pt;}
.y1f4{bottom:430.918533pt;}
.y22e{bottom:449.560667pt;}
.y16d{bottom:449.562000pt;}
.y13d{bottom:449.564667pt;}
.y1c6{bottom:449.566800pt;}
.y8f{bottom:449.566933pt;}
.y1b6{bottom:449.568133pt;}
.y6f{bottom:449.568267pt;}
.y57{bottom:449.572933pt;}
.ye4{bottom:449.574267pt;}
.yc9{bottom:449.575600pt;}
.y208{bottom:449.579067pt;}
.y2b{bottom:449.579867pt;}
.y19c{bottom:449.580400pt;}
.y1e1{bottom:449.581733pt;}
.y1d5{bottom:449.585200pt;}
.y56{bottom:468.221200pt;}
.y1e0{bottom:468.227333pt;}
.ye3{bottom:468.233467pt;}
.y16c{bottom:468.234800pt;}
.y15b{bottom:468.236133pt;}
.y13c{bottom:468.237467pt;}
.y19b{bottom:468.239600pt;}
.y8e{bottom:468.239733pt;}
.y1b5{bottom:468.240933pt;}
.y6e{bottom:468.241067pt;}
.yb5{bottom:468.245733pt;}
.y2d{bottom:468.246533pt;}
.y112{bottom:468.247067pt;}
.yc8{bottom:468.248400pt;}
.y2a{bottom:468.251867pt;}
.y19a{bottom:486.887867pt;}
.y55{bottom:486.894000pt;}
.yb4{bottom:486.900133pt;}
.y6d{bottom:486.900267pt;}
.y1ac{bottom:486.901467pt;}
.ye2{bottom:486.906267pt;}
.y16b{bottom:486.907600pt;}
.y8d{bottom:486.907733pt;}
.y15a{bottom:486.908933pt;}
.y13b{bottom:486.910267pt;}
.y1fe{bottom:486.912400pt;}
.y29{bottom:486.913200pt;}
.y2c{bottom:486.918533pt;}
.ye{bottom:492.609475pt;}
.y13a{bottom:505.542267pt;}
.y199{bottom:505.560667pt;}
.y54{bottom:505.566800pt;}
.ye1{bottom:505.568133pt;}
.y216{bottom:505.570800pt;}
.yb3{bottom:505.572933pt;}
.y6c{bottom:505.573067pt;}
.y1ab{bottom:505.574267pt;}
.y120{bottom:505.575600pt;}
.yfc{bottom:505.579067pt;}
.y17e{bottom:505.580400pt;}
.y8c{bottom:505.580533pt;}
.y159{bottom:505.581733pt;}
.y28{bottom:505.585200pt;}
.yd{bottom:516.213612pt;}
.y139{bottom:524.215067pt;}
.y158{bottom:524.227333pt;}
.y1fd{bottom:524.228667pt;}
.y198{bottom:524.233467pt;}
.y6b{bottom:524.233600pt;}
.y53{bottom:524.239600pt;}
.y8b{bottom:524.239733pt;}
.yb2{bottom:524.240933pt;}
.y215{bottom:524.243600pt;}
.yfb{bottom:524.245733pt;}
.y1aa{bottom:524.247067pt;}
.y11f{bottom:524.248400pt;}
.yc{bottom:528.458393pt;}
.y138{bottom:542.887867pt;}
.y11e{bottom:542.894000pt;}
.yc7{bottom:542.900133pt;}
.y1fc{bottom:542.901467pt;}
.y111{bottom:542.902800pt;}
.y197{bottom:542.906267pt;}
.y6a{bottom:542.906400pt;}
.y1f3{bottom:542.907600pt;}
.y52{bottom:542.912400pt;}
.y8a{bottom:542.912533pt;}
.yb1{bottom:542.913733pt;}
.y214{bottom:542.916400pt;}
.yfa{bottom:542.918533pt;}
.y27{bottom:542.918667pt;}
.yb{bottom:552.300082pt;}
.yf9{bottom:561.536133pt;}
.y213{bottom:561.548400pt;}
.y137{bottom:561.560667pt;}
.y69{bottom:561.560800pt;}
.y11d{bottom:561.566800pt;}
.yb0{bottom:561.572933pt;}
.y196{bottom:561.574267pt;}
.y110{bottom:561.575600pt;}
.y1b4{bottom:561.576933pt;}
.y1c5{bottom:561.579067pt;}
.y1df{bottom:561.580400pt;}
.y89{bottom:561.580533pt;}
.y51{bottom:561.585200pt;}
.y26{bottom:561.585333pt;}
.ya{bottom:564.544863pt;}
.y9{bottom:576.789644pt;}
.yf8{bottom:580.208933pt;}
.y212{bottom:580.221200pt;}
.ye0{bottom:580.233467pt;}
.y68{bottom:580.233600pt;}
.y10f{bottom:580.234800pt;}
.y187{bottom:580.237467pt;}
.y11c{bottom:580.239600pt;}
.y88{bottom:580.239733pt;}
.yaf{bottom:580.240933pt;}
.y22d{bottom:580.242267pt;}
.y1de{bottom:580.243600pt;}
.yc6{bottom:580.245733pt;}
.y17d{bottom:580.246533pt;}
.y195{bottom:580.247067pt;}
.y1b3{bottom:580.249733pt;}
.y1c4{bottom:580.251867pt;}
.y25{bottom:580.252000pt;}
.y8{bottom:589.023627pt;}
.yf7{bottom:598.881733pt;}
.y211{bottom:598.894000pt;}
.y1f2{bottom:598.900133pt;}
.y87{bottom:598.900533pt;}
.y226{bottom:598.901467pt;}
.y1a9{bottom:598.902800pt;}
.ydf{bottom:598.906267pt;}
.y67{bottom:598.906400pt;}
.yc5{bottom:598.907600pt;}
.y186{bottom:598.910267pt;}
.yae{bottom:598.913733pt;}
.y22c{bottom:598.915067pt;}
.y157{bottom:598.918533pt;}
.y24{bottom:598.918667pt;}
.y7{bottom:601.268407pt;}
.y4f{bottom:616.286800pt;}
.y185{bottom:617.542267pt;}
.yf6{bottom:617.554533pt;}
.y1fb{bottom:617.555867pt;}
.y21c{bottom:617.560667pt;}
.yde{bottom:617.566800pt;}
.y194{bottom:617.569467pt;}
.yad{bottom:617.572933pt;}
.y86{bottom:617.573333pt;}
.y1d4{bottom:617.574267pt;}
.y1a8{bottom:617.575600pt;}
.y136{bottom:617.579067pt;}
.y66{bottom:617.579200pt;}
.y156{bottom:617.579867pt;}
.yc4{bottom:617.580400pt;}
.y23{bottom:617.585333pt;}
.y85{bottom:636.178133pt;}
.y184{bottom:636.215067pt;}
.y17c{bottom:636.221200pt;}
.yac{bottom:636.222533pt;}
.yf5{bottom:636.227333pt;}
.y1fa{bottom:636.228667pt;}
.y16a{bottom:636.233467pt;}
.yc3{bottom:636.239600pt;}
.y193{bottom:636.242267pt;}
.y1f1{bottom:636.245733pt;}
.y135{bottom:636.247067pt;}
.y155{bottom:636.251867pt;}
.y22{bottom:636.252000pt;}
.y65{bottom:636.254533pt;}
.y4e{bottom:645.622800pt;}
.y84{bottom:654.850933pt;}
.y183{bottom:654.887867pt;}
.y17b{bottom:654.894000pt;}
.yab{bottom:654.895333pt;}
.yf4{bottom:654.900133pt;}
.y1f9{bottom:654.901467pt;}
.y210{bottom:654.904133pt;}
.y134{bottom:654.906267pt;}
.yc2{bottom:654.907600pt;}
.y10e{bottom:654.912400pt;}
.y1ef{bottom:654.913733pt;}
.y1f0{bottom:654.918533pt;}
.y6{bottom:658.335133pt;}
.y83{bottom:673.523733pt;}
.y182{bottom:673.560667pt;}
.y17a{bottom:673.566800pt;}
.yaa{bottom:673.568133pt;}
.y1d3{bottom:673.569467pt;}
.yf3{bottom:673.572933pt;}
.y133{bottom:673.574267pt;}
.y169{bottom:673.576933pt;}
.y207{bottom:673.579067pt;}
.yc1{bottom:673.580400pt;}
.y10d{bottom:673.585200pt;}
.y64{bottom:673.586533pt;}
.y4d{bottom:674.958800pt;}
.y5{bottom:676.497145pt;}
.y82{bottom:692.196533pt;}
.y20f{bottom:692.208933pt;}
.yf2{bottom:692.233467pt;}
.y154{bottom:692.239333pt;}
.yc0{bottom:692.239600pt;}
.ya9{bottom:692.240933pt;}
.y1d2{bottom:692.242267pt;}
.y1c3{bottom:692.245733pt;}
.y11b{bottom:692.246533pt;}
.y132{bottom:692.247067pt;}
.y168{bottom:692.249733pt;}
.y206{bottom:692.251867pt;}
.y4{bottom:697.920112pt;}
.y4c{bottom:704.294800pt;}
.y81{bottom:710.869333pt;}
.y167{bottom:710.881733pt;}
.y1d1{bottom:710.887867pt;}
.ya8{bottom:710.900133pt;}
.ydd{bottom:710.901467pt;}
.yf1{bottom:710.906267pt;}
.y1dd{bottom:710.908933pt;}
.y153{bottom:710.912133pt;}
.y1ee{bottom:710.913733pt;}
.y63{bottom:710.918533pt;}
.y3{bottom:719.343079pt;}
.y80{bottom:729.542133pt;}
.y166{bottom:729.554533pt;}
.y10b{bottom:729.560667pt;}
.y131{bottom:729.566800pt;}
.yf0{bottom:729.568133pt;}
.ya7{bottom:729.572933pt;}
.ydc{bottom:729.574267pt;}
.y1c2{bottom:729.574533pt;}
.y1f8{bottom:729.579067pt;}
.y1dc{bottom:729.581733pt;}
.y152{bottom:729.584933pt;}
.y62{bottom:729.585333pt;}
.y4b{bottom:733.630800pt;}
.y10c{bottom:734.114000pt;}
.y2{bottom:740.776845pt;}
.y7f{bottom:748.214933pt;}
.ya6{bottom:748.227333pt;}
.y151{bottom:748.230533pt;}
.y10a{bottom:748.233467pt;}
.y11a{bottom:748.239600pt;}
.ybf{bottom:748.240933pt;}
.y1ed{bottom:748.242800pt;}
.y1b2{bottom:748.245733pt;}
.y1c1{bottom:748.246533pt;}
.ydb{bottom:748.247067pt;}
.y61{bottom:748.252000pt;}
.y4a{bottom:762.966800pt;}
.y7e{bottom:766.887733pt;}
.ya5{bottom:766.900133pt;}
.y21b{bottom:766.902000pt;}
.y150{bottom:766.903333pt;}
.yda{bottom:766.906267pt;}
.y119{bottom:766.912400pt;}
.ybe{bottom:766.913733pt;}
.y1ec{bottom:766.915600pt;}
.y1b1{bottom:766.918533pt;}
.y60{bottom:766.918667pt;}
.y7d{bottom:785.560533pt;}
.y179{bottom:785.568667pt;}
.ya4{bottom:785.572933pt;}
.y1eb{bottom:785.574800pt;}
.y14f{bottom:785.576133pt;}
.y22b{bottom:785.577467pt;}
.y118{bottom:785.578000pt;}
.y1b0{bottom:785.578800pt;}
.yd9{bottom:785.579067pt;}
.y5f{bottom:785.585333pt;}
.y117{bottom:804.223600pt;}
.y7c{bottom:804.233333pt;}
.ybd{bottom:804.235867pt;}
.y178{bottom:804.241467pt;}
.y192{bottom:804.242800pt;}
.ya3{bottom:804.245733pt;}
.y1ea{bottom:804.247600pt;}
.y14e{bottom:804.248933pt;}
.y22a{bottom:804.250267pt;}
.y1af{bottom:804.251600pt;}
.yd8{bottom:804.251867pt;}
.y5e{bottom:804.252000pt;}
.y21{bottom:807.476533pt;}
.y1a7{bottom:808.780667pt;}
.y116{bottom:822.896400pt;}
.y7b{bottom:822.906133pt;}
.y1d0{bottom:822.908133pt;}
.ybc{bottom:822.908667pt;}
.y14d{bottom:822.909467pt;}
.y1ae{bottom:822.912133pt;}
.y177{bottom:822.914267pt;}
.y191{bottom:822.915600pt;}
.ya2{bottom:822.918533pt;}
.y50{bottom:822.918667pt;}
.y205{bottom:822.921733pt;}
.y229{bottom:822.923067pt;}
.h7{height:25.603901pt;}
.h28{height:26.577338pt;}
.ha{height:27.633900pt;}
.h9{height:31.858026pt;}
.h24{height:31.957333pt;}
.h8{height:32.004877pt;}
.h11{height:34.240000pt;}
.h5{height:35.205364pt;}
.hd{height:35.529300pt;}
.h10{height:36.520000pt;}
.h2a{height:37.056000pt;}
.h16{height:38.406400pt;}
.h33{height:38.569600pt;}
.h6{height:39.477001pt;}
.hb{height:39.822532pt;}
.h15{height:41.088000pt;}
.h1e{height:41.996800pt;}
.h26{height:42.010667pt;}
.h32{height:43.520000pt;}
.h34{height:43.574400pt;}
.h14{height:44.208000pt;}
.hc{height:44.214241pt;}
.h18{height:45.260800pt;}
.h1c{height:45.285333pt;}
.h17{height:45.315200pt;}
.h1a{height:45.334933pt;}
.h19{height:45.369600pt;}
.h1d{height:45.587200pt;}
.h31{height:45.588267pt;}
.h2f{height:45.590400pt;}
.h35{height:45.593600pt;}
.h23{height:45.595733pt;}
.h30{height:45.598933pt;}
.h2b{height:45.601067pt;}
.h22{height:45.606400pt;}
.h27{height:45.611733pt;}
.h2e{height:45.612800pt;}
.h25{height:45.630933pt;}
.h20{height:45.641600pt;}
.h2c{height:45.644800pt;}
.h29{height:45.650133pt;}
.h2d{height:45.655467pt;}
.h1f{height:45.660800pt;}
.h21{height:45.696000pt;}
.h13{height:54.536533pt;}
.h3{height:55.267801pt;}
.h4{height:55.751545pt;}
.h1b{height:93.834667pt;}
.h12{height:181.744000pt;}
.he{height:907.301333pt;}
.hf{height:907.333333pt;}
.h2{height:909.061597pt;}
.h1{height:909.333333pt;}
.h0{height:909.600000pt;}
.w1{width:642.666667pt;}
.w2{width:642.772533pt;}
.w0{width:642.773333pt;}
.x0{left:0.000000pt;}
.x3{left:33.667748pt;}
.x5{left:38.381200pt;}
.x1{left:39.790139pt;}
.x6{left:74.367867pt;}
.xc{left:82.614133pt;}
.x21{left:85.706533pt;}
.x1f{left:93.609200pt;}
.x2{left:107.125635pt;}
.x14{left:111.057600pt;}
.x7{left:182.194933pt;}
.x15{left:211.998400pt;}
.x16{left:215.766133pt;}
.x12{left:246.868800pt;}
.xd{left:250.173200pt;}
.x1d{left:278.905333pt;}
.x4{left:315.265313pt;}
.x8{left:326.393600pt;}
.xf{left:333.965733pt;}
.x1e{left:337.392128pt;}
.x13{left:341.509643pt;}
.x20{left:345.292629pt;}
.x10{left:384.057600pt;}
.x11{left:387.787200pt;}
.xb{left:390.148200pt;}
.x1b{left:411.665867pt;}
.x1c{left:440.796533pt;}
.x17{left:460.616133pt;}
.x19{left:466.485333pt;}
.x18{left:489.746800pt;}
.x1a{left:495.616000pt;}
.xa{left:522.044400pt;}
.xe{left:591.551200pt;}
.x9{left:593.407733pt;}
}




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