
    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_756597d1d77ea7b37bdf770d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1500d013b41b65141c1bedce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_ad20b51b1586a87c130a3860.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d9f6d7701ae5344927279060.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.717000;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_48881f406310eea9c679e225.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.843000;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_7420db2c7458092585a4b9b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_96613eee6740e85a7a68eb32.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923000;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_38242ffbbf454bbef5000faf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.388000;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_9bd387fd34622657510bc406.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.580000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:9.708000px;}
.v3{vertical-align:17.358000px;}
.v1{vertical-align:21.702000px;}
.ls2{letter-spacing:0.000000px;}
.ls36{letter-spacing:0.004200px;}
.ls39{letter-spacing:2.752473px;}
.ls37{letter-spacing:2.786184px;}
.ls38{letter-spacing:2.808646px;}
.ls3a{letter-spacing:2.831123px;}
.ls3{letter-spacing:2.956050px;}
.ls1{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.990611px;}
.ls10{letter-spacing:4.293854px;}
.ls11{letter-spacing:4.328471px;}
.ls4{letter-spacing:4.453957px;}
.ls5{letter-spacing:4.489865px;}
.ls1a{letter-spacing:4.834234px;}
.ls18{letter-spacing:4.893441px;}
.ls19{letter-spacing:4.932892px;}
.lsc{letter-spacing:4.957515px;}
.ls1b{letter-spacing:4.972367px;}
.ls26{letter-spacing:5.088296px;}
.ls24{letter-spacing:5.150614px;}
.ls25{letter-spacing:5.192139px;}
.ls27{letter-spacing:5.233689px;}
.ls21{letter-spacing:5.235742px;}
.ls1f{letter-spacing:5.299866px;}
.ls20{letter-spacing:5.342594px;}
.ls33{letter-spacing:5.366083px;}
.ls2b{letter-spacing:5.370535px;}
.ls22{letter-spacing:5.385348px;}
.ls31{letter-spacing:5.431803px;}
.ls29{letter-spacing:5.436310px;}
.ls45{letter-spacing:5.466811px;}
.ls32{letter-spacing:5.475594px;}
.ls2a{letter-spacing:5.480137px;}
.ls16{letter-spacing:5.486260px;}
.ls34{letter-spacing:5.519413px;}
.ls2c{letter-spacing:5.523992px;}
.ls43{letter-spacing:5.533765px;}
.ls40{letter-spacing:5.550288px;}
.ls13{letter-spacing:5.553452px;}
.ls44{letter-spacing:5.578379px;}
.ls14{letter-spacing:5.598224px;}
.ls3e{letter-spacing:5.618264px;}
.ls46{letter-spacing:5.623020px;}
.ls15{letter-spacing:5.643024px;}
.ls3f{letter-spacing:5.663559px;}
.ls41{letter-spacing:5.708882px;}
.ls2f{letter-spacing:12.014896px;}
.ls1e{letter-spacing:12.433325px;}
.ls3d{letter-spacing:12.911530px;}
.lsa{letter-spacing:13.210408px;}
.ls30{letter-spacing:13.569061px;}
.ls2e{letter-spacing:13.628837px;}
.ls1d{letter-spacing:14.107042px;}
.lse{letter-spacing:14.465695px;}
.ls3c{letter-spacing:14.585246px;}
.lsb{letter-spacing:14.943900px;}
.ls8{letter-spacing:15.302554px;}
.ls3b{letter-spacing:16.795704px;}
.lsf{letter-spacing:17.095822px;}
.lsd{letter-spacing:17.155597px;}
.ls7{letter-spacing:18.649987px;}
.ls9{letter-spacing:18.709763px;}
.ls12{letter-spacing:25.884255px;}
.ls6{letter-spacing:26.849392px;}
.ls1c{letter-spacing:29.498693px;}
.ls28{letter-spacing:31.048988px;}
.ls23{letter-spacing:31.948710px;}
.ls35{letter-spacing:32.744055px;}
.ls2d{letter-spacing:32.771221px;}
.ls47{letter-spacing:33.358704px;}
.ls17{letter-spacing:33.477380px;}
.ls42{letter-spacing:33.868081px;}
.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;}
}
.ws103{word-spacing:-33.981353px;}
.ws7c{word-spacing:-33.589344px;}
.ws10e{word-spacing:-33.470271px;}
.wscd{word-spacing:-32.880824px;}
.wsdd{word-spacing:-32.853566px;}
.wsad{word-spacing:-32.055562px;}
.wsbe{word-spacing:-31.152831px;}
.ws92{word-spacing:-29.597350px;}
.ws4a{word-spacing:-26.939189px;}
.ws67{word-spacing:-25.970824px;}
.ws113{word-spacing:-21.519300px;}
.ws46{word-spacing:-17.959505px;}
.ws63{word-spacing:-17.313926px;}
.wsf0{word-spacing:-16.851877px;}
.ws15{word-spacing:-14.943900px;}
.ws100{word-spacing:-5.663559px;}
.wsfe{word-spacing:-5.663474px;}
.ws78{word-spacing:-5.598224px;}
.ws10b{word-spacing:-5.578379px;}
.ws109{word-spacing:-5.578295px;}
.ws101{word-spacing:-5.572856px;}
.ws10c{word-spacing:-5.489040px;}
.wsca{word-spacing:-5.480137px;}
.wsc8{word-spacing:-5.480055px;}
.wsda{word-spacing:-5.475594px;}
.wscb{word-spacing:-5.392372px;}
.wsaa{word-spacing:-5.342594px;}
.wsbb{word-spacing:-5.192139px;}
.wsb9{word-spacing:-5.192060px;}
.wsbc{word-spacing:-5.108986px;}
.ws8f{word-spacing:-4.932892px;}
.ws8d{word-spacing:-4.932817px;}
.ws90{word-spacing:-4.853891px;}
.ws47{word-spacing:-4.489865px;}
.ws45{word-spacing:-4.489797px;}
.ws49{word-spacing:-4.417959px;}
.ws64{word-spacing:-4.328471px;}
.ws62{word-spacing:-4.328406px;}
.ws66{word-spacing:-4.259150px;}
.ws81{word-spacing:-3.586536px;}
.wse5{word-spacing:-3.526760px;}
.wse8{word-spacing:-3.466985px;}
.ws12{word-spacing:-3.347434px;}
.ws60{word-spacing:-3.168107px;}
.ws27{word-spacing:-3.048556px;}
.wsf3{word-spacing:-2.853542px;}
.wsed{word-spacing:-2.808646px;}
.wseb{word-spacing:-2.808604px;}
.wsee{word-spacing:-2.763665px;}
.wsc3{word-spacing:-2.749678px;}
.ws9b{word-spacing:-2.630126px;}
.ws1a{word-spacing:-2.570351px;}
.ws11d{word-spacing:-2.468725px;}
.wse2{word-spacing:-2.450800px;}
.ws87{word-spacing:-2.391024px;}
.ws11f{word-spacing:-2.385040px;}
.ws2{word-spacing:-2.331248px;}
.ws80{word-spacing:-2.271473px;}
.ws121{word-spacing:-2.175826px;}
.wsfc{word-spacing:-2.151922px;}
.wsa4{word-spacing:-1.972595px;}
.ws122{word-spacing:-1.924769px;}
.ws11{word-spacing:-1.912819px;}
.ws1f{word-spacing:-1.853044px;}
.ws39{word-spacing:-1.793268px;}
.ws82{word-spacing:-1.733492px;}
.ws3b{word-spacing:-1.673717px;}
.wsc1{word-spacing:-1.613941px;}
.ws126{word-spacing:-1.464498px;}
.ws21{word-spacing:-1.434614px;}
.wsb1{word-spacing:-1.374839px;}
.ws9{word-spacing:-1.315063px;}
.ws32{word-spacing:-1.255288px;}
.ws12c{word-spacing:-1.046070px;}
.wsa5{word-spacing:-1.016185px;}
.ws11b{word-spacing:-0.962384px;}
.ws9a{word-spacing:-0.956410px;}
.ws14{word-spacing:-0.896634px;}
.ws5b{word-spacing:-0.836858px;}
.ws128{word-spacing:-0.836856px;}
.ws33{word-spacing:-0.777083px;}
.wsf9{word-spacing:-0.717307px;}
.ws9c{word-spacing:-0.657532px;}
.wsd6{word-spacing:-0.597756px;}
.ws134{word-spacing:-0.585799px;}
.ws114{word-spacing:-0.537980px;}
.wsb7{word-spacing:-0.478205px;}
.wsa3{word-spacing:-0.418429px;}
.ws71{word-spacing:-0.358654px;}
.ws12f{word-spacing:-0.334742px;}
.ws30{word-spacing:-0.298878px;}
.ws2d{word-spacing:-0.239102px;}
.ws98{word-spacing:-0.179327px;}
.ws12b{word-spacing:-0.125528px;}
.wsd2{word-spacing:-0.059776px;}
.ws115{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.wsea{word-spacing:0.044896px;}
.ws74{word-spacing:0.059776px;}
.ws61{word-spacing:0.069191px;}
.ws44{word-spacing:0.071770px;}
.ws8c{word-spacing:0.078852px;}
.wsb8{word-spacing:0.082996px;}
.wsa7{word-spacing:0.085401px;}
.wsd7{word-spacing:0.087527px;}
.wsc7{word-spacing:0.087600px;}
.ws108{word-spacing:0.089170px;}
.ws75{word-spacing:0.089488px;}
.wsfd{word-spacing:0.090532px;}
.ws6f{word-spacing:0.119551px;}
.ws85{word-spacing:0.179327px;}
.ws12e{word-spacing:0.292900px;}
.ws3{word-spacing:0.298878px;}
.ws6c{word-spacing:0.358654px;}
.ws17{word-spacing:0.382565px;}
.wse1{word-spacing:0.418429px;}
.ws6{word-spacing:0.478205px;}
.ws7f{word-spacing:0.537980px;}
.ws5f{word-spacing:0.597756px;}
.wsa2{word-spacing:0.657532px;}
.ws136{word-spacing:0.711328px;}
.ws13{word-spacing:0.777083px;}
.ws2c{word-spacing:0.836858px;}
.ws36{word-spacing:0.896634px;}
.ws20{word-spacing:0.956410px;}
.ws40{word-spacing:1.016185px;}
.wsf7{word-spacing:1.135736px;}
.wsc2{word-spacing:1.195512px;}
.wsc4{word-spacing:1.255288px;}
.ws1c{word-spacing:1.315063px;}
.ws11e{word-spacing:1.422655px;}
.ws12a{word-spacing:1.464498px;}
.ws3a{word-spacing:1.554166px;}
.wse6{word-spacing:1.613941px;}
.ws119{word-spacing:1.631869px;}
.ws35{word-spacing:1.673717px;}
.wsb6{word-spacing:1.733492px;}
.ws96{word-spacing:1.793268px;}
.ws132{word-spacing:1.841083px;}
.ws23{word-spacing:1.853044px;}
.ws5a{word-spacing:1.912819px;}
.ws107{word-spacing:2.092146px;}
.wsa0{word-spacing:2.151922px;}
.ws116{word-spacing:2.175826px;}
.ws24{word-spacing:2.211697px;}
.ws118{word-spacing:2.217668px;}
.ws99{word-spacing:2.331248px;}
.ws53{word-spacing:2.510575px;}
.ws29{word-spacing:2.630126px;}
.ws73{word-spacing:2.689902px;}
.ws7{word-spacing:2.749678px;}
.ws133{word-spacing:2.761625px;}
.ws1d{word-spacing:2.809453px;}
.wsc6{word-spacing:2.869229px;}
.ws51{word-spacing:2.988780px;}
.ws8{word-spacing:3.048556px;}
.ws50{word-spacing:3.108331px;}
.ws1b{word-spacing:3.168107px;}
.ws127{word-spacing:3.221896px;}
.wsb4{word-spacing:3.227882px;}
.ws43{word-spacing:3.287658px;}
.ws123{word-spacing:3.347424px;}
.wsa{word-spacing:3.347434px;}
.ws125{word-spacing:3.389267px;}
.wse9{word-spacing:3.466985px;}
.ws120{word-spacing:3.514795px;}
.wsd5{word-spacing:3.526760px;}
.ws2b{word-spacing:3.586536px;}
.ws6d{word-spacing:3.646312px;}
.wsd{word-spacing:3.765863px;}
.ws129{word-spacing:3.807695px;}
.ws9f{word-spacing:3.825638px;}
.ws83{word-spacing:3.885414px;}
.ws34{word-spacing:3.945190px;}
.ws59{word-spacing:4.004965px;}
.ws1e{word-spacing:4.064741px;}
.ws130{word-spacing:4.100594px;}
.ws9d{word-spacing:4.124516px;}
.ws10{word-spacing:4.244068px;}
.wse0{word-spacing:4.483170px;}
.ws12d{word-spacing:4.519022px;}
.ws88{word-spacing:4.542946px;}
.ws124{word-spacing:4.602708px;}
.ws52{word-spacing:4.602721px;}
.ws2f{word-spacing:4.662497px;}
.ws54{word-spacing:4.722272px;}
.ws11c{word-spacing:4.728236px;}
.ws8a{word-spacing:4.782048px;}
.wsb3{word-spacing:4.841824px;}
.ws131{word-spacing:4.853765px;}
.wsd1{word-spacing:4.961375px;}
.ws112{word-spacing:5.080926px;}
.wse{word-spacing:5.140702px;}
.wse4{word-spacing:5.200477px;}
.wsf8{word-spacing:5.260253px;}
.wsa8{word-spacing:5.342674px;}
.wse7{word-spacing:5.379804px;}
.wsab{word-spacing:5.428156px;}
.ws41{word-spacing:5.439580px;}
.wsd8{word-spacing:5.475677px;}
.ws5d{word-spacing:5.499355px;}
.ws7a{word-spacing:5.508737px;}
.ws9e{word-spacing:5.559131px;}
.wsec{word-spacing:5.561091px;}
.wsdb{word-spacing:5.563287px;}
.wsef{word-spacing:5.572368px;}
.ws76{word-spacing:5.598308px;}
.wsf2{word-spacing:5.617264px;}
.wsf4{word-spacing:5.617307px;}
.ws5c{word-spacing:5.618906px;}
.wsb5{word-spacing:5.678682px;}
.ws135{word-spacing:5.690621px;}
.ws22{word-spacing:5.738458px;}
.wsb{word-spacing:5.917784px;}
.ws11a{word-spacing:5.941678px;}
.ws26{word-spacing:5.977560px;}
.wsd4{word-spacing:6.037336px;}
.ws3c{word-spacing:6.097111px;}
.ws3d{word-spacing:6.216662px;}
.ws42{word-spacing:6.276438px;}
.ws5{word-spacing:6.336214px;}
.ws8b{word-spacing:6.395989px;}
.ws57{word-spacing:6.515540px;}
.ws84{word-spacing:6.635092px;}
.ws3e{word-spacing:6.694867px;}
.ws58{word-spacing:6.754643px;}
.ws97{word-spacing:6.874194px;}
.wsfb{word-spacing:6.933970px;}
.ws4{word-spacing:7.053521px;}
.ws2e{word-spacing:7.471950px;}
.wscf{word-spacing:7.591501px;}
.ws25{word-spacing:7.770828px;}
.ws72{word-spacing:7.830604px;}
.ws6e{word-spacing:8.009930px;}
.ws2a{word-spacing:8.069706px;}
.ws55{word-spacing:8.129482px;}
.ws38{word-spacing:8.189257px;}
.ws86{word-spacing:8.428360px;}
.wsf{word-spacing:8.488135px;}
.ws65{word-spacing:8.570329px;}
.ws31{word-spacing:8.607686px;}
.ws28{word-spacing:8.727238px;}
.ws5e{word-spacing:8.846789px;}
.ws48{word-spacing:8.889887px;}
.wsb2{word-spacing:8.906564px;}
.ws4d{word-spacing:9.757648px;}
.ws8e{word-spacing:9.767076px;}
.ws91{word-spacing:9.786882px;}
.wsba{word-spacing:10.280382px;}
.wsbd{word-spacing:10.301229px;}
.ws117{word-spacing:10.326098px;}
.wsa9{word-spacing:10.578282px;}
.wsac{word-spacing:10.599732px;}
.wsd9{word-spacing:10.841622px;}
.wsc9{word-spacing:10.850617px;}
.wsdc{word-spacing:10.863607px;}
.wscc{word-spacing:10.872620px;}
.ws10a{word-spacing:11.045134px;}
.ws10d{word-spacing:11.067531px;}
.ws77{word-spacing:11.084427px;}
.ws79{word-spacing:11.196392px;}
.ws7b{word-spacing:11.196476px;}
.wsff{word-spacing:11.213790px;}
.ws102{word-spacing:11.236529px;}
.ws1{word-spacing:11.907329px;}
.ws4c{word-spacing:16.772534px;}
.wsb0{word-spacing:16.778534px;}
.ws19{word-spacing:17.932800px;}
.wsc5{word-spacing:18.907966px;}
.wsa6{word-spacing:19.177966px;}
.ws37{word-spacing:20.185966px;}
.ws106{word-spacing:20.191966px;}
.ws70{word-spacing:20.335966px;}
.ws89{word-spacing:20.767966px;}
.ws18{word-spacing:21.519300px;}
.wsd3{word-spacing:23.011966px;}
.ws3f{word-spacing:24.145966px;}
.ws56{word-spacing:24.163966px;}
.wsfa{word-spacing:25.039966px;}
.ws111{word-spacing:25.315966px;}
.wse3{word-spacing:25.417966px;}
.wsc{word-spacing:26.107966px;}
.wsa1{word-spacing:26.155966px;}
.ws16{word-spacing:37.001096px;}
.wsf1{word-spacing:53.364278px;}
.ws68{word-spacing:82.240944px;}
.ws4b{word-spacing:85.307432px;}
.wsd0{word-spacing:93.444984px;}
.ws93{word-spacing:93.724943px;}
.wsbf{word-spacing:98.650632px;}
.wsae{word-spacing:101.509280px;}
.wsde{word-spacing:104.036294px;}
.wsce{word-spacing:104.122610px;}
.ws10f{word-spacing:105.989192px;}
.ws7d{word-spacing:106.366257px;}
.ws104{word-spacing:107.607617px;}
.wsf5{word-spacing:144.495454px;}
.wsf6{word-spacing:193.578661px;}
.wsc0{word-spacing:313.778419px;}
.wsaf{word-spacing:488.668084px;}
.ws105{word-spacing:526.931345px;}
.wsdf{word-spacing:603.359506px;}
.ws110{word-spacing:603.457869px;}
.ws7e{word-spacing:608.867842px;}
.ws94{word-spacing:701.821010px;}
.ws95{word-spacing:772.839197px;}
.ws4e{word-spacing:1097.339199px;}
.ws4f{word-spacing:1204.653386px;}
.ws6a{word-spacing:1253.933319px;}
.ws69{word-spacing:1293.967118px;}
.ws6b{word-spacing:1339.410889px;}
._4e{margin-left:-9.553535px;}
._36{margin-left:-7.377236px;}
._6{margin-left:-6.360119px;}
._20{margin-left:-5.000754px;}
._4{margin-left:-3.885414px;}
._1{margin-left:-2.630126px;}
._0{margin-left:-1.291158px;}
._1f{width:2.515944px;}
._18{width:3.597680px;}
._17{width:4.739383px;}
._1e{width:5.819032px;}
._7f{width:9.418079px;}
._66{width:10.460730px;}
._41{width:12.253997px;}
._11{width:13.592965px;}
._80{width:14.644980px;}
._b{width:15.685150px;}
._15{width:17.155597px;}
._8{width:18.303299px;}
._2{width:19.558586px;}
._40{width:20.682357px;}
._d{width:21.877561px;}
._21{width:23.073382px;}
._3{width:24.161307px;}
._a{width:25.882834px;}
._7{width:27.496776px;}
._13{width:29.887800px;}
._10{width:31.202863px;}
._9{width:32.936356px;}
._16{width:34.849175px;}
._12{width:35.865600px;}
._5{width:37.479301px;}
._14{width:38.543297px;}
._5f{width:41.006062px;}
._e{width:42.273290px;}
._f{width:45.429457px;}
._6e{width:68.868006px;}
._6c{width:83.694217px;}
._67{width:90.831619px;}
._75{width:93.864957px;}
._6b{width:97.010641px;}
._6a{width:104.818677px;}
._6f{width:110.997699px;}
._74{width:114.143383px;}
._71{width:125.040930px;}
._6d{width:128.242787px;}
._72{width:134.477981px;}
._27{width:139.896175px;}
._69{width:142.286018px;}
._1b{width:145.112433px;}
._1a{width:146.908378px;}
._51{width:154.518042px;}
._70{width:156.329249px;}
._44{width:158.350021px;}
._3b{width:159.431061px;}
._24{width:161.538528px;}
._26{width:163.608811px;}
._56{width:167.809916px;}
._4d{width:169.056030px;}
._42{width:172.779480px;}
._5a{width:177.118039px;}
._7b{width:179.651788px;}
._32{width:180.934601px;}
._77{width:183.046220px;}
._38{width:184.095519px;}
._49{width:185.294827px;}
._58{width:192.243218px;}
._53{width:193.770609px;}
._73{width:195.257086px;}
._43{width:198.855793px;}
._61{width:204.349183px;}
._28{width:206.980088px;}
._3a{width:208.759978px;}
._76{width:211.364013px;}
._62{width:215.957443px;}
._7c{width:217.333628px;}
._50{width:219.731301px;}
._60{width:228.248775px;}
._3e{width:230.662017px;}
._23{width:233.383759px;}
._30{width:236.804877px;}
._46{width:238.488926px;}
._78{width:239.681807px;}
._2f{width:248.097734px;}
._33{width:249.120970px;}
._31{width:255.786423px;}
._5e{width:259.100894px;}
._7d{width:260.844981px;}
._2d{width:268.192047px;}
._63{width:270.406883px;}
._7a{width:272.542523px;}
._57{width:273.625699px;}
._55{width:283.179234px;}
._5d{width:286.501580px;}
._79{width:288.736873px;}
._2b{width:289.834401px;}
._7e{width:301.650713px;}
._35{width:305.103210px;}
._4b{width:308.699520px;}
._5b{width:313.902267px;}
._4c{width:317.991176px;}
._3c{width:322.611119px;}
._64{width:324.654116px;}
._59{width:329.356254px;}
._4f{width:335.100619px;}
._37{width:336.423216px;}
._48{width:344.281194px;}
._39{width:347.275578px;}
._52{width:351.507777px;}
._65{width:352.540799px;}
._54{width:357.219129px;}
._34{width:361.256964px;}
._5c{width:369.632822px;}
._25{width:376.490386px;}
._4a{width:379.862868px;}
._1d{width:380.944266px;}
._22{width:388.610104px;}
._19{width:392.773379px;}
._45{width:394.715278px;}
._3d{width:396.604495px;}
._2a{width:397.865648px;}
._47{width:403.690835px;}
._2c{width:419.775093px;}
._29{width:441.417447px;}
._3f{width:445.933412px;}
._1c{width:447.549730px;}
._2e{width:463.059801px;}
._68{width:541.222688px;}
._c{width:1105.899188px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs1e{font-size:41.842800px;}
.fs3{font-size:44.233800px;}
.fs19{font-size:44.938452px;}
.fs2{font-size:47.820600px;}
.fs18{font-size:56.172925px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:69.255706px;}
.fs5{font-size:71.731200px;}
.fs7{font-size:71.838018px;}
.fs9{font-size:78.690710px;}
.fsf{font-size:78.926466px;}
.fs13{font-size:83.074425px;}
.fs11{font-size:85.481714px;}
.fs0{font-size:86.077200px;}
.fsa{font-size:86.569415px;}
.fs17{font-size:87.609730px;}
.fs15{font-size:87.682418px;}
.fs1d{font-size:89.254281px;}
.fsd{font-size:89.571809px;}
.fs6{font-size:89.797297px;}
.fs1b{font-size:90.617168px;}
.fs8{font-size:98.363141px;}
.fse{font-size:98.657835px;}
.fs12{font-size:103.842770px;}
.fs10{font-size:106.851874px;}
.fs16{font-size:109.511888px;}
.fs14{font-size:109.602747px;}
.fs1c{font-size:111.567571px;}
.fsc{font-size:111.964481px;}
.fs1a{font-size:113.271175px;}
.y0{bottom:0.000000px;}
.y23{bottom:134.047500px;}
.yc9{bottom:178.879500px;}
.yac{bottom:181.978500px;}
.y177{bottom:183.094500px;}
.y19a{bottom:183.253500px;}
.y158{bottom:187.282500px;}
.y10c{bottom:190.647000px;}
.y144{bottom:190.711500px;}
.y1ee{bottom:192.328500px;}
.y8c{bottom:193.533000px;}
.yc8{bottom:196.812000px;}
.yab{bottom:199.911000px;}
.y176{bottom:201.027000px;}
.y199{bottom:201.186000px;}
.y218{bottom:204.283500px;}
.y157{bottom:205.216500px;}
.y1ed{bottom:205.779000px;}
.ye2{bottom:206.929500px;}
.y10b{bottom:208.579500px;}
.y143{bottom:208.644000px;}
.y22{bottom:209.493000px;}
.y8b{bottom:211.465500px;}
.yc7{bottom:214.744500px;}
.y217{bottom:217.734000px;}
.yaa{bottom:217.843500px;}
.y128{bottom:218.121000px;}
.y198{bottom:219.118500px;}
.y10a{bottom:226.513500px;}
.y142{bottom:226.576500px;}
.y1c4{bottom:228.022500px;}
.y21{bottom:228.028500px;}
.y8a{bottom:229.398000px;}
.y1ec{bottom:230.896500px;}
.yc6{bottom:232.677000px;}
.y156{bottom:233.235000px;}
.y67{bottom:233.901000px;}
.ya9{bottom:235.777500px;}
.y127{bottom:236.053500px;}
.y175{bottom:236.245500px;}
.y197{bottom:237.052500px;}
.y20{bottom:238.402500px;}
.y216{bottom:243.138000px;}
.y1eb{bottom:244.345500px;}
.y109{bottom:244.446000px;}
.y141{bottom:244.509000px;}
.yc5{bottom:250.609500px;}
.y1d1{bottom:251.266500px;}
.y66{bottom:251.833500px;}
.ya8{bottom:253.710000px;}
.y126{bottom:253.986000px;}
.y196{bottom:254.985000px;}
.y215{bottom:256.588500px;}
.y1f{bottom:256.939500px;}
.y89{bottom:257.418000px;}
.ye1{bottom:258.660877px;}
.y48{bottom:258.867000px;}
.y108{bottom:262.378500px;}
.y140{bottom:262.441500px;}
.yc4{bottom:268.543500px;}
.y1ea{bottom:269.463000px;}
.y65{bottom:269.766000px;}
.y214{bottom:270.037500px;}
.ya7{bottom:271.642500px;}
.y125{bottom:271.920000px;}
.y195{bottom:272.917500px;}
.y155{bottom:273.024000px;}
.y47{bottom:276.799500px;}
.y1c3{bottom:279.754685px;}
.y107{bottom:280.311000px;}
.y13f{bottom:280.374000px;}
.y1e9{bottom:282.913500px;}
.yc3{bottom:286.476000px;}
.ye0{bottom:288.169523px;}
.y174{bottom:289.090983px;}
.ya6{bottom:289.575000px;}
.y124{bottom:289.852500px;}
.y194{bottom:290.850000px;}
.y154{bottom:290.956500px;}
.y46{bottom:294.732000px;}
.y213{bottom:295.441500px;}
.y1e8{bottom:296.362500px;}
.y88{bottom:297.207000px;}
.y106{bottom:298.243500px;}
.y13e{bottom:298.308000px;}
.y1d0{bottom:302.997717px;}
.yc2{bottom:304.408500px;}
.y64{bottom:304.984500px;}
.ya5{bottom:307.507500px;}
.y123{bottom:307.785000px;}
.y193{bottom:308.782500px;}
.y212{bottom:308.892000px;}
.y1c2{bottom:309.263331px;}
.y45{bottom:312.664500px;}
.y87{bottom:315.139500px;}
.y105{bottom:316.176000px;}
.y13d{bottom:316.240500px;}
.y1e{bottom:317.929500px;}
.ydf{bottom:318.663025px;}
.y1e7{bottom:321.480000px;}
.y173{bottom:321.944219px;}
.yc1{bottom:322.341000px;}
.ya4{bottom:325.440000px;}
.y122{bottom:325.717500px;}
.y153{bottom:326.175000px;}
.y192{bottom:326.715000px;}
.y44{bottom:330.597000px;}
.y1cf{bottom:332.506363px;}
.y86{bottom:333.072000px;}
.y104{bottom:334.110000px;}
.y13c{bottom:334.173000px;}
.y211{bottom:334.296000px;}
.y1e6{bottom:334.930500px;}
.y1d{bottom:335.863500px;}
.y1c1{bottom:339.756833px;}
.yc0{bottom:340.273500px;}
.ya3{bottom:343.374000px;}
.y121{bottom:343.650000px;}
.y191{bottom:344.649000px;}
.y210{bottom:347.746500px;}
.yde{bottom:348.171671px;}
.y1e5{bottom:348.379500px;}
.y43{bottom:348.531000px;}
.y1b4{bottom:350.361000px;}
.y85{bottom:351.004500px;}
.y13b{bottom:352.105500px;}
.y172{bottom:354.800204px;}
.y63{bottom:355.860575px;}
.ybf{bottom:358.207500px;}
.y20f{bottom:361.195500px;}
.ya2{bottom:361.306500px;}
.y120{bottom:361.582500px;}
.y103{bottom:362.130000px;}
.y190{bottom:362.581500px;}
.y1ce{bottom:362.999864px;}
.y1c{bottom:364.270500px;}
.y42{bottom:366.463500px;}
.y84{bottom:368.938500px;}
.y1e4{bottom:373.498500px;}
.ybe{bottom:376.140000px;}
.ydd{bottom:378.665172px;}
.y152{bottom:379.030372px;}
.ya1{bottom:379.239000px;}
.y11f{bottom:379.516500px;}
.y1c0{bottom:379.585500px;}
.y13a{bottom:380.125500px;}
.y18f{bottom:380.514000px;}
.y1b{bottom:382.203000px;}
.y62{bottom:383.696331px;}
.y20e{bottom:386.601000px;}
.y83{bottom:386.871000px;}
.y1e3{bottom:386.947500px;}
.y171{bottom:387.653441px;}
.ybd{bottom:394.072500px;}
.y41{bottom:394.483500px;}
.ya0{bottom:397.171500px;}
.y11e{bottom:397.449000px;}
.y1bf{bottom:397.518000px;}
.y18e{bottom:398.446500px;}
.y20d{bottom:400.050000px;}
.y1a{bottom:400.137000px;}
.y102{bottom:401.917500px;}
.y1cd{bottom:402.829500px;}
.y82{bottom:404.803500px;}
.y1b3{bottom:409.164000px;}
.y61{bottom:410.635250px;}
.y151{bottom:411.913617px;}
.y20c{bottom:413.499000px;}
.y9f{bottom:415.104000px;}
.y11d{bottom:415.381500px;}
.y18d{bottom:416.379000px;}
.y1e2{bottom:417.358500px;}
.y19{bottom:418.069500px;}
.ydc{bottom:418.494000px;}
.y101{bottom:419.850000px;}
.y1cc{bottom:420.762000px;}
.y170{bottom:421.600411px;}
.ybc{bottom:422.092500px;}
.y81{bottom:422.736000px;}
.y139{bottom:427.545000px;}
.y1be{bottom:432.736500px;}
.y9e{bottom:433.036500px;}
.y11c{bottom:433.314000px;}
.y18c{bottom:434.313000px;}
.y18{bottom:436.002000px;}
.ydb{bottom:436.426500px;}
.y40{bottom:437.260500px;}
.y100{bottom:437.782500px;}
.y60{bottom:438.473259px;}
.y20b{bottom:438.904500px;}
.y80{bottom:440.668500px;}
.y150{bottom:444.794111px;}
.y18b{bottom:452.245500px;}
.y20a{bottom:452.353500px;}
.y17{bottom:453.934500px;}
.yda{bottom:454.359000px;}
.y16f{bottom:454.456396px;}
.y3f{bottom:455.193000px;}
.yff{bottom:455.716500px;}
.y1cb{bottom:455.980500px;}
.y7f{bottom:458.601000px;}
.y1e1{bottom:459.724500px;}
.y1b2{bottom:460.895377px;}
.y5f{bottom:465.412178px;}
.y18a{bottom:470.178000px;}
.y16{bottom:471.867000px;}
.y3e{bottom:473.125500px;}
.yfe{bottom:473.649000px;}
.y7e{bottom:476.535000px;}
.y14f{bottom:477.674605px;}
.y209{bottom:477.759000px;}
.y138{bottom:479.276217px;}
.ybb{bottom:479.908500px;}
.y9d{bottom:480.457500px;}
.y11b{bottom:480.733500px;}
.y1bd{bottom:485.958713px;}
.y189{bottom:488.110500px;}
.y16e{bottom:488.403366px;}
.yd9{bottom:489.577500px;}
.y15{bottom:489.801000px;}
.y1b1{bottom:490.404023px;}
.y3d{bottom:491.058000px;}
.y208{bottom:491.208000px;}
.yfd{bottom:491.581500px;}
.y5e{bottom:493.250188px;}
.y7d{bottom:494.467500px;}
.y207{bottom:504.657000px;}
.y188{bottom:506.043000px;}
.y14{bottom:507.733500px;}
.y137{bottom:508.784863px;}
.y3c{bottom:508.990500px;}
.y1ca{bottom:509.031296px;}
.yfc{bottom:509.514000px;}
.y1e0{bottom:510.031500px;}
.y14e{bottom:510.555099px;}
.y7c{bottom:512.400000px;}
.y1bc{bottom:519.939724px;}
.y1b0{bottom:520.897525px;}
.y187{bottom:523.975500px;}
.y13{bottom:525.666000px;}
.y3b{bottom:526.924500px;}
.yfb{bottom:527.446500px;}
.y206{bottom:530.062500px;}
.y7b{bottom:530.332500px;}
.yba{bottom:531.638217px;}
.y9c{bottom:532.188877px;}
.y11a{bottom:532.464717px;}
.y16d{bottom:534.063000px;}
.y5d{bottom:534.769500px;}
.y136{bottom:539.278364px;}
.yd8{bottom:541.339551px;}
.y186{bottom:541.909500px;}
.y1c9{bottom:542.504031px;}
.y1df{bottom:543.430500px;}
.y14d{bottom:543.435593px;}
.y205{bottom:543.511500px;}
.y12{bottom:543.598500px;}
.y3a{bottom:544.857000px;}
.yfa{bottom:545.379000px;}
.y7a{bottom:548.265000px;}
.y1af{bottom:550.406171px;}
.y16c{bottom:551.995500px;}
.y5c{bottom:552.702000px;}
.y1bb{bottom:553.920736px;}
.y204{bottom:556.962000px;}
.y185{bottom:559.842000px;}
.yb9{bottom:561.149331px;}
.y11{bottom:561.531000px;}
.y119{bottom:561.975831px;}
.y9b{bottom:562.682379px;}
.y39{bottom:562.789500px;}
.yf9{bottom:563.313000px;}
.y79{bottom:566.197500px;}
.y16b{bottom:569.928000px;}
.y5b{bottom:570.634500px;}
.yd7{bottom:570.936604px;}
.y1c8{bottom:575.973966px;}
.y14c{bottom:576.316087px;}
.y184{bottom:577.774500px;}
.y10{bottom:579.463500px;}
.y135{bottom:580.456500px;}
.y38{bottom:580.722000px;}
.y1ae{bottom:580.899672px;}
.yf8{bottom:581.245500px;}
.y203{bottom:582.366000px;}
.y78{bottom:584.131500px;}
.y16a{bottom:587.862000px;}
.y1ba{bottom:587.904590px;}
.y5a{bottom:588.568500px;}
.yb8{bottom:591.640364px;}
.y9a{bottom:592.191025px;}
.y118{bottom:592.466864px;}
.y1de{bottom:593.737500px;}
.y183{bottom:595.707000px;}
.y202{bottom:595.815000px;}
.yf{bottom:597.397500px;}
.y37{bottom:598.654500px;}
.yf7{bottom:599.178000px;}
.yd6{bottom:601.518988px;}
.y77{bottom:602.064000px;}
.y169{bottom:605.794500px;}
.y59{bottom:606.501000px;}
.y14b{bottom:609.199331px;}
.y1c7{bottom:610.558166px;}
.y1dd{bottom:611.670000px;}
.y182{bottom:613.639500px;}
.ye{bottom:615.330000px;}
.y36{bottom:616.587000px;}
.yf6{bottom:617.110500px;}
.y76{bottom:619.996500px;}
.y1ad{bottom:620.544000px;}
.y201{bottom:621.220500px;}
.y99{bottom:621.699671px;}
.y1b9{bottom:621.885601px;}
.y168{bottom:623.727000px;}
.y58{bottom:624.433500px;}
.yb7{bottom:630.606000px;}
.yd5{bottom:631.118517px;}
.y181{bottom:631.572000px;}
.y134{bottom:632.735265px;}
.yd{bottom:633.262500px;}
.y117{bottom:633.645000px;}
.y35{bottom:634.521000px;}
.y200{bottom:634.669500px;}
.yf5{bottom:635.043000px;}
.y75{bottom:637.929000px;}
.y1ac{bottom:638.476500px;}
.y167{bottom:641.659500px;}
.y14a{bottom:642.079825px;}
.y57{bottom:642.366000px;}
.y1c6{bottom:644.030901px;}
.y1dc{bottom:645.070500px;}
.yb6{bottom:648.538500px;}
.y180{bottom:649.506000px;}
.yc{bottom:651.195000px;}
.y98{bottom:652.193172px;}
.y34{bottom:652.453500px;}
.yf4{bottom:652.975500px;}
.y74{bottom:655.861500px;}
.y1b8{bottom:655.866613px;}
.y166{bottom:659.592000px;}
.y1ff{bottom:660.075000px;}
.y56{bottom:660.298500px;}
.yd4{bottom:660.715571px;}
.y133{bottom:663.890389px;}
.y17f{bottom:667.438500px;}
.yb{bottom:669.127500px;}
.y33{bottom:670.386000px;}
.yf3{bottom:670.909500px;}
.y1fe{bottom:673.524000px;}
.y73{bottom:673.794000px;}
.y149{bottom:676.054960px;}
.y165{bottom:677.526000px;}
.y55{bottom:678.231000px;}
.y1c5{bottom:678.615101px;}
.yb5{bottom:682.893000px;}
.y17e{bottom:685.371000px;}
.y1ab{bottom:685.530000px;}
.y116{bottom:686.225445px;}
.y1fd{bottom:686.974500px;}
.ya{bottom:687.060000px;}
.y32{bottom:688.318500px;}
.yf2{bottom:688.842000px;}
.yd3{bottom:690.312624px;}
.y1b7{bottom:690.981746px;}
.y72{bottom:691.728000px;}
.y97{bottom:693.369000px;}
.y132{bottom:695.042907px;}
.y1db{bottom:695.376000px;}
.y164{bottom:695.458500px;}
.y54{bottom:696.165000px;}
.y17d{bottom:703.303500px;}
.y9{bottom:704.994000px;}
.y31{bottom:706.251000px;}
.yf1{bottom:706.774500px;}
.y148{bottom:708.938205px;}
.y71{bottom:709.660500px;}
.y1fc{bottom:712.378500px;}
.y1da{bottom:713.310000px;}
.y163{bottom:713.391000px;}
.y53{bottom:714.097500px;}
.y115{bottom:718.280686px;}
.yd2{bottom:720.897483px;}
.y17c{bottom:721.236000px;}
.y8{bottom:722.926500px;}
.y30{bottom:724.183500px;}
.yf0{bottom:724.707000px;}
.y1b6{bottom:724.962758px;}
.y1fb{bottom:725.827500px;}
.y131{bottom:726.195426px;}
.y70{bottom:727.593000px;}
.y162{bottom:731.323500px;}
.y52{bottom:732.030000px;}
.y1aa{bottom:733.042515px;}
.yb4{bottom:735.984115px;}
.y17b{bottom:739.168500px;}
.y7{bottom:740.859000px;}
.y2f{bottom:742.117500px;}
.yef{bottom:742.639500px;}
.y147{bottom:742.913340px;}
.y96{bottom:743.922541px;}
.y6f{bottom:745.525500px;}
.y1d9{bottom:746.709000px;}
.y161{bottom:749.256000px;}
.y1a9{bottom:749.894223px;}
.y51{bottom:749.962500px;}
.y114{bottom:750.335926px;}
.yd1{bottom:750.494537px;}
.y1fa{bottom:751.233000px;}
.y17a{bottom:757.102500px;}
.y130{bottom:757.347944px;}
.y2e{bottom:760.050000px;}
.y1b5{bottom:760.077891px;}
.yee{bottom:760.573500px;}
.y6e{bottom:763.458000px;}
.y1f9{bottom:764.682000px;}
.y1a8{bottom:766.745931px;}
.y160{bottom:767.188500px;}
.y6{bottom:767.758500px;}
.y50{bottom:767.895000px;}
.yb3{bottom:769.573123px;}
.y95{bottom:770.757705px;}
.y179{bottom:775.035000px;}
.y2d{bottom:777.982500px;}
.yed{bottom:778.506000px;}
.yd0{bottom:781.079396px;}
.y113{bottom:782.391166px;}
.y1a7{bottom:783.597639px;}
.y15f{bottom:785.122500px;}
.y4f{bottom:785.827500px;}
.y12f{bottom:788.500462px;}
.y146{bottom:788.592000px;}
.y1f8{bottom:790.087500px;}
.y6d{bottom:791.478000px;}
.y178{bottom:792.967500px;}
.y2c{bottom:795.915000px;}
.yec{bottom:796.438500px;}
.y94{bottom:796.728268px;}
.y1d8{bottom:797.016000px;}
.y1a6{bottom:800.449348px;}
.y15e{bottom:803.055000px;}
.yb2{bottom:803.162130px;}
.y1f7{bottom:803.536500px;}
.y4e{bottom:803.761500px;}
.y145{bottom:806.526000px;}
.y2b{bottom:813.847500px;}
.yeb{bottom:814.371000px;}
.y112{bottom:814.446407px;}
.y1f6{bottom:816.987000px;}
.y1a5{bottom:817.302465px;}
.y12e{bottom:819.652981px;}
.y15d{bottom:820.987500px;}
.y4d{bottom:821.694000px;}
.y93{bottom:823.565604px;}
.ycf{bottom:824.458500px;}
.y1d7{bottom:830.415000px;}
.y2a{bottom:831.781500px;}
.yea{bottom:832.303500px;}
.y1a4{bottom:834.154174px;}
.yb1{bottom:837.872175px;}
.y6c{bottom:838.899000px;}
.y4c{bottom:839.626500px;}
.yce{bottom:842.391000px;}
.y111{bottom:846.504328px;}
.y92{bottom:849.536168px;}
.y29{bottom:849.714000px;}
.ye9{bottom:850.236000px;}
.y12d{bottom:850.808105px;}
.y1a3{bottom:851.005882px;}
.y1f5{bottom:855.840000px;}
.y4b{bottom:857.559000px;}
.ycd{bottom:860.323500px;}
.y28{bottom:867.646500px;}
.y5{bottom:867.796500px;}
.ye8{bottom:868.170000px;}
.y15c{bottom:868.407000px;}
.y1a2{bottom:868.420018px;}
.y1f4{bottom:869.290500px;}
.yb0{bottom:871.461182px;}
.y4a{bottom:875.491500px;}
.y91{bottom:875.506731px;}
.ycc{bottom:878.256000px;}
.y110{bottom:878.559569px;}
.y1d6{bottom:880.722000px;}
.y12c{bottom:881.960623px;}
.y1a1{bottom:885.271727px;}
.y27{bottom:885.579000px;}
.ye7{bottom:886.102500px;}
.y6b{bottom:890.629628px;}
.y4{bottom:890.959500px;}
.y49{bottom:893.424000px;}
.y1f3{bottom:894.694500px;}
.ycb{bottom:896.188500px;}
.y1d5{bottom:898.654500px;}
.y90{bottom:901.479468px;}
.y1a0{bottom:902.123435px;}
.y26{bottom:903.511500px;}
.ye6{bottom:904.035000px;}
.yaf{bottom:906.171228px;}
.y1f2{bottom:908.145000px;}
.y10f{bottom:911.681976px;}
.y3{bottom:914.122500px;}
.y12b{bottom:914.150256px;}
.y1d4{bottom:916.588500px;}
.y19f{bottom:918.975143px;}
.y15b{bottom:920.138217px;}
.y6a{bottom:920.138274px;}
.y25{bottom:921.444000px;}
.ye5{bottom:921.967500px;}
.y8f{bottom:928.314631px;}
.yca{bottom:932.055000px;}
.y1f1{bottom:933.549000px;}
.y1d3{bottom:934.521000px;}
.y19e{bottom:935.826851px;}
.ye4{bottom:939.900000px;}
.y10e{bottom:943.739898px;}
.y12a{bottom:945.305380px;}
.y1f0{bottom:946.998000px;}
.y24{bottom:949.464000px;}
.y15a{bottom:949.646863px;}
.y69{bottom:949.649388px;}
.yae{bottom:949.987500px;}
.y1d2{bottom:952.453500px;}
.y19d{bottom:953.240988px;}
.y8e{bottom:954.285194px;}
.ye3{bottom:957.832500px;}
.y2{bottom:958.954500px;}
.yad{bottom:967.920000px;}
.y19c{bottom:970.092696px;}
.y1ef{bottom:972.403500px;}
.y10d{bottom:976.862306px;}
.y129{bottom:977.495013px;}
.y159{bottom:980.140364px;}
.y68{bottom:980.140422px;}
.y8d{bottom:981.122530px;}
.y1{bottom:985.852500px;}
.y19b{bottom:987.506833px;}
.h8{height:24.675533px;}
.h6{height:25.787366px;}
.h1c{height:28.787846px;}
.h1e{height:28.997846px;}
.h3{height:32.804932px;}
.h7{height:32.900573px;}
.h1d{height:38.495846px;}
.h19{height:38.646972px;}
.h2{height:41.125613px;}
.h4{height:41.364715px;}
.hc{height:41.484266px;}
.hf{height:41.961802px;}
.h15{height:41.967802px;}
.ha{height:49.637990px;}
.hd{height:52.040387px;}
.h5{height:52.046387px;}
.hb{height:52.128854px;}
.h1{height:59.221114px;}
.h11{height:59.559757px;}
.h9{height:59.565422px;}
.he{height:61.780541px;}
.h10{height:67.673841px;}
.h13{height:67.876590px;}
.h16{height:71.443826px;}
.h14{height:73.514089px;}
.h18{height:75.344179px;}
.h17{height:75.406690px;}
.h1b{height:76.758489px;}
.h12{height:77.031563px;}
.h1a{height:77.930569px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x2c{left:204.163301px;}
.xe{left:206.265120px;}
.x17{left:207.652263px;}
.x7{left:214.045500px;}
.x9{left:216.942000px;}
.xc{left:220.296792px;}
.x8{left:222.172500px;}
.x1f{left:223.369495px;}
.x15{left:225.144958px;}
.x1c{left:227.848679px;}
.x30{left:233.020500px;}
.x1{left:235.434000px;}
.x11{left:245.960913px;}
.xb{left:247.650330px;}
.x13{left:251.401500px;}
.x1b{left:254.109000px;}
.x14{left:255.543000px;}
.x22{left:256.762500px;}
.x24{left:258.016154px;}
.xf{left:259.590000px;}
.x1e{left:261.520500px;}
.x28{left:262.621500px;}
.x10{left:263.733000px;}
.x2d{left:265.365000px;}
.x2{left:266.614500px;}
.x18{left:267.780000px;}
.x1a{left:271.012500px;}
.x21{left:273.667500px;}
.x26{left:279.310500px;}
.x1d{left:281.413500px;}
.x2e{left:282.963000px;}
.x4{left:293.067000px;}
.x5{left:307.503000px;}
.x2b{left:316.200731px;}
.x33{left:321.682500px;}
.x29{left:337.574420px;}
.x2a{left:342.503774px;}
.xd{left:373.356270px;}
.x12{left:380.738472px;}
.x19{left:387.141906px;}
.x3{left:405.975000px;}
.x16{left:415.148320px;}
.x2f{left:417.762833px;}
.x27{left:421.921503px;}
.x25{left:441.341067px;}
.x23{left:450.964500px;}
.xa{left:454.699500px;}
.x20{left:462.335760px;}
.x31{left:482.361000px;}
.x32{left:495.691500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:8.629333pt;}
.v3{vertical-align:15.429333pt;}
.v1{vertical-align:19.290667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls36{letter-spacing:0.003733pt;}
.ls39{letter-spacing:2.446643pt;}
.ls37{letter-spacing:2.476608pt;}
.ls38{letter-spacing:2.496574pt;}
.ls3a{letter-spacing:2.516553pt;}
.ls3{letter-spacing:2.627600pt;}
.ls1{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.658321pt;}
.ls10{letter-spacing:3.816759pt;}
.ls11{letter-spacing:3.847530pt;}
.ls4{letter-spacing:3.959073pt;}
.ls5{letter-spacing:3.990991pt;}
.ls1a{letter-spacing:4.297097pt;}
.ls18{letter-spacing:4.349725pt;}
.ls19{letter-spacing:4.384793pt;}
.lsc{letter-spacing:4.406680pt;}
.ls1b{letter-spacing:4.419882pt;}
.ls26{letter-spacing:4.522930pt;}
.ls24{letter-spacing:4.578324pt;}
.ls25{letter-spacing:4.615234pt;}
.ls27{letter-spacing:4.652168pt;}
.ls21{letter-spacing:4.653993pt;}
.ls1f{letter-spacing:4.710992pt;}
.ls20{letter-spacing:4.748972pt;}
.ls33{letter-spacing:4.769851pt;}
.ls2b{letter-spacing:4.773809pt;}
.ls22{letter-spacing:4.786976pt;}
.ls31{letter-spacing:4.828270pt;}
.ls29{letter-spacing:4.832275pt;}
.ls45{letter-spacing:4.859388pt;}
.ls32{letter-spacing:4.867195pt;}
.ls2a{letter-spacing:4.871233pt;}
.ls16{letter-spacing:4.876675pt;}
.ls34{letter-spacing:4.906145pt;}
.ls2c{letter-spacing:4.910215pt;}
.ls43{letter-spacing:4.918903pt;}
.ls40{letter-spacing:4.933589pt;}
.ls13{letter-spacing:4.936402pt;}
.ls44{letter-spacing:4.958559pt;}
.ls14{letter-spacing:4.976199pt;}
.ls3e{letter-spacing:4.994013pt;}
.ls46{letter-spacing:4.998240pt;}
.ls15{letter-spacing:5.016021pt;}
.ls3f{letter-spacing:5.034274pt;}
.ls41{letter-spacing:5.074561pt;}
.ls2f{letter-spacing:10.679907pt;}
.ls1e{letter-spacing:11.051844pt;}
.ls3d{letter-spacing:11.476915pt;}
.lsa{letter-spacing:11.742585pt;}
.ls30{letter-spacing:12.061388pt;}
.ls2e{letter-spacing:12.114522pt;}
.ls1d{letter-spacing:12.539593pt;}
.lse{letter-spacing:12.858396pt;}
.ls3c{letter-spacing:12.964663pt;}
.lsb{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.602270pt;}
.ls3b{letter-spacing:14.929515pt;}
.lsf{letter-spacing:15.196286pt;}
.lsd{letter-spacing:15.249420pt;}
.ls7{letter-spacing:16.577766pt;}
.ls9{letter-spacing:16.630900pt;}
.ls12{letter-spacing:23.008227pt;}
.ls6{letter-spacing:23.866126pt;}
.ls1c{letter-spacing:26.221060pt;}
.ls28{letter-spacing:27.599101pt;}
.ls23{letter-spacing:28.398854pt;}
.ls35{letter-spacing:29.105826pt;}
.ls2d{letter-spacing:29.129975pt;}
.ls47{letter-spacing:29.652181pt;}
.ls17{letter-spacing:29.757671pt;}
.ls42{letter-spacing:30.104961pt;}
.ws103{word-spacing:-30.205647pt;}
.ws7c{word-spacing:-29.857195pt;}
.ws10e{word-spacing:-29.751352pt;}
.wscd{word-spacing:-29.227399pt;}
.wsdd{word-spacing:-29.203170pt;}
.wsad{word-spacing:-28.493833pt;}
.wsbe{word-spacing:-27.691405pt;}
.ws92{word-spacing:-26.308756pt;}
.ws4a{word-spacing:-23.945946pt;}
.ws67{word-spacing:-23.085177pt;}
.ws113{word-spacing:-19.128267pt;}
.ws46{word-spacing:-15.964004pt;}
.ws63{word-spacing:-15.390157pt;}
.wsf0{word-spacing:-14.979447pt;}
.ws15{word-spacing:-13.283467pt;}
.ws100{word-spacing:-5.034274pt;}
.wsfe{word-spacing:-5.034199pt;}
.ws78{word-spacing:-4.976199pt;}
.ws10b{word-spacing:-4.958559pt;}
.ws109{word-spacing:-4.958484pt;}
.ws101{word-spacing:-4.953650pt;}
.ws10c{word-spacing:-4.879147pt;}
.wsca{word-spacing:-4.871233pt;}
.wsc8{word-spacing:-4.871160pt;}
.wsda{word-spacing:-4.867195pt;}
.wscb{word-spacing:-4.793220pt;}
.wsaa{word-spacing:-4.748972pt;}
.wsbb{word-spacing:-4.615234pt;}
.wsb9{word-spacing:-4.615165pt;}
.wsbc{word-spacing:-4.541321pt;}
.ws8f{word-spacing:-4.384793pt;}
.ws8d{word-spacing:-4.384727pt;}
.ws90{word-spacing:-4.314570pt;}
.ws47{word-spacing:-3.990991pt;}
.ws45{word-spacing:-3.990931pt;}
.ws49{word-spacing:-3.927075pt;}
.ws64{word-spacing:-3.847530pt;}
.ws62{word-spacing:-3.847472pt;}
.ws66{word-spacing:-3.785911pt;}
.ws81{word-spacing:-3.188032pt;}
.wse5{word-spacing:-3.134898pt;}
.wse8{word-spacing:-3.081764pt;}
.ws12{word-spacing:-2.975497pt;}
.ws60{word-spacing:-2.816095pt;}
.ws27{word-spacing:-2.709827pt;}
.wsf3{word-spacing:-2.536482pt;}
.wsed{word-spacing:-2.496574pt;}
.wseb{word-spacing:-2.496537pt;}
.wsee{word-spacing:-2.456592pt;}
.wsc3{word-spacing:-2.444158pt;}
.ws9b{word-spacing:-2.337890pt;}
.ws1a{word-spacing:-2.284756pt;}
.ws11d{word-spacing:-2.194422pt;}
.wse2{word-spacing:-2.178489pt;}
.ws87{word-spacing:-2.125355pt;}
.ws11f{word-spacing:-2.120035pt;}
.ws2{word-spacing:-2.072221pt;}
.ws80{word-spacing:-2.019087pt;}
.ws121{word-spacing:-1.934067pt;}
.wsfc{word-spacing:-1.912819pt;}
.wsa4{word-spacing:-1.753418pt;}
.ws122{word-spacing:-1.710906pt;}
.ws11{word-spacing:-1.700284pt;}
.ws1f{word-spacing:-1.647150pt;}
.ws39{word-spacing:-1.594016pt;}
.ws82{word-spacing:-1.540882pt;}
.ws3b{word-spacing:-1.487748pt;}
.wsc1{word-spacing:-1.434614pt;}
.ws126{word-spacing:-1.301776pt;}
.ws21{word-spacing:-1.275213pt;}
.wsb1{word-spacing:-1.222079pt;}
.ws9{word-spacing:-1.168945pt;}
.ws32{word-spacing:-1.115811pt;}
.ws12c{word-spacing:-0.929840pt;}
.wsa5{word-spacing:-0.903276pt;}
.ws11b{word-spacing:-0.855453pt;}
.ws9a{word-spacing:-0.850142pt;}
.ws14{word-spacing:-0.797008pt;}
.ws5b{word-spacing:-0.743874pt;}
.ws128{word-spacing:-0.743872pt;}
.ws33{word-spacing:-0.690740pt;}
.wsf9{word-spacing:-0.637606pt;}
.ws9c{word-spacing:-0.584473pt;}
.wsd6{word-spacing:-0.531339pt;}
.ws134{word-spacing:-0.520710pt;}
.ws114{word-spacing:-0.478205pt;}
.wsb7{word-spacing:-0.425071pt;}
.wsa3{word-spacing:-0.371937pt;}
.ws71{word-spacing:-0.318803pt;}
.ws12f{word-spacing:-0.297549pt;}
.ws30{word-spacing:-0.265669pt;}
.ws2d{word-spacing:-0.212535pt;}
.ws98{word-spacing:-0.159402pt;}
.ws12b{word-spacing:-0.111581pt;}
.wsd2{word-spacing:-0.053134pt;}
.ws115{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.wsea{word-spacing:0.039908pt;}
.ws74{word-spacing:0.053134pt;}
.ws61{word-spacing:0.061503pt;}
.ws44{word-spacing:0.063796pt;}
.ws8c{word-spacing:0.070091pt;}
.wsb8{word-spacing:0.073774pt;}
.wsa7{word-spacing:0.075912pt;}
.wsd7{word-spacing:0.077802pt;}
.wsc7{word-spacing:0.077867pt;}
.ws108{word-spacing:0.079262pt;}
.ws75{word-spacing:0.079544pt;}
.wsfd{word-spacing:0.080473pt;}
.ws6f{word-spacing:0.106268pt;}
.ws85{word-spacing:0.159402pt;}
.ws12e{word-spacing:0.260355pt;}
.ws3{word-spacing:0.265669pt;}
.ws6c{word-spacing:0.318803pt;}
.ws17{word-spacing:0.340058pt;}
.wse1{word-spacing:0.371937pt;}
.ws6{word-spacing:0.425071pt;}
.ws7f{word-spacing:0.478205pt;}
.ws5f{word-spacing:0.531339pt;}
.wsa2{word-spacing:0.584473pt;}
.ws136{word-spacing:0.632291pt;}
.ws13{word-spacing:0.690740pt;}
.ws2c{word-spacing:0.743874pt;}
.ws36{word-spacing:0.797008pt;}
.ws20{word-spacing:0.850142pt;}
.ws40{word-spacing:0.903276pt;}
.wsf7{word-spacing:1.009543pt;}
.wsc2{word-spacing:1.062677pt;}
.wsc4{word-spacing:1.115811pt;}
.ws1c{word-spacing:1.168945pt;}
.ws11e{word-spacing:1.264582pt;}
.ws12a{word-spacing:1.301776pt;}
.ws3a{word-spacing:1.381481pt;}
.wse6{word-spacing:1.434614pt;}
.ws119{word-spacing:1.450550pt;}
.ws35{word-spacing:1.487748pt;}
.wsb6{word-spacing:1.540882pt;}
.ws96{word-spacing:1.594016pt;}
.ws132{word-spacing:1.636518pt;}
.ws23{word-spacing:1.647150pt;}
.ws5a{word-spacing:1.700284pt;}
.ws107{word-spacing:1.859685pt;}
.wsa0{word-spacing:1.912819pt;}
.ws116{word-spacing:1.934067pt;}
.ws24{word-spacing:1.965953pt;}
.ws118{word-spacing:1.971261pt;}
.ws99{word-spacing:2.072221pt;}
.ws53{word-spacing:2.231622pt;}
.ws29{word-spacing:2.337890pt;}
.ws73{word-spacing:2.391024pt;}
.ws7{word-spacing:2.444158pt;}
.ws133{word-spacing:2.454778pt;}
.ws1d{word-spacing:2.497292pt;}
.wsc6{word-spacing:2.550426pt;}
.ws51{word-spacing:2.656693pt;}
.ws8{word-spacing:2.709827pt;}
.ws50{word-spacing:2.762961pt;}
.ws1b{word-spacing:2.816095pt;}
.ws127{word-spacing:2.863907pt;}
.wsb4{word-spacing:2.869229pt;}
.ws43{word-spacing:2.922363pt;}
.ws123{word-spacing:2.975488pt;}
.wsa{word-spacing:2.975497pt;}
.ws125{word-spacing:3.012682pt;}
.wse9{word-spacing:3.081764pt;}
.ws120{word-spacing:3.124262pt;}
.wsd5{word-spacing:3.134898pt;}
.ws2b{word-spacing:3.188032pt;}
.ws6d{word-spacing:3.241166pt;}
.wsd{word-spacing:3.347434pt;}
.ws129{word-spacing:3.384618pt;}
.ws9f{word-spacing:3.400567pt;}
.ws83{word-spacing:3.453701pt;}
.ws34{word-spacing:3.506835pt;}
.ws59{word-spacing:3.559969pt;}
.ws1e{word-spacing:3.613103pt;}
.ws130{word-spacing:3.644973pt;}
.ws9d{word-spacing:3.666237pt;}
.ws10{word-spacing:3.772505pt;}
.wse0{word-spacing:3.985040pt;}
.ws12d{word-spacing:4.016909pt;}
.ws88{word-spacing:4.038174pt;}
.ws124{word-spacing:4.091296pt;}
.ws52{word-spacing:4.091308pt;}
.ws2f{word-spacing:4.144442pt;}
.ws54{word-spacing:4.197575pt;}
.ws11c{word-spacing:4.202877pt;}
.ws8a{word-spacing:4.250709pt;}
.wsb3{word-spacing:4.303843pt;}
.ws131{word-spacing:4.314458pt;}
.wsd1{word-spacing:4.410111pt;}
.ws112{word-spacing:4.516379pt;}
.wse{word-spacing:4.569513pt;}
.wse4{word-spacing:4.622646pt;}
.wsf8{word-spacing:4.675780pt;}
.wsa8{word-spacing:4.749044pt;}
.wse7{word-spacing:4.782048pt;}
.wsab{word-spacing:4.825027pt;}
.ws41{word-spacing:4.835182pt;}
.wsd8{word-spacing:4.867268pt;}
.ws5d{word-spacing:4.888316pt;}
.ws7a{word-spacing:4.896655pt;}
.ws9e{word-spacing:4.941450pt;}
.wsec{word-spacing:4.943192pt;}
.wsdb{word-spacing:4.945144pt;}
.wsef{word-spacing:4.953216pt;}
.ws76{word-spacing:4.976274pt;}
.wsf2{word-spacing:4.993124pt;}
.wsf4{word-spacing:4.993161pt;}
.ws5c{word-spacing:4.994583pt;}
.wsb5{word-spacing:5.047717pt;}
.ws135{word-spacing:5.058330pt;}
.ws22{word-spacing:5.100851pt;}
.wsb{word-spacing:5.260253pt;}
.ws11a{word-spacing:5.281491pt;}
.ws26{word-spacing:5.313387pt;}
.wsd4{word-spacing:5.366521pt;}
.ws3c{word-spacing:5.419654pt;}
.ws3d{word-spacing:5.525922pt;}
.ws42{word-spacing:5.579056pt;}
.ws5{word-spacing:5.632190pt;}
.ws8b{word-spacing:5.685324pt;}
.ws57{word-spacing:5.791591pt;}
.ws84{word-spacing:5.897859pt;}
.ws3e{word-spacing:5.950993pt;}
.ws58{word-spacing:6.004127pt;}
.ws97{word-spacing:6.110395pt;}
.wsfb{word-spacing:6.163529pt;}
.ws4{word-spacing:6.269796pt;}
.ws2e{word-spacing:6.641733pt;}
.wscf{word-spacing:6.748001pt;}
.ws25{word-spacing:6.907403pt;}
.ws72{word-spacing:6.960537pt;}
.ws6e{word-spacing:7.119938pt;}
.ws2a{word-spacing:7.173072pt;}
.ws55{word-spacing:7.226206pt;}
.ws38{word-spacing:7.279340pt;}
.ws86{word-spacing:7.491875pt;}
.wsf{word-spacing:7.545009pt;}
.ws65{word-spacing:7.618070pt;}
.ws31{word-spacing:7.651277pt;}
.ws28{word-spacing:7.757545pt;}
.ws5e{word-spacing:7.863812pt;}
.ws48{word-spacing:7.902122pt;}
.wsb2{word-spacing:7.916946pt;}
.ws4d{word-spacing:8.673465pt;}
.ws8e{word-spacing:8.681845pt;}
.ws91{word-spacing:8.699450pt;}
.wsba{word-spacing:9.138117pt;}
.wsbd{word-spacing:9.156648pt;}
.ws117{word-spacing:9.178754pt;}
.wsa9{word-spacing:9.402917pt;}
.wsac{word-spacing:9.421984pt;}
.wsd9{word-spacing:9.636997pt;}
.wsc9{word-spacing:9.644993pt;}
.wsdc{word-spacing:9.656539pt;}
.wscc{word-spacing:9.664551pt;}
.ws10a{word-spacing:9.817896pt;}
.ws10d{word-spacing:9.837805pt;}
.ws77{word-spacing:9.852824pt;}
.ws79{word-spacing:9.952348pt;}
.ws7b{word-spacing:9.952423pt;}
.wsff{word-spacing:9.967813pt;}
.ws102{word-spacing:9.988026pt;}
.ws1{word-spacing:10.584293pt;}
.ws4c{word-spacing:14.908919pt;}
.wsb0{word-spacing:14.914253pt;}
.ws19{word-spacing:15.940267pt;}
.wsc5{word-spacing:16.807081pt;}
.wsa6{word-spacing:17.047081pt;}
.ws37{word-spacing:17.943081pt;}
.ws106{word-spacing:17.948414pt;}
.ws70{word-spacing:18.076414pt;}
.ws89{word-spacing:18.460414pt;}
.ws18{word-spacing:19.128267pt;}
.wsd3{word-spacing:20.455081pt;}
.ws3f{word-spacing:21.463081pt;}
.ws56{word-spacing:21.479081pt;}
.wsfa{word-spacing:22.257748pt;}
.ws111{word-spacing:22.503081pt;}
.wse3{word-spacing:22.593748pt;}
.wsc{word-spacing:23.207081pt;}
.wsa1{word-spacing:23.249748pt;}
.ws16{word-spacing:32.889863pt;}
.wsf1{word-spacing:47.434914pt;}
.ws68{word-spacing:73.103062pt;}
.ws4b{word-spacing:75.828829pt;}
.wsd0{word-spacing:83.062208pt;}
.ws93{word-spacing:83.311060pt;}
.wsbf{word-spacing:87.689450pt;}
.wsae{word-spacing:90.230471pt;}
.wsde{word-spacing:92.476705pt;}
.wsce{word-spacing:92.553431pt;}
.ws10f{word-spacing:94.212615pt;}
.ws7d{word-spacing:94.547784pt;}
.ws104{word-spacing:95.651215pt;}
.wsf5{word-spacing:128.440403pt;}
.wsf6{word-spacing:172.069921pt;}
.wsc0{word-spacing:278.914150pt;}
.wsaf{word-spacing:434.371630pt;}
.ws105{word-spacing:468.383418pt;}
.wsdf{word-spacing:536.319561pt;}
.ws110{word-spacing:536.406995pt;}
.ws7e{word-spacing:541.215859pt;}
.ws94{word-spacing:623.840898pt;}
.ws95{word-spacing:686.968176pt;}
.ws4e{word-spacing:975.412621pt;}
.ws4f{word-spacing:1070.803009pt;}
.ws6a{word-spacing:1114.607395pt;}
.ws69{word-spacing:1150.192993pt;}
.ws6b{word-spacing:1190.587457pt;}
._4e{margin-left:-8.492031pt;}
._36{margin-left:-6.557543pt;}
._6{margin-left:-5.653439pt;}
._20{margin-left:-4.445115pt;}
._4{margin-left:-3.453701pt;}
._1{margin-left:-2.337890pt;}
._0{margin-left:-1.147696pt;}
._1f{width:2.236395pt;}
._18{width:3.197938pt;}
._17{width:4.212785pt;}
._1e{width:5.172473pt;}
._7f{width:8.371626pt;}
._66{width:9.298427pt;}
._41{width:10.892442pt;}
._11{width:12.082636pt;}
._80{width:13.017760pt;}
._b{width:13.942355pt;}
._15{width:15.249420pt;}
._8{width:16.269599pt;}
._2{width:17.385410pt;}
._40{width:18.384317pt;}
._d{width:19.446721pt;}
._21{width:20.509673pt;}
._3{width:21.476717pt;}
._a{width:23.006964pt;}
._7{width:24.441579pt;}
._13{width:26.566933pt;}
._10{width:27.735878pt;}
._9{width:29.276761pt;}
._16{width:30.977044pt;}
._12{width:31.880533pt;}
._5{width:33.314934pt;}
._14{width:34.260708pt;}
._5f{width:36.449833pt;}
._e{width:37.576258pt;}
._f{width:40.381739pt;}
._6e{width:61.216005pt;}
._6c{width:74.394860pt;}
._67{width:80.739217pt;}
._75{width:83.435517pt;}
._6b{width:86.231681pt;}
._6a{width:93.172158pt;}
._6f{width:98.664621pt;}
._74{width:101.460785pt;}
._71{width:111.147493pt;}
._6d{width:113.993588pt;}
._72{width:119.535984pt;}
._27{width:124.352155pt;}
._69{width:126.476460pt;}
._1b{width:128.988829pt;}
._1a{width:130.585225pt;}
._51{width:137.349371pt;}
._70{width:138.959333pt;}
._44{width:140.755574pt;}
._3b{width:141.716498pt;}
._24{width:143.589803pt;}
._26{width:145.430054pt;}
._56{width:149.164370pt;}
._4d{width:150.272026pt;}
._42{width:153.581760pt;}
._5a{width:157.438257pt;}
._7b{width:159.690478pt;}
._32{width:160.830756pt;}
._77{width:162.707751pt;}
._38{width:163.640462pt;}
._49{width:164.706513pt;}
._58{width:170.882860pt;}
._53{width:172.240541pt;}
._73{width:173.561854pt;}
._43{width:176.760705pt;}
._61{width:181.643718pt;}
._28{width:183.982300pt;}
._3a{width:185.564425pt;}
._76{width:187.879123pt;}
._62{width:191.962172pt;}
._7c{width:193.185447pt;}
._50{width:195.316712pt;}
._60{width:202.887800pt;}
._3e{width:205.032904pt;}
._23{width:207.452231pt;}
._30{width:210.493224pt;}
._46{width:211.990156pt;}
._78{width:213.050495pt;}
._2f{width:220.531319pt;}
._33{width:221.440862pt;}
._31{width:227.365709pt;}
._5e{width:230.311905pt;}
._7d{width:231.862205pt;}
._2d{width:238.392931pt;}
._63{width:240.361674pt;}
._7a{width:242.260020pt;}
._57{width:243.222844pt;}
._55{width:251.714875pt;}
._5d{width:254.668071pt;}
._79{width:256.654999pt;}
._2b{width:257.630579pt;}
._7e{width:268.133967pt;}
._35{width:271.202854pt;}
._4b{width:274.399573pt;}
._5b{width:279.024237pt;}
._4c{width:282.658823pt;}
._3c{width:286.765439pt;}
._64{width:288.581437pt;}
._59{width:292.761115pt;}
._4f{width:297.867217pt;}
._37{width:299.042858pt;}
._48{width:306.027728pt;}
._39{width:308.689402pt;}
._52{width:312.451357pt;}
._65{width:313.369599pt;}
._54{width:317.528115pt;}
._34{width:321.117301pt;}
._5c{width:328.562509pt;}
._25{width:334.658121pt;}
._4a{width:337.655882pt;}
._1d{width:338.617125pt;}
._22{width:345.431203pt;}
._19{width:349.131892pt;}
._45{width:350.858025pt;}
._3d{width:352.537329pt;}
._2a{width:353.658354pt;}
._47{width:358.836298pt;}
._2c{width:373.133416pt;}
._29{width:392.371064pt;}
._3f{width:396.385255pt;}
._1c{width:397.821982pt;}
._2e{width:411.608712pt;}
._68{width:481.086834pt;}
._c{width:983.021501pt;}
.fs4{font-size:31.880533pt;}
.fs1e{font-size:37.193600pt;}
.fs3{font-size:39.318933pt;}
.fs19{font-size:39.945291pt;}
.fs2{font-size:42.507200pt;}
.fs18{font-size:49.931489pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:61.560627pt;}
.fs5{font-size:63.761067pt;}
.fs7{font-size:63.856016pt;}
.fs9{font-size:69.947298pt;}
.fsf{font-size:70.156858pt;}
.fs13{font-size:73.843933pt;}
.fs11{font-size:75.983745pt;}
.fs0{font-size:76.513067pt;}
.fsa{font-size:76.950591pt;}
.fs17{font-size:77.875316pt;}
.fs15{font-size:77.939927pt;}
.fs1d{font-size:79.337138pt;}
.fsd{font-size:79.619386pt;}
.fs6{font-size:79.819820pt;}
.fs1b{font-size:80.548594pt;}
.fs8{font-size:87.433903pt;}
.fse{font-size:87.695853pt;}
.fs12{font-size:92.304685pt;}
.fs10{font-size:94.979443pt;}
.fs16{font-size:97.343900pt;}
.fs14{font-size:97.424664pt;}
.fs1c{font-size:99.171174pt;}
.fsc{font-size:99.523983pt;}
.fs1a{font-size:100.685489pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:119.153333pt;}
.yc9{bottom:159.004000pt;}
.yac{bottom:161.758667pt;}
.y177{bottom:162.750667pt;}
.y19a{bottom:162.892000pt;}
.y158{bottom:166.473333pt;}
.y10c{bottom:169.464000pt;}
.y144{bottom:169.521333pt;}
.y1ee{bottom:170.958667pt;}
.y8c{bottom:172.029333pt;}
.yc8{bottom:174.944000pt;}
.yab{bottom:177.698667pt;}
.y176{bottom:178.690667pt;}
.y199{bottom:178.832000pt;}
.y218{bottom:181.585333pt;}
.y157{bottom:182.414667pt;}
.y1ed{bottom:182.914667pt;}
.ye2{bottom:183.937333pt;}
.y10b{bottom:185.404000pt;}
.y143{bottom:185.461333pt;}
.y22{bottom:186.216000pt;}
.y8b{bottom:187.969333pt;}
.yc7{bottom:190.884000pt;}
.y217{bottom:193.541333pt;}
.yaa{bottom:193.638667pt;}
.y128{bottom:193.885333pt;}
.y198{bottom:194.772000pt;}
.y10a{bottom:201.345333pt;}
.y142{bottom:201.401333pt;}
.y1c4{bottom:202.686667pt;}
.y21{bottom:202.692000pt;}
.y8a{bottom:203.909333pt;}
.y1ec{bottom:205.241333pt;}
.yc6{bottom:206.824000pt;}
.y156{bottom:207.320000pt;}
.y67{bottom:207.912000pt;}
.ya9{bottom:209.580000pt;}
.y127{bottom:209.825333pt;}
.y175{bottom:209.996000pt;}
.y197{bottom:210.713333pt;}
.y20{bottom:211.913333pt;}
.y216{bottom:216.122667pt;}
.y1eb{bottom:217.196000pt;}
.y109{bottom:217.285333pt;}
.y141{bottom:217.341333pt;}
.yc5{bottom:222.764000pt;}
.y1d1{bottom:223.348000pt;}
.y66{bottom:223.852000pt;}
.ya8{bottom:225.520000pt;}
.y126{bottom:225.765333pt;}
.y196{bottom:226.653333pt;}
.y215{bottom:228.078667pt;}
.y1f{bottom:228.390667pt;}
.y89{bottom:228.816000pt;}
.ye1{bottom:229.920779pt;}
.y48{bottom:230.104000pt;}
.y108{bottom:233.225333pt;}
.y140{bottom:233.281333pt;}
.yc4{bottom:238.705333pt;}
.y1ea{bottom:239.522667pt;}
.y65{bottom:239.792000pt;}
.y214{bottom:240.033333pt;}
.ya7{bottom:241.460000pt;}
.y125{bottom:241.706667pt;}
.y195{bottom:242.593333pt;}
.y155{bottom:242.688000pt;}
.y47{bottom:246.044000pt;}
.y1c3{bottom:248.670831pt;}
.y107{bottom:249.165333pt;}
.y13f{bottom:249.221333pt;}
.y1e9{bottom:251.478667pt;}
.yc3{bottom:254.645333pt;}
.ye0{bottom:256.150687pt;}
.y174{bottom:256.969762pt;}
.ya6{bottom:257.400000pt;}
.y124{bottom:257.646667pt;}
.y194{bottom:258.533333pt;}
.y154{bottom:258.628000pt;}
.y46{bottom:261.984000pt;}
.y213{bottom:262.614667pt;}
.y1e8{bottom:263.433333pt;}
.y88{bottom:264.184000pt;}
.y106{bottom:265.105333pt;}
.y13e{bottom:265.162667pt;}
.y1d0{bottom:269.331304pt;}
.yc2{bottom:270.585333pt;}
.y64{bottom:271.097333pt;}
.ya5{bottom:273.340000pt;}
.y123{bottom:273.586667pt;}
.y193{bottom:274.473333pt;}
.y212{bottom:274.570667pt;}
.y1c2{bottom:274.900739pt;}
.y45{bottom:277.924000pt;}
.y87{bottom:280.124000pt;}
.y105{bottom:281.045333pt;}
.y13d{bottom:281.102667pt;}
.y1e{bottom:282.604000pt;}
.ydf{bottom:283.256022pt;}
.y1e7{bottom:285.760000pt;}
.y173{bottom:286.172639pt;}
.yc1{bottom:286.525333pt;}
.ya4{bottom:289.280000pt;}
.y122{bottom:289.526667pt;}
.y153{bottom:289.933333pt;}
.y192{bottom:290.413333pt;}
.y44{bottom:293.864000pt;}
.y1cf{bottom:295.561211pt;}
.y86{bottom:296.064000pt;}
.y104{bottom:296.986667pt;}
.y13c{bottom:297.042667pt;}
.y211{bottom:297.152000pt;}
.y1e6{bottom:297.716000pt;}
.y1d{bottom:298.545333pt;}
.y1c1{bottom:302.006074pt;}
.yc0{bottom:302.465333pt;}
.ya3{bottom:305.221333pt;}
.y121{bottom:305.466667pt;}
.y191{bottom:306.354667pt;}
.y210{bottom:309.108000pt;}
.yde{bottom:309.485930pt;}
.y1e5{bottom:309.670667pt;}
.y43{bottom:309.805333pt;}
.y1b4{bottom:311.432000pt;}
.y85{bottom:312.004000pt;}
.y13b{bottom:312.982667pt;}
.y172{bottom:315.377959pt;}
.y63{bottom:316.320511pt;}
.ybf{bottom:318.406667pt;}
.y20f{bottom:321.062667pt;}
.ya2{bottom:321.161333pt;}
.y120{bottom:321.406667pt;}
.y103{bottom:321.893333pt;}
.y190{bottom:322.294667pt;}
.y1ce{bottom:322.666546pt;}
.y1c{bottom:323.796000pt;}
.y42{bottom:325.745333pt;}
.y84{bottom:327.945333pt;}
.y1e4{bottom:331.998667pt;}
.ybe{bottom:334.346667pt;}
.ydd{bottom:336.591264pt;}
.y152{bottom:336.915886pt;}
.ya1{bottom:337.101333pt;}
.y11f{bottom:337.348000pt;}
.y1c0{bottom:337.409333pt;}
.y13a{bottom:337.889333pt;}
.y18f{bottom:338.234667pt;}
.y1b{bottom:339.736000pt;}
.y62{bottom:341.063405pt;}
.y20e{bottom:343.645333pt;}
.y83{bottom:343.885333pt;}
.y1e3{bottom:343.953333pt;}
.y171{bottom:344.580836pt;}
.ybd{bottom:350.286667pt;}
.y41{bottom:350.652000pt;}
.ya0{bottom:353.041333pt;}
.y11e{bottom:353.288000pt;}
.y1bf{bottom:353.349333pt;}
.y18e{bottom:354.174667pt;}
.y20d{bottom:355.600000pt;}
.y1a{bottom:355.677333pt;}
.y102{bottom:357.260000pt;}
.y1cd{bottom:358.070667pt;}
.y82{bottom:359.825333pt;}
.y1b3{bottom:363.701333pt;}
.y61{bottom:365.009111pt;}
.y151{bottom:366.145437pt;}
.y20c{bottom:367.554667pt;}
.y9f{bottom:368.981333pt;}
.y11d{bottom:369.228000pt;}
.y18d{bottom:370.114667pt;}
.y1e2{bottom:370.985333pt;}
.y19{bottom:371.617333pt;}
.ydc{bottom:371.994667pt;}
.y101{bottom:373.200000pt;}
.y1cc{bottom:374.010667pt;}
.y170{bottom:374.755921pt;}
.ybc{bottom:375.193333pt;}
.y81{bottom:375.765333pt;}
.y139{bottom:380.040000pt;}
.y1be{bottom:384.654667pt;}
.y9e{bottom:384.921333pt;}
.y11c{bottom:385.168000pt;}
.y18c{bottom:386.056000pt;}
.y18{bottom:387.557333pt;}
.ydb{bottom:387.934667pt;}
.y40{bottom:388.676000pt;}
.y100{bottom:389.140000pt;}
.y60{bottom:389.754008pt;}
.y20b{bottom:390.137333pt;}
.y80{bottom:391.705333pt;}
.y150{bottom:395.372543pt;}
.y18b{bottom:401.996000pt;}
.y20a{bottom:402.092000pt;}
.y17{bottom:403.497333pt;}
.yda{bottom:403.874667pt;}
.y16f{bottom:403.961241pt;}
.y3f{bottom:404.616000pt;}
.yff{bottom:405.081333pt;}
.y1cb{bottom:405.316000pt;}
.y7f{bottom:407.645333pt;}
.y1e1{bottom:408.644000pt;}
.y1b2{bottom:409.684779pt;}
.y5f{bottom:413.699714pt;}
.y18a{bottom:417.936000pt;}
.y16{bottom:419.437333pt;}
.y3e{bottom:420.556000pt;}
.yfe{bottom:421.021333pt;}
.y7e{bottom:423.586667pt;}
.y14f{bottom:424.599649pt;}
.y209{bottom:424.674667pt;}
.y138{bottom:426.023304pt;}
.ybb{bottom:426.585333pt;}
.y9d{bottom:427.073333pt;}
.y11b{bottom:427.318667pt;}
.y1bd{bottom:431.963300pt;}
.y189{bottom:433.876000pt;}
.y16e{bottom:434.136326pt;}
.yd9{bottom:435.180000pt;}
.y15{bottom:435.378667pt;}
.y1b1{bottom:435.914687pt;}
.y3d{bottom:436.496000pt;}
.y208{bottom:436.629333pt;}
.yfd{bottom:436.961333pt;}
.y5e{bottom:438.444611pt;}
.y7d{bottom:439.526667pt;}
.y207{bottom:448.584000pt;}
.y188{bottom:449.816000pt;}
.y14{bottom:451.318667pt;}
.y137{bottom:452.253211pt;}
.y3c{bottom:452.436000pt;}
.y1ca{bottom:452.472263pt;}
.yfc{bottom:452.901333pt;}
.y1e0{bottom:453.361333pt;}
.y14e{bottom:453.826754pt;}
.y7c{bottom:455.466667pt;}
.y1bc{bottom:462.168644pt;}
.y1b0{bottom:463.020022pt;}
.y187{bottom:465.756000pt;}
.y13{bottom:467.258667pt;}
.y3b{bottom:468.377333pt;}
.yfb{bottom:468.841333pt;}
.y206{bottom:471.166667pt;}
.y7b{bottom:471.406667pt;}
.yba{bottom:472.567304pt;}
.y9c{bottom:473.056779pt;}
.y11a{bottom:473.301970pt;}
.y16d{bottom:474.722667pt;}
.y5d{bottom:475.350667pt;}
.y136{bottom:479.358546pt;}
.yd8{bottom:481.190712pt;}
.y186{bottom:481.697333pt;}
.y1c9{bottom:482.225805pt;}
.y1df{bottom:483.049333pt;}
.y14d{bottom:483.053860pt;}
.y205{bottom:483.121333pt;}
.y12{bottom:483.198667pt;}
.y3a{bottom:484.317333pt;}
.yfa{bottom:484.781333pt;}
.y7a{bottom:487.346667pt;}
.y1af{bottom:489.249930pt;}
.y16c{bottom:490.662667pt;}
.y5c{bottom:491.290667pt;}
.y1bb{bottom:492.373987pt;}
.y204{bottom:495.077333pt;}
.y185{bottom:497.637333pt;}
.yb9{bottom:498.799405pt;}
.y11{bottom:499.138667pt;}
.y119{bottom:499.534072pt;}
.y9b{bottom:500.162114pt;}
.y39{bottom:500.257333pt;}
.yf9{bottom:500.722667pt;}
.y79{bottom:503.286667pt;}
.y16b{bottom:506.602667pt;}
.y5b{bottom:507.230667pt;}
.yd7{bottom:507.499204pt;}
.y1c8{bottom:511.976859pt;}
.y14c{bottom:512.280966pt;}
.y184{bottom:513.577333pt;}
.y10{bottom:515.078667pt;}
.y135{bottom:515.961333pt;}
.y38{bottom:516.197333pt;}
.y1ae{bottom:516.355264pt;}
.yf8{bottom:516.662667pt;}
.y203{bottom:517.658667pt;}
.y78{bottom:519.228000pt;}
.y16a{bottom:522.544000pt;}
.y1ba{bottom:522.581858pt;}
.y5a{bottom:523.172000pt;}
.yb8{bottom:525.902546pt;}
.y9a{bottom:526.392022pt;}
.y118{bottom:526.637213pt;}
.y1de{bottom:527.766667pt;}
.y183{bottom:529.517333pt;}
.y202{bottom:529.613333pt;}
.yf{bottom:531.020000pt;}
.y37{bottom:532.137333pt;}
.yf7{bottom:532.602667pt;}
.yd6{bottom:534.683545pt;}
.y77{bottom:535.168000pt;}
.y169{bottom:538.484000pt;}
.y59{bottom:539.112000pt;}
.y14b{bottom:541.510517pt;}
.y1c7{bottom:542.718370pt;}
.y1dd{bottom:543.706667pt;}
.y182{bottom:545.457333pt;}
.ye{bottom:546.960000pt;}
.y36{bottom:548.077333pt;}
.yf6{bottom:548.542667pt;}
.y76{bottom:551.108000pt;}
.y1ad{bottom:551.594667pt;}
.y201{bottom:552.196000pt;}
.y99{bottom:552.621930pt;}
.y1b9{bottom:552.787201pt;}
.y168{bottom:554.424000pt;}
.y58{bottom:555.052000pt;}
.yb7{bottom:560.538667pt;}
.yd5{bottom:560.994238pt;}
.y181{bottom:561.397333pt;}
.y134{bottom:562.431346pt;}
.yd{bottom:562.900000pt;}
.y117{bottom:563.240000pt;}
.y35{bottom:564.018667pt;}
.y200{bottom:564.150667pt;}
.yf5{bottom:564.482667pt;}
.y75{bottom:567.048000pt;}
.y1ac{bottom:567.534667pt;}
.y167{bottom:570.364000pt;}
.y14a{bottom:570.737622pt;}
.y57{bottom:570.992000pt;}
.y1c6{bottom:572.471912pt;}
.y1dc{bottom:573.396000pt;}
.yb6{bottom:576.478667pt;}
.y180{bottom:577.338667pt;}
.yc{bottom:578.840000pt;}
.y98{bottom:579.727264pt;}
.y34{bottom:579.958667pt;}
.yf4{bottom:580.422667pt;}
.y74{bottom:582.988000pt;}
.y1b8{bottom:582.992545pt;}
.y166{bottom:586.304000pt;}
.y1ff{bottom:586.733333pt;}
.y56{bottom:586.932000pt;}
.yd4{bottom:587.302729pt;}
.y133{bottom:590.124790pt;}
.y17f{bottom:593.278667pt;}
.yb{bottom:594.780000pt;}
.y33{bottom:595.898667pt;}
.yf3{bottom:596.364000pt;}
.y1fe{bottom:598.688000pt;}
.y73{bottom:598.928000pt;}
.y149{bottom:600.937743pt;}
.y165{bottom:602.245333pt;}
.y55{bottom:602.872000pt;}
.y1c5{bottom:603.213423pt;}
.yb5{bottom:607.016000pt;}
.y17e{bottom:609.218667pt;}
.y1ab{bottom:609.360000pt;}
.y116{bottom:609.978173pt;}
.y1fd{bottom:610.644000pt;}
.ya{bottom:610.720000pt;}
.y32{bottom:611.838667pt;}
.yf2{bottom:612.304000pt;}
.yd3{bottom:613.611221pt;}
.y1b7{bottom:614.205997pt;}
.y72{bottom:614.869333pt;}
.y97{bottom:616.328000pt;}
.y132{bottom:617.815918pt;}
.y1db{bottom:618.112000pt;}
.y164{bottom:618.185333pt;}
.y54{bottom:618.813333pt;}
.y17d{bottom:625.158667pt;}
.y9{bottom:626.661333pt;}
.y31{bottom:627.778667pt;}
.yf1{bottom:628.244000pt;}
.y148{bottom:630.167293pt;}
.y71{bottom:630.809333pt;}
.y1fc{bottom:633.225333pt;}
.y1da{bottom:634.053333pt;}
.y163{bottom:634.125333pt;}
.y53{bottom:634.753333pt;}
.y115{bottom:638.471720pt;}
.yd2{bottom:640.797763pt;}
.y17c{bottom:641.098667pt;}
.y8{bottom:642.601333pt;}
.y30{bottom:643.718667pt;}
.yf0{bottom:644.184000pt;}
.y1b6{bottom:644.411340pt;}
.y1fb{bottom:645.180000pt;}
.y131{bottom:645.507045pt;}
.y70{bottom:646.749333pt;}
.y162{bottom:650.065333pt;}
.y52{bottom:650.693333pt;}
.y1aa{bottom:651.593346pt;}
.yb4{bottom:654.208103pt;}
.y17b{bottom:657.038667pt;}
.y7{bottom:658.541333pt;}
.y2f{bottom:659.660000pt;}
.yef{bottom:660.124000pt;}
.y147{bottom:660.367413pt;}
.y96{bottom:661.264481pt;}
.y6f{bottom:662.689333pt;}
.y1d9{bottom:663.741333pt;}
.y161{bottom:666.005333pt;}
.y1a9{bottom:666.572643pt;}
.y51{bottom:666.633333pt;}
.y114{bottom:666.965267pt;}
.yd1{bottom:667.106255pt;}
.y1fa{bottom:667.762667pt;}
.y17a{bottom:672.980000pt;}
.y130{bottom:673.198172pt;}
.y2e{bottom:675.600000pt;}
.y1b5{bottom:675.624792pt;}
.yee{bottom:676.065333pt;}
.y6e{bottom:678.629333pt;}
.y1f9{bottom:679.717333pt;}
.y1a8{bottom:681.551939pt;}
.y160{bottom:681.945333pt;}
.y6{bottom:682.452000pt;}
.y50{bottom:682.573333pt;}
.yb3{bottom:684.064998pt;}
.y95{bottom:685.117960pt;}
.y179{bottom:688.920000pt;}
.y2d{bottom:691.540000pt;}
.yed{bottom:692.005333pt;}
.yd0{bottom:694.292797pt;}
.y113{bottom:695.458814pt;}
.y1a7{bottom:696.531235pt;}
.y15f{bottom:697.886667pt;}
.y4f{bottom:698.513333pt;}
.y12f{bottom:700.889300pt;}
.y146{bottom:700.970667pt;}
.y1f8{bottom:702.300000pt;}
.y6d{bottom:703.536000pt;}
.y178{bottom:704.860000pt;}
.y2c{bottom:707.480000pt;}
.yec{bottom:707.945333pt;}
.y94{bottom:708.202905pt;}
.y1d8{bottom:708.458667pt;}
.y1a6{bottom:711.510531pt;}
.y15e{bottom:713.826667pt;}
.yb2{bottom:713.921893pt;}
.y1f7{bottom:714.254667pt;}
.y4e{bottom:714.454667pt;}
.y145{bottom:716.912000pt;}
.y2b{bottom:723.420000pt;}
.yeb{bottom:723.885333pt;}
.y112{bottom:723.952361pt;}
.y1f6{bottom:726.210667pt;}
.y1a5{bottom:726.491080pt;}
.y12e{bottom:728.580427pt;}
.y15d{bottom:729.766667pt;}
.y4d{bottom:730.394667pt;}
.y93{bottom:732.058314pt;}
.ycf{bottom:732.852000pt;}
.y1d7{bottom:738.146667pt;}
.y2a{bottom:739.361333pt;}
.yea{bottom:739.825333pt;}
.y1a4{bottom:741.470376pt;}
.yb1{bottom:744.775267pt;}
.y6c{bottom:745.688000pt;}
.y4c{bottom:746.334667pt;}
.yce{bottom:748.792000pt;}
.y111{bottom:752.448292pt;}
.y92{bottom:755.143260pt;}
.y29{bottom:755.301333pt;}
.ye9{bottom:755.765333pt;}
.y12d{bottom:756.273871pt;}
.y1a3{bottom:756.449673pt;}
.y1f5{bottom:760.746667pt;}
.y4b{bottom:762.274667pt;}
.ycd{bottom:764.732000pt;}
.y28{bottom:771.241333pt;}
.y5{bottom:771.374667pt;}
.ye8{bottom:771.706667pt;}
.y15c{bottom:771.917333pt;}
.y1a2{bottom:771.928905pt;}
.y1f4{bottom:772.702667pt;}
.yb0{bottom:774.632162pt;}
.y4a{bottom:778.214667pt;}
.y91{bottom:778.228206pt;}
.ycc{bottom:780.672000pt;}
.y110{bottom:780.941839pt;}
.y1d6{bottom:782.864000pt;}
.y12c{bottom:783.964998pt;}
.y1a1{bottom:786.908201pt;}
.y27{bottom:787.181333pt;}
.ye7{bottom:787.646667pt;}
.y6b{bottom:791.670780pt;}
.y4{bottom:791.964000pt;}
.y49{bottom:794.154667pt;}
.y1f3{bottom:795.284000pt;}
.ycb{bottom:796.612000pt;}
.y1d5{bottom:798.804000pt;}
.y90{bottom:801.315082pt;}
.y1a0{bottom:801.887498pt;}
.y26{bottom:803.121333pt;}
.ye6{bottom:803.586667pt;}
.yaf{bottom:805.485536pt;}
.y1f2{bottom:807.240000pt;}
.y10f{bottom:810.383979pt;}
.y3{bottom:812.553333pt;}
.y12b{bottom:812.578005pt;}
.y1d4{bottom:814.745333pt;}
.y19f{bottom:816.866794pt;}
.y15b{bottom:817.900637pt;}
.y6a{bottom:817.900688pt;}
.y25{bottom:819.061333pt;}
.ye5{bottom:819.526667pt;}
.y8f{bottom:825.168561pt;}
.yca{bottom:828.493333pt;}
.y1f1{bottom:829.821333pt;}
.y1d3{bottom:830.685333pt;}
.y19e{bottom:831.846090pt;}
.ye4{bottom:835.466667pt;}
.y10e{bottom:838.879909pt;}
.y12a{bottom:840.271449pt;}
.y1f0{bottom:841.776000pt;}
.y24{bottom:843.968000pt;}
.y15a{bottom:844.130545pt;}
.y69{bottom:844.132789pt;}
.yae{bottom:844.433333pt;}
.y1d2{bottom:846.625333pt;}
.y19d{bottom:847.325323pt;}
.y8e{bottom:848.253506pt;}
.ye3{bottom:851.406667pt;}
.y2{bottom:852.404000pt;}
.yad{bottom:860.373333pt;}
.y19c{bottom:862.304619pt;}
.y1ef{bottom:864.358667pt;}
.y10d{bottom:868.322050pt;}
.y129{bottom:868.884456pt;}
.y159{bottom:871.235879pt;}
.y68{bottom:871.235930pt;}
.y8d{bottom:872.108915pt;}
.y1{bottom:876.313333pt;}
.y19b{bottom:877.783851pt;}
.h8{height:21.933807pt;}
.h6{height:22.922103pt;}
.h1c{height:25.589197pt;}
.h1e{height:25.775863pt;}
.h3{height:29.159939pt;}
.h7{height:29.244954pt;}
.h1d{height:34.218530pt;}
.h19{height:34.352864pt;}
.h2{height:36.556100pt;}
.h4{height:36.768636pt;}
.hc{height:36.874903pt;}
.hf{height:37.299379pt;}
.h15{height:37.304713pt;}
.ha{height:44.122658pt;}
.hd{height:46.258122pt;}
.h5{height:46.263455pt;}
.hb{height:46.336759pt;}
.h1{height:52.640990pt;}
.h11{height:52.942007pt;}
.h9{height:52.947042pt;}
.he{height:54.916036pt;}
.h10{height:60.154525pt;}
.h13{height:60.334747pt;}
.h16{height:63.505623pt;}
.h14{height:65.345857pt;}
.h18{height:66.972603pt;}
.h17{height:67.028169pt;}
.h1b{height:68.229768pt;}
.h12{height:68.472500pt;}
.h1a{height:69.271617pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x2c{left:181.478490pt;}
.xe{left:183.346773pt;}
.x17{left:184.579790pt;}
.x7{left:190.262667pt;}
.x9{left:192.837333pt;}
.xc{left:195.819371pt;}
.x8{left:197.486667pt;}
.x1f{left:198.550662pt;}
.x15{left:200.128851pt;}
.x1c{left:202.532160pt;}
.x30{left:207.129333pt;}
.x1{left:209.274667pt;}
.x11{left:218.631922pt;}
.xb{left:220.133626pt;}
.x13{left:223.468000pt;}
.x1b{left:225.874667pt;}
.x14{left:227.149333pt;}
.x22{left:228.233333pt;}
.x24{left:229.347693pt;}
.xf{left:230.746667pt;}
.x1e{left:232.462667pt;}
.x28{left:233.441333pt;}
.x10{left:234.429333pt;}
.x2d{left:235.880000pt;}
.x2{left:236.990667pt;}
.x18{left:238.026667pt;}
.x1a{left:240.900000pt;}
.x21{left:243.260000pt;}
.x26{left:248.276000pt;}
.x1d{left:250.145333pt;}
.x2e{left:251.522667pt;}
.x4{left:260.504000pt;}
.x5{left:273.336000pt;}
.x2b{left:281.067316pt;}
.x33{left:285.940000pt;}
.x29{left:300.066151pt;}
.x2a{left:304.447799pt;}
.xd{left:331.872240pt;}
.x12{left:338.434197pt;}
.x19{left:344.126139pt;}
.x3{left:360.866667pt;}
.x16{left:369.020729pt;}
.x2f{left:371.344741pt;}
.x27{left:375.041336pt;}
.x25{left:392.303170pt;}
.x23{left:400.857333pt;}
.xa{left:404.177333pt;}
.x20{left:410.965120pt;}
.x31{left:428.765333pt;}
.x32{left:440.614667pt;}
}




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