
    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_aea78f8486cebd7bc25a4369.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.909000;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_c8b37e59fff2986ad8d7ca58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914000;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_a1cf011e3b0fba6fb0ef0864.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.902000;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_aef8bb244bbc413bc97d1bcc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.901000;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_0f785046801e062f39d93965.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_dd2172a0e711072bcbae3dc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_3e7f5e28472c3a2e6299fce6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.888000;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_690e7b948dc9af91d354b18e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.902000;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_3abfaab8e1fb73c048de3344.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_541e3a1744dcf9754efd1619.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.875000;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_746c59610f834df09c141b99.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;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_50556aa69b65c2641d692933.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.674000;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_4ba3031f269f4f35e11d5936.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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_7ed185a9f09173f1fecdfd27.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.697000;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_ae802ee3d5610f8be0aced11.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;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_ee163bf2c04ce103407e19e5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.909000;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);}
.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);}
.v8{vertical-align:-69.642000px;}
.v2{vertical-align:-10.758000px;}
.v3{vertical-align:-7.296000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:9.216000px;}
.v5{vertical-align:19.974000px;}
.v1{vertical-align:26.034000px;}
.v4{vertical-align:29.688000px;}
.v7{vertical-align:43.338000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000760px;}
.ls3{letter-spacing:0.001288px;}
.ls6{letter-spacing:0.001486px;}
.ls5{letter-spacing:0.002400px;}
.ls8{letter-spacing:0.002759px;}
.lsf{letter-spacing:0.003056px;}
.lsb{letter-spacing:0.003543px;}
.ls13{letter-spacing:0.004765px;}
.ls2{letter-spacing:0.007486px;}
.lse{letter-spacing:2.575486px;}
.ls17{letter-spacing:2.984915px;}
.ls4{letter-spacing:2.989289px;}
.ls14{letter-spacing:2.990915px;}
.ls7{letter-spacing:2.995289px;}
.lsd{letter-spacing:19.919518px;}
.ls16{letter-spacing:19.922759px;}
.lsa{letter-spacing:19.925518px;}
.ls12{letter-spacing:20.702759px;}
.ls11{letter-spacing:35.118109px;}
.ls1{letter-spacing:35.865600px;}
.ls9{letter-spacing:858.776400px;}
.lsc{letter-spacing:995.216400px;}
.ls10{letter-spacing:1048.862759px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws14{word-spacing:-54.838502px;}
.ws9{word-spacing:-45.800371px;}
.ws8{word-spacing:-36.331853px;}
.ws7{word-spacing:-36.260122px;}
.ws4d{word-spacing:-35.112422px;}
.ws112{word-spacing:-19.546752px;}
.ws13{word-spacing:-19.475021px;}
.ws8b{word-spacing:-19.116365px;}
.wsaf{word-spacing:-19.044634px;}
.ws7a{word-spacing:-18.829440px;}
.ws107{word-spacing:-18.757709px;}
.wsdf{word-spacing:-18.614246px;}
.ws98{word-spacing:-18.542515px;}
.ws9a{word-spacing:-18.470784px;}
.wsc8{word-spacing:-18.399053px;}
.ws67{word-spacing:-18.327322px;}
.ws64{word-spacing:-18.255590px;}
.ws21{word-spacing:-18.040397px;}
.ws9f{word-spacing:-17.896934px;}
.ws3d{word-spacing:-17.825203px;}
.wse7{word-spacing:-17.753472px;}
.wsdd{word-spacing:-17.610010px;}
.wsdb{word-spacing:-17.538278px;}
.ws5c{word-spacing:-17.323085px;}
.wsd1{word-spacing:-17.036160px;}
.wsae{word-spacing:-16.964429px;}
.wsad{word-spacing:-16.892698px;}
.ws10b{word-spacing:-16.749235px;}
.wsa3{word-spacing:-16.677504px;}
.ws48{word-spacing:-16.534042px;}
.ws88{word-spacing:-16.390579px;}
.ws92{word-spacing:-16.346060px;}
.ws3f{word-spacing:-16.318848px;}
.wsa4{word-spacing:-16.247117px;}
.ws12{word-spacing:-16.175386px;}
.ws8c{word-spacing:-16.031923px;}
.ws4b{word-spacing:-15.960192px;}
.ws57{word-spacing:-15.888461px;}
.ws83{word-spacing:-15.829597px;}
.ws72{word-spacing:-15.816730px;}
.wsb9{word-spacing:-15.744998px;}
.ws15{word-spacing:-15.743520px;}
.ws2b{word-spacing:-15.673267px;}
.ws37{word-spacing:-15.601536px;}
.wsc6{word-spacing:-15.529805px;}
.wscd{word-spacing:-15.458074px;}
.ws103{word-spacing:-15.386342px;}
.ws46{word-spacing:-15.314611px;}
.ws20{word-spacing:-15.242880px;}
.wsbc{word-spacing:-15.171149px;}
.ws110{word-spacing:-15.099418px;}
.wsf{word-spacing:-15.027686px;}
.wsa9{word-spacing:-14.955955px;}
.ws86{word-spacing:-14.884224px;}
.wsec{word-spacing:-14.812493px;}
.ws16{word-spacing:-14.740762px;}
.ws42{word-spacing:-14.669030px;}
.ws34{word-spacing:-14.525568px;}
.ws66{word-spacing:-14.453837px;}
.ws1e{word-spacing:-14.382106px;}
.ws4c{word-spacing:-14.310374px;}
.wsac{word-spacing:-14.238643px;}
.ws9c{word-spacing:-14.166912px;}
.ws113{word-spacing:-14.095181px;}
.ws7e{word-spacing:-14.023450px;}
.ws114{word-spacing:-13.951718px;}
.ws55{word-spacing:-13.879987px;}
.wscc{word-spacing:-13.808256px;}
.ws60{word-spacing:-13.736525px;}
.ws41{word-spacing:-13.664794px;}
.wsd2{word-spacing:-13.593062px;}
.ws108{word-spacing:-13.521331px;}
.ws68{word-spacing:-13.449600px;}
.wsdc{word-spacing:-13.377869px;}
.ws7b{word-spacing:-13.306138px;}
.ws49{word-spacing:-13.234406px;}
.ws19{word-spacing:-13.162675px;}
.wscf{word-spacing:-13.090944px;}
.ws8e{word-spacing:-13.019213px;}
.wsd5{word-spacing:-12.987629px;}
.wsd7{word-spacing:-12.947482px;}
.ws27{word-spacing:-12.875750px;}
.wsc2{word-spacing:-12.804019px;}
.ws69{word-spacing:-12.732288px;}
.ws3c{word-spacing:-12.660557px;}
.ws62{word-spacing:-12.588826px;}
.ws6d{word-spacing:-12.517094px;}
.ws9b{word-spacing:-12.445363px;}
.ws6e{word-spacing:-12.373632px;}
.ws23{word-spacing:-12.301901px;}
.ws61{word-spacing:-12.230170px;}
.ws6b{word-spacing:-12.158438px;}
.ws5e{word-spacing:-12.086707px;}
.ws31{word-spacing:-12.014976px;}
.ws7f{word-spacing:-11.943245px;}
.ws29{word-spacing:-11.871514px;}
.ws94{word-spacing:-11.799782px;}
.wsc{word-spacing:-11.728051px;}
.ws1c{word-spacing:-11.656320px;}
.ws73{word-spacing:-11.584589px;}
.ws9d{word-spacing:-11.512858px;}
.ws22{word-spacing:-11.441126px;}
.ws87{word-spacing:-11.369395px;}
.ws3e{word-spacing:-11.297664px;}
.ws47{word-spacing:-11.225933px;}
.ws10a{word-spacing:-11.154202px;}
.ws8f{word-spacing:-11.082470px;}
.ws1a{word-spacing:-11.010739px;}
.ws63{word-spacing:-10.939008px;}
.ws90{word-spacing:-10.867277px;}
.ws1d{word-spacing:-10.795546px;}
.ws5d{word-spacing:-10.723814px;}
.ws39{word-spacing:-10.652083px;}
.ws89{word-spacing:-10.580352px;}
.ws71{word-spacing:-10.508621px;}
.ws24{word-spacing:-10.436890px;}
.ws93{word-spacing:-10.365158px;}
.ws84{word-spacing:-10.221696px;}
.ws3b{word-spacing:-10.149965px;}
.wsba{word-spacing:-10.078234px;}
.wsc5{word-spacing:-10.006502px;}
.wsc9{word-spacing:-9.934771px;}
.wsed{word-spacing:-9.863040px;}
.ws10d{word-spacing:-9.791309px;}
.ws59{word-spacing:-9.719578px;}
.wsd9{word-spacing:-9.647846px;}
.wseb{word-spacing:-9.576115px;}
.ws3a{word-spacing:-9.504384px;}
.ws36{word-spacing:-9.289190px;}
.ws6c{word-spacing:-9.217459px;}
.ws44{word-spacing:-9.145728px;}
.ws18{word-spacing:-9.073997px;}
.ws4e{word-spacing:-9.002266px;}
.ws7c{word-spacing:-8.930534px;}
.ws8d{word-spacing:-8.858803px;}
.ws4a{word-spacing:-8.787072px;}
.ws2a{word-spacing:-8.715341px;}
.ws25{word-spacing:-8.643610px;}
.ws5f{word-spacing:-8.571878px;}
.ws1b{word-spacing:-8.500147px;}
.ws45{word-spacing:-8.428416px;}
.ws85{word-spacing:-8.284954px;}
.wsf3{word-spacing:-8.213222px;}
.ws56{word-spacing:-8.141491px;}
.wsf6{word-spacing:-8.069760px;}
.wsbd{word-spacing:-7.998029px;}
.wsee{word-spacing:-7.926298px;}
.wsbf{word-spacing:-7.854566px;}
.ws102{word-spacing:-7.782835px;}
.wsb8{word-spacing:-7.639373px;}
.ws6a{word-spacing:-7.495910px;}
.ws11{word-spacing:-7.424179px;}
.wsa6{word-spacing:-7.352448px;}
.ws10{word-spacing:-7.280717px;}
.ws95{word-spacing:-7.208986px;}
.wsa7{word-spacing:-7.137254px;}
.ws70{word-spacing:-6.993792px;}
.ws97{word-spacing:-6.922061px;}
.ws35{word-spacing:-6.850330px;}
.ws43{word-spacing:-6.778598px;}
.ws101{word-spacing:-6.706867px;}
.ws7d{word-spacing:-6.635136px;}
.ws8a{word-spacing:-6.563405px;}
.ws52{word-spacing:-6.491674px;}
.ws51{word-spacing:-6.419942px;}
.ws111{word-spacing:-6.348211px;}
.wsa8{word-spacing:-6.276480px;}
.wsc7{word-spacing:-6.204749px;}
.ws1f{word-spacing:-6.133018px;}
.wsf5{word-spacing:-6.061286px;}
.wsa2{word-spacing:-5.989555px;}
.ws53{word-spacing:-5.917824px;}
.ws10f{word-spacing:-5.846093px;}
.wsa5{word-spacing:-5.774362px;}
.ws82{word-spacing:-5.702630px;}
.ws79{word-spacing:-5.630899px;}
.wsce{word-spacing:-5.559168px;}
.ws2d{word-spacing:-5.415706px;}
.ws26{word-spacing:-5.272243px;}
.wsd8{word-spacing:-5.200512px;}
.ws10c{word-spacing:-5.128781px;}
.ws40{word-spacing:-5.057050px;}
.ws75{word-spacing:-4.985318px;}
.ws65{word-spacing:-4.913587px;}
.ws5a{word-spacing:-4.841856px;}
.ws78{word-spacing:-4.770125px;}
.ws28{word-spacing:-4.698394px;}
.ws54{word-spacing:-4.626662px;}
.wsbe{word-spacing:-4.554931px;}
.ws9e{word-spacing:-4.483200px;}
.ws6f{word-spacing:-4.411469px;}
.ws58{word-spacing:-4.339738px;}
.ws32{word-spacing:-4.196275px;}
.wsef{word-spacing:-4.124544px;}
.wsb4{word-spacing:-3.981082px;}
.ws10e{word-spacing:-3.909350px;}
.wse6{word-spacing:-3.837619px;}
.ws4f{word-spacing:-3.694157px;}
.ws17{word-spacing:-3.622426px;}
.wsde{word-spacing:-3.550694px;}
.wsda{word-spacing:-3.478963px;}
.ws80{word-spacing:-3.407232px;}
.wsf7{word-spacing:-3.335501px;}
.wsea{word-spacing:-3.192038px;}
.ws74{word-spacing:-3.120307px;}
.wsc0{word-spacing:-3.048576px;}
.ws33{word-spacing:-2.905114px;}
.wsaa{word-spacing:-2.833382px;}
.ws77{word-spacing:-2.761651px;}
.wsf2{word-spacing:-2.689920px;}
.ws76{word-spacing:-2.331264px;}
.ws38{word-spacing:-2.259533px;}
.wsc1{word-spacing:-1.972608px;}
.ws2e{word-spacing:-1.900877px;}
.ws50{word-spacing:-1.829146px;}
.wsca{word-spacing:-1.757414px;}
.ws109{word-spacing:-1.613952px;}
.wscb{word-spacing:-1.327027px;}
.ws2f{word-spacing:-1.111834px;}
.wsd3{word-spacing:-0.896640px;}
.ws30{word-spacing:-0.824909px;}
.ws3{word-spacing:-0.103292px;}
.wsd{word-spacing:-0.071731px;}
.wsfa{word-spacing:-0.065455px;}
.wse{word-spacing:-0.047821px;}
.wsa{word-spacing:0.000000px;}
.ws6{word-spacing:0.753178px;}
.wsb6{word-spacing:11.907379px;}
.ws99{word-spacing:19.552862px;}
.ws106{word-spacing:19.829272px;}
.wsb5{word-spacing:19.835272px;}
.ws105{word-spacing:19.869542px;}
.wsa0{word-spacing:20.134862px;}
.wsd4{word-spacing:21.250823px;}
.wsf8{word-spacing:21.600018px;}
.wsf9{word-spacing:21.665473px;}
.wsd6{word-spacing:22.068419px;}
.wsb7{word-spacing:22.888876px;}
.ws100{word-spacing:23.170928px;}
.ws91{word-spacing:25.034189px;}
.wsbb{word-spacing:26.755738px;}
.ws5{word-spacing:26.827469px;}
.ws1{word-spacing:27.200395px;}
.ws2{word-spacing:27.286472px;}
.ws96{word-spacing:30.838862px;}
.wsa1{word-spacing:32.098862px;}
.ws0{word-spacing:32.227229px;}
.wsb3{word-spacing:36.618778px;}
.ws5b{word-spacing:36.978679px;}
.wsb{word-spacing:37.081972px;}
.wse5{word-spacing:45.083059px;}
.wsab{word-spacing:47.351068px;}
.ws81{word-spacing:51.336323px;}
.wse3{word-spacing:53.188685px;}
.wse4{word-spacing:62.657203px;}
.ws4{word-spacing:64.916736px;}
.wsfd{word-spacing:71.672787px;}
.wsb0{word-spacing:71.695334px;}
.wsf0{word-spacing:85.342595px;}
.wsc3{word-spacing:91.277952px;}
.wsff{word-spacing:97.003717px;}
.wsfc{word-spacing:104.203723px;}
.wsb1{word-spacing:106.843622px;}
.ws2c{word-spacing:111.349207px;}
.wsb2{word-spacing:118.607539px;}
.wse0{word-spacing:122.904597px;}
.wse8{word-spacing:122.910597px;}
.wsfb{word-spacing:133.658293px;}
.wsfe{word-spacing:137.651024px;}
.wsf4{word-spacing:150.682595px;}
.wse9{word-spacing:152.128595px;}
.wsd0{word-spacing:178.861747px;}
.wse2{word-spacing:185.963136px;}
.ws104{word-spacing:189.001511px;}
.wsf1{word-spacing:191.701632px;}
.wse1{word-spacing:195.118595px;}
.wsc4{word-spacing:196.579354px;}
._2f{margin-left:-41.747558px;}
._12{margin-left:-35.865600px;}
._14{margin-left:-34.402182px;}
._18{margin-left:-16.756307px;}
._1b{margin-left:-12.954553px;}
._1d{margin-left:-11.735123px;}
._2b{margin-left:-9.399608px;}
._3{margin-left:-8.056807px;}
._6{margin-left:-6.610735px;}
._1{margin-left:-5.371205px;}
._30{margin-left:-3.873485px;}
._0{margin-left:-2.685602px;}
._a{margin-left:-1.371528px;}
._22{width:1.259614px;}
._2{width:2.685602px;}
._23{width:3.894300px;}
._46{width:5.313304px;}
._13{width:6.556333px;}
._1e{width:8.033894px;}
._8d{width:17.502413px;}
._35{width:18.650112px;}
._1a{width:20.116284px;}
._27{width:21.970916px;}
._d{width:23.384371px;}
._2d{width:24.807547px;}
._26{width:25.844401px;}
._32{width:27.504598px;}
._48{width:28.528934px;}
._2e{width:29.584802px;}
._16{width:31.286268px;}
._5f{width:32.290505px;}
._31{width:33.291912px;}
._1c{width:35.191225px;}
._5{width:36.410656px;}
._47{width:37.833890px;}
._29{width:39.371794px;}
._33{width:40.393301px;}
._2c{width:41.707375px;}
._4{width:43.176223px;}
._17{width:45.190656px;}
._3a{width:46.235076px;}
._10{width:47.537702px;}
._36{width:48.593570px;}
._3b{width:50.427034px;}
._38{width:51.646464px;}
._37{width:53.798400px;}
._28{width:55.838422px;}
._34{width:58.053454px;}
._8e{width:60.093924px;}
._8{width:64.988467px;}
._e{width:67.263782px;}
._25{width:69.292339px;}
._f{width:70.511770px;}
._c{width:71.802931px;}
._24{width:73.165824px;}
._15{width:80.338944px;}
._3d{width:82.020310px;}
._63{width:84.068966px;}
._3e{width:88.157645px;}
._65{width:89.950925px;}
._2a{width:91.313818px;}
._6f{width:93.322291px;}
._3c{width:94.684920px;}
._61{width:96.765389px;}
._62{width:98.773862px;}
._6a{width:101.499648px;}
._86{width:103.552604px;}
._64{width:104.584090px;}
._41{width:106.807757px;}
._6d{width:110.035925px;}
._39{width:111.452500px;}
._81{width:113.236458px;}
._67{width:115.016662px;}
._72{width:116.204808px;}
._82{width:119.671445px;}
._66{width:121.153997px;}
._7e{width:123.040030px;}
._21{width:126.390374px;}
._87{width:127.767379px;}
._7f{width:129.270652px;}
._79{width:130.451018px;}
._84{width:135.147010px;}
._88{width:136.538296px;}
._80{width:137.716478px;}
._7c{width:142.750787px;}
._7b{width:145.832849px;}
._75{width:147.927396px;}
._78{width:152.300693px;}
._7d{width:153.949219px;}
._76{width:155.454675px;}
._7a{width:158.531041px;}
._85{width:159.641678px;}
._6e{width:168.711782px;}
._83{width:170.656458px;}
._74{width:174.737203px;}
._40{width:176.315290px;}
._69{width:177.391258px;}
._4b{width:184.102442px;}
._6b{width:186.214195px;}
._6c{width:187.218432px;}
._70{width:193.028659px;}
._71{width:194.032896px;}
._5e{width:207.518362px;}
._73{width:210.674534px;}
._60{width:226.814054px;}
._68{width:234.274099px;}
._4e{width:237.358541px;}
._4f{width:242.666650px;}
._4d{width:279.639766px;}
._8b{width:301.414502px;}
._89{width:336.491059px;}
._49{width:347.199108px;}
._b{width:391.089967px;}
._8c{width:423.352487px;}
._55{width:424.863898px;}
._8a{width:436.090353px;}
._44{width:438.596105px;}
._77{width:481.827893px;}
._45{width:484.687718px;}
._42{width:538.876322px;}
._5d{width:540.853248px;}
._4a{width:543.794227px;}
._58{width:567.824179px;}
._43{width:587.653538px;}
._50{width:602.972467px;}
._3f{width:608.352307px;}
._54{width:790.908211px;}
._4c{width:849.010483px;}
._5a{width:933.868493px;}
._51{width:969.016781px;}
._5b{width:1018.367846px;}
._53{width:1151.214029px;}
._59{width:1384.412160px;}
._5c{width:1411.383091px;}
._1f{width:1429.275708px;}
._52{width:1446.531379px;}
._11{width:1684.392038px;}
._57{width:1744.717978px;}
._19{width:1895.496960px;}
._56{width:2039.963597px;}
._9{width:2104.521677px;}
._7{width:2301.710746px;}
._20{width:2360.649461px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1e{bottom:85.039500px;}
.y1b0{bottom:129.871500px;}
.y214{bottom:129.984000px;}
.y130{bottom:131.781000px;}
.yde{bottom:131.836500px;}
.yb5{bottom:131.886000px;}
.yca{bottom:133.861500px;}
.yf6{bottom:139.857000px;}
.y1d5{bottom:141.697500px;}
.y69{bottom:145.636500px;}
.y1ee{bottom:146.919000px;}
.y191{bottom:147.234000px;}
.y16f{bottom:147.286500px;}
.ye2{bottom:148.374000px;}
.y111{bottom:150.234000px;}
.yab{bottom:152.976000px;}
.y1af{bottom:156.762000px;}
.y213{bottom:156.874500px;}
.y12f{bottom:158.671500px;}
.ydd{bottom:158.727000px;}
.yb4{bottom:158.776500px;}
.yc9{bottom:160.752000px;}
.y26d{bottom:163.213500px;}
.y8c{bottom:163.390500px;}
.yf5{bottom:166.747500px;}
.y190{bottom:168.327000px;}
.y1d4{bottom:168.588000px;}
.y68{bottom:172.527000px;}
.y1ed{bottom:173.809500px;}
.y16e{bottom:174.177000px;}
.y110{bottom:177.124500px;}
.yaa{bottom:179.868000px;}
.y252{bottom:180.297000px;}
.y1ae{bottom:183.652500px;}
.y212{bottom:183.765000px;}
.y12e{bottom:185.563500px;}
.ydc{bottom:185.617500px;}
.yb3{bottom:185.667000px;}
.yc8{bottom:187.642500px;}
.y18f{bottom:189.996000px;}
.y8b{bottom:190.281000px;}
.yf4{bottom:193.639500px;}
.y1d3{bottom:195.478500px;}
.y67{bottom:199.417500px;}
.y251{bottom:199.906500px;}
.y1ec{bottom:200.700000px;}
.y10f{bottom:204.015000px;}
.ya9{bottom:206.758500px;}
.y1ad{bottom:210.544500px;}
.y211{bottom:210.655500px;}
.y18e{bottom:211.665000px;}
.y12d{bottom:212.454000px;}
.ydb{bottom:212.509500px;}
.yb2{bottom:212.559000px;}
.yc7{bottom:214.534500px;}
.y16d{bottom:216.012000px;}
.y15a{bottom:216.594000px;}
.y8a{bottom:217.171500px;}
.y9{bottom:217.689000px;}
.yf3{bottom:220.530000px;}
.y250{bottom:220.977000px;}
.y1d2{bottom:222.369000px;}
.y146{bottom:224.512500px;}
.y66{bottom:226.308000px;}
.y1eb{bottom:227.592000px;}
.y10e{bottom:230.905500px;}
.y18d{bottom:233.334000px;}
.ya8{bottom:233.649000px;}
.y1ac{bottom:237.435000px;}
.y210{bottom:237.547500px;}
.y12c{bottom:239.344500px;}
.yda{bottom:239.400000px;}
.yb1{bottom:239.449500px;}
.y24f{bottom:241.300500px;}
.yc6{bottom:241.425000px;}
.y16c{bottom:242.904000px;}
.y159{bottom:243.484500px;}
.y89{bottom:244.062000px;}
.yf2{bottom:247.420500px;}
.y1d1{bottom:249.261000px;}
.y145{bottom:251.403000px;}
.y65{bottom:253.200000px;}
.y1ea{bottom:254.482500px;}
.y18c{bottom:255.750000px;}
.y10d{bottom:257.797500px;}
.ya7{bottom:260.539500px;}
.y24e{bottom:261.624000px;}
.y1ab{bottom:264.325500px;}
.y20f{bottom:264.438000px;}
.yd9{bottom:266.290500px;}
.yb0{bottom:266.340000px;}
.yc5{bottom:268.315500px;}
.y16b{bottom:269.794500px;}
.y8{bottom:270.091500px;}
.y158{bottom:270.375000px;}
.y88{bottom:270.954000px;}
.yf1{bottom:274.311000px;}
.y1d0{bottom:276.151500px;}
.y18b{bottom:277.417500px;}
.y144{bottom:278.293500px;}
.y64{bottom:280.090500px;}
.y12b{bottom:281.179500px;}
.y1e9{bottom:281.373000px;}
.y24d{bottom:281.949000px;}
.y10c{bottom:284.688000px;}
.ya6{bottom:287.431500px;}
.y1aa{bottom:291.216000px;}
.y20e{bottom:291.328500px;}
.yd8{bottom:293.181000px;}
.yaf{bottom:293.230500px;}
.yc4{bottom:295.206000px;}
.y157{bottom:297.267000px;}
.y87{bottom:297.844500px;}
.y18a{bottom:299.086500px;}
.yf0{bottom:301.203000px;}
.y24c{bottom:302.272500px;}
.y1cf{bottom:303.042000px;}
.y143{bottom:305.185500px;}
.y63{bottom:306.981000px;}
.y1e8{bottom:308.263500px;}
.y10b{bottom:311.578500px;}
.y16a{bottom:311.629500px;}
.ya5{bottom:314.322000px;}
.y1a9{bottom:318.106500px;}
.y20d{bottom:318.219000px;}
.yd7{bottom:320.071500px;}
.y189{bottom:320.755500px;}
.yc3{bottom:322.096500px;}
.y24b{bottom:322.596000px;}
.y12a{bottom:323.014500px;}
.y156{bottom:324.157500px;}
.y86{bottom:324.735000px;}
.yef{bottom:328.093500px;}
.y7{bottom:328.984500px;}
.y22f{bottom:329.686500px;}
.y1ce{bottom:329.932500px;}
.yae{bottom:331.701000px;}
.y142{bottom:332.076000px;}
.y62{bottom:333.871500px;}
.y1e7{bottom:335.155500px;}
.y10a{bottom:338.469000px;}
.y169{bottom:338.520000px;}
.y255{bottom:340.047000px;}
.ya4{bottom:341.212500px;}
.y24a{bottom:342.919500px;}
.y188{bottom:343.171500px;}
.y1a8{bottom:344.998500px;}
.y20c{bottom:345.109500px;}
.yd6{bottom:346.963500px;}
.yc2{bottom:348.988500px;}
.y155{bottom:351.048000px;}
.y85{bottom:351.625500px;}
.yee{bottom:354.984000px;}
.y1cd{bottom:356.823000px;}
.y141{bottom:358.966500px;}
.y61{bottom:360.763500px;}
.y1e6{bottom:362.046000px;}
.y249{bottom:363.243000px;}
.y187{bottom:364.840500px;}
.y129{bottom:364.849500px;}
.y109{bottom:365.361000px;}
.y254{bottom:366.937500px;}
.ya3{bottom:368.103000px;}
.y1a7{bottom:371.889000px;}
.y20b{bottom:372.001500px;}
.yd5{bottom:373.854000px;}
.yc1{bottom:375.879000px;}
.y154{bottom:377.938500px;}
.y84{bottom:378.517500px;}
.y168{bottom:380.355000px;}
.yed{bottom:381.874500px;}
.y248{bottom:383.568000px;}
.y1cc{bottom:383.715000px;}
.y140{bottom:385.857000px;}
.y186{bottom:386.509500px;}
.y22e{bottom:387.474000px;}
.y60{bottom:387.654000px;}
.y1e5{bottom:388.936500px;}
.y5c{bottom:393.829500px;}
.ya2{bottom:394.993500px;}
.y1a6{bottom:398.779500px;}
.y128{bottom:398.800500px;}
.y20a{bottom:398.892000px;}
.yd4{bottom:400.744500px;}
.yc0{bottom:402.769500px;}
.y127{bottom:403.794000px;}
.y247{bottom:403.891500px;}
.y153{bottom:404.829000px;}
.y83{bottom:405.408000px;}
.y167{bottom:407.245500px;}
.y185{bottom:408.177000px;}
.yec{bottom:408.766500px;}
.y1cb{bottom:410.605500px;}
.yad{bottom:411.091500px;}
.y108{bottom:411.678000px;}
.y22d{bottom:414.364500px;}
.y5f{bottom:414.544500px;}
.y1e4{bottom:415.827000px;}
.y5b{bottom:420.720000px;}
.y267{bottom:421.308000px;}
.ya1{bottom:421.885500px;}
.y246{bottom:424.215000px;}
.y13f{bottom:424.327500px;}
.y1a5{bottom:425.670000px;}
.y209{bottom:425.782500px;}
.yd3{bottom:427.635000px;}
.ybf{bottom:429.660000px;}
.y184{bottom:430.593000px;}
.y152{bottom:431.721000px;}
.y82{bottom:432.298500px;}
.yeb{bottom:435.657000px;}
.y126{bottom:436.588500px;}
.y1ca{bottom:437.496000px;}
.y43{bottom:438.577500px;}
.y22c{bottom:441.256500px;}
.y5e{bottom:441.435000px;}
.y266{bottom:442.401000px;}
.y1e3{bottom:442.719000px;}
.y245{bottom:444.538500px;}
.y125{bottom:447.348000px;}
.y5a{bottom:447.610500px;}
.ya0{bottom:448.776000px;}
.y166{bottom:449.080500px;}
.y183{bottom:452.262000px;}
.y1a4{bottom:452.562000px;}
.y208{bottom:452.673000px;}
.y107{bottom:453.513000px;}
.yd2{bottom:454.527000px;}
.y253{bottom:455.235000px;}
.ybe{bottom:456.552000px;}
.y151{bottom:458.611500px;}
.y81{bottom:459.189000px;}
.yea{bottom:462.547500px;}
.y265{bottom:464.070000px;}
.y1c9{bottom:464.386500px;}
.y269{bottom:465.151500px;}
.y244{bottom:465.609000px;}
.y5d{bottom:468.325500px;}
.y1e2{bottom:469.609500px;}
.y1d{bottom:470.560500px;}
.y182{bottom:473.931000px;}
.y59{bottom:474.501000px;}
.y165{bottom:475.971000px;}
.y13e{bottom:476.305500px;}
.y1a3{bottom:479.452500px;}
.y207{bottom:479.565000px;}
.y42{bottom:480.412500px;}
.yd1{bottom:481.417500px;}
.ybd{bottom:483.442500px;}
.y150{bottom:485.502000px;}
.y264{bottom:485.739000px;}
.y243{bottom:485.934000px;}
.y80{bottom:486.081000px;}
.y22b{bottom:486.433500px;}
.y9f{bottom:487.245000px;}
.ye9{bottom:489.438000px;}
.y1c8{bottom:491.278500px;}
.y33{bottom:495.217500px;}
.y106{bottom:495.348000px;}
.y181{bottom:495.600000px;}
.y23e{bottom:496.095000px;}
.y124{bottom:496.492500px;}
.y1e1{bottom:496.500000px;}
.y58{bottom:501.393000px;}
.y13d{bottom:503.196000px;}
.y242{bottom:506.257500px;}
.y1a2{bottom:506.343000px;}
.y206{bottom:506.455500px;}
.y263{bottom:507.406500px;}
.y22a{bottom:507.526500px;}
.yd0{bottom:508.308000px;}
.ybc{bottom:510.333000px;}
.y14f{bottom:512.392500px;}
.y7f{bottom:512.971500px;}
.y1c{bottom:515.005500px;}
.ye8{bottom:516.330000px;}
.y23d{bottom:516.418500px;}
.y164{bottom:517.806000px;}
.y180{bottom:518.016000px;}
.y1c7{bottom:518.169000px;}
.y32{bottom:522.108000px;}
.y41{bottom:522.247500px;}
.y1e0{bottom:523.390500px;}
.y23a{bottom:526.581000px;}
.yf8{bottom:527.388000px;}
.y57{bottom:528.283500px;}
.y262{bottom:529.075500px;}
.y229{bottom:529.942500px;}
.y13c{bottom:530.086500px;}
.y1a1{bottom:533.233500px;}
.y205{bottom:533.346000px;}
.ycf{bottom:535.198500px;}
.y6{bottom:535.515000px;}
.y235{bottom:536.743500px;}
.y105{bottom:537.183000px;}
.ybb{bottom:537.223500px;}
.y14e{bottom:539.284500px;}
.y17e{bottom:539.685000px;}
.y7e{bottom:539.862000px;}
.ye7{bottom:543.220500px;}
.y163{bottom:544.696500px;}
.y1c6{bottom:545.059500px;}
.y123{bottom:545.638500px;}
.y9e{bottom:545.715000px;}
.y239{bottom:546.904500px;}
.y31{bottom:548.998500px;}
.y1df{bottom:550.282500px;}
.y261{bottom:550.744500px;}
.y228{bottom:551.610000px;}
.y56{bottom:555.174000px;}
.y13b{bottom:556.977000px;}
.y234{bottom:557.067000px;}
.y1b{bottom:559.452000px;}
.y1a0{bottom:560.125500px;}
.y204{bottom:560.236500px;}
.y17f{bottom:561.352500px;}
.y26c{bottom:561.564000px;}
.yce{bottom:562.090500px;}
.y104{bottom:564.073500px;}
.y40{bottom:564.082500px;}
.yba{bottom:564.115500px;}
.y7d{bottom:566.752500px;}
.y231{bottom:567.202500px;}
.y238{bottom:567.228000px;}
.ye6{bottom:570.111000px;}
.y162{bottom:571.587000px;}
.y1c5{bottom:571.950000px;}
.y260{bottom:572.413500px;}
.y122{bottom:572.529000px;}
.y9d{bottom:572.605500px;}
.y227{bottom:573.279000px;}
.ye1{bottom:573.945000px;}
.y30{bottom:575.889000px;}
.y1de{bottom:577.173000px;}
.y233{bottom:577.390500px;}
.y55{bottom:582.064500px;}
.y17d{bottom:582.249000px;}
.y13a{bottom:583.869000px;}
.y1a{bottom:586.342500px;}
.y19f{bottom:587.016000px;}
.y14d{bottom:587.097000px;}
.y237{bottom:587.553000px;}
.y5{bottom:587.917500px;}
.ycd{bottom:588.981000px;}
.yb9{bottom:591.006000px;}
.y7c{bottom:593.643000px;}
.y25f{bottom:594.082500px;}
.y226{bottom:594.948000px;}
.ye5{bottom:597.001500px;}
.y232{bottom:597.714000px;}
.y1c4{bottom:598.842000px;}
.y121{bottom:599.419500px;}
.y9c{bottom:599.496000px;}
.y2f{bottom:602.781000px;}
.y1dd{bottom:604.063500px;}
.y3f{bottom:605.917500px;}
.y236{bottom:607.876500px;}
.y14c{bottom:608.190000px;}
.y54{bottom:608.956500px;}
.y103{bottom:610.392000px;}
.y139{bottom:610.759500px;}
.y203{bottom:611.535000px;}
.y19{bottom:613.233000px;}
.y161{bottom:613.422000px;}
.y19e{bottom:613.906500px;}
.y25e{bottom:615.750000px;}
.ycc{bottom:615.871500px;}
.y225{bottom:616.617000px;}
.yb8{bottom:617.896500px;}
.y23c{bottom:618.037500px;}
.y7b{bottom:620.535000px;}
.y1c3{bottom:625.732500px;}
.y120{bottom:626.310000px;}
.y9b{bottom:626.386500px;}
.y241{bottom:628.200000px;}
.y2e{bottom:629.671500px;}
.y14b{bottom:629.857500px;}
.y1dc{bottom:630.954000px;}
.y202{bottom:632.628000px;}
.y53{bottom:635.847000px;}
.y102{bottom:637.282500px;}
.y25d{bottom:637.419000px;}
.y138{bottom:637.650000px;}
.y224{bottom:638.286000px;}
.y23b{bottom:638.361000px;}
.y23f{bottom:638.362500px;}
.y18{bottom:640.125000px;}
.y160{bottom:640.314000px;}
.y19d{bottom:640.797000px;}
.y4{bottom:646.810500px;}
.y7a{bottom:647.425500px;}
.y3e{bottom:647.752500px;}
.ye4{bottom:648.309000px;}
.y240{bottom:648.523500px;}
.y14a{bottom:651.526500px;}
.ye0{bottom:652.161000px;}
.y1c2{bottom:652.623000px;}
.y11f{bottom:653.202000px;}
.y9a{bottom:653.278500px;}
.y17c{bottom:653.377500px;}
.y201{bottom:655.044000px;}
.y2d{bottom:656.562000px;}
.y25c{bottom:659.088000px;}
.y223{bottom:659.955000px;}
.y52{bottom:662.737500px;}
.y137{bottom:664.540500px;}
.y26b{bottom:667.002000px;}
.ycb{bottom:667.179000px;}
.y19c{bottom:667.689000px;}
.yb7{bottom:669.204000px;}
.y230{bottom:669.474000px;}
.y149{bottom:673.195500px;}
.y79{bottom:674.316000px;}
.y200{bottom:676.713000px;}
.y11e{bottom:680.092500px;}
.y99{bottom:680.169000px;}
.y17b{bottom:680.269500px;}
.y25b{bottom:680.757000px;}
.y222{bottom:681.622500px;}
.y15f{bottom:682.147500px;}
.y1db{bottom:682.261500px;}
.y2c{bottom:683.452500px;}
.y101{bottom:683.601000px;}
.y17{bottom:684.570000px;}
.y3{bottom:687.610500px;}
.y3d{bottom:689.587500px;}
.y51{bottom:689.628000px;}
.y136{bottom:691.432500px;}
.y19b{bottom:694.579500px;}
.y148{bottom:695.611500px;}
.y1ff{bottom:698.382000px;}
.y78{bottom:701.206500px;}
.y25a{bottom:702.426000px;}
.y221{bottom:703.291500px;}
.y1da{bottom:703.354500px;}
.y1c1{bottom:703.930500px;}
.y98{bottom:707.059500px;}
.y17a{bottom:707.160000px;}
.y15e{bottom:709.039500px;}
.y2b{bottom:710.344500px;}
.y16{bottom:711.460500px;}
.y50{bottom:716.518500px;}
.y147{bottom:717.502500px;}
.y135{bottom:718.323000px;}
.y11d{bottom:718.561500px;}
.y1fe{bottom:720.051000px;}
.y19a{bottom:721.470000px;}
.y259{bottom:724.093500px;}
.y220{bottom:724.960500px;}
.y1c0{bottom:725.022000px;}
.y100{bottom:725.436000px;}
.y1d9{bottom:725.770500px;}
.y77{bottom:728.098500px;}
.y3c{bottom:731.422500px;}
.y97{bottom:733.950000px;}
.y15d{bottom:735.930000px;}
.y2a{bottom:737.235000px;}
.y15{bottom:738.352500px;}
.y1fd{bottom:741.718500px;}
.y4f{bottom:743.410500px;}
.y134{bottom:745.213500px;}
.y258{bottom:745.762500px;}
.y21f{bottom:746.629500px;}
.y1bf{bottom:747.438000px;}
.y199{bottom:748.360500px;}
.y179{bottom:748.995000px;}
.y76{bottom:754.989000px;}
.y96{bottom:760.842000px;}
.y1fc{bottom:763.387500px;}
.y29{bottom:764.125500px;}
.y14{bottom:765.243000px;}
.yff{bottom:767.269500px;}
.y21e{bottom:768.298500px;}
.y1be{bottom:769.107000px;}
.y4e{bottom:770.301000px;}
.y133{bottom:772.104000px;}
.y3b{bottom:773.256000px;}
.y198{bottom:775.251000px;}
.y178{bottom:775.885500px;}
.y11c{bottom:777.031500px;}
.y15c{bottom:777.765000px;}
.y75{bottom:781.879500px;}
.y1fb{bottom:785.056500px;}
.y257{bottom:785.589000px;}
.y95{bottom:787.732500px;}
.y21d{bottom:790.714500px;}
.y1bd{bottom:790.776000px;}
.y28{bottom:791.016000px;}
.y13{bottom:792.133500px;}
.y4d{bottom:797.191500px;}
.y132{bottom:798.996000px;}
.y197{bottom:802.143000px;}
.y177{bottom:802.776000px;}
.y11b{bottom:803.922000px;}
.y15b{bottom:804.655500px;}
.y1fa{bottom:806.725500px;}
.y256{bottom:807.258000px;}
.y74{bottom:808.770000px;}
.yfe{bottom:809.104500px;}
.y218{bottom:812.233500px;}
.y21c{bottom:812.382000px;}
.y1bc{bottom:812.445000px;}
.y94{bottom:814.623000px;}
.y3a{bottom:815.091000px;}
.y27{bottom:817.908000px;}
.y12{bottom:819.024000px;}
.y4c{bottom:824.082000px;}
.y1f9{bottom:828.394500px;}
.y196{bottom:829.033500px;}
.y217{bottom:833.901000px;}
.y21b{bottom:834.051000px;}
.y1bb{bottom:834.114000px;}
.y73{bottom:835.662000px;}
.yfd{bottom:835.996500px;}
.yac{bottom:836.644500px;}
.y131{bottom:837.465000px;}
.y93{bottom:841.513500px;}
.y176{bottom:844.611000px;}
.y26{bottom:844.798500px;}
.y11{bottom:845.914500px;}
.y1f8{bottom:850.063500px;}
.y4b{bottom:850.974000px;}
.y11a{bottom:855.220500px;}
.y21a{bottom:855.720000px;}
.y1ba{bottom:855.783000px;}
.y195{bottom:855.924000px;}
.y39{bottom:856.926000px;}
.y2{bottom:858.271500px;}
.y72{bottom:862.552500px;}
.y268{bottom:863.500500px;}
.y92{bottom:868.404000px;}
.y175{bottom:871.501500px;}
.y25{bottom:871.689000px;}
.y1f7{bottom:871.731000px;}
.y119{bottom:876.313500px;}
.y219{bottom:877.389000px;}
.y1b9{bottom:877.450500px;}
.y4a{bottom:877.864500px;}
.yfc{bottom:882.313500px;}
.y194{bottom:882.814500px;}
.y71{bottom:889.443000px;}
.y10{bottom:890.361000px;}
.y1f6{bottom:893.400000px;}
.y118{bottom:897.982500px;}
.y216{bottom:898.284000px;}
.y174{bottom:898.393500px;}
.y24{bottom:898.579500px;}
.y38{bottom:898.761000px;}
.y1b8{bottom:899.119500px;}
.y49{bottom:904.755000px;}
.y91{bottom:906.874500px;}
.yfb{bottom:909.204000px;}
.y193{bottom:909.706500px;}
.y1f5{bottom:915.816000px;}
.y70{bottom:916.333500px;}
.yf{bottom:917.251500px;}
.y117{bottom:919.650000px;}
.y215{bottom:919.953000px;}
.y1b7{bottom:920.788500px;}
.y1{bottom:924.583500px;}
.y23{bottom:925.470000px;}
.y48{bottom:931.645500px;}
.yfa{bottom:936.096000px;}
.y1f4{bottom:937.485000px;}
.y173{bottom:940.228500px;}
.y37{bottom:940.596000px;}
.y116{bottom:941.319000px;}
.y1b6{bottom:942.457500px;}
.y6f{bottom:943.225500px;}
.ye{bottom:944.142000px;}
.y1f1{bottom:948.169500px;}
.y192{bottom:948.175500px;}
.y22{bottom:952.362000px;}
.y47{bottom:958.537500px;}
.y1f3{bottom:959.154000px;}
.y115{bottom:962.988000px;}
.y1b5{bottom:964.126500px;}
.y90{bottom:965.343000px;}
.y172{bottom:967.119000px;}
.y6e{bottom:970.116000px;}
.yd{bottom:971.034000px;}
.yf7{bottom:972.195000px;}
.yf9{bottom:974.565000px;}
.y21{bottom:979.252500px;}
.y1f2{bottom:980.823000px;}
.y36{bottom:982.431000px;}
.y114{bottom:984.657000px;}
.y46{bottom:985.428000px;}
.y1b4{bottom:985.794000px;}
.y1d8{bottom:986.542500px;}
.y8f{bottom:992.233500px;}
.y6d{bottom:997.006500px;}
.y1f0{bottom:1001.718000px;}
.y20{bottom:1006.143000px;}
.y113{bottom:1007.073000px;}
.y1b3{bottom:1008.210000px;}
.y171{bottom:1008.954000px;}
.y45{bottom:1012.318500px;}
.yc{bottom:1015.479000px;}
.y1d6{bottom:1018.896000px;}
.y8e{bottom:1019.125500px;}
.y1ef{bottom:1023.387000px;}
.y6c{bottom:1023.897000px;}
.y35{bottom:1024.266000px;}
.y112{bottom:1027.968000px;}
.y1b2{bottom:1029.879000px;}
.y1f{bottom:1033.033500px;}
.y170{bottom:1035.844500px;}
.y44{bottom:1039.209000px;}
.y6b{bottom:1050.787500px;}
.y1d7{bottom:1051.548000px;}
.yb{bottom:1059.925500px;}
.y8d{bottom:1063.770000px;}
.y26a{bottom:1065.351000px;}
.y34{bottom:1066.101000px;}
.y1b1{bottom:1072.443000px;}
.y6a{bottom:1077.679500px;}
.ydf{bottom:1077.732000px;}
.yb6{bottom:1092.748500px;}
.ye3{bottom:1094.112000px;}
.ya{bottom:1104.570000px;}
.hc{height:33.187496px;}
.h13{height:46.210948px;}
.h5{height:50.283571px;}
.ha{height:50.642227px;}
.hb{height:53.798400px;}
.h6{height:53.870131px;}
.h8{height:59.215496px;}
.h7{height:59.221496px;}
.h9{height:60.426194px;}
.h3{height:61.200889px;}
.hd{height:62.014726px;}
.h4{height:72.511265px;}
.h2{height:73.131019px;}
.he{height:73.844131px;}
.h10{height:140.540131px;}
.hf{height:140.546131px;}
.h11{height:892.914000px;}
.h12{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.xa{left:85.039500px;}
.x16{left:89.901000px;}
.x3f{left:94.981500px;}
.x40{left:96.444000px;}
.x39{left:97.501500px;}
.x3a{left:98.964000px;}
.x38{left:100.671000px;}
.xf{left:102.972000px;}
.x41{left:104.245500px;}
.x34{left:105.913500px;}
.x3{left:108.483000px;}
.xb{left:111.372000px;}
.x2c{left:113.197500px;}
.xe{left:114.306000px;}
.x73{left:117.439500px;}
.x24{left:121.438500px;}
.x11{left:126.831000px;}
.x17{left:128.937000px;}
.x15{left:134.578500px;}
.x6{left:138.141000px;}
.x6c{left:139.740000px;}
.x6d{left:141.096000px;}
.x6b{left:142.677000px;}
.x14{left:143.778000px;}
.x48{left:147.538500px;}
.xc{left:151.747500px;}
.x31{left:161.928000px;}
.x33{left:163.390500px;}
.x30{left:165.097500px;}
.x32{left:167.047500px;}
.x2d{left:170.341500px;}
.x72{left:178.657500px;}
.x71{left:183.045000px;}
.x70{left:187.434000px;}
.x1f{left:191.017500px;}
.x6f{left:195.876000px;}
.x23{left:198.910500px;}
.x8{left:204.361500px;}
.x22{left:217.260000px;}
.x12{left:219.718500px;}
.x2f{left:234.475500px;}
.x2b{left:238.947000px;}
.x19{left:247.978500px;}
.x25{left:249.952500px;}
.x49{left:256.240500px;}
.x5{left:258.201000px;}
.x13{left:263.545500px;}
.x1{left:267.580500px;}
.x21{left:269.434500px;}
.x18{left:278.310000px;}
.x7{left:285.090000px;}
.x2{left:287.805000px;}
.x4a{left:295.381500px;}
.x43{left:296.383500px;}
.x3b{left:308.134500px;}
.x42{left:309.841500px;}
.x35{left:320.229000px;}
.x1a{left:322.162500px;}
.x20{left:331.435500px;}
.x4{left:350.098500px;}
.x1b{left:356.274000px;}
.x9{left:368.995500px;}
.x2e{left:378.268500px;}
.x4c{left:418.486500px;}
.x4b{left:424.818000px;}
.x1c{left:436.518000px;}
.x10{left:437.679000px;}
.xd{left:442.068000px;}
.x1e{left:447.033000px;}
.x36{left:452.031000px;}
.x6e{left:456.865500px;}
.x1d{left:459.364500px;}
.x3c{left:469.482000px;}
.x3e{left:484.420500px;}
.x47{left:487.833000px;}
.x26{left:500.910000px;}
.x46{left:519.405000px;}
.x4d{left:522.558000px;}
.x27{left:526.264500px;}
.x4e{left:537.247500px;}
.x44{left:538.374000px;}
.x37{left:539.415000px;}
.x4f{left:561.024000px;}
.x3d{left:584.416500px;}
.x45{left:589.672500px;}
.x2a{left:637.819500px;}
.x28{left:645.814500px;}
.x53{left:676.440000px;}
.x50{left:681.594000px;}
.x51{left:687.963000px;}
.x29{left:694.626000px;}
.x52{left:698.362500px;}
.x5b{left:798.633000px;}
.x58{left:815.133000px;}
.x54{left:817.120500px;}
.x56{left:822.771000px;}
.x57{left:824.394000px;}
.x59{left:826.884000px;}
.x55{left:834.342000px;}
.x5a{left:837.055500px;}
.x5e{left:953.826000px;}
.x5c{left:958.980000px;}
.x5d{left:963.087000px;}
.x5f{left:965.577000px;}
.x61{left:969.642000px;}
.x62{left:971.632500px;}
.x60{left:975.747000px;}
.x68{left:1082.529000px;}
.x6a{left:1088.676000px;}
.x67{left:1105.176000px;}
.x63{left:1107.163500px;}
.x65{left:1112.814000px;}
.x66{left:1114.437000px;}
.x64{left:1124.385000px;}
.x69{left:1127.098500px;}
@media print{
.v8{vertical-align:-61.904000pt;}
.v2{vertical-align:-9.562667pt;}
.v3{vertical-align:-6.485333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.192000pt;}
.v5{vertical-align:17.754667pt;}
.v1{vertical-align:23.141333pt;}
.v4{vertical-align:26.389333pt;}
.v7{vertical-align:38.522667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000676pt;}
.ls3{letter-spacing:0.001145pt;}
.ls6{letter-spacing:0.001321pt;}
.ls5{letter-spacing:0.002133pt;}
.ls8{letter-spacing:0.002452pt;}
.lsf{letter-spacing:0.002717pt;}
.lsb{letter-spacing:0.003149pt;}
.ls13{letter-spacing:0.004236pt;}
.ls2{letter-spacing:0.006654pt;}
.lse{letter-spacing:2.289321pt;}
.ls17{letter-spacing:2.653258pt;}
.ls4{letter-spacing:2.657146pt;}
.ls14{letter-spacing:2.658591pt;}
.ls7{letter-spacing:2.662479pt;}
.lsd{letter-spacing:17.706238pt;}
.ls16{letter-spacing:17.709119pt;}
.lsa{letter-spacing:17.711572pt;}
.ls12{letter-spacing:18.402452pt;}
.ls11{letter-spacing:31.216097pt;}
.ls1{letter-spacing:31.880533pt;}
.ls9{letter-spacing:763.356800pt;}
.lsc{letter-spacing:884.636800pt;}
.ls10{letter-spacing:932.322452pt;}
.ws14{word-spacing:-48.745335pt;}
.ws9{word-spacing:-40.711441pt;}
.ws8{word-spacing:-32.294980pt;}
.ws7{word-spacing:-32.231219pt;}
.ws4d{word-spacing:-31.211042pt;}
.ws112{word-spacing:-17.374891pt;}
.ws13{word-spacing:-17.311130pt;}
.ws8b{word-spacing:-16.992324pt;}
.wsaf{word-spacing:-16.928563pt;}
.ws7a{word-spacing:-16.737280pt;}
.ws107{word-spacing:-16.673519pt;}
.wsdf{word-spacing:-16.545997pt;}
.ws98{word-spacing:-16.482236pt;}
.ws9a{word-spacing:-16.418475pt;}
.wsc8{word-spacing:-16.354714pt;}
.ws67{word-spacing:-16.290953pt;}
.ws64{word-spacing:-16.227191pt;}
.ws21{word-spacing:-16.035908pt;}
.ws9f{word-spacing:-15.908386pt;}
.ws3d{word-spacing:-15.844625pt;}
.wse7{word-spacing:-15.780864pt;}
.wsdd{word-spacing:-15.653342pt;}
.wsdb{word-spacing:-15.589581pt;}
.ws5c{word-spacing:-15.398298pt;}
.wsd1{word-spacing:-15.143253pt;}
.wsae{word-spacing:-15.079492pt;}
.wsad{word-spacing:-15.015731pt;}
.ws10b{word-spacing:-14.888209pt;}
.wsa3{word-spacing:-14.824448pt;}
.ws48{word-spacing:-14.696926pt;}
.ws88{word-spacing:-14.569404pt;}
.ws92{word-spacing:-14.529831pt;}
.ws3f{word-spacing:-14.505643pt;}
.wsa4{word-spacing:-14.441882pt;}
.ws12{word-spacing:-14.378121pt;}
.ws8c{word-spacing:-14.250598pt;}
.ws4b{word-spacing:-14.186837pt;}
.ws57{word-spacing:-14.123076pt;}
.ws83{word-spacing:-14.070753pt;}
.ws72{word-spacing:-14.059315pt;}
.wsb9{word-spacing:-13.995554pt;}
.ws15{word-spacing:-13.994240pt;}
.ws2b{word-spacing:-13.931793pt;}
.ws37{word-spacing:-13.868032pt;}
.wsc6{word-spacing:-13.804271pt;}
.wscd{word-spacing:-13.740510pt;}
.ws103{word-spacing:-13.676749pt;}
.ws46{word-spacing:-13.612988pt;}
.ws20{word-spacing:-13.549227pt;}
.wsbc{word-spacing:-13.485466pt;}
.ws110{word-spacing:-13.421705pt;}
.wsf{word-spacing:-13.357943pt;}
.wsa9{word-spacing:-13.294182pt;}
.ws86{word-spacing:-13.230421pt;}
.wsec{word-spacing:-13.166660pt;}
.ws16{word-spacing:-13.102899pt;}
.ws42{word-spacing:-13.039138pt;}
.ws34{word-spacing:-12.911616pt;}
.ws66{word-spacing:-12.847855pt;}
.ws1e{word-spacing:-12.784094pt;}
.ws4c{word-spacing:-12.720333pt;}
.wsac{word-spacing:-12.656572pt;}
.ws9c{word-spacing:-12.592811pt;}
.ws113{word-spacing:-12.529050pt;}
.ws7e{word-spacing:-12.465289pt;}
.ws114{word-spacing:-12.401527pt;}
.ws55{word-spacing:-12.337766pt;}
.wscc{word-spacing:-12.274005pt;}
.ws60{word-spacing:-12.210244pt;}
.ws41{word-spacing:-12.146483pt;}
.wsd2{word-spacing:-12.082722pt;}
.ws108{word-spacing:-12.018961pt;}
.ws68{word-spacing:-11.955200pt;}
.wsdc{word-spacing:-11.891439pt;}
.ws7b{word-spacing:-11.827678pt;}
.ws49{word-spacing:-11.763917pt;}
.ws19{word-spacing:-11.700156pt;}
.wscf{word-spacing:-11.636395pt;}
.ws8e{word-spacing:-11.572634pt;}
.wsd5{word-spacing:-11.544559pt;}
.wsd7{word-spacing:-11.508873pt;}
.ws27{word-spacing:-11.445111pt;}
.wsc2{word-spacing:-11.381350pt;}
.ws69{word-spacing:-11.317589pt;}
.ws3c{word-spacing:-11.253828pt;}
.ws62{word-spacing:-11.190067pt;}
.ws6d{word-spacing:-11.126306pt;}
.ws9b{word-spacing:-11.062545pt;}
.ws6e{word-spacing:-10.998784pt;}
.ws23{word-spacing:-10.935023pt;}
.ws61{word-spacing:-10.871262pt;}
.ws6b{word-spacing:-10.807501pt;}
.ws5e{word-spacing:-10.743740pt;}
.ws31{word-spacing:-10.679979pt;}
.ws7f{word-spacing:-10.616218pt;}
.ws29{word-spacing:-10.552457pt;}
.ws94{word-spacing:-10.488695pt;}
.wsc{word-spacing:-10.424934pt;}
.ws1c{word-spacing:-10.361173pt;}
.ws73{word-spacing:-10.297412pt;}
.ws9d{word-spacing:-10.233651pt;}
.ws22{word-spacing:-10.169890pt;}
.ws87{word-spacing:-10.106129pt;}
.ws3e{word-spacing:-10.042368pt;}
.ws47{word-spacing:-9.978607pt;}
.ws10a{word-spacing:-9.914846pt;}
.ws8f{word-spacing:-9.851085pt;}
.ws1a{word-spacing:-9.787324pt;}
.ws63{word-spacing:-9.723563pt;}
.ws90{word-spacing:-9.659802pt;}
.ws1d{word-spacing:-9.596041pt;}
.ws5d{word-spacing:-9.532279pt;}
.ws39{word-spacing:-9.468518pt;}
.ws89{word-spacing:-9.404757pt;}
.ws71{word-spacing:-9.340996pt;}
.ws24{word-spacing:-9.277235pt;}
.ws93{word-spacing:-9.213474pt;}
.ws84{word-spacing:-9.085952pt;}
.ws3b{word-spacing:-9.022191pt;}
.wsba{word-spacing:-8.958430pt;}
.wsc5{word-spacing:-8.894669pt;}
.wsc9{word-spacing:-8.830908pt;}
.wsed{word-spacing:-8.767147pt;}
.ws10d{word-spacing:-8.703386pt;}
.ws59{word-spacing:-8.639625pt;}
.wsd9{word-spacing:-8.575863pt;}
.wseb{word-spacing:-8.512102pt;}
.ws3a{word-spacing:-8.448341pt;}
.ws36{word-spacing:-8.257058pt;}
.ws6c{word-spacing:-8.193297pt;}
.ws44{word-spacing:-8.129536pt;}
.ws18{word-spacing:-8.065775pt;}
.ws4e{word-spacing:-8.002014pt;}
.ws7c{word-spacing:-7.938253pt;}
.ws8d{word-spacing:-7.874492pt;}
.ws4a{word-spacing:-7.810731pt;}
.ws2a{word-spacing:-7.746970pt;}
.ws25{word-spacing:-7.683209pt;}
.ws5f{word-spacing:-7.619447pt;}
.ws1b{word-spacing:-7.555686pt;}
.ws45{word-spacing:-7.491925pt;}
.ws85{word-spacing:-7.364403pt;}
.wsf3{word-spacing:-7.300642pt;}
.ws56{word-spacing:-7.236881pt;}
.wsf6{word-spacing:-7.173120pt;}
.wsbd{word-spacing:-7.109359pt;}
.wsee{word-spacing:-7.045598pt;}
.wsbf{word-spacing:-6.981837pt;}
.ws102{word-spacing:-6.918076pt;}
.wsb8{word-spacing:-6.790554pt;}
.ws6a{word-spacing:-6.663031pt;}
.ws11{word-spacing:-6.599270pt;}
.wsa6{word-spacing:-6.535509pt;}
.ws10{word-spacing:-6.471748pt;}
.ws95{word-spacing:-6.407987pt;}
.wsa7{word-spacing:-6.344226pt;}
.ws70{word-spacing:-6.216704pt;}
.ws97{word-spacing:-6.152943pt;}
.ws35{word-spacing:-6.089182pt;}
.ws43{word-spacing:-6.025421pt;}
.ws101{word-spacing:-5.961660pt;}
.ws7d{word-spacing:-5.897899pt;}
.ws8a{word-spacing:-5.834138pt;}
.ws52{word-spacing:-5.770377pt;}
.ws51{word-spacing:-5.706615pt;}
.ws111{word-spacing:-5.642854pt;}
.wsa8{word-spacing:-5.579093pt;}
.wsc7{word-spacing:-5.515332pt;}
.ws1f{word-spacing:-5.451571pt;}
.wsf5{word-spacing:-5.387810pt;}
.wsa2{word-spacing:-5.324049pt;}
.ws53{word-spacing:-5.260288pt;}
.ws10f{word-spacing:-5.196527pt;}
.wsa5{word-spacing:-5.132766pt;}
.ws82{word-spacing:-5.069005pt;}
.ws79{word-spacing:-5.005244pt;}
.wsce{word-spacing:-4.941483pt;}
.ws2d{word-spacing:-4.813961pt;}
.ws26{word-spacing:-4.686438pt;}
.wsd8{word-spacing:-4.622677pt;}
.ws10c{word-spacing:-4.558916pt;}
.ws40{word-spacing:-4.495155pt;}
.ws75{word-spacing:-4.431394pt;}
.ws65{word-spacing:-4.367633pt;}
.ws5a{word-spacing:-4.303872pt;}
.ws78{word-spacing:-4.240111pt;}
.ws28{word-spacing:-4.176350pt;}
.ws54{word-spacing:-4.112589pt;}
.wsbe{word-spacing:-4.048828pt;}
.ws9e{word-spacing:-3.985067pt;}
.ws6f{word-spacing:-3.921306pt;}
.ws58{word-spacing:-3.857545pt;}
.ws32{word-spacing:-3.730022pt;}
.wsef{word-spacing:-3.666261pt;}
.wsb4{word-spacing:-3.538739pt;}
.ws10e{word-spacing:-3.474978pt;}
.wse6{word-spacing:-3.411217pt;}
.ws4f{word-spacing:-3.283695pt;}
.ws17{word-spacing:-3.219934pt;}
.wsde{word-spacing:-3.156173pt;}
.wsda{word-spacing:-3.092412pt;}
.ws80{word-spacing:-3.028651pt;}
.wsf7{word-spacing:-2.964890pt;}
.wsea{word-spacing:-2.837367pt;}
.ws74{word-spacing:-2.773606pt;}
.wsc0{word-spacing:-2.709845pt;}
.ws33{word-spacing:-2.582323pt;}
.wsaa{word-spacing:-2.518562pt;}
.ws77{word-spacing:-2.454801pt;}
.wsf2{word-spacing:-2.391040pt;}
.ws76{word-spacing:-2.072235pt;}
.ws38{word-spacing:-2.008474pt;}
.wsc1{word-spacing:-1.753429pt;}
.ws2e{word-spacing:-1.689668pt;}
.ws50{word-spacing:-1.625907pt;}
.wsca{word-spacing:-1.562146pt;}
.ws109{word-spacing:-1.434624pt;}
.wscb{word-spacing:-1.179580pt;}
.ws2f{word-spacing:-0.988297pt;}
.wsd3{word-spacing:-0.797013pt;}
.ws30{word-spacing:-0.733252pt;}
.ws3{word-spacing:-0.091815pt;}
.wsd{word-spacing:-0.063761pt;}
.wsfa{word-spacing:-0.058182pt;}
.wse{word-spacing:-0.042507pt;}
.wsa{word-spacing:0.000000pt;}
.ws6{word-spacing:0.669491pt;}
.wsb6{word-spacing:10.584337pt;}
.ws99{word-spacing:17.380322pt;}
.ws106{word-spacing:17.626020pt;}
.wsb5{word-spacing:17.631353pt;}
.ws105{word-spacing:17.661815pt;}
.wsa0{word-spacing:17.897655pt;}
.wsd4{word-spacing:18.889620pt;}
.wsf8{word-spacing:19.200016pt;}
.wsf9{word-spacing:19.258198pt;}
.wsd6{word-spacing:19.616372pt;}
.wsb7{word-spacing:20.345667pt;}
.ws100{word-spacing:20.596381pt;}
.ws91{word-spacing:22.252612pt;}
.wsbb{word-spacing:23.782878pt;}
.ws5{word-spacing:23.846639pt;}
.ws1{word-spacing:24.178129pt;}
.ws2{word-spacing:24.254642pt;}
.ws96{word-spacing:27.412322pt;}
.wsa1{word-spacing:28.532322pt;}
.ws0{word-spacing:28.646426pt;}
.wsb3{word-spacing:32.550025pt;}
.ws5b{word-spacing:32.869937pt;}
.wsb{word-spacing:32.961753pt;}
.wse5{word-spacing:40.073830pt;}
.wsab{word-spacing:42.089838pt;}
.ws81{word-spacing:45.632287pt;}
.wse3{word-spacing:47.278831pt;}
.wse4{word-spacing:55.695292pt;}
.ws4{word-spacing:57.703765pt;}
.wsfd{word-spacing:63.709144pt;}
.wsb0{word-spacing:63.729186pt;}
.wsf0{word-spacing:75.860084pt;}
.wsc3{word-spacing:81.135957pt;}
.wsff{word-spacing:86.225526pt;}
.wsfc{word-spacing:92.625532pt;}
.wsb1{word-spacing:94.972109pt;}
.ws2c{word-spacing:98.977073pt;}
.wsb2{word-spacing:105.428924pt;}
.wse0{word-spacing:109.248531pt;}
.wse8{word-spacing:109.253864pt;}
.wsfb{word-spacing:118.807372pt;}
.wsfe{word-spacing:122.356466pt;}
.wsf4{word-spacing:133.940084pt;}
.wse9{word-spacing:135.225417pt;}
.wsd0{word-spacing:158.988220pt;}
.wse2{word-spacing:165.300565pt;}
.ws104{word-spacing:168.001343pt;}
.wsf1{word-spacing:170.401451pt;}
.wse1{word-spacing:173.438751pt;}
.wsc4{word-spacing:174.737203pt;}
._2f{margin-left:-37.108941pt;}
._12{margin-left:-31.880533pt;}
._14{margin-left:-30.579717pt;}
._18{margin-left:-14.894495pt;}
._1b{margin-left:-11.515158pt;}
._1d{margin-left:-10.431220pt;}
._2b{margin-left:-8.355207pt;}
._3{margin-left:-7.161606pt;}
._6{margin-left:-5.876209pt;}
._1{margin-left:-4.774404pt;}
._30{margin-left:-3.443098pt;}
._0{margin-left:-2.387202pt;}
._a{margin-left:-1.219136pt;}
._22{width:1.119657pt;}
._2{width:2.387202pt;}
._23{width:3.461600pt;}
._46{width:4.722937pt;}
._13{width:5.827852pt;}
._1e{width:7.141239pt;}
._8d{width:15.557700pt;}
._35{width:16.577877pt;}
._1a{width:17.881141pt;}
._27{width:19.529703pt;}
._d{width:20.786108pt;}
._2d{width:22.051153pt;}
._26{width:22.972801pt;}
._32{width:24.448531pt;}
._48{width:25.359053pt;}
._2e{width:26.297602pt;}
._16{width:27.810016pt;}
._5f{width:28.702671pt;}
._31{width:29.592811pt;}
._1c{width:31.281089pt;}
._5{width:32.365027pt;}
._47{width:33.630125pt;}
._29{width:34.997150pt;}
._33{width:35.905156pt;}
._2c{width:37.073222pt;}
._4{width:38.378865pt;}
._17{width:40.169472pt;}
._3a{width:41.097845pt;}
._10{width:42.255735pt;}
._36{width:43.194285pt;}
._3b{width:44.824030pt;}
._38{width:45.907968pt;}
._37{width:47.820800pt;}
._28{width:49.634153pt;}
._34{width:51.603070pt;}
._8e{width:53.416821pt;}
._8{width:57.767526pt;}
._e{width:59.790029pt;}
._25{width:61.593190pt;}
._f{width:62.677129pt;}
._c{width:63.824828pt;}
._24{width:65.036288pt;}
._15{width:71.412395pt;}
._3d{width:72.906942pt;}
._63{width:74.727970pt;}
._3e{width:78.362351pt;}
._65{width:79.956378pt;}
._2a{width:81.167838pt;}
._6f{width:82.953148pt;}
._3c{width:84.164373pt;}
._61{width:86.013679pt;}
._62{width:87.798989pt;}
._6a{width:90.221909pt;}
._86{width:92.046759pt;}
._64{width:92.963635pt;}
._41{width:94.940228pt;}
._6d{width:97.809711pt;}
._39{width:99.068889pt;}
._81{width:100.654629pt;}
._67{width:102.237033pt;}
._72{width:103.293163pt;}
._82{width:106.374618pt;}
._66{width:107.692442pt;}
._7e{width:109.368915pt;}
._21{width:112.346999pt;}
._87{width:113.571004pt;}
._7f{width:114.907246pt;}
._79{width:115.956460pt;}
._84{width:120.130675pt;}
._88{width:121.367374pt;}
._80{width:122.414647pt;}
._7c{width:126.889588pt;}
._7b{width:129.629199pt;}
._75{width:131.491019pt;}
._78{width:135.378394pt;}
._7d{width:136.843750pt;}
._76{width:138.181933pt;}
._7a{width:140.916481pt;}
._85{width:141.903714pt;}
._6e{width:149.966029pt;}
._83{width:151.694629pt;}
._74{width:155.321958pt;}
._40{width:156.724702pt;}
._69{width:157.681118pt;}
._4b{width:163.646615pt;}
._6b{width:165.523729pt;}
._6c{width:166.416384pt;}
._70{width:171.581030pt;}
._71{width:172.473685pt;}
._5e{width:184.460766pt;}
._73{width:187.266253pt;}
._60{width:201.612493pt;}
._68{width:208.243644pt;}
._4e{width:210.985370pt;}
._4f{width:215.703689pt;}
._4d{width:248.568681pt;}
._8b{width:267.924002pt;}
._89{width:299.103164pt;}
._49{width:308.621429pt;}
._b{width:347.635526pt;}
._8c{width:376.313322pt;}
._55{width:377.656798pt;}
._8a{width:387.635869pt;}
._44{width:389.863204pt;}
._77{width:428.291461pt;}
._45{width:430.833527pt;}
._42{width:479.001175pt;}
._5d{width:480.758443pt;}
._4a{width:483.372646pt;}
._58{width:504.732604pt;}
._43{width:522.358701pt;}
._50{width:535.975526pt;}
._3f{width:540.757606pt;}
._54{width:703.029521pt;}
._4c{width:754.675985pt;}
._5a{width:830.105327pt;}
._51{width:861.348250pt;}
._5b{width:905.215863pt;}
._53{width:1023.301359pt;}
._59{width:1230.588587pt;}
._5c{width:1254.562748pt;}
._1f{width:1270.467296pt;}
._52{width:1285.805670pt;}
._11{width:1497.237367pt;}
._57{width:1550.860425pt;}
._19{width:1684.886187pt;}
._56{width:1813.300975pt;}
._9{width:1870.685935pt;}
._7{width:2045.965107pt;}
._20{width:2098.355077pt;}
.fs4{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:75.590667pt;}
.y1b0{bottom:115.441333pt;}
.y214{bottom:115.541333pt;}
.y130{bottom:117.138667pt;}
.yde{bottom:117.188000pt;}
.yb5{bottom:117.232000pt;}
.yca{bottom:118.988000pt;}
.yf6{bottom:124.317333pt;}
.y1d5{bottom:125.953333pt;}
.y69{bottom:129.454667pt;}
.y1ee{bottom:130.594667pt;}
.y191{bottom:130.874667pt;}
.y16f{bottom:130.921333pt;}
.ye2{bottom:131.888000pt;}
.y111{bottom:133.541333pt;}
.yab{bottom:135.978667pt;}
.y1af{bottom:139.344000pt;}
.y213{bottom:139.444000pt;}
.y12f{bottom:141.041333pt;}
.ydd{bottom:141.090667pt;}
.yb4{bottom:141.134667pt;}
.yc9{bottom:142.890667pt;}
.y26d{bottom:145.078667pt;}
.y8c{bottom:145.236000pt;}
.yf5{bottom:148.220000pt;}
.y190{bottom:149.624000pt;}
.y1d4{bottom:149.856000pt;}
.y68{bottom:153.357333pt;}
.y1ed{bottom:154.497333pt;}
.y16e{bottom:154.824000pt;}
.y110{bottom:157.444000pt;}
.yaa{bottom:159.882667pt;}
.y252{bottom:160.264000pt;}
.y1ae{bottom:163.246667pt;}
.y212{bottom:163.346667pt;}
.y12e{bottom:164.945333pt;}
.ydc{bottom:164.993333pt;}
.yb3{bottom:165.037333pt;}
.yc8{bottom:166.793333pt;}
.y18f{bottom:168.885333pt;}
.y8b{bottom:169.138667pt;}
.yf4{bottom:172.124000pt;}
.y1d3{bottom:173.758667pt;}
.y67{bottom:177.260000pt;}
.y251{bottom:177.694667pt;}
.y1ec{bottom:178.400000pt;}
.y10f{bottom:181.346667pt;}
.ya9{bottom:183.785333pt;}
.y1ad{bottom:187.150667pt;}
.y211{bottom:187.249333pt;}
.y18e{bottom:188.146667pt;}
.y12d{bottom:188.848000pt;}
.ydb{bottom:188.897333pt;}
.yb2{bottom:188.941333pt;}
.yc7{bottom:190.697333pt;}
.y16d{bottom:192.010667pt;}
.y15a{bottom:192.528000pt;}
.y8a{bottom:193.041333pt;}
.y9{bottom:193.501333pt;}
.yf3{bottom:196.026667pt;}
.y250{bottom:196.424000pt;}
.y1d2{bottom:197.661333pt;}
.y146{bottom:199.566667pt;}
.y66{bottom:201.162667pt;}
.y1eb{bottom:202.304000pt;}
.y10e{bottom:205.249333pt;}
.y18d{bottom:207.408000pt;}
.ya8{bottom:207.688000pt;}
.y1ac{bottom:211.053333pt;}
.y210{bottom:211.153333pt;}
.y12c{bottom:212.750667pt;}
.yda{bottom:212.800000pt;}
.yb1{bottom:212.844000pt;}
.y24f{bottom:214.489333pt;}
.yc6{bottom:214.600000pt;}
.y16c{bottom:215.914667pt;}
.y159{bottom:216.430667pt;}
.y89{bottom:216.944000pt;}
.yf2{bottom:219.929333pt;}
.y1d1{bottom:221.565333pt;}
.y145{bottom:223.469333pt;}
.y65{bottom:225.066667pt;}
.y1ea{bottom:226.206667pt;}
.y18c{bottom:227.333333pt;}
.y10d{bottom:229.153333pt;}
.ya7{bottom:231.590667pt;}
.y24e{bottom:232.554667pt;}
.y1ab{bottom:234.956000pt;}
.y20f{bottom:235.056000pt;}
.yd9{bottom:236.702667pt;}
.yb0{bottom:236.746667pt;}
.yc5{bottom:238.502667pt;}
.y16b{bottom:239.817333pt;}
.y8{bottom:240.081333pt;}
.y158{bottom:240.333333pt;}
.y88{bottom:240.848000pt;}
.yf1{bottom:243.832000pt;}
.y1d0{bottom:245.468000pt;}
.y18b{bottom:246.593333pt;}
.y144{bottom:247.372000pt;}
.y64{bottom:248.969333pt;}
.y12b{bottom:249.937333pt;}
.y1e9{bottom:250.109333pt;}
.y24d{bottom:250.621333pt;}
.y10c{bottom:253.056000pt;}
.ya6{bottom:255.494667pt;}
.y1aa{bottom:258.858667pt;}
.y20e{bottom:258.958667pt;}
.yd8{bottom:260.605333pt;}
.yaf{bottom:260.649333pt;}
.yc4{bottom:262.405333pt;}
.y157{bottom:264.237333pt;}
.y87{bottom:264.750667pt;}
.y18a{bottom:265.854667pt;}
.yf0{bottom:267.736000pt;}
.y24c{bottom:268.686667pt;}
.y1cf{bottom:269.370667pt;}
.y143{bottom:271.276000pt;}
.y63{bottom:272.872000pt;}
.y1e8{bottom:274.012000pt;}
.y10b{bottom:276.958667pt;}
.y16a{bottom:277.004000pt;}
.ya5{bottom:279.397333pt;}
.y1a9{bottom:282.761333pt;}
.y20d{bottom:282.861333pt;}
.yd7{bottom:284.508000pt;}
.y189{bottom:285.116000pt;}
.yc3{bottom:286.308000pt;}
.y24b{bottom:286.752000pt;}
.y12a{bottom:287.124000pt;}
.y156{bottom:288.140000pt;}
.y86{bottom:288.653333pt;}
.yef{bottom:291.638667pt;}
.y7{bottom:292.430667pt;}
.y22f{bottom:293.054667pt;}
.y1ce{bottom:293.273333pt;}
.yae{bottom:294.845333pt;}
.y142{bottom:295.178667pt;}
.y62{bottom:296.774667pt;}
.y1e7{bottom:297.916000pt;}
.y10a{bottom:300.861333pt;}
.y169{bottom:300.906667pt;}
.y255{bottom:302.264000pt;}
.ya4{bottom:303.300000pt;}
.y24a{bottom:304.817333pt;}
.y188{bottom:305.041333pt;}
.y1a8{bottom:306.665333pt;}
.y20c{bottom:306.764000pt;}
.yd6{bottom:308.412000pt;}
.yc2{bottom:310.212000pt;}
.y155{bottom:312.042667pt;}
.y85{bottom:312.556000pt;}
.yee{bottom:315.541333pt;}
.y1cd{bottom:317.176000pt;}
.y141{bottom:319.081333pt;}
.y61{bottom:320.678667pt;}
.y1e6{bottom:321.818667pt;}
.y249{bottom:322.882667pt;}
.y187{bottom:324.302667pt;}
.y129{bottom:324.310667pt;}
.y109{bottom:324.765333pt;}
.y254{bottom:326.166667pt;}
.ya3{bottom:327.202667pt;}
.y1a7{bottom:330.568000pt;}
.y20b{bottom:330.668000pt;}
.yd5{bottom:332.314667pt;}
.yc1{bottom:334.114667pt;}
.y154{bottom:335.945333pt;}
.y84{bottom:336.460000pt;}
.y168{bottom:338.093333pt;}
.yed{bottom:339.444000pt;}
.y248{bottom:340.949333pt;}
.y1cc{bottom:341.080000pt;}
.y140{bottom:342.984000pt;}
.y186{bottom:343.564000pt;}
.y22e{bottom:344.421333pt;}
.y60{bottom:344.581333pt;}
.y1e5{bottom:345.721333pt;}
.y5c{bottom:350.070667pt;}
.ya2{bottom:351.105333pt;}
.y1a6{bottom:354.470667pt;}
.y128{bottom:354.489333pt;}
.y20a{bottom:354.570667pt;}
.yd4{bottom:356.217333pt;}
.yc0{bottom:358.017333pt;}
.y127{bottom:358.928000pt;}
.y247{bottom:359.014667pt;}
.y153{bottom:359.848000pt;}
.y83{bottom:360.362667pt;}
.y167{bottom:361.996000pt;}
.y185{bottom:362.824000pt;}
.yec{bottom:363.348000pt;}
.y1cb{bottom:364.982667pt;}
.yad{bottom:365.414667pt;}
.y108{bottom:365.936000pt;}
.y22d{bottom:368.324000pt;}
.y5f{bottom:368.484000pt;}
.y1e4{bottom:369.624000pt;}
.y5b{bottom:373.973333pt;}
.y267{bottom:374.496000pt;}
.ya1{bottom:375.009333pt;}
.y246{bottom:377.080000pt;}
.y13f{bottom:377.180000pt;}
.y1a5{bottom:378.373333pt;}
.y209{bottom:378.473333pt;}
.yd3{bottom:380.120000pt;}
.ybf{bottom:381.920000pt;}
.y184{bottom:382.749333pt;}
.y152{bottom:383.752000pt;}
.y82{bottom:384.265333pt;}
.yeb{bottom:387.250667pt;}
.y126{bottom:388.078667pt;}
.y1ca{bottom:388.885333pt;}
.y43{bottom:389.846667pt;}
.y22c{bottom:392.228000pt;}
.y5e{bottom:392.386667pt;}
.y266{bottom:393.245333pt;}
.y1e3{bottom:393.528000pt;}
.y245{bottom:395.145333pt;}
.y125{bottom:397.642667pt;}
.y5a{bottom:397.876000pt;}
.ya0{bottom:398.912000pt;}
.y166{bottom:399.182667pt;}
.y183{bottom:402.010667pt;}
.y1a4{bottom:402.277333pt;}
.y208{bottom:402.376000pt;}
.y107{bottom:403.122667pt;}
.yd2{bottom:404.024000pt;}
.y253{bottom:404.653333pt;}
.ybe{bottom:405.824000pt;}
.y151{bottom:407.654667pt;}
.y81{bottom:408.168000pt;}
.yea{bottom:411.153333pt;}
.y265{bottom:412.506667pt;}
.y1c9{bottom:412.788000pt;}
.y269{bottom:413.468000pt;}
.y244{bottom:413.874667pt;}
.y5d{bottom:416.289333pt;}
.y1e2{bottom:417.430667pt;}
.y1d{bottom:418.276000pt;}
.y182{bottom:421.272000pt;}
.y59{bottom:421.778667pt;}
.y165{bottom:423.085333pt;}
.y13e{bottom:423.382667pt;}
.y1a3{bottom:426.180000pt;}
.y207{bottom:426.280000pt;}
.y42{bottom:427.033333pt;}
.yd1{bottom:427.926667pt;}
.ybd{bottom:429.726667pt;}
.y150{bottom:431.557333pt;}
.y264{bottom:431.768000pt;}
.y243{bottom:431.941333pt;}
.y80{bottom:432.072000pt;}
.y22b{bottom:432.385333pt;}
.y9f{bottom:433.106667pt;}
.ye9{bottom:435.056000pt;}
.y1c8{bottom:436.692000pt;}
.y33{bottom:440.193333pt;}
.y106{bottom:440.309333pt;}
.y181{bottom:440.533333pt;}
.y23e{bottom:440.973333pt;}
.y124{bottom:441.326667pt;}
.y1e1{bottom:441.333333pt;}
.y58{bottom:445.682667pt;}
.y13d{bottom:447.285333pt;}
.y242{bottom:450.006667pt;}
.y1a2{bottom:450.082667pt;}
.y206{bottom:450.182667pt;}
.y263{bottom:451.028000pt;}
.y22a{bottom:451.134667pt;}
.yd0{bottom:451.829333pt;}
.ybc{bottom:453.629333pt;}
.y14f{bottom:455.460000pt;}
.y7f{bottom:455.974667pt;}
.y1c{bottom:457.782667pt;}
.ye8{bottom:458.960000pt;}
.y23d{bottom:459.038667pt;}
.y164{bottom:460.272000pt;}
.y180{bottom:460.458667pt;}
.y1c7{bottom:460.594667pt;}
.y32{bottom:464.096000pt;}
.y41{bottom:464.220000pt;}
.y1e0{bottom:465.236000pt;}
.y23a{bottom:468.072000pt;}
.yf8{bottom:468.789333pt;}
.y57{bottom:469.585333pt;}
.y262{bottom:470.289333pt;}
.y229{bottom:471.060000pt;}
.y13c{bottom:471.188000pt;}
.y1a1{bottom:473.985333pt;}
.y205{bottom:474.085333pt;}
.ycf{bottom:475.732000pt;}
.y6{bottom:476.013333pt;}
.y235{bottom:477.105333pt;}
.y105{bottom:477.496000pt;}
.ybb{bottom:477.532000pt;}
.y14e{bottom:479.364000pt;}
.y17e{bottom:479.720000pt;}
.y7e{bottom:479.877333pt;}
.ye7{bottom:482.862667pt;}
.y163{bottom:484.174667pt;}
.y1c6{bottom:484.497333pt;}
.y123{bottom:485.012000pt;}
.y9e{bottom:485.080000pt;}
.y239{bottom:486.137333pt;}
.y31{bottom:487.998667pt;}
.y1df{bottom:489.140000pt;}
.y261{bottom:489.550667pt;}
.y228{bottom:490.320000pt;}
.y56{bottom:493.488000pt;}
.y13b{bottom:495.090667pt;}
.y234{bottom:495.170667pt;}
.y1b{bottom:497.290667pt;}
.y1a0{bottom:497.889333pt;}
.y204{bottom:497.988000pt;}
.y17f{bottom:498.980000pt;}
.y26c{bottom:499.168000pt;}
.yce{bottom:499.636000pt;}
.y104{bottom:501.398667pt;}
.y40{bottom:501.406667pt;}
.yba{bottom:501.436000pt;}
.y7d{bottom:503.780000pt;}
.y231{bottom:504.180000pt;}
.y238{bottom:504.202667pt;}
.ye6{bottom:506.765333pt;}
.y162{bottom:508.077333pt;}
.y1c5{bottom:508.400000pt;}
.y260{bottom:508.812000pt;}
.y122{bottom:508.914667pt;}
.y9d{bottom:508.982667pt;}
.y227{bottom:509.581333pt;}
.ye1{bottom:510.173333pt;}
.y30{bottom:511.901333pt;}
.y1de{bottom:513.042667pt;}
.y233{bottom:513.236000pt;}
.y55{bottom:517.390667pt;}
.y17d{bottom:517.554667pt;}
.y13a{bottom:518.994667pt;}
.y1a{bottom:521.193333pt;}
.y19f{bottom:521.792000pt;}
.y14d{bottom:521.864000pt;}
.y237{bottom:522.269333pt;}
.y5{bottom:522.593333pt;}
.ycd{bottom:523.538667pt;}
.yb9{bottom:525.338667pt;}
.y7c{bottom:527.682667pt;}
.y25f{bottom:528.073333pt;}
.y226{bottom:528.842667pt;}
.ye5{bottom:530.668000pt;}
.y232{bottom:531.301333pt;}
.y1c4{bottom:532.304000pt;}
.y121{bottom:532.817333pt;}
.y9c{bottom:532.885333pt;}
.y2f{bottom:535.805333pt;}
.y1dd{bottom:536.945333pt;}
.y3f{bottom:538.593333pt;}
.y236{bottom:540.334667pt;}
.y14c{bottom:540.613333pt;}
.y54{bottom:541.294667pt;}
.y103{bottom:542.570667pt;}
.y139{bottom:542.897333pt;}
.y203{bottom:543.586667pt;}
.y19{bottom:545.096000pt;}
.y161{bottom:545.264000pt;}
.y19e{bottom:545.694667pt;}
.y25e{bottom:547.333333pt;}
.ycc{bottom:547.441333pt;}
.y225{bottom:548.104000pt;}
.yb8{bottom:549.241333pt;}
.y23c{bottom:549.366667pt;}
.y7b{bottom:551.586667pt;}
.y1c3{bottom:556.206667pt;}
.y120{bottom:556.720000pt;}
.y9b{bottom:556.788000pt;}
.y241{bottom:558.400000pt;}
.y2e{bottom:559.708000pt;}
.y14b{bottom:559.873333pt;}
.y1dc{bottom:560.848000pt;}
.y202{bottom:562.336000pt;}
.y53{bottom:565.197333pt;}
.y102{bottom:566.473333pt;}
.y25d{bottom:566.594667pt;}
.y138{bottom:566.800000pt;}
.y224{bottom:567.365333pt;}
.y23b{bottom:567.432000pt;}
.y23f{bottom:567.433333pt;}
.y18{bottom:569.000000pt;}
.y160{bottom:569.168000pt;}
.y19d{bottom:569.597333pt;}
.y4{bottom:574.942667pt;}
.y7a{bottom:575.489333pt;}
.y3e{bottom:575.780000pt;}
.ye4{bottom:576.274667pt;}
.y240{bottom:576.465333pt;}
.y14a{bottom:579.134667pt;}
.ye0{bottom:579.698667pt;}
.y1c2{bottom:580.109333pt;}
.y11f{bottom:580.624000pt;}
.y9a{bottom:580.692000pt;}
.y17c{bottom:580.780000pt;}
.y201{bottom:582.261333pt;}
.y2d{bottom:583.610667pt;}
.y25c{bottom:585.856000pt;}
.y223{bottom:586.626667pt;}
.y52{bottom:589.100000pt;}
.y137{bottom:590.702667pt;}
.y26b{bottom:592.890667pt;}
.ycb{bottom:593.048000pt;}
.y19c{bottom:593.501333pt;}
.yb7{bottom:594.848000pt;}
.y230{bottom:595.088000pt;}
.y149{bottom:598.396000pt;}
.y79{bottom:599.392000pt;}
.y200{bottom:601.522667pt;}
.y11e{bottom:604.526667pt;}
.y99{bottom:604.594667pt;}
.y17b{bottom:604.684000pt;}
.y25b{bottom:605.117333pt;}
.y222{bottom:605.886667pt;}
.y15f{bottom:606.353333pt;}
.y1db{bottom:606.454667pt;}
.y2c{bottom:607.513333pt;}
.y101{bottom:607.645333pt;}
.y17{bottom:608.506667pt;}
.y3{bottom:611.209333pt;}
.y3d{bottom:612.966667pt;}
.y51{bottom:613.002667pt;}
.y136{bottom:614.606667pt;}
.y19b{bottom:617.404000pt;}
.y148{bottom:618.321333pt;}
.y1ff{bottom:620.784000pt;}
.y78{bottom:623.294667pt;}
.y25a{bottom:624.378667pt;}
.y221{bottom:625.148000pt;}
.y1da{bottom:625.204000pt;}
.y1c1{bottom:625.716000pt;}
.y98{bottom:628.497333pt;}
.y17a{bottom:628.586667pt;}
.y15e{bottom:630.257333pt;}
.y2b{bottom:631.417333pt;}
.y16{bottom:632.409333pt;}
.y50{bottom:636.905333pt;}
.y147{bottom:637.780000pt;}
.y135{bottom:638.509333pt;}
.y11d{bottom:638.721333pt;}
.y1fe{bottom:640.045333pt;}
.y19a{bottom:641.306667pt;}
.y259{bottom:643.638667pt;}
.y220{bottom:644.409333pt;}
.y1c0{bottom:644.464000pt;}
.y100{bottom:644.832000pt;}
.y1d9{bottom:645.129333pt;}
.y77{bottom:647.198667pt;}
.y3c{bottom:650.153333pt;}
.y97{bottom:652.400000pt;}
.y15d{bottom:654.160000pt;}
.y2a{bottom:655.320000pt;}
.y15{bottom:656.313333pt;}
.y1fd{bottom:659.305333pt;}
.y4f{bottom:660.809333pt;}
.y134{bottom:662.412000pt;}
.y258{bottom:662.900000pt;}
.y21f{bottom:663.670667pt;}
.y1bf{bottom:664.389333pt;}
.y199{bottom:665.209333pt;}
.y179{bottom:665.773333pt;}
.y76{bottom:671.101333pt;}
.y96{bottom:676.304000pt;}
.y1fc{bottom:678.566667pt;}
.y29{bottom:679.222667pt;}
.y14{bottom:680.216000pt;}
.yff{bottom:682.017333pt;}
.y21e{bottom:682.932000pt;}
.y1be{bottom:683.650667pt;}
.y4e{bottom:684.712000pt;}
.y133{bottom:686.314667pt;}
.y3b{bottom:687.338667pt;}
.y198{bottom:689.112000pt;}
.y178{bottom:689.676000pt;}
.y11c{bottom:690.694667pt;}
.y15c{bottom:691.346667pt;}
.y75{bottom:695.004000pt;}
.y1fb{bottom:697.828000pt;}
.y257{bottom:698.301333pt;}
.y95{bottom:700.206667pt;}
.y21d{bottom:702.857333pt;}
.y1bd{bottom:702.912000pt;}
.y28{bottom:703.125333pt;}
.y13{bottom:704.118667pt;}
.y4d{bottom:708.614667pt;}
.y132{bottom:710.218667pt;}
.y197{bottom:713.016000pt;}
.y177{bottom:713.578667pt;}
.y11b{bottom:714.597333pt;}
.y15b{bottom:715.249333pt;}
.y1fa{bottom:717.089333pt;}
.y256{bottom:717.562667pt;}
.y74{bottom:718.906667pt;}
.yfe{bottom:719.204000pt;}
.y218{bottom:721.985333pt;}
.y21c{bottom:722.117333pt;}
.y1bc{bottom:722.173333pt;}
.y94{bottom:724.109333pt;}
.y3a{bottom:724.525333pt;}
.y27{bottom:727.029333pt;}
.y12{bottom:728.021333pt;}
.y4c{bottom:732.517333pt;}
.y1f9{bottom:736.350667pt;}
.y196{bottom:736.918667pt;}
.y217{bottom:741.245333pt;}
.y21b{bottom:741.378667pt;}
.y1bb{bottom:741.434667pt;}
.y73{bottom:742.810667pt;}
.yfd{bottom:743.108000pt;}
.yac{bottom:743.684000pt;}
.y131{bottom:744.413333pt;}
.y93{bottom:748.012000pt;}
.y176{bottom:750.765333pt;}
.y26{bottom:750.932000pt;}
.y11{bottom:751.924000pt;}
.y1f8{bottom:755.612000pt;}
.y4b{bottom:756.421333pt;}
.y11a{bottom:760.196000pt;}
.y21a{bottom:760.640000pt;}
.y1ba{bottom:760.696000pt;}
.y195{bottom:760.821333pt;}
.y39{bottom:761.712000pt;}
.y2{bottom:762.908000pt;}
.y72{bottom:766.713333pt;}
.y268{bottom:767.556000pt;}
.y92{bottom:771.914667pt;}
.y175{bottom:774.668000pt;}
.y25{bottom:774.834667pt;}
.y1f7{bottom:774.872000pt;}
.y119{bottom:778.945333pt;}
.y219{bottom:779.901333pt;}
.y1b9{bottom:779.956000pt;}
.y4a{bottom:780.324000pt;}
.yfc{bottom:784.278667pt;}
.y194{bottom:784.724000pt;}
.y71{bottom:790.616000pt;}
.y10{bottom:791.432000pt;}
.y1f6{bottom:794.133333pt;}
.y118{bottom:798.206667pt;}
.y216{bottom:798.474667pt;}
.y174{bottom:798.572000pt;}
.y24{bottom:798.737333pt;}
.y38{bottom:798.898667pt;}
.y1b8{bottom:799.217333pt;}
.y49{bottom:804.226667pt;}
.y91{bottom:806.110667pt;}
.yfb{bottom:808.181333pt;}
.y193{bottom:808.628000pt;}
.y1f5{bottom:814.058667pt;}
.y70{bottom:814.518667pt;}
.yf{bottom:815.334667pt;}
.y117{bottom:817.466667pt;}
.y215{bottom:817.736000pt;}
.y1b7{bottom:818.478667pt;}
.y1{bottom:821.852000pt;}
.y23{bottom:822.640000pt;}
.y48{bottom:828.129333pt;}
.yfa{bottom:832.085333pt;}
.y1f4{bottom:833.320000pt;}
.y173{bottom:835.758667pt;}
.y37{bottom:836.085333pt;}
.y116{bottom:836.728000pt;}
.y1b6{bottom:837.740000pt;}
.y6f{bottom:838.422667pt;}
.ye{bottom:839.237333pt;}
.y1f1{bottom:842.817333pt;}
.y192{bottom:842.822667pt;}
.y22{bottom:846.544000pt;}
.y47{bottom:852.033333pt;}
.y1f3{bottom:852.581333pt;}
.y115{bottom:855.989333pt;}
.y1b5{bottom:857.001333pt;}
.y90{bottom:858.082667pt;}
.y172{bottom:859.661333pt;}
.y6e{bottom:862.325333pt;}
.yd{bottom:863.141333pt;}
.yf7{bottom:864.173333pt;}
.yf9{bottom:866.280000pt;}
.y21{bottom:870.446667pt;}
.y1f2{bottom:871.842667pt;}
.y36{bottom:873.272000pt;}
.y114{bottom:875.250667pt;}
.y46{bottom:875.936000pt;}
.y1b4{bottom:876.261333pt;}
.y1d8{bottom:876.926667pt;}
.y8f{bottom:881.985333pt;}
.y6d{bottom:886.228000pt;}
.y1f0{bottom:890.416000pt;}
.y20{bottom:894.349333pt;}
.y113{bottom:895.176000pt;}
.y1b3{bottom:896.186667pt;}
.y171{bottom:896.848000pt;}
.y45{bottom:899.838667pt;}
.yc{bottom:902.648000pt;}
.y1d6{bottom:905.685333pt;}
.y8e{bottom:905.889333pt;}
.y1ef{bottom:909.677333pt;}
.y6c{bottom:910.130667pt;}
.y35{bottom:910.458667pt;}
.y112{bottom:913.749333pt;}
.y1b2{bottom:915.448000pt;}
.y1f{bottom:918.252000pt;}
.y170{bottom:920.750667pt;}
.y44{bottom:923.741333pt;}
.y6b{bottom:934.033333pt;}
.y1d7{bottom:934.709333pt;}
.yb{bottom:942.156000pt;}
.y8d{bottom:945.573333pt;}
.y26a{bottom:946.978667pt;}
.y34{bottom:947.645333pt;}
.y1b1{bottom:953.282667pt;}
.y6a{bottom:957.937333pt;}
.ydf{bottom:957.984000pt;}
.yb6{bottom:971.332000pt;}
.ye3{bottom:972.544000pt;}
.ya{bottom:981.840000pt;}
.hc{height:29.499997pt;}
.h13{height:41.076398pt;}
.h5{height:44.696508pt;}
.ha{height:45.015313pt;}
.hb{height:47.820800pt;}
.h6{height:47.884561pt;}
.h8{height:52.635997pt;}
.h7{height:52.641330pt;}
.h9{height:53.712173pt;}
.h3{height:54.400790pt;}
.hd{height:55.124201pt;}
.h4{height:64.454458pt;}
.h2{height:65.005350pt;}
.he{height:65.639228pt;}
.h10{height:124.924561pt;}
.hf{height:124.929894pt;}
.h11{height:793.701333pt;}
.h12{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xa{left:75.590667pt;}
.x16{left:79.912000pt;}
.x3f{left:84.428000pt;}
.x40{left:85.728000pt;}
.x39{left:86.668000pt;}
.x3a{left:87.968000pt;}
.x38{left:89.485333pt;}
.xf{left:91.530667pt;}
.x41{left:92.662667pt;}
.x34{left:94.145333pt;}
.x3{left:96.429333pt;}
.xb{left:98.997333pt;}
.x2c{left:100.620000pt;}
.xe{left:101.605333pt;}
.x73{left:104.390667pt;}
.x24{left:107.945333pt;}
.x11{left:112.738667pt;}
.x17{left:114.610667pt;}
.x15{left:119.625333pt;}
.x6{left:122.792000pt;}
.x6c{left:124.213333pt;}
.x6d{left:125.418667pt;}
.x6b{left:126.824000pt;}
.x14{left:127.802667pt;}
.x48{left:131.145333pt;}
.xc{left:134.886667pt;}
.x31{left:143.936000pt;}
.x33{left:145.236000pt;}
.x30{left:146.753333pt;}
.x32{left:148.486667pt;}
.x2d{left:151.414667pt;}
.x72{left:158.806667pt;}
.x71{left:162.706667pt;}
.x70{left:166.608000pt;}
.x1f{left:169.793333pt;}
.x6f{left:174.112000pt;}
.x23{left:176.809333pt;}
.x8{left:181.654667pt;}
.x22{left:193.120000pt;}
.x12{left:195.305333pt;}
.x2f{left:208.422667pt;}
.x2b{left:212.397333pt;}
.x19{left:220.425333pt;}
.x25{left:222.180000pt;}
.x49{left:227.769333pt;}
.x5{left:229.512000pt;}
.x13{left:234.262667pt;}
.x1{left:237.849333pt;}
.x21{left:239.497333pt;}
.x18{left:247.386667pt;}
.x7{left:253.413333pt;}
.x2{left:255.826667pt;}
.x4a{left:262.561333pt;}
.x43{left:263.452000pt;}
.x3b{left:273.897333pt;}
.x42{left:275.414667pt;}
.x35{left:284.648000pt;}
.x1a{left:286.366667pt;}
.x20{left:294.609333pt;}
.x4{left:311.198667pt;}
.x1b{left:316.688000pt;}
.x9{left:327.996000pt;}
.x2e{left:336.238667pt;}
.x4c{left:371.988000pt;}
.x4b{left:377.616000pt;}
.x1c{left:388.016000pt;}
.x10{left:389.048000pt;}
.xd{left:392.949333pt;}
.x1e{left:397.362667pt;}
.x36{left:401.805333pt;}
.x6e{left:406.102667pt;}
.x1d{left:408.324000pt;}
.x3c{left:417.317333pt;}
.x3e{left:430.596000pt;}
.x47{left:433.629333pt;}
.x26{left:445.253333pt;}
.x46{left:461.693333pt;}
.x4d{left:464.496000pt;}
.x27{left:467.790667pt;}
.x4e{left:477.553333pt;}
.x44{left:478.554667pt;}
.x37{left:479.480000pt;}
.x4f{left:498.688000pt;}
.x3d{left:519.481333pt;}
.x45{left:524.153333pt;}
.x2a{left:566.950667pt;}
.x28{left:574.057333pt;}
.x53{left:601.280000pt;}
.x50{left:605.861333pt;}
.x51{left:611.522667pt;}
.x29{left:617.445333pt;}
.x52{left:620.766667pt;}
.x5b{left:709.896000pt;}
.x58{left:724.562667pt;}
.x54{left:726.329333pt;}
.x56{left:731.352000pt;}
.x57{left:732.794667pt;}
.x59{left:735.008000pt;}
.x55{left:741.637333pt;}
.x5a{left:744.049333pt;}
.x5e{left:847.845333pt;}
.x5c{left:852.426667pt;}
.x5d{left:856.077333pt;}
.x5f{left:858.290667pt;}
.x61{left:861.904000pt;}
.x62{left:863.673333pt;}
.x60{left:867.330667pt;}
.x68{left:962.248000pt;}
.x6a{left:967.712000pt;}
.x67{left:982.378667pt;}
.x63{left:984.145333pt;}
.x65{left:989.168000pt;}
.x66{left:990.610667pt;}
.x64{left:999.453333pt;}
.x69{left:1001.865333pt;}
}




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