
    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_1b71e558c2fb3dcb981719d1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_612f0fb991ac2af5843df5ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.898000;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_0a592a27886b814c2aba981f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_ac80fc73721459a1e2163f56.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.906000;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_629e289dd2fd0034259b436a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_bcf64be25b4ec804eaa3407b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.864000;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_c4461603f796a75bc673c669.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919000;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_a44bf5dfb9c3018980683058.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.701000;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_a745a59371c01c4d353ec141.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.511000;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_46ca9423203597cbc048067f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.677000;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_6be9fcc468e28e3d50ac8a25.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.647000;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_6c319093ae242208ac5c8443.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938000;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_a95bed208ad24f7d6fd6b8c4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_27b19975170e082880a54061.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.701000;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_18b9204e789446e22146b17d.woff2')format("woff");}.fff{font-family:fff;line-height:2.416000;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_9df5f4831277ef2b076c748a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.861000;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_2e0aefd1fec9e01953bdf5f2.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.698000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.005725,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.005725,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.005725,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-41.940000px;}
.v4{vertical-align:-17.421587px;}
.v9{vertical-align:-10.518000px;}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.970000px;}
.va{vertical-align:17.364000px;}
.v2{vertical-align:21.696000px;}
.v5{vertical-align:40.524000px;}
.v8{vertical-align:49.434000px;}
.v6{vertical-align:82.410000px;}
.ls6{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.000054px;}
.ls5d{letter-spacing:0.000925px;}
.ls57{letter-spacing:0.001133px;}
.ls39{letter-spacing:0.002383px;}
.ls3c{letter-spacing:0.003516px;}
.ls40{letter-spacing:0.004200px;}
.ls51{letter-spacing:0.004718px;}
.ls1{letter-spacing:0.004932px;}
.ls26{letter-spacing:0.014240px;}
.ls48{letter-spacing:0.563108px;}
.ls4f{letter-spacing:0.597420px;}
.ls16{letter-spacing:0.952200px;}
.ls12{letter-spacing:0.958200px;}
.ls13{letter-spacing:1.016100px;}
.ls42{letter-spacing:1.048200px;}
.ls5e{letter-spacing:1.301700px;}
.ls53{letter-spacing:1.437786px;}
.ls28{letter-spacing:1.669693px;}
.ls54{letter-spacing:1.672663px;}
.ls46{letter-spacing:1.967675px;}
.ls47{letter-spacing:1.973675px;}
.ls29{letter-spacing:2.147420px;}
.ls41{letter-spacing:2.148562px;}
.lsf{letter-spacing:2.150725px;}
.ls36{letter-spacing:2.330383px;}
.ls3a{letter-spacing:2.450725px;}
.ls43{letter-spacing:2.985900px;}
.ls5b{letter-spacing:2.990282px;}
.ls52{letter-spacing:2.990809px;}
.ls27{letter-spacing:2.991600px;}
.lse{letter-spacing:2.991900px;}
.ls44{letter-spacing:3.046200px;}
.ls45{letter-spacing:3.052200px;}
.ls3d{letter-spacing:3.165900px;}
.ls55{letter-spacing:3.443879px;}
.ls2e{letter-spacing:3.584725px;}
.ls3f{letter-spacing:7.053900px;}
.ls1f{letter-spacing:9.964200px;}
.ls4e{letter-spacing:9.970200px;}
.ls2d{letter-spacing:10.114718px;}
.ls0{letter-spacing:11.844925px;}
.ls24{letter-spacing:12.422100px;}
.ls35{letter-spacing:13.282718px;}
.ls30{letter-spacing:13.432718px;}
.ls1a{letter-spacing:14.012725px;}
.ls34{letter-spacing:14.838017px;}
.ls9{letter-spacing:15.162925px;}
.ls8{letter-spacing:15.528925px;}
.ls1d{letter-spacing:15.826200px;}
.ls2c{letter-spacing:16.269900px;}
.ls5a{letter-spacing:16.442282px;}
.ls33{letter-spacing:16.486718px;}
.ls23{letter-spacing:16.510200px;}
.ls1c{letter-spacing:16.600718px;}
.ls19{letter-spacing:16.606718px;}
.lsc{letter-spacing:17.306809px;}
.ls1e{letter-spacing:17.650200px;}
.ls5{letter-spacing:17.754925px;}
.ls31{letter-spacing:17.798276px;}
.ls2a{letter-spacing:17.800766px;}
.lsb{letter-spacing:17.937900px;}
.ls18{letter-spacing:18.188346px;}
.ls20{letter-spacing:18.454200px;}
.ls21{letter-spacing:18.575675px;}
.lsa{letter-spacing:18.708925px;}
.ls25{letter-spacing:19.215900px;}
.ls38{letter-spacing:19.593900px;}
.ls1b{letter-spacing:19.654200px;}
.ls56{letter-spacing:19.816718px;}
.ls4{letter-spacing:19.832282px;}
.ls3b{letter-spacing:19.904282px;}
.ls49{letter-spacing:19.918729px;}
.lsd{letter-spacing:20.892925px;}
.ls4b{letter-spacing:20.914718px;}
.ls22{letter-spacing:21.159900px;}
.ls2b{letter-spacing:23.776718px;}
.ls4a{letter-spacing:23.901900px;}
.ls7{letter-spacing:25.250282px;}
.ls5c{letter-spacing:25.716583px;}
.ls2{letter-spacing:26.180273px;}
.ls17{letter-spacing:26.932200px;}
.ls4d{letter-spacing:28.132718px;}
.ls50{letter-spacing:29.888809px;}
.ls3{letter-spacing:30.366925px;}
.ls4c{letter-spacing:31.125900px;}
.ls11{letter-spacing:33.244718px;}
.ls15{letter-spacing:33.250718px;}
.ls10{letter-spacing:34.294200px;}
.ls14{letter-spacing:36.231900px;}
.ls58{letter-spacing:158.725133px;}
.ls59{letter-spacing:389.300282px;}
.ls32{letter-spacing:466.166100px;}
.ls37{letter-spacing:474.578100px;}
.ls2f{letter-spacing:474.806100px;}
.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;}
}
.ws72{word-spacing:-61.210214px;}
.ws4a{word-spacing:-36.881545px;}
.wscd{word-spacing:-33.193613px;}
.wsc{word-spacing:-29.887800px;}
.wsee{word-spacing:-23.910300px;}
.ws78{word-spacing:-21.818100px;}
.ws2e{word-spacing:-20.921460px;}
.ws95{word-spacing:-20.742133px;}
.ws1c{word-spacing:-20.622582px;}
.ws38{word-spacing:-20.383480px;}
.wse{word-spacing:-19.905275px;}
.ws15{word-spacing:-19.725948px;}
.ws42{word-spacing:-19.546621px;}
.ws52{word-spacing:-19.514010px;}
.ws1a{word-spacing:-19.486846px;}
.ws8c{word-spacing:-19.367294px;}
.ws2d{word-spacing:-19.128192px;}
.ws36{word-spacing:-18.889090px;}
.ws39{word-spacing:-18.829314px;}
.wsa1{word-spacing:-18.590212px;}
.ws80{word-spacing:-18.530400px;}
.ws2b{word-spacing:-18.410885px;}
.wsd4{word-spacing:-18.171782px;}
.wsd{word-spacing:-18.052231px;}
.ws3{word-spacing:-17.932800px;}
.wsd0{word-spacing:-17.872904px;}
.ws75{word-spacing:-17.813129px;}
.wsc4{word-spacing:-17.753353px;}
.ws1f{word-spacing:-17.693578px;}
.wsd8{word-spacing:-17.633802px;}
.ws16a{word-spacing:-17.514251px;}
.ws51{word-spacing:-17.275148px;}
.ws6b{word-spacing:-16.976270px;}
.ws8d{word-spacing:-16.856719px;}
.ws79{word-spacing:-16.825766px;}
.ws13{word-spacing:-16.677392px;}
.ws122{word-spacing:-16.641569px;}
.ws58{word-spacing:-16.617617px;}
.ws90{word-spacing:-16.557841px;}
.ws96{word-spacing:-16.498066px;}
.wsb4{word-spacing:-16.450286px;}
.ws54{word-spacing:-16.438290px;}
.ws27{word-spacing:-16.378514px;}
.ws40{word-spacing:-16.318739px;}
.ws16b{word-spacing:-16.258963px;}
.ws6f{word-spacing:-16.210534px;}
.ws45{word-spacing:-16.199188px;}
.wse5{word-spacing:-16.067722px;}
.ws159{word-spacing:-16.019901px;}
.ws5d{word-spacing:-16.019861px;}
.ws2f{word-spacing:-15.960085px;}
.ws6a{word-spacing:-15.900310px;}
.ws6e{word-spacing:-15.796534px;}
.wsec{word-spacing:-15.780798px;}
.ws9c{word-spacing:-15.780758px;}
.ws17{word-spacing:-15.720983px;}
.ws83{word-spacing:-15.685157px;}
.ws1e{word-spacing:-15.661207px;}
.ws5b{word-spacing:-15.601432px;}
.wsbf{word-spacing:-15.589516px;}
.ws19{word-spacing:-15.541656px;}
.ws65{word-spacing:-15.422105px;}
.ws152{word-spacing:-15.302592px;}
.ws141{word-spacing:-15.254771px;}
.wsb9{word-spacing:-15.242778px;}
.ws142{word-spacing:-15.206951px;}
.ws73{word-spacing:-15.183002px;}
.ws127{word-spacing:-15.159130px;}
.ws6d{word-spacing:-15.136534px;}
.wsb{word-spacing:-15.123227px;}
.ws144{word-spacing:-15.063489px;}
.wsbc{word-spacing:-15.015668px;}
.ws4{word-spacing:-14.943900px;}
.ws1d{word-spacing:-14.884124px;}
.wsa5{word-spacing:-14.824349px;}
.ws55{word-spacing:-14.704798px;}
.ws2a{word-spacing:-14.645022px;}
.ws44{word-spacing:-14.585246px;}
.wsa7{word-spacing:-14.525471px;}
.ws70{word-spacing:-14.465695px;}
.ws71{word-spacing:-14.405920px;}
.ws103{word-spacing:-14.346180px;}
.ws29{word-spacing:-14.346144px;}
.ws21{word-spacing:-14.286368px;}
.ws48{word-spacing:-14.226593px;}
.wsa4{word-spacing:-14.166817px;}
.ws76{word-spacing:-14.047266px;}
.wsa3{word-spacing:-13.987490px;}
.ws64{word-spacing:-13.927715px;}
.wsed{word-spacing:-13.915795px;}
.wse4{word-spacing:-13.867974px;}
.ws5e{word-spacing:-13.867939px;}
.ws9f{word-spacing:-13.808164px;}
.ws106{word-spacing:-13.772333px;}
.ws3a{word-spacing:-13.748388px;}
.ws7a{word-spacing:-13.688612px;}
.ws84{word-spacing:-13.628837px;}
.wsef{word-spacing:-13.533230px;}
.ws2c{word-spacing:-13.509286px;}
.wsce{word-spacing:-13.449600px;}
.ws35{word-spacing:-13.389734px;}
.wsc5{word-spacing:-13.329959px;}
.ws9a{word-spacing:-13.270183px;}
.ws8e{word-spacing:-13.210408px;}
.wsb2{word-spacing:-13.102844px;}
.ws94{word-spacing:-13.090856px;}
.wscc{word-spacing:-13.070400px;}
.ws49{word-spacing:-13.031081px;}
.ws123{word-spacing:-12.960478px;}
.ws124{word-spacing:-12.959383px;}
.wsf0{word-spacing:-12.911562px;}
.ws34{word-spacing:-12.911530px;}
.ws7b{word-spacing:-12.851754px;}
.ws23{word-spacing:-12.791978px;}
.ws9{word-spacing:-12.732203px;}
.ws3e{word-spacing:-12.672427px;}
.ws13d{word-spacing:-12.624638px;}
.ws91{word-spacing:-12.612652px;}
.ws128{word-spacing:-12.528997px;}
.ws5f{word-spacing:-12.433325px;}
.wsf8{word-spacing:-12.337715px;}
.ws37{word-spacing:-12.313774px;}
.ws20{word-spacing:-12.253998px;}
.wsf9{word-spacing:-12.242074px;}
.ws26{word-spacing:-12.194222px;}
.ws4b{word-spacing:-12.134447px;}
.ws7{word-spacing:-12.074671px;}
.ws88{word-spacing:-12.065591px;}
.ws114{word-spacing:-12.050791px;}
.ws5{word-spacing:-11.955150px;}
.wsa0{word-spacing:-11.955120px;}
.ws41{word-spacing:-11.895344px;}
.wsa6{word-spacing:-11.835569px;}
.ws30{word-spacing:-11.775793px;}
.wsbd{word-spacing:-11.763868px;}
.ws77{word-spacing:-11.716018px;}
.wse2{word-spacing:-11.656242px;}
.wsbe{word-spacing:-11.620406px;}
.wsb8{word-spacing:-11.596466px;}
.ws18{word-spacing:-11.536691px;}
.ws25{word-spacing:-11.417140px;}
.ws156{word-spacing:-11.381303px;}
.ws151{word-spacing:-11.333482px;}
.ws157{word-spacing:-11.237841px;}
.ws43{word-spacing:-11.237813px;}
.ws31{word-spacing:-11.178037px;}
.ws22{word-spacing:-11.118262px;}
.ws24{word-spacing:-11.058486px;}
.wsd5{word-spacing:-10.998710px;}
.ws14e{word-spacing:-10.903097px;}
.ws92{word-spacing:-10.879159px;}
.ws7e{word-spacing:-10.855276px;}
.ws33{word-spacing:-10.759608px;}
.wsb5{word-spacing:-10.663994px;}
.wsd3{word-spacing:-10.640057px;}
.wsf{word-spacing:-10.520506px;}
.ws3f{word-spacing:-10.341179px;}
.ws81{word-spacing:-10.281429px;}
.ws28{word-spacing:-10.221628px;}
.ws153{word-spacing:-10.185788px;}
.ws163{word-spacing:-10.161852px;}
.wse7{word-spacing:-10.137967px;}
.wsc2{word-spacing:-10.102076px;}
.ws13f{word-spacing:-10.090147px;}
.wsb0{word-spacing:-10.042301px;}
.wsa8{word-spacing:-9.982525px;}
.ws143{word-spacing:-9.851044px;}
.wsf7{word-spacing:-9.803223px;}
.ws154{word-spacing:-9.755402px;}
.ws4f{word-spacing:-9.743423px;}
.ws1b{word-spacing:-9.623872px;}
.ws140{word-spacing:-9.611941px;}
.ws10f{word-spacing:-9.590690px;}
.ws7d{word-spacing:-9.564120px;}
.ws14b{word-spacing:-9.420658px;}
.ws99{word-spacing:-9.384769px;}
.wsa9{word-spacing:-9.205442px;}
.ws158{word-spacing:-9.181555px;}
.wsdd{word-spacing:-9.145667px;}
.ws14d{word-spacing:-9.133735px;}
.wsde{word-spacing:-9.085891px;}
.ws5c{word-spacing:-9.026116px;}
.ws110{word-spacing:-8.990273px;}
.ws149{word-spacing:-8.942452px;}
.ws8f{word-spacing:-8.906564px;}
.ws12d{word-spacing:-8.894632px;}
.ws14c{word-spacing:-8.798990px;}
.wsdf{word-spacing:-8.787013px;}
.ws145{word-spacing:-8.751170px;}
.wsd7{word-spacing:-8.547911px;}
.ws66{word-spacing:-8.488135px;}
.ws59{word-spacing:-8.428360px;}
.wsc3{word-spacing:-8.308808px;}
.ws109{word-spacing:-8.225143px;}
.wsba{word-spacing:-8.189257px;}
.ws8a{word-spacing:-8.179766px;}
.wsc6{word-spacing:-8.177323px;}
.ws74{word-spacing:-8.069706px;}
.ws104{word-spacing:-7.986040px;}
.wsda{word-spacing:-7.950155px;}
.wsa{word-spacing:-7.890379px;}
.ws13c{word-spacing:-7.842578px;}
.ws56{word-spacing:-7.830604px;}
.ws14a{word-spacing:-7.794758px;}
.ws11{word-spacing:-7.770828px;}
.wsf2{word-spacing:-7.651296px;}
.ws53{word-spacing:-7.651277px;}
.ws105{word-spacing:-7.646089px;}
.ws133{word-spacing:-7.639335px;}
.ws134{word-spacing:-7.603475px;}
.wsa2{word-spacing:-7.591501px;}
.wsf4{word-spacing:-7.555655px;}
.wsf5{word-spacing:-7.540892px;}
.ws107{word-spacing:-7.507834px;}
.ws155{word-spacing:-7.220911px;}
.wse1{word-spacing:-7.173072px;}
.ws168{word-spacing:-7.113296px;}
.ws125{word-spacing:-6.933987px;}
.ws63{word-spacing:-6.933970px;}
.ws169{word-spacing:-6.874194px;}
.wse3{word-spacing:-6.814418px;}
.wse6{word-spacing:-6.742705px;}
.ws10{word-spacing:-6.694867px;}
.wsab{word-spacing:-6.635092px;}
.wsf3{word-spacing:-6.551422px;}
.ws3d{word-spacing:-6.515540px;}
.wsf6{word-spacing:-6.455781px;}
.ws32{word-spacing:-6.455765px;}
.ws11b{word-spacing:-6.407960px;}
.ws118{word-spacing:-6.360140px;}
.wsb7{word-spacing:-6.336214px;}
.wsac{word-spacing:-6.276438px;}
.ws150{word-spacing:-6.264499px;}
.wsfe{word-spacing:-6.073216px;}
.wsd1{word-spacing:-5.917784px;}
.wsbb{word-spacing:-5.858009px;}
.wsdc{word-spacing:-5.798233px;}
.wsd9{word-spacing:-5.738458px;}
.ws4c{word-spacing:-5.678682px;}
.ws11d{word-spacing:-5.642831px;}
.ws11c{word-spacing:-5.624099px;}
.ws162{word-spacing:-5.618906px;}
.ws57{word-spacing:-5.499355px;}
.ws97{word-spacing:-5.439580px;}
.ws15b{word-spacing:-5.355907px;}
.ws166{word-spacing:-5.260253px;}
.wsc0{word-spacing:-5.116804px;}
.wsb6{word-spacing:-5.080926px;}
.ws15c{word-spacing:-5.021163px;}
.wsff{word-spacing:-4.973342px;}
.ws8{word-spacing:-4.901599px;}
.ws129{word-spacing:-4.829881px;}
.ws98{word-spacing:-4.782048px;}
.ws46{word-spacing:-4.602721px;}
.wsaa{word-spacing:-4.542946px;}
.ws9d{word-spacing:-4.483170px;}
.ws50{word-spacing:-4.423394px;}
.ws12f{word-spacing:-4.256033px;}
.wsd2{word-spacing:-4.184292px;}
.ws10a{word-spacing:-4.112572px;}
.ws93{word-spacing:-4.064741px;}
.ws10b{word-spacing:-3.981681px;}
.ws10c{word-spacing:-3.969110px;}
.ws9b{word-spacing:-3.945190px;}
.ws126{word-spacing:-3.921289px;}
.wsf1{word-spacing:-3.873469px;}
.ws12{word-spacing:-3.526760px;}
.ws14f{word-spacing:-3.395263px;}
.wsaf{word-spacing:-3.287658px;}
.wse9{word-spacing:-3.216869px;}
.wsea{word-spacing:-3.203980px;}
.ws102{word-spacing:-3.108339px;}
.ws15a{word-spacing:-3.060518px;}
.ws3c{word-spacing:-2.988780px;}
.wsb1{word-spacing:-2.869236px;}
.wseb{word-spacing:-2.773595px;}
.wsae{word-spacing:-2.689902px;}
.ws137{word-spacing:-2.677954px;}
.wse0{word-spacing:-2.510575px;}
.ws16c{word-spacing:-2.450800px;}
.wse8{word-spacing:-2.438851px;}
.ws130{word-spacing:-2.343209px;}
.ws167{word-spacing:-2.271473px;}
.ws86{word-spacing:-2.227282px;}
.ws85{word-spacing:-2.223064px;}
.ws4e{word-spacing:-1.972595px;}
.ws10d{word-spacing:-1.960645px;}
.ws62{word-spacing:-1.853044px;}
.ws12b{word-spacing:-1.729303px;}
.ws12c{word-spacing:-1.721542px;}
.ws111{word-spacing:-1.386797px;}
.ws165{word-spacing:-1.374839px;}
.ws135{word-spacing:-1.243336px;}
.ws8b{word-spacing:-1.188293px;}
.ws89{word-spacing:-1.182293px;}
.ws136{word-spacing:-0.956412px;}
.wsc1{word-spacing:-0.836858px;}
.ws10e{word-spacing:-0.095641px;}
.ws14{word-spacing:-0.086077px;}
.ws5a{word-spacing:-0.059776px;}
.wscb{word-spacing:-0.053798px;}
.ws7f{word-spacing:-0.047821px;}
.ws4d{word-spacing:0.000000px;}
.ws68{word-spacing:0.217466px;}
.wsd6{word-spacing:0.239102px;}
.ws47{word-spacing:0.478205px;}
.ws138{word-spacing:0.526027px;}
.ws100{word-spacing:0.573847px;}
.ws12a{word-spacing:0.765130px;}
.ws115{word-spacing:1.099874px;}
.ws148{word-spacing:1.243336px;}
.ws12e{word-spacing:1.386797px;}
.ws11f{word-spacing:2.151927px;}
.wsfb{word-spacing:2.343209px;}
.wsad{word-spacing:2.450800px;}
.ws3b{word-spacing:2.570351px;}
.ws132{word-spacing:2.964877px;}
.ws15d{word-spacing:3.108339px;}
.wsfc{word-spacing:3.347442px;}
.ws15f{word-spacing:3.634366px;}
.ws101{word-spacing:3.730007px;}
.ws13e{word-spacing:3.873469px;}
.ws116{word-spacing:4.351675px;}
.wsfd{word-spacing:4.399495px;}
.ws108{word-spacing:4.966147px;}
.wsfa{word-spacing:5.547190px;}
.ws11e{word-spacing:5.929754px;}
.ws13b{word-spacing:6.025396px;}
.ws13a{word-spacing:6.073216px;}
.ws87{word-spacing:6.336214px;}
.ws146{word-spacing:6.886166px;}
.ws15e{word-spacing:7.173090px;}
.wsdb{word-spacing:7.412174px;}
.ws160{word-spacing:7.555655px;}
.ws112{word-spacing:7.651296px;}
.wsca{word-spacing:8.930534px;}
.ws67{word-spacing:9.902624px;}
.ws6c{word-spacing:9.908624px;}
.ws69{word-spacing:10.738441px;}
.ws120{word-spacing:10.941901px;}
.ws121{word-spacing:10.950917px;}
.ws131{word-spacing:11.190020px;}
.ws117{word-spacing:11.716047px;}
.ws113{word-spacing:12.528997px;}
.wsc9{word-spacing:13.392816px;}
.wsc7{word-spacing:13.395802px;}
.ws1{word-spacing:13.411841px;}
.ws60{word-spacing:13.858429px;}
.ws161{word-spacing:14.226593px;}
.ws9e{word-spacing:14.346144px;}
.ws139{word-spacing:14.967848px;}
.wscf{word-spacing:17.209788px;}
.wsb3{word-spacing:17.215229px;}
.ws7c{word-spacing:17.215416px;}
.ws119{word-spacing:17.502340px;}
.ws147{word-spacing:20.897602px;}
.ws61{word-spacing:21.433223px;}
.ws11a{word-spacing:24.866712px;}
.ws164{word-spacing:28.453186px;}
.ws2{word-spacing:29.768398px;}
.wsc8{word-spacing:50.678755px;}
.ws6{word-spacing:60.328829px;}
.ws16{word-spacing:62.922433px;}
.ws82{word-spacing:835.166290px;}
.ws0{word-spacing:1023.874024px;}
._27{margin-left:-6.814418px;}
._6{margin-left:-5.648796px;}
._0{margin-left:-4.357638px;}
._1{margin-left:-2.420910px;}
._4{margin-left:-1.075968px;}
._7{width:1.195512px;}
._3{width:2.833332px;}
._2{width:7.214312px;}
._28{width:8.650211px;}
._a{width:9.773305px;}
._26{width:10.938931px;}
._e{width:12.044782px;}
._20{width:14.272625px;}
._23{width:15.824395px;}
._1d{width:16.976267px;}
._13{width:18.231558px;}
._8{width:19.277640px;}
._1f{width:20.514504px;}
._5{width:21.578992px;}
._1e{width:22.953841px;}
._15{width:24.029791px;}
._12{width:25.165528px;}
._2b{width:26.630189px;}
._11{width:27.676103px;}
._25{width:28.991166px;}
._c{width:30.246454px;}
._24{width:31.465871px;}
._f{width:33.384671px;}
._b{width:34.460639px;}
._14{width:36.074573px;}
._21{width:38.316160px;}
._1a{width:39.647735px;}
._29{width:40.766959px;}
._d{width:42.859098px;}
._1c{width:45.040913px;}
._10{width:46.870088px;}
._16{width:49.374646px;}
._9{width:51.138024px;}
._22{width:54.993563px;}
._19{width:57.563903px;}
._1b{width:63.008510px;}
._2a{width:196.114166px;}
._2f{width:260.812800px;}
._3c{width:265.835953px;}
._31{width:272.019600px;}
._3d{width:280.807093px;}
._30{width:288.065914px;}
._39{width:294.429600px;}
._3a{width:301.521514px;}
._36{width:314.607600px;}
._33{width:328.053600px;}
._34{width:335.145514px;}
._2d{width:345.970800px;}
._37{width:355.316314px;}
._2c{width:361.487866px;}
._35{width:376.065600px;}
._32{width:381.665866px;}
._3b{width:385.827600px;}
._2e{width:389.511648px;}
._38{width:409.689600px;}
._18{width:1601.060587px;}
._17{width:1848.573315px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:37.060800px;}
.fs8{font-size:43.556760px;}
.fs5{font-size:43.636200px;}
.fs4{font-size:47.820600px;}
.fs0{font-size:48.418200px;}
.fsd{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fsa{font-size:67.010400px;}
.fs2{font-size:71.731200px;}
.fsb{font-size:78.178800px;}
.fs6{font-size:86.077200px;}
.fs7{font-size:87.113520px;}
.fs9{font-size:89.347200px;}
.fs1{font-size:119.551800px;}
.y0{bottom:0.000000px;}
.y86{bottom:5.388823px;}
.y85{bottom:36.589214px;}
.y4e{bottom:71.596500px;}
.y8f{bottom:77.212733px;}
.y8e{bottom:98.501868px;}
.y87{bottom:110.663069px;}
.yeb{bottom:111.394500px;}
.yb5{bottom:116.430000px;}
.ycf{bottom:117.067500px;}
.y101{bottom:120.688500px;}
.y88{bottom:121.816321px;}
.y140{bottom:124.350000px;}
.yea{bottom:125.590500px;}
.y82{bottom:126.636000px;}
.y8a{bottom:127.593805px;}
.y177{bottom:130.626000px;}
.y4d{bottom:131.076000px;}
.y29{bottom:131.106000px;}
.yf1{bottom:132.127500px;}
.yb4{bottom:134.362500px;}
.y100{bottom:134.886000px;}
.yce{bottom:135.001500px;}
.y13f{bottom:138.546000px;}
.y94{bottom:140.026500px;}
.y81{bottom:144.568500px;}
.y176{bottom:144.823500px;}
.yf0{bottom:146.325000px;}
.y4c{bottom:149.008500px;}
.y28{bottom:149.038500px;}
.yff{bottom:149.082000px;}
.yb3{bottom:152.295000px;}
.ycd{bottom:152.934000px;}
.y90{bottom:154.545457px;}
.y175{bottom:159.019500px;}
.y80{bottom:162.501000px;}
.y4b{bottom:166.941000px;}
.y27{bottom:166.971000px;}
.y13b{bottom:167.898000px;}
.yb2{bottom:170.227500px;}
.ycc{bottom:170.866500px;}
.y1af{bottom:173.217000px;}
.y7f{bottom:180.433500px;}
.y4a{bottom:184.873500px;}
.y26{bottom:184.903500px;}
.y13a{bottom:185.832000px;}
.y174{bottom:186.817500px;}
.yb1{bottom:188.160000px;}
.ycb{bottom:188.799000px;}
.y8d{bottom:188.906785px;}
.y7e{bottom:198.366000px;}
.y1ae{bottom:198.697500px;}
.y173{bottom:201.015000px;}
.y49{bottom:202.806000px;}
.y25{bottom:202.837500px;}
.y139{bottom:203.764500px;}
.yb0{bottom:206.092500px;}
.yca{bottom:206.731500px;}
.y1ad{bottom:212.893500px;}
.y172{bottom:215.211000px;}
.y7d{bottom:216.300000px;}
.y8b{bottom:220.202526px;}
.y48{bottom:220.740000px;}
.y138{bottom:221.697000px;}
.yaf{bottom:224.026500px;}
.yc9{bottom:224.664000px;}
.y1ac{bottom:227.091000px;}
.y24{bottom:229.273500px;}
.y7c{bottom:234.232500px;}
.y47{bottom:238.672500px;}
.y137{bottom:239.629500px;}
.y1ab{bottom:241.287000px;}
.yae{bottom:241.959000px;}
.yc8{bottom:242.598000px;}
.y171{bottom:243.010500px;}
.y23{bottom:247.206000px;}
.y7b{bottom:252.165000px;}
.y170{bottom:257.206500px;}
.y136{bottom:257.562000px;}
.y8c{bottom:258.990659px;}
.yad{bottom:259.891500px;}
.y89{bottom:260.009496px;}
.yc7{bottom:260.530500px;}
.y22{bottom:265.138500px;}
.y1aa{bottom:266.767500px;}
.y46{bottom:269.592000px;}
.y16f{bottom:271.404000px;}
.yac{bottom:277.824000px;}
.yc6{bottom:278.463000px;}
.y7a{bottom:278.601000px;}
.y1a9{bottom:280.965000px;}
.y21{bottom:283.072500px;}
.y45{bottom:287.524500px;}
.y1a8{bottom:295.161000px;}
.yab{bottom:295.756500px;}
.yc5{bottom:296.395500px;}
.y79{bottom:296.535000px;}
.y135{bottom:298.942500px;}
.y16e{bottom:299.202000px;}
.y20{bottom:301.005000px;}
.y44{bottom:305.457000px;}
.y1a7{bottom:309.358500px;}
.y16d{bottom:313.398000px;}
.y78{bottom:314.467500px;}
.y1f{bottom:318.937500px;}
.yaa{bottom:322.194000px;}
.y43{bottom:323.391000px;}
.yc4{bottom:323.728500px;}
.y16c{bottom:327.595500px;}
.y77{bottom:332.400000px;}
.y1a6{bottom:334.839000px;}
.y1e{bottom:336.870000px;}
.ya9{bottom:340.126500px;}
.y42{bottom:341.323500px;}
.yc3{bottom:341.661000px;}
.y16b{bottom:341.791500px;}
.y1a5{bottom:349.036500px;}
.y76{bottom:350.332500px;}
.y1d{bottom:354.802500px;}
.ya8{bottom:358.059000px;}
.y41{bottom:359.256000px;}
.yc2{bottom:359.595000px;}
.ye9{bottom:361.312500px;}
.y1a4{bottom:363.232500px;}
.y16a{bottom:369.589500px;}
.y134{bottom:371.824500px;}
.y1c{bottom:372.735000px;}
.ye8{bottom:375.510000px;}
.ya7{bottom:375.991500px;}
.y75{bottom:376.770000px;}
.y40{bottom:377.188500px;}
.yc1{bottom:377.527500px;}
.y169{bottom:383.787000px;}
.y1a3{bottom:388.713000px;}
.y133{bottom:389.757000px;}
.y1b{bottom:390.669000px;}
.ya6{bottom:393.924000px;}
.y74{bottom:394.702500px;}
.y3f{bottom:395.121000px;}
.yc0{bottom:395.460000px;}
.y168{bottom:397.983000px;}
.y1a2{bottom:402.910500px;}
.y132{bottom:407.689500px;}
.y1a{bottom:408.601500px;}
.ya5{bottom:411.858000px;}
.y167{bottom:412.180500px;}
.y73{bottom:412.635000px;}
.y3e{bottom:413.053500px;}
.ybf{bottom:413.392500px;}
.y1a1{bottom:417.106500px;}
.y13e{bottom:424.848000px;}
.y131{bottom:425.623500px;}
.y166{bottom:426.376500px;}
.y19{bottom:426.534000px;}
.yfe{bottom:427.560000px;}
.ya4{bottom:429.790500px;}
.y72{bottom:430.567500px;}
.y3d{bottom:430.987500px;}
.y1a0{bottom:431.304000px;}
.ybe{bottom:431.325000px;}
.y93{bottom:433.174500px;}
.y13d{bottom:439.045500px;}
.yfd{bottom:441.757500px;}
.y130{bottom:443.556000px;}
.y18{bottom:444.466500px;}
.ya3{bottom:447.723000px;}
.y71{bottom:448.500000px;}
.y3c{bottom:448.920000px;}
.ybd{bottom:449.257500px;}
.y165{bottom:454.176000px;}
.yfc{bottom:455.953500px;}
.y19f{bottom:456.784500px;}
.y12f{bottom:461.488500px;}
.y70{bottom:466.432500px;}
.y164{bottom:468.372000px;}
.y19e{bottom:470.980500px;}
.ybc{bottom:475.695000px;}
.ya2{bottom:477.768000px;}
.y12e{bottom:479.421000px;}
.y3b{bottom:479.839500px;}
.yef{bottom:481.080000px;}
.y163{bottom:482.569500px;}
.y6f{bottom:484.366500px;}
.y19d{bottom:485.178000px;}
.ya1{bottom:488.019000px;}
.y17{bottom:491.256000px;}
.ybb{bottom:493.627500px;}
.yee{bottom:495.276000px;}
.y12d{bottom:497.353500px;}
.y3a{bottom:497.772000px;}
.y19c{bottom:499.374000px;}
.y6e{bottom:502.299000px;}
.y162{bottom:510.367500px;}
.yba{bottom:511.560000px;}
.y12c{bottom:515.286000px;}
.y39{bottom:515.704500px;}
.y6d{bottom:520.231500px;}
.ya0{bottom:521.397000px;}
.y161{bottom:524.563500px;}
.y19b{bottom:524.856000px;}
.yb9{bottom:529.492500px;}
.y12b{bottom:533.220000px;}
.y38{bottom:533.638500px;}
.y6c{bottom:538.164000px;}
.y160{bottom:538.761000px;}
.y19a{bottom:539.052000px;}
.yb8{bottom:547.426500px;}
.y9f{bottom:548.937000px;}
.y12a{bottom:551.152500px;}
.y37{bottom:551.571000px;}
.y199{bottom:553.249500px;}
.y16{bottom:554.497500px;}
.yb7{bottom:565.359000px;}
.y15f{bottom:566.559000px;}
.y198{bottom:567.445500px;}
.y129{bottom:569.085000px;}
.y36{bottom:569.503500px;}
.y9e{bottom:570.709500px;}
.y15{bottom:572.430000px;}
.y6b{bottom:579.373500px;}
.y15e{bottom:580.755000px;}
.y9d{bottom:580.960500px;}
.y197{bottom:581.643000px;}
.yb6{bottom:583.291500px;}
.y35{bottom:587.436000px;}
.y15d{bottom:594.952500px;}
.y128{bottom:596.446500px;}
.y9c{bottom:601.224000px;}
.y14{bottom:601.918500px;}
.y34{bottom:605.368500px;}
.y6a{bottom:606.273000px;}
.y196{bottom:607.123500px;}
.y15c{bottom:609.148500px;}
.y9b{bottom:619.156500px;}
.y195{bottom:621.319500px;}
.y33{bottom:623.301000px;}
.ye7{bottom:625.942500px;}
.y194{bottom:635.517000px;}
.y15b{bottom:636.948000px;}
.y32{bottom:641.235000px;}
.ye6{bottom:643.875000px;}
.y9a{bottom:643.953000px;}
.y99{bottom:648.019500px;}
.y193{bottom:649.713000px;}
.y15a{bottom:651.144000px;}
.y127{bottom:654.958500px;}
.y1c9{bottom:656.970000px;}
.y10e{bottom:657.772500px;}
.y31{bottom:659.167500px;}
.ye5{bottom:661.807500px;}
.y98{bottom:662.217000px;}
.y159{bottom:665.341500px;}
.y69{bottom:666.399000px;}
.y1c8{bottom:671.166000px;}
.y13{bottom:672.154500px;}
.y126{bottom:672.892500px;}
.y1dc{bottom:674.902500px;}
.y192{bottom:675.193500px;}
.y10d{bottom:675.705000px;}
.y30{bottom:677.100000px;}
.y158{bottom:679.537500px;}
.ye4{bottom:679.741500px;}
.y68{bottom:684.331500px;}
.y1c7{bottom:685.363500px;}
.y191{bottom:689.391000px;}
.y12{bottom:690.087000px;}
.y125{bottom:690.825000px;}
.y1db{bottom:692.835000px;}
.y10c{bottom:693.637500px;}
.y157{bottom:693.735000px;}
.y2f{bottom:695.032500px;}
.ye3{bottom:697.674000px;}
.y1c6{bottom:699.559500px;}
.y67{bottom:702.264000px;}
.y190{bottom:703.587000px;}
.yfb{bottom:706.177500px;}
.y11{bottom:708.019500px;}
.y124{bottom:708.757500px;}
.y1da{bottom:710.767500px;}
.y10b{bottom:711.570000px;}
.y2e{bottom:712.965000px;}
.y1c5{bottom:713.757000px;}
.ye2{bottom:715.606500px;}
.y18f{bottom:717.784500px;}
.y66{bottom:720.196500px;}
.y156{bottom:721.533000px;}
.yfa{bottom:724.110000px;}
.y13c{bottom:725.347500px;}
.y10{bottom:725.953500px;}
.y1d9{bottom:728.700000px;}
.y10a{bottom:729.502500px;}
.y2d{bottom:730.897500px;}
.y92{bottom:731.475000px;}
.ye1{bottom:733.539000px;}
.y123{bottom:735.193500px;}
.y155{bottom:735.729000px;}
.y65{bottom:738.129000px;}
.y1c4{bottom:738.201000px;}
.yf9{bottom:742.042500px;}
.y18e{bottom:743.265000px;}
.yf{bottom:743.886000px;}
.y91{bottom:745.672500px;}
.y1d8{bottom:746.634000px;}
.y109{bottom:747.436500px;}
.y2c{bottom:748.831500px;}
.y154{bottom:749.926500px;}
.ye0{bottom:751.471500px;}
.y1c3{bottom:752.397000px;}
.y122{bottom:753.127500px;}
.y64{bottom:756.061500px;}
.y18d{bottom:757.461000px;}
.yf8{bottom:759.976500px;}
.ye{bottom:761.818500px;}
.y84{bottom:764.113500px;}
.y153{bottom:764.122500px;}
.y1d7{bottom:764.566500px;}
.y108{bottom:765.369000px;}
.y1c2{bottom:766.594500px;}
.y2b{bottom:766.764000px;}
.y121{bottom:771.060000px;}
.y18c{bottom:771.658500px;}
.y63{bottom:773.995500px;}
.ydf{bottom:777.909000px;}
.yd{bottom:779.751000px;}
.y1d6{bottom:782.499000px;}
.y107{bottom:783.301500px;}
.y18b{bottom:785.854500px;}
.y120{bottom:788.992500px;}
.y1c1{bottom:791.038500px;}
.y152{bottom:791.920500px;}
.y62{bottom:791.928000px;}
.yde{bottom:795.841500px;}
.yc{bottom:797.683500px;}
.y1d5{bottom:800.431500px;}
.y106{bottom:801.234000px;}
.yf7{bottom:804.345000px;}
.y1c0{bottom:805.234500px;}
.y151{bottom:806.118000px;}
.y61{bottom:809.860500px;}
.y18a{bottom:811.336500px;}
.ydd{bottom:813.774000px;}
.y11f{bottom:815.428500px;}
.yb{bottom:815.616000px;}
.y1d4{bottom:818.364000px;}
.y105{bottom:819.166500px;}
.y1bf{bottom:819.432000px;}
.y150{bottom:820.314000px;}
.yf6{bottom:822.277500px;}
.y189{bottom:825.532500px;}
.y60{bottom:827.793000px;}
.yed{bottom:830.031000px;}
.ydc{bottom:831.706500px;}
.y11e{bottom:833.362500px;}
.y2a{bottom:833.548500px;}
.ya{bottom:833.550000px;}
.y1be{bottom:833.628000px;}
.y14f{bottom:834.511500px;}
.y1d3{bottom:836.296500px;}
.y188{bottom:839.730000px;}
.yf5{bottom:840.211500px;}
.yec{bottom:844.228500px;}
.y5f{bottom:845.725500px;}
.y104{bottom:846.528000px;}
.y11d{bottom:851.295000px;}
.y9{bottom:851.482500px;}
.y187{bottom:853.926000px;}
.y1bd{bottom:858.072000px;}
.ydb{bottom:858.144000px;}
.y14e{bottom:862.309500px;}
.y1d2{bottom:862.734000px;}
.y5e{bottom:863.658000px;}
.y11c{bottom:869.227500px;}
.y8{bottom:869.415000px;}
.y1bc{bottom:872.269500px;}
.yda{bottom:876.076500px;}
.y14d{bottom:876.507000px;}
.y186{bottom:879.406500px;}
.y1d1{bottom:880.666500px;}
.y1bb{bottom:886.465500px;}
.y11b{bottom:887.160000px;}
.y14c{bottom:890.703000px;}
.y5d{bottom:893.083500px;}
.y185{bottom:893.604000px;}
.yd9{bottom:894.009000px;}
.y1d0{bottom:898.599000px;}
.y1ba{bottom:900.663000px;}
.y14b{bottom:904.900500px;}
.y11a{bottom:905.092500px;}
.y184{bottom:907.800000px;}
.y96{bottom:908.808000px;}
.y5c{bottom:911.017500px;}
.yd8{bottom:911.941500px;}
.y103{bottom:913.849500px;}
.y1cf{bottom:916.531500px;}
.y97{bottom:921.804000px;}
.y183{bottom:921.997500px;}
.y95{bottom:923.005500px;}
.y119{bottom:923.025000px;}
.y7{bottom:923.139000px;}
.y1b9{bottom:925.107000px;}
.y102{bottom:928.047000px;}
.y5b{bottom:928.950000px;}
.yd7{bottom:929.874000px;}
.y14a{bottom:932.698500px;}
.y1ce{bottom:934.465500px;}
.yf4{bottom:938.379000px;}
.y1b8{bottom:939.303000px;}
.y118{bottom:940.959000px;}
.y5a{bottom:946.882500px;}
.y149{bottom:946.894500px;}
.y182{bottom:947.478000px;}
.yd6{bottom:947.808000px;}
.y1cd{bottom:952.398000px;}
.y1b7{bottom:953.500500px;}
.y6{bottom:954.831000px;}
.yf3{bottom:956.311500px;}
.y117{bottom:958.891500px;}
.y148{bottom:961.092000px;}
.y181{bottom:961.674000px;}
.y59{bottom:964.815000px;}
.yd5{bottom:965.740500px;}
.y1cc{bottom:970.330500px;}
.yf2{bottom:974.244000px;}
.y180{bottom:975.871500px;}
.y1b6{bottom:977.944500px;}
.y58{bottom:982.747500px;}
.y147{bottom:988.890000px;}
.y17f{bottom:990.067500px;}
.y5{bottom:991.108500px;}
.y1b5{bottom:992.142000px;}
.yd4{bottom:992.176500px;}
.y57{bottom:1000.680000px;}
.y116{bottom:1001.665500px;}
.y146{bottom:1003.086000px;}
.y1b4{bottom:1006.338000px;}
.yd3{bottom:1010.109000px;}
.y1cb{bottom:1012.173000px;}
.y17e{bottom:1015.549500px;}
.y145{bottom:1017.283500px;}
.y56{bottom:1018.614000px;}
.y1b3{bottom:1020.535500px;}
.y115{bottom:1025.787000px;}
.y4{bottom:1027.387500px;}
.yd2{bottom:1028.043000px;}
.y17d{bottom:1029.745500px;}
.y144{bottom:1031.479500px;}
.y55{bottom:1036.546500px;}
.y114{bottom:1042.972500px;}
.y17c{bottom:1043.943000px;}
.y1b2{bottom:1044.979500px;}
.yd1{bottom:1045.975500px;}
.y54{bottom:1054.479000px;}
.y17b{bottom:1058.139000px;}
.y1b1{bottom:1059.175500px;}
.y143{bottom:1059.279000px;}
.y113{bottom:1060.158000px;}
.yd0{bottom:1063.908000px;}
.y1ca{bottom:1069.423500px;}
.y53{bottom:1072.411500px;}
.y1b0{bottom:1073.373000px;}
.y142{bottom:1073.475000px;}
.y3{bottom:1073.613000px;}
.y112{bottom:1077.343500px;}
.y17a{bottom:1083.619500px;}
.y141{bottom:1087.672500px;}
.y52{bottom:1090.344000px;}
.y111{bottom:1094.529000px;}
.y179{bottom:1097.817000px;}
.y51{bottom:1108.276500px;}
.y2{bottom:1109.478000px;}
.y110{bottom:1111.714500px;}
.y178{bottom:1112.013000px;}
.y83{bottom:1126.209000px;}
.y50{bottom:1126.210500px;}
.y10f{bottom:1128.900000px;}
.y1{bottom:1192.587000px;}
.y4f{bottom:1192.648500px;}
.h6{height:32.900573px;}
.h12{height:33.091855px;}
.ha{height:36.168395px;}
.h2{height:36.414395px;}
.h19{height:37.013299px;}
.h18{height:37.228493px;}
.h17{height:39.272569px;}
.h8{height:41.006062px;}
.h5{height:41.125613px;}
.h7{height:41.364715px;}
.h1a{height:42.676526px;}
.hc{height:42.859105px;}
.h10{height:48.783571px;}
.h4{height:49.207603px;}
.hb{height:52.983155px;}
.h11{height:56.914166px;}
.h9{height:59.565422px;}
.he{height:63.418643px;}
.hf{height:65.044762px;}
.h13{height:73.615855px;}
.h15{height:82.129613px;}
.h3{height:82.729846px;}
.h14{height:83.329105px;}
.h16{height:85.757434px;}
.hd{height:273.682689px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:287.436364px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.820034px;}
.x1{left:63.780000px;}
.x2a{left:68.758500px;}
.x10{left:72.497016px;}
.x14{left:75.241650px;}
.x17{left:77.099374px;}
.xb{left:85.039500px;}
.x2c{left:90.018000px;}
.x8{left:95.670000px;}
.x2{left:101.395500px;}
.xc{left:116.929500px;}
.x28{left:126.292500px;}
.x4{left:128.172000px;}
.x1b{left:131.008500px;}
.x16{left:138.427920px;}
.x5{left:142.185000px;}
.x24{left:154.122000px;}
.x18{left:155.256605px;}
.x27{left:156.640500px;}
.x22{left:165.292500px;}
.x1d{left:166.333500px;}
.x1c{left:168.201000px;}
.x3{left:188.101500px;}
.x20{left:196.797000px;}
.x21{left:198.898500px;}
.x1f{left:200.047500px;}
.x11{left:228.721433px;}
.xf{left:253.033364px;}
.x12{left:258.699024px;}
.x29{left:262.482000px;}
.x13{left:283.404502px;}
.x7{left:305.223000px;}
.x6{left:310.492500px;}
.x23{left:405.646500px;}
.x9{left:448.582500px;}
.x2b{left:453.562500px;}
.xd{left:469.842000px;}
.x2d{left:474.822000px;}
.xa{left:480.472500px;}
.x19{left:501.732000px;}
.xe{left:503.902500px;}
.x1e{left:504.909000px;}
.x26{left:523.642500px;}
.x1a{left:538.924500px;}
.x25{left:544.902000px;}
@media print{
.v7{vertical-align:-37.280000pt;}
.v4{vertical-align:-15.485855pt;}
.v9{vertical-align:-9.349333pt;}
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.973333pt;}
.va{vertical-align:15.434667pt;}
.v2{vertical-align:19.285333pt;}
.v5{vertical-align:36.021333pt;}
.v8{vertical-align:43.941333pt;}
.v6{vertical-align:73.253333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.000048pt;}
.ls5d{letter-spacing:0.000822pt;}
.ls57{letter-spacing:0.001007pt;}
.ls39{letter-spacing:0.002118pt;}
.ls3c{letter-spacing:0.003125pt;}
.ls40{letter-spacing:0.003733pt;}
.ls51{letter-spacing:0.004194pt;}
.ls1{letter-spacing:0.004384pt;}
.ls26{letter-spacing:0.012658pt;}
.ls48{letter-spacing:0.500541pt;}
.ls4f{letter-spacing:0.531040pt;}
.ls16{letter-spacing:0.846400pt;}
.ls12{letter-spacing:0.851733pt;}
.ls13{letter-spacing:0.903200pt;}
.ls42{letter-spacing:0.931733pt;}
.ls5e{letter-spacing:1.157067pt;}
.ls53{letter-spacing:1.278032pt;}
.ls28{letter-spacing:1.484172pt;}
.ls54{letter-spacing:1.486812pt;}
.ls46{letter-spacing:1.749044pt;}
.ls47{letter-spacing:1.754378pt;}
.ls29{letter-spacing:1.908818pt;}
.ls41{letter-spacing:1.909833pt;}
.lsf{letter-spacing:1.911756pt;}
.ls36{letter-spacing:2.071452pt;}
.ls3a{letter-spacing:2.178422pt;}
.ls43{letter-spacing:2.654133pt;}
.ls5b{letter-spacing:2.658028pt;}
.ls52{letter-spacing:2.658497pt;}
.ls27{letter-spacing:2.659200pt;}
.lse{letter-spacing:2.659467pt;}
.ls44{letter-spacing:2.707733pt;}
.ls45{letter-spacing:2.713067pt;}
.ls3d{letter-spacing:2.814133pt;}
.ls55{letter-spacing:3.061226pt;}
.ls2e{letter-spacing:3.186422pt;}
.ls3f{letter-spacing:6.270133pt;}
.ls1f{letter-spacing:8.857067pt;}
.ls4e{letter-spacing:8.862400pt;}
.ls2d{letter-spacing:8.990861pt;}
.ls0{letter-spacing:10.528822pt;}
.ls24{letter-spacing:11.041867pt;}
.ls35{letter-spacing:11.806861pt;}
.ls30{letter-spacing:11.940194pt;}
.ls1a{letter-spacing:12.455756pt;}
.ls34{letter-spacing:13.189348pt;}
.ls9{letter-spacing:13.478156pt;}
.ls8{letter-spacing:13.803489pt;}
.ls1d{letter-spacing:14.067733pt;}
.ls2c{letter-spacing:14.462133pt;}
.ls5a{letter-spacing:14.615362pt;}
.ls33{letter-spacing:14.654861pt;}
.ls23{letter-spacing:14.675733pt;}
.ls1c{letter-spacing:14.756194pt;}
.ls19{letter-spacing:14.761527pt;}
.lsc{letter-spacing:15.383830pt;}
.ls1e{letter-spacing:15.689067pt;}
.ls5{letter-spacing:15.782156pt;}
.ls31{letter-spacing:15.820690pt;}
.ls2a{letter-spacing:15.822903pt;}
.lsb{letter-spacing:15.944800pt;}
.ls18{letter-spacing:16.167419pt;}
.ls20{letter-spacing:16.403733pt;}
.ls21{letter-spacing:16.511711pt;}
.lsa{letter-spacing:16.630156pt;}
.ls25{letter-spacing:17.080800pt;}
.ls38{letter-spacing:17.416800pt;}
.ls1b{letter-spacing:17.470400pt;}
.ls56{letter-spacing:17.614861pt;}
.ls4{letter-spacing:17.628695pt;}
.ls3b{letter-spacing:17.692695pt;}
.ls49{letter-spacing:17.705537pt;}
.lsd{letter-spacing:18.571489pt;}
.ls4b{letter-spacing:18.590861pt;}
.ls22{letter-spacing:18.808800pt;}
.ls2b{letter-spacing:21.134861pt;}
.ls4a{letter-spacing:21.246133pt;}
.ls7{letter-spacing:22.444695pt;}
.ls5c{letter-spacing:22.859185pt;}
.ls2{letter-spacing:23.271354pt;}
.ls17{letter-spacing:23.939733pt;}
.ls4d{letter-spacing:25.006861pt;}
.ls50{letter-spacing:26.567830pt;}
.ls3{letter-spacing:26.992822pt;}
.ls4c{letter-spacing:27.667467pt;}
.ls11{letter-spacing:29.550861pt;}
.ls15{letter-spacing:29.556194pt;}
.ls10{letter-spacing:30.483733pt;}
.ls14{letter-spacing:32.206133pt;}
.ls58{letter-spacing:141.089007pt;}
.ls59{letter-spacing:346.044695pt;}
.ls32{letter-spacing:414.369867pt;}
.ls37{letter-spacing:421.847200pt;}
.ls2f{letter-spacing:422.049867pt;}
.ws72{word-spacing:-54.409079pt;}
.ws4a{word-spacing:-32.783596pt;}
.wscd{word-spacing:-29.505434pt;}
.wsc{word-spacing:-26.566933pt;}
.wsee{word-spacing:-21.253600pt;}
.ws78{word-spacing:-19.393867pt;}
.ws2e{word-spacing:-18.596853pt;}
.ws95{word-spacing:-18.437452pt;}
.ws1c{word-spacing:-18.331184pt;}
.ws38{word-spacing:-18.118649pt;}
.wse{word-spacing:-17.693578pt;}
.ws15{word-spacing:-17.534176pt;}
.ws42{word-spacing:-17.374774pt;}
.ws52{word-spacing:-17.345787pt;}
.ws1a{word-spacing:-17.321641pt;}
.ws8c{word-spacing:-17.215373pt;}
.ws2d{word-spacing:-17.002837pt;}
.ws36{word-spacing:-16.790302pt;}
.ws39{word-spacing:-16.737168pt;}
.wsa1{word-spacing:-16.524633pt;}
.ws80{word-spacing:-16.471467pt;}
.ws2b{word-spacing:-16.365231pt;}
.wsd4{word-spacing:-16.152695pt;}
.wsd{word-spacing:-16.046428pt;}
.ws3{word-spacing:-15.940267pt;}
.wsd0{word-spacing:-15.887026pt;}
.ws75{word-spacing:-15.833892pt;}
.wsc4{word-spacing:-15.780758pt;}
.ws1f{word-spacing:-15.727625pt;}
.wsd8{word-spacing:-15.674491pt;}
.ws16a{word-spacing:-15.568223pt;}
.ws51{word-spacing:-15.355687pt;}
.ws6b{word-spacing:-15.090018pt;}
.ws8d{word-spacing:-14.983750pt;}
.ws79{word-spacing:-14.956237pt;}
.ws13{word-spacing:-14.824349pt;}
.ws122{word-spacing:-14.792506pt;}
.ws58{word-spacing:-14.771215pt;}
.ws90{word-spacing:-14.718081pt;}
.ws96{word-spacing:-14.664947pt;}
.wsb4{word-spacing:-14.622477pt;}
.ws54{word-spacing:-14.611813pt;}
.ws27{word-spacing:-14.558679pt;}
.ws40{word-spacing:-14.505546pt;}
.ws16b{word-spacing:-14.452412pt;}
.ws6f{word-spacing:-14.409363pt;}
.ws45{word-spacing:-14.399278pt;}
.wse5{word-spacing:-14.282419pt;}
.ws159{word-spacing:-14.239912pt;}
.ws5d{word-spacing:-14.239876pt;}
.ws2f{word-spacing:-14.186742pt;}
.ws6a{word-spacing:-14.133609pt;}
.ws6e{word-spacing:-14.041363pt;}
.wsec{word-spacing:-14.027376pt;}
.ws9c{word-spacing:-14.027341pt;}
.ws17{word-spacing:-13.974207pt;}
.ws83{word-spacing:-13.942362pt;}
.ws1e{word-spacing:-13.921073pt;}
.ws5b{word-spacing:-13.867939pt;}
.wsbf{word-spacing:-13.857347pt;}
.ws19{word-spacing:-13.814805pt;}
.ws65{word-spacing:-13.708538pt;}
.ws152{word-spacing:-13.602304pt;}
.ws141{word-spacing:-13.559797pt;}
.wsb9{word-spacing:-13.549136pt;}
.ws142{word-spacing:-13.517290pt;}
.ws73{word-spacing:-13.496002pt;}
.ws127{word-spacing:-13.474782pt;}
.ws6d{word-spacing:-13.454697pt;}
.wsb{word-spacing:-13.442868pt;}
.ws144{word-spacing:-13.389768pt;}
.wsbc{word-spacing:-13.347261pt;}
.ws4{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-13.230333pt;}
.wsa5{word-spacing:-13.177199pt;}
.ws55{word-spacing:-13.070931pt;}
.ws2a{word-spacing:-13.017797pt;}
.ws44{word-spacing:-12.964663pt;}
.wsa7{word-spacing:-12.911530pt;}
.ws70{word-spacing:-12.858396pt;}
.ws71{word-spacing:-12.805262pt;}
.ws103{word-spacing:-12.752160pt;}
.ws29{word-spacing:-12.752128pt;}
.ws21{word-spacing:-12.698994pt;}
.ws48{word-spacing:-12.645860pt;}
.wsa4{word-spacing:-12.592726pt;}
.ws76{word-spacing:-12.486459pt;}
.wsa3{word-spacing:-12.433325pt;}
.ws64{word-spacing:-12.380191pt;}
.wsed{word-spacing:-12.369595pt;}
.wse4{word-spacing:-12.327088pt;}
.ws5e{word-spacing:-12.327057pt;}
.ws9f{word-spacing:-12.273923pt;}
.ws106{word-spacing:-12.242074pt;}
.ws3a{word-spacing:-12.220789pt;}
.ws7a{word-spacing:-12.167655pt;}
.ws84{word-spacing:-12.114522pt;}
.wsef{word-spacing:-12.029538pt;}
.ws2c{word-spacing:-12.008254pt;}
.wsce{word-spacing:-11.955200pt;}
.ws35{word-spacing:-11.901986pt;}
.wsc5{word-spacing:-11.848852pt;}
.ws9a{word-spacing:-11.795718pt;}
.ws8e{word-spacing:-11.742585pt;}
.wsb2{word-spacing:-11.646973pt;}
.ws94{word-spacing:-11.636317pt;}
.wscc{word-spacing:-11.618133pt;}
.ws49{word-spacing:-11.583183pt;}
.ws123{word-spacing:-11.520425pt;}
.ws124{word-spacing:-11.519451pt;}
.wsf0{word-spacing:-11.476944pt;}
.ws34{word-spacing:-11.476915pt;}
.ws7b{word-spacing:-11.423781pt;}
.ws23{word-spacing:-11.370647pt;}
.ws9{word-spacing:-11.317514pt;}
.ws3e{word-spacing:-11.264380pt;}
.ws13d{word-spacing:-11.221901pt;}
.ws91{word-spacing:-11.211246pt;}
.ws128{word-spacing:-11.136886pt;}
.ws5f{word-spacing:-11.051844pt;}
.wsf8{word-spacing:-10.966858pt;}
.ws37{word-spacing:-10.945577pt;}
.ws20{word-spacing:-10.892443pt;}
.wsf9{word-spacing:-10.881843pt;}
.ws26{word-spacing:-10.839309pt;}
.ws4b{word-spacing:-10.786175pt;}
.ws7{word-spacing:-10.733041pt;}
.ws88{word-spacing:-10.724970pt;}
.ws114{word-spacing:-10.711814pt;}
.ws5{word-spacing:-10.626800pt;}
.wsa0{word-spacing:-10.626773pt;}
.ws41{word-spacing:-10.573639pt;}
.wsa6{word-spacing:-10.520506pt;}
.ws30{word-spacing:-10.467372pt;}
.wsbd{word-spacing:-10.456771pt;}
.ws77{word-spacing:-10.414238pt;}
.wse2{word-spacing:-10.361104pt;}
.wsbe{word-spacing:-10.329250pt;}
.wsb8{word-spacing:-10.307970pt;}
.ws18{word-spacing:-10.254836pt;}
.ws25{word-spacing:-10.148569pt;}
.ws156{word-spacing:-10.116714pt;}
.ws151{word-spacing:-10.074206pt;}
.ws157{word-spacing:-9.989192pt;}
.ws43{word-spacing:-9.989167pt;}
.ws31{word-spacing:-9.936033pt;}
.ws22{word-spacing:-9.882899pt;}
.ws24{word-spacing:-9.829765pt;}
.wsd5{word-spacing:-9.776631pt;}
.ws14e{word-spacing:-9.691642pt;}
.ws92{word-spacing:-9.670364pt;}
.ws7e{word-spacing:-9.649134pt;}
.ws33{word-spacing:-9.564096pt;}
.wsb5{word-spacing:-9.479106pt;}
.wsd3{word-spacing:-9.457828pt;}
.wsf{word-spacing:-9.351561pt;}
.ws3f{word-spacing:-9.192159pt;}
.ws81{word-spacing:-9.139048pt;}
.ws28{word-spacing:-9.085891pt;}
.ws153{word-spacing:-9.054034pt;}
.ws163{word-spacing:-9.032757pt;}
.wse7{word-spacing:-9.011526pt;}
.wsc2{word-spacing:-8.979623pt;}
.ws13f{word-spacing:-8.969019pt;}
.wsb0{word-spacing:-8.926490pt;}
.wsa8{word-spacing:-8.873356pt;}
.ws143{word-spacing:-8.756483pt;}
.wsf7{word-spacing:-8.713976pt;}
.ws154{word-spacing:-8.671469pt;}
.ws4f{word-spacing:-8.660820pt;}
.ws1b{word-spacing:-8.554553pt;}
.ws140{word-spacing:-8.543947pt;}
.ws10f{word-spacing:-8.525058pt;}
.ws7d{word-spacing:-8.501440pt;}
.ws14b{word-spacing:-8.373918pt;}
.ws99{word-spacing:-8.342017pt;}
.wsa9{word-spacing:-8.182615pt;}
.ws158{word-spacing:-8.161382pt;}
.wsdd{word-spacing:-8.129482pt;}
.ws14d{word-spacing:-8.118875pt;}
.wsde{word-spacing:-8.076348pt;}
.ws5c{word-spacing:-8.023214pt;}
.ws110{word-spacing:-7.991354pt;}
.ws149{word-spacing:-7.948846pt;}
.ws8f{word-spacing:-7.916946pt;}
.ws12d{word-spacing:-7.906339pt;}
.ws14c{word-spacing:-7.821325pt;}
.wsdf{word-spacing:-7.810678pt;}
.ws145{word-spacing:-7.778818pt;}
.wsd7{word-spacing:-7.598143pt;}
.ws66{word-spacing:-7.545009pt;}
.ws59{word-spacing:-7.491875pt;}
.wsc3{word-spacing:-7.385607pt;}
.ws109{word-spacing:-7.311238pt;}
.wsba{word-spacing:-7.279340pt;}
.ws8a{word-spacing:-7.270903pt;}
.wsc6{word-spacing:-7.268731pt;}
.ws74{word-spacing:-7.173072pt;}
.ws104{word-spacing:-7.098702pt;}
.wsda{word-spacing:-7.066804pt;}
.wsa{word-spacing:-7.013670pt;}
.ws13c{word-spacing:-6.971181pt;}
.ws56{word-spacing:-6.960537pt;}
.ws14a{word-spacing:-6.928674pt;}
.ws11{word-spacing:-6.907403pt;}
.wsf2{word-spacing:-6.801152pt;}
.ws53{word-spacing:-6.801135pt;}
.ws105{word-spacing:-6.796523pt;}
.ws133{word-spacing:-6.790520pt;}
.ws134{word-spacing:-6.758645pt;}
.wsa2{word-spacing:-6.748001pt;}
.wsf4{word-spacing:-6.716138pt;}
.wsf5{word-spacing:-6.703015pt;}
.ws107{word-spacing:-6.673630pt;}
.ws155{word-spacing:-6.418587pt;}
.wse1{word-spacing:-6.376064pt;}
.ws168{word-spacing:-6.322930pt;}
.ws125{word-spacing:-6.163544pt;}
.ws63{word-spacing:-6.163529pt;}
.ws169{word-spacing:-6.110395pt;}
.wse3{word-spacing:-6.057261pt;}
.wse6{word-spacing:-5.993515pt;}
.ws10{word-spacing:-5.950993pt;}
.wsab{word-spacing:-5.897859pt;}
.wsf3{word-spacing:-5.823486pt;}
.ws3d{word-spacing:-5.791591pt;}
.wsf6{word-spacing:-5.738472pt;}
.ws32{word-spacing:-5.738458pt;}
.ws11b{word-spacing:-5.695965pt;}
.ws118{word-spacing:-5.653458pt;}
.wsb7{word-spacing:-5.632190pt;}
.wsac{word-spacing:-5.579056pt;}
.ws150{word-spacing:-5.568443pt;}
.wsfe{word-spacing:-5.398414pt;}
.wsd1{word-spacing:-5.260253pt;}
.wsbb{word-spacing:-5.207119pt;}
.wsdc{word-spacing:-5.153985pt;}
.wsd9{word-spacing:-5.100851pt;}
.ws4c{word-spacing:-5.047717pt;}
.ws11d{word-spacing:-5.015850pt;}
.ws11c{word-spacing:-4.999199pt;}
.ws162{word-spacing:-4.994583pt;}
.ws57{word-spacing:-4.888316pt;}
.ws97{word-spacing:-4.835182pt;}
.ws15b{word-spacing:-4.760806pt;}
.ws166{word-spacing:-4.675780pt;}
.wsc0{word-spacing:-4.548270pt;}
.wsb6{word-spacing:-4.516379pt;}
.ws15c{word-spacing:-4.463256pt;}
.wsff{word-spacing:-4.420749pt;}
.ws8{word-spacing:-4.356977pt;}
.ws129{word-spacing:-4.293227pt;}
.ws98{word-spacing:-4.250709pt;}
.ws46{word-spacing:-4.091308pt;}
.wsaa{word-spacing:-4.038174pt;}
.ws9d{word-spacing:-3.985040pt;}
.ws50{word-spacing:-3.931906pt;}
.ws12f{word-spacing:-3.783141pt;}
.wsd2{word-spacing:-3.719371pt;}
.ws10a{word-spacing:-3.655619pt;}
.ws93{word-spacing:-3.613103pt;}
.ws10b{word-spacing:-3.539272pt;}
.ws10c{word-spacing:-3.528098pt;}
.ws9b{word-spacing:-3.506835pt;}
.ws126{word-spacing:-3.485590pt;}
.wsf1{word-spacing:-3.443083pt;}
.ws12{word-spacing:-3.134898pt;}
.ws14f{word-spacing:-3.018011pt;}
.wsaf{word-spacing:-2.922363pt;}
.wse9{word-spacing:-2.859439pt;}
.wsea{word-spacing:-2.847982pt;}
.ws102{word-spacing:-2.762968pt;}
.ws15a{word-spacing:-2.720461pt;}
.ws3c{word-spacing:-2.656693pt;}
.wsb1{word-spacing:-2.550432pt;}
.wseb{word-spacing:-2.465418pt;}
.wsae{word-spacing:-2.391024pt;}
.ws137{word-spacing:-2.380403pt;}
.wse0{word-spacing:-2.231622pt;}
.ws16c{word-spacing:-2.178489pt;}
.wse8{word-spacing:-2.167867pt;}
.ws130{word-spacing:-2.082853pt;}
.ws167{word-spacing:-2.019087pt;}
.ws86{word-spacing:-1.979806pt;}
.ws85{word-spacing:-1.976057pt;}
.ws4e{word-spacing:-1.753418pt;}
.ws10d{word-spacing:-1.742795pt;}
.ws62{word-spacing:-1.647150pt;}
.ws12b{word-spacing:-1.537158pt;}
.ws12c{word-spacing:-1.530259pt;}
.ws111{word-spacing:-1.232709pt;}
.ws165{word-spacing:-1.222079pt;}
.ws135{word-spacing:-1.105187pt;}
.ws8b{word-spacing:-1.056260pt;}
.ws89{word-spacing:-1.050927pt;}
.ws136{word-spacing:-0.850144pt;}
.wsc1{word-spacing:-0.743874pt;}
.ws10e{word-spacing:-0.085014pt;}
.ws14{word-spacing:-0.076513pt;}
.ws5a{word-spacing:-0.053134pt;}
.wscb{word-spacing:-0.047821pt;}
.ws7f{word-spacing:-0.042507pt;}
.ws4d{word-spacing:0.000000pt;}
.ws68{word-spacing:0.193303pt;}
.wsd6{word-spacing:0.212535pt;}
.ws47{word-spacing:0.425071pt;}
.ws138{word-spacing:0.467579pt;}
.ws100{word-spacing:0.510086pt;}
.ws12a{word-spacing:0.680115pt;}
.ws115{word-spacing:0.977666pt;}
.ws148{word-spacing:1.105187pt;}
.ws12e{word-spacing:1.232709pt;}
.ws11f{word-spacing:1.912824pt;}
.wsfb{word-spacing:2.082853pt;}
.wsad{word-spacing:2.178489pt;}
.ws3b{word-spacing:2.284756pt;}
.ws132{word-spacing:2.635446pt;}
.ws15d{word-spacing:2.762968pt;}
.wsfc{word-spacing:2.975504pt;}
.ws15f{word-spacing:3.230547pt;}
.ws101{word-spacing:3.315562pt;}
.ws13e{word-spacing:3.443083pt;}
.ws116{word-spacing:3.868155pt;}
.wsfd{word-spacing:3.910662pt;}
.ws108{word-spacing:4.414353pt;}
.wsfa{word-spacing:4.930835pt;}
.ws11e{word-spacing:5.270893pt;}
.ws13b{word-spacing:5.355907pt;}
.ws13a{word-spacing:5.398414pt;}
.ws87{word-spacing:5.632190pt;}
.ws146{word-spacing:6.121037pt;}
.ws15e{word-spacing:6.376080pt;}
.wsdb{word-spacing:6.588599pt;}
.ws160{word-spacing:6.716138pt;}
.ws112{word-spacing:6.801152pt;}
.wsca{word-spacing:7.938253pt;}
.ws67{word-spacing:8.802333pt;}
.ws6c{word-spacing:8.807666pt;}
.ws69{word-spacing:9.545281pt;}
.ws120{word-spacing:9.726134pt;}
.ws121{word-spacing:9.734149pt;}
.ws131{word-spacing:9.946685pt;}
.ws117{word-spacing:10.414264pt;}
.ws113{word-spacing:11.136886pt;}
.wsc9{word-spacing:11.904725pt;}
.wsc7{word-spacing:11.907379pt;}
.ws1{word-spacing:11.921637pt;}
.ws60{word-spacing:12.318604pt;}
.ws161{word-spacing:12.645860pt;}
.ws9e{word-spacing:12.752128pt;}
.ws139{word-spacing:13.304754pt;}
.wscf{word-spacing:15.297589pt;}
.wsb3{word-spacing:15.302426pt;}
.ws7c{word-spacing:15.302592pt;}
.ws119{word-spacing:15.557635pt;}
.ws147{word-spacing:18.575646pt;}
.ws61{word-spacing:19.051754pt;}
.ws11a{word-spacing:22.103744pt;}
.ws164{word-spacing:25.291721pt;}
.ws2{word-spacing:26.460798pt;}
.wsc8{word-spacing:45.047782pt;}
.ws6{word-spacing:53.625626pt;}
.ws16{word-spacing:55.931052pt;}
.ws82{word-spacing:742.370036pt;}
.ws0{word-spacing:910.110244pt;}
._27{margin-left:-6.057261pt;}
._6{margin-left:-5.021152pt;}
._0{margin-left:-3.873456pt;}
._1{margin-left:-2.151920pt;}
._4{margin-left:-0.956416pt;}
._7{width:1.062677pt;}
._3{width:2.518517pt;}
._2{width:6.412722pt;}
._28{width:7.689076pt;}
._a{width:8.687382pt;}
._26{width:9.723494pt;}
._e{width:10.706473pt;}
._20{width:12.686778pt;}
._23{width:14.066129pt;}
._1d{width:15.090015pt;}
._13{width:16.205829pt;}
._8{width:17.135680pt;}
._1f{width:18.235115pt;}
._5{width:19.181326pt;}
._1e{width:20.403414pt;}
._15{width:21.359814pt;}
._12{width:22.369358pt;}
._2b{width:23.671279pt;}
._11{width:24.600980pt;}
._25{width:25.769925pt;}
._c{width:26.885737pt;}
._24{width:27.969663pt;}
._f{width:29.675263pt;}
._b{width:30.631679pt;}
._14{width:32.066287pt;}
._21{width:34.058809pt;}
._1a{width:35.242431pt;}
._29{width:36.237297pt;}
._d{width:38.096976pt;}
._1c{width:40.036367pt;}
._10{width:41.662301pt;}
._16{width:43.888574pt;}
._9{width:45.456021pt;}
._22{width:48.883167pt;}
._19{width:51.167914pt;}
._1b{width:56.007565pt;}
._2a{width:174.323703pt;}
._2f{width:231.833600pt;}
._3c{width:236.298625pt;}
._31{width:241.795200pt;}
._3d{width:249.606305pt;}
._30{width:256.058590pt;}
._39{width:261.715200pt;}
._3a{width:268.019123pt;}
._36{width:279.651200pt;}
._33{width:291.603200pt;}
._34{width:297.907123pt;}
._2d{width:307.529600pt;}
._37{width:315.836723pt;}
._2c{width:321.322547pt;}
._35{width:334.280533pt;}
._32{width:339.258547pt;}
._3b{width:342.957867pt;}
._2e{width:346.232576pt;}
._38{width:364.168533pt;}
._18{width:1423.164966pt;}
._17{width:1643.176280pt;}
.fsc{font-size:32.942933pt;}
.fs8{font-size:38.717120pt;}
.fs5{font-size:38.787733pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:43.038400pt;}
.fsd{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fsa{font-size:59.564800pt;}
.fs2{font-size:63.761067pt;}
.fsb{font-size:69.492267pt;}
.fs6{font-size:76.513067pt;}
.fs7{font-size:77.434240pt;}
.fs9{font-size:79.419733pt;}
.fs1{font-size:106.268267pt;}
.y0{bottom:0.000000pt;}
.y86{bottom:4.790065pt;}
.y85{bottom:32.523746pt;}
.y4e{bottom:63.641333pt;}
.y8f{bottom:68.633541pt;}
.y8e{bottom:87.557216pt;}
.y87{bottom:98.367172pt;}
.yeb{bottom:99.017333pt;}
.yb5{bottom:103.493333pt;}
.ycf{bottom:104.060000pt;}
.y101{bottom:107.278667pt;}
.y88{bottom:108.281175pt;}
.y140{bottom:110.533333pt;}
.yea{bottom:111.636000pt;}
.y82{bottom:112.565333pt;}
.y8a{bottom:113.416715pt;}
.y177{bottom:116.112000pt;}
.y4d{bottom:116.512000pt;}
.y29{bottom:116.538667pt;}
.yf1{bottom:117.446667pt;}
.yb4{bottom:119.433333pt;}
.y100{bottom:119.898667pt;}
.yce{bottom:120.001333pt;}
.y13f{bottom:123.152000pt;}
.y94{bottom:124.468000pt;}
.y81{bottom:128.505333pt;}
.y176{bottom:128.732000pt;}
.yf0{bottom:130.066667pt;}
.y4c{bottom:132.452000pt;}
.y28{bottom:132.478667pt;}
.yff{bottom:132.517333pt;}
.yb3{bottom:135.373333pt;}
.ycd{bottom:135.941333pt;}
.y90{bottom:137.373740pt;}
.y175{bottom:141.350667pt;}
.y80{bottom:144.445333pt;}
.y4b{bottom:148.392000pt;}
.y27{bottom:148.418667pt;}
.y13b{bottom:149.242667pt;}
.yb2{bottom:151.313333pt;}
.ycc{bottom:151.881333pt;}
.y1af{bottom:153.970667pt;}
.y7f{bottom:160.385333pt;}
.y4a{bottom:164.332000pt;}
.y26{bottom:164.358667pt;}
.y13a{bottom:165.184000pt;}
.y174{bottom:166.060000pt;}
.yb1{bottom:167.253333pt;}
.ycb{bottom:167.821333pt;}
.y8d{bottom:167.917142pt;}
.y7e{bottom:176.325333pt;}
.y1ae{bottom:176.620000pt;}
.y173{bottom:178.680000pt;}
.y49{bottom:180.272000pt;}
.y25{bottom:180.300000pt;}
.y139{bottom:181.124000pt;}
.yb0{bottom:183.193333pt;}
.yca{bottom:183.761333pt;}
.y1ad{bottom:189.238667pt;}
.y172{bottom:191.298667pt;}
.y7d{bottom:192.266667pt;}
.y8b{bottom:195.735579pt;}
.y48{bottom:196.213333pt;}
.y138{bottom:197.064000pt;}
.yaf{bottom:199.134667pt;}
.yc9{bottom:199.701333pt;}
.y1ac{bottom:201.858667pt;}
.y24{bottom:203.798667pt;}
.y7c{bottom:208.206667pt;}
.y47{bottom:212.153333pt;}
.y137{bottom:213.004000pt;}
.y1ab{bottom:214.477333pt;}
.yae{bottom:215.074667pt;}
.yc8{bottom:215.642667pt;}
.y171{bottom:216.009333pt;}
.y23{bottom:219.738667pt;}
.y7b{bottom:224.146667pt;}
.y170{bottom:228.628000pt;}
.y136{bottom:228.944000pt;}
.y8c{bottom:230.213919pt;}
.yad{bottom:231.014667pt;}
.y89{bottom:231.119552pt;}
.yc7{bottom:231.582667pt;}
.y22{bottom:235.678667pt;}
.y1aa{bottom:237.126667pt;}
.y46{bottom:239.637333pt;}
.y16f{bottom:241.248000pt;}
.yac{bottom:246.954667pt;}
.yc6{bottom:247.522667pt;}
.y7a{bottom:247.645333pt;}
.y1a9{bottom:249.746667pt;}
.y21{bottom:251.620000pt;}
.y45{bottom:255.577333pt;}
.y1a8{bottom:262.365333pt;}
.yab{bottom:262.894667pt;}
.yc5{bottom:263.462667pt;}
.y79{bottom:263.586667pt;}
.y135{bottom:265.726667pt;}
.y16e{bottom:265.957333pt;}
.y20{bottom:267.560000pt;}
.y44{bottom:271.517333pt;}
.y1a7{bottom:274.985333pt;}
.y16d{bottom:278.576000pt;}
.y78{bottom:279.526667pt;}
.y1f{bottom:283.500000pt;}
.yaa{bottom:286.394667pt;}
.y43{bottom:287.458667pt;}
.yc4{bottom:287.758667pt;}
.y16c{bottom:291.196000pt;}
.y77{bottom:295.466667pt;}
.y1a6{bottom:297.634667pt;}
.y1e{bottom:299.440000pt;}
.ya9{bottom:302.334667pt;}
.y42{bottom:303.398667pt;}
.yc3{bottom:303.698667pt;}
.y16b{bottom:303.814667pt;}
.y1a5{bottom:310.254667pt;}
.y76{bottom:311.406667pt;}
.y1d{bottom:315.380000pt;}
.ya8{bottom:318.274667pt;}
.y41{bottom:319.338667pt;}
.yc2{bottom:319.640000pt;}
.ye9{bottom:321.166667pt;}
.y1a4{bottom:322.873333pt;}
.y16a{bottom:328.524000pt;}
.y134{bottom:330.510667pt;}
.y1c{bottom:331.320000pt;}
.ye8{bottom:333.786667pt;}
.ya7{bottom:334.214667pt;}
.y75{bottom:334.906667pt;}
.y40{bottom:335.278667pt;}
.yc1{bottom:335.580000pt;}
.y169{bottom:341.144000pt;}
.y1a3{bottom:345.522667pt;}
.y133{bottom:346.450667pt;}
.y1b{bottom:347.261333pt;}
.ya6{bottom:350.154667pt;}
.y74{bottom:350.846667pt;}
.y3f{bottom:351.218667pt;}
.yc0{bottom:351.520000pt;}
.y168{bottom:353.762667pt;}
.y1a2{bottom:358.142667pt;}
.y132{bottom:362.390667pt;}
.y1a{bottom:363.201333pt;}
.ya5{bottom:366.096000pt;}
.y167{bottom:366.382667pt;}
.y73{bottom:366.786667pt;}
.y3e{bottom:367.158667pt;}
.ybf{bottom:367.460000pt;}
.y1a1{bottom:370.761333pt;}
.y13e{bottom:377.642667pt;}
.y131{bottom:378.332000pt;}
.y166{bottom:379.001333pt;}
.y19{bottom:379.141333pt;}
.yfe{bottom:380.053333pt;}
.ya4{bottom:382.036000pt;}
.y72{bottom:382.726667pt;}
.y3d{bottom:383.100000pt;}
.y1a0{bottom:383.381333pt;}
.ybe{bottom:383.400000pt;}
.y93{bottom:385.044000pt;}
.y13d{bottom:390.262667pt;}
.yfd{bottom:392.673333pt;}
.y130{bottom:394.272000pt;}
.y18{bottom:395.081333pt;}
.ya3{bottom:397.976000pt;}
.y71{bottom:398.666667pt;}
.y3c{bottom:399.040000pt;}
.ybd{bottom:399.340000pt;}
.y165{bottom:403.712000pt;}
.yfc{bottom:405.292000pt;}
.y19f{bottom:406.030667pt;}
.y12f{bottom:410.212000pt;}
.y70{bottom:414.606667pt;}
.y164{bottom:416.330667pt;}
.y19e{bottom:418.649333pt;}
.ybc{bottom:422.840000pt;}
.ya2{bottom:424.682667pt;}
.y12e{bottom:426.152000pt;}
.y3b{bottom:426.524000pt;}
.yef{bottom:427.626667pt;}
.y163{bottom:428.950667pt;}
.y6f{bottom:430.548000pt;}
.y19d{bottom:431.269333pt;}
.ya1{bottom:433.794667pt;}
.y17{bottom:436.672000pt;}
.ybb{bottom:438.780000pt;}
.yee{bottom:440.245333pt;}
.y12d{bottom:442.092000pt;}
.y3a{bottom:442.464000pt;}
.y19c{bottom:443.888000pt;}
.y6e{bottom:446.488000pt;}
.y162{bottom:453.660000pt;}
.yba{bottom:454.720000pt;}
.y12c{bottom:458.032000pt;}
.y39{bottom:458.404000pt;}
.y6d{bottom:462.428000pt;}
.ya0{bottom:463.464000pt;}
.y161{bottom:466.278667pt;}
.y19b{bottom:466.538667pt;}
.yb9{bottom:470.660000pt;}
.y12b{bottom:473.973333pt;}
.y38{bottom:474.345333pt;}
.y6c{bottom:478.368000pt;}
.y160{bottom:478.898667pt;}
.y19a{bottom:479.157333pt;}
.yb8{bottom:486.601333pt;}
.y9f{bottom:487.944000pt;}
.y12a{bottom:489.913333pt;}
.y37{bottom:490.285333pt;}
.y199{bottom:491.777333pt;}
.y16{bottom:492.886667pt;}
.yb7{bottom:502.541333pt;}
.y15f{bottom:503.608000pt;}
.y198{bottom:504.396000pt;}
.y129{bottom:505.853333pt;}
.y36{bottom:506.225333pt;}
.y9e{bottom:507.297333pt;}
.y15{bottom:508.826667pt;}
.y6b{bottom:514.998667pt;}
.y15e{bottom:516.226667pt;}
.y9d{bottom:516.409333pt;}
.y197{bottom:517.016000pt;}
.yb6{bottom:518.481333pt;}
.y35{bottom:522.165333pt;}
.y15d{bottom:528.846667pt;}
.y128{bottom:530.174667pt;}
.y9c{bottom:534.421333pt;}
.y14{bottom:535.038667pt;}
.y34{bottom:538.105333pt;}
.y6a{bottom:538.909333pt;}
.y196{bottom:539.665333pt;}
.y15c{bottom:541.465333pt;}
.y9b{bottom:550.361333pt;}
.y195{bottom:552.284000pt;}
.y33{bottom:554.045333pt;}
.ye7{bottom:556.393333pt;}
.y194{bottom:564.904000pt;}
.y15b{bottom:566.176000pt;}
.y32{bottom:569.986667pt;}
.ye6{bottom:572.333333pt;}
.y9a{bottom:572.402667pt;}
.y99{bottom:576.017333pt;}
.y193{bottom:577.522667pt;}
.y15a{bottom:578.794667pt;}
.y127{bottom:582.185333pt;}
.y1c9{bottom:583.973333pt;}
.y10e{bottom:584.686667pt;}
.y31{bottom:585.926667pt;}
.ye5{bottom:588.273333pt;}
.y98{bottom:588.637333pt;}
.y159{bottom:591.414667pt;}
.y69{bottom:592.354667pt;}
.y1c8{bottom:596.592000pt;}
.y13{bottom:597.470667pt;}
.y126{bottom:598.126667pt;}
.y1dc{bottom:599.913333pt;}
.y192{bottom:600.172000pt;}
.y10d{bottom:600.626667pt;}
.y30{bottom:601.866667pt;}
.y158{bottom:604.033333pt;}
.ye4{bottom:604.214667pt;}
.y68{bottom:608.294667pt;}
.y1c7{bottom:609.212000pt;}
.y191{bottom:612.792000pt;}
.y12{bottom:613.410667pt;}
.y125{bottom:614.066667pt;}
.y1db{bottom:615.853333pt;}
.y10c{bottom:616.566667pt;}
.y157{bottom:616.653333pt;}
.y2f{bottom:617.806667pt;}
.ye3{bottom:620.154667pt;}
.y1c6{bottom:621.830667pt;}
.y67{bottom:624.234667pt;}
.y190{bottom:625.410667pt;}
.yfb{bottom:627.713333pt;}
.y11{bottom:629.350667pt;}
.y124{bottom:630.006667pt;}
.y1da{bottom:631.793333pt;}
.y10b{bottom:632.506667pt;}
.y2e{bottom:633.746667pt;}
.y1c5{bottom:634.450667pt;}
.ye2{bottom:636.094667pt;}
.y18f{bottom:638.030667pt;}
.y66{bottom:640.174667pt;}
.y156{bottom:641.362667pt;}
.yfa{bottom:643.653333pt;}
.y13c{bottom:644.753333pt;}
.y10{bottom:645.292000pt;}
.y1d9{bottom:647.733333pt;}
.y10a{bottom:648.446667pt;}
.y2d{bottom:649.686667pt;}
.y92{bottom:650.200000pt;}
.ye1{bottom:652.034667pt;}
.y123{bottom:653.505333pt;}
.y155{bottom:653.981333pt;}
.y65{bottom:656.114667pt;}
.y1c4{bottom:656.178667pt;}
.yf9{bottom:659.593333pt;}
.y18e{bottom:660.680000pt;}
.yf{bottom:661.232000pt;}
.y91{bottom:662.820000pt;}
.y1d8{bottom:663.674667pt;}
.y109{bottom:664.388000pt;}
.y2c{bottom:665.628000pt;}
.y154{bottom:666.601333pt;}
.ye0{bottom:667.974667pt;}
.y1c3{bottom:668.797333pt;}
.y122{bottom:669.446667pt;}
.y64{bottom:672.054667pt;}
.y18d{bottom:673.298667pt;}
.yf8{bottom:675.534667pt;}
.ye{bottom:677.172000pt;}
.y84{bottom:679.212000pt;}
.y153{bottom:679.220000pt;}
.y1d7{bottom:679.614667pt;}
.y108{bottom:680.328000pt;}
.y1c2{bottom:681.417333pt;}
.y2b{bottom:681.568000pt;}
.y121{bottom:685.386667pt;}
.y18c{bottom:685.918667pt;}
.y63{bottom:687.996000pt;}
.ydf{bottom:691.474667pt;}
.yd{bottom:693.112000pt;}
.y1d6{bottom:695.554667pt;}
.y107{bottom:696.268000pt;}
.y18b{bottom:698.537333pt;}
.y120{bottom:701.326667pt;}
.y1c1{bottom:703.145333pt;}
.y152{bottom:703.929333pt;}
.y62{bottom:703.936000pt;}
.yde{bottom:707.414667pt;}
.yc{bottom:709.052000pt;}
.y1d5{bottom:711.494667pt;}
.y106{bottom:712.208000pt;}
.yf7{bottom:714.973333pt;}
.y1c0{bottom:715.764000pt;}
.y151{bottom:716.549333pt;}
.y61{bottom:719.876000pt;}
.y18a{bottom:721.188000pt;}
.ydd{bottom:723.354667pt;}
.y11f{bottom:724.825333pt;}
.yb{bottom:724.992000pt;}
.y1d4{bottom:727.434667pt;}
.y105{bottom:728.148000pt;}
.y1bf{bottom:728.384000pt;}
.y150{bottom:729.168000pt;}
.yf6{bottom:730.913333pt;}
.y189{bottom:733.806667pt;}
.y60{bottom:735.816000pt;}
.yed{bottom:737.805333pt;}
.ydc{bottom:739.294667pt;}
.y11e{bottom:740.766667pt;}
.y2a{bottom:740.932000pt;}
.ya{bottom:740.933333pt;}
.y1be{bottom:741.002667pt;}
.y14f{bottom:741.788000pt;}
.y1d3{bottom:743.374667pt;}
.y188{bottom:746.426667pt;}
.yf5{bottom:746.854667pt;}
.yec{bottom:750.425333pt;}
.y5f{bottom:751.756000pt;}
.y104{bottom:752.469333pt;}
.y11d{bottom:756.706667pt;}
.y9{bottom:756.873333pt;}
.y187{bottom:759.045333pt;}
.y1bd{bottom:762.730667pt;}
.ydb{bottom:762.794667pt;}
.y14e{bottom:766.497333pt;}
.y1d2{bottom:766.874667pt;}
.y5e{bottom:767.696000pt;}
.y11c{bottom:772.646667pt;}
.y8{bottom:772.813333pt;}
.y1bc{bottom:775.350667pt;}
.yda{bottom:778.734667pt;}
.y14d{bottom:779.117333pt;}
.y186{bottom:781.694667pt;}
.y1d1{bottom:782.814667pt;}
.y1bb{bottom:787.969333pt;}
.y11b{bottom:788.586667pt;}
.y14c{bottom:791.736000pt;}
.y5d{bottom:793.852000pt;}
.y185{bottom:794.314667pt;}
.yd9{bottom:794.674667pt;}
.y1d0{bottom:798.754667pt;}
.y1ba{bottom:800.589333pt;}
.y14b{bottom:804.356000pt;}
.y11a{bottom:804.526667pt;}
.y184{bottom:806.933333pt;}
.y96{bottom:807.829333pt;}
.y5c{bottom:809.793333pt;}
.yd8{bottom:810.614667pt;}
.y103{bottom:812.310667pt;}
.y1cf{bottom:814.694667pt;}
.y97{bottom:819.381333pt;}
.y183{bottom:819.553333pt;}
.y95{bottom:820.449333pt;}
.y119{bottom:820.466667pt;}
.y7{bottom:820.568000pt;}
.y1b9{bottom:822.317333pt;}
.y102{bottom:824.930667pt;}
.y5b{bottom:825.733333pt;}
.yd7{bottom:826.554667pt;}
.y14a{bottom:829.065333pt;}
.y1ce{bottom:830.636000pt;}
.yf4{bottom:834.114667pt;}
.y1b8{bottom:834.936000pt;}
.y118{bottom:836.408000pt;}
.y5a{bottom:841.673333pt;}
.y149{bottom:841.684000pt;}
.y182{bottom:842.202667pt;}
.yd6{bottom:842.496000pt;}
.y1cd{bottom:846.576000pt;}
.y1b7{bottom:847.556000pt;}
.y6{bottom:848.738667pt;}
.yf3{bottom:850.054667pt;}
.y117{bottom:852.348000pt;}
.y148{bottom:854.304000pt;}
.y181{bottom:854.821333pt;}
.y59{bottom:857.613333pt;}
.yd5{bottom:858.436000pt;}
.y1cc{bottom:862.516000pt;}
.yf2{bottom:865.994667pt;}
.y180{bottom:867.441333pt;}
.y1b6{bottom:869.284000pt;}
.y58{bottom:873.553333pt;}
.y147{bottom:879.013333pt;}
.y17f{bottom:880.060000pt;}
.y5{bottom:880.985333pt;}
.y1b5{bottom:881.904000pt;}
.yd4{bottom:881.934667pt;}
.y57{bottom:889.493333pt;}
.y116{bottom:890.369333pt;}
.y146{bottom:891.632000pt;}
.y1b4{bottom:894.522667pt;}
.yd3{bottom:897.874667pt;}
.y1cb{bottom:899.709333pt;}
.y17e{bottom:902.710667pt;}
.y145{bottom:904.252000pt;}
.y56{bottom:905.434667pt;}
.y1b3{bottom:907.142667pt;}
.y115{bottom:911.810667pt;}
.y4{bottom:913.233333pt;}
.yd2{bottom:913.816000pt;}
.y17d{bottom:915.329333pt;}
.y144{bottom:916.870667pt;}
.y55{bottom:921.374667pt;}
.y114{bottom:927.086667pt;}
.y17c{bottom:927.949333pt;}
.y1b2{bottom:928.870667pt;}
.yd1{bottom:929.756000pt;}
.y54{bottom:937.314667pt;}
.y17b{bottom:940.568000pt;}
.y1b1{bottom:941.489333pt;}
.y143{bottom:941.581333pt;}
.y113{bottom:942.362667pt;}
.yd0{bottom:945.696000pt;}
.y1ca{bottom:950.598667pt;}
.y53{bottom:953.254667pt;}
.y1b0{bottom:954.109333pt;}
.y142{bottom:954.200000pt;}
.y3{bottom:954.322667pt;}
.y112{bottom:957.638667pt;}
.y17a{bottom:963.217333pt;}
.y141{bottom:966.820000pt;}
.y52{bottom:969.194667pt;}
.y111{bottom:972.914667pt;}
.y179{bottom:975.837333pt;}
.y51{bottom:985.134667pt;}
.y2{bottom:986.202667pt;}
.y110{bottom:988.190667pt;}
.y178{bottom:988.456000pt;}
.y83{bottom:1001.074667pt;}
.y50{bottom:1001.076000pt;}
.y10f{bottom:1003.466667pt;}
.y1{bottom:1060.077333pt;}
.y4f{bottom:1060.132000pt;}
.h6{height:29.244954pt;}
.h12{height:29.414982pt;}
.ha{height:32.149685pt;}
.h2{height:32.368351pt;}
.h19{height:32.900710pt;}
.h18{height:33.091994pt;}
.h17{height:34.908950pt;}
.h8{height:36.449833pt;}
.h5{height:36.556100pt;}
.h7{height:36.768636pt;}
.h1a{height:37.934690pt;}
.hc{height:38.096982pt;}
.h10{height:43.363174pt;}
.h4{height:43.740092pt;}
.hb{height:47.096138pt;}
.h11{height:50.590370pt;}
.h9{height:52.947042pt;}
.he{height:56.372127pt;}
.hf{height:57.817566pt;}
.h13{height:65.436316pt;}
.h15{height:73.004100pt;}
.h3{height:73.537641pt;}
.h14{height:74.070316pt;}
.h16{height:76.228830pt;}
.hd{height:243.273501pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:255.498990pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.840031pt;}
.x1{left:56.693333pt;}
.x2a{left:61.118667pt;}
.x10{left:64.441792pt;}
.x14{left:66.881467pt;}
.x17{left:68.532777pt;}
.xb{left:75.590667pt;}
.x2c{left:80.016000pt;}
.x8{left:85.040000pt;}
.x2{left:90.129333pt;}
.xc{left:103.937333pt;}
.x28{left:112.260000pt;}
.x4{left:113.930667pt;}
.x1b{left:116.452000pt;}
.x16{left:123.047040pt;}
.x5{left:126.386667pt;}
.x24{left:136.997333pt;}
.x18{left:138.005871pt;}
.x27{left:139.236000pt;}
.x22{left:146.926667pt;}
.x1d{left:147.852000pt;}
.x1c{left:149.512000pt;}
.x3{left:167.201333pt;}
.x20{left:174.930667pt;}
.x21{left:176.798667pt;}
.x1f{left:177.820000pt;}
.x11{left:203.307940pt;}
.xf{left:224.918546pt;}
.x12{left:229.954688pt;}
.x29{left:233.317333pt;}
.x13{left:251.915113pt;}
.x7{left:271.309333pt;}
.x6{left:275.993333pt;}
.x23{left:360.574667pt;}
.x9{left:398.740000pt;}
.x2b{left:403.166667pt;}
.xd{left:417.637333pt;}
.x2d{left:422.064000pt;}
.xa{left:427.086667pt;}
.x19{left:445.984000pt;}
.xe{left:447.913333pt;}
.x1e{left:448.808000pt;}
.x26{left:465.460000pt;}
.x1a{left:479.044000pt;}
.x25{left:484.357333pt;}
}




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