
    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_a5a428c5837d852a2dc5ddd3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_b0049d0311b4437c0edac7a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_21409f8eb7b729457189314f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.052734;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_f48f3217319bfe5e4f1798d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_a56abcb7497606b4c1cfe843.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_d00f30701a0b3010485d2469.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_e39c8b9925eda26de450e48e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_3cb3c81a69b8c28e99cc3ce3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f03c886a77849963240dbaef.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2c448b59a07ba3182baf6a87.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.876465;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_54390cbc81758c13bc0750ee.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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_22dbeafa2af6e2b6a0dfb994.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921387;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_36d8f8810a962768cd1b918b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250082,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250119,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250151,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250243,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250296,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250329,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250448,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v3{vertical-align:-52.212954px;}
.v6{vertical-align:-49.073258px;}
.v7{vertical-align:-44.887102px;}
.v2{vertical-align:-20.880000px;}
.v4{vertical-align:-3.071350px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.000000px;}
.v5{vertical-align:34.037787px;}
.ls1b{letter-spacing:-1.114605px;}
.lse{letter-spacing:-1.076779px;}
.ls20{letter-spacing:-1.047440px;}
.ls19{letter-spacing:-1.016896px;}
.ls1c{letter-spacing:-0.987945px;}
.lsc{letter-spacing:-0.971992px;}
.ls1e{letter-spacing:-0.955619px;}
.ls1a{letter-spacing:-0.915569px;}
.lsd{letter-spacing:-0.914178px;}
.ls22{letter-spacing:-0.874101px;}
.ls1f{letter-spacing:-0.860397px;}
.ls24{letter-spacing:-0.849215px;}
.ls23{letter-spacing:-0.787002px;}
.ls1d{letter-spacing:-0.731007px;}
.ls21{letter-spacing:-0.686958px;}
.lsf{letter-spacing:-0.639564px;}
.ls25{letter-spacing:-0.628357px;}
.ls9{letter-spacing:-0.513600px;}
.ls8{letter-spacing:-0.270000px;}
.ls18{letter-spacing:-0.206400px;}
.ls3{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.153600px;}
.ls5{letter-spacing:-0.144000px;}
.ls2c{letter-spacing:-0.139800px;}
.ls17{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.018720px;}
.ls4{letter-spacing:-0.018000px;}
.ls16{letter-spacing:-0.009360px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.009360px;}
.lsa{letter-spacing:0.013320px;}
.ls13{letter-spacing:0.026640px;}
.ls27{letter-spacing:0.053280px;}
.ls10{letter-spacing:0.064800px;}
.ls6{letter-spacing:0.090000px;}
.ls0{letter-spacing:0.108000px;}
.ls28{letter-spacing:0.126600px;}
.ls2f{letter-spacing:0.139800px;}
.ls2d{letter-spacing:0.140040px;}
.ls26{letter-spacing:0.153360px;}
.ls2b{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls2e{letter-spacing:1.671120px;}
.ls29{letter-spacing:2.391120px;}
.ls12{letter-spacing:15.570000px;}
.ls2a{letter-spacing:36.951120px;}
.ls14{letter-spacing:63.566640px;}
.ls11{letter-spacing:63.686640px;}
.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;}
}
.ws14{word-spacing:-60.120000px;}
.ws0{word-spacing:-53.820000px;}
.ws2{word-spacing:-26.856000px;}
.ws36{word-spacing:-15.210000px;}
.ws34{word-spacing:-15.183600px;}
.ws33{word-spacing:-15.083280px;}
.ws12{word-spacing:-15.056640px;}
.ws7{word-spacing:-15.043320px;}
.ws5{word-spacing:-15.030000px;}
.ws15{word-spacing:-14.976720px;}
.ws35{word-spacing:-14.890200px;}
.ws16{word-spacing:-14.850000px;}
.ws17{word-spacing:-14.823600px;}
.ws1{word-spacing:-12.186000px;}
.ws8{word-spacing:-12.150000px;}
.ws3{word-spacing:-11.970000px;}
.ws13{word-spacing:-11.960640px;}
.ws19{word-spacing:-11.695392px;}
.ws1a{word-spacing:-11.674946px;}
.wsa{word-spacing:-11.657219px;}
.ws22{word-spacing:-10.990641px;}
.ws23{word-spacing:-10.971427px;}
.ws2b{word-spacing:-10.053093px;}
.ws2c{word-spacing:-10.035518px;}
.ws1c{word-spacing:-9.855208px;}
.ws1e{word-spacing:-9.834762px;}
.wsc{word-spacing:-9.819829px;}
.ws4{word-spacing:-9.720000px;}
.ws25{word-spacing:-9.261345px;}
.ws27{word-spacing:-9.242130px;}
.ws1d{word-spacing:-8.919193px;}
.wsd{word-spacing:-8.905651px;}
.wsb{word-spacing:-8.847837px;}
.ws1b{word-spacing:-8.838312px;}
.ws2e{word-spacing:-8.471313px;}
.ws30{word-spacing:-8.453738px;}
.ws26{word-spacing:-8.381733px;}
.ws24{word-spacing:-8.305725px;}
.ws1f{word-spacing:-7.994578px;}
.wse{word-spacing:-7.962024px;}
.ws2f{word-spacing:-7.666736px;}
.ws2d{word-spacing:-7.597212px;}
.ws28{word-spacing:-7.512833px;}
.ws31{word-spacing:-6.871957px;}
.ws10{word-spacing:-0.051671px;}
.ws11{word-spacing:-0.051581px;}
.ws6{word-spacing:0.000000px;}
.ws32{word-spacing:40.905432px;}
.ws29{word-spacing:44.720259px;}
.wsf{word-spacing:47.334927px;}
.ws20{word-spacing:47.587849px;}
.ws2a{word-spacing:268.922500px;}
.ws21{word-spacing:294.002120px;}
.ws9{word-spacing:312.139877px;}
.ws18{word-spacing:312.854372px;}
._2b{margin-left:-4.778280px;}
._b{margin-left:-3.600000px;}
._5{margin-left:-2.080800px;}
._0{margin-left:-1.009800px;}
._3{width:1.803600px;}
._8{width:2.945880px;}
._1{width:4.103880px;}
._4{width:5.711400px;}
._6{width:7.094160px;}
._2{width:8.717400px;}
._16{width:10.333440px;}
._13{width:11.362680px;}
._c{width:12.985920px;}
._21{width:14.007960px;}
._11{width:16.112160px;}
._9{width:17.187840px;}
._7{width:18.577080px;}
._1b{width:19.719360px;}
._15{width:21.462840px;}
._20{width:22.546080px;}
._d{width:23.927760px;}
._e{width:25.287120px;}
._25{width:27.054000px;}
._1d{width:28.256400px;}
._f{width:30.060000px;}
._10{width:31.539600px;}
._12{width:32.705280px;}
._14{width:34.035120px;}
._27{width:35.290440px;}
._28{width:36.617880px;}
._29{width:37.801080px;}
._17{width:39.318480px;}
._18{width:40.617720px;}
._1a{width:42.283440px;}
._2a{width:43.827480px;}
._2c{width:46.292400px;}
._22{width:47.374560px;}
._19{width:48.997800px;}
._1f{width:50.801400px;}
._1e{width:51.823440px;}
._24{width:53.242920px;}
._23{width:54.348480px;}
._1c{width:55.800000px;}
._2d{width:62.705160px;}
._a{width:73.800000px;}
._26{width:875.683576px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(170,195,196);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs1f{font-size:30.406890px;}
.fs19{font-size:33.242626px;}
.fsc{font-size:35.230194px;}
.fs12{font-size:35.374238px;}
.fs1d{font-size:37.405918px;}
.fs1c{font-size:37.483685px;}
.fs6{font-size:38.880000px;}
.fs29{font-size:40.337853px;}
.fs2c{font-size:40.804142px;}
.fs25{font-size:40.827874px;}
.fs28{font-size:40.854897px;}
.fs2b{font-size:40.860736px;}
.fs17{font-size:40.894381px;}
.fs16{font-size:40.979401px;}
.fs23{font-size:41.196551px;}
.fs24{font-size:41.253689px;}
.fs31{font-size:41.397701px;}
.fs30{font-size:41.455118px;}
.fs2d{font-size:41.457624px;}
.fs2a{font-size:41.780162px;}
.fs34{font-size:41.813709px;}
.fs27{font-size:41.886090px;}
.fs32{font-size:41.938254px;}
.fs26{font-size:41.944185px;}
.fs2{font-size:42.120000px;}
.fs21{font-size:43.111443px;}
.fs22{font-size:43.171237px;}
.fs33{font-size:43.291860px;}
.fs2e{font-size:43.358795px;}
.fs2f{font-size:43.418932px;}
.fsa{font-size:43.450572px;}
.fs10{font-size:43.516645px;}
.fsf{font-size:43.607117px;}
.fs20{font-size:43.999335px;}
.fs1a{font-size:44.404946px;}
.fs1b{font-size:44.482713px;}
.fs5{font-size:47.880000px;}
.fs14{font-size:48.546137px;}
.fs15{font-size:48.631156px;}
.fs9{font-size:51.580617px;}
.fsd{font-size:51.659053px;}
.fs8{font-size:51.670951px;}
.fse{font-size:51.749524px;}
.fs0{font-size:54.000000px;}
.fs1e{font-size:56.069994px;}
.fs7{font-size:60.120000px;}
.fs18{font-size:61.384082px;}
.fsb{font-size:65.130691px;}
.fs13{font-size:65.229732px;}
.fs11{font-size:65.320204px;}
.fs1{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1d3{bottom:3.240000px;}
.ya{bottom:4.770000px;}
.yc0{bottom:10.375390px;}
.y1d1{bottom:11.880000px;}
.y129{bottom:12.723395px;}
.y11a{bottom:13.909883px;}
.y10a{bottom:14.801835px;}
.y12b{bottom:20.227852px;}
.y1d2{bottom:20.520000px;}
.y9{bottom:22.410000px;}
.y10e{bottom:23.532291px;}
.y1a6{bottom:30.371326px;}
.y205{bottom:33.365729px;}
.yb7{bottom:33.771853px;}
.y122{bottom:34.739655px;}
.y211{bottom:35.226518px;}
.y12a{bottom:35.334086px;}
.y15e{bottom:35.687436px;}
.y20d{bottom:35.952906px;}
.y161{bottom:36.017574px;}
.y16a{bottom:36.373544px;}
.y1b4{bottom:36.704940px;}
.y1b0{bottom:37.884631px;}
.y209{bottom:38.304412px;}
.y167{bottom:38.472926px;}
.y1a9{bottom:38.531279px;}
.y1ab{bottom:39.338716px;}
.y10d{bottom:41.106321px;}
.ybb{bottom:42.466473px;}
.y1a5{bottom:43.896535px;}
.y204{bottom:47.633868px;}
.y210{bottom:49.618079px;}
.y169{bottom:49.793359px;}
.y160{bottom:49.815030px;}
.y15d{bottom:50.419901px;}
.y20c{bottom:50.858876px;}
.y1b3{bottom:51.648991px;}
.y1af{bottom:51.785297px;}
.y1a8{bottom:51.898616px;}
.y1ac{bottom:51.944989px;}
.y166{bottom:52.143478px;}
.y208{bottom:52.351691px;}
.y8{bottom:56.610000px;}
.y5b{bottom:56.700000px;}
.y128{bottom:59.986326px;}
.yba{bottom:60.036402px;}
.y203{bottom:61.416260px;}
.ybf{bottom:61.459180px;}
.y20f{bottom:63.517372px;}
.yc4{bottom:65.253174px;}
.y20b{bottom:65.254470px;}
.y119{bottom:65.580492px;}
.y1ae{bottom:65.685389px;}
.y1b2{bottom:66.064437px;}
.y207{bottom:66.400715px;}
.y125{bottom:66.576989px;}
.y109{bottom:69.785717px;}
.y116{bottom:72.785884px;}
.y7{bottom:73.170000px;}
.y106{bottom:77.453128px;}
.yc3{bottom:80.451841px;}
.yb6{bottom:88.649665px;}
.y6{bottom:89.640000px;}
.yb3{bottom:96.301825px;}
.y5{bottom:106.110000px;}
.y5a{bottom:106.920000px;}
.y4{bottom:123.390000px;}
.y124{bottom:126.865946px;}
.y242{bottom:130.860000px;}
.y126{bottom:133.919266px;}
.y266{bottom:136.260000px;}
.y115{bottom:138.697267px;}
.y95{bottom:139.140000px;}
.yb0{bottom:139.680000px;}
.y14d{bottom:141.300000px;}
.y103{bottom:142.110000px;}
.y3c{bottom:144.450000px;}
.y117{bottom:146.408518px;}
.y105{bottom:147.590949px;}
.y201{bottom:147.600000px;}
.y241{bottom:148.140000px;}
.y15b{bottom:150.840000px;}
.y1a3{bottom:151.110000px;}
.y131{bottom:152.700087px;}
.y265{bottom:153.450000px;}
.y107{bottom:155.796650px;}
.y94{bottom:156.420000px;}
.yaf{bottom:156.870000px;}
.y14c{bottom:158.580000px;}
.y16c{bottom:159.149981px;}
.y164{bottom:159.333238px;}
.y102{bottom:159.390000px;}
.y3b{bottom:161.640000px;}
.y1a2{bottom:162.270000px;}
.y56{bottom:162.900000px;}
.y1b1{bottom:163.007578px;}
.y11b{bottom:163.795018px;}
.y200{bottom:164.880000px;}
.y240{bottom:165.420000px;}
.yb2{bottom:166.310564px;}
.y15a{bottom:168.030000px;}
.y190{bottom:169.110000px;}
.y264{bottom:170.730000px;}
.y1e5{bottom:171.090000px;}
.y16d{bottom:171.417783px;}
.y163{bottom:172.520705px;}
.y93{bottom:173.700000px;}
.yae{bottom:174.150000px;}
.y10b{bottom:174.298032px;}
.yb4{bottom:174.512847px;}
.y14b{bottom:175.770000px;}
.y101{bottom:176.670000px;}
.yd9{bottom:177.840000px;}
.y3a{bottom:178.920000px;}
.y55{bottom:180.090000px;}
.y18f{bottom:180.270000px;}
.y12e{bottom:180.564045px;}
.y1a4{bottom:180.893759px;}
.y23f{bottom:182.610000px;}
.y11c{bottom:183.204971px;}
.y159{bottom:185.310000px;}
.y263{bottom:188.010000px;}
.y1e4{bottom:188.370000px;}
.yd8{bottom:189.000000px;}
.y114{bottom:189.444621px;}
.y92{bottom:190.890000px;}
.yad{bottom:191.430000px;}
.yb8{bottom:192.959033px;}
.y14a{bottom:193.050000px;}
.y28b{bottom:194.760000px;}
.y10c{bottom:194.952607px;}
.y39{bottom:196.110000px;}
.y54{bottom:197.370000px;}
.y11f{bottom:197.403235px;}
.y1ff{bottom:197.730000px;}
.y12d{bottom:199.554726px;}
.y23e{bottom:199.890000px;}
.y158{bottom:202.590000px;}
.y100{bottom:203.940000px;}
.y1e3{bottom:205.560000px;}
.y91{bottom:208.170000px;}
.yac{bottom:208.620000px;}
.y111{bottom:210.061310px;}
.y149{bottom:210.240000px;}
.y38{bottom:213.390000px;}
.yb9{bottom:213.555147px;}
.y130{bottom:213.669434px;}
.y127{bottom:213.941511px;}
.y53{bottom:214.560000px;}
.y23d{bottom:217.170000px;}
.y1fe{bottom:217.800000px;}
.y11e{bottom:218.164995px;}
.y157{bottom:219.240000px;}
.y262{bottom:220.860000px;}
.yff{bottom:221.220000px;}
.y1e2{bottom:222.840000px;}
.y90{bottom:225.480000px;}
.yab{bottom:225.930000px;}
.y148{bottom:227.550000px;}
.y12f{bottom:227.861907px;}
.ybe{bottom:228.668007px;}
.y37{bottom:230.700000px;}
.y52{bottom:231.870000px;}
.y28a{bottom:231.960000px;}
.y110{bottom:232.154372px;}
.y156{bottom:233.040000px;}
.y121{bottom:233.596035px;}
.y118{bottom:233.893590px;}
.y1fd{bottom:235.020000px;}
.y1e1{bottom:240.150000px;}
.y261{bottom:240.960000px;}
.y12c{bottom:241.743314px;}
.y8f{bottom:242.670000px;}
.yaa{bottom:243.210000px;}
.y23c{bottom:243.390000px;}
.y147{bottom:244.830000px;}
.y155{bottom:246.810000px;}
.y36{bottom:247.890000px;}
.yfe{bottom:248.520000px;}
.y113{bottom:248.574894px;}
.y108{bottom:248.891517px;}
.y120{bottom:249.112095px;}
.y51{bottom:249.150000px;}
.ybd{bottom:250.709458px;}
.y1fc{bottom:252.300000px;}
.y1e0{bottom:257.340000px;}
.y260{bottom:258.240000px;}
.y8e{bottom:259.950000px;}
.ya9{bottom:260.400000px;}
.y154{bottom:260.670000px;}
.y146{bottom:262.020000px;}
.y11d{bottom:264.288076px;}
.y112{bottom:265.085887px;}
.y35{bottom:265.170000px;}
.yfd{bottom:265.800000px;}
.y50{bottom:266.340000px;}
.yc6{bottom:267.105048px;}
.yb5{bottom:267.421195px;}
.y289{bottom:268.770000px;}
.y1fb{bottom:269.580000px;}
.y153{bottom:274.440000px;}
.y1df{bottom:274.620000px;}
.y25f{bottom:275.430000px;}
.yc8{bottom:276.743658px;}
.y8d{bottom:277.140000px;}
.ya8{bottom:277.680000px;}
.y23b{bottom:277.950000px;}
.y145{bottom:279.300000px;}
.y10f{bottom:281.234996px;}
.y34{bottom:282.450000px;}
.yfc{bottom:283.080000px;}
.yc5{bottom:283.563872px;}
.y4f{bottom:283.620000px;}
.y152{bottom:285.600000px;}
.y16b{bottom:286.472437px;}
.y1fa{bottom:286.770000px;}
.y1de{bottom:291.900000px;}
.y25e{bottom:292.710000px;}
.y8c{bottom:294.420000px;}
.ya7{bottom:294.960000px;}
.y23a{bottom:295.140000px;}
.y144{bottom:296.580000px;}
.y33{bottom:299.640000px;}
.yc7{bottom:299.688450px;}
.ybc{bottom:299.688461px;}
.y4e{bottom:300.900000px;}
.y1f9{bottom:304.050000px;}
.y288{bottom:305.580000px;}
.y1dd{bottom:309.090000px;}
.y25d{bottom:309.990000px;}
.yfb{bottom:310.350000px;}
.y8b{bottom:311.700000px;}
.ya6{bottom:312.150000px;}
.y143{bottom:313.770000px;}
.y32{bottom:316.920000px;}
.y4d{bottom:318.090000px;}
.yc1{bottom:319.363146px;}
.y1f8{bottom:321.330000px;}
.y239{bottom:322.500000px;}
.y1dc{bottom:326.370000px;}
.y287{bottom:326.730000px;}
.y25c{bottom:327.180000px;}
.yfa{bottom:327.630000px;}
.y8a{bottom:328.890000px;}
.ya5{bottom:329.430000px;}
.y142{bottom:331.050000px;}
.y31{bottom:334.200000px;}
.y4c{bottom:335.370000px;}
.y1f7{bottom:338.520000px;}
.y238{bottom:339.780000px;}
.y1db{bottom:343.650000px;}
.y25b{bottom:344.460000px;}
.yf9{bottom:344.910000px;}
.y89{bottom:346.170000px;}
.y286{bottom:346.620000px;}
.ya4{bottom:346.710000px;}
.y141{bottom:348.330000px;}
.yc2{bottom:348.559035px;}
.y30{bottom:351.390000px;}
.y4b{bottom:352.650000px;}
.y1f6{bottom:355.800000px;}
.y237{bottom:356.970000px;}
.y1da{bottom:360.840000px;}
.y25a{bottom:361.650000px;}
.yf8{bottom:362.100000px;}
.y88{bottom:363.450000px;}
.ya3{bottom:363.900000px;}
.y1a1{bottom:365.160000px;}
.y140{bottom:365.520000px;}
.y285{bottom:366.420000px;}
.y18e{bottom:368.040000px;}
.y2f{bottom:368.670000px;}
.y4a{bottom:369.840000px;}
.y1f5{bottom:373.080000px;}
.y236{bottom:374.250000px;}
.y1a0{bottom:376.320000px;}
.y1ad{bottom:377.675550px;}
.y1d9{bottom:378.120000px;}
.y259{bottom:378.930000px;}
.yf7{bottom:379.380000px;}
.y87{bottom:380.640000px;}
.ya2{bottom:381.180000px;}
.y13f{bottom:382.800000px;}
.y18d{bottom:385.320000px;}
.y2e{bottom:385.950000px;}
.y284{bottom:386.220000px;}
.y49{bottom:387.120000px;}
.y1f4{bottom:390.270000px;}
.y1d8{bottom:395.400000px;}
.y258{bottom:396.210000px;}
.yf6{bottom:396.660000px;}
.y86{bottom:397.920000px;}
.ya1{bottom:398.460000px;}
.y13e{bottom:400.080000px;}
.y235{bottom:401.520000px;}
.y18c{bottom:402.600000px;}
.y2d{bottom:403.140000px;}
.y48{bottom:404.400000px;}
.y1f3{bottom:407.550000px;}
.y1d7{bottom:412.590000px;}
.y257{bottom:413.400000px;}
.yf5{bottom:413.850000px;}
.y283{bottom:415.110000px;}
.y85{bottom:415.200000px;}
.ya0{bottom:415.650000px;}
.y13d{bottom:416.730000px;}
.y234{bottom:418.800000px;}
.y18b{bottom:419.790000px;}
.y2c{bottom:420.420000px;}
.y47{bottom:421.590000px;}
.y1f2{bottom:424.830000px;}
.y1d6{bottom:427.350000px;}
.y13c{bottom:430.500000px;}
.y256{bottom:430.680000px;}
.yf4{bottom:431.130000px;}
.y84{bottom:432.390000px;}
.y9f{bottom:432.930000px;}
.y282{bottom:434.910000px;}
.y233{bottom:436.080000px;}
.y18a{bottom:437.070000px;}
.y2b{bottom:437.700000px;}
.y46{bottom:438.870000px;}
.y1f1{bottom:442.020000px;}
.y13b{bottom:444.270000px;}
.y1d5{bottom:445.350000px;}
.y255{bottom:447.960000px;}
.yf3{bottom:448.410000px;}
.y83{bottom:449.670000px;}
.y9e{bottom:450.120000px;}
.y189{bottom:454.350000px;}
.y281{bottom:454.800000px;}
.y2a{bottom:454.890000px;}
.y45{bottom:456.150000px;}
.y13a{bottom:458.130000px;}
.y1f0{bottom:459.300000px;}
.y1d4{bottom:463.350000px;}
.y254{bottom:465.150000px;}
.y82{bottom:466.950000px;}
.y9d{bottom:467.400000px;}
.y139{bottom:469.290000px;}
.y162{bottom:469.536977px;}
.y188{bottom:471.540000px;}
.yd7{bottom:471.630000px;}
.y29{bottom:472.170000px;}
.y44{bottom:473.340000px;}
.yf2{bottom:474.600000px;}
.y151{bottom:474.960000px;}
.y1ef{bottom:476.580000px;}
.y232{bottom:480.630000px;}
.y1d0{bottom:481.350000px;}
.yd6{bottom:482.790000px;}
.y104{bottom:483.209455px;}
.y81{bottom:484.140000px;}
.y9c{bottom:484.680000px;}
.y150{bottom:486.120000px;}
.y168{bottom:486.427819px;}
.y187{bottom:488.820000px;}
.y28{bottom:489.450000px;}
.y43{bottom:490.620000px;}
.yf1{bottom:491.880000px;}
.y253{bottom:492.510000px;}
.y1ee{bottom:493.230000px;}
.y280{bottom:494.400000px;}
.y231{bottom:497.910000px;}
.y80{bottom:501.420000px;}
.y9b{bottom:501.870000px;}
.y186{bottom:506.100000px;}
.y27{bottom:506.640000px;}
.y1ed{bottom:507.000000px;}
.y42{bottom:507.900000px;}
.yf0{bottom:509.070000px;}
.y252{bottom:509.790000px;}
.y230{bottom:515.100000px;}
.y7f{bottom:518.700000px;}
.y9a{bottom:519.150000px;}
.y1ec{bottom:520.770000px;}
.y185{bottom:523.290000px;}
.y26{bottom:523.920000px;}
.y41{bottom:525.090000px;}
.yef{bottom:526.350000px;}
.y251{bottom:526.980000px;}
.y1cf{bottom:528.240000px;}
.y22f{bottom:532.380000px;}
.y1eb{bottom:534.630000px;}
.y7e{bottom:535.890000px;}
.y184{bottom:540.570000px;}
.y25{bottom:541.110000px;}
.y40{bottom:542.370000px;}
.y27f{bottom:543.090000px;}
.y250{bottom:544.260000px;}
.y1ea{bottom:545.790000px;}
.y20e{bottom:546.015881px;}
.y22e{bottom:549.660000px;}
.y1ce{bottom:551.640000px;}
.y99{bottom:552.000000px;}
.y7d{bottom:553.170000px;}
.yee{bottom:553.620000px;}
.y183{bottom:557.850000px;}
.y24{bottom:558.390000px;}
.y3f{bottom:559.560000px;}
.y24f{bottom:561.540000px;}
.y27e{bottom:562.980000px;}
.y22d{bottom:566.850000px;}
.y1cd{bottom:568.920000px;}
.y7c{bottom:570.450000px;}
.y19f{bottom:570.810000px;}
.yed{bottom:570.900000px;}
.y98{bottom:572.070000px;}
.y182{bottom:575.040000px;}
.y3e{bottom:576.840000px;}
.y24e{bottom:578.730000px;}
.y27d{bottom:582.780000px;}
.y22c{bottom:584.130000px;}
.y1cc{bottom:586.110000px;}
.y7b{bottom:587.640000px;}
.y19e{bottom:588.090000px;}
.yec{bottom:588.180000px;}
.y97{bottom:588.720000px;}
.y23{bottom:591.240000px;}
.y181{bottom:592.320000px;}
.y3d{bottom:594.120000px;}
.y24d{bottom:596.010000px;}
.y96{bottom:599.970000px;}
.yb1{bottom:600.289217px;}
.y22b{bottom:601.410000px;}
.y1cb{bottom:603.390000px;}
.y7a{bottom:604.920000px;}
.y19d{bottom:605.280000px;}
.yeb{bottom:605.460000px;}
.y180{bottom:609.600000px;}
.y27c{bottom:611.580000px;}
.y22a{bottom:618.600000px;}
.y1ca{bottom:620.670000px;}
.y79{bottom:622.110000px;}
.y19c{bottom:622.560000px;}
.yea{bottom:622.650000px;}
.y24c{bottom:623.280000px;}
.y22{bottom:626.340000px;}
.y17f{bottom:626.790000px;}
.y27b{bottom:631.470000px;}
.y229{bottom:635.880000px;}
.y1c9{bottom:637.860000px;}
.y78{bottom:639.390000px;}
.y19b{bottom:639.840000px;}
.y24b{bottom:640.560000px;}
.y21{bottom:643.620000px;}
.y17e{bottom:644.070000px;}
.ye9{bottom:650.040000px;}
.y27a{bottom:651.300000px;}
.y228{bottom:653.190000px;}
.y1c8{bottom:655.170000px;}
.y77{bottom:656.700000px;}
.y19a{bottom:657.060000px;}
.y24a{bottom:657.870000px;}
.y138{bottom:659.220000px;}
.y20{bottom:660.840000px;}
.y17d{bottom:661.290000px;}
.ye8{bottom:667.320000px;}
.y137{bottom:670.380000px;}
.y279{bottom:671.190000px;}
.y15f{bottom:671.729133px;}
.y1c7{bottom:672.450000px;}
.y76{bottom:673.890000px;}
.y199{bottom:674.340000px;}
.y249{bottom:675.060000px;}
.y1f{bottom:678.120000px;}
.y17c{bottom:678.570000px;}
.y14f{bottom:681.000000px;}
.ye7{bottom:684.510000px;}
.y227{bottom:687.660000px;}
.y1c6{bottom:689.640000px;}
.y75{bottom:691.170000px;}
.y198{bottom:691.620000px;}
.y14e{bottom:692.160000px;}
.y165{bottom:692.509893px;}
.y1e{bottom:695.400000px;}
.y17b{bottom:695.850000px;}
.y278{bottom:699.990000px;}
.ye6{bottom:701.790000px;}
.y226{bottom:704.940000px;}
.y1c5{bottom:706.920000px;}
.y197{bottom:708.270000px;}
.y248{bottom:708.360000px;}
.y74{bottom:708.450000px;}
.y1d{bottom:712.590000px;}
.y17a{bottom:713.040000px;}
.y277{bottom:719.790000px;}
.y196{bottom:722.040000px;}
.y225{bottom:722.130000px;}
.y1c4{bottom:724.200000px;}
.y247{bottom:725.640000px;}
.ye5{bottom:729.060000px;}
.y1c{bottom:729.870000px;}
.y179{bottom:730.320000px;}
.y195{bottom:735.810000px;}
.y224{bottom:739.410000px;}
.y1e9{bottom:739.860000px;}
.y73{bottom:741.300000px;}
.y1c3{bottom:741.390000px;}
.y246{bottom:742.920000px;}
.ye4{bottom:746.340000px;}
.y1b{bottom:747.150000px;}
.y178{bottom:747.600000px;}
.y276{bottom:748.680000px;}
.y194{bottom:749.670000px;}
.y1e8{bottom:751.020000px;}
.y20a{bottom:751.108615px;}
.y223{bottom:756.600000px;}
.y1c2{bottom:758.670000px;}
.y245{bottom:760.200000px;}
.y193{bottom:760.830000px;}
.y72{bottom:761.370000px;}
.y1aa{bottom:762.004972px;}
.ye3{bottom:763.620000px;}
.y1a{bottom:764.340000px;}
.y177{bottom:764.790000px;}
.y275{bottom:768.480000px;}
.y222{bottom:773.880000px;}
.y1c1{bottom:775.950000px;}
.y244{bottom:777.390000px;}
.y71{bottom:778.650000px;}
.ye2{bottom:780.810000px;}
.y19{bottom:781.620000px;}
.y176{bottom:782.070000px;}
.yd5{bottom:783.960000px;}
.y274{bottom:788.370000px;}
.y221{bottom:791.160000px;}
.y1c0{bottom:793.140000px;}
.y70{bottom:795.840000px;}
.ye1{bottom:798.090000px;}
.y18{bottom:798.900000px;}
.y175{bottom:799.350000px;}
.y220{bottom:808.350000px;}
.yd4{bottom:810.240000px;}
.y243{bottom:810.330000px;}
.y1bf{bottom:810.420000px;}
.y6f{bottom:813.120000px;}
.ye0{bottom:815.370000px;}
.y17{bottom:816.090000px;}
.y174{bottom:816.540000px;}
.y273{bottom:817.170000px;}
.yd3{bottom:827.430000px;}
.y1be{bottom:827.610000px;}
.y6e{bottom:830.400000px;}
.ydf{bottom:832.020000px;}
.y173{bottom:833.820000px;}
.y21f{bottom:834.630000px;}
.y272{bottom:836.970000px;}
.yd2{bottom:844.710000px;}
.y1bd{bottom:844.890000px;}
.yde{bottom:845.790000px;}
.y6d{bottom:847.590000px;}
.y16{bottom:849.030000px;}
.y172{bottom:851.100000px;}
.y21e{bottom:851.910000px;}
.y271{bottom:856.860000px;}
.ydd{bottom:859.560000px;}
.yd1{bottom:861.990000px;}
.y1bc{bottom:862.170000px;}
.y6c{bottom:864.870000px;}
.y171{bottom:868.290000px;}
.y21d{bottom:869.100000px;}
.y136{bottom:873.240000px;}
.ydc{bottom:873.420000px;}
.y270{bottom:876.660000px;}
.yd0{bottom:879.180000px;}
.y1bb{bottom:879.360000px;}
.y6b{bottom:882.150000px;}
.y15{bottom:884.040000px;}
.y135{bottom:884.400000px;}
.y15c{bottom:885.170257px;}
.y170{bottom:885.570000px;}
.y21c{bottom:886.380000px;}
.ydb{bottom:887.190000px;}
.ycf{bottom:896.460000px;}
.y26f{bottom:896.550000px;}
.y1ba{bottom:896.640000px;}
.yda{bottom:898.350000px;}
.y123{bottom:899.113065px;}
.y6a{bottom:899.340000px;}
.y14{bottom:901.320000px;}
.y16f{bottom:902.850000px;}
.y21b{bottom:903.660000px;}
.y1b9{bottom:913.290000px;}
.y69{bottom:916.620000px;}
.y16e{bottom:919.500000px;}
.y21a{bottom:920.850000px;}
.yce{bottom:923.820000px;}
.y26e{bottom:925.350000px;}
.y1b8{bottom:927.060000px;}
.y68{bottom:933.900000px;}
.y13{bottom:936.510000px;}
.y219{bottom:938.130000px;}
.y1b7{bottom:940.920000px;}
.ycd{bottom:941.010000px;}
.y26d{bottom:945.150000px;}
.y1e7{bottom:950.190000px;}
.y67{bottom:951.090000px;}
.y192{bottom:952.440000px;}
.y12{bottom:953.790000px;}
.y1b6{bottom:954.690000px;}
.y218{bottom:955.410000px;}
.ycc{bottom:958.290000px;}
.y1e6{bottom:961.350000px;}
.y206{bottom:962.375556px;}
.y191{bottom:963.600000px;}
.y1a7{bottom:964.134474px;}
.y26c{bottom:965.040000px;}
.y1b5{bottom:965.850000px;}
.y202{bottom:966.470198px;}
.y66{bottom:968.370000px;}
.ycb{bottom:975.570000px;}
.y11{bottom:976.290000px;}
.y217{bottom:982.680000px;}
.y26b{bottom:984.840000px;}
.y65{bottom:985.560000px;}
.yca{bottom:992.760000px;}
.y10{bottom:993.480000px;}
.y216{bottom:999.960000px;}
.y64{bottom:1002.840000px;}
.yc9{bottom:1010.040000px;}
.y26a{bottom:1013.730000px;}
.y215{bottom:1017.240000px;}
.y63{bottom:1020.120000px;}
.yf{bottom:1024.170000px;}
.y269{bottom:1033.530000px;}
.y62{bottom:1037.310000px;}
.y214{bottom:1044.510000px;}
.ye{bottom:1044.870000px;}
.y268{bottom:1053.330000px;}
.y61{bottom:1054.590000px;}
.y213{bottom:1061.790000px;}
.yd{bottom:1067.580000px;}
.y60{bottom:1071.900000px;}
.y212{bottom:1079.010000px;}
.y267{bottom:1086.300000px;}
.y134{bottom:1087.920000px;}
.y5f{bottom:1089.090000px;}
.yc{bottom:1098.630000px;}
.y133{bottom:1105.200000px;}
.y5e{bottom:1106.370000px;}
.y5d{bottom:1123.650000px;}
.yb{bottom:1129.680000px;}
.y132{bottom:1138.050000px;}
.y5c{bottom:1140.840000px;}
.y59{bottom:1163.880000px;}
.y3{bottom:1163.970000px;}
.y58{bottom:1180.350000px;}
.y2{bottom:1180.440000px;}
.y57{bottom:1196.820000px;}
.y1{bottom:1196.910000px;}
.h4{height:14.760000px;}
.h4f{height:17.280000px;}
.h8{height:28.419609px;}
.h30{height:30.243572px;}
.h28{height:33.064077px;}
.hd{height:33.431836px;}
.h4e{height:34.470000px;}
.h13{height:35.040969px;}
.h1f{height:35.184239px;}
.h2e{height:37.205007px;}
.h2d{height:37.282357px;}
.h16{height:39.969941px;}
.h15{height:40.039941px;}
.h5{height:40.104492px;}
.h43{height:40.121194px;}
.h48{height:40.584979px;}
.h3c{height:40.608584px;}
.h41{height:40.635461px;}
.h47{height:40.641269px;}
.h26{height:40.674734px;}
.h25{height:40.759297px;}
.h39{height:40.975281px;}
.h3a{height:41.032112px;}
.h52{height:41.175350px;}
.h51{height:41.232459px;}
.h4a{height:41.234951px;}
.h45{height:41.555757px;}
.h58{height:41.589123px;}
.h3f{height:41.661116px;}
.h32{height:41.661929px;}
.h54{height:41.713000px;}
.h3e{height:41.718898px;}
.ha{height:41.978320px;}
.hb{height:42.418652px;}
.h36{height:42.879887px;}
.h37{height:42.939360px;}
.h56{height:43.059336px;}
.h4c{height:43.125911px;}
.h4d{height:43.185725px;}
.h11{height:43.217195px;}
.h1d{height:43.282913px;}
.h1c{height:43.372899px;}
.h34{height:43.763011px;}
.h19{height:43.769004px;}
.h9{height:43.945137px;}
.h2c{height:44.166443px;}
.h31{height:44.243793px;}
.h2a{height:45.547306px;}
.h59{height:46.000195px;}
.h14{height:48.232222px;}
.h24{height:48.285391px;}
.h29{height:48.369954px;}
.h22{height:48.467929px;}
.h17{height:49.112404px;}
.hc{height:50.800781px;}
.h10{height:51.303572px;}
.h1b{height:51.381587px;}
.hf{height:51.393421px;}
.h21{height:51.471573px;}
.h2{height:53.709961px;}
.h2f{height:55.768837px;}
.h27{height:61.054382px;}
.h12{height:64.780868px;}
.h20{height:64.879377px;}
.h1e{height:64.969363px;}
.h3{height:65.526152px;}
.h7{height:65.855742px;}
.h6{height:76.201172px;}
.h18{height:85.341360px;}
.h42{height:183.786195px;}
.h40{height:185.716974px;}
.h3b{height:186.185285px;}
.h38{height:186.841501px;}
.h46{height:187.608583px;}
.h50{height:188.184498px;}
.h49{height:189.750608px;}
.h44{height:190.528038px;}
.h57{height:191.174119px;}
.h3d{height:191.711647px;}
.h53{height:192.386650px;}
.h55{height:196.344579px;}
.h35{height:198.665461px;}
.h33{height:199.276930px;}
.h4b{height:199.354238px;}
.h2b{height:255.464697px;}
.h23{height:279.289090px;}
.h1a{height:297.197920px;}
.he{height:364.497044px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w12{width:52.830000px;}
.w13{width:68.850000px;}
.w3{width:95.940000px;}
.w14{width:132.150000px;}
.w7{width:258.382539px;}
.w6{width:282.476227px;}
.w5{width:300.589617px;}
.w4{width:370.653165px;}
.wc{width:371.546056px;}
.wd{width:371.555589px;}
.wf{width:371.562215px;}
.wb{width:371.573840px;}
.we{width:371.593450px;}
.w18{width:374.639095px;}
.w15{width:374.713588px;}
.w10{width:375.263816px;}
.w17{width:375.942104px;}
.w16{width:376.493986px;}
.w11{width:378.362941px;}
.w8{width:380.314638px;}
.w9{width:380.318870px;}
.wa{width:380.329369px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:7.037291px;}
.x3f{left:8.934774px;}
.x1c{left:10.357577px;}
.x54{left:11.790000px;}
.x56{left:14.850000px;}
.x5a{left:19.440000px;}
.x58{left:20.970000px;}
.x3c{left:30.729133px;}
.x33{left:33.594545px;}
.x17{left:35.677650px;}
.x36{left:36.804012px;}
.x1b{left:39.088268px;}
.x22{left:40.533840px;}
.x5b{left:51.120000px;}
.x59{left:52.380000px;}
.x1d{left:53.792450px;}
.x52{left:62.673984px;}
.x5f{left:65.853651px;}
.xd{left:68.129987px;}
.x48{left:69.965224px;}
.x5e{left:71.000204px;}
.x42{left:72.179987px;}
.x47{left:73.923341px;}
.x60{left:76.094963px;}
.x46{left:79.747137px;}
.x40{left:85.578532px;}
.x53{left:89.099987px;}
.x24{left:95.129987px;}
.x35{left:99.824480px;}
.x18{left:106.036228px;}
.x2{left:107.999987px;}
.x8{left:112.589987px;}
.x34{left:117.891061px;}
.x25{left:122.159987px;}
.x6{left:126.209987px;}
.x5{left:130.709987px;}
.x23{left:133.682740px;}
.x1e{left:137.793611px;}
.x2f{left:139.678104px;}
.x39{left:171.822696px;}
.x55{left:180.030000px;}
.x30{left:187.844838px;}
.x3e{left:197.540414px;}
.x14{left:199.546536px;}
.x3d{left:201.389902px;}
.x3b{left:203.551810px;}
.x37{left:209.584243px;}
.x4a{left:213.588647px;}
.x43{left:219.269987px;}
.x32{left:222.532656px;}
.x1a{left:229.406592px;}
.x19{left:233.878822px;}
.x16{left:236.381441px;}
.x3a{left:237.629539px;}
.x1f{left:247.521358px;}
.x57{left:249.690000px;}
.x4b{left:254.099987px;}
.x31{left:259.788063px;}
.x15{left:275.962959px;}
.x49{left:281.150505px;}
.x20{left:292.135252px;}
.x21{left:294.430123px;}
.x7{left:356.879987px;}
.xb{left:367.709987px;}
.x9{left:374.549987px;}
.xa{left:382.829987px;}
.xc{left:387.329987px;}
.x27{left:422.879987px;}
.x26{left:431.879987px;}
.x4c{left:440.159987px;}
.x3{left:442.319987px;}
.x10{left:444.479987px;}
.x1{left:446.549987px;}
.xf{left:448.709987px;}
.x41{left:451.499987px;}
.xe{left:457.169987px;}
.x44{left:461.219987px;}
.x5c{left:464.369987px;}
.x4d{left:465.629987px;}
.x2a{left:467.429987px;}
.x4e{left:472.739987px;}
.x2d{left:484.169987px;}
.x12{left:508.289987px;}
.x2e{left:511.169987px;}
.x38{left:513.930087px;}
.x4f{left:589.289987px;}
.x45{left:608.309987px;}
.x5d{left:612.359987px;}
.x2b{left:629.639987px;}
.x29{left:636.479987px;}
.x2c{left:643.139987px;}
.x28{left:772.649987px;}
.x4{left:797.040000px;}
.x11{left:828.449987px;}
.x50{left:832.949987px;}
.x51{left:836.099987px;}
@media print{
.v3{vertical-align:-46.411514pt;}
.v6{vertical-align:-43.620673pt;}
.v7{vertical-align:-39.899646pt;}
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-2.730089pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.000000pt;}
.v5{vertical-align:30.255811pt;}
.ls1b{letter-spacing:-0.990760pt;}
.lse{letter-spacing:-0.957137pt;}
.ls20{letter-spacing:-0.931058pt;}
.ls19{letter-spacing:-0.903908pt;}
.ls1c{letter-spacing:-0.878174pt;}
.lsc{letter-spacing:-0.863993pt;}
.ls1e{letter-spacing:-0.849439pt;}
.ls1a{letter-spacing:-0.813839pt;}
.lsd{letter-spacing:-0.812603pt;}
.ls22{letter-spacing:-0.776979pt;}
.ls1f{letter-spacing:-0.764798pt;}
.ls24{letter-spacing:-0.754858pt;}
.ls23{letter-spacing:-0.699557pt;}
.ls1d{letter-spacing:-0.649784pt;}
.ls21{letter-spacing:-0.610629pt;}
.lsf{letter-spacing:-0.568501pt;}
.ls25{letter-spacing:-0.558540pt;}
.ls9{letter-spacing:-0.456533pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls18{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.136533pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2c{letter-spacing:-0.124267pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.016640pt;}
.ls4{letter-spacing:-0.016000pt;}
.ls16{letter-spacing:-0.008320pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.008320pt;}
.lsa{letter-spacing:0.011840pt;}
.ls13{letter-spacing:0.023680pt;}
.ls27{letter-spacing:0.047360pt;}
.ls10{letter-spacing:0.057600pt;}
.ls6{letter-spacing:0.080000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls28{letter-spacing:0.112533pt;}
.ls2f{letter-spacing:0.124267pt;}
.ls2d{letter-spacing:0.124480pt;}
.ls26{letter-spacing:0.136320pt;}
.ls2b{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2e{letter-spacing:1.485440pt;}
.ls29{letter-spacing:2.125440pt;}
.ls12{letter-spacing:13.840000pt;}
.ls2a{letter-spacing:32.845440pt;}
.ls14{letter-spacing:56.503680pt;}
.ls11{letter-spacing:56.610347pt;}
.ws14{word-spacing:-53.440000pt;}
.ws0{word-spacing:-47.840000pt;}
.ws2{word-spacing:-23.872000pt;}
.ws36{word-spacing:-13.520000pt;}
.ws34{word-spacing:-13.496533pt;}
.ws33{word-spacing:-13.407360pt;}
.ws12{word-spacing:-13.383680pt;}
.ws7{word-spacing:-13.371840pt;}
.ws5{word-spacing:-13.360000pt;}
.ws15{word-spacing:-13.312640pt;}
.ws35{word-spacing:-13.235733pt;}
.ws16{word-spacing:-13.200000pt;}
.ws17{word-spacing:-13.176533pt;}
.ws1{word-spacing:-10.832000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws3{word-spacing:-10.640000pt;}
.ws13{word-spacing:-10.631680pt;}
.ws19{word-spacing:-10.395904pt;}
.ws1a{word-spacing:-10.377730pt;}
.wsa{word-spacing:-10.361973pt;}
.ws22{word-spacing:-9.769459pt;}
.ws23{word-spacing:-9.752379pt;}
.ws2b{word-spacing:-8.936083pt;}
.ws2c{word-spacing:-8.920460pt;}
.ws1c{word-spacing:-8.760185pt;}
.ws1e{word-spacing:-8.742011pt;}
.wsc{word-spacing:-8.728737pt;}
.ws4{word-spacing:-8.640000pt;}
.ws25{word-spacing:-8.232306pt;}
.ws27{word-spacing:-8.215227pt;}
.ws1d{word-spacing:-7.928172pt;}
.wsd{word-spacing:-7.916134pt;}
.wsb{word-spacing:-7.864744pt;}
.ws1b{word-spacing:-7.856277pt;}
.ws2e{word-spacing:-7.530056pt;}
.ws30{word-spacing:-7.514433pt;}
.ws26{word-spacing:-7.450429pt;}
.ws24{word-spacing:-7.382867pt;}
.ws1f{word-spacing:-7.106291pt;}
.wse{word-spacing:-7.077354pt;}
.ws2f{word-spacing:-6.814876pt;}
.ws2d{word-spacing:-6.753077pt;}
.ws28{word-spacing:-6.678074pt;}
.ws31{word-spacing:-6.108406pt;}
.ws10{word-spacing:-0.045930pt;}
.ws11{word-spacing:-0.045849pt;}
.ws6{word-spacing:0.000000pt;}
.ws32{word-spacing:36.360384pt;}
.ws29{word-spacing:39.751341pt;}
.wsf{word-spacing:42.075491pt;}
.ws20{word-spacing:42.300310pt;}
.ws2a{word-spacing:239.042222pt;}
.ws21{word-spacing:261.335218pt;}
.ws9{word-spacing:277.457668pt;}
.ws18{word-spacing:278.092775pt;}
._2b{margin-left:-4.247360pt;}
._b{margin-left:-3.200000pt;}
._5{margin-left:-1.849600pt;}
._0{margin-left:-0.897600pt;}
._3{width:1.603200pt;}
._8{width:2.618560pt;}
._1{width:3.647893pt;}
._4{width:5.076800pt;}
._6{width:6.305920pt;}
._2{width:7.748800pt;}
._16{width:9.185280pt;}
._13{width:10.100160pt;}
._c{width:11.543040pt;}
._21{width:12.451520pt;}
._11{width:14.321920pt;}
._9{width:15.278080pt;}
._7{width:16.512960pt;}
._1b{width:17.528320pt;}
._15{width:19.078080pt;}
._20{width:20.040960pt;}
._d{width:21.269120pt;}
._e{width:22.477440pt;}
._25{width:24.048000pt;}
._1d{width:25.116800pt;}
._f{width:26.720000pt;}
._10{width:28.035200pt;}
._12{width:29.071360pt;}
._14{width:30.253440pt;}
._27{width:31.369280pt;}
._28{width:32.549227pt;}
._29{width:33.600960pt;}
._17{width:34.949760pt;}
._18{width:36.104640pt;}
._1a{width:37.585280pt;}
._2a{width:38.957760pt;}
._2c{width:41.148800pt;}
._22{width:42.110720pt;}
._19{width:43.553600pt;}
._1f{width:45.156800pt;}
._1e{width:46.065280pt;}
._24{width:47.327040pt;}
._23{width:48.309760pt;}
._1c{width:49.600000pt;}
._2d{width:55.737920pt;}
._a{width:65.600000pt;}
._26{width:778.385401pt;}
.fs1f{font-size:27.028346pt;}
.fs19{font-size:29.549001pt;}
.fsc{font-size:31.315728pt;}
.fs12{font-size:31.443767pt;}
.fs1d{font-size:33.249705pt;}
.fs1c{font-size:33.318831pt;}
.fs6{font-size:34.560000pt;}
.fs29{font-size:35.855869pt;}
.fs2c{font-size:36.270348pt;}
.fs25{font-size:36.291444pt;}
.fs28{font-size:36.315464pt;}
.fs2b{font-size:36.320654pt;}
.fs17{font-size:36.350561pt;}
.fs16{font-size:36.426134pt;}
.fs23{font-size:36.619157pt;}
.fs24{font-size:36.669946pt;}
.fs31{font-size:36.797956pt;}
.fs30{font-size:36.848994pt;}
.fs2d{font-size:36.851221pt;}
.fs2a{font-size:37.137922pt;}
.fs34{font-size:37.167741pt;}
.fs27{font-size:37.232080pt;}
.fs32{font-size:37.278448pt;}
.fs26{font-size:37.283720pt;}
.fs2{font-size:37.440000pt;}
.fs21{font-size:38.321282pt;}
.fs22{font-size:38.374433pt;}
.fs33{font-size:38.481654pt;}
.fs2e{font-size:38.541151pt;}
.fs2f{font-size:38.594606pt;}
.fsa{font-size:38.622731pt;}
.fs10{font-size:38.681463pt;}
.fsf{font-size:38.761881pt;}
.fs20{font-size:39.110520pt;}
.fs1a{font-size:39.471064pt;}
.fs1b{font-size:39.540190pt;}
.fs5{font-size:42.560000pt;}
.fs14{font-size:43.152121pt;}
.fs15{font-size:43.227694pt;}
.fs9{font-size:45.849437pt;}
.fsd{font-size:45.919158pt;}
.fs8{font-size:45.929734pt;}
.fse{font-size:45.999577pt;}
.fs0{font-size:48.000000pt;}
.fs1e{font-size:49.839994pt;}
.fs7{font-size:53.440000pt;}
.fs18{font-size:54.563628pt;}
.fsb{font-size:57.893948pt;}
.fs13{font-size:57.981984pt;}
.fs11{font-size:58.062403pt;}
.fs1{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1d3{bottom:2.880000pt;}
.ya{bottom:4.240000pt;}
.yc0{bottom:9.222569pt;}
.y1d1{bottom:10.560000pt;}
.y129{bottom:11.309684pt;}
.y11a{bottom:12.364340pt;}
.y10a{bottom:13.157187pt;}
.y12b{bottom:17.980313pt;}
.y1d2{bottom:18.240000pt;}
.y9{bottom:19.920000pt;}
.y10e{bottom:20.917592pt;}
.y1a6{bottom:26.996734pt;}
.y205{bottom:29.658426pt;}
.yb7{bottom:30.019425pt;}
.y122{bottom:30.879693pt;}
.y211{bottom:31.312461pt;}
.y12a{bottom:31.408076pt;}
.y15e{bottom:31.722166pt;}
.y20d{bottom:31.958139pt;}
.y161{bottom:32.015622pt;}
.y16a{bottom:32.332039pt;}
.y1b4{bottom:32.626613pt;}
.y1b0{bottom:33.675227pt;}
.y209{bottom:34.048366pt;}
.y167{bottom:34.198156pt;}
.y1a9{bottom:34.250025pt;}
.y1ab{bottom:34.967748pt;}
.y10d{bottom:36.538952pt;}
.ybb{bottom:37.747976pt;}
.y1a5{bottom:39.019143pt;}
.y204{bottom:42.341216pt;}
.y210{bottom:44.104959pt;}
.y169{bottom:44.260764pt;}
.y160{bottom:44.280027pt;}
.y15d{bottom:44.817690pt;}
.y20c{bottom:45.207890pt;}
.y1b3{bottom:45.910214pt;}
.y1af{bottom:46.031375pt;}
.y1a8{bottom:46.132103pt;}
.y1ac{bottom:46.173324pt;}
.y166{bottom:46.349758pt;}
.y208{bottom:46.534837pt;}
.y8{bottom:50.320000pt;}
.y5b{bottom:50.400000pt;}
.y128{bottom:53.321179pt;}
.yba{bottom:53.365691pt;}
.y203{bottom:54.592231pt;}
.ybf{bottom:54.630382pt;}
.y20f{bottom:56.459886pt;}
.yc4{bottom:58.002822pt;}
.y20b{bottom:58.003974pt;}
.y119{bottom:58.293771pt;}
.y1ae{bottom:58.387012pt;}
.y1b2{bottom:58.723944pt;}
.y207{bottom:59.022858pt;}
.y125{bottom:59.179546pt;}
.y109{bottom:62.031748pt;}
.y116{bottom:64.698564pt;}
.y7{bottom:65.040000pt;}
.y106{bottom:68.847225pt;}
.yc3{bottom:71.512748pt;}
.yb6{bottom:78.799702pt;}
.y6{bottom:79.680000pt;}
.yb3{bottom:85.601622pt;}
.y5{bottom:94.320000pt;}
.y5a{bottom:95.040000pt;}
.y4{bottom:109.680000pt;}
.y124{bottom:112.769730pt;}
.y242{bottom:116.320000pt;}
.y126{bottom:119.039347pt;}
.y266{bottom:121.120000pt;}
.y115{bottom:123.286460pt;}
.y95{bottom:123.680000pt;}
.yb0{bottom:124.160000pt;}
.y14d{bottom:125.600000pt;}
.y103{bottom:126.320000pt;}
.y3c{bottom:128.400000pt;}
.y117{bottom:130.140905pt;}
.y105{bottom:131.191955pt;}
.y201{bottom:131.200000pt;}
.y241{bottom:131.680000pt;}
.y15b{bottom:134.080000pt;}
.y1a3{bottom:134.320000pt;}
.y131{bottom:135.733411pt;}
.y265{bottom:136.400000pt;}
.y107{bottom:138.485912pt;}
.y94{bottom:139.040000pt;}
.yaf{bottom:139.440000pt;}
.y14c{bottom:140.960000pt;}
.y16c{bottom:141.466650pt;}
.y164{bottom:141.629545pt;}
.y102{bottom:141.680000pt;}
.y3b{bottom:143.680000pt;}
.y1a2{bottom:144.240000pt;}
.y56{bottom:144.800000pt;}
.y1b1{bottom:144.895625pt;}
.y11b{bottom:145.595571pt;}
.y200{bottom:146.560000pt;}
.y240{bottom:147.040000pt;}
.yb2{bottom:147.831613pt;}
.y15a{bottom:149.360000pt;}
.y190{bottom:150.320000pt;}
.y264{bottom:151.760000pt;}
.y1e5{bottom:152.080000pt;}
.y16d{bottom:152.371363pt;}
.y163{bottom:153.351738pt;}
.y93{bottom:154.400000pt;}
.yae{bottom:154.800000pt;}
.y10b{bottom:154.931584pt;}
.yb4{bottom:155.122530pt;}
.y14b{bottom:156.240000pt;}
.y101{bottom:157.040000pt;}
.yd9{bottom:158.080000pt;}
.y3a{bottom:159.040000pt;}
.y55{bottom:160.080000pt;}
.y18f{bottom:160.240000pt;}
.y12e{bottom:160.501373pt;}
.y1a4{bottom:160.794453pt;}
.y23f{bottom:162.320000pt;}
.y11c{bottom:162.848863pt;}
.y159{bottom:164.720000pt;}
.y263{bottom:167.120000pt;}
.y1e4{bottom:167.440000pt;}
.yd8{bottom:168.000000pt;}
.y114{bottom:168.395218pt;}
.y92{bottom:169.680000pt;}
.yad{bottom:170.160000pt;}
.yb8{bottom:171.519140pt;}
.y14a{bottom:171.600000pt;}
.y28b{bottom:173.120000pt;}
.y10c{bottom:173.291206pt;}
.y39{bottom:174.320000pt;}
.y54{bottom:175.440000pt;}
.y11f{bottom:175.469542pt;}
.y1ff{bottom:175.760000pt;}
.y12d{bottom:177.381979pt;}
.y23e{bottom:177.680000pt;}
.y158{bottom:180.080000pt;}
.y100{bottom:181.280000pt;}
.y1e3{bottom:182.720000pt;}
.y91{bottom:185.040000pt;}
.yac{bottom:185.440000pt;}
.y111{bottom:186.721164pt;}
.y149{bottom:186.880000pt;}
.y38{bottom:189.680000pt;}
.yb9{bottom:189.826797pt;}
.y130{bottom:189.928385pt;}
.y127{bottom:190.170232pt;}
.y53{bottom:190.720000pt;}
.y23d{bottom:193.040000pt;}
.y1fe{bottom:193.600000pt;}
.y11e{bottom:193.924440pt;}
.y157{bottom:194.880000pt;}
.y262{bottom:196.320000pt;}
.yff{bottom:196.640000pt;}
.y1e2{bottom:198.080000pt;}
.y90{bottom:200.426667pt;}
.yab{bottom:200.826667pt;}
.y148{bottom:202.266667pt;}
.y12f{bottom:202.543917pt;}
.ybe{bottom:203.260451pt;}
.y37{bottom:205.066667pt;}
.y52{bottom:206.106667pt;}
.y28a{bottom:206.186667pt;}
.y110{bottom:206.359442pt;}
.y156{bottom:207.146667pt;}
.y121{bottom:207.640920pt;}
.y118{bottom:207.905414pt;}
.y1fd{bottom:208.906667pt;}
.y1e1{bottom:213.466667pt;}
.y261{bottom:214.186667pt;}
.y12c{bottom:214.882946pt;}
.y8f{bottom:215.706667pt;}
.yaa{bottom:216.186667pt;}
.y23c{bottom:216.346667pt;}
.y147{bottom:217.626667pt;}
.y155{bottom:219.386667pt;}
.y36{bottom:220.346667pt;}
.yfe{bottom:220.906667pt;}
.y113{bottom:220.955462pt;}
.y108{bottom:221.236904pt;}
.y120{bottom:221.432973pt;}
.y51{bottom:221.466667pt;}
.ybd{bottom:222.852852pt;}
.y1fc{bottom:224.266667pt;}
.y1e0{bottom:228.746667pt;}
.y260{bottom:229.546667pt;}
.y8e{bottom:231.066667pt;}
.ya9{bottom:231.466667pt;}
.y154{bottom:231.706667pt;}
.y146{bottom:232.906667pt;}
.y11d{bottom:234.922734pt;}
.y112{bottom:235.631900pt;}
.y35{bottom:235.706667pt;}
.yfd{bottom:236.266667pt;}
.y50{bottom:236.746667pt;}
.yc6{bottom:237.426710pt;}
.yb5{bottom:237.707729pt;}
.y289{bottom:238.906667pt;}
.y1fb{bottom:239.626667pt;}
.y153{bottom:243.946667pt;}
.y1df{bottom:244.106667pt;}
.y25f{bottom:244.826667pt;}
.yc8{bottom:245.994362pt;}
.y8d{bottom:246.346667pt;}
.ya8{bottom:246.826667pt;}
.y23b{bottom:247.066667pt;}
.y145{bottom:248.266667pt;}
.y10f{bottom:249.986663pt;}
.y34{bottom:251.066667pt;}
.yfc{bottom:251.626667pt;}
.yc5{bottom:252.056775pt;}
.y4f{bottom:252.106667pt;}
.y152{bottom:253.866667pt;}
.y16b{bottom:254.642166pt;}
.y1fa{bottom:254.906667pt;}
.y1de{bottom:259.466667pt;}
.y25e{bottom:260.186667pt;}
.y8c{bottom:261.706667pt;}
.ya7{bottom:262.186667pt;}
.y23a{bottom:262.346667pt;}
.y144{bottom:263.626667pt;}
.y33{bottom:266.346667pt;}
.yc7{bottom:266.389734pt;}
.ybc{bottom:266.389743pt;}
.y4e{bottom:267.466667pt;}
.y1f9{bottom:270.266667pt;}
.y288{bottom:271.626667pt;}
.y1dd{bottom:274.746667pt;}
.y25d{bottom:275.546667pt;}
.yfb{bottom:275.866667pt;}
.y8b{bottom:277.066667pt;}
.ya6{bottom:277.466667pt;}
.y143{bottom:278.906667pt;}
.y32{bottom:281.706667pt;}
.y4d{bottom:282.746667pt;}
.yc1{bottom:283.878352pt;}
.y1f8{bottom:285.626667pt;}
.y239{bottom:286.666667pt;}
.y1dc{bottom:290.106667pt;}
.y287{bottom:290.426667pt;}
.y25c{bottom:290.826667pt;}
.yfa{bottom:291.226667pt;}
.y8a{bottom:292.346667pt;}
.ya5{bottom:292.826667pt;}
.y142{bottom:294.266667pt;}
.y31{bottom:297.066667pt;}
.y4c{bottom:298.106667pt;}
.y1f7{bottom:300.906667pt;}
.y238{bottom:302.026667pt;}
.y1db{bottom:305.466667pt;}
.y25b{bottom:306.186667pt;}
.yf9{bottom:306.586667pt;}
.y89{bottom:307.706667pt;}
.y286{bottom:308.106667pt;}
.ya4{bottom:308.186667pt;}
.y141{bottom:309.626667pt;}
.yc2{bottom:309.830253pt;}
.y30{bottom:312.346667pt;}
.y4b{bottom:313.466667pt;}
.y1f6{bottom:316.266667pt;}
.y237{bottom:317.306667pt;}
.y1da{bottom:320.746667pt;}
.y25a{bottom:321.466667pt;}
.yf8{bottom:321.866667pt;}
.y88{bottom:323.066667pt;}
.ya3{bottom:323.466667pt;}
.y1a1{bottom:324.586667pt;}
.y140{bottom:324.906667pt;}
.y285{bottom:325.706667pt;}
.y18e{bottom:327.146667pt;}
.y2f{bottom:327.706667pt;}
.y4a{bottom:328.746667pt;}
.y1f5{bottom:331.626667pt;}
.y236{bottom:332.666667pt;}
.y1a0{bottom:334.506667pt;}
.y1ad{bottom:335.711600pt;}
.y1d9{bottom:336.106667pt;}
.y259{bottom:336.826667pt;}
.yf7{bottom:337.226667pt;}
.y87{bottom:338.346667pt;}
.ya2{bottom:338.826667pt;}
.y13f{bottom:340.266667pt;}
.y18d{bottom:342.506667pt;}
.y2e{bottom:343.066667pt;}
.y284{bottom:343.306667pt;}
.y49{bottom:344.106667pt;}
.y1f4{bottom:346.906667pt;}
.y1d8{bottom:351.466667pt;}
.y258{bottom:352.186667pt;}
.yf6{bottom:352.586667pt;}
.y86{bottom:353.706667pt;}
.ya1{bottom:354.186667pt;}
.y13e{bottom:355.626667pt;}
.y235{bottom:356.906667pt;}
.y18c{bottom:357.866667pt;}
.y2d{bottom:358.346667pt;}
.y48{bottom:359.466667pt;}
.y1f3{bottom:362.266667pt;}
.y1d7{bottom:366.746667pt;}
.y257{bottom:367.466667pt;}
.yf5{bottom:367.866667pt;}
.y283{bottom:368.986667pt;}
.y85{bottom:369.066667pt;}
.ya0{bottom:369.466667pt;}
.y13d{bottom:370.426667pt;}
.y234{bottom:372.266667pt;}
.y18b{bottom:373.146667pt;}
.y2c{bottom:373.706667pt;}
.y47{bottom:374.746667pt;}
.y1f2{bottom:377.626667pt;}
.y1d6{bottom:379.866667pt;}
.y13c{bottom:382.666667pt;}
.y256{bottom:382.826667pt;}
.yf4{bottom:383.226667pt;}
.y84{bottom:384.346667pt;}
.y9f{bottom:384.826667pt;}
.y282{bottom:386.586667pt;}
.y233{bottom:387.626667pt;}
.y18a{bottom:388.506667pt;}
.y2b{bottom:389.066667pt;}
.y46{bottom:390.106667pt;}
.y1f1{bottom:392.906667pt;}
.y13b{bottom:394.906667pt;}
.y1d5{bottom:395.866667pt;}
.y255{bottom:398.186667pt;}
.yf3{bottom:398.586667pt;}
.y83{bottom:399.706667pt;}
.y9e{bottom:400.106667pt;}
.y189{bottom:403.866667pt;}
.y281{bottom:404.266667pt;}
.y2a{bottom:404.346667pt;}
.y45{bottom:405.466667pt;}
.y13a{bottom:407.226667pt;}
.y1f0{bottom:408.266667pt;}
.y1d4{bottom:411.866667pt;}
.y254{bottom:413.466667pt;}
.y82{bottom:415.066667pt;}
.y9d{bottom:415.466667pt;}
.y139{bottom:417.146667pt;}
.y162{bottom:417.366202pt;}
.y188{bottom:419.146667pt;}
.yd7{bottom:419.226667pt;}
.y29{bottom:419.706667pt;}
.y44{bottom:420.746667pt;}
.yf2{bottom:421.866667pt;}
.y151{bottom:422.186667pt;}
.y1ef{bottom:423.626667pt;}
.y232{bottom:427.226667pt;}
.y1d0{bottom:427.866667pt;}
.yd6{bottom:429.146667pt;}
.y104{bottom:429.519516pt;}
.y81{bottom:430.346667pt;}
.y9c{bottom:430.826667pt;}
.y150{bottom:432.106667pt;}
.y168{bottom:432.380284pt;}
.y187{bottom:434.506667pt;}
.y28{bottom:435.066667pt;}
.y43{bottom:436.106667pt;}
.yf1{bottom:437.226667pt;}
.y253{bottom:437.786667pt;}
.y1ee{bottom:438.426667pt;}
.y280{bottom:439.466667pt;}
.y231{bottom:442.586667pt;}
.y80{bottom:445.706667pt;}
.y9b{bottom:446.106667pt;}
.y186{bottom:449.866667pt;}
.y27{bottom:450.346667pt;}
.y1ed{bottom:450.666667pt;}
.y42{bottom:451.466667pt;}
.yf0{bottom:452.506667pt;}
.y252{bottom:453.146667pt;}
.y230{bottom:457.866667pt;}
.y7f{bottom:461.066667pt;}
.y9a{bottom:461.466667pt;}
.y1ec{bottom:462.906667pt;}
.y185{bottom:465.146667pt;}
.y26{bottom:465.706667pt;}
.y41{bottom:466.746667pt;}
.yef{bottom:467.866667pt;}
.y251{bottom:468.426667pt;}
.y1cf{bottom:469.546667pt;}
.y22f{bottom:473.226667pt;}
.y1eb{bottom:475.226667pt;}
.y7e{bottom:476.346667pt;}
.y184{bottom:480.506667pt;}
.y25{bottom:480.986667pt;}
.y40{bottom:482.106667pt;}
.y27f{bottom:482.746667pt;}
.y250{bottom:483.786667pt;}
.y1ea{bottom:485.146667pt;}
.y20e{bottom:485.347450pt;}
.y22e{bottom:488.586667pt;}
.y1ce{bottom:490.346667pt;}
.y99{bottom:490.666667pt;}
.y7d{bottom:491.706667pt;}
.yee{bottom:492.106667pt;}
.y183{bottom:495.866667pt;}
.y24{bottom:496.346667pt;}
.y3f{bottom:497.386667pt;}
.y24f{bottom:499.146667pt;}
.y27e{bottom:500.426667pt;}
.y22d{bottom:503.866667pt;}
.y1cd{bottom:505.706667pt;}
.y7c{bottom:507.066667pt;}
.y19f{bottom:507.386667pt;}
.yed{bottom:507.466667pt;}
.y98{bottom:508.506667pt;}
.y182{bottom:511.146667pt;}
.y3e{bottom:512.746667pt;}
.y24e{bottom:514.426667pt;}
.y27d{bottom:518.026667pt;}
.y22c{bottom:519.226667pt;}
.y1cc{bottom:520.986667pt;}
.y7b{bottom:522.346667pt;}
.y19e{bottom:522.746667pt;}
.yec{bottom:522.826667pt;}
.y97{bottom:523.306667pt;}
.y23{bottom:525.546667pt;}
.y181{bottom:526.506667pt;}
.y3d{bottom:528.106667pt;}
.y24d{bottom:529.786667pt;}
.y96{bottom:533.306667pt;}
.yb1{bottom:533.590415pt;}
.y22b{bottom:534.586667pt;}
.y1cb{bottom:536.346667pt;}
.y7a{bottom:537.706667pt;}
.y19d{bottom:538.026667pt;}
.yeb{bottom:538.186667pt;}
.y180{bottom:541.866667pt;}
.y27c{bottom:543.626667pt;}
.y22a{bottom:549.866667pt;}
.y1ca{bottom:551.706667pt;}
.y79{bottom:552.986667pt;}
.y19c{bottom:553.386667pt;}
.yea{bottom:553.466667pt;}
.y24c{bottom:554.026667pt;}
.y22{bottom:556.746667pt;}
.y17f{bottom:557.146667pt;}
.y27b{bottom:561.306667pt;}
.y229{bottom:565.226667pt;}
.y1c9{bottom:566.986667pt;}
.y78{bottom:568.346667pt;}
.y19b{bottom:568.746667pt;}
.y24b{bottom:569.386667pt;}
.y21{bottom:572.106667pt;}
.y17e{bottom:572.506667pt;}
.ye9{bottom:577.813333pt;}
.y27a{bottom:578.933333pt;}
.y228{bottom:580.613333pt;}
.y1c8{bottom:582.373333pt;}
.y77{bottom:583.733333pt;}
.y19a{bottom:584.053333pt;}
.y24a{bottom:584.773333pt;}
.y138{bottom:585.973333pt;}
.y20{bottom:587.413333pt;}
.y17d{bottom:587.813333pt;}
.ye8{bottom:593.173333pt;}
.y137{bottom:595.893333pt;}
.y279{bottom:596.613333pt;}
.y15f{bottom:597.092563pt;}
.y1c7{bottom:597.733333pt;}
.y76{bottom:599.013333pt;}
.y199{bottom:599.413333pt;}
.y249{bottom:600.053333pt;}
.y1f{bottom:602.773333pt;}
.y17c{bottom:603.173333pt;}
.y14f{bottom:605.333333pt;}
.ye7{bottom:608.453333pt;}
.y227{bottom:611.253333pt;}
.y1c6{bottom:613.013333pt;}
.y75{bottom:614.373333pt;}
.y198{bottom:614.773333pt;}
.y14e{bottom:615.253333pt;}
.y165{bottom:615.564349pt;}
.y1e{bottom:618.133333pt;}
.y17b{bottom:618.533333pt;}
.y278{bottom:622.213333pt;}
.ye6{bottom:623.813333pt;}
.y226{bottom:626.613333pt;}
.y1c5{bottom:628.373333pt;}
.y197{bottom:629.573333pt;}
.y248{bottom:629.653333pt;}
.y74{bottom:629.733333pt;}
.y1d{bottom:633.413333pt;}
.y17a{bottom:633.813333pt;}
.y277{bottom:639.813333pt;}
.y196{bottom:641.813333pt;}
.y225{bottom:641.893333pt;}
.y1c4{bottom:643.733333pt;}
.y247{bottom:645.013333pt;}
.ye5{bottom:648.053333pt;}
.y1c{bottom:648.773333pt;}
.y179{bottom:649.173333pt;}
.y195{bottom:654.053333pt;}
.y224{bottom:657.253333pt;}
.y1e9{bottom:657.653333pt;}
.y73{bottom:658.933333pt;}
.y1c3{bottom:659.013333pt;}
.y246{bottom:660.373333pt;}
.ye4{bottom:663.413333pt;}
.y1b{bottom:664.133333pt;}
.y178{bottom:664.533333pt;}
.y276{bottom:665.493333pt;}
.y194{bottom:666.373333pt;}
.y1e8{bottom:667.573333pt;}
.y20a{bottom:667.652102pt;}
.y223{bottom:672.533333pt;}
.y1c2{bottom:674.373333pt;}
.y245{bottom:675.733333pt;}
.y193{bottom:676.293333pt;}
.y72{bottom:676.773333pt;}
.y1aa{bottom:677.337753pt;}
.ye3{bottom:678.773333pt;}
.y1a{bottom:679.413333pt;}
.y177{bottom:679.813333pt;}
.y275{bottom:683.093333pt;}
.y222{bottom:687.893333pt;}
.y1c1{bottom:689.733333pt;}
.y244{bottom:691.013333pt;}
.y71{bottom:692.133333pt;}
.ye2{bottom:694.053333pt;}
.y19{bottom:694.773333pt;}
.y176{bottom:695.173333pt;}
.yd5{bottom:696.853333pt;}
.y274{bottom:700.773333pt;}
.y221{bottom:703.253333pt;}
.y1c0{bottom:705.013333pt;}
.y70{bottom:707.413333pt;}
.ye1{bottom:709.413333pt;}
.y18{bottom:710.133333pt;}
.y175{bottom:710.533333pt;}
.y220{bottom:718.533333pt;}
.yd4{bottom:720.213333pt;}
.y243{bottom:720.293333pt;}
.y1bf{bottom:720.373333pt;}
.y6f{bottom:722.773333pt;}
.ye0{bottom:724.773333pt;}
.y17{bottom:725.413333pt;}
.y174{bottom:725.813333pt;}
.y273{bottom:726.373333pt;}
.yd3{bottom:735.493333pt;}
.y1be{bottom:735.653333pt;}
.y6e{bottom:738.133333pt;}
.ydf{bottom:739.573333pt;}
.y173{bottom:741.173333pt;}
.y21f{bottom:741.893333pt;}
.y272{bottom:743.973333pt;}
.yd2{bottom:750.853333pt;}
.y1bd{bottom:751.013333pt;}
.yde{bottom:751.813333pt;}
.y6d{bottom:753.413333pt;}
.y16{bottom:754.693333pt;}
.y172{bottom:756.533333pt;}
.y21e{bottom:757.253333pt;}
.y271{bottom:761.653333pt;}
.ydd{bottom:764.053333pt;}
.yd1{bottom:766.213333pt;}
.y1bc{bottom:766.373333pt;}
.y6c{bottom:768.773333pt;}
.y171{bottom:771.813333pt;}
.y21d{bottom:772.533333pt;}
.y136{bottom:776.213333pt;}
.ydc{bottom:776.373333pt;}
.y270{bottom:779.253333pt;}
.yd0{bottom:781.493333pt;}
.y1bb{bottom:781.653333pt;}
.y6b{bottom:784.133333pt;}
.y15{bottom:785.813333pt;}
.y135{bottom:786.133333pt;}
.y15c{bottom:786.818007pt;}
.y170{bottom:787.173333pt;}
.y21c{bottom:787.893333pt;}
.ydb{bottom:788.613333pt;}
.ycf{bottom:796.853333pt;}
.y26f{bottom:796.933333pt;}
.y1ba{bottom:797.013333pt;}
.yda{bottom:798.533333pt;}
.y123{bottom:799.211613pt;}
.y6a{bottom:799.413333pt;}
.y14{bottom:801.173333pt;}
.y16f{bottom:802.533333pt;}
.y21b{bottom:803.253333pt;}
.y1b9{bottom:811.813333pt;}
.y69{bottom:814.773333pt;}
.y16e{bottom:817.333333pt;}
.y21a{bottom:818.533333pt;}
.yce{bottom:821.173333pt;}
.y26e{bottom:822.533333pt;}
.y1b8{bottom:824.053333pt;}
.y68{bottom:830.133333pt;}
.y13{bottom:832.453333pt;}
.y219{bottom:833.893333pt;}
.y1b7{bottom:836.373333pt;}
.ycd{bottom:836.453333pt;}
.y26d{bottom:840.133333pt;}
.y1e7{bottom:844.613333pt;}
.y67{bottom:845.413333pt;}
.y192{bottom:846.613333pt;}
.y12{bottom:847.813333pt;}
.y1b6{bottom:848.613333pt;}
.y218{bottom:849.253333pt;}
.ycc{bottom:851.813333pt;}
.y1e6{bottom:854.533333pt;}
.y206{bottom:855.444939pt;}
.y191{bottom:856.533333pt;}
.y1a7{bottom:857.008421pt;}
.y26c{bottom:857.813333pt;}
.y1b5{bottom:858.533333pt;}
.y202{bottom:859.084621pt;}
.y66{bottom:860.773333pt;}
.ycb{bottom:867.173333pt;}
.y11{bottom:867.813333pt;}
.y217{bottom:873.493333pt;}
.y26b{bottom:875.413333pt;}
.y65{bottom:876.053333pt;}
.yca{bottom:882.453333pt;}
.y10{bottom:883.093333pt;}
.y216{bottom:888.853333pt;}
.y64{bottom:891.413333pt;}
.yc9{bottom:897.813333pt;}
.y26a{bottom:901.093333pt;}
.y215{bottom:904.213333pt;}
.y63{bottom:906.773333pt;}
.yf{bottom:910.373333pt;}
.y269{bottom:918.693333pt;}
.y62{bottom:922.053333pt;}
.y214{bottom:928.453333pt;}
.ye{bottom:928.773333pt;}
.y268{bottom:936.293333pt;}
.y61{bottom:937.413333pt;}
.y213{bottom:943.813333pt;}
.yd{bottom:948.960000pt;}
.y60{bottom:952.800000pt;}
.y212{bottom:959.120000pt;}
.y267{bottom:965.600000pt;}
.y134{bottom:967.040000pt;}
.y5f{bottom:968.080000pt;}
.yc{bottom:976.560000pt;}
.y133{bottom:982.400000pt;}
.y5e{bottom:983.440000pt;}
.y5d{bottom:998.800000pt;}
.yb{bottom:1004.160000pt;}
.y132{bottom:1011.600000pt;}
.y5c{bottom:1014.080000pt;}
.y59{bottom:1034.560000pt;}
.y3{bottom:1034.640000pt;}
.y58{bottom:1049.200000pt;}
.y2{bottom:1049.280000pt;}
.y57{bottom:1063.840000pt;}
.y1{bottom:1063.920000pt;}
.h4{height:13.120000pt;}
.h4f{height:15.360000pt;}
.h8{height:25.261875pt;}
.h30{height:26.883175pt;}
.h28{height:29.390290pt;}
.hd{height:29.717188pt;}
.h4e{height:30.640000pt;}
.h13{height:31.147528pt;}
.h1f{height:31.274879pt;}
.h2e{height:33.071118pt;}
.h2d{height:33.139873pt;}
.h16{height:35.528836pt;}
.h15{height:35.591058pt;}
.h5{height:35.648438pt;}
.h43{height:35.663284pt;}
.h48{height:36.075537pt;}
.h3c{height:36.096519pt;}
.h41{height:36.120410pt;}
.h47{height:36.125572pt;}
.h26{height:36.155319pt;}
.h25{height:36.230486pt;}
.h39{height:36.422472pt;}
.h3a{height:36.472988pt;}
.h52{height:36.600311pt;}
.h51{height:36.651074pt;}
.h4a{height:36.653290pt;}
.h45{height:36.938451pt;}
.h58{height:36.968110pt;}
.h3f{height:37.032103pt;}
.h32{height:37.032826pt;}
.h54{height:37.078222pt;}
.h3e{height:37.083465pt;}
.ha{height:37.314062pt;}
.hb{height:37.705469pt;}
.h36{height:38.115455pt;}
.h37{height:38.168320pt;}
.h56{height:38.274965pt;}
.h4c{height:38.334143pt;}
.h4d{height:38.387311pt;}
.h11{height:38.415284pt;}
.h1d{height:38.473701pt;}
.h1c{height:38.553688pt;}
.h34{height:38.900454pt;}
.h19{height:38.905781pt;}
.h9{height:39.062344pt;}
.h2c{height:39.259061pt;}
.h31{height:39.327816pt;}
.h2a{height:40.486494pt;}
.h59{height:40.889062pt;}
.h14{height:42.873086pt;}
.h24{height:42.920347pt;}
.h29{height:42.995514pt;}
.h22{height:43.082604pt;}
.h17{height:43.655470pt;}
.hc{height:45.156250pt;}
.h10{height:45.603176pt;}
.h1b{height:45.672522pt;}
.hf{height:45.683041pt;}
.h21{height:45.752509pt;}
.h2{height:47.742188pt;}
.h2f{height:49.572299pt;}
.h27{height:54.270562pt;}
.h12{height:57.582994pt;}
.h20{height:57.670558pt;}
.h1e{height:57.750545pt;}
.h3{height:58.245469pt;}
.h7{height:58.538437pt;}
.h6{height:67.734375pt;}
.h18{height:75.858986pt;}
.h42{height:163.365506pt;}
.h40{height:165.081755pt;}
.h3b{height:165.498031pt;}
.h38{height:166.081334pt;}
.h46{height:166.763185pt;}
.h50{height:167.275109pt;}
.h49{height:168.667207pt;}
.h44{height:169.358256pt;}
.h57{height:169.932550pt;}
.h3d{height:170.410353pt;}
.h53{height:171.010356pt;}
.h55{height:174.528515pt;}
.h35{height:176.591521pt;}
.h33{height:177.135049pt;}
.h4b{height:177.203767pt;}
.h2b{height:227.079731pt;}
.h23{height:248.256969pt;}
.h1a{height:264.175929pt;}
.he{height:323.997372pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w12{width:46.960000pt;}
.w13{width:61.200000pt;}
.w3{width:85.280000pt;}
.w14{width:117.466667pt;}
.w7{width:229.673368pt;}
.w6{width:251.089979pt;}
.w5{width:267.190770pt;}
.w4{width:329.469480pt;}
.wc{width:330.263161pt;}
.wd{width:330.271634pt;}
.wf{width:330.277524pt;}
.wb{width:330.287858pt;}
.we{width:330.305289pt;}
.w18{width:333.012529pt;}
.w15{width:333.078745pt;}
.w10{width:333.567837pt;}
.w17{width:334.170759pt;}
.w16{width:334.661321pt;}
.w11{width:336.322614pt;}
.w8{width:338.057456pt;}
.w9{width:338.061218pt;}
.wa{width:338.070550pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:6.255369pt;}
.x3f{left:7.942021pt;}
.x1c{left:9.206735pt;}
.x54{left:10.480000pt;}
.x56{left:13.200000pt;}
.x5a{left:17.280000pt;}
.x58{left:18.640000pt;}
.x3c{left:27.314785pt;}
.x33{left:29.861818pt;}
.x17{left:31.713467pt;}
.x36{left:32.714677pt;}
.x1b{left:34.745127pt;}
.x22{left:36.030080pt;}
.x5b{left:45.440000pt;}
.x59{left:46.560000pt;}
.x1d{left:47.815511pt;}
.x52{left:55.710208pt;}
.x5f{left:58.536579pt;}
.xd{left:60.559988pt;}
.x48{left:62.191310pt;}
.x5e{left:63.111293pt;}
.x42{left:64.159988pt;}
.x47{left:65.709636pt;}
.x60{left:67.639967pt;}
.x46{left:70.886344pt;}
.x40{left:76.069806pt;}
.x53{left:79.199988pt;}
.x24{left:84.559988pt;}
.x35{left:88.732871pt;}
.x18{left:94.254425pt;}
.x2{left:95.999988pt;}
.x8{left:100.079988pt;}
.x34{left:104.792054pt;}
.x25{left:108.586655pt;}
.x6{left:112.186655pt;}
.x5{left:116.186655pt;}
.x23{left:118.829102pt;}
.x1e{left:122.483210pt;}
.x2f{left:124.158315pt;}
.x39{left:152.731285pt;}
.x55{left:160.026667pt;}
.x30{left:166.973189pt;}
.x3e{left:175.591479pt;}
.x14{left:177.374698pt;}
.x3d{left:179.013246pt;}
.x3b{left:180.934942pt;}
.x37{left:186.297105pt;}
.x4a{left:189.856576pt;}
.x43{left:194.906655pt;}
.x32{left:197.806806pt;}
.x1a{left:203.916971pt;}
.x19{left:207.892286pt;}
.x16{left:210.116837pt;}
.x3a{left:211.226257pt;}
.x1f{left:220.018985pt;}
.x57{left:221.946667pt;}
.x4b{left:225.866655pt;}
.x31{left:230.922723pt;}
.x15{left:245.300408pt;}
.x49{left:249.911560pt;}
.x20{left:259.675779pt;}
.x21{left:261.715665pt;}
.x7{left:317.226655pt;}
.xb{left:326.853322pt;}
.x9{left:332.933322pt;}
.xa{left:340.293322pt;}
.xc{left:344.293322pt;}
.x27{left:375.893322pt;}
.x26{left:383.893322pt;}
.x4c{left:391.253322pt;}
.x3{left:393.173322pt;}
.x10{left:395.093322pt;}
.x1{left:396.933322pt;}
.xf{left:398.853322pt;}
.x41{left:401.333322pt;}
.xe{left:406.373322pt;}
.x44{left:409.973322pt;}
.x5c{left:412.773322pt;}
.x4d{left:413.893322pt;}
.x2a{left:415.493322pt;}
.x4e{left:420.213322pt;}
.x2d{left:430.373322pt;}
.x12{left:451.813322pt;}
.x2e{left:454.373322pt;}
.x38{left:456.826744pt;}
.x4f{left:523.813322pt;}
.x45{left:540.719988pt;}
.x5d{left:544.319988pt;}
.x2b{left:559.679988pt;}
.x29{left:565.759988pt;}
.x2c{left:571.679988pt;}
.x28{left:686.799988pt;}
.x4{left:708.480000pt;}
.x11{left:736.399988pt;}
.x50{left:740.399988pt;}
.x51{left:743.199988pt;}
}




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