
    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_e60bdb21cb5728c748e9a56b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.012695;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_66238af2d86417f263e7648e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.225586;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_3730b336c4ad54a81aa236ed.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.014160;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_09a1c14381a027e050122113.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.014160;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_6c4c9d1d8eb573e7b5008d8b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.012695;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_152fa9703880bdb4d550cb91.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.225586;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_7f0afda9aef9be94094da25c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_75082325759e699fc258e8a7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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_3be331ff6c765a9171ef5c75.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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_53490977637291a17cacb310.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.909180;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_42e39acf0eac529ca84e944a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.766602;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_7344168575b0f8ee343489d4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.800781;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_efa767743f0dd340f38f433f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-11.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:11.880000px;}
.v1{vertical-align:15.120000px;}
.ls32{letter-spacing:-1.440000px;}
.ls1d{letter-spacing:-1.302000px;}
.ls1c{letter-spacing:-1.260000px;}
.ls31{letter-spacing:-1.224000px;}
.lsd{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.990000px;}
.ls23{letter-spacing:-0.630000px;}
.ls57{letter-spacing:-0.504000px;}
.ls78{letter-spacing:-0.432000px;}
.ls3e{letter-spacing:-0.429600px;}
.ls16{letter-spacing:-0.381000px;}
.ls59{letter-spacing:-0.378000px;}
.ls24{letter-spacing:-0.360000px;}
.ls2d{letter-spacing:-0.342000px;}
.ls3c{letter-spacing:-0.324000px;}
.ls21{letter-spacing:-0.316800px;}
.ls43{letter-spacing:-0.306600px;}
.ls82{letter-spacing:-0.288000px;}
.ls10{letter-spacing:-0.270000px;}
.ls5e{letter-spacing:-0.252000px;}
.ls55{letter-spacing:-0.234000px;}
.ls17{letter-spacing:-0.220200px;}
.ls76{letter-spacing:-0.216000px;}
.ls77{letter-spacing:-0.198000px;}
.ls12{letter-spacing:-0.180000px;}
.ls5c{letter-spacing:-0.162000px;}
.ls2b{letter-spacing:-0.158400px;}
.ls42{letter-spacing:-0.145200px;}
.ls56{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.143400px;}
.ls5d{letter-spacing:-0.126000px;}
.ls39{letter-spacing:-0.119400px;}
.ls18{letter-spacing:-0.115800px;}
.lsf{letter-spacing:-0.090000px;}
.ls84{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.067200px;}
.ls40{letter-spacing:-0.065400px;}
.ls44{letter-spacing:-0.054000px;}
.ls3a{letter-spacing:-0.053280px;}
.ls5a{letter-spacing:-0.036000px;}
.ls28{letter-spacing:-0.021240px;}
.ls11{letter-spacing:-0.018720px;}
.ls58{letter-spacing:-0.018000px;}
.ls1b{letter-spacing:-0.013320px;}
.ls2c{letter-spacing:-0.000001px;}
.lsb{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.002520px;}
.ls20{letter-spacing:0.018000px;}
.ls38{letter-spacing:0.018720px;}
.ls4{letter-spacing:0.026640px;}
.ls1{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.053280px;}
.ls5b{letter-spacing:0.054000px;}
.ls1f{letter-spacing:0.072000px;}
.ls34{letter-spacing:0.075960px;}
.ls29{letter-spacing:0.080280px;}
.ls22{letter-spacing:0.080400px;}
.ls8{letter-spacing:0.090000px;}
.ls33{letter-spacing:0.107400px;}
.ls7{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.117000px;}
.ls1e{letter-spacing:0.126000px;}
.ls37{letter-spacing:0.130680px;}
.ls2f{letter-spacing:0.138000px;}
.ls9{letter-spacing:0.139800px;}
.ls27{letter-spacing:0.140040px;}
.ls3b{letter-spacing:0.145200px;}
.ls5f{letter-spacing:0.162000px;}
.ls26{letter-spacing:0.173280px;}
.ls0{letter-spacing:0.180000px;}
.ls73{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.228000px;}
.ls36{letter-spacing:0.240600px;}
.ls25{letter-spacing:0.300000px;}
.ls35{letter-spacing:0.378720px;}
.ls83{letter-spacing:0.396000px;}
.ls3d{letter-spacing:0.450000px;}
.ls50{letter-spacing:0.540000px;}
.ls70{letter-spacing:0.660000px;}
.ls1a{letter-spacing:0.810000px;}
.ls4f{letter-spacing:0.900000px;}
.ls3f{letter-spacing:1.170000px;}
.ls4e{letter-spacing:1.260000px;}
.ls81{letter-spacing:1.380000px;}
.ls47{letter-spacing:1.620000px;}
.ls46{letter-spacing:1.980000px;}
.ls30{letter-spacing:2.340000px;}
.ls4c{letter-spacing:2.460000px;}
.ls65{letter-spacing:2.700000px;}
.ls6d{letter-spacing:3.060000px;}
.ls6e{letter-spacing:3.180000px;}
.ls19{letter-spacing:3.240000px;}
.ls49{letter-spacing:3.420000px;}
.ls48{letter-spacing:3.780000px;}
.ls15{letter-spacing:4.050000px;}
.ls7b{letter-spacing:4.140000px;}
.ls7c{letter-spacing:4.260000px;}
.ls14{letter-spacing:4.770000px;}
.ls60{letter-spacing:4.860000px;}
.ls4b{letter-spacing:5.220000px;}
.ls4a{letter-spacing:5.580000px;}
.ls7e{letter-spacing:5.940000px;}
.ls7d{letter-spacing:7.740000px;}
.ls64{letter-spacing:8.100000px;}
.ls63{letter-spacing:8.460000px;}
.lsa{letter-spacing:9.990000px;}
.ls6c{letter-spacing:12.780000px;}
.ls6a{letter-spacing:13.140000px;}
.ls6b{letter-spacing:13.260000px;}
.ls69{letter-spacing:13.500000px;}
.ls6f{letter-spacing:14.220000px;}
.ls66{letter-spacing:14.580000px;}
.ls62{letter-spacing:14.940000px;}
.ls61{letter-spacing:15.300000px;}
.ls72{letter-spacing:17.100000px;}
.ls71{letter-spacing:17.460000px;}
.ls3{letter-spacing:21.870000px;}
.ls2{letter-spacing:32.310000px;}
.ls51{letter-spacing:44.748000px;}
.ls7a{letter-spacing:46.980000px;}
.ls79{letter-spacing:47.340000px;}
.ls75{letter-spacing:49.140000px;}
.ls74{letter-spacing:49.500000px;}
.ls68{letter-spacing:57.060000px;}
.ls67{letter-spacing:57.420000px;}
.ls53{letter-spacing:60.660000px;}
.ls52{letter-spacing:60.780000px;}
.ls80{letter-spacing:62.100000px;}
.ls7f{letter-spacing:62.460000px;}
.ls45{letter-spacing:71.748000px;}
.ls4d{letter-spacing:79.020000px;}
.ls54{letter-spacing:86.580000px;}
.ls2a{letter-spacing:849.090000px;}
.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;}
}
.ws8{word-spacing:-60.120000px;}
.ws2e{word-spacing:-54.000000px;}
.ws3{word-spacing:-27.036000px;}
.ws34{word-spacing:-18.000000px;}
.wsd{word-spacing:-15.210000px;}
.ws27{word-spacing:-15.175200px;}
.wsc{word-spacing:-15.169800px;}
.ws1f{word-spacing:-15.147000px;}
.ws23{word-spacing:-15.137400px;}
.ws18{word-spacing:-15.110400px;}
.ws2c{word-spacing:-15.032520px;}
.ws2{word-spacing:-15.030000px;}
.ws11{word-spacing:-15.016680px;}
.ws2b{word-spacing:-14.964600px;}
.ws4{word-spacing:-14.962800px;}
.wsf{word-spacing:-14.914200px;}
.ws2d{word-spacing:-14.884800px;}
.ws1c{word-spacing:-14.871600px;}
.ws10{word-spacing:-14.850000px;}
.wse{word-spacing:-14.809800px;}
.ws17{word-spacing:-14.713200px;}
.ws2a{word-spacing:-13.950000px;}
.ws45{word-spacing:-13.896000px;}
.ws20{word-spacing:-13.806000px;}
.ws13{word-spacing:-13.770000px;}
.ws12{word-spacing:-13.728000px;}
.ws42{word-spacing:-13.716000px;}
.ws3d{word-spacing:-13.662000px;}
.ws30{word-spacing:-13.626000px;}
.ws15{word-spacing:-13.608000px;}
.ws1a{word-spacing:-13.590000px;}
.ws16{word-spacing:-13.572000px;}
.ws38{word-spacing:-13.554000px;}
.ws19{word-spacing:-13.536000px;}
.ws39{word-spacing:-13.518000px;}
.ws7{word-spacing:-13.500000px;}
.ws1d{word-spacing:-13.499999px;}
.ws35{word-spacing:-13.482000px;}
.ws37{word-spacing:-13.464000px;}
.ws2f{word-spacing:-13.446000px;}
.ws46{word-spacing:-13.428000px;}
.ws3b{word-spacing:-13.374000px;}
.ws32{word-spacing:-13.356000px;}
.ws3a{word-spacing:-13.338000px;}
.ws3f{word-spacing:-13.302000px;}
.ws3e{word-spacing:-13.284000px;}
.ws31{word-spacing:-13.266000px;}
.ws3c{word-spacing:-13.248000px;}
.ws40{word-spacing:-13.230000px;}
.ws44{word-spacing:-13.212000px;}
.ws43{word-spacing:-13.176000px;}
.ws1e{word-spacing:-13.158000px;}
.ws1b{word-spacing:-13.140000px;}
.ws36{word-spacing:-13.122000px;}
.ws41{word-spacing:-13.068000px;}
.ws33{word-spacing:-12.996000px;}
.ws21{word-spacing:-12.420000px;}
.ws24{word-spacing:-12.210600px;}
.ws1{word-spacing:-12.150000px;}
.ws22{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.970000px;}
.ws25{word-spacing:-11.850600px;}
.ws9{word-spacing:-10.530000px;}
.wsa{word-spacing:-10.350000px;}
.ws28{word-spacing:-9.036000px;}
.ws5{word-spacing:-9.000000px;}
.ws29{word-spacing:-8.676000px;}
.ws14{word-spacing:-8.280000px;}
.ws6{word-spacing:-7.920000px;}
.ws26{word-spacing:-7.470000px;}
.wsb{word-spacing:0.000000px;}
._11{margin-left:-5.275680px;}
._b{margin-left:-3.599760px;}
._4{margin-left:-2.404800px;}
._3{margin-left:-1.146000px;}
._1{width:1.005480px;}
._8{width:2.168040px;}
._7{width:3.426840px;}
._a{width:4.687200px;}
._9{width:5.771520px;}
._e{width:7.070160px;}
._6{width:8.120160px;}
._c{width:9.520920px;}
._5{width:10.632840px;}
._f{width:12.032400px;}
._12{width:14.015400px;}
._1f{width:15.030000px;}
._10{width:16.653240px;}
._21{width:17.879520px;}
._19{width:20.034000px;}
._2{width:22.068000px;}
._14{width:23.124240px;}
._17{width:26.244000px;}
._23{width:47.106000px;}
._22{width:49.194000px;}
._20{width:57.360000px;}
._1c{width:59.862000px;}
._1d{width:61.206000px;}
._24{width:62.844000px;}
._18{width:64.638000px;}
._1a{width:78.192000px;}
._1b{width:79.326000px;}
._1e{width:86.460000px;}
._15{width:1092.992648px;}
._16{width:1096.918835px;}
._0{width:1999.629360px;}
._13{width:2580.669360px;}
._d{width:2604.429360px;}
.fc1{color:transparent;}
.fc2{color:rgb(15,15,15);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.880000px;}
.fs8{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fs6{font-size:42.120000px;}
.fs1{font-size:47.880000px;}
.fsa{font-size:50.989440px;}
.fs9{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y11e{bottom:1.350000px;}
.y124{bottom:1.980000px;}
.y121{bottom:2.520000px;}
.y4d{bottom:3.150000px;}
.y199{bottom:3.600000px;}
.y1a5{bottom:3.630000px;}
.y11b{bottom:3.870000px;}
.ye4{bottom:4.050000px;}
.ydb{bottom:4.140000px;}
.y3{bottom:4.500000px;}
.yf9{bottom:5.850000px;}
.yf0{bottom:6.570000px;}
.ydf{bottom:7.200000px;}
.yec{bottom:10.620000px;}
.y1a9{bottom:11.610000px;}
.y197{bottom:11.700000px;}
.y1a3{bottom:11.730000px;}
.yda{bottom:18.270000px;}
.y198{bottom:19.800000px;}
.y2{bottom:20.250000px;}
.y4c{bottom:21.150000px;}
.ye3{bottom:22.230000px;}
.ye7{bottom:22.320000px;}
.yf8{bottom:24.030000px;}
.yef{bottom:24.840000px;}
.yde{bottom:25.380000px;}
.ye1{bottom:26.460000px;}
.yeb{bottom:28.890000px;}
.ye2{bottom:36.360000px;}
.yf3{bottom:36.450000px;}
.ye6{bottom:36.540000px;}
.ye9{bottom:37.170000px;}
.yf7{bottom:38.160000px;}
.yee{bottom:38.970000px;}
.y4b{bottom:39.150000px;}
.ydd{bottom:39.510000px;}
.yf5{bottom:41.760000px;}
.yea{bottom:43.020000px;}
.yf2{bottom:45.810000px;}
.y6{bottom:49.410000px;}
.y50{bottom:50.310000px;}
.y4a{bottom:57.180000px;}
.y123{bottom:58.500000px;}
.y11d{bottom:59.880000px;}
.y120{bottom:61.020000px;}
.y11a{bottom:62.370000px;}
.y5{bottom:63.540000px;}
.y1e5{bottom:72.630000px;}
.y193{bottom:73.980000px;}
.y49{bottom:75.180000px;}
.y224{bottom:76.950000px;}
.y1d3{bottom:77.130000px;}
.y81{bottom:77.850000px;}
.y1f5{bottom:78.840000px;}
.y19e{bottom:80.280000px;}
.y281{bottom:81.540000px;}
.yac{bottom:83.520000px;}
.y180{bottom:86.490000px;}
.y119{bottom:91.440000px;}
.y48{bottom:93.180000px;}
.y1e4{bottom:93.600000px;}
.yfc{bottom:93.870000px;}
.y192{bottom:95.040000px;}
.y19c{bottom:97.200000px;}
.y223{bottom:97.920000px;}
.y1d2{bottom:98.100000px;}
.y80{bottom:98.820000px;}
.y1f4{bottom:99.900000px;}
.y177{bottom:101.340000px;}
.y1b6{bottom:102.420000px;}
.y280{bottom:102.510000px;}
.y134{bottom:105.930000px;}
.y17f{bottom:107.460000px;}
.yab{bottom:109.440000px;}
.y47{bottom:111.180000px;}
.y19d{bottom:113.400000px;}
.y1e3{bottom:114.570000px;}
.yfb{bottom:114.930000px;}
.y191{bottom:116.010000px;}
.y222{bottom:118.890000px;}
.y1d1{bottom:119.070000px;}
.y7f{bottom:119.880000px;}
.y1f3{bottom:120.870000px;}
.y176{bottom:122.400000px;}
.y1b5{bottom:123.390000px;}
.y27f{bottom:123.480000px;}
.y33{bottom:126.990000px;}
.y24f{bottom:127.710000px;}
.y17e{bottom:128.430000px;}
.y19a{bottom:130.320000px;}
.yf4{bottom:134.580000px;}
.y1e2{bottom:135.630000px;}
.yfa{bottom:135.900000px;}
.y18c{bottom:136.350000px;}
.yf1{bottom:137.790000px;}
.y46{bottom:138.180000px;}
.y221{bottom:139.950000px;}
.y1d0{bottom:140.130000px;}
.y7e{bottom:140.850000px;}
.y1f2{bottom:141.840000px;}
.y175{bottom:143.370000px;}
.y1b4{bottom:144.360000px;}
.y27e{bottom:144.540000px;}
.y133{bottom:145.350000px;}
.y19b{bottom:146.520000px;}
.ye0{bottom:147.150000px;}
.y32{bottom:147.960000px;}
.y24e{bottom:148.770000px;}
.y17d{bottom:149.490000px;}
.ye8{bottom:150.420000px;}
.y190{bottom:154.530000px;}
.y45{bottom:156.180000px;}
.y1e1{bottom:156.600000px;}
.y18b{bottom:157.320000px;}
.y220{bottom:160.920000px;}
.y1cf{bottom:161.100000px;}
.y7d{bottom:161.820000px;}
.y1f1{bottom:162.900000px;}
.y196{bottom:163.440000px;}
.y174{bottom:164.340000px;}
.y27d{bottom:165.510000px;}
.y132{bottom:166.320000px;}
.y24d{bottom:169.740000px;}
.y1b3{bottom:170.370000px;}
.y17c{bottom:170.460000px;}
.y44{bottom:174.180000px;}
.y18f{bottom:175.590000px;}
.y1e0{bottom:177.570000px;}
.y34{bottom:177.840000px;}
.yf6{bottom:178.320000px;}
.y21f{bottom:181.890000px;}
.y1ce{bottom:182.070000px;}
.y7c{bottom:182.880000px;}
.y1f0{bottom:183.870000px;}
.y27c{bottom:186.480000px;}
.y31{bottom:187.020000px;}
.y131{bottom:187.290000px;}
.y173{bottom:189.900000px;}
.y24c{bottom:190.710000px;}
.y43{bottom:192.180000px;}
.y18a{bottom:195.840000px;}
.y17b{bottom:195.930000px;}
.y18e{bottom:196.560000px;}
.y1df{bottom:198.630000px;}
.y21e{bottom:202.950000px;}
.y1cd{bottom:203.130000px;}
.y7b{bottom:203.850000px;}
.y1ef{bottom:204.840000px;}
.yd8{bottom:207.090000px;}
.y27b{bottom:207.540000px;}
.y30{bottom:207.990000px;}
.y130{bottom:208.350000px;}
.y42{bottom:210.180000px;}
.y195{bottom:210.420000px;}
.y24b{bottom:211.770000px;}
.y189{bottom:216.900000px;}
.y18d{bottom:217.530000px;}
.y183{bottom:218.094814px;}
.y1de{bottom:219.600000px;}
.y21d{bottom:223.920000px;}
.y1cc{bottom:224.100000px;}
.y7a{bottom:224.850000px;}
.y41{bottom:228.180000px;}
.y172{bottom:228.450000px;}
.y27a{bottom:228.540000px;}
.y2f{bottom:228.990000px;}
.y12f{bottom:229.350000px;}
.y1ee{bottom:230.430000px;}
.y194{bottom:231.420000px;}
.y24a{bottom:232.770000px;}
.y17a{bottom:234.570000px;}
.y188{bottom:237.900000px;}
.y1dd{bottom:240.600000px;}
.y21c{bottom:244.920000px;}
.y1cb{bottom:245.100000px;}
.y79{bottom:245.910000px;}
.y40{bottom:246.180000px;}
.yd7{bottom:249.150000px;}
.y171{bottom:249.420000px;}
.y279{bottom:249.510000px;}
.y118{bottom:249.870000px;}
.y2e{bottom:250.050000px;}
.y249{bottom:253.740000px;}
.y12e{bottom:255.270000px;}
.y179{bottom:255.540000px;}
.y187{bottom:258.870000px;}
.y1dc{bottom:261.660000px;}
.y3f{bottom:264.180000px;}
.y21b{bottom:265.980000px;}
.y1ca{bottom:266.160000px;}
.y78{bottom:266.880000px;}
.y15a{bottom:268.050000px;}
.y1ed{bottom:269.400000px;}
.yd6{bottom:270.120000px;}
.y278{bottom:270.570000px;}
.y117{bottom:270.930000px;}
.y2d{bottom:271.020000px;}
.y248{bottom:274.800000px;}
.y170{bottom:275.340000px;}
.y186{bottom:279.930000px;}
.y178{bottom:281.460000px;}
.y181{bottom:281.608647px;}
.y3e{bottom:282.180000px;}
.y1db{bottom:282.630000px;}
.y21a{bottom:286.950000px;}
.y1c9{bottom:287.130000px;}
.y77{bottom:287.850000px;}
.y159{bottom:289.020000px;}
.y1ec{bottom:290.370000px;}
.yd5{bottom:291.180000px;}
.y277{bottom:291.540000px;}
.y116{bottom:291.900000px;}
.y2c{bottom:291.990000px;}
.y247{bottom:295.770000px;}
.y3d{bottom:300.180000px;}
.y185{bottom:300.900000px;}
.y1da{bottom:303.600000px;}
.y219{bottom:307.920000px;}
.y1c8{bottom:308.100000px;}
.y76{bottom:308.910000px;}
.y158{bottom:309.990000px;}
.y1eb{bottom:311.430000px;}
.yd4{bottom:312.150000px;}
.y276{bottom:312.510000px;}
.y115{bottom:312.870000px;}
.y2b{bottom:313.050000px;}
.y246{bottom:316.740000px;}
.y3c{bottom:318.180000px;}
.y184{bottom:321.870000px;}
.y1d9{bottom:324.660000px;}
.y218{bottom:328.980000px;}
.y1c7{bottom:329.160000px;}
.y75{bottom:329.880000px;}
.y157{bottom:331.050000px;}
.y1ea{bottom:332.400000px;}
.yd3{bottom:333.120000px;}
.y275{bottom:333.570000px;}
.y114{bottom:333.930000px;}
.y2a{bottom:334.020000px;}
.y284{bottom:336.450000px;}
.y245{bottom:337.800000px;}
.y3b{bottom:345.180000px;}
.y1d8{bottom:345.630000px;}
.y217{bottom:349.950000px;}
.y1c6{bottom:350.130000px;}
.y74{bottom:350.850000px;}
.y156{bottom:352.020000px;}
.y1e9{bottom:353.370000px;}
.yed{bottom:353.730000px;}
.yd2{bottom:354.180000px;}
.y274{bottom:354.540000px;}
.y113{bottom:354.900000px;}
.y29{bottom:354.990000px;}
.y283{bottom:357.420000px;}
.y244{bottom:358.770000px;}
.y3a{bottom:363.180000px;}
.y1d7{bottom:366.600000px;}
.y216{bottom:370.920000px;}
.y1c5{bottom:371.100000px;}
.y73{bottom:371.910000px;}
.y155{bottom:372.990000px;}
.y1e8{bottom:374.430000px;}
.yd1{bottom:375.150000px;}
.y273{bottom:375.510000px;}
.y112{bottom:375.870000px;}
.y28{bottom:376.050000px;}
.y282{bottom:378.480000px;}
.y243{bottom:379.740000px;}
.y39{bottom:381.180000px;}
.y1d6{bottom:387.660000px;}
.y215{bottom:391.980000px;}
.y1c4{bottom:392.160000px;}
.y72{bottom:392.880000px;}
.y154{bottom:394.050000px;}
.y1e7{bottom:395.400000px;}
.yd0{bottom:396.120000px;}
.y272{bottom:396.570000px;}
.y111{bottom:396.930000px;}
.y27{bottom:397.020000px;}
.y38{bottom:399.180000px;}
.y242{bottom:400.800000px;}
.ya2{bottom:408.630000px;}
.y214{bottom:412.950000px;}
.y1c3{bottom:413.130000px;}
.y71{bottom:413.850000px;}
.y153{bottom:415.020000px;}
.y271{bottom:417.540000px;}
.y110{bottom:417.900000px;}
.y26{bottom:417.990000px;}
.y1e6{bottom:420.870000px;}
.ycf{bottom:421.680000px;}
.y241{bottom:421.770000px;}
.ya1{bottom:429.600000px;}
.y182{bottom:433.383562px;}
.y213{bottom:433.920000px;}
.y1c2{bottom:434.100000px;}
.y70{bottom:434.910000px;}
.y37{bottom:435.180000px;}
.y152{bottom:435.990000px;}
.y270{bottom:438.510000px;}
.y10f{bottom:438.870000px;}
.y25{bottom:439.050000px;}
.y240{bottom:442.740000px;}
.yc2{bottom:444.180000px;}
.ya0{bottom:450.660000px;}
.y36{bottom:453.180000px;}
.y212{bottom:454.980000px;}
.y1c1{bottom:455.160000px;}
.y6f{bottom:455.880000px;}
.y151{bottom:457.050000px;}
.y26f{bottom:459.570000px;}
.y10e{bottom:459.930000px;}
.y24{bottom:460.020000px;}
.yce{bottom:460.650000px;}
.y23f{bottom:463.800000px;}
.yc1{bottom:465.150000px;}
.y35{bottom:471.210000px;}
.y9f{bottom:471.630000px;}
.y211{bottom:475.950000px;}
.y1c0{bottom:476.130000px;}
.y6e{bottom:476.850000px;}
.y150{bottom:478.020000px;}
.y26e{bottom:480.540000px;}
.y10d{bottom:480.900000px;}
.y23{bottom:480.990000px;}
.ycd{bottom:481.620000px;}
.y23e{bottom:484.770000px;}
.yc0{bottom:486.120000px;}
.y9e{bottom:492.600000px;}
.y16f{bottom:493.590000px;}
.y210{bottom:496.920000px;}
.y1bf{bottom:497.100000px;}
.y6d{bottom:497.910000px;}
.y14f{bottom:498.990000px;}
.y26d{bottom:501.510000px;}
.y10c{bottom:501.870000px;}
.y22{bottom:502.050000px;}
.ycc{bottom:502.680000px;}
.y23d{bottom:505.740000px;}
.ybf{bottom:507.180000px;}
.y9d{bottom:513.660000px;}
.y16e{bottom:514.650000px;}
.y20f{bottom:517.980000px;}
.y1be{bottom:518.160000px;}
.y6c{bottom:518.880000px;}
.y14e{bottom:520.050000px;}
.y26c{bottom:522.570000px;}
.y10b{bottom:522.930000px;}
.y21{bottom:523.020000px;}
.ycb{bottom:523.650000px;}
.y23c{bottom:526.800000px;}
.ybe{bottom:528.150000px;}
.y9c{bottom:534.630000px;}
.y16d{bottom:535.620000px;}
.y20e{bottom:538.950000px;}
.y1bd{bottom:539.130000px;}
.y6b{bottom:539.850000px;}
.y12d{bottom:540.030000px;}
.y14d{bottom:541.020000px;}
.y26b{bottom:543.540000px;}
.y10a{bottom:543.900000px;}
.y20{bottom:543.990000px;}
.yca{bottom:544.620000px;}
.y23b{bottom:547.770000px;}
.ybd{bottom:549.120000px;}
.ye5{bottom:552.900000px;}
.y9b{bottom:555.600000px;}
.y16c{bottom:556.590000px;}
.y20d{bottom:559.920000px;}
.y1bc{bottom:560.100000px;}
.y6a{bottom:560.910000px;}
.y12c{bottom:561.000000px;}
.y14c{bottom:561.990000px;}
.y26a{bottom:564.510000px;}
.y109{bottom:564.870000px;}
.y1f{bottom:565.050000px;}
.yc9{bottom:565.680000px;}
.y23a{bottom:568.740000px;}
.ybc{bottom:570.180000px;}
.y9a{bottom:576.660000px;}
.y16b{bottom:577.650000px;}
.y20c{bottom:580.980000px;}
.y1bb{bottom:581.160000px;}
.y69{bottom:581.880000px;}
.y12b{bottom:581.970000px;}
.y14b{bottom:583.050000px;}
.y269{bottom:585.570000px;}
.y108{bottom:585.930000px;}
.y1e{bottom:586.020000px;}
.yc8{bottom:586.650000px;}
.y239{bottom:589.800000px;}
.ybb{bottom:591.150000px;}
.y99{bottom:597.630000px;}
.y16a{bottom:598.620000px;}
.yaa{bottom:600.960000px;}
.y1ba{bottom:602.130000px;}
.y68{bottom:602.850000px;}
.y12a{bottom:603.030000px;}
.y14a{bottom:604.020000px;}
.y268{bottom:606.540000px;}
.y107{bottom:606.900000px;}
.y1d{bottom:606.990000px;}
.yc7{bottom:607.620000px;}
.y238{bottom:610.770000px;}
.yba{bottom:612.120000px;}
.y98{bottom:618.600000px;}
.y169{bottom:619.590000px;}
.y20b{bottom:620.400000px;}
.ya9{bottom:621.930000px;}
.y1b9{bottom:623.100000px;}
.y67{bottom:623.910000px;}
.y149{bottom:624.990000px;}
.y267{bottom:627.510000px;}
.y106{bottom:627.870000px;}
.y1c{bottom:628.050000px;}
.y129{bottom:628.500000px;}
.yc6{bottom:628.680000px;}
.y237{bottom:631.740000px;}
.yb9{bottom:633.180000px;}
.y97{bottom:639.660000px;}
.y168{bottom:640.650000px;}
.y20a{bottom:641.370000px;}
.ya8{bottom:642.900000px;}
.y1b8{bottom:644.160000px;}
.y66{bottom:644.880000px;}
.y148{bottom:646.080000px;}
.y266{bottom:648.600000px;}
.y105{bottom:648.960000px;}
.y236{bottom:652.830000px;}
.yb8{bottom:654.180000px;}
.y96{bottom:660.660000px;}
.y167{bottom:661.650000px;}
.y209{bottom:662.460000px;}
.y65{bottom:665.880000px;}
.y1b{bottom:666.150000px;}
.y128{bottom:667.050000px;}
.yc5{bottom:667.230000px;}
.y265{bottom:669.570000px;}
.y104{bottom:669.930000px;}
.y1b7{bottom:670.470000px;}
.y235{bottom:673.800000px;}
.yb7{bottom:675.150000px;}
.ya7{bottom:681.540000px;}
.y95{bottom:681.630000px;}
.y166{bottom:682.620000px;}
.y208{bottom:683.430000px;}
.y1a{bottom:685.320000px;}
.y64{bottom:686.940000px;}
.y147{bottom:688.020000px;}
.y127{bottom:688.110000px;}
.yc4{bottom:688.200000px;}
.y264{bottom:690.540000px;}
.y103{bottom:690.900000px;}
.y234{bottom:694.770000px;}
.yb6{bottom:696.210000px;}
.y19{bottom:698.460000px;}
.ya6{bottom:702.510000px;}
.y94{bottom:702.690000px;}
.y165{bottom:703.680000px;}
.y207{bottom:704.400000px;}
.y1d5{bottom:707.190000px;}
.y63{bottom:707.910000px;}
.y126{bottom:709.080000px;}
.y263{bottom:711.600000px;}
.y102{bottom:711.960000px;}
.yc3{bottom:714.120000px;}
.yb5{bottom:717.180000px;}
.y18{bottom:717.630000px;}
.y233{bottom:721.500000px;}
.ya5{bottom:723.480000px;}
.y93{bottom:723.660000px;}
.y164{bottom:724.650000px;}
.y206{bottom:725.460000px;}
.y62{bottom:728.880000px;}
.y125{bottom:730.050000px;}
.y17{bottom:730.860000px;}
.y262{bottom:732.570000px;}
.y101{bottom:732.930000px;}
.y1d4{bottom:733.470000px;}
.yb4{bottom:738.150000px;}
.ya4{bottom:744.540000px;}
.y92{bottom:744.630000px;}
.y163{bottom:745.620000px;}
.y205{bottom:746.430000px;}
.y61{bottom:749.940000px;}
.y16{bottom:750.030000px;}
.y146{bottom:751.020000px;}
.y261{bottom:753.540000px;}
.y100{bottom:753.900000px;}
.y122{bottom:755.970000px;}
.ydc{bottom:756.240000px;}
.yb3{bottom:759.210000px;}
.y232{bottom:762.450000px;}
.y15{bottom:763.260000px;}
.y162{bottom:766.680000px;}
.y204{bottom:767.400000px;}
.y91{bottom:770.190000px;}
.ya3{bottom:770.370000px;}
.y60{bottom:770.910000px;}
.y145{bottom:772.080000px;}
.y260{bottom:774.600000px;}
.yff{bottom:774.960000px;}
.yb2{bottom:780.180000px;}
.y14{bottom:782.430000px;}
.y161{bottom:787.650000px;}
.y203{bottom:788.460000px;}
.y5f{bottom:791.880000px;}
.y231{bottom:792.510000px;}
.y144{bottom:793.050000px;}
.y25f{bottom:795.570000px;}
.y13{bottom:795.660000px;}
.yfe{bottom:795.930000px;}
.y90{bottom:796.470000px;}
.yb1{bottom:801.150000px;}
.y160{bottom:808.620000px;}
.y202{bottom:809.430000px;}
.y5e{bottom:812.940000px;}
.y230{bottom:813.480000px;}
.y143{bottom:814.020000px;}
.y12{bottom:814.830000px;}
.y25e{bottom:816.540000px;}
.yfd{bottom:816.900000px;}
.y1b2{bottom:819.600000px;}
.y11{bottom:827.970000px;}
.y15f{bottom:829.680000px;}
.y201{bottom:830.400000px;}
.y5d{bottom:833.910000px;}
.y142{bottom:835.080000px;}
.y25d{bottom:837.600000px;}
.y8f{bottom:837.960000px;}
.yb0{bottom:839.760000px;}
.y1b1{bottom:840.570000px;}
.y22f{bottom:843.450000px;}
.y10{bottom:847.140000px;}
.y15e{bottom:850.650000px;}
.y200{bottom:851.460000px;}
.y5c{bottom:854.880000px;}
.y141{bottom:856.050000px;}
.y25c{bottom:858.570000px;}
.y8e{bottom:858.930000px;}
.yf{bottom:860.370000px;}
.yaf{bottom:860.730000px;}
.y1b0{bottom:861.630000px;}
.y1ff{bottom:872.430000px;}
.y22e{bottom:873.510000px;}
.y5b{bottom:875.940000px;}
.y15d{bottom:876.120000px;}
.y140{bottom:877.020000px;}
.ye{bottom:879.540000px;}
.y8d{bottom:879.900000px;}
.yae{bottom:881.700000px;}
.y1af{bottom:882.600000px;}
.y11f{bottom:884.220000px;}
.yd{bottom:895.740000px;}
.y5a{bottom:896.910000px;}
.y1fe{bottom:897.900000px;}
.y13f{bottom:898.080000px;}
.y25b{bottom:900.600000px;}
.y8c{bottom:900.960000px;}
.y22d{bottom:903.480000px;}
.y1ae{bottom:903.570000px;}
.yad{bottom:907.620000px;}
.y15c{bottom:914.730000px;}
.y59{bottom:917.880000px;}
.y25a{bottom:921.570000px;}
.y8b{bottom:921.930000px;}
.y22c{bottom:924.450000px;}
.y1ad{bottom:929.130000px;}
.y13e{bottom:933.990000px;}
.yc{bottom:936.870000px;}
.y1fd{bottom:936.960000px;}
.y58{bottom:938.940000px;}
.y15b{bottom:940.560000px;}
.y259{bottom:942.540000px;}
.y8a{bottom:942.900000px;}
.y22b{bottom:945.510000px;}
.yd9{bottom:945.600000px;}
.y13d{bottom:954.240000px;}
.yb{bottom:957.120000px;}
.y1fc{bottom:957.930000px;}
.y57{bottom:959.910000px;}
.y258{bottom:963.600000px;}
.y89{bottom:963.960000px;}
.y1ab{bottom:965.040000px;}
.y22a{bottom:966.480000px;}
.y13c{bottom:974.490000px;}
.y1fb{bottom:978.900000px;}
.y56{bottom:980.880000px;}
.y1ac{bottom:981.240000px;}
.y257{bottom:984.570000px;}
.y88{bottom:984.930000px;}
.y229{bottom:987.450000px;}
.y13b{bottom:994.740000px;}
.y1a8{bottom:998.250000px;}
.ya{bottom:998.880000px;}
.y1fa{bottom:999.960000px;}
.y55{bottom:1001.940000px;}
.y256{bottom:1005.540000px;}
.y87{bottom:1005.900000px;}
.y1aa{bottom:1014.360000px;}
.y13a{bottom:1014.990000px;}
.y11c{bottom:1017.510000px;}
.y54{bottom:1022.910000px;}
.y1f9{bottom:1025.430000px;}
.y255{bottom:1026.600000px;}
.y86{bottom:1026.960000px;}
.y1a6{bottom:1031.370000px;}
.y139{bottom:1035.240000px;}
.y9{bottom:1035.330000px;}
.y228{bottom:1038.480000px;}
.y53{bottom:1043.880000px;}
.y1a7{bottom:1047.480000px;}
.y254{bottom:1047.570000px;}
.y85{bottom:1047.930000px;}
.y138{bottom:1055.490000px;}
.y227{bottom:1059.450000px;}
.y1f8{bottom:1064.400000px;}
.y1a2{bottom:1064.490000px;}
.y253{bottom:1068.570000px;}
.y84{bottom:1068.930000px;}
.y52{bottom:1070.280000px;}
.y8{bottom:1071.810000px;}
.y137{bottom:1075.680000px;}
.y226{bottom:1080.540000px;}
.y1a4{bottom:1080.720000px;}
.y1f7{bottom:1085.490000px;}
.y252{bottom:1089.630000px;}
.y83{bottom:1089.990000px;}
.y136{bottom:1096.740000px;}
.y1a0{bottom:1097.640000px;}
.y7{bottom:1104.660000px;}
.y1f6{bottom:1106.460000px;}
.y225{bottom:1110.510000px;}
.y251{bottom:1110.600000px;}
.y82{bottom:1110.960000px;}
.y1a1{bottom:1113.840000px;}
.y19f{bottom:1130.760000px;}
.y135{bottom:1131.480000px;}
.y250{bottom:1131.570000px;}
.y51{bottom:1131.930000px;}
.y4{bottom:1142.100000px;}
.y1{bottom:1157.130000px;}
.y4f{bottom:1186.650000px;}
.y4e{bottom:1196.280000px;}
.h25{height:16.110000px;}
.h23{height:16.200000px;}
.h26{height:16.230000px;}
.h1c{height:20.160000px;}
.h1e{height:20.190000px;}
.h1d{height:20.250000px;}
.h27{height:32.310000px;}
.h24{height:32.340000px;}
.h21{height:32.400000px;}
.h9{height:32.843848px;}
.h5{height:35.091738px;}
.h22{height:35.255391px;}
.h20{height:38.515949px;}
.hb{height:39.343535px;}
.h7{height:44.062559px;}
.h3{height:44.268047px;}
.h6{height:44.723848px;}
.he{height:50.440430px;}
.h2{height:51.750000px;}
.h13{height:52.543305px;}
.hc{height:53.015625px;}
.h28{height:55.503491px;}
.h4{height:56.157012px;}
.h11{height:61.793886px;}
.hf{height:67.253906px;}
.h18{height:71.613281px;}
.hd{height:74.004654px;}
.h8{height:79.523438px;}
.h1b{height:128.250000px;}
.h19{height:130.890000px;}
.h1a{height:133.290000px;}
.h17{height:135.930000px;}
.h12{height:189.360000px;}
.h16{height:191.910000px;}
.h15{height:199.170000px;}
.h10{height:202.800000px;}
.h14{height:203.340000px;}
.h1f{height:449.344443px;}
.ha{height:486.060000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:32.220000px;}
.w15{width:103.500000px;}
.w14{width:114.840000px;}
.w13{width:123.960000px;}
.w9{width:132.480000px;}
.w4{width:170.460000px;}
.w12{width:170.760000px;}
.w6{width:180.660000px;}
.wd{width:228.450000px;}
.w8{width:245.730000px;}
.wa{width:248.070000px;}
.we{width:251.040000px;}
.w11{width:271.920000px;}
.w2{width:275.970000px;}
.wf{width:338.340000px;}
.w3{width:340.170000px;}
.wc{width:350.850000px;}
.w10{width:587.663197px;}
.w7{width:626.280000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:1.530000px;}
.x13{left:4.950000px;}
.x1a{left:6.120000px;}
.x24{left:7.830000px;}
.x35{left:9.000000px;}
.x26{left:10.260000px;}
.x36{left:12.150000px;}
.x37{left:13.410000px;}
.x40{left:15.570000px;}
.x12{left:16.830000px;}
.x19{left:19.080000px;}
.x1c{left:20.790000px;}
.x23{left:23.130000px;}
.x20{left:27.720000px;}
.x33{left:29.340000px;}
.x44{left:33.030000px;}
.x47{left:34.650000px;}
.x43{left:37.530000px;}
.x3e{left:38.790000px;}
.x45{left:40.680000px;}
.x3c{left:43.290000px;}
.x41{left:48.060000px;}
.x46{left:49.410000px;}
.x48{left:51.570000px;}
.x49{left:52.920000px;}
.x1{left:54.000000px;}
.x15{left:66.240000px;}
.x42{left:77.880000px;}
.x31{left:79.560000px;}
.x4b{left:85.859987px;}
.x2{left:103.530000px;}
.x10{left:105.120000px;}
.x39{left:109.920000px;}
.x1d{left:123.840000px;}
.x16{left:128.430000px;}
.xe{left:133.410000px;}
.x25{left:140.790000px;}
.x34{left:152.310000px;}
.x4{left:170.040000px;}
.x27{left:173.010000px;}
.x29{left:181.740000px;}
.x2d{left:184.980000px;}
.x2b{left:193.080000px;}
.x21{left:198.450000px;}
.x1b{left:209.610000px;}
.x2f{left:213.240000px;}
.x1e{left:217.740000px;}
.x18{left:224.130000px;}
.x11{left:226.830000px;}
.x22{left:236.550000px;}
.x6{left:249.599987px;}
.x8{left:250.679987px;}
.x7{left:264.449987px;}
.x2c{left:273.270000px;}
.x2a{left:280.020000px;}
.x9{left:281.459987px;}
.x2e{left:305.940000px;}
.x3a{left:325.920000px;}
.x3{left:329.970000px;}
.x14{left:379.140000px;}
.xf{left:475.890000px;}
.x3b{left:496.680000px;}
.x32{left:500.640000px;}
.x17{left:511.620000px;}
.x28{left:523.860000px;}
.x4a{left:539.879987px;}
.xb{left:618.929987px;}
.x3d{left:620.640000px;}
.x5{left:670.140000px;}
.x3f{left:735.480000px;}
.x30{left:782.909987px;}
.xd{left:815.309987px;}
.xa{left:824.129987px;}
.xc{left:835.559987px;}
.x38{left:837.809987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-10.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.560000pt;}
.v1{vertical-align:13.440000pt;}
.ls32{letter-spacing:-1.280000pt;}
.ls1d{letter-spacing:-1.157333pt;}
.ls1c{letter-spacing:-1.120000pt;}
.ls31{letter-spacing:-1.088000pt;}
.lsd{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.880000pt;}
.ls23{letter-spacing:-0.560000pt;}
.ls57{letter-spacing:-0.448000pt;}
.ls78{letter-spacing:-0.384000pt;}
.ls3e{letter-spacing:-0.381867pt;}
.ls16{letter-spacing:-0.338667pt;}
.ls59{letter-spacing:-0.336000pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls2d{letter-spacing:-0.304000pt;}
.ls3c{letter-spacing:-0.288000pt;}
.ls21{letter-spacing:-0.281600pt;}
.ls43{letter-spacing:-0.272533pt;}
.ls82{letter-spacing:-0.256000pt;}
.ls10{letter-spacing:-0.240000pt;}
.ls5e{letter-spacing:-0.224000pt;}
.ls55{letter-spacing:-0.208000pt;}
.ls17{letter-spacing:-0.195733pt;}
.ls76{letter-spacing:-0.192000pt;}
.ls77{letter-spacing:-0.176000pt;}
.ls12{letter-spacing:-0.160000pt;}
.ls5c{letter-spacing:-0.144000pt;}
.ls2b{letter-spacing:-0.140800pt;}
.ls42{letter-spacing:-0.129067pt;}
.ls56{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.127467pt;}
.ls5d{letter-spacing:-0.112000pt;}
.ls39{letter-spacing:-0.106133pt;}
.ls18{letter-spacing:-0.102933pt;}
.lsf{letter-spacing:-0.080000pt;}
.ls84{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.059733pt;}
.ls40{letter-spacing:-0.058133pt;}
.ls44{letter-spacing:-0.048000pt;}
.ls3a{letter-spacing:-0.047360pt;}
.ls5a{letter-spacing:-0.032000pt;}
.ls28{letter-spacing:-0.018880pt;}
.ls11{letter-spacing:-0.016640pt;}
.ls58{letter-spacing:-0.016000pt;}
.ls1b{letter-spacing:-0.011840pt;}
.ls2c{letter-spacing:-0.000001pt;}
.lsb{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.002240pt;}
.ls20{letter-spacing:0.016000pt;}
.ls38{letter-spacing:0.016640pt;}
.ls4{letter-spacing:0.023680pt;}
.ls1{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls5b{letter-spacing:0.048000pt;}
.ls1f{letter-spacing:0.064000pt;}
.ls34{letter-spacing:0.067520pt;}
.ls29{letter-spacing:0.071360pt;}
.ls22{letter-spacing:0.071467pt;}
.ls8{letter-spacing:0.080000pt;}
.ls33{letter-spacing:0.095467pt;}
.ls7{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.104000pt;}
.ls1e{letter-spacing:0.112000pt;}
.ls37{letter-spacing:0.116160pt;}
.ls2f{letter-spacing:0.122667pt;}
.ls9{letter-spacing:0.124267pt;}
.ls27{letter-spacing:0.124480pt;}
.ls3b{letter-spacing:0.129067pt;}
.ls5f{letter-spacing:0.144000pt;}
.ls26{letter-spacing:0.154027pt;}
.ls0{letter-spacing:0.160000pt;}
.ls73{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.202667pt;}
.ls36{letter-spacing:0.213867pt;}
.ls25{letter-spacing:0.266667pt;}
.ls35{letter-spacing:0.336640pt;}
.ls83{letter-spacing:0.352000pt;}
.ls3d{letter-spacing:0.400000pt;}
.ls50{letter-spacing:0.480000pt;}
.ls70{letter-spacing:0.586667pt;}
.ls1a{letter-spacing:0.720000pt;}
.ls4f{letter-spacing:0.800000pt;}
.ls3f{letter-spacing:1.040000pt;}
.ls4e{letter-spacing:1.120000pt;}
.ls81{letter-spacing:1.226667pt;}
.ls47{letter-spacing:1.440000pt;}
.ls46{letter-spacing:1.760000pt;}
.ls30{letter-spacing:2.080000pt;}
.ls4c{letter-spacing:2.186667pt;}
.ls65{letter-spacing:2.400000pt;}
.ls6d{letter-spacing:2.720000pt;}
.ls6e{letter-spacing:2.826667pt;}
.ls19{letter-spacing:2.880000pt;}
.ls49{letter-spacing:3.040000pt;}
.ls48{letter-spacing:3.360000pt;}
.ls15{letter-spacing:3.600000pt;}
.ls7b{letter-spacing:3.680000pt;}
.ls7c{letter-spacing:3.786667pt;}
.ls14{letter-spacing:4.240000pt;}
.ls60{letter-spacing:4.320000pt;}
.ls4b{letter-spacing:4.640000pt;}
.ls4a{letter-spacing:4.960000pt;}
.ls7e{letter-spacing:5.280000pt;}
.ls7d{letter-spacing:6.880000pt;}
.ls64{letter-spacing:7.200000pt;}
.ls63{letter-spacing:7.520000pt;}
.lsa{letter-spacing:8.880000pt;}
.ls6c{letter-spacing:11.360000pt;}
.ls6a{letter-spacing:11.680000pt;}
.ls6b{letter-spacing:11.786667pt;}
.ls69{letter-spacing:12.000000pt;}
.ls6f{letter-spacing:12.640000pt;}
.ls66{letter-spacing:12.960000pt;}
.ls62{letter-spacing:13.280000pt;}
.ls61{letter-spacing:13.600000pt;}
.ls72{letter-spacing:15.200000pt;}
.ls71{letter-spacing:15.520000pt;}
.ls3{letter-spacing:19.440000pt;}
.ls2{letter-spacing:28.720000pt;}
.ls51{letter-spacing:39.776000pt;}
.ls7a{letter-spacing:41.760000pt;}
.ls79{letter-spacing:42.080000pt;}
.ls75{letter-spacing:43.680000pt;}
.ls74{letter-spacing:44.000000pt;}
.ls68{letter-spacing:50.720000pt;}
.ls67{letter-spacing:51.040000pt;}
.ls53{letter-spacing:53.920000pt;}
.ls52{letter-spacing:54.026667pt;}
.ls80{letter-spacing:55.200000pt;}
.ls7f{letter-spacing:55.520000pt;}
.ls45{letter-spacing:63.776000pt;}
.ls4d{letter-spacing:70.240000pt;}
.ls54{letter-spacing:76.960000pt;}
.ls2a{letter-spacing:754.746667pt;}
.ws8{word-spacing:-53.440000pt;}
.ws2e{word-spacing:-48.000000pt;}
.ws3{word-spacing:-24.032000pt;}
.ws34{word-spacing:-16.000000pt;}
.wsd{word-spacing:-13.520000pt;}
.ws27{word-spacing:-13.489067pt;}
.wsc{word-spacing:-13.484267pt;}
.ws1f{word-spacing:-13.464000pt;}
.ws23{word-spacing:-13.455467pt;}
.ws18{word-spacing:-13.431467pt;}
.ws2c{word-spacing:-13.362240pt;}
.ws2{word-spacing:-13.360000pt;}
.ws11{word-spacing:-13.348160pt;}
.ws2b{word-spacing:-13.301867pt;}
.ws4{word-spacing:-13.300267pt;}
.wsf{word-spacing:-13.257067pt;}
.ws2d{word-spacing:-13.230933pt;}
.ws1c{word-spacing:-13.219200pt;}
.ws10{word-spacing:-13.200000pt;}
.wse{word-spacing:-13.164267pt;}
.ws17{word-spacing:-13.078400pt;}
.ws2a{word-spacing:-12.400000pt;}
.ws45{word-spacing:-12.352000pt;}
.ws20{word-spacing:-12.272000pt;}
.ws13{word-spacing:-12.240000pt;}
.ws12{word-spacing:-12.202667pt;}
.ws42{word-spacing:-12.192000pt;}
.ws3d{word-spacing:-12.144000pt;}
.ws30{word-spacing:-12.112000pt;}
.ws15{word-spacing:-12.096000pt;}
.ws1a{word-spacing:-12.080000pt;}
.ws16{word-spacing:-12.064000pt;}
.ws38{word-spacing:-12.048000pt;}
.ws19{word-spacing:-12.032000pt;}
.ws39{word-spacing:-12.016000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.999999pt;}
.ws35{word-spacing:-11.984000pt;}
.ws37{word-spacing:-11.968000pt;}
.ws2f{word-spacing:-11.952000pt;}
.ws46{word-spacing:-11.936000pt;}
.ws3b{word-spacing:-11.888000pt;}
.ws32{word-spacing:-11.872000pt;}
.ws3a{word-spacing:-11.856000pt;}
.ws3f{word-spacing:-11.824000pt;}
.ws3e{word-spacing:-11.808000pt;}
.ws31{word-spacing:-11.792000pt;}
.ws3c{word-spacing:-11.776000pt;}
.ws40{word-spacing:-11.760000pt;}
.ws44{word-spacing:-11.744000pt;}
.ws43{word-spacing:-11.712000pt;}
.ws1e{word-spacing:-11.696000pt;}
.ws1b{word-spacing:-11.680000pt;}
.ws36{word-spacing:-11.664000pt;}
.ws41{word-spacing:-11.616000pt;}
.ws33{word-spacing:-11.552000pt;}
.ws21{word-spacing:-11.040000pt;}
.ws24{word-spacing:-10.853867pt;}
.ws1{word-spacing:-10.800000pt;}
.ws22{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.640000pt;}
.ws25{word-spacing:-10.533867pt;}
.ws9{word-spacing:-9.360000pt;}
.wsa{word-spacing:-9.200000pt;}
.ws28{word-spacing:-8.032000pt;}
.ws5{word-spacing:-8.000000pt;}
.ws29{word-spacing:-7.712000pt;}
.ws14{word-spacing:-7.360000pt;}
.ws6{word-spacing:-7.040000pt;}
.ws26{word-spacing:-6.640000pt;}
.wsb{word-spacing:0.000000pt;}
._11{margin-left:-4.689493pt;}
._b{margin-left:-3.199787pt;}
._4{margin-left:-2.137600pt;}
._3{margin-left:-1.018667pt;}
._1{width:0.893760pt;}
._8{width:1.927147pt;}
._7{width:3.046080pt;}
._a{width:4.166400pt;}
._9{width:5.130240pt;}
._e{width:6.284587pt;}
._6{width:7.217920pt;}
._c{width:8.463040pt;}
._5{width:9.451413pt;}
._f{width:10.695467pt;}
._12{width:12.458133pt;}
._1f{width:13.360000pt;}
._10{width:14.802880pt;}
._21{width:15.892907pt;}
._19{width:17.808000pt;}
._2{width:19.616000pt;}
._14{width:20.554880pt;}
._17{width:23.328000pt;}
._23{width:41.872000pt;}
._22{width:43.728000pt;}
._20{width:50.986667pt;}
._1c{width:53.210667pt;}
._1d{width:54.405333pt;}
._24{width:55.861333pt;}
._18{width:57.456000pt;}
._1a{width:69.504000pt;}
._1b{width:70.512000pt;}
._1e{width:76.853333pt;}
._15{width:971.549020pt;}
._16{width:975.038964pt;}
._0{width:1777.448320pt;}
._13{width:2293.928320pt;}
._d{width:2315.048320pt;}
.fs4{font-size:26.560000pt;}
.fs8{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fs6{font-size:37.440000pt;}
.fs1{font-size:42.560000pt;}
.fsa{font-size:45.323947pt;}
.fs9{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y11e{bottom:1.200000pt;}
.y124{bottom:1.760000pt;}
.y121{bottom:2.240000pt;}
.y4d{bottom:2.800000pt;}
.y199{bottom:3.200000pt;}
.y1a5{bottom:3.226667pt;}
.y11b{bottom:3.440000pt;}
.ye4{bottom:3.600000pt;}
.ydb{bottom:3.680000pt;}
.y3{bottom:4.000000pt;}
.yf9{bottom:5.200000pt;}
.yf0{bottom:5.840000pt;}
.ydf{bottom:6.400000pt;}
.yec{bottom:9.440000pt;}
.y1a9{bottom:10.320000pt;}
.y197{bottom:10.400000pt;}
.y1a3{bottom:10.426667pt;}
.yda{bottom:16.240000pt;}
.y198{bottom:17.600000pt;}
.y2{bottom:18.000000pt;}
.y4c{bottom:18.800000pt;}
.ye3{bottom:19.760000pt;}
.ye7{bottom:19.840000pt;}
.yf8{bottom:21.360000pt;}
.yef{bottom:22.080000pt;}
.yde{bottom:22.560000pt;}
.ye1{bottom:23.520000pt;}
.yeb{bottom:25.680000pt;}
.ye2{bottom:32.320000pt;}
.yf3{bottom:32.400000pt;}
.ye6{bottom:32.480000pt;}
.ye9{bottom:33.040000pt;}
.yf7{bottom:33.920000pt;}
.yee{bottom:34.640000pt;}
.y4b{bottom:34.800000pt;}
.ydd{bottom:35.120000pt;}
.yf5{bottom:37.120000pt;}
.yea{bottom:38.240000pt;}
.yf2{bottom:40.720000pt;}
.y6{bottom:43.920000pt;}
.y50{bottom:44.720000pt;}
.y4a{bottom:50.826667pt;}
.y123{bottom:52.000000pt;}
.y11d{bottom:53.226667pt;}
.y120{bottom:54.240000pt;}
.y11a{bottom:55.440000pt;}
.y5{bottom:56.480000pt;}
.y1e5{bottom:64.560000pt;}
.y193{bottom:65.760000pt;}
.y49{bottom:66.826667pt;}
.y224{bottom:68.400000pt;}
.y1d3{bottom:68.560000pt;}
.y81{bottom:69.200000pt;}
.y1f5{bottom:70.080000pt;}
.y19e{bottom:71.360000pt;}
.y281{bottom:72.480000pt;}
.yac{bottom:74.240000pt;}
.y180{bottom:76.880000pt;}
.y119{bottom:81.280000pt;}
.y48{bottom:82.826667pt;}
.y1e4{bottom:83.200000pt;}
.yfc{bottom:83.440000pt;}
.y192{bottom:84.480000pt;}
.y19c{bottom:86.400000pt;}
.y223{bottom:87.040000pt;}
.y1d2{bottom:87.200000pt;}
.y80{bottom:87.840000pt;}
.y1f4{bottom:88.800000pt;}
.y177{bottom:90.080000pt;}
.y1b6{bottom:91.040000pt;}
.y280{bottom:91.120000pt;}
.y134{bottom:94.160000pt;}
.y17f{bottom:95.520000pt;}
.yab{bottom:97.280000pt;}
.y47{bottom:98.826667pt;}
.y19d{bottom:100.800000pt;}
.y1e3{bottom:101.840000pt;}
.yfb{bottom:102.160000pt;}
.y191{bottom:103.120000pt;}
.y222{bottom:105.680000pt;}
.y1d1{bottom:105.840000pt;}
.y7f{bottom:106.560000pt;}
.y1f3{bottom:107.440000pt;}
.y176{bottom:108.800000pt;}
.y1b5{bottom:109.680000pt;}
.y27f{bottom:109.760000pt;}
.y33{bottom:112.880000pt;}
.y24f{bottom:113.520000pt;}
.y17e{bottom:114.160000pt;}
.y19a{bottom:115.840000pt;}
.yf4{bottom:119.626667pt;}
.y1e2{bottom:120.560000pt;}
.yfa{bottom:120.800000pt;}
.y18c{bottom:121.200000pt;}
.yf1{bottom:122.480000pt;}
.y46{bottom:122.826667pt;}
.y221{bottom:124.400000pt;}
.y1d0{bottom:124.560000pt;}
.y7e{bottom:125.200000pt;}
.y1f2{bottom:126.080000pt;}
.y175{bottom:127.440000pt;}
.y1b4{bottom:128.320000pt;}
.y27e{bottom:128.480000pt;}
.y133{bottom:129.200000pt;}
.y19b{bottom:130.240000pt;}
.ye0{bottom:130.800000pt;}
.y32{bottom:131.520000pt;}
.y24e{bottom:132.240000pt;}
.y17d{bottom:132.880000pt;}
.ye8{bottom:133.706667pt;}
.y190{bottom:137.360000pt;}
.y45{bottom:138.826667pt;}
.y1e1{bottom:139.200000pt;}
.y18b{bottom:139.840000pt;}
.y220{bottom:143.040000pt;}
.y1cf{bottom:143.200000pt;}
.y7d{bottom:143.840000pt;}
.y1f1{bottom:144.800000pt;}
.y196{bottom:145.280000pt;}
.y174{bottom:146.080000pt;}
.y27d{bottom:147.120000pt;}
.y132{bottom:147.840000pt;}
.y24d{bottom:150.880000pt;}
.y1b3{bottom:151.440000pt;}
.y17c{bottom:151.520000pt;}
.y44{bottom:154.826667pt;}
.y18f{bottom:156.080000pt;}
.y1e0{bottom:157.840000pt;}
.y34{bottom:158.080000pt;}
.yf6{bottom:158.506667pt;}
.y21f{bottom:161.680000pt;}
.y1ce{bottom:161.840000pt;}
.y7c{bottom:162.560000pt;}
.y1f0{bottom:163.440000pt;}
.y27c{bottom:165.760000pt;}
.y31{bottom:166.240000pt;}
.y131{bottom:166.480000pt;}
.y173{bottom:168.800000pt;}
.y24c{bottom:169.520000pt;}
.y43{bottom:170.826667pt;}
.y18a{bottom:174.080000pt;}
.y17b{bottom:174.160000pt;}
.y18e{bottom:174.720000pt;}
.y1df{bottom:176.560000pt;}
.y21e{bottom:180.400000pt;}
.y1cd{bottom:180.560000pt;}
.y7b{bottom:181.200000pt;}
.y1ef{bottom:182.080000pt;}
.yd8{bottom:184.080000pt;}
.y27b{bottom:184.480000pt;}
.y30{bottom:184.880000pt;}
.y130{bottom:185.200000pt;}
.y42{bottom:186.826667pt;}
.y195{bottom:187.040000pt;}
.y24b{bottom:188.240000pt;}
.y189{bottom:192.800000pt;}
.y18d{bottom:193.360000pt;}
.y183{bottom:193.862057pt;}
.y1de{bottom:195.200000pt;}
.y21d{bottom:199.040000pt;}
.y1cc{bottom:199.200000pt;}
.y7a{bottom:199.866667pt;}
.y41{bottom:202.826667pt;}
.y172{bottom:203.066667pt;}
.y27a{bottom:203.146667pt;}
.y2f{bottom:203.546667pt;}
.y12f{bottom:203.866667pt;}
.y1ee{bottom:204.826667pt;}
.y194{bottom:205.706667pt;}
.y24a{bottom:206.906667pt;}
.y17a{bottom:208.506667pt;}
.y188{bottom:211.466667pt;}
.y1dd{bottom:213.866667pt;}
.y21c{bottom:217.706667pt;}
.y1cb{bottom:217.866667pt;}
.y79{bottom:218.586667pt;}
.y40{bottom:218.826667pt;}
.yd7{bottom:221.466667pt;}
.y171{bottom:221.706667pt;}
.y279{bottom:221.786667pt;}
.y118{bottom:222.106667pt;}
.y2e{bottom:222.266667pt;}
.y249{bottom:225.546667pt;}
.y12e{bottom:226.906667pt;}
.y179{bottom:227.146667pt;}
.y187{bottom:230.106667pt;}
.y1dc{bottom:232.586667pt;}
.y3f{bottom:234.826667pt;}
.y21b{bottom:236.426667pt;}
.y1ca{bottom:236.586667pt;}
.y78{bottom:237.226667pt;}
.y15a{bottom:238.266667pt;}
.y1ed{bottom:239.466667pt;}
.yd6{bottom:240.106667pt;}
.y278{bottom:240.506667pt;}
.y117{bottom:240.826667pt;}
.y2d{bottom:240.906667pt;}
.y248{bottom:244.266667pt;}
.y170{bottom:244.746667pt;}
.y186{bottom:248.826667pt;}
.y178{bottom:250.186667pt;}
.y181{bottom:250.318798pt;}
.y3e{bottom:250.826667pt;}
.y1db{bottom:251.226667pt;}
.y21a{bottom:255.066667pt;}
.y1c9{bottom:255.226667pt;}
.y77{bottom:255.866667pt;}
.y159{bottom:256.906667pt;}
.y1ec{bottom:258.106667pt;}
.yd5{bottom:258.826667pt;}
.y277{bottom:259.146667pt;}
.y116{bottom:259.466667pt;}
.y2c{bottom:259.546667pt;}
.y247{bottom:262.906667pt;}
.y3d{bottom:266.826667pt;}
.y185{bottom:267.466667pt;}
.y1da{bottom:269.866667pt;}
.y219{bottom:273.706667pt;}
.y1c8{bottom:273.866667pt;}
.y76{bottom:274.586667pt;}
.y158{bottom:275.546667pt;}
.y1eb{bottom:276.826667pt;}
.yd4{bottom:277.466667pt;}
.y276{bottom:277.786667pt;}
.y115{bottom:278.106667pt;}
.y2b{bottom:278.266667pt;}
.y246{bottom:281.546667pt;}
.y3c{bottom:282.826667pt;}
.y184{bottom:286.106667pt;}
.y1d9{bottom:288.586667pt;}
.y218{bottom:292.426667pt;}
.y1c7{bottom:292.586667pt;}
.y75{bottom:293.226667pt;}
.y157{bottom:294.266667pt;}
.y1ea{bottom:295.466667pt;}
.yd3{bottom:296.106667pt;}
.y275{bottom:296.506667pt;}
.y114{bottom:296.826667pt;}
.y2a{bottom:296.906667pt;}
.y284{bottom:299.066667pt;}
.y245{bottom:300.266667pt;}
.y3b{bottom:306.826667pt;}
.y1d8{bottom:307.226667pt;}
.y217{bottom:311.066667pt;}
.y1c6{bottom:311.226667pt;}
.y74{bottom:311.866667pt;}
.y156{bottom:312.906667pt;}
.y1e9{bottom:314.106667pt;}
.yed{bottom:314.426667pt;}
.yd2{bottom:314.826667pt;}
.y274{bottom:315.146667pt;}
.y113{bottom:315.466667pt;}
.y29{bottom:315.546667pt;}
.y283{bottom:317.706667pt;}
.y244{bottom:318.906667pt;}
.y3a{bottom:322.826667pt;}
.y1d7{bottom:325.866667pt;}
.y216{bottom:329.706667pt;}
.y1c5{bottom:329.866667pt;}
.y73{bottom:330.586667pt;}
.y155{bottom:331.546667pt;}
.y1e8{bottom:332.826667pt;}
.yd1{bottom:333.466667pt;}
.y273{bottom:333.786667pt;}
.y112{bottom:334.106667pt;}
.y28{bottom:334.266667pt;}
.y282{bottom:336.426667pt;}
.y243{bottom:337.546667pt;}
.y39{bottom:338.826667pt;}
.y1d6{bottom:344.586667pt;}
.y215{bottom:348.426667pt;}
.y1c4{bottom:348.586667pt;}
.y72{bottom:349.226667pt;}
.y154{bottom:350.266667pt;}
.y1e7{bottom:351.466667pt;}
.yd0{bottom:352.106667pt;}
.y272{bottom:352.506667pt;}
.y111{bottom:352.826667pt;}
.y27{bottom:352.906667pt;}
.y38{bottom:354.826667pt;}
.y242{bottom:356.266667pt;}
.ya2{bottom:363.226667pt;}
.y214{bottom:367.066667pt;}
.y1c3{bottom:367.226667pt;}
.y71{bottom:367.866667pt;}
.y153{bottom:368.906667pt;}
.y271{bottom:371.146667pt;}
.y110{bottom:371.466667pt;}
.y26{bottom:371.546667pt;}
.y1e6{bottom:374.106667pt;}
.ycf{bottom:374.826667pt;}
.y241{bottom:374.906667pt;}
.ya1{bottom:381.866667pt;}
.y182{bottom:385.229833pt;}
.y213{bottom:385.706667pt;}
.y1c2{bottom:385.866667pt;}
.y70{bottom:386.586667pt;}
.y37{bottom:386.826667pt;}
.y152{bottom:387.546667pt;}
.y270{bottom:389.786667pt;}
.y10f{bottom:390.106667pt;}
.y25{bottom:390.266667pt;}
.y240{bottom:393.546667pt;}
.yc2{bottom:394.826667pt;}
.ya0{bottom:400.586667pt;}
.y36{bottom:402.826667pt;}
.y212{bottom:404.426667pt;}
.y1c1{bottom:404.586667pt;}
.y6f{bottom:405.226667pt;}
.y151{bottom:406.266667pt;}
.y26f{bottom:408.506667pt;}
.y10e{bottom:408.826667pt;}
.y24{bottom:408.906667pt;}
.yce{bottom:409.466667pt;}
.y23f{bottom:412.266667pt;}
.yc1{bottom:413.466667pt;}
.y35{bottom:418.853333pt;}
.y9f{bottom:419.226667pt;}
.y211{bottom:423.066667pt;}
.y1c0{bottom:423.226667pt;}
.y6e{bottom:423.866667pt;}
.y150{bottom:424.906667pt;}
.y26e{bottom:427.146667pt;}
.y10d{bottom:427.466667pt;}
.y23{bottom:427.546667pt;}
.ycd{bottom:428.106667pt;}
.y23e{bottom:430.906667pt;}
.yc0{bottom:432.106667pt;}
.y9e{bottom:437.866667pt;}
.y16f{bottom:438.746667pt;}
.y210{bottom:441.706667pt;}
.y1bf{bottom:441.866667pt;}
.y6d{bottom:442.586667pt;}
.y14f{bottom:443.546667pt;}
.y26d{bottom:445.786667pt;}
.y10c{bottom:446.106667pt;}
.y22{bottom:446.266667pt;}
.ycc{bottom:446.826667pt;}
.y23d{bottom:449.546667pt;}
.ybf{bottom:450.826667pt;}
.y9d{bottom:456.586667pt;}
.y16e{bottom:457.466667pt;}
.y20f{bottom:460.426667pt;}
.y1be{bottom:460.586667pt;}
.y6c{bottom:461.226667pt;}
.y14e{bottom:462.266667pt;}
.y26c{bottom:464.506667pt;}
.y10b{bottom:464.826667pt;}
.y21{bottom:464.906667pt;}
.ycb{bottom:465.466667pt;}
.y23c{bottom:468.266667pt;}
.ybe{bottom:469.466667pt;}
.y9c{bottom:475.226667pt;}
.y16d{bottom:476.106667pt;}
.y20e{bottom:479.066667pt;}
.y1bd{bottom:479.226667pt;}
.y6b{bottom:479.866667pt;}
.y12d{bottom:480.026667pt;}
.y14d{bottom:480.906667pt;}
.y26b{bottom:483.146667pt;}
.y10a{bottom:483.466667pt;}
.y20{bottom:483.546667pt;}
.yca{bottom:484.106667pt;}
.y23b{bottom:486.906667pt;}
.ybd{bottom:488.106667pt;}
.ye5{bottom:491.466667pt;}
.y9b{bottom:493.866667pt;}
.y16c{bottom:494.746667pt;}
.y20d{bottom:497.706667pt;}
.y1bc{bottom:497.866667pt;}
.y6a{bottom:498.586667pt;}
.y12c{bottom:498.666667pt;}
.y14c{bottom:499.546667pt;}
.y26a{bottom:501.786667pt;}
.y109{bottom:502.106667pt;}
.y1f{bottom:502.266667pt;}
.yc9{bottom:502.826667pt;}
.y23a{bottom:505.546667pt;}
.ybc{bottom:506.826667pt;}
.y9a{bottom:512.586667pt;}
.y16b{bottom:513.466667pt;}
.y20c{bottom:516.426667pt;}
.y1bb{bottom:516.586667pt;}
.y69{bottom:517.226667pt;}
.y12b{bottom:517.306667pt;}
.y14b{bottom:518.266667pt;}
.y269{bottom:520.506667pt;}
.y108{bottom:520.826667pt;}
.y1e{bottom:520.906667pt;}
.yc8{bottom:521.466667pt;}
.y239{bottom:524.266667pt;}
.ybb{bottom:525.466667pt;}
.y99{bottom:531.226667pt;}
.y16a{bottom:532.106667pt;}
.yaa{bottom:534.186667pt;}
.y1ba{bottom:535.226667pt;}
.y68{bottom:535.866667pt;}
.y12a{bottom:536.026667pt;}
.y14a{bottom:536.906667pt;}
.y268{bottom:539.146667pt;}
.y107{bottom:539.466667pt;}
.y1d{bottom:539.546667pt;}
.yc7{bottom:540.106667pt;}
.y238{bottom:542.906667pt;}
.yba{bottom:544.106667pt;}
.y98{bottom:549.866667pt;}
.y169{bottom:550.746667pt;}
.y20b{bottom:551.466667pt;}
.ya9{bottom:552.826667pt;}
.y1b9{bottom:553.866667pt;}
.y67{bottom:554.586667pt;}
.y149{bottom:555.546667pt;}
.y267{bottom:557.786667pt;}
.y106{bottom:558.106667pt;}
.y1c{bottom:558.266667pt;}
.y129{bottom:558.666667pt;}
.yc6{bottom:558.826667pt;}
.y237{bottom:561.546667pt;}
.yb9{bottom:562.826667pt;}
.y97{bottom:568.586667pt;}
.y168{bottom:569.466667pt;}
.y20a{bottom:570.106667pt;}
.ya8{bottom:571.466667pt;}
.y1b8{bottom:572.586667pt;}
.y66{bottom:573.226667pt;}
.y148{bottom:574.293333pt;}
.y266{bottom:576.533333pt;}
.y105{bottom:576.853333pt;}
.y236{bottom:580.293333pt;}
.yb8{bottom:581.493333pt;}
.y96{bottom:587.253333pt;}
.y167{bottom:588.133333pt;}
.y209{bottom:588.853333pt;}
.y65{bottom:591.893333pt;}
.y1b{bottom:592.133333pt;}
.y128{bottom:592.933333pt;}
.yc5{bottom:593.093333pt;}
.y265{bottom:595.173333pt;}
.y104{bottom:595.493333pt;}
.y1b7{bottom:595.973333pt;}
.y235{bottom:598.933333pt;}
.yb7{bottom:600.133333pt;}
.ya7{bottom:605.813333pt;}
.y95{bottom:605.893333pt;}
.y166{bottom:606.773333pt;}
.y208{bottom:607.493333pt;}
.y1a{bottom:609.173333pt;}
.y64{bottom:610.613333pt;}
.y147{bottom:611.573333pt;}
.y127{bottom:611.653333pt;}
.yc4{bottom:611.733333pt;}
.y264{bottom:613.813333pt;}
.y103{bottom:614.133333pt;}
.y234{bottom:617.573333pt;}
.yb6{bottom:618.853333pt;}
.y19{bottom:620.853333pt;}
.ya6{bottom:624.453333pt;}
.y94{bottom:624.613333pt;}
.y165{bottom:625.493333pt;}
.y207{bottom:626.133333pt;}
.y1d5{bottom:628.613333pt;}
.y63{bottom:629.253333pt;}
.y126{bottom:630.293333pt;}
.y263{bottom:632.533333pt;}
.y102{bottom:632.853333pt;}
.yc3{bottom:634.773333pt;}
.yb5{bottom:637.493333pt;}
.y18{bottom:637.893333pt;}
.y233{bottom:641.333333pt;}
.ya5{bottom:643.093333pt;}
.y93{bottom:643.253333pt;}
.y164{bottom:644.133333pt;}
.y206{bottom:644.853333pt;}
.y62{bottom:647.893333pt;}
.y125{bottom:648.933333pt;}
.y17{bottom:649.653333pt;}
.y262{bottom:651.173333pt;}
.y101{bottom:651.493333pt;}
.y1d4{bottom:651.973333pt;}
.yb4{bottom:656.133333pt;}
.ya4{bottom:661.813333pt;}
.y92{bottom:661.893333pt;}
.y163{bottom:662.773333pt;}
.y205{bottom:663.493333pt;}
.y61{bottom:666.613333pt;}
.y16{bottom:666.693333pt;}
.y146{bottom:667.573333pt;}
.y261{bottom:669.813333pt;}
.y100{bottom:670.133333pt;}
.y122{bottom:671.973333pt;}
.ydc{bottom:672.213333pt;}
.yb3{bottom:674.853333pt;}
.y232{bottom:677.733333pt;}
.y15{bottom:678.453333pt;}
.y162{bottom:681.493333pt;}
.y204{bottom:682.133333pt;}
.y91{bottom:684.613333pt;}
.ya3{bottom:684.773333pt;}
.y60{bottom:685.253333pt;}
.y145{bottom:686.293333pt;}
.y260{bottom:688.533333pt;}
.yff{bottom:688.853333pt;}
.yb2{bottom:693.493333pt;}
.y14{bottom:695.493333pt;}
.y161{bottom:700.133333pt;}
.y203{bottom:700.853333pt;}
.y5f{bottom:703.893333pt;}
.y231{bottom:704.453333pt;}
.y144{bottom:704.933333pt;}
.y25f{bottom:707.173333pt;}
.y13{bottom:707.253333pt;}
.yfe{bottom:707.493333pt;}
.y90{bottom:707.973333pt;}
.yb1{bottom:712.133333pt;}
.y160{bottom:718.773333pt;}
.y202{bottom:719.493333pt;}
.y5e{bottom:722.613333pt;}
.y230{bottom:723.093333pt;}
.y143{bottom:723.573333pt;}
.y12{bottom:724.293333pt;}
.y25e{bottom:725.813333pt;}
.yfd{bottom:726.133333pt;}
.y1b2{bottom:728.533333pt;}
.y11{bottom:735.973333pt;}
.y15f{bottom:737.493333pt;}
.y201{bottom:738.133333pt;}
.y5d{bottom:741.253333pt;}
.y142{bottom:742.293333pt;}
.y25d{bottom:744.533333pt;}
.y8f{bottom:744.853333pt;}
.yb0{bottom:746.453333pt;}
.y1b1{bottom:747.173333pt;}
.y22f{bottom:749.733333pt;}
.y10{bottom:753.013333pt;}
.y15e{bottom:756.133333pt;}
.y200{bottom:756.853333pt;}
.y5c{bottom:759.893333pt;}
.y141{bottom:760.933333pt;}
.y25c{bottom:763.173333pt;}
.y8e{bottom:763.493333pt;}
.yf{bottom:764.773333pt;}
.yaf{bottom:765.093333pt;}
.y1b0{bottom:765.893333pt;}
.y1ff{bottom:775.493333pt;}
.y22e{bottom:776.453333pt;}
.y5b{bottom:778.613333pt;}
.y15d{bottom:778.773333pt;}
.y140{bottom:779.573333pt;}
.ye{bottom:781.813333pt;}
.y8d{bottom:782.133333pt;}
.yae{bottom:783.733333pt;}
.y1af{bottom:784.533333pt;}
.y11f{bottom:785.973333pt;}
.yd{bottom:796.213333pt;}
.y5a{bottom:797.253333pt;}
.y1fe{bottom:798.133333pt;}
.y13f{bottom:798.293333pt;}
.y25b{bottom:800.533333pt;}
.y8c{bottom:800.853333pt;}
.y22d{bottom:803.093333pt;}
.y1ae{bottom:803.173333pt;}
.yad{bottom:806.773333pt;}
.y15c{bottom:813.093333pt;}
.y59{bottom:815.893333pt;}
.y25a{bottom:819.173333pt;}
.y8b{bottom:819.493333pt;}
.y22c{bottom:821.733333pt;}
.y1ad{bottom:825.893333pt;}
.y13e{bottom:830.213333pt;}
.yc{bottom:832.773333pt;}
.y1fd{bottom:832.853333pt;}
.y58{bottom:834.613333pt;}
.y15b{bottom:836.053333pt;}
.y259{bottom:837.813333pt;}
.y8a{bottom:838.133333pt;}
.y22b{bottom:840.453333pt;}
.yd9{bottom:840.533333pt;}
.y13d{bottom:848.213333pt;}
.yb{bottom:850.773333pt;}
.y1fc{bottom:851.493333pt;}
.y57{bottom:853.253333pt;}
.y258{bottom:856.533333pt;}
.y89{bottom:856.853333pt;}
.y1ab{bottom:857.813333pt;}
.y22a{bottom:859.093333pt;}
.y13c{bottom:866.213333pt;}
.y1fb{bottom:870.133333pt;}
.y56{bottom:871.893333pt;}
.y1ac{bottom:872.213333pt;}
.y257{bottom:875.173333pt;}
.y88{bottom:875.493333pt;}
.y229{bottom:877.733333pt;}
.y13b{bottom:884.213333pt;}
.y1a8{bottom:887.333333pt;}
.ya{bottom:887.893333pt;}
.y1fa{bottom:888.853333pt;}
.y55{bottom:890.613333pt;}
.y256{bottom:893.813333pt;}
.y87{bottom:894.133333pt;}
.y1aa{bottom:901.653333pt;}
.y13a{bottom:902.213333pt;}
.y11c{bottom:904.453333pt;}
.y54{bottom:909.253333pt;}
.y1f9{bottom:911.493333pt;}
.y255{bottom:912.533333pt;}
.y86{bottom:912.853333pt;}
.y1a6{bottom:916.773333pt;}
.y139{bottom:920.213333pt;}
.y9{bottom:920.293333pt;}
.y228{bottom:923.093333pt;}
.y53{bottom:927.893333pt;}
.y1a7{bottom:931.093333pt;}
.y254{bottom:931.173333pt;}
.y85{bottom:931.493333pt;}
.y138{bottom:938.213333pt;}
.y227{bottom:941.733333pt;}
.y1f8{bottom:946.133333pt;}
.y1a2{bottom:946.213333pt;}
.y253{bottom:949.840000pt;}
.y84{bottom:950.160000pt;}
.y52{bottom:951.360000pt;}
.y8{bottom:952.720000pt;}
.y137{bottom:956.160000pt;}
.y226{bottom:960.480000pt;}
.y1a4{bottom:960.640000pt;}
.y1f7{bottom:964.880000pt;}
.y252{bottom:968.560000pt;}
.y83{bottom:968.880000pt;}
.y136{bottom:974.880000pt;}
.y1a0{bottom:975.680000pt;}
.y7{bottom:981.920000pt;}
.y1f6{bottom:983.520000pt;}
.y225{bottom:987.120000pt;}
.y251{bottom:987.200000pt;}
.y82{bottom:987.520000pt;}
.y1a1{bottom:990.080000pt;}
.y19f{bottom:1005.120000pt;}
.y135{bottom:1005.760000pt;}
.y250{bottom:1005.840000pt;}
.y51{bottom:1006.160000pt;}
.y4{bottom:1015.200000pt;}
.y1{bottom:1028.560000pt;}
.y4f{bottom:1054.800000pt;}
.y4e{bottom:1063.360000pt;}
.h25{height:14.320000pt;}
.h23{height:14.400000pt;}
.h26{height:14.426667pt;}
.h1c{height:17.920000pt;}
.h1e{height:17.946667pt;}
.h1d{height:18.000000pt;}
.h27{height:28.720000pt;}
.h24{height:28.746667pt;}
.h21{height:28.800000pt;}
.h9{height:29.194531pt;}
.h5{height:31.192656pt;}
.h22{height:31.338125pt;}
.h20{height:34.236399pt;}
.hb{height:34.972031pt;}
.h7{height:39.166719pt;}
.h3{height:39.349375pt;}
.h6{height:39.754531pt;}
.he{height:44.835938pt;}
.h2{height:46.000000pt;}
.h13{height:46.705160pt;}
.hc{height:47.125000pt;}
.h28{height:49.336436pt;}
.h4{height:49.917344pt;}
.h11{height:54.927899pt;}
.hf{height:59.781250pt;}
.h18{height:63.656250pt;}
.hd{height:65.781915pt;}
.h8{height:70.687500pt;}
.h1b{height:114.000000pt;}
.h19{height:116.346667pt;}
.h1a{height:118.480000pt;}
.h17{height:120.826667pt;}
.h12{height:168.320000pt;}
.h16{height:170.586667pt;}
.h15{height:177.040000pt;}
.h10{height:180.266667pt;}
.h14{height:180.746667pt;}
.h1f{height:399.417283pt;}
.ha{height:432.053333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:28.640000pt;}
.w15{width:92.000000pt;}
.w14{width:102.080000pt;}
.w13{width:110.186667pt;}
.w9{width:117.760000pt;}
.w4{width:151.520000pt;}
.w12{width:151.786667pt;}
.w6{width:160.586667pt;}
.wd{width:203.066667pt;}
.w8{width:218.426667pt;}
.wa{width:220.506667pt;}
.we{width:223.146667pt;}
.w11{width:241.706667pt;}
.w2{width:245.306667pt;}
.wf{width:300.746667pt;}
.w3{width:302.373333pt;}
.wc{width:311.866667pt;}
.w10{width:522.367286pt;}
.w7{width:556.693333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:1.360000pt;}
.x13{left:4.400000pt;}
.x1a{left:5.440000pt;}
.x24{left:6.960000pt;}
.x35{left:8.000000pt;}
.x26{left:9.120000pt;}
.x36{left:10.800000pt;}
.x37{left:11.920000pt;}
.x40{left:13.840000pt;}
.x12{left:14.960000pt;}
.x19{left:16.960000pt;}
.x1c{left:18.480000pt;}
.x23{left:20.560000pt;}
.x20{left:24.640000pt;}
.x33{left:26.080000pt;}
.x44{left:29.360000pt;}
.x47{left:30.800000pt;}
.x43{left:33.360000pt;}
.x3e{left:34.480000pt;}
.x45{left:36.160000pt;}
.x3c{left:38.480000pt;}
.x41{left:42.720000pt;}
.x46{left:43.920000pt;}
.x48{left:45.840000pt;}
.x49{left:47.040000pt;}
.x1{left:48.000000pt;}
.x15{left:58.880000pt;}
.x42{left:69.226667pt;}
.x31{left:70.720000pt;}
.x4b{left:76.319988pt;}
.x2{left:92.026667pt;}
.x10{left:93.440000pt;}
.x39{left:97.706667pt;}
.x1d{left:110.080000pt;}
.x16{left:114.160000pt;}
.xe{left:118.586667pt;}
.x25{left:125.146667pt;}
.x34{left:135.386667pt;}
.x4{left:151.146667pt;}
.x27{left:153.786667pt;}
.x29{left:161.546667pt;}
.x2d{left:164.426667pt;}
.x2b{left:171.626667pt;}
.x21{left:176.400000pt;}
.x1b{left:186.320000pt;}
.x2f{left:189.546667pt;}
.x1e{left:193.546667pt;}
.x18{left:199.226667pt;}
.x11{left:201.626667pt;}
.x22{left:210.266667pt;}
.x6{left:221.866655pt;}
.x8{left:222.826655pt;}
.x7{left:235.066655pt;}
.x2c{left:242.906667pt;}
.x2a{left:248.906667pt;}
.x9{left:250.186655pt;}
.x2e{left:271.946667pt;}
.x3a{left:289.706667pt;}
.x3{left:293.306667pt;}
.x14{left:337.013333pt;}
.xf{left:423.013333pt;}
.x3b{left:441.493333pt;}
.x32{left:445.013333pt;}
.x17{left:454.773333pt;}
.x28{left:465.653333pt;}
.x4a{left:479.893322pt;}
.xb{left:550.159988pt;}
.x3d{left:551.680000pt;}
.x5{left:595.680000pt;}
.x3f{left:653.760000pt;}
.x30{left:695.919988pt;}
.xd{left:724.719988pt;}
.xa{left:732.559988pt;}
.xc{left:742.719988pt;}
.x38{left:744.719988pt;}
}




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