
    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_6789986ef62b257613f0dc87.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.102539;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_ea84405ebc4f081eced30eb9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_716b95f662b04c6d05dcadcb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_8cb1751f2635444880c87f7c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104492;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_7c4ae497edfe049168c1ad29.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_cc690c8f169a5f472c3628b8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_f23f6636577550535d1f530b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_310d3d6bc67a90bbc56d0acc.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_873237d1713ac7448467727f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_c70c4d883c142beab9eaf1bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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);}
.v7{vertical-align:-61.920000px;}
.v1{vertical-align:-56.880000px;}
.v2{vertical-align:-38.880000px;}
.v4{vertical-align:-18.000000px;}
.v5{vertical-align:-12.252960px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:12.240000px;}
.v3{vertical-align:17.947440px;}
.ls7b{letter-spacing:-2.604960px;}
.ls7c{letter-spacing:-2.363760px;}
.ls9f{letter-spacing:-2.338560px;}
.ls5e{letter-spacing:-1.944000px;}
.ls8f{letter-spacing:-1.920960px;}
.ls38{letter-spacing:-1.728000px;}
.ls8a{letter-spacing:-1.712160px;}
.ls48{letter-spacing:-1.674000px;}
.ls24{letter-spacing:-1.640160px;}
.ls82{letter-spacing:-1.628640px;}
.ls57{letter-spacing:-1.566000px;}
.ls9d{letter-spacing:-1.503360px;}
.ls84{letter-spacing:-1.461600px;}
.ls86{letter-spacing:-1.419840px;}
.ls76{letter-spacing:-1.404000px;}
.ls23{letter-spacing:-1.398960px;}
.ls36{letter-spacing:-1.350000px;}
.ls8e{letter-spacing:-1.336320px;}
.ls3a{letter-spacing:-1.296000px;}
.ls39{letter-spacing:-1.242000px;}
.ls9c{letter-spacing:-1.211040px;}
.ls47{letter-spacing:-1.080000px;}
.ls34{letter-spacing:-1.026000px;}
.ls35{letter-spacing:-0.972000px;}
.ls9e{letter-spacing:-0.960480px;}
.ls83{letter-spacing:-0.918720px;}
.ls19{letter-spacing:-0.916560px;}
.ls1d{letter-spacing:-0.868320px;}
.ls80{letter-spacing:-0.793440px;}
.ls2c{letter-spacing:-0.756000px;}
.ls85{letter-spacing:-0.709920px;}
.ls33{letter-spacing:-0.702000px;}
.ls27{letter-spacing:-0.675360px;}
.ls63{letter-spacing:-0.648000px;}
.lsa4{letter-spacing:-0.627120px;}
.ls30{letter-spacing:-0.594000px;}
.ls4a{letter-spacing:-0.540000px;}
.ls81{letter-spacing:-0.501120px;}
.ls32{letter-spacing:-0.486000px;}
.ls13{letter-spacing:-0.482400px;}
.ls22{letter-spacing:-0.434160px;}
.ls49{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.385920px;}
.ls46{letter-spacing:-0.378000px;}
.ls28{letter-spacing:-0.337680px;}
.ls31{letter-spacing:-0.324000px;}
.ls8d{letter-spacing:-0.292320px;}
.ls16{letter-spacing:-0.289440px;}
.ls2a{letter-spacing:-0.270000px;}
.ls89{letter-spacing:-0.250560px;}
.ls18{letter-spacing:-0.241920px;}
.ls3c{letter-spacing:-0.241200px;}
.ls1f{letter-spacing:-0.239040px;}
.ls2b{letter-spacing:-0.216000px;}
.ls7f{letter-spacing:-0.208800px;}
.ls15{letter-spacing:-0.192960px;}
.ls7d{letter-spacing:-0.167040px;}
.ls14{letter-spacing:-0.144720px;}
.ls20{letter-spacing:-0.119520px;}
.ls77{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.096480px;}
.ls8b{letter-spacing:-0.083520px;}
.lsa1{letter-spacing:-0.082080px;}
.ls3b{letter-spacing:-0.054000px;}
.ls10{letter-spacing:-0.048240px;}
.ls11{letter-spacing:0.000000px;}
.ls65{letter-spacing:0.043200px;}
.ls1a{letter-spacing:0.048240px;}
.ls2d{letter-spacing:0.054000px;}
.ls52{letter-spacing:0.064800px;}
.ls3f{letter-spacing:0.070200px;}
.ls62{letter-spacing:0.075600px;}
.ls7e{letter-spacing:0.083520px;}
.ls4e{letter-spacing:0.086400px;}
.ls4f{letter-spacing:0.091800px;}
.ls43{letter-spacing:0.102600px;}
.lsc{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.124200px;}
.ls88{letter-spacing:0.125280px;}
.ls61{letter-spacing:0.129600px;}
.ls50{letter-spacing:0.140400px;}
.ls8{letter-spacing:0.154368px;}
.ls2f{letter-spacing:0.162000px;}
.ls60{letter-spacing:0.167400px;}
.ls1{letter-spacing:0.192960px;}
.ls8c{letter-spacing:0.208800px;}
.lsa{letter-spacing:0.216000px;}
.ls12{letter-spacing:0.241200px;}
.ls2e{letter-spacing:0.270000px;}
.ls3{letter-spacing:0.289440px;}
.ls87{letter-spacing:0.292320px;}
.ls1e{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.308736px;}
.ls68{letter-spacing:0.318384px;}
.ls98{letter-spacing:0.321552px;}
.ls59{letter-spacing:0.324000px;}
.ls9b{letter-spacing:0.329904px;}
.ls6d{letter-spacing:0.334080px;}
.ls4{letter-spacing:0.337680px;}
.lsb{letter-spacing:0.340200px;}
.ls45{letter-spacing:0.378000px;}
.ls1c{letter-spacing:0.385920px;}
.ls72{letter-spacing:0.413424px;}
.ls99{letter-spacing:0.417600px;}
.ls74{letter-spacing:0.446832px;}
.ls96{letter-spacing:0.463536px;}
.ls91{letter-spacing:0.471888px;}
.ls73{letter-spacing:0.488592px;}
.ls6a{letter-spacing:0.501120px;}
.ls71{letter-spacing:0.509472px;}
.ls90{letter-spacing:0.522000px;}
.ls6c{letter-spacing:0.542880px;}
.ls92{letter-spacing:0.576288px;}
.ls75{letter-spacing:0.626400px;}
.ls69{letter-spacing:0.709920px;}
.ls58{letter-spacing:0.756000px;}
.ls4d{letter-spacing:0.810000px;}
.ls64{letter-spacing:0.918000px;}
.ls95{letter-spacing:1.336320px;}
.ls5d{letter-spacing:1.566000px;}
.ls6e{letter-spacing:2.088000px;}
.ls9{letter-spacing:2.268000px;}
.ls5{letter-spacing:2.412000px;}
.ls6b{letter-spacing:2.797920px;}
.ls9a{letter-spacing:3.507840px;}
.ls66{letter-spacing:3.726000px;}
.ls93{letter-spacing:4.217760px;}
.lsd{letter-spacing:4.428000px;}
.ls2{letter-spacing:4.582800px;}
.ls40{letter-spacing:5.103000px;}
.ls54{letter-spacing:5.130000px;}
.ls37{letter-spacing:5.184000px;}
.lse{letter-spacing:5.886000px;}
.ls7a{letter-spacing:6.030000px;}
.lsa0{letter-spacing:6.305760px;}
.ls79{letter-spacing:6.588000px;}
.ls4b{letter-spacing:7.344000px;}
.ls41{letter-spacing:8.046000px;}
.ls51{letter-spacing:8.748000px;}
.ls3d{letter-spacing:9.450000px;}
.ls5f{letter-spacing:10.206000px;}
.ls42{letter-spacing:10.908000px;}
.ls67{letter-spacing:11.046960px;}
.ls21{letter-spacing:11.336400px;}
.ls29{letter-spacing:11.577600px;}
.ls55{letter-spacing:11.588400px;}
.lsa2{letter-spacing:11.943360px;}
.ls26{letter-spacing:12.060000px;}
.lsa3{letter-spacing:12.068640px;}
.ls4c{letter-spacing:12.366000px;}
.ls25{letter-spacing:12.397680px;}
.ls70{letter-spacing:12.862080px;}
.ls94{letter-spacing:13.572000px;}
.ls3e{letter-spacing:13.770000px;}
.ls78{letter-spacing:15.228000px;}
.ls44{letter-spacing:17.897040px;}
.ls53{letter-spacing:18.090000px;}
.ls5b{letter-spacing:18.144000px;}
.ls6f{letter-spacing:21.506400px;}
.ls5a{letter-spacing:21.708000px;}
.ls5c{letter-spacing:23.166000px;}
.ls7{letter-spacing:24.747120px;}
.ls56{letter-spacing:34.668000px;}
.ls97{letter-spacing:272.268000px;}
.ls0{letter-spacing:2197.548000px;}
.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;}
}
.ws61{word-spacing:-34.668000px;}
.ws45{word-spacing:-33.960960px;}
.wsc{word-spacing:-25.808400px;}
.wsd{word-spacing:-25.470720px;}
.ws9{word-spacing:-24.747120px;}
.wsae{word-spacing:-23.677920px;}
.wsad{word-spacing:-23.552640px;}
.ws67{word-spacing:-23.166000px;}
.ws65{word-spacing:-21.708000px;}
.ws66{word-spacing:-18.144000px;}
.ws0{word-spacing:-16.063920px;}
.ws1{word-spacing:-15.581520px;}
.ws60{word-spacing:-15.390000px;}
.ws5e{word-spacing:-15.336000px;}
.ws11{word-spacing:-15.282000px;}
.wse{word-spacing:-15.228000px;}
.ws5f{word-spacing:-15.174000px;}
.ws49{word-spacing:-15.120000px;}
.ws5b{word-spacing:-15.066000px;}
.ws15{word-spacing:-15.012000px;}
.ws4b{word-spacing:-14.958000px;}
.ws6e{word-spacing:-14.904000px;}
.ws10{word-spacing:-14.796000px;}
.wsf{word-spacing:-14.742000px;}
.ws4a{word-spacing:-14.688000px;}
.ws47{word-spacing:-14.634000px;}
.ws4c{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.526000px;}
.ws6a{word-spacing:-14.310000px;}
.ws12{word-spacing:-14.040000px;}
.ws48{word-spacing:-13.932000px;}
.ws46{word-spacing:-13.770000px;}
.ws70{word-spacing:-13.748400px;}
.ws14{word-spacing:-13.716000px;}
.ws6f{word-spacing:-13.700160px;}
.ws5d{word-spacing:-13.662000px;}
.ws7{word-spacing:-13.458960px;}
.ws5c{word-spacing:-13.446000px;}
.ws2{word-spacing:-13.410720px;}
.ws4e{word-spacing:-13.338000px;}
.ws4d{word-spacing:-13.284000px;}
.ws8{word-spacing:-13.266000px;}
.ws3{word-spacing:-13.217760px;}
.ws4{word-spacing:-13.121280px;}
.ws78{word-spacing:-12.152160px;}
.wsa{word-spacing:-12.011760px;}
.ws77{word-spacing:-11.901600px;}
.wsb{word-spacing:-11.770560px;}
.wsaa{word-spacing:-11.692800px;}
.ws72{word-spacing:-11.609280px;}
.ws2f{word-spacing:-11.577600px;}
.ws7a{word-spacing:-11.525760px;}
.ws71{word-spacing:-11.442240px;}
.ws79{word-spacing:-11.400480px;}
.ws7b{word-spacing:-11.316960px;}
.ws7c{word-spacing:-10.815840px;}
.ws74{word-spacing:-10.690560px;}
.wsa9{word-spacing:-10.648800px;}
.ws75{word-spacing:-10.189440px;}
.ws73{word-spacing:-10.147680px;}
.ws76{word-spacing:-9.980640px;}
.ws7d{word-spacing:-9.688320px;}
.ws6{word-spacing:-8.406720px;}
.ws5{word-spacing:-8.164800px;}
.wsac{word-spacing:-7.606080px;}
.wsab{word-spacing:-7.524000px;}
.ws5a{word-spacing:-7.344000px;}
.ws7f{word-spacing:-6.588000px;}
.wsc7{word-spacing:-6.305760px;}
.ws80{word-spacing:-6.030000px;}
.ws3e{word-spacing:-5.184000px;}
.ws68{word-spacing:-1.566000px;}
.ws6b{word-spacing:-0.918000px;}
.ws62{word-spacing:-0.756000px;}
.ws8f{word-spacing:-0.626400px;}
.wsb0{word-spacing:-0.542880px;}
.wsc2{word-spacing:-0.501120px;}
.ws23{word-spacing:-0.385920px;}
.ws50{word-spacing:-0.378000px;}
.ws25{word-spacing:-0.298800px;}
.wsce{word-spacing:-0.292320px;}
.ws20{word-spacing:-0.289440px;}
.ws34{word-spacing:-0.270000px;}
.ws17{word-spacing:-0.241200px;}
.ws30{word-spacing:-0.216000px;}
.ws95{word-spacing:-0.208800px;}
.wsc8{word-spacing:-0.167040px;}
.ws33{word-spacing:-0.162000px;}
.ws8c{word-spacing:-0.125280px;}
.ws37{word-spacing:-0.108000px;}
.ws84{word-spacing:-0.083520px;}
.ws32{word-spacing:-0.054000px;}
.ws2a{word-spacing:-0.048240px;}
.ws18{word-spacing:0.000000px;}
.ws16{word-spacing:0.048240px;}
.ws44{word-spacing:0.054000px;}
.ws86{word-spacing:0.083520px;}
.ws21{word-spacing:0.096480px;}
.wsca{word-spacing:0.108000px;}
.ws28{word-spacing:0.119520px;}
.wsa6{word-spacing:0.125280px;}
.ws19{word-spacing:0.144720px;}
.ws83{word-spacing:0.167040px;}
.ws1b{word-spacing:0.192960px;}
.ws85{word-spacing:0.208800px;}
.ws59{word-spacing:0.216000px;}
.ws27{word-spacing:0.239040px;}
.ws22{word-spacing:0.241200px;}
.ws8d{word-spacing:0.250560px;}
.ws43{word-spacing:0.270000px;}
.ws1e{word-spacing:0.289440px;}
.wsc9{word-spacing:0.292320px;}
.ws36{word-spacing:0.324000px;}
.ws2e{word-spacing:0.337680px;}
.ws58{word-spacing:0.378000px;}
.ws1c{word-spacing:0.385920px;}
.ws29{word-spacing:0.434160px;}
.ws26{word-spacing:0.478080px;}
.ws1a{word-spacing:0.482400px;}
.ws3a{word-spacing:0.486000px;}
.ws88{word-spacing:0.501120px;}
.ws57{word-spacing:0.540000px;}
.ws1d{word-spacing:0.578880px;}
.ws35{word-spacing:0.594000px;}
.wsd2{word-spacing:0.627120px;}
.ws4f{word-spacing:0.648000px;}
.ws2d{word-spacing:0.675360px;}
.ws39{word-spacing:0.702000px;}
.ws8b{word-spacing:0.709920px;}
.ws31{word-spacing:0.756000px;}
.ws87{word-spacing:0.793440px;}
.ws24{word-spacing:0.868320px;}
.ws1f{word-spacing:0.916560px;}
.ws8a{word-spacing:0.918720px;}
.ws54{word-spacing:0.972000px;}
.ws3b{word-spacing:1.026000px;}
.ws64{word-spacing:1.080000px;}
.wsb7{word-spacing:1.211040px;}
.ws42{word-spacing:1.242000px;}
.ws51{word-spacing:1.296000px;}
.ws3d{word-spacing:1.350000px;}
.wsb1{word-spacing:1.378080px;}
.ws2b{word-spacing:1.398960px;}
.ws7e{word-spacing:1.404000px;}
.wsbf{word-spacing:1.503360px;}
.wsa1{word-spacing:1.545120px;}
.ws6d{word-spacing:1.566000px;}
.wsb2{word-spacing:1.586880px;}
.ws89{word-spacing:1.628640px;}
.ws2c{word-spacing:1.640160px;}
.wscc{word-spacing:1.670400px;}
.ws55{word-spacing:1.674000px;}
.ws8e{word-spacing:1.712160px;}
.ws40{word-spacing:1.728000px;}
.ws69{word-spacing:1.944000px;}
.wsa5{word-spacing:1.962720px;}
.ws6c{word-spacing:2.106000px;}
.ws91{word-spacing:2.255040px;}
.ws82{word-spacing:2.363760px;}
.wsd1{word-spacing:2.380320px;}
.ws81{word-spacing:2.604960px;}
.ws90{word-spacing:2.964960px;}
.wsc3{word-spacing:3.006720px;}
.wscd{word-spacing:3.090240px;}
.ws56{word-spacing:3.510000px;}
.wsaf{word-spacing:3.591360px;}
.ws9b{word-spacing:3.674880px;}
.wsb6{word-spacing:3.716640px;}
.wscb{word-spacing:3.800160px;}
.ws3f{word-spacing:4.212000px;}
.ws41{word-spacing:4.266000px;}
.wsb9{word-spacing:4.426560px;}
.wsd0{word-spacing:4.551840px;}
.wsb8{word-spacing:4.718880px;}
.wsbe{word-spacing:5.011200px;}
.wsc0{word-spacing:5.136480px;}
.ws53{word-spacing:5.670000px;}
.wsc1{word-spacing:5.762880px;}
.wsa7{word-spacing:5.888160px;}
.ws94{word-spacing:6.472800px;}
.ws96{word-spacing:6.556320px;}
.wsa8{word-spacing:6.598080px;}
.wsb3{word-spacing:7.224480px;}
.wsa4{word-spacing:7.308000px;}
.wscf{word-spacing:7.349760px;}
.ws52{word-spacing:7.830000px;}
.wsa2{word-spacing:8.017920px;}
.wsa3{word-spacing:8.059680px;}
.ws9a{word-spacing:8.727840px;}
.ws9d{word-spacing:9.437760px;}
.ws9e{word-spacing:10.147680px;}
.ws9c{word-spacing:10.941120px;}
.wsc4{word-spacing:11.609280px;}
.ws38{word-spacing:12.150000px;}
.wsc5{word-spacing:12.319200px;}
.ws3c{word-spacing:12.852000px;}
.ws98{word-spacing:13.029120px;}
.ws99{word-spacing:13.780800px;}
.wsa0{word-spacing:14.490720px;}
.wsd3{word-spacing:14.857920px;}
.wsb5{word-spacing:16.411680px;}
.wsb4{word-spacing:16.662240px;}
.ws97{word-spacing:20.963520px;}
.ws63{word-spacing:21.492000px;}
.ws92{word-spacing:21.673440px;}
.ws93{word-spacing:21.715200px;}
.wsbb{word-spacing:22.425120px;}
.wsba{word-spacing:23.135040px;}
.wsc6{word-spacing:27.436320px;}
.wsbc{word-spacing:36.790560px;}
.wsbd{word-spacing:37.542240px;}
.ws9f{word-spacing:39.672000px;}
._25{margin-left:-35.320536px;}
._24{margin-left:-34.290000px;}
._2c{margin-left:-24.516936px;}
._27{margin-left:-22.923000px;}
._26{margin-left:-21.454200px;}
._29{margin-left:-20.385000px;}
._2a{margin-left:-18.224424px;}
._2b{margin-left:-17.128728px;}
._2e{margin-left:-15.713640px;}
._2f{margin-left:-14.706144px;}
._22{margin-left:-7.666200px;}
._23{margin-left:-6.538752px;}
._18{margin-left:-5.162400px;}
._4{margin-left:-2.156328px;}
._0{margin-left:-1.061280px;}
._3{width:1.456848px;}
._b{width:2.696616px;}
._19{width:3.707280px;}
._7{width:4.717872px;}
._6{width:5.721264px;}
._5{width:6.782544px;}
._15{width:7.971552px;}
._10{width:8.997048px;}
._a{width:10.033920px;}
._c{width:11.307456px;}
._11{width:12.450168px;}
._12{width:13.826664px;}
._8{width:15.731064px;}
._9{width:17.704080px;}
._1e{width:18.888264px;}
._1f{width:20.175552px;}
._28{width:21.405600px;}
._1a{width:22.482504px;}
._f{width:23.507352px;}
._e{width:24.751944px;}
._13{width:26.615808px;}
._1b{width:27.617976px;}
._1c{width:28.724328px;}
._2d{width:30.054816px;}
._21{width:31.069080px;}
._20{width:34.075512px;}
._14{width:35.563536px;}
._d{width:37.062792px;}
._16{width:39.331080px;}
._17{width:40.607208px;}
._30{width:50.516928px;}
._1d{width:701.120160px;}
._2{width:801.845280px;}
._1{width:1397.416320px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(160,0,0);}
.fs6{font-size:27.360000px;}
.fs3{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y61{bottom:5.580000px;}
.y4{bottom:74.880000px;}
.y60{bottom:87.120000px;}
.y3{bottom:89.100000px;}
.y17e{bottom:109.755000px;}
.y142{bottom:110.439000px;}
.y136{bottom:110.479500px;}
.y1cd{bottom:111.060000px;}
.y49{bottom:111.222000px;}
.y5f{bottom:111.226500px;}
.yac{bottom:113.553000px;}
.yb4{bottom:113.571000px;}
.y10d{bottom:119.331000px;}
.yeb{bottom:119.335500px;}
.y1cc{bottom:123.120000px;}
.y17d{bottom:125.415000px;}
.y141{bottom:125.923500px;}
.y135{bottom:125.964000px;}
.y48{bottom:126.882000px;}
.y5e{bottom:126.886500px;}
.yab{bottom:129.037500px;}
.yb3{bottom:129.055500px;}
.y10c{bottom:134.815500px;}
.yea{bottom:134.820000px;}
.y1cb{bottom:135.192600px;}
.y17c{bottom:140.899500px;}
.y140{bottom:141.408000px;}
.y134{bottom:141.448500px;}
.y47{bottom:142.366500px;}
.y5d{bottom:142.371000px;}
.yaa{bottom:144.522000px;}
.yb2{bottom:144.540000px;}
.y1ca{bottom:147.250800px;}
.ye9{bottom:150.358500px;}
.y10b{bottom:150.475500px;}
.y17b{bottom:156.384000px;}
.y13f{bottom:157.068000px;}
.y133{bottom:157.108500px;}
.y230{bottom:157.323060px;}
.y46{bottom:157.851000px;}
.y5c{bottom:157.855500px;}
.y1c9{bottom:159.309000px;}
.yb1{bottom:159.979500px;}
.ya9{bottom:160.006500px;}
.ye8{bottom:165.843000px;}
.y10a{bottom:165.960000px;}
.y22f{bottom:171.180000px;}
.y1c8{bottom:171.367200px;}
.y17a{bottom:171.868500px;}
.y13e{bottom:172.552500px;}
.y132{bottom:172.593000px;}
.y45{bottom:173.335500px;}
.y5b{bottom:173.340000px;}
.yb0{bottom:175.639500px;}
.ya8{bottom:175.666500px;}
.ye7{bottom:181.327500px;}
.y109{bottom:181.404000px;}
.y1c7{bottom:183.425400px;}
.y22e{bottom:185.040000px;}
.y179{bottom:187.528500px;}
.y13d{bottom:188.037000px;}
.y131{bottom:188.077500px;}
.y5a{bottom:188.928000px;}
.y44{bottom:188.995500px;}
.yaf{bottom:191.124000px;}
.ya7{bottom:191.151000px;}
.y1c6{bottom:195.483600px;}
.ye6{bottom:196.812000px;}
.y108{bottom:196.888500px;}
.y22d{bottom:198.720000px;}
.y178{bottom:203.013000px;}
.y13c{bottom:203.521500px;}
.y130{bottom:203.562000px;}
.y59{bottom:204.412500px;}
.y43{bottom:204.480000px;}
.yae{bottom:206.608500px;}
.ya6{bottom:206.635500px;}
.y1c5{bottom:207.541800px;}
.ye5{bottom:212.472000px;}
.y107{bottom:212.548500px;}
.y22c{bottom:212.940000px;}
.y177{bottom:218.497500px;}
.y13b{bottom:219.181500px;}
.y12f{bottom:219.222000px;}
.y1c4{bottom:219.600000px;}
.y58{bottom:219.897000px;}
.y42{bottom:219.960000px;}
.yad{bottom:222.093000px;}
.ya5{bottom:222.120000px;}
.y22b{bottom:227.700000px;}
.ye4{bottom:227.956500px;}
.y106{bottom:228.033000px;}
.y1c3{bottom:231.660000px;}
.y176{bottom:233.982000px;}
.y13a{bottom:234.666000px;}
.y12e{bottom:234.706500px;}
.y57{bottom:235.381500px;}
.y41{bottom:235.435500px;}
.ya4{bottom:237.780000px;}
.y22a{bottom:239.787720px;}
.ye3{bottom:243.441000px;}
.y105{bottom:243.517500px;}
.y1c2{bottom:243.900000px;}
.y175{bottom:249.466500px;}
.y139{bottom:250.150500px;}
.y12d{bottom:250.191000px;}
.y56{bottom:250.866000px;}
.y40{bottom:250.920000px;}
.y229{bottom:251.845920px;}
.ya3{bottom:253.441260px;}
.y1c1{bottom:255.960000px;}
.ye2{bottom:258.925500px;}
.y104{bottom:259.002000px;}
.y228{bottom:264.081600px;}
.y174{bottom:265.126500px;}
.y138{bottom:265.635000px;}
.y12c{bottom:265.675500px;}
.y55{bottom:266.526000px;}
.y3f{bottom:266.539500px;}
.ya2{bottom:267.660000px;}
.y1c0{bottom:268.020000px;}
.ye1{bottom:274.410000px;}
.y103{bottom:274.486500px;}
.y227{bottom:276.139800px;}
.ya1{bottom:279.180000px;}
.y1bf{bottom:280.080000px;}
.y173{bottom:280.611000px;}
.y137{bottom:281.119500px;}
.y12b{bottom:281.160000px;}
.y54{bottom:282.010500px;}
.y3e{bottom:282.024000px;}
.y226{bottom:288.198000px;}
.ye0{bottom:290.070000px;}
.y102{bottom:290.146500px;}
.y1be{bottom:292.169520px;}
.y172{bottom:296.095500px;}
.y12a{bottom:296.820000px;}
.y53{bottom:297.495000px;}
.y3d{bottom:297.508500px;}
.y225{bottom:300.256200px;}
.y1bd{bottom:304.227720px;}
.ydf{bottom:305.554500px;}
.y101{bottom:305.631000px;}
.y171{bottom:311.580000px;}
.y224{bottom:312.314400px;}
.y129{bottom:312.481260px;}
.y52{bottom:312.979500px;}
.y3c{bottom:312.993000px;}
.y1bc{bottom:316.285920px;}
.yde{bottom:321.039000px;}
.y100{bottom:321.115500px;}
.y223{bottom:324.372600px;}
.y128{bottom:326.700000px;}
.y170{bottom:327.240000px;}
.y1bb{bottom:328.344120px;}
.y51{bottom:328.639500px;}
.y3b{bottom:328.653000px;}
.y222{bottom:336.430800px;}
.ydd{bottom:336.523500px;}
.yff{bottom:336.600000px;}
.y127{bottom:338.040000px;}
.y1ba{bottom:340.402320px;}
.y16f{bottom:342.724500px;}
.y50{bottom:344.124000px;}
.y3a{bottom:344.137500px;}
.y221{bottom:348.489000px;}
.ydc{bottom:352.183500px;}
.yfe{bottom:352.215000px;}
.y1b9{bottom:352.460520px;}
.y16e{bottom:358.209000px;}
.y4f{bottom:359.608500px;}
.y39{bottom:359.622000px;}
.y220{bottom:360.547200px;}
.y1b8{bottom:364.518720px;}
.ydb{bottom:367.668000px;}
.yfd{bottom:367.699500px;}
.y21f{bottom:372.605400px;}
.y16d{bottom:373.693500px;}
.y4e{bottom:375.093000px;}
.y38{bottom:375.106500px;}
.y1b7{bottom:376.576920px;}
.yda{bottom:383.152500px;}
.yfc{bottom:383.184000px;}
.y21e{bottom:384.663600px;}
.y1b6{bottom:388.812600px;}
.y16c{bottom:389.353500px;}
.y4d{bottom:390.753000px;}
.y37{bottom:390.766500px;}
.y21d{bottom:396.721800px;}
.yd9{bottom:398.637000px;}
.yfb{bottom:398.668500px;}
.y1b5{bottom:400.870800px;}
.y16b{bottom:404.838000px;}
.y4c{bottom:406.237500px;}
.y36{bottom:406.251000px;}
.y21c{bottom:408.780000px;}
.y1b4{bottom:412.929000px;}
.yd8{bottom:414.297000px;}
.yfa{bottom:414.328500px;}
.y16a{bottom:420.322500px;}
.y4b{bottom:421.722000px;}
.y35{bottom:421.735500px;}
.y21b{bottom:421.740000px;}
.y1b3{bottom:424.987200px;}
.yd7{bottom:429.781500px;}
.yf9{bottom:429.813000px;}
.y169{bottom:435.807000px;}
.y1b2{bottom:437.045400px;}
.y4a{bottom:437.206500px;}
.y34{bottom:437.220000px;}
.yd6{bottom:445.266000px;}
.yf8{bottom:445.297500px;}
.y1b1{bottom:449.103600px;}
.y168{bottom:451.467000px;}
.y33{bottom:452.880000px;}
.yd5{bottom:460.750500px;}
.yf7{bottom:460.782000px;}
.y1b0{bottom:461.161800px;}
.y167{bottom:466.951500px;}
.y32{bottom:468.050400px;}
.y21a{bottom:468.180000px;}
.y1af{bottom:473.220000px;}
.yd4{bottom:476.410500px;}
.yf6{bottom:476.442000px;}
.y31{bottom:481.726440px;}
.y166{bottom:482.436000px;}
.y219{bottom:483.840000px;}
.y1ae{bottom:485.307720px;}
.yd3{bottom:491.895000px;}
.yf5{bottom:491.926500px;}
.y30{bottom:495.583380px;}
.y1ad{bottom:497.365920px;}
.y165{bottom:497.920500px;}
.y218{bottom:502.200000px;}
.yd2{bottom:507.379500px;}
.yf4{bottom:507.411000px;}
.y1ac{bottom:509.424120px;}
.y2f{bottom:509.440320px;}
.y164{bottom:513.580500px;}
.y217{bottom:514.800000px;}
.y1ab{bottom:521.482320px;}
.yd1{bottom:522.864000px;}
.yf3{bottom:522.895500px;}
.y2e{bottom:523.116360px;}
.y163{bottom:529.065000px;}
.y216{bottom:530.280000px;}
.y1aa{bottom:533.540520px;}
.y2d{bottom:536.973300px;}
.yd0{bottom:538.524000px;}
.yf2{bottom:538.555500px;}
.y215{bottom:542.880000px;}
.y162{bottom:544.549500px;}
.y1a9{bottom:545.776200px;}
.y2c{bottom:550.830240px;}
.ycf{bottom:554.008500px;}
.yf1{bottom:554.040000px;}
.y214{bottom:555.300000px;}
.y1a8{bottom:557.834400px;}
.y161{bottom:560.034000px;}
.y2b{bottom:564.506280px;}
.y213{bottom:567.900000px;}
.yce{bottom:569.493000px;}
.yf0{bottom:569.506500px;}
.y1a7{bottom:569.892600px;}
.y160{bottom:575.694000px;}
.y2a{bottom:578.363220px;}
.y212{bottom:580.500000px;}
.y1a6{bottom:581.950800px;}
.ycd{bottom:584.977500px;}
.yef{bottom:584.991000px;}
.y15f{bottom:591.178500px;}
.y29{bottom:592.220160px;}
.y211{bottom:593.100000px;}
.y1a5{bottom:594.009000px;}
.ycc{bottom:600.637500px;}
.yee{bottom:600.651000px;}
.y126{bottom:602.662500px;}
.y210{bottom:605.700000px;}
.y28{bottom:605.896200px;}
.y1a4{bottom:606.067200px;}
.y15e{bottom:606.663000px;}
.ycb{bottom:616.122000px;}
.yed{bottom:616.135500px;}
.y125{bottom:617.958000px;}
.y1a3{bottom:618.125400px;}
.y20f{bottom:618.300000px;}
.y27{bottom:619.753140px;}
.y15d{bottom:622.147500px;}
.y11c{bottom:628.758000px;}
.y1a2{bottom:630.183600px;}
.y20e{bottom:630.900000px;}
.yca{bottom:631.606500px;}
.yec{bottom:631.620000px;}
.y124{bottom:632.902500px;}
.y26{bottom:633.610080px;}
.y15c{bottom:637.807500px;}
.y1a1{bottom:642.241800px;}
.y20d{bottom:643.500000px;}
.y11b{bottom:644.593500px;}
.yc9{bottom:647.091000px;}
.y25{bottom:647.286120px;}
.y123{bottom:648.022500px;}
.y15b{bottom:653.292000px;}
.ya0{bottom:653.355000px;}
.y1a0{bottom:654.300000px;}
.y20c{bottom:655.920000px;}
.y11a{bottom:660.429000px;}
.y24{bottom:661.143060px;}
.yc8{bottom:662.751000px;}
.y122{bottom:663.142500px;}
.y19f{bottom:667.080000px;}
.y20b{bottom:668.520000px;}
.y15a{bottom:668.776500px;}
.y80{bottom:668.817000px;}
.y9f{bottom:668.839500px;}
.y23{bottom:675.000000px;}
.y119{bottom:676.453500px;}
.y121{bottom:678.087000px;}
.yc7{bottom:678.235500px;}
.y20a{bottom:681.120000px;}
.y19e{bottom:682.253460px;}
.y159{bottom:684.261000px;}
.y7f{bottom:684.301500px;}
.y9e{bottom:684.324000px;}
.y22{bottom:688.683060px;}
.y118{bottom:692.289000px;}
.y120{bottom:693.207000px;}
.yc6{bottom:693.720000px;}
.y19d{bottom:696.110400px;}
.y158{bottom:699.921000px;}
.y7e{bottom:699.961500px;}
.y9d{bottom:699.984000px;}
.y21{bottom:702.540000px;}
.y209{bottom:706.320000px;}
.y117{bottom:708.124500px;}
.y11f{bottom:708.327000px;}
.yc5{bottom:709.380360px;}
.y19c{bottom:709.967340px;}
.y157{bottom:715.405500px;}
.y7d{bottom:715.446000px;}
.y9c{bottom:715.468500px;}
.y20{bottom:716.400000px;}
.y208{bottom:718.920000px;}
.y19b{bottom:723.643380px;}
.yc4{bottom:723.780000px;}
.y116{bottom:723.960000px;}
.y11e{bottom:723.987000px;}
.y1f{bottom:730.440000px;}
.y156{bottom:730.890000px;}
.y7c{bottom:730.930500px;}
.y9b{bottom:730.953000px;}
.y207{bottom:731.520000px;}
.yc3{bottom:735.120000px;}
.y19a{bottom:737.500320px;}
.y115{bottom:739.795500px;}
.y11d{bottom:739.822500px;}
.y206{bottom:744.120000px;}
.y155{bottom:746.374500px;}
.y7b{bottom:746.415000px;}
.y9a{bottom:746.437500px;}
.y1e{bottom:747.709920px;}
.y199{bottom:751.357260px;}
.y114{bottom:755.280000px;}
.y205{bottom:756.895500px;}
.y154{bottom:761.859000px;}
.y7a{bottom:761.899500px;}
.y99{bottom:761.922000px;}
.y198{bottom:765.033300px;}
.y1d{bottom:768.954600px;}
.y204{bottom:772.380000px;}
.y153{bottom:777.519000px;}
.y79{bottom:777.559500px;}
.y98{bottom:777.582000px;}
.y197{bottom:778.890240px;}
.y113{bottom:785.164500px;}
.y1eb{bottom:787.140000px;}
.y1c{bottom:790.020000px;}
.y196{bottom:792.747180px;}
.y152{bottom:793.003500px;}
.y78{bottom:793.044000px;}
.y97{bottom:793.066500px;}
.y112{bottom:797.760000px;}
.y1ea{bottom:799.200000px;}
.y195{bottom:806.423220px;}
.y151{bottom:808.488000px;}
.y77{bottom:808.528500px;}
.y96{bottom:808.551000px;}
.y1b{bottom:809.460000px;}
.y1e9{bottom:811.260000px;}
.y203{bottom:811.263600px;}
.y194{bottom:820.280160px;}
.y202{bottom:823.321800px;}
.y1e8{bottom:823.329720px;}
.y150{bottom:823.972500px;}
.y76{bottom:824.013000px;}
.y95{bottom:824.035500px;}
.y1a{bottom:829.080000px;}
.y193{bottom:834.137100px;}
.y201{bottom:835.380000px;}
.y1e7{bottom:835.387920px;}
.y14f{bottom:839.632500px;}
.y75{bottom:839.673000px;}
.y94{bottom:839.695500px;}
.y19{bottom:842.940000px;}
.y200{bottom:847.440000px;}
.y1e6{bottom:847.446120px;}
.y192{bottom:847.813140px;}
.y14e{bottom:855.117000px;}
.y74{bottom:855.157500px;}
.y93{bottom:855.180000px;}
.y18{bottom:858.247020px;}
.y1ff{bottom:859.680000px;}
.y1e5{bottom:859.681800px;}
.y191{bottom:861.670080px;}
.y92{bottom:870.534000px;}
.y14d{bottom:870.601500px;}
.y73{bottom:870.642000px;}
.y1e4{bottom:871.740000px;}
.y17{bottom:872.103960px;}
.y190{bottom:875.527020px;}
.y1e3{bottom:883.800000px;}
.y16{bottom:885.793140px;}
.y91{bottom:886.018500px;}
.y14c{bottom:886.086000px;}
.y72{bottom:886.126500px;}
.y18f{bottom:889.203060px;}
.y1e2{bottom:895.860000px;}
.y15{bottom:899.650080px;}
.y90{bottom:901.678500px;}
.y14b{bottom:901.746000px;}
.y71{bottom:901.786500px;}
.y18e{bottom:903.060000px;}
.y1fe{bottom:907.920000px;}
.y1e1{bottom:907.951320px;}
.y14{bottom:913.507020px;}
.y18d{bottom:917.001000px;}
.y8f{bottom:917.163000px;}
.y14a{bottom:917.230500px;}
.y70{bottom:917.271000px;}
.y1e0{bottom:920.009520px;}
.y1fd{bottom:920.014920px;}
.y13{bottom:927.183060px;}
.y1df{bottom:932.067720px;}
.y1fc{bottom:932.073120px;}
.y18c{bottom:932.485500px;}
.y8e{bottom:932.647500px;}
.y149{bottom:932.715000px;}
.y6f{bottom:932.755500px;}
.y12{bottom:941.054040px;}
.y1de{bottom:944.125920px;}
.y1fb{bottom:944.131320px;}
.y18b{bottom:947.970000px;}
.y8d{bottom:948.132000px;}
.y148{bottom:948.199500px;}
.y6e{bottom:948.240000px;}
.y11{bottom:954.730080px;}
.y1dd{bottom:956.184120px;}
.y1fa{bottom:956.189520px;}
.y18a{bottom:963.630000px;}
.y8c{bottom:963.792000px;}
.y147{bottom:963.859500px;}
.y6d{bottom:963.900000px;}
.y1dc{bottom:968.242320px;}
.y1f9{bottom:968.247720px;}
.y10{bottom:968.587020px;}
.y189{bottom:979.114500px;}
.y8b{bottom:979.276500px;}
.y146{bottom:979.344000px;}
.y6c{bottom:979.380000px;}
.y1db{bottom:980.300520px;}
.y1f8{bottom:980.305920px;}
.yf{bottom:982.443960px;}
.y1da{bottom:992.358720px;}
.y1f7{bottom:992.364120px;}
.y188{bottom:994.599000px;}
.y8a{bottom:994.761000px;}
.y145{bottom:994.828500px;}
.y6b{bottom:994.855500px;}
.ye{bottom:996.123060px;}
.y1d9{bottom:1004.416920px;}
.y1f6{bottom:1004.422320px;}
.yd{bottom:1009.980000px;}
.y187{bottom:1010.083500px;}
.y89{bottom:1010.245500px;}
.y144{bottom:1010.313000px;}
.y6a{bottom:1010.340000px;}
.y1d8{bottom:1016.652600px;}
.y1f5{bottom:1016.658000px;}
.yc{bottom:1023.840000px;}
.y186{bottom:1025.743500px;}
.y88{bottom:1025.905500px;}
.yc2{bottom:1025.946000px;}
.y143{bottom:1025.973000px;}
.y69{bottom:1026.000000px;}
.y1d7{bottom:1028.710800px;}
.y1f4{bottom:1028.716200px;}
.yb{bottom:1037.533140px;}
.y1d6{bottom:1040.769000px;}
.y1f3{bottom:1040.774400px;}
.y185{bottom:1041.228000px;}
.y87{bottom:1041.390000px;}
.yc1{bottom:1041.430500px;}
.yba{bottom:1041.457500px;}
.y68{bottom:1041.462000px;}
.ya{bottom:1051.390080px;}
.y1d5{bottom:1052.827200px;}
.y1f2{bottom:1052.832600px;}
.y184{bottom:1056.712500px;}
.y86{bottom:1056.874500px;}
.yc0{bottom:1056.915000px;}
.yb9{bottom:1056.942000px;}
.y67{bottom:1056.946500px;}
.y1d4{bottom:1064.885400px;}
.y1f1{bottom:1064.890800px;}
.y9{bottom:1065.247020px;}
.y183{bottom:1072.197000px;}
.y85{bottom:1072.359000px;}
.ybf{bottom:1072.399500px;}
.yb8{bottom:1072.426500px;}
.y66{bottom:1072.431000px;}
.y1d3{bottom:1076.943600px;}
.y1f0{bottom:1076.949000px;}
.y8{bottom:1078.923060px;}
.y182{bottom:1087.857000px;}
.y84{bottom:1088.019000px;}
.ybe{bottom:1088.059500px;}
.y111{bottom:1088.073000px;}
.yb7{bottom:1088.086500px;}
.y65{bottom:1088.091000px;}
.y1d2{bottom:1089.001800px;}
.y1ef{bottom:1089.007200px;}
.y1d1{bottom:1101.060000px;}
.y1ee{bottom:1101.065400px;}
.y181{bottom:1103.341500px;}
.y83{bottom:1103.503500px;}
.ybd{bottom:1103.544000px;}
.y110{bottom:1103.557500px;}
.yb6{bottom:1103.571000px;}
.y64{bottom:1103.575500px;}
.y7{bottom:1107.000000px;}
.y1d0{bottom:1113.120000px;}
.y1ed{bottom:1113.123600px;}
.y180{bottom:1118.826000px;}
.y82{bottom:1118.988000px;}
.ybc{bottom:1119.028500px;}
.y10f{bottom:1119.042000px;}
.yb5{bottom:1119.055500px;}
.y63{bottom:1119.060000px;}
.y6{bottom:1122.123060px;}
.y1cf{bottom:1125.180000px;}
.y1ec{bottom:1125.181800px;}
.y17f{bottom:1134.310500px;}
.y81{bottom:1134.472500px;}
.ybb{bottom:1134.513000px;}
.y10e{bottom:1134.526500px;}
.y62{bottom:1134.540000px;}
.y5{bottom:1135.980000px;}
.y1ce{bottom:1137.240000px;}
.y2{bottom:1152.720000px;}
.y1{bottom:1176.120000px;}
.hd{height:16.921500px;}
.h13{height:31.314375px;}
.h9{height:32.312812px;}
.hb{height:36.062227px;}
.h12{height:37.008984px;}
.h10{height:42.751758px;}
.h11{height:43.554375px;}
.hc{height:47.856445px;}
.hf{height:47.892445px;}
.h8{height:50.256652px;}
.h6{height:50.260252px;}
.h7{height:50.300573px;}
.h5{height:50.312812px;}
.he{height:51.472080px;}
.h4{height:56.320312px;}
.h2{height:57.618000px;}
.ha{height:63.763920px;}
.h3{height:76.824000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:570.961500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:8.100000px;}
.x1{left:76.500000px;}
.x2{left:97.740000px;}
.x13{left:113.216760px;}
.x23{left:117.000000px;}
.x12{left:209.520000px;}
.x14{left:239.220720px;}
.x1d{left:242.996040px;}
.x17{left:245.880000px;}
.x1f{left:284.759820px;}
.x1b{left:318.961980px;}
.x10{left:365.040000px;}
.x11{left:416.160000px;}
.x1a{left:446.400000px;}
.x15{left:461.317500px;}
.x16{left:482.580000px;}
.x20{left:486.714240px;}
.x8{left:536.761260px;}
.x22{left:556.020000px;}
.x21{left:581.029200px;}
.xe{left:588.959820px;}
.xd{left:616.504860px;}
.xf{left:618.466860px;}
.xb{left:625.110120px;}
.x7{left:630.000000px;}
.x4{left:632.492460px;}
.x3{left:634.856220px;}
.x9{left:636.120900px;}
.xc{left:642.783600px;}
.xa{left:663.280020px;}
.x6{left:682.517340px;}
.x1e{left:714.420000px;}
.x19{left:718.560000px;}
.x1c{left:725.040000px;}
.x5{left:816.262740px;}
@media print{
.v7{vertical-align:-55.040000pt;}
.v1{vertical-align:-50.560000pt;}
.v2{vertical-align:-34.560000pt;}
.v4{vertical-align:-16.000000pt;}
.v5{vertical-align:-10.891520pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.880000pt;}
.v3{vertical-align:15.953280pt;}
.ls7b{letter-spacing:-2.315520pt;}
.ls7c{letter-spacing:-2.101120pt;}
.ls9f{letter-spacing:-2.078720pt;}
.ls5e{letter-spacing:-1.728000pt;}
.ls8f{letter-spacing:-1.707520pt;}
.ls38{letter-spacing:-1.536000pt;}
.ls8a{letter-spacing:-1.521920pt;}
.ls48{letter-spacing:-1.488000pt;}
.ls24{letter-spacing:-1.457920pt;}
.ls82{letter-spacing:-1.447680pt;}
.ls57{letter-spacing:-1.392000pt;}
.ls9d{letter-spacing:-1.336320pt;}
.ls84{letter-spacing:-1.299200pt;}
.ls86{letter-spacing:-1.262080pt;}
.ls76{letter-spacing:-1.248000pt;}
.ls23{letter-spacing:-1.243520pt;}
.ls36{letter-spacing:-1.200000pt;}
.ls8e{letter-spacing:-1.187840pt;}
.ls3a{letter-spacing:-1.152000pt;}
.ls39{letter-spacing:-1.104000pt;}
.ls9c{letter-spacing:-1.076480pt;}
.ls47{letter-spacing:-0.960000pt;}
.ls34{letter-spacing:-0.912000pt;}
.ls35{letter-spacing:-0.864000pt;}
.ls9e{letter-spacing:-0.853760pt;}
.ls83{letter-spacing:-0.816640pt;}
.ls19{letter-spacing:-0.814720pt;}
.ls1d{letter-spacing:-0.771840pt;}
.ls80{letter-spacing:-0.705280pt;}
.ls2c{letter-spacing:-0.672000pt;}
.ls85{letter-spacing:-0.631040pt;}
.ls33{letter-spacing:-0.624000pt;}
.ls27{letter-spacing:-0.600320pt;}
.ls63{letter-spacing:-0.576000pt;}
.lsa4{letter-spacing:-0.557440pt;}
.ls30{letter-spacing:-0.528000pt;}
.ls4a{letter-spacing:-0.480000pt;}
.ls81{letter-spacing:-0.445440pt;}
.ls32{letter-spacing:-0.432000pt;}
.ls13{letter-spacing:-0.428800pt;}
.ls22{letter-spacing:-0.385920pt;}
.ls49{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.343040pt;}
.ls46{letter-spacing:-0.336000pt;}
.ls28{letter-spacing:-0.300160pt;}
.ls31{letter-spacing:-0.288000pt;}
.ls8d{letter-spacing:-0.259840pt;}
.ls16{letter-spacing:-0.257280pt;}
.ls2a{letter-spacing:-0.240000pt;}
.ls89{letter-spacing:-0.222720pt;}
.ls18{letter-spacing:-0.215040pt;}
.ls3c{letter-spacing:-0.214400pt;}
.ls1f{letter-spacing:-0.212480pt;}
.ls2b{letter-spacing:-0.192000pt;}
.ls7f{letter-spacing:-0.185600pt;}
.ls15{letter-spacing:-0.171520pt;}
.ls7d{letter-spacing:-0.148480pt;}
.ls14{letter-spacing:-0.128640pt;}
.ls20{letter-spacing:-0.106240pt;}
.ls77{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.085760pt;}
.ls8b{letter-spacing:-0.074240pt;}
.lsa1{letter-spacing:-0.072960pt;}
.ls3b{letter-spacing:-0.048000pt;}
.ls10{letter-spacing:-0.042880pt;}
.ls11{letter-spacing:0.000000pt;}
.ls65{letter-spacing:0.038400pt;}
.ls1a{letter-spacing:0.042880pt;}
.ls2d{letter-spacing:0.048000pt;}
.ls52{letter-spacing:0.057600pt;}
.ls3f{letter-spacing:0.062400pt;}
.ls62{letter-spacing:0.067200pt;}
.ls7e{letter-spacing:0.074240pt;}
.ls4e{letter-spacing:0.076800pt;}
.ls4f{letter-spacing:0.081600pt;}
.ls43{letter-spacing:0.091200pt;}
.lsc{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.110400pt;}
.ls88{letter-spacing:0.111360pt;}
.ls61{letter-spacing:0.115200pt;}
.ls50{letter-spacing:0.124800pt;}
.ls8{letter-spacing:0.137216pt;}
.ls2f{letter-spacing:0.144000pt;}
.ls60{letter-spacing:0.148800pt;}
.ls1{letter-spacing:0.171520pt;}
.ls8c{letter-spacing:0.185600pt;}
.lsa{letter-spacing:0.192000pt;}
.ls12{letter-spacing:0.214400pt;}
.ls2e{letter-spacing:0.240000pt;}
.ls3{letter-spacing:0.257280pt;}
.ls87{letter-spacing:0.259840pt;}
.ls1e{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.274432pt;}
.ls68{letter-spacing:0.283008pt;}
.ls98{letter-spacing:0.285824pt;}
.ls59{letter-spacing:0.288000pt;}
.ls9b{letter-spacing:0.293248pt;}
.ls6d{letter-spacing:0.296960pt;}
.ls4{letter-spacing:0.300160pt;}
.lsb{letter-spacing:0.302400pt;}
.ls45{letter-spacing:0.336000pt;}
.ls1c{letter-spacing:0.343040pt;}
.ls72{letter-spacing:0.367488pt;}
.ls99{letter-spacing:0.371200pt;}
.ls74{letter-spacing:0.397184pt;}
.ls96{letter-spacing:0.412032pt;}
.ls91{letter-spacing:0.419456pt;}
.ls73{letter-spacing:0.434304pt;}
.ls6a{letter-spacing:0.445440pt;}
.ls71{letter-spacing:0.452864pt;}
.ls90{letter-spacing:0.464000pt;}
.ls6c{letter-spacing:0.482560pt;}
.ls92{letter-spacing:0.512256pt;}
.ls75{letter-spacing:0.556800pt;}
.ls69{letter-spacing:0.631040pt;}
.ls58{letter-spacing:0.672000pt;}
.ls4d{letter-spacing:0.720000pt;}
.ls64{letter-spacing:0.816000pt;}
.ls95{letter-spacing:1.187840pt;}
.ls5d{letter-spacing:1.392000pt;}
.ls6e{letter-spacing:1.856000pt;}
.ls9{letter-spacing:2.016000pt;}
.ls5{letter-spacing:2.144000pt;}
.ls6b{letter-spacing:2.487040pt;}
.ls9a{letter-spacing:3.118080pt;}
.ls66{letter-spacing:3.312000pt;}
.ls93{letter-spacing:3.749120pt;}
.lsd{letter-spacing:3.936000pt;}
.ls2{letter-spacing:4.073600pt;}
.ls40{letter-spacing:4.536000pt;}
.ls54{letter-spacing:4.560000pt;}
.ls37{letter-spacing:4.608000pt;}
.lse{letter-spacing:5.232000pt;}
.ls7a{letter-spacing:5.360000pt;}
.lsa0{letter-spacing:5.605120pt;}
.ls79{letter-spacing:5.856000pt;}
.ls4b{letter-spacing:6.528000pt;}
.ls41{letter-spacing:7.152000pt;}
.ls51{letter-spacing:7.776000pt;}
.ls3d{letter-spacing:8.400000pt;}
.ls5f{letter-spacing:9.072000pt;}
.ls42{letter-spacing:9.696000pt;}
.ls67{letter-spacing:9.819520pt;}
.ls21{letter-spacing:10.076800pt;}
.ls29{letter-spacing:10.291200pt;}
.ls55{letter-spacing:10.300800pt;}
.lsa2{letter-spacing:10.616320pt;}
.ls26{letter-spacing:10.720000pt;}
.lsa3{letter-spacing:10.727680pt;}
.ls4c{letter-spacing:10.992000pt;}
.ls25{letter-spacing:11.020160pt;}
.ls70{letter-spacing:11.432960pt;}
.ls94{letter-spacing:12.064000pt;}
.ls3e{letter-spacing:12.240000pt;}
.ls78{letter-spacing:13.536000pt;}
.ls44{letter-spacing:15.908480pt;}
.ls53{letter-spacing:16.080000pt;}
.ls5b{letter-spacing:16.128000pt;}
.ls6f{letter-spacing:19.116800pt;}
.ls5a{letter-spacing:19.296000pt;}
.ls5c{letter-spacing:20.592000pt;}
.ls7{letter-spacing:21.997440pt;}
.ls56{letter-spacing:30.816000pt;}
.ls97{letter-spacing:242.016000pt;}
.ls0{letter-spacing:1953.376000pt;}
.ws61{word-spacing:-30.816000pt;}
.ws45{word-spacing:-30.187520pt;}
.wsc{word-spacing:-22.940800pt;}
.wsd{word-spacing:-22.640640pt;}
.ws9{word-spacing:-21.997440pt;}
.wsae{word-spacing:-21.047040pt;}
.wsad{word-spacing:-20.935680pt;}
.ws67{word-spacing:-20.592000pt;}
.ws65{word-spacing:-19.296000pt;}
.ws66{word-spacing:-16.128000pt;}
.ws0{word-spacing:-14.279040pt;}
.ws1{word-spacing:-13.850240pt;}
.ws60{word-spacing:-13.680000pt;}
.ws5e{word-spacing:-13.632000pt;}
.ws11{word-spacing:-13.584000pt;}
.wse{word-spacing:-13.536000pt;}
.ws5f{word-spacing:-13.488000pt;}
.ws49{word-spacing:-13.440000pt;}
.ws5b{word-spacing:-13.392000pt;}
.ws15{word-spacing:-13.344000pt;}
.ws4b{word-spacing:-13.296000pt;}
.ws6e{word-spacing:-13.248000pt;}
.ws10{word-spacing:-13.152000pt;}
.wsf{word-spacing:-13.104000pt;}
.ws4a{word-spacing:-13.056000pt;}
.ws47{word-spacing:-13.008000pt;}
.ws4c{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.912000pt;}
.ws6a{word-spacing:-12.720000pt;}
.ws12{word-spacing:-12.480000pt;}
.ws48{word-spacing:-12.384000pt;}
.ws46{word-spacing:-12.240000pt;}
.ws70{word-spacing:-12.220800pt;}
.ws14{word-spacing:-12.192000pt;}
.ws6f{word-spacing:-12.177920pt;}
.ws5d{word-spacing:-12.144000pt;}
.ws7{word-spacing:-11.963520pt;}
.ws5c{word-spacing:-11.952000pt;}
.ws2{word-spacing:-11.920640pt;}
.ws4e{word-spacing:-11.856000pt;}
.ws4d{word-spacing:-11.808000pt;}
.ws8{word-spacing:-11.792000pt;}
.ws3{word-spacing:-11.749120pt;}
.ws4{word-spacing:-11.663360pt;}
.ws78{word-spacing:-10.801920pt;}
.wsa{word-spacing:-10.677120pt;}
.ws77{word-spacing:-10.579200pt;}
.wsb{word-spacing:-10.462720pt;}
.wsaa{word-spacing:-10.393600pt;}
.ws72{word-spacing:-10.319360pt;}
.ws2f{word-spacing:-10.291200pt;}
.ws7a{word-spacing:-10.245120pt;}
.ws71{word-spacing:-10.170880pt;}
.ws79{word-spacing:-10.133760pt;}
.ws7b{word-spacing:-10.059520pt;}
.ws7c{word-spacing:-9.614080pt;}
.ws74{word-spacing:-9.502720pt;}
.wsa9{word-spacing:-9.465600pt;}
.ws75{word-spacing:-9.057280pt;}
.ws73{word-spacing:-9.020160pt;}
.ws76{word-spacing:-8.871680pt;}
.ws7d{word-spacing:-8.611840pt;}
.ws6{word-spacing:-7.472640pt;}
.ws5{word-spacing:-7.257600pt;}
.wsac{word-spacing:-6.760960pt;}
.wsab{word-spacing:-6.688000pt;}
.ws5a{word-spacing:-6.528000pt;}
.ws7f{word-spacing:-5.856000pt;}
.wsc7{word-spacing:-5.605120pt;}
.ws80{word-spacing:-5.360000pt;}
.ws3e{word-spacing:-4.608000pt;}
.ws68{word-spacing:-1.392000pt;}
.ws6b{word-spacing:-0.816000pt;}
.ws62{word-spacing:-0.672000pt;}
.ws8f{word-spacing:-0.556800pt;}
.wsb0{word-spacing:-0.482560pt;}
.wsc2{word-spacing:-0.445440pt;}
.ws23{word-spacing:-0.343040pt;}
.ws50{word-spacing:-0.336000pt;}
.ws25{word-spacing:-0.265600pt;}
.wsce{word-spacing:-0.259840pt;}
.ws20{word-spacing:-0.257280pt;}
.ws34{word-spacing:-0.240000pt;}
.ws17{word-spacing:-0.214400pt;}
.ws30{word-spacing:-0.192000pt;}
.ws95{word-spacing:-0.185600pt;}
.wsc8{word-spacing:-0.148480pt;}
.ws33{word-spacing:-0.144000pt;}
.ws8c{word-spacing:-0.111360pt;}
.ws37{word-spacing:-0.096000pt;}
.ws84{word-spacing:-0.074240pt;}
.ws32{word-spacing:-0.048000pt;}
.ws2a{word-spacing:-0.042880pt;}
.ws18{word-spacing:0.000000pt;}
.ws16{word-spacing:0.042880pt;}
.ws44{word-spacing:0.048000pt;}
.ws86{word-spacing:0.074240pt;}
.ws21{word-spacing:0.085760pt;}
.wsca{word-spacing:0.096000pt;}
.ws28{word-spacing:0.106240pt;}
.wsa6{word-spacing:0.111360pt;}
.ws19{word-spacing:0.128640pt;}
.ws83{word-spacing:0.148480pt;}
.ws1b{word-spacing:0.171520pt;}
.ws85{word-spacing:0.185600pt;}
.ws59{word-spacing:0.192000pt;}
.ws27{word-spacing:0.212480pt;}
.ws22{word-spacing:0.214400pt;}
.ws8d{word-spacing:0.222720pt;}
.ws43{word-spacing:0.240000pt;}
.ws1e{word-spacing:0.257280pt;}
.wsc9{word-spacing:0.259840pt;}
.ws36{word-spacing:0.288000pt;}
.ws2e{word-spacing:0.300160pt;}
.ws58{word-spacing:0.336000pt;}
.ws1c{word-spacing:0.343040pt;}
.ws29{word-spacing:0.385920pt;}
.ws26{word-spacing:0.424960pt;}
.ws1a{word-spacing:0.428800pt;}
.ws3a{word-spacing:0.432000pt;}
.ws88{word-spacing:0.445440pt;}
.ws57{word-spacing:0.480000pt;}
.ws1d{word-spacing:0.514560pt;}
.ws35{word-spacing:0.528000pt;}
.wsd2{word-spacing:0.557440pt;}
.ws4f{word-spacing:0.576000pt;}
.ws2d{word-spacing:0.600320pt;}
.ws39{word-spacing:0.624000pt;}
.ws8b{word-spacing:0.631040pt;}
.ws31{word-spacing:0.672000pt;}
.ws87{word-spacing:0.705280pt;}
.ws24{word-spacing:0.771840pt;}
.ws1f{word-spacing:0.814720pt;}
.ws8a{word-spacing:0.816640pt;}
.ws54{word-spacing:0.864000pt;}
.ws3b{word-spacing:0.912000pt;}
.ws64{word-spacing:0.960000pt;}
.wsb7{word-spacing:1.076480pt;}
.ws42{word-spacing:1.104000pt;}
.ws51{word-spacing:1.152000pt;}
.ws3d{word-spacing:1.200000pt;}
.wsb1{word-spacing:1.224960pt;}
.ws2b{word-spacing:1.243520pt;}
.ws7e{word-spacing:1.248000pt;}
.wsbf{word-spacing:1.336320pt;}
.wsa1{word-spacing:1.373440pt;}
.ws6d{word-spacing:1.392000pt;}
.wsb2{word-spacing:1.410560pt;}
.ws89{word-spacing:1.447680pt;}
.ws2c{word-spacing:1.457920pt;}
.wscc{word-spacing:1.484800pt;}
.ws55{word-spacing:1.488000pt;}
.ws8e{word-spacing:1.521920pt;}
.ws40{word-spacing:1.536000pt;}
.ws69{word-spacing:1.728000pt;}
.wsa5{word-spacing:1.744640pt;}
.ws6c{word-spacing:1.872000pt;}
.ws91{word-spacing:2.004480pt;}
.ws82{word-spacing:2.101120pt;}
.wsd1{word-spacing:2.115840pt;}
.ws81{word-spacing:2.315520pt;}
.ws90{word-spacing:2.635520pt;}
.wsc3{word-spacing:2.672640pt;}
.wscd{word-spacing:2.746880pt;}
.ws56{word-spacing:3.120000pt;}
.wsaf{word-spacing:3.192320pt;}
.ws9b{word-spacing:3.266560pt;}
.wsb6{word-spacing:3.303680pt;}
.wscb{word-spacing:3.377920pt;}
.ws3f{word-spacing:3.744000pt;}
.ws41{word-spacing:3.792000pt;}
.wsb9{word-spacing:3.934720pt;}
.wsd0{word-spacing:4.046080pt;}
.wsb8{word-spacing:4.194560pt;}
.wsbe{word-spacing:4.454400pt;}
.wsc0{word-spacing:4.565760pt;}
.ws53{word-spacing:5.040000pt;}
.wsc1{word-spacing:5.122560pt;}
.wsa7{word-spacing:5.233920pt;}
.ws94{word-spacing:5.753600pt;}
.ws96{word-spacing:5.827840pt;}
.wsa8{word-spacing:5.864960pt;}
.wsb3{word-spacing:6.421760pt;}
.wsa4{word-spacing:6.496000pt;}
.wscf{word-spacing:6.533120pt;}
.ws52{word-spacing:6.960000pt;}
.wsa2{word-spacing:7.127040pt;}
.wsa3{word-spacing:7.164160pt;}
.ws9a{word-spacing:7.758080pt;}
.ws9d{word-spacing:8.389120pt;}
.ws9e{word-spacing:9.020160pt;}
.ws9c{word-spacing:9.725440pt;}
.wsc4{word-spacing:10.319360pt;}
.ws38{word-spacing:10.800000pt;}
.wsc5{word-spacing:10.950400pt;}
.ws3c{word-spacing:11.424000pt;}
.ws98{word-spacing:11.581440pt;}
.ws99{word-spacing:12.249600pt;}
.wsa0{word-spacing:12.880640pt;}
.wsd3{word-spacing:13.207040pt;}
.wsb5{word-spacing:14.588160pt;}
.wsb4{word-spacing:14.810880pt;}
.ws97{word-spacing:18.634240pt;}
.ws63{word-spacing:19.104000pt;}
.ws92{word-spacing:19.265280pt;}
.ws93{word-spacing:19.302400pt;}
.wsbb{word-spacing:19.933440pt;}
.wsba{word-spacing:20.564480pt;}
.wsc6{word-spacing:24.387840pt;}
.wsbc{word-spacing:32.702720pt;}
.wsbd{word-spacing:33.370880pt;}
.ws9f{word-spacing:35.264000pt;}
._25{margin-left:-31.396032pt;}
._24{margin-left:-30.480000pt;}
._2c{margin-left:-21.792832pt;}
._27{margin-left:-20.376000pt;}
._26{margin-left:-19.070400pt;}
._29{margin-left:-18.120000pt;}
._2a{margin-left:-16.199488pt;}
._2b{margin-left:-15.225536pt;}
._2e{margin-left:-13.967680pt;}
._2f{margin-left:-13.072128pt;}
._22{margin-left:-6.814400pt;}
._23{margin-left:-5.812224pt;}
._18{margin-left:-4.588800pt;}
._4{margin-left:-1.916736pt;}
._0{margin-left:-0.943360pt;}
._3{width:1.294976pt;}
._b{width:2.396992pt;}
._19{width:3.295360pt;}
._7{width:4.193664pt;}
._6{width:5.085568pt;}
._5{width:6.028928pt;}
._15{width:7.085824pt;}
._10{width:7.997376pt;}
._a{width:8.919040pt;}
._c{width:10.051072pt;}
._11{width:11.066816pt;}
._12{width:12.290368pt;}
._8{width:13.983168pt;}
._9{width:15.736960pt;}
._1e{width:16.789568pt;}
._1f{width:17.933824pt;}
._28{width:19.027200pt;}
._1a{width:19.984448pt;}
._f{width:20.895424pt;}
._e{width:22.001728pt;}
._13{width:23.658496pt;}
._1b{width:24.549312pt;}
._1c{width:25.532736pt;}
._2d{width:26.715392pt;}
._21{width:27.616960pt;}
._20{width:30.289344pt;}
._14{width:31.612032pt;}
._d{width:32.944704pt;}
._16{width:34.960960pt;}
._17{width:36.095296pt;}
._30{width:44.903936pt;}
._1d{width:623.217920pt;}
._2{width:712.751360pt;}
._1{width:1242.147840pt;}
.fs6{font-size:24.320000pt;}
.fs3{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y61{bottom:4.960000pt;}
.y4{bottom:66.560000pt;}
.y60{bottom:77.440000pt;}
.y3{bottom:79.200000pt;}
.y17e{bottom:97.560000pt;}
.y142{bottom:98.168000pt;}
.y136{bottom:98.204000pt;}
.y1cd{bottom:98.720000pt;}
.y49{bottom:98.864000pt;}
.y5f{bottom:98.868000pt;}
.yac{bottom:100.936000pt;}
.yb4{bottom:100.952000pt;}
.y10d{bottom:106.072000pt;}
.yeb{bottom:106.076000pt;}
.y1cc{bottom:109.440000pt;}
.y17d{bottom:111.480000pt;}
.y141{bottom:111.932000pt;}
.y135{bottom:111.968000pt;}
.y48{bottom:112.784000pt;}
.y5e{bottom:112.788000pt;}
.yab{bottom:114.700000pt;}
.yb3{bottom:114.716000pt;}
.y10c{bottom:119.836000pt;}
.yea{bottom:119.840000pt;}
.y1cb{bottom:120.171200pt;}
.y17c{bottom:125.244000pt;}
.y140{bottom:125.696000pt;}
.y134{bottom:125.732000pt;}
.y47{bottom:126.548000pt;}
.y5d{bottom:126.552000pt;}
.yaa{bottom:128.464000pt;}
.yb2{bottom:128.480000pt;}
.y1ca{bottom:130.889600pt;}
.ye9{bottom:133.652000pt;}
.y10b{bottom:133.756000pt;}
.y17b{bottom:139.008000pt;}
.y13f{bottom:139.616000pt;}
.y133{bottom:139.652000pt;}
.y230{bottom:139.842720pt;}
.y46{bottom:140.312000pt;}
.y5c{bottom:140.316000pt;}
.y1c9{bottom:141.608000pt;}
.yb1{bottom:142.204000pt;}
.ya9{bottom:142.228000pt;}
.ye8{bottom:147.416000pt;}
.y10a{bottom:147.520000pt;}
.y22f{bottom:152.160000pt;}
.y1c8{bottom:152.326400pt;}
.y17a{bottom:152.772000pt;}
.y13e{bottom:153.380000pt;}
.y132{bottom:153.416000pt;}
.y45{bottom:154.076000pt;}
.y5b{bottom:154.080000pt;}
.yb0{bottom:156.124000pt;}
.ya8{bottom:156.148000pt;}
.ye7{bottom:161.180000pt;}
.y109{bottom:161.248000pt;}
.y1c7{bottom:163.044800pt;}
.y22e{bottom:164.480000pt;}
.y179{bottom:166.692000pt;}
.y13d{bottom:167.144000pt;}
.y131{bottom:167.180000pt;}
.y5a{bottom:167.936000pt;}
.y44{bottom:167.996000pt;}
.yaf{bottom:169.888000pt;}
.ya7{bottom:169.912000pt;}
.y1c6{bottom:173.763200pt;}
.ye6{bottom:174.944000pt;}
.y108{bottom:175.012000pt;}
.y22d{bottom:176.640000pt;}
.y178{bottom:180.456000pt;}
.y13c{bottom:180.908000pt;}
.y130{bottom:180.944000pt;}
.y59{bottom:181.700000pt;}
.y43{bottom:181.760000pt;}
.yae{bottom:183.652000pt;}
.ya6{bottom:183.676000pt;}
.y1c5{bottom:184.481600pt;}
.ye5{bottom:188.864000pt;}
.y107{bottom:188.932000pt;}
.y22c{bottom:189.280000pt;}
.y177{bottom:194.220000pt;}
.y13b{bottom:194.828000pt;}
.y12f{bottom:194.864000pt;}
.y1c4{bottom:195.200000pt;}
.y58{bottom:195.464000pt;}
.y42{bottom:195.520000pt;}
.yad{bottom:197.416000pt;}
.ya5{bottom:197.440000pt;}
.y22b{bottom:202.400000pt;}
.ye4{bottom:202.628000pt;}
.y106{bottom:202.696000pt;}
.y1c3{bottom:205.920000pt;}
.y176{bottom:207.984000pt;}
.y13a{bottom:208.592000pt;}
.y12e{bottom:208.628000pt;}
.y57{bottom:209.228000pt;}
.y41{bottom:209.276000pt;}
.ya4{bottom:211.360000pt;}
.y22a{bottom:213.144640pt;}
.ye3{bottom:216.392000pt;}
.y105{bottom:216.460000pt;}
.y1c2{bottom:216.800000pt;}
.y175{bottom:221.748000pt;}
.y139{bottom:222.356000pt;}
.y12d{bottom:222.392000pt;}
.y56{bottom:222.992000pt;}
.y40{bottom:223.040000pt;}
.y229{bottom:223.863040pt;}
.ya3{bottom:225.281120pt;}
.y1c1{bottom:227.520000pt;}
.ye2{bottom:230.156000pt;}
.y104{bottom:230.224000pt;}
.y228{bottom:234.739200pt;}
.y174{bottom:235.668000pt;}
.y138{bottom:236.120000pt;}
.y12c{bottom:236.156000pt;}
.y55{bottom:236.912000pt;}
.y3f{bottom:236.924000pt;}
.ya2{bottom:237.920000pt;}
.y1c0{bottom:238.240000pt;}
.ye1{bottom:243.920000pt;}
.y103{bottom:243.988000pt;}
.y227{bottom:245.457600pt;}
.ya1{bottom:248.160000pt;}
.y1bf{bottom:248.960000pt;}
.y173{bottom:249.432000pt;}
.y137{bottom:249.884000pt;}
.y12b{bottom:249.920000pt;}
.y54{bottom:250.676000pt;}
.y3e{bottom:250.688000pt;}
.y226{bottom:256.176000pt;}
.ye0{bottom:257.840000pt;}
.y102{bottom:257.908000pt;}
.y1be{bottom:259.706240pt;}
.y172{bottom:263.196000pt;}
.y12a{bottom:263.840000pt;}
.y53{bottom:264.440000pt;}
.y3d{bottom:264.452000pt;}
.y225{bottom:266.894400pt;}
.y1bd{bottom:270.424640pt;}
.ydf{bottom:271.604000pt;}
.y101{bottom:271.672000pt;}
.y171{bottom:276.960000pt;}
.y224{bottom:277.612800pt;}
.y129{bottom:277.761120pt;}
.y52{bottom:278.204000pt;}
.y3c{bottom:278.216000pt;}
.y1bc{bottom:281.143040pt;}
.yde{bottom:285.368000pt;}
.y100{bottom:285.436000pt;}
.y223{bottom:288.331200pt;}
.y128{bottom:290.400000pt;}
.y170{bottom:290.880000pt;}
.y1bb{bottom:291.861440pt;}
.y51{bottom:292.124000pt;}
.y3b{bottom:292.136000pt;}
.y222{bottom:299.049600pt;}
.ydd{bottom:299.132000pt;}
.yff{bottom:299.200000pt;}
.y127{bottom:300.480000pt;}
.y1ba{bottom:302.579840pt;}
.y16f{bottom:304.644000pt;}
.y50{bottom:305.888000pt;}
.y3a{bottom:305.900000pt;}
.y221{bottom:309.768000pt;}
.ydc{bottom:313.052000pt;}
.yfe{bottom:313.080000pt;}
.y1b9{bottom:313.298240pt;}
.y16e{bottom:318.408000pt;}
.y4f{bottom:319.652000pt;}
.y39{bottom:319.664000pt;}
.y220{bottom:320.486400pt;}
.y1b8{bottom:324.016640pt;}
.ydb{bottom:326.816000pt;}
.yfd{bottom:326.844000pt;}
.y21f{bottom:331.204800pt;}
.y16d{bottom:332.172000pt;}
.y4e{bottom:333.416000pt;}
.y38{bottom:333.428000pt;}
.y1b7{bottom:334.735040pt;}
.yda{bottom:340.580000pt;}
.yfc{bottom:340.608000pt;}
.y21e{bottom:341.923200pt;}
.y1b6{bottom:345.611200pt;}
.y16c{bottom:346.092000pt;}
.y4d{bottom:347.336000pt;}
.y37{bottom:347.348000pt;}
.y21d{bottom:352.641600pt;}
.yd9{bottom:354.344000pt;}
.yfb{bottom:354.372000pt;}
.y1b5{bottom:356.329600pt;}
.y16b{bottom:359.856000pt;}
.y4c{bottom:361.100000pt;}
.y36{bottom:361.112000pt;}
.y21c{bottom:363.360000pt;}
.y1b4{bottom:367.048000pt;}
.yd8{bottom:368.264000pt;}
.yfa{bottom:368.292000pt;}
.y16a{bottom:373.620000pt;}
.y4b{bottom:374.864000pt;}
.y35{bottom:374.876000pt;}
.y21b{bottom:374.880000pt;}
.y1b3{bottom:377.766400pt;}
.yd7{bottom:382.028000pt;}
.yf9{bottom:382.056000pt;}
.y169{bottom:387.384000pt;}
.y1b2{bottom:388.484800pt;}
.y4a{bottom:388.628000pt;}
.y34{bottom:388.640000pt;}
.yd6{bottom:395.792000pt;}
.yf8{bottom:395.820000pt;}
.y1b1{bottom:399.203200pt;}
.y168{bottom:401.304000pt;}
.y33{bottom:402.560000pt;}
.yd5{bottom:409.556000pt;}
.yf7{bottom:409.584000pt;}
.y1b0{bottom:409.921600pt;}
.y167{bottom:415.068000pt;}
.y32{bottom:416.044800pt;}
.y21a{bottom:416.160000pt;}
.y1af{bottom:420.640000pt;}
.yd4{bottom:423.476000pt;}
.yf6{bottom:423.504000pt;}
.y31{bottom:428.201280pt;}
.y166{bottom:428.832000pt;}
.y219{bottom:430.080000pt;}
.y1ae{bottom:431.384640pt;}
.yd3{bottom:437.240000pt;}
.yf5{bottom:437.268000pt;}
.y30{bottom:440.518560pt;}
.y1ad{bottom:442.103040pt;}
.y165{bottom:442.596000pt;}
.y218{bottom:446.400000pt;}
.yd2{bottom:451.004000pt;}
.yf4{bottom:451.032000pt;}
.y1ac{bottom:452.821440pt;}
.y2f{bottom:452.835840pt;}
.y164{bottom:456.516000pt;}
.y217{bottom:457.600000pt;}
.y1ab{bottom:463.539840pt;}
.yd1{bottom:464.768000pt;}
.yf3{bottom:464.796000pt;}
.y2e{bottom:464.992320pt;}
.y163{bottom:470.280000pt;}
.y216{bottom:471.360000pt;}
.y1aa{bottom:474.258240pt;}
.y2d{bottom:477.309600pt;}
.yd0{bottom:478.688000pt;}
.yf2{bottom:478.716000pt;}
.y215{bottom:482.560000pt;}
.y162{bottom:484.044000pt;}
.y1a9{bottom:485.134400pt;}
.y2c{bottom:489.626880pt;}
.ycf{bottom:492.452000pt;}
.yf1{bottom:492.480000pt;}
.y214{bottom:493.600000pt;}
.y1a8{bottom:495.852800pt;}
.y161{bottom:497.808000pt;}
.y2b{bottom:501.783360pt;}
.y213{bottom:504.800000pt;}
.yce{bottom:506.216000pt;}
.yf0{bottom:506.228000pt;}
.y1a7{bottom:506.571200pt;}
.y160{bottom:511.728000pt;}
.y2a{bottom:514.100640pt;}
.y212{bottom:516.000000pt;}
.y1a6{bottom:517.289600pt;}
.ycd{bottom:519.980000pt;}
.yef{bottom:519.992000pt;}
.y15f{bottom:525.492000pt;}
.y29{bottom:526.417920pt;}
.y211{bottom:527.200000pt;}
.y1a5{bottom:528.008000pt;}
.ycc{bottom:533.900000pt;}
.yee{bottom:533.912000pt;}
.y126{bottom:535.700000pt;}
.y210{bottom:538.400000pt;}
.y28{bottom:538.574400pt;}
.y1a4{bottom:538.726400pt;}
.y15e{bottom:539.256000pt;}
.ycb{bottom:547.664000pt;}
.yed{bottom:547.676000pt;}
.y125{bottom:549.296000pt;}
.y1a3{bottom:549.444800pt;}
.y20f{bottom:549.600000pt;}
.y27{bottom:550.891680pt;}
.y15d{bottom:553.020000pt;}
.y11c{bottom:558.896000pt;}
.y1a2{bottom:560.163200pt;}
.y20e{bottom:560.800000pt;}
.yca{bottom:561.428000pt;}
.yec{bottom:561.440000pt;}
.y124{bottom:562.580000pt;}
.y26{bottom:563.208960pt;}
.y15c{bottom:566.940000pt;}
.y1a1{bottom:570.881600pt;}
.y20d{bottom:572.000000pt;}
.y11b{bottom:572.972000pt;}
.yc9{bottom:575.192000pt;}
.y25{bottom:575.365440pt;}
.y123{bottom:576.020000pt;}
.y15b{bottom:580.704000pt;}
.ya0{bottom:580.760000pt;}
.y1a0{bottom:581.600000pt;}
.y20c{bottom:583.040000pt;}
.y11a{bottom:587.048000pt;}
.y24{bottom:587.682720pt;}
.yc8{bottom:589.112000pt;}
.y122{bottom:589.460000pt;}
.y19f{bottom:592.960000pt;}
.y20b{bottom:594.240000pt;}
.y15a{bottom:594.468000pt;}
.y80{bottom:594.504000pt;}
.y9f{bottom:594.524000pt;}
.y23{bottom:600.000000pt;}
.y119{bottom:601.292000pt;}
.y121{bottom:602.744000pt;}
.yc7{bottom:602.876000pt;}
.y20a{bottom:605.440000pt;}
.y19e{bottom:606.447520pt;}
.y159{bottom:608.232000pt;}
.y7f{bottom:608.268000pt;}
.y9e{bottom:608.288000pt;}
.y22{bottom:612.162720pt;}
.y118{bottom:615.368000pt;}
.y120{bottom:616.184000pt;}
.yc6{bottom:616.640000pt;}
.y19d{bottom:618.764800pt;}
.y158{bottom:622.152000pt;}
.y7e{bottom:622.188000pt;}
.y9d{bottom:622.208000pt;}
.y21{bottom:624.480000pt;}
.y209{bottom:627.840000pt;}
.y117{bottom:629.444000pt;}
.y11f{bottom:629.624000pt;}
.yc5{bottom:630.560320pt;}
.y19c{bottom:631.082080pt;}
.y157{bottom:635.916000pt;}
.y7d{bottom:635.952000pt;}
.y9c{bottom:635.972000pt;}
.y20{bottom:636.800000pt;}
.y208{bottom:639.040000pt;}
.y19b{bottom:643.238560pt;}
.yc4{bottom:643.360000pt;}
.y116{bottom:643.520000pt;}
.y11e{bottom:643.544000pt;}
.y1f{bottom:649.280000pt;}
.y156{bottom:649.680000pt;}
.y7c{bottom:649.716000pt;}
.y9b{bottom:649.736000pt;}
.y207{bottom:650.240000pt;}
.yc3{bottom:653.440000pt;}
.y19a{bottom:655.555840pt;}
.y115{bottom:657.596000pt;}
.y11d{bottom:657.620000pt;}
.y206{bottom:661.440000pt;}
.y155{bottom:663.444000pt;}
.y7b{bottom:663.480000pt;}
.y9a{bottom:663.500000pt;}
.y1e{bottom:664.631040pt;}
.y199{bottom:667.873120pt;}
.y114{bottom:671.360000pt;}
.y205{bottom:672.796000pt;}
.y154{bottom:677.208000pt;}
.y7a{bottom:677.244000pt;}
.y99{bottom:677.264000pt;}
.y198{bottom:680.029600pt;}
.y1d{bottom:683.515200pt;}
.y204{bottom:686.560000pt;}
.y153{bottom:691.128000pt;}
.y79{bottom:691.164000pt;}
.y98{bottom:691.184000pt;}
.y197{bottom:692.346880pt;}
.y113{bottom:697.924000pt;}
.y1eb{bottom:699.680000pt;}
.y1c{bottom:702.240000pt;}
.y196{bottom:704.664160pt;}
.y152{bottom:704.892000pt;}
.y78{bottom:704.928000pt;}
.y97{bottom:704.948000pt;}
.y112{bottom:709.120000pt;}
.y1ea{bottom:710.400000pt;}
.y195{bottom:716.820640pt;}
.y151{bottom:718.656000pt;}
.y77{bottom:718.692000pt;}
.y96{bottom:718.712000pt;}
.y1b{bottom:719.520000pt;}
.y1e9{bottom:721.120000pt;}
.y203{bottom:721.123200pt;}
.y194{bottom:729.137920pt;}
.y202{bottom:731.841600pt;}
.y1e8{bottom:731.848640pt;}
.y150{bottom:732.420000pt;}
.y76{bottom:732.456000pt;}
.y95{bottom:732.476000pt;}
.y1a{bottom:736.960000pt;}
.y193{bottom:741.455200pt;}
.y201{bottom:742.560000pt;}
.y1e7{bottom:742.567040pt;}
.y14f{bottom:746.340000pt;}
.y75{bottom:746.376000pt;}
.y94{bottom:746.396000pt;}
.y19{bottom:749.280000pt;}
.y200{bottom:753.280000pt;}
.y1e6{bottom:753.285440pt;}
.y192{bottom:753.611680pt;}
.y14e{bottom:760.104000pt;}
.y74{bottom:760.140000pt;}
.y93{bottom:760.160000pt;}
.y18{bottom:762.886240pt;}
.y1ff{bottom:764.160000pt;}
.y1e5{bottom:764.161600pt;}
.y191{bottom:765.928960pt;}
.y92{bottom:773.808000pt;}
.y14d{bottom:773.868000pt;}
.y73{bottom:773.904000pt;}
.y1e4{bottom:774.880000pt;}
.y17{bottom:775.203520pt;}
.y190{bottom:778.246240pt;}
.y1e3{bottom:785.600000pt;}
.y16{bottom:787.371680pt;}
.y91{bottom:787.572000pt;}
.y14c{bottom:787.632000pt;}
.y72{bottom:787.668000pt;}
.y18f{bottom:790.402720pt;}
.y1e2{bottom:796.320000pt;}
.y15{bottom:799.688960pt;}
.y90{bottom:801.492000pt;}
.y14b{bottom:801.552000pt;}
.y71{bottom:801.588000pt;}
.y18e{bottom:802.720000pt;}
.y1fe{bottom:807.040000pt;}
.y1e1{bottom:807.067840pt;}
.y14{bottom:812.006240pt;}
.y18d{bottom:815.112000pt;}
.y8f{bottom:815.256000pt;}
.y14a{bottom:815.316000pt;}
.y70{bottom:815.352000pt;}
.y1e0{bottom:817.786240pt;}
.y1fd{bottom:817.791040pt;}
.y13{bottom:824.162720pt;}
.y1df{bottom:828.504640pt;}
.y1fc{bottom:828.509440pt;}
.y18c{bottom:828.876000pt;}
.y8e{bottom:829.020000pt;}
.y149{bottom:829.080000pt;}
.y6f{bottom:829.116000pt;}
.y12{bottom:836.492480pt;}
.y1de{bottom:839.223040pt;}
.y1fb{bottom:839.227840pt;}
.y18b{bottom:842.640000pt;}
.y8d{bottom:842.784000pt;}
.y148{bottom:842.844000pt;}
.y6e{bottom:842.880000pt;}
.y11{bottom:848.648960pt;}
.y1dd{bottom:849.941440pt;}
.y1fa{bottom:849.946240pt;}
.y18a{bottom:856.560000pt;}
.y8c{bottom:856.704000pt;}
.y147{bottom:856.764000pt;}
.y6d{bottom:856.800000pt;}
.y1dc{bottom:860.659840pt;}
.y1f9{bottom:860.664640pt;}
.y10{bottom:860.966240pt;}
.y189{bottom:870.324000pt;}
.y8b{bottom:870.468000pt;}
.y146{bottom:870.528000pt;}
.y6c{bottom:870.560000pt;}
.y1db{bottom:871.378240pt;}
.y1f8{bottom:871.383040pt;}
.yf{bottom:873.283520pt;}
.y1da{bottom:882.096640pt;}
.y1f7{bottom:882.101440pt;}
.y188{bottom:884.088000pt;}
.y8a{bottom:884.232000pt;}
.y145{bottom:884.292000pt;}
.y6b{bottom:884.316000pt;}
.ye{bottom:885.442720pt;}
.y1d9{bottom:892.815040pt;}
.y1f6{bottom:892.819840pt;}
.yd{bottom:897.760000pt;}
.y187{bottom:897.852000pt;}
.y89{bottom:897.996000pt;}
.y144{bottom:898.056000pt;}
.y6a{bottom:898.080000pt;}
.y1d8{bottom:903.691200pt;}
.y1f5{bottom:903.696000pt;}
.yc{bottom:910.080000pt;}
.y186{bottom:911.772000pt;}
.y88{bottom:911.916000pt;}
.yc2{bottom:911.952000pt;}
.y143{bottom:911.976000pt;}
.y69{bottom:912.000000pt;}
.y1d7{bottom:914.409600pt;}
.y1f4{bottom:914.414400pt;}
.yb{bottom:922.251680pt;}
.y1d6{bottom:925.128000pt;}
.y1f3{bottom:925.132800pt;}
.y185{bottom:925.536000pt;}
.y87{bottom:925.680000pt;}
.yc1{bottom:925.716000pt;}
.yba{bottom:925.740000pt;}
.y68{bottom:925.744000pt;}
.ya{bottom:934.568960pt;}
.y1d5{bottom:935.846400pt;}
.y1f2{bottom:935.851200pt;}
.y184{bottom:939.300000pt;}
.y86{bottom:939.444000pt;}
.yc0{bottom:939.480000pt;}
.yb9{bottom:939.504000pt;}
.y67{bottom:939.508000pt;}
.y1d4{bottom:946.564800pt;}
.y1f1{bottom:946.569600pt;}
.y9{bottom:946.886240pt;}
.y183{bottom:953.064000pt;}
.y85{bottom:953.208000pt;}
.ybf{bottom:953.244000pt;}
.yb8{bottom:953.268000pt;}
.y66{bottom:953.272000pt;}
.y1d3{bottom:957.283200pt;}
.y1f0{bottom:957.288000pt;}
.y8{bottom:959.042720pt;}
.y182{bottom:966.984000pt;}
.y84{bottom:967.128000pt;}
.ybe{bottom:967.164000pt;}
.y111{bottom:967.176000pt;}
.yb7{bottom:967.188000pt;}
.y65{bottom:967.192000pt;}
.y1d2{bottom:968.001600pt;}
.y1ef{bottom:968.006400pt;}
.y1d1{bottom:978.720000pt;}
.y1ee{bottom:978.724800pt;}
.y181{bottom:980.748000pt;}
.y83{bottom:980.892000pt;}
.ybd{bottom:980.928000pt;}
.y110{bottom:980.940000pt;}
.yb6{bottom:980.952000pt;}
.y64{bottom:980.956000pt;}
.y7{bottom:984.000000pt;}
.y1d0{bottom:989.440000pt;}
.y1ed{bottom:989.443200pt;}
.y180{bottom:994.512000pt;}
.y82{bottom:994.656000pt;}
.ybc{bottom:994.692000pt;}
.y10f{bottom:994.704000pt;}
.yb5{bottom:994.716000pt;}
.y63{bottom:994.720000pt;}
.y6{bottom:997.442720pt;}
.y1cf{bottom:1000.160000pt;}
.y1ec{bottom:1000.161600pt;}
.y17f{bottom:1008.276000pt;}
.y81{bottom:1008.420000pt;}
.ybb{bottom:1008.456000pt;}
.y10e{bottom:1008.468000pt;}
.y62{bottom:1008.480000pt;}
.y5{bottom:1009.760000pt;}
.y1ce{bottom:1010.880000pt;}
.y2{bottom:1024.640000pt;}
.y1{bottom:1045.440000pt;}
.hd{height:15.041333pt;}
.h13{height:27.835000pt;}
.h9{height:28.722500pt;}
.hb{height:32.055312pt;}
.h12{height:32.896875pt;}
.h10{height:38.001562pt;}
.h11{height:38.715000pt;}
.hc{height:42.539062pt;}
.hf{height:42.571062pt;}
.h8{height:44.672580pt;}
.h6{height:44.675780pt;}
.h7{height:44.711620pt;}
.h5{height:44.722500pt;}
.he{height:45.752960pt;}
.h4{height:50.062500pt;}
.h2{height:51.216000pt;}
.ha{height:56.679040pt;}
.h3{height:68.288000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:507.521333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:7.200000pt;}
.x1{left:68.000000pt;}
.x2{left:86.880000pt;}
.x13{left:100.637120pt;}
.x23{left:104.000000pt;}
.x12{left:186.240000pt;}
.x14{left:212.640640pt;}
.x1d{left:215.996480pt;}
.x17{left:218.560000pt;}
.x1f{left:253.119840pt;}
.x1b{left:283.521760pt;}
.x10{left:324.480000pt;}
.x11{left:369.920000pt;}
.x1a{left:396.800000pt;}
.x15{left:410.060000pt;}
.x16{left:428.960000pt;}
.x20{left:432.634880pt;}
.x8{left:477.121120pt;}
.x22{left:494.240000pt;}
.x21{left:516.470400pt;}
.xe{left:523.519840pt;}
.xd{left:548.004320pt;}
.xf{left:549.748320pt;}
.xb{left:555.653440pt;}
.x7{left:560.000000pt;}
.x4{left:562.215520pt;}
.x3{left:564.316640pt;}
.x9{left:565.440800pt;}
.xc{left:571.363200pt;}
.xa{left:589.582240pt;}
.x6{left:606.682080pt;}
.x1e{left:635.040000pt;}
.x19{left:638.720000pt;}
.x1c{left:644.480000pt;}
.x5{left:725.566880pt;}
}




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