
    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_56ac58d3b06da5d216fb4a5f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_5ba722737b6182dde52cf3e8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.068000;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_90986bda00abbbe5ac8380fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971000;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_c504b8a831e7429d4ca555fd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.968000;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_b3dc47da2de09f73e6cd9529.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.971000;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_a7653b89d6c03ece0782526e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.068000;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_69f233dfb5a8c0428a1d0236.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.982000;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_51feb1f25cc8a299b1a836db.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.956000;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_5ba722737b6182dde52cf3e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.068000;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_5ba722737b6182dde52cf3e8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-8.614200px;}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-5.580000px;}
.ls2{letter-spacing:-4.920000px;}
.ls20{letter-spacing:-3.780000px;}
.ls21{letter-spacing:-2.340000px;}
.lsc{letter-spacing:-2.262000px;}
.lsa{letter-spacing:-2.028000px;}
.lse{letter-spacing:-1.980000px;}
.lsd{letter-spacing:-1.848000px;}
.ls1c{letter-spacing:-1.800000px;}
.ls19{letter-spacing:-1.740000px;}
.ls9{letter-spacing:-1.320000px;}
.ls6{letter-spacing:-1.254000px;}
.ls1{letter-spacing:-1.170000px;}
.ls15{letter-spacing:-1.020000px;}
.ls13{letter-spacing:-0.990000px;}
.ls1d{letter-spacing:-0.960000px;}
.ls18{letter-spacing:-0.780000px;}
.ls4{letter-spacing:-0.660000px;}
.ls10{letter-spacing:-0.624000px;}
.ls17{letter-spacing:-0.600000px;}
.ls1f{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.528000px;}
.ls7{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.420000px;}
.ls12{letter-spacing:-0.330000px;}
.ls3{letter-spacing:-0.270000px;}
.ls5{letter-spacing:-0.264000px;}
.ls1a{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.156000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.270000px;}
.ls8{letter-spacing:0.330000px;}
.ls14{letter-spacing:0.360000px;}
.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;}
}
.wsa2{word-spacing:-15.114000px;}
.ws1{word-spacing:-14.982000px;}
.ws5c{word-spacing:-14.850000px;}
.ws3{word-spacing:-14.586000px;}
.ws5b{word-spacing:-14.454000px;}
.ws111{word-spacing:-13.980000px;}
.ws2e{word-spacing:-13.860000px;}
.ws108{word-spacing:-13.740000px;}
.ws110{word-spacing:-13.620000px;}
.ws14e{word-spacing:-13.500000px;}
.ws112{word-spacing:-13.320000px;}
.wsa3{word-spacing:-13.266000px;}
.ws10f{word-spacing:-13.140000px;}
.wsa4{word-spacing:-13.134000px;}
.ws165{word-spacing:-13.080000px;}
.ws12e{word-spacing:-12.960000px;}
.ws150{word-spacing:-12.780000px;}
.ws113{word-spacing:-11.940000px;}
.ws17a{word-spacing:-11.400000px;}
.wsa5{word-spacing:-10.608000px;}
.ws179{word-spacing:-9.840000px;}
.ws14f{word-spacing:-8.160000px;}
.ws13b{word-spacing:-6.840000px;}
.ws146{word-spacing:-4.500000px;}
.ws145{word-spacing:-4.440000px;}
.ws167{word-spacing:-4.320000px;}
.ws12a{word-spacing:-3.840000px;}
.ws13a{word-spacing:-3.660000px;}
.ws144{word-spacing:-3.600000px;}
.ws138{word-spacing:-3.540000px;}
.ws139{word-spacing:-3.480000px;}
.ws64{word-spacing:-3.234000px;}
.ws10a{word-spacing:-3.180000px;}
.wsfe{word-spacing:-3.102000px;}
.ws5{word-spacing:-2.970000px;}
.ws63{word-spacing:-2.904000px;}
.ws119{word-spacing:-2.880000px;}
.ws3a{word-spacing:-2.838000px;}
.wsf3{word-spacing:-2.820000px;}
.ws4e{word-spacing:-2.772000px;}
.wse9{word-spacing:-2.760000px;}
.wsc1{word-spacing:-2.706000px;}
.wsd5{word-spacing:-2.640000px;}
.ws2a{word-spacing:-2.574000px;}
.ws14d{word-spacing:-2.520000px;}
.ws59{word-spacing:-2.508000px;}
.wsf6{word-spacing:-2.460000px;}
.ws34{word-spacing:-2.442000px;}
.ws12b{word-spacing:-2.400000px;}
.ws101{word-spacing:-2.376000px;}
.ws12c{word-spacing:-2.340000px;}
.wsa6{word-spacing:-2.310000px;}
.wsc7{word-spacing:-2.280000px;}
.ws37{word-spacing:-2.244000px;}
.ws11f{word-spacing:-2.220000px;}
.wsc{word-spacing:-2.178000px;}
.ws118{word-spacing:-2.160000px;}
.ws3b{word-spacing:-2.112000px;}
.ws12d{word-spacing:-2.100000px;}
.ws4a{word-spacing:-2.046000px;}
.ws4b{word-spacing:-1.980000px;}
.ws12f{word-spacing:-1.920000px;}
.wsb5{word-spacing:-1.914000px;}
.wsb3{word-spacing:-1.872000px;}
.wsba{word-spacing:-1.860000px;}
.ws2b{word-spacing:-1.848000px;}
.ws159{word-spacing:-1.800000px;}
.ws2f{word-spacing:-1.782000px;}
.wsf4{word-spacing:-1.740000px;}
.ws4f{word-spacing:-1.716000px;}
.ws158{word-spacing:-1.680000px;}
.ws53{word-spacing:-1.650000px;}
.wsca{word-spacing:-1.620000px;}
.wsdd{word-spacing:-1.584000px;}
.ws15a{word-spacing:-1.560000px;}
.ws50{word-spacing:-1.518000px;}
.ws92{word-spacing:-1.452000px;}
.ws137{word-spacing:-1.440000px;}
.ws73{word-spacing:-1.386000px;}
.ws36{word-spacing:-1.320000px;}
.wsc0{word-spacing:-1.260000px;}
.ws67{word-spacing:-1.254000px;}
.ws1d{word-spacing:-1.188000px;}
.ws173{word-spacing:-1.140000px;}
.ws3f{word-spacing:-1.122000px;}
.ws57{word-spacing:-1.056000px;}
.ws130{word-spacing:-1.020000px;}
.ws7a{word-spacing:-0.990000px;}
.ws31{word-spacing:-0.924000px;}
.ws56{word-spacing:-0.858000px;}
.wsb4{word-spacing:-0.816000px;}
.ws76{word-spacing:-0.792000px;}
.ws6b{word-spacing:-0.726000px;}
.wse2{word-spacing:-0.720000px;}
.ws5a{word-spacing:-0.660000px;}
.wse3{word-spacing:-0.600000px;}
.ws8c{word-spacing:-0.594000px;}
.wse7{word-spacing:-0.540000px;}
.ws65{word-spacing:-0.528000px;}
.wscd{word-spacing:-0.480000px;}
.wsa{word-spacing:-0.462000px;}
.ws107{word-spacing:-0.450000px;}
.ws6c{word-spacing:-0.396000px;}
.ws105{word-spacing:-0.360000px;}
.wsd6{word-spacing:-0.330000px;}
.wse6{word-spacing:-0.300000px;}
.ws87{word-spacing:-0.264000px;}
.wsc5{word-spacing:-0.240000px;}
.ws14{word-spacing:-0.198000px;}
.wsb2{word-spacing:-0.192000px;}
.ws77{word-spacing:-0.132000px;}
.wsf7{word-spacing:-0.120000px;}
.ws106{word-spacing:-0.090000px;}
.ws48{word-spacing:-0.066000px;}
.wsfa{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:0.066000px;}
.wsc6{word-spacing:0.078000px;}
.wsfb{word-spacing:0.120000px;}
.ws97{word-spacing:0.132000px;}
.ws11{word-spacing:0.180000px;}
.ws46{word-spacing:0.198000px;}
.ws120{word-spacing:0.240000px;}
.wsab{word-spacing:0.264000px;}
.wsc3{word-spacing:0.300000px;}
.ws15{word-spacing:0.330000px;}
.wsbb{word-spacing:0.360000px;}
.ws49{word-spacing:0.396000px;}
.ws114{word-spacing:0.420000px;}
.ws51{word-spacing:0.462000px;}
.ws1c{word-spacing:0.528000px;}
.wsbc{word-spacing:0.540000px;}
.ws100{word-spacing:0.546000px;}
.ws41{word-spacing:0.594000px;}
.wsed{word-spacing:0.600000px;}
.ws8{word-spacing:0.660000px;}
.ws121{word-spacing:0.720000px;}
.ws38{word-spacing:0.726000px;}
.wse8{word-spacing:0.780000px;}
.ws61{word-spacing:0.792000px;}
.wsec{word-spacing:0.840000px;}
.ws44{word-spacing:0.858000px;}
.ws157{word-spacing:0.900000px;}
.wsd4{word-spacing:0.924000px;}
.wscb{word-spacing:0.960000px;}
.ws60{word-spacing:0.990000px;}
.ws10b{word-spacing:1.020000px;}
.wsc4{word-spacing:1.056000px;}
.ws2{word-spacing:1.080000px;}
.ws9{word-spacing:1.122000px;}
.wscc{word-spacing:1.140000px;}
.ws20{word-spacing:1.188000px;}
.ws74{word-spacing:1.254000px;}
.ws4c{word-spacing:1.320000px;}
.wsbf{word-spacing:1.380000px;}
.ws7e{word-spacing:1.386000px;}
.wsfc{word-spacing:1.440000px;}
.ws45{word-spacing:1.452000px;}
.ws18{word-spacing:1.518000px;}
.wsef{word-spacing:1.560000px;}
.ws6a{word-spacing:1.584000px;}
.wsf5{word-spacing:1.620000px;}
.ws7f{word-spacing:1.650000px;}
.ws15c{word-spacing:1.680000px;}
.ws30{word-spacing:1.716000px;}
.wsb7{word-spacing:1.740000px;}
.ws27{word-spacing:1.782000px;}
.wsf0{word-spacing:1.800000px;}
.ws3e{word-spacing:1.848000px;}
.wsee{word-spacing:1.860000px;}
.ws71{word-spacing:1.914000px;}
.ws161{word-spacing:1.920000px;}
.ws98{word-spacing:1.950000px;}
.ws25{word-spacing:1.980000px;}
.ws172{word-spacing:2.040000px;}
.wsdb{word-spacing:2.046000px;}
.ws164{word-spacing:2.100000px;}
.ws17{word-spacing:2.112000px;}
.ws11e{word-spacing:2.160000px;}
.ws6f{word-spacing:2.178000px;}
.wsa1{word-spacing:2.184000px;}
.wse0{word-spacing:2.220000px;}
.ws95{word-spacing:2.244000px;}
.wse4{word-spacing:2.280000px;}
.ws21{word-spacing:2.310000px;}
.ws1b{word-spacing:2.376000px;}
.wsf1{word-spacing:2.400000px;}
.ws6e{word-spacing:2.442000px;}
.wsc8{word-spacing:2.508000px;}
.ws124{word-spacing:2.520000px;}
.wsb{word-spacing:2.574000px;}
.wsd3{word-spacing:2.640000px;}
.wsc9{word-spacing:2.700000px;}
.ws32{word-spacing:2.706000px;}
.ws155{word-spacing:2.760000px;}
.ws91{word-spacing:2.772000px;}
.ws154{word-spacing:2.820000px;}
.wsae{word-spacing:2.832000px;}
.ws78{word-spacing:2.838000px;}
.ws147{word-spacing:2.880000px;}
.ws109{word-spacing:2.904000px;}
.wsf2{word-spacing:2.940000px;}
.wsa0{word-spacing:2.970000px;}
.ws83{word-spacing:3.036000px;}
.ws5d{word-spacing:3.102000px;}
.ws122{word-spacing:3.120000px;}
.ws69{word-spacing:3.168000px;}
.ws70{word-spacing:3.234000px;}
.ws72{word-spacing:3.300000px;}
.ws1f{word-spacing:3.366000px;}
.wsf9{word-spacing:3.420000px;}
.ws82{word-spacing:3.432000px;}
.ws8b{word-spacing:3.498000px;}
.ws153{word-spacing:3.540000px;}
.ws66{word-spacing:3.564000px;}
.ws75{word-spacing:3.630000px;}
.ws162{word-spacing:3.660000px;}
.wsa8{word-spacing:3.696000px;}
.ws163{word-spacing:3.720000px;}
.ws1a{word-spacing:3.762000px;}
.ws4d{word-spacing:3.828000px;}
.wse1{word-spacing:3.840000px;}
.wsad{word-spacing:3.888000px;}
.ws68{word-spacing:3.894000px;}
.ws123{word-spacing:3.900000px;}
.ws2c{word-spacing:3.960000px;}
.ws156{word-spacing:4.020000px;}
.ws9c{word-spacing:4.026000px;}
.ws131{word-spacing:4.080000px;}
.ws89{word-spacing:4.092000px;}
.ws28{word-spacing:4.158000px;}
.ws42{word-spacing:4.224000px;}
.wsea{word-spacing:4.260000px;}
.ws7c{word-spacing:4.290000px;}
.ws166{word-spacing:4.320000px;}
.wsd0{word-spacing:4.356000px;}
.ws55{word-spacing:4.422000px;}
.wsc2{word-spacing:4.440000px;}
.ws80{word-spacing:4.488000px;}
.ws174{word-spacing:4.500000px;}
.ws16{word-spacing:4.554000px;}
.ws35{word-spacing:4.620000px;}
.ws132{word-spacing:4.680000px;}
.wsce{word-spacing:4.686000px;}
.ws133{word-spacing:4.740000px;}
.ws1e{word-spacing:4.752000px;}
.wsd1{word-spacing:4.818000px;}
.ws58{word-spacing:4.884000px;}
.ws12{word-spacing:4.920000px;}
.ws6{word-spacing:4.950000px;}
.ws23{word-spacing:5.016000px;}
.wse5{word-spacing:5.040000px;}
.ws33{word-spacing:5.082000px;}
.wscf{word-spacing:5.148000px;}
.ws90{word-spacing:5.214000px;}
.wsff{word-spacing:5.280000px;}
.ws125{word-spacing:5.340000px;}
.ws7{word-spacing:5.346000px;}
.ws8e{word-spacing:5.412000px;}
.wsd9{word-spacing:5.478000px;}
.wseb{word-spacing:5.520000px;}
.wse{word-spacing:5.544000px;}
.wsd2{word-spacing:5.610000px;}
.ws7b{word-spacing:5.676000px;}
.ws3d{word-spacing:5.742000px;}
.ws29{word-spacing:5.808000px;}
.ws9f{word-spacing:5.874000px;}
.ws9b{word-spacing:5.940000px;}
.ws102{word-spacing:6.072000px;}
.ws26{word-spacing:6.138000px;}
.ws19{word-spacing:6.204000px;}
.wsd8{word-spacing:6.336000px;}
.ws14a{word-spacing:6.360000px;}
.ws8f{word-spacing:6.402000px;}
.wsdc{word-spacing:6.468000px;}
.ws62{word-spacing:6.534000px;}
.wsf8{word-spacing:6.540000px;}
.ws9e{word-spacing:6.600000px;}
.wsda{word-spacing:6.666000px;}
.wsa9{word-spacing:6.732000px;}
.ws160{word-spacing:6.780000px;}
.ws93{word-spacing:6.798000px;}
.ws104{word-spacing:6.864000px;}
.ws4{word-spacing:6.930000px;}
.wsaf{word-spacing:6.960000px;}
.ws79{word-spacing:7.062000px;}
.ws24{word-spacing:7.194000px;}
.ws81{word-spacing:7.260000px;}
.ws84{word-spacing:7.392000px;}
.ws13{word-spacing:7.524000px;}
.ws175{word-spacing:7.560000px;}
.wsb6{word-spacing:7.590000px;}
.ws8a{word-spacing:7.656000px;}
.ws149{word-spacing:7.680000px;}
.ws182{word-spacing:7.722000px;}
.ws148{word-spacing:7.740000px;}
.wsfd{word-spacing:7.788000px;}
.ws86{word-spacing:7.854000px;}
.ws47{word-spacing:7.920000px;}
.ws88{word-spacing:7.986000px;}
.ws39{word-spacing:8.052000px;}
.ws85{word-spacing:8.118000px;}
.ws94{word-spacing:8.250000px;}
.ws40{word-spacing:8.316000px;}
.ws5f{word-spacing:8.382000px;}
.ws3c{word-spacing:8.448000px;}
.ws17e{word-spacing:8.460000px;}
.ws9d{word-spacing:8.514000px;}
.ws103{word-spacing:8.580000px;}
.wsb0{word-spacing:8.640000px;}
.ws54{word-spacing:8.712000px;}
.ws9a{word-spacing:8.778000px;}
.ws22{word-spacing:8.844000px;}
.ws169{word-spacing:8.880000px;}
.wsaa{word-spacing:9.174000px;}
.wsa7{word-spacing:9.240000px;}
.wsb9{word-spacing:9.300000px;}
.ws15b{word-spacing:9.480000px;}
.wsdf{word-spacing:9.504000px;}
.wsbd{word-spacing:9.570000px;}
.wsde{word-spacing:9.636000px;}
.ws52{word-spacing:9.834000px;}
.ws8d{word-spacing:9.900000px;}
.wsd7{word-spacing:9.966000px;}
.ws16b{word-spacing:10.200000px;}
.ws16a{word-spacing:10.320000px;}
.wsbe{word-spacing:10.428000px;}
.ws96{word-spacing:10.494000px;}
.ws5e{word-spacing:10.692000px;}
.wsb1{word-spacing:11.136000px;}
.wsf{word-spacing:11.484000px;}
.ws183{word-spacing:11.550000px;}
.wsb8{word-spacing:11.880000px;}
.ws168{word-spacing:12.120000px;}
.ws10c{word-spacing:14.340000px;}
.ws14b{word-spacing:14.580000px;}
.ws14c{word-spacing:14.700000px;}
.ws11c{word-spacing:15.000000px;}
.ws11d{word-spacing:15.120000px;}
.ws16d{word-spacing:15.300000px;}
.ws16e{word-spacing:15.420000px;}
.ws140{word-spacing:16.140000px;}
.wsac{word-spacing:16.188600px;}
.ws99{word-spacing:16.189200px;}
.ws151{word-spacing:18.120000px;}
.ws15d{word-spacing:19.500000px;}
.ws16c{word-spacing:20.040000px;}
.ws15e{word-spacing:20.520000px;}
.ws15f{word-spacing:20.700000px;}
.ws17c{word-spacing:20.760000px;}
.ws17f{word-spacing:21.060000px;}
.ws17d{word-spacing:21.360000px;}
.ws115{word-spacing:23.100000px;}
.ws17b{word-spacing:23.220000px;}
.ws117{word-spacing:23.280000px;}
.ws116{word-spacing:24.060000px;}
.ws176{word-spacing:24.780000px;}
.ws177{word-spacing:25.620000px;}
.ws13c{word-spacing:25.740000px;}
.ws178{word-spacing:25.800000px;}
.ws13d{word-spacing:25.920000px;}
.ws141{word-spacing:26.820000px;}
.ws134{word-spacing:26.940000px;}
.ws152{word-spacing:27.060000px;}
.ws142{word-spacing:28.740000px;}
.ws143{word-spacing:28.980000px;}
.ws13f{word-spacing:30.300000px;}
.ws13e{word-spacing:30.540000px;}
.ws181{word-spacing:31.500000px;}
.ws180{word-spacing:31.740000px;}
.ws135{word-spacing:31.920000px;}
.ws136{word-spacing:32.400000px;}
.ws10e{word-spacing:37.620000px;}
.ws16f{word-spacing:37.740000px;}
.ws10d{word-spacing:37.980000px;}
.ws170{word-spacing:44.340000px;}
.ws171{word-spacing:44.760000px;}
.ws11a{word-spacing:46.320000px;}
.ws11b{word-spacing:46.680000px;}
.ws129{word-spacing:68.220000px;}
.ws128{word-spacing:68.820000px;}
.ws7d{word-spacing:73.362600px;}
.ws6d{word-spacing:73.363200px;}
.ws126{word-spacing:87.060000px;}
.ws127{word-spacing:87.840000px;}
.ws10{word-spacing:121.836600px;}
.ws43{word-spacing:121.837200px;}
.ws2d{word-spacing:373.980000px;}
._1f{margin-left:-82.436400px;}
._1d{margin-left:-59.090400px;}
._1b{margin-left:-50.923200px;}
._f{margin-left:-49.300800px;}
._21{margin-left:-45.566400px;}
._24{margin-left:-40.437000px;}
._2c{margin-left:-38.798400px;}
._1c{margin-left:-36.766200px;}
._26{margin-left:-34.140000px;}
._1e{margin-left:-28.278600px;}
._2e{margin-left:-26.076600px;}
._28{margin-left:-23.374200px;}
._8{margin-left:-22.374000px;}
._11{margin-left:-20.922000px;}
._c{margin-left:-19.404000px;}
._19{margin-left:-18.150000px;}
._e{margin-left:-15.510000px;}
._d{margin-left:-14.322000px;}
._1a{margin-left:-12.790800px;}
._5{margin-left:-11.589000px;}
._b{margin-left:-9.048600px;}
._9{margin-left:-7.332600px;}
._2{margin-left:-6.078600px;}
._3{margin-left:-4.943400px;}
._7{margin-left:-3.913800px;}
._0{margin-left:-2.574000px;}
._1{margin-left:-1.452000px;}
._4{width:1.115400px;}
._6{width:2.341200px;}
._12{width:3.562200px;}
._a{width:5.407800px;}
._13{width:6.426000px;}
._22{width:7.815000px;}
._27{width:9.972600px;}
._29{width:14.998800px;}
._25{width:20.085000px;}
._23{width:26.988600px;}
._2d{width:30.865800px;}
._20{width:32.077200px;}
._10{width:33.711000px;}
._2a{width:44.563800px;}
._2b{width:57.977400px;}
._14{width:70.228200px;}
._16{width:243.273600px;}
._17{width:285.381600px;}
._18{width:436.137600px;}
._15{width:452.925000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y25{bottom:139.264499px;}
.y2a{bottom:140.409450px;}
.y29{bottom:160.209450px;}
.y1c{bottom:196.933500px;}
.y24{bottom:209.518500px;}
.y1b{bottom:209.533503px;}
.y68{bottom:221.102400px;}
.y8d{bottom:221.102550px;}
.y44{bottom:221.945400px;}
.y23{bottom:222.118502px;}
.y1a{bottom:222.133505px;}
.y22e{bottom:222.314100px;}
.y28c{bottom:225.620250px;}
.y198{bottom:227.635200px;}
.y22{bottom:234.718504px;}
.y19{bottom:234.733496px;}
.y3a9{bottom:240.922050px;}
.y1d8{bottom:241.077000px;}
.y357{bottom:241.393800px;}
.y3d1{bottom:241.393950px;}
.y32e{bottom:241.705200px;}
.y22d{bottom:241.814100px;}
.y37f{bottom:241.888950px;}
.y311{bottom:243.711750px;}
.y1b9{bottom:243.822000px;}
.y217{bottom:243.829350px;}
.y1f8{bottom:243.858300px;}
.yf3{bottom:243.896700px;}
.y2aa{bottom:243.956100px;}
.yaf{bottom:243.956250px;}
.y115{bottom:244.058850px;}
.yd3{bottom:244.106400px;}
.y8c{bottom:244.106550px;}
.y15a{bottom:244.198650px;}
.y67{bottom:244.310400px;}
.y2cb{bottom:244.734150px;}
.y24c{bottom:245.108700px;}
.y26b{bottom:245.546700px;}
.y2ed{bottom:245.706600px;}
.y197{bottom:247.135200px;}
.y28b{bottom:248.120250px;}
.y13a{bottom:259.705500px;}
.y21{bottom:259.918497px;}
.y18{bottom:259.933500px;}
.y3a8{bottom:260.741700px;}
.y356{bottom:261.685350px;}
.y3d0{bottom:261.685500px;}
.y32d{bottom:262.308150px;}
.y37e{bottom:262.675350px;}
.y43{bottom:266.017950px;}
.y310{bottom:266.321100px;}
.y1b8{bottom:266.541750px;}
.y216{bottom:266.556450px;}
.y1f7{bottom:266.614200px;}
.y196{bottom:266.635200px;}
.yf2{bottom:266.691000px;}
.y2a9{bottom:266.809800px;}
.yae{bottom:266.810100px;}
.y114{bottom:267.015600px;}
.yd2{bottom:267.110550px;}
.y8b{bottom:267.110850px;}
.y159{bottom:267.294750px;}
.y66{bottom:267.518400px;}
.y2ca{bottom:268.365900px;}
.y24b{bottom:269.114850px;}
.y26a{bottom:269.991150px;}
.y2ec{bottom:270.310950px;}
.y28a{bottom:270.620250px;}
.y20{bottom:272.518500px;}
.y17{bottom:272.533503px;}
.y1d7{bottom:273.807750px;}
.y22c{bottom:274.069950px;}
.y3a7{bottom:280.561500px;}
.y355{bottom:281.976900px;}
.y3cf{bottom:281.977050px;}
.y32c{bottom:282.911100px;}
.y37d{bottom:283.461750px;}
.y1f{bottom:285.118502px;}
.y16{bottom:285.133499px;}
.y195{bottom:286.135200px;}
.y42{bottom:288.517950px;}
.y30f{bottom:288.930600px;}
.y1b7{bottom:289.261350px;}
.y215{bottom:289.283550px;}
.y1f6{bottom:289.370250px;}
.yf1{bottom:289.485300px;}
.y2a8{bottom:289.663650px;}
.yad{bottom:289.663950px;}
.y113{bottom:289.972200px;}
.yd1{bottom:290.114850px;}
.y8a{bottom:290.115000px;}
.y158{bottom:290.390850px;}
.y65{bottom:290.726550px;}
.y2c9{bottom:291.997800px;}
.y289{bottom:293.120250px;}
.y24a{bottom:293.121000px;}
.y2eb{bottom:294.915450px;}
.y22b{bottom:296.569950px;}
.y1d6{bottom:296.782350px;}
.y3a6{bottom:300.381000px;}
.y354{bottom:302.268450px;}
.y3ce{bottom:302.268750px;}
.y32b{bottom:303.514050px;}
.y37c{bottom:304.248300px;}
.y139{bottom:307.717200px;}
.y1e{bottom:310.318501px;}
.y15{bottom:310.333501px;}
.y30e{bottom:311.540100px;}
.y1b6{bottom:311.980950px;}
.y214{bottom:312.010650px;}
.y1f5{bottom:312.126150px;}
.yf0{bottom:312.279450px;}
.y2a7{bottom:312.517500px;}
.yac{bottom:312.517650px;}
.y112{bottom:312.928950px;}
.yd0{bottom:313.119000px;}
.y89{bottom:313.119150px;}
.y157{bottom:313.486950px;}
.y64{bottom:313.934550px;}
.y288{bottom:315.620250px;}
.y2c8{bottom:315.629550px;}
.y269{bottom:315.695400px;}
.y249{bottom:317.127150px;}
.y194{bottom:318.391050px;}
.y22a{bottom:319.069950px;}
.y2ea{bottom:319.519800px;}
.y1d5{bottom:319.757100px;}
.y3a5{bottom:320.200650px;}
.y353{bottom:322.560000px;}
.y3cd{bottom:322.560150px;}
.y1d{bottom:322.918500px;}
.y14{bottom:322.933500px;}
.y37b{bottom:325.034700px;}
.y41{bottom:328.025700px;}
.y138{bottom:330.217350px;}
.y30d{bottom:334.149450px;}
.y1b5{bottom:334.700550px;}
.y213{bottom:334.737600px;}
.y1f4{bottom:334.882200px;}
.yef{bottom:335.073750px;}
.y2a6{bottom:335.371200px;}
.yab{bottom:335.371350px;}
.y111{bottom:335.885550px;}
.ycf{bottom:336.123150px;}
.y88{bottom:336.123300px;}
.y156{bottom:336.583050px;}
.y63{bottom:337.142700px;}
.y2c7{bottom:339.261450px;}
.y3a4{bottom:340.020300px;}
.y268{bottom:340.139850px;}
.y193{bottom:340.891050px;}
.y32a{bottom:341.124750px;}
.y229{bottom:341.569950px;}
.y1d4{bottom:342.731850px;}
.y352{bottom:342.851550px;}
.y3cc{bottom:342.851700px;}
.y2e9{bottom:344.124150px;}
.y37a{bottom:345.821250px;}
.y177{bottom:346.913250px;}
.y13{bottom:348.133500px;}
.y40{bottom:350.525700px;}
.y287{bottom:350.876100px;}
.y30c{bottom:356.758800px;}
.y1b4{bottom:357.420150px;}
.y1f3{bottom:357.638100px;}
.yee{bottom:357.868050px;}
.y2a5{bottom:358.225050px;}
.yaa{bottom:358.225200px;}
.y110{bottom:358.842150px;}
.yce{bottom:359.127300px;}
.y87{bottom:359.127450px;}
.y155{bottom:359.679150px;}
.y3a3{bottom:359.839950px;}
.y62{bottom:360.350850px;}
.y267{bottom:361.584300px;}
.y248{bottom:362.393100px;}
.y2c6{bottom:362.893350px;}
.y351{bottom:363.143100px;}
.y3cb{bottom:363.143250px;}
.y192{bottom:363.391050px;}
.y228{bottom:364.069950px;}
.y1d3{bottom:365.706600px;}
.y379{bottom:366.607650px;}
.y2e8{bottom:368.728500px;}
.y176{bottom:369.413250px;}
.y212{bottom:370.220700px;}
.y3f{bottom:373.025700px;}
.y137{bottom:378.229050px;}
.y30b{bottom:379.368300px;}
.y3a2{bottom:379.659600px;}
.y1b3{bottom:380.139750px;}
.y1f2{bottom:380.394150px;}
.yed{bottom:380.662350px;}
.y2a4{bottom:381.078900px;}
.ya9{bottom:381.079050px;}
.y10f{bottom:381.798750px;}
.ycd{bottom:382.131450px;}
.y86{bottom:382.131600px;}
.y154{bottom:382.775250px;}
.y350{bottom:383.434650px;}
.y3ca{bottom:383.434800px;}
.y61{bottom:383.558850px;}
.y191{bottom:385.891050px;}
.y247{bottom:386.399250px;}
.y2c5{bottom:386.525100px;}
.y227{bottom:386.569950px;}
.y12{bottom:386.785499px;}
.y378{bottom:387.394200px;}
.y1d2{bottom:388.681200px;}
.y175{bottom:391.913250px;}
.y2e7{bottom:393.333000px;}
.y3a1{bottom:399.479250px;}
.y136{bottom:400.729050px;}
.y30a{bottom:401.977650px;}
.y1b2{bottom:402.859350px;}
.y1f1{bottom:403.150050px;}
.y329{bottom:403.243350px;}
.yec{bottom:403.456650px;}
.y34f{bottom:403.726200px;}
.y3c9{bottom:403.726350px;}
.y2a3{bottom:403.932600px;}
.ya8{bottom:403.932750px;}
.y266{bottom:404.288700px;}
.y10e{bottom:404.755500px;}
.ycc{bottom:405.135600px;}
.y85{bottom:405.135750px;}
.y153{bottom:405.871350px;}
.y60{bottom:406.767000px;}
.y246{bottom:407.405550px;}
.y11{bottom:408.044999px;}
.y377{bottom:408.180600px;}
.y226{bottom:409.069950px;}
.y2c4{bottom:410.157000px;}
.y1d1{bottom:411.655950px;}
.y3e{bottom:412.533600px;}
.y174{bottom:414.413250px;}
.y286{bottom:416.795850px;}
.y2e6{bottom:417.937350px;}
.y3a0{bottom:419.298900px;}
.y34e{bottom:424.017750px;}
.y3c8{bottom:424.017900px;}
.y309{bottom:424.587150px;}
.y1b1{bottom:425.578950px;}
.yeb{bottom:426.250950px;}
.y2a2{bottom:426.786450px;}
.ya7{bottom:426.786600px;}
.y328{bottom:426.846300px;}
.y10d{bottom:427.712100px;}
.y211{bottom:427.863450px;}
.ycb{bottom:428.139750px;}
.y84{bottom:428.140050px;}
.y245{bottom:428.411700px;}
.y265{bottom:428.733150px;}
.y376{bottom:428.967000px;}
.y152{bottom:428.967450px;}
.y190{bottom:429.651000px;}
.y5f{bottom:429.975150px;}
.y225{bottom:431.569950px;}
.y2c3{bottom:433.788900px;}
.y1d0{bottom:434.630700px;}
.y3d{bottom:435.033600px;}
.y135{bottom:435.985050px;}
.y173{bottom:436.913250px;}
.y1f0{bottom:438.661950px;}
.y39f{bottom:439.118550px;}
.y285{bottom:439.295850px;}
.y2e5{bottom:442.541700px;}
.y34d{bottom:444.309300px;}
.y3c7{bottom:444.309450px;}
.y308{bottom:447.196500px;}
.y1b0{bottom:448.298700px;}
.yea{bottom:449.045250px;}
.y2a1{bottom:449.640150px;}
.ya6{bottom:449.640450px;}
.y375{bottom:449.753550px;}
.y264{bottom:450.177450px;}
.y327{bottom:450.449250px;}
.y210{bottom:450.590550px;}
.y10c{bottom:450.668700px;}
.yca{bottom:451.144050px;}
.y83{bottom:451.144200px;}
.y151{bottom:452.063550px;}
.y18f{bottom:452.151000px;}
.y5e{bottom:453.183150px;}
.y224{bottom:454.069950px;}
.y2c2{bottom:457.420650px;}
.y3c{bottom:457.533600px;}
.y1cf{bottom:457.605450px;}
.y134{bottom:458.485050px;}
.y284{bottom:458.795850px;}
.y39e{bottom:458.938200px;}
.y172{bottom:459.413250px;}
.y34c{bottom:464.600850px;}
.y3c6{bottom:464.601000px;}
.y10{bottom:466.864502px;}
.y2e4{bottom:467.146050px;}
.y307{bottom:469.806000px;}
.y374{bottom:470.539950px;}
.y244{bottom:470.677650px;}
.y263{bottom:471.621900px;}
.y18e{bottom:471.651000px;}
.ye9{bottom:471.839400px;}
.y2a0{bottom:472.494000px;}
.ya5{bottom:472.494150px;}
.y20f{bottom:473.317650px;}
.y10b{bottom:473.625450px;}
.y326{bottom:474.052050px;}
.yc9{bottom:474.148200px;}
.y82{bottom:474.148350px;}
.y150{bottom:475.159650px;}
.y5d{bottom:476.391300px;}
.y283{bottom:478.295850px;}
.y39d{bottom:478.757850px;}
.y3b{bottom:480.033600px;}
.y133{bottom:480.985050px;}
.y2c1{bottom:481.052550px;}
.y171{bottom:481.913250px;}
.y1af{bottom:483.774150px;}
.yf{bottom:484.864502px;}
.y34b{bottom:484.892400px;}
.y3c5{bottom:484.892550px;}
.y223{bottom:489.325800px;}
.y373{bottom:491.326350px;}
.y2e3{bottom:491.750400px;}
.y306{bottom:492.415350px;}
.y262{bottom:493.066500px;}
.y1ce{bottom:493.336050px;}
.ye8{bottom:494.633700px;}
.y243{bottom:494.683800px;}
.y29f{bottom:495.347700px;}
.ya4{bottom:495.348000px;}
.y10a{bottom:496.582050px;}
.yc8{bottom:497.152350px;}
.y81{bottom:497.152500px;}
.y325{bottom:497.655000px;}
.y14f{bottom:498.255750px;}
.y39c{bottom:498.577500px;}
.y5c{bottom:499.599300px;}
.y3a{bottom:502.533600px;}
.ye{bottom:502.864502px;}
.y132{bottom:503.485050px;}
.y170{bottom:504.413250px;}
.y2c0{bottom:504.684450px;}
.y1ef{bottom:504.837600px;}
.y34a{bottom:505.183800px;}
.y3c4{bottom:505.184100px;}
.y20e{bottom:508.800600px;}
.y372{bottom:512.112900px;}
.y18d{bottom:512.410800px;}
.y305{bottom:515.024850px;}
.y242{bottom:515.690100px;}
.y2e2{bottom:516.354750px;}
.ye7{bottom:517.428000px;}
.y29e{bottom:518.201550px;}
.ya3{bottom:518.201700px;}
.y39b{bottom:518.397150px;}
.y282{bottom:519.055650px;}
.y109{bottom:519.538650px;}
.yc7{bottom:520.156500px;}
.y80{bottom:520.156650px;}
.yd{bottom:520.864502px;}
.y324{bottom:521.257950px;}
.y14e{bottom:521.352000px;}
.y1ee{bottom:524.593650px;}
.y39{bottom:525.033600px;}
.y349{bottom:525.475500px;}
.y3c3{bottom:525.475650px;}
.y131{bottom:525.985050px;}
.y261{bottom:527.266800px;}
.y2bf{bottom:528.316200px;}
.y18c{bottom:531.910800px;}
.y11b{bottom:532.294650px;}
.y371{bottom:532.899300px;}
.y5b{bottom:535.563300px;}
.y241{bottom:536.696250px;}
.y304{bottom:537.634350px;}
.y39a{bottom:538.216800px;}
.yc{bottom:538.864499px;}
.y16f{bottom:539.669100px;}
.ye6{bottom:540.222300px;}
.y2e1{bottom:540.959250px;}
.y29d{bottom:541.055400px;}
.ya2{bottom:541.055550px;}
.y1ae{bottom:541.409550px;}
.y281{bottom:541.555650px;}
.y108{bottom:542.495250px;}
.yc6{bottom:543.160650px;}
.y7f{bottom:543.160800px;}
.y1ed{bottom:544.349550px;}
.y14d{bottom:544.448100px;}
.y348{bottom:545.766900px;}
.y3c2{bottom:545.767200px;}
.y222{bottom:546.741600px;}
.y38{bottom:547.533600px;}
.y130{bottom:548.485050px;}
.y260{bottom:551.711250px;}
.y2be{bottom:551.948100px;}
.y370{bottom:553.685850px;}
.yb{bottom:556.864499px;}
.y323{bottom:557.616750px;}
.y240{bottom:557.702400px;}
.y399{bottom:558.036450px;}
.y1cd{bottom:559.730550px;}
.y303{bottom:560.243700px;}
.y280{bottom:561.055650px;}
.ye5{bottom:563.016600px;}
.y29c{bottom:563.909100px;}
.ya1{bottom:563.909250px;}
.y1ad{bottom:564.129150px;}
.y18b{bottom:564.166650px;}
.y107{bottom:565.452000px;}
.y2e0{bottom:565.563600px;}
.y347{bottom:566.058450px;}
.y3c1{bottom:566.058750px;}
.yc5{bottom:566.164800px;}
.y7e{bottom:566.164950px;}
.y20d{bottom:566.443350px;}
.y14c{bottom:567.544200px;}
.y221{bottom:569.241600px;}
.y37{bottom:570.033600px;}
.y12f{bottom:570.985050px;}
.y36f{bottom:574.472250px;}
.y2bd{bottom:575.579850px;}
.y25f{bottom:576.155700px;}
.y398{bottom:577.856100px;}
.y27f{bottom:580.555650px;}
.y1cc{bottom:582.705300px;}
.y302{bottom:582.853200px;}
.y1ec{bottom:585.365400px;}
.ye4{bottom:585.810900px;}
.y346{bottom:586.350000px;}
.y3c0{bottom:586.350150px;}
.y18a{bottom:586.666650px;}
.y29b{bottom:586.762950px;}
.ya0{bottom:586.763100px;}
.y106{bottom:588.408600px;}
.yc4{bottom:589.168950px;}
.y7d{bottom:589.169100px;}
.y20c{bottom:589.170450px;}
.y11a{bottom:590.167050px;}
.y2df{bottom:590.167950px;}
.y14b{bottom:590.640300px;}
.y23f{bottom:591.464400px;}
.y36{bottom:592.533600px;}
.y12e{bottom:593.485050px;}
.y36e{bottom:595.258650px;}
.y16e{bottom:597.084900px;}
.y5a{bottom:597.287100px;}
.y397{bottom:597.675750px;}
.y2bc{bottom:599.211750px;}
.y25e{bottom:600.600150px;}
.y220{bottom:604.497600px;}
.y301{bottom:605.462550px;}
.y345{bottom:606.641550px;}
.y3bf{bottom:606.641850px;}
.y1ac{bottom:608.108550px;}
.y1eb{bottom:608.121300px;}
.ye3{bottom:608.605050px;}
.y189{bottom:609.166650px;}
.y29a{bottom:609.616650px;}
.y9f{bottom:609.616950px;}
.y105{bottom:611.365200px;}
.y20b{bottom:611.897550px;}
.yc3{bottom:612.173100px;}
.y7c{bottom:612.173400px;}
.y27e{bottom:612.811650px;}
.y119{bottom:613.123650px;}
.y14a{bottom:613.736400px;}
.y2de{bottom:614.772300px;}
.y23e{bottom:615.470700px;}
.y12d{bottom:615.985050px;}
.y36d{bottom:616.045200px;}
.y396{bottom:617.495400px;}
.y16d{bottom:619.584900px;}
.y322{bottom:619.735500px;}
.y3e3{bottom:620.311650px;}
.y59{bottom:620.495250px;}
.y2bb{bottom:622.843650px;}
.y1cb{bottom:623.939850px;}
.ya{bottom:626.610001px;}
.y344{bottom:626.933100px;}
.y3be{bottom:626.933250px;}
.y1ea{bottom:627.877350px;}
.y300{bottom:628.072050px;}
.y1ab{bottom:630.828150px;}
.ye2{bottom:631.399350px;}
.y188{bottom:631.666650px;}
.y35{bottom:632.041500px;}
.y299{bottom:632.470500px;}
.y9e{bottom:632.470650px;}
.y20a{bottom:634.624650px;}
.yc2{bottom:635.177400px;}
.y7b{bottom:635.177550px;}
.y27d{bottom:635.311650px;}
.y118{bottom:636.080250px;}
.y36c{bottom:636.831600px;}
.y149{bottom:636.832500px;}
.y395{bottom:637.315050px;}
.y25d{bottom:637.800450px;}
.y12c{bottom:638.485050px;}
.y2dd{bottom:639.376800px;}
.y23d{bottom:639.476850px;}
.y16c{bottom:642.084900px;}
.y3e2{bottom:642.811650px;}
.y321{bottom:643.338300px;}
.y1ca{bottom:643.914600px;}
.y9{bottom:645.510000px;}
.y2ba{bottom:646.475400px;}
.y104{bottom:647.077800px;}
.y343{bottom:647.224650px;}
.y3bd{bottom:647.224800px;}
.y1e9{bottom:647.633400px;}
.y2ff{bottom:650.681400px;}
.ye1{bottom:654.193650px;}
.y298{bottom:655.324200px;}
.y9d{bottom:655.324500px;}
.y394{bottom:657.134700px;}
.y209{bottom:657.351750px;}
.y36b{bottom:657.618000px;}
.y27c{bottom:657.811650px;}
.yc1{bottom:658.181550px;}
.y7a{bottom:658.181700px;}
.y117{bottom:659.036850px;}
.y58{bottom:660.711300px;}
.y12b{bottom:660.985050px;}
.y21f{bottom:661.913250px;}
.y1aa{bottom:663.303750px;}
.y2dc{bottom:663.981150px;}
.y16b{bottom:664.584900px;}
.y3e1{bottom:665.311650px;}
.y8{bottom:666.771000px;}
.y187{bottom:666.922650px;}
.y320{bottom:666.941250px;}
.y1e8{bottom:667.389300px;}
.y342{bottom:667.516200px;}
.y3bc{bottom:667.516350px;}
.y2b9{bottom:670.107300px;}
.y148{bottom:672.684450px;}
.y2fe{bottom:673.290900px;}
.y23c{bottom:676.238850px;}
.y1c9{bottom:676.645200px;}
.y393{bottom:676.954350px;}
.ye0{bottom:676.987950px;}
.y9c{bottom:678.178200px;}
.y36a{bottom:678.404550px;}
.y208{bottom:680.078850px;}
.y27b{bottom:680.311650px;}
.yc0{bottom:681.185700px;}
.y79{bottom:681.185850px;}
.y116{bottom:681.993600px;}
.y57{bottom:683.919300px;}
.y21e{bottom:684.413250px;}
.y1a9{bottom:686.023350px;}
.y16a{bottom:687.084900px;}
.y341{bottom:687.807750px;}
.y3bb{bottom:687.807900px;}
.y2db{bottom:688.585500px;}
.y31f{bottom:690.544200px;}
.y297{bottom:690.934050px;}
.y34{bottom:693.057300px;}
.y2b8{bottom:693.739050px;}
.y2fd{bottom:695.900250px;}
.y12a{bottom:696.240900px;}
.y392{bottom:696.774000px;}
.y369{bottom:699.190950px;}
.y1c8{bottom:699.619950px;}
.y1e7{bottom:699.901200px;}
.y3e0{bottom:700.567650px;}
.y9b{bottom:701.032050px;}
.y207{bottom:702.805800px;}
.y27a{bottom:702.811650px;}
.ybf{bottom:704.189850px;}
.y78{bottom:704.190000px;}
.y103{bottom:704.950200px;}
.y25c{bottom:705.664650px;}
.y21d{bottom:706.913250px;}
.y56{bottom:707.127450px;}
.y340{bottom:708.099300px;}
.y3ba{bottom:708.099450px;}
.y1a8{bottom:708.742950px;}
.y169{bottom:709.584900px;}
.ydf{bottom:712.538100px;}
.y2da{bottom:713.189850px;}
.y31e{bottom:714.147000px;}
.y391{bottom:716.593650px;}
.y2b7{bottom:717.370950px;}
.y2fc{bottom:718.509750px;}
.y368{bottom:719.977500px;}
.y1c7{bottom:722.594550px;}
.y1e6{bottom:722.657100px;}
.y3df{bottom:723.067650px;}
.y186{bottom:724.338300px;}
.y279{bottom:725.311650px;}
.y206{bottom:725.532900px;}
.y7{bottom:726.298500px;}
.ybe{bottom:727.194000px;}
.y77{bottom:727.194150px;}
.y102{bottom:727.906800px;}
.y33f{bottom:728.390850px;}
.y3b9{bottom:728.391000px;}
.y21c{bottom:729.413250px;}
.y25b{bottom:730.109100px;}
.y55{bottom:730.335450px;}
.y147{bottom:730.696350px;}
.y1a7{bottom:731.462550px;}
.y168{bottom:732.084900px;}
.y33{bottom:732.565200px;}
.y23b{bottom:735.160800px;}
.y390{bottom:736.413300px;}
.y9a{bottom:736.641750px;}
.y31d{bottom:737.749950px;}
.y2d9{bottom:737.794200px;}
.y367{bottom:740.763900px;}
.y2b6{bottom:741.002850px;}
.y2fb{bottom:741.119100px;}
.y1e5{bottom:745.413150px;}
.y3de{bottom:745.567650px;}
.y1c6{bottom:745.569300px;}
.y185{bottom:746.838300px;}
.y205{bottom:748.260000px;}
.y33e{bottom:748.682400px;}
.y3b8{bottom:748.682550px;}
.ybd{bottom:750.198150px;}
.y76{bottom:750.198450px;}
.y101{bottom:750.863550px;}
.y25a{bottom:751.553400px;}
.y21b{bottom:751.913250px;}
.y296{bottom:752.303550px;}
.y3{bottom:752.599495px;}
.y54{bottom:753.543600px;}
.y32{bottom:753.565200px;}
.y146{bottom:753.792450px;}
.y1a6{bottom:754.182150px;}
.y167{bottom:754.584900px;}
.y38f{bottom:756.232950px;}
.y129{bottom:757.256700px;}
.y23a{bottom:759.166950px;}
.y31c{bottom:761.352900px;}
.y366{bottom:761.550450px;}
.y2d8{bottom:762.398550px;}
.y2fa{bottom:763.728600px;}
.y2b5{bottom:764.634600px;}
.y1e4{bottom:768.169050px;}
.y1c5{bottom:768.544050px;}
.y33d{bottom:768.973950px;}
.y3b7{bottom:768.974100px;}
.y278{bottom:769.071450px;}
.yde{bottom:770.248050px;}
.y204{bottom:770.987100px;}
.y259{bottom:772.998000px;}
.ybc{bottom:773.202450px;}
.y75{bottom:773.202600px;}
.y100{bottom:773.820150px;}
.y31{bottom:774.565200px;}
.y295{bottom:775.157250px;}
.y38e{bottom:776.052450px;}
.y53{bottom:776.751600px;}
.y145{bottom:776.888550px;}
.y1a5{bottom:776.901750px;}
.y166{bottom:777.084900px;}
.y128{bottom:779.756700px;}
.y184{bottom:782.094300px;}
.y365{bottom:782.336850px;}
.y239{bottom:783.173100px;}
.y2f9{bottom:786.337950px;}
.y2d7{bottom:787.002900px;}
.y21a{bottom:787.169100px;}
.y2b4{bottom:788.266500px;}
.y33c{bottom:789.265500px;}
.y3b6{bottom:789.265650px;}
.y1e3{bottom:790.925100px;}
.y1c4{bottom:791.518800px;}
.y277{bottom:791.571450px;}
.ydd{bottom:793.042350px;}
.y203{bottom:793.714200px;}
.y258{bottom:794.442450px;}
.y30{bottom:795.565200px;}
.y38d{bottom:795.872250px;}
.ybb{bottom:796.206450px;}
.y74{bottom:796.206600px;}
.yff{bottom:796.776900px;}
.y31b{bottom:797.711700px;}
.y3dd{bottom:797.831400px;}
.y294{bottom:798.011100px;}
.y99{bottom:798.011250px;}
.y165{bottom:799.584900px;}
.y1a4{bottom:799.621350px;}
.y52{bottom:799.959750px;}
.y127{bottom:802.256700px;}
.y364{bottom:803.123250px;}
.y2f8{bottom:808.947450px;}
.y33b{bottom:809.557050px;}
.y3b5{bottom:809.557200px;}
.y276{bottom:811.071450px;}
.y2d6{bottom:811.607400px;}
.y2b3{bottom:811.898400px;}
.y144{bottom:812.740650px;}
.y1e2{bottom:813.681000px;}
.y1c3{bottom:814.493550px;}
.y38c{bottom:815.691900px;}
.ydc{bottom:815.836650px;}
.y257{bottom:815.886900px;}
.y202{bottom:816.441300px;}
.yba{bottom:819.210600px;}
.y73{bottom:819.210900px;}
.yfe{bottom:819.733500px;}
.y293{bottom:820.864950px;}
.y98{bottom:820.865100px;}
.y164{bottom:822.084900px;}
.y1a3{bottom:822.340950px;}
.y51{bottom:823.167900px;}
.y363{bottom:823.909800px;}
.y126{bottom:824.756700px;}
.y238{bottom:828.439050px;}
.y33a{bottom:829.848600px;}
.y3b4{bottom:829.848750px;}
.y2f7{bottom:831.556800px;}
.y2f{bottom:833.572950px;}
.y38b{bottom:835.511550px;}
.y2b2{bottom:835.530150px;}
.y2d5{bottom:836.211750px;}
.y1e1{bottom:836.437050px;}
.y1c2{bottom:837.468300px;}
.ydb{bottom:838.630950px;}
.yb9{bottom:842.214900px;}
.y72{bottom:842.215050px;}
.yfd{bottom:842.690250px;}
.y292{bottom:843.718650px;}
.y97{bottom:843.718800px;}
.y163{bottom:844.584900px;}
.y362{bottom:844.696200px;}
.y1a2{bottom:845.060550px;}
.y50{bottom:846.376050px;}
.y125{bottom:847.256700px;}
.y183{bottom:848.389050px;}
.y256{bottom:850.087200px;}
.y339{bottom:850.140150px;}
.y3b3{bottom:850.140300px;}
.y275{bottom:851.831250px;}
.y201{bottom:851.924250px;}
.y237{bottom:852.445200px;}
.y2f6{bottom:854.166300px;}
.y38a{bottom:855.331200px;}
.y3dc{bottom:858.847200px;}
.y2b1{bottom:859.162050px;}
.y1e0{bottom:859.192950px;}
.y31a{bottom:859.830300px;}
.y1c1{bottom:860.443050px;}
.y2d4{bottom:860.816100px;}
.yda{bottom:861.425100px;}
.y182{bottom:861.889050px;}
.yb8{bottom:865.219050px;}
.y71{bottom:865.219200px;}
.y361{bottom:865.482600px;}
.yfc{bottom:865.646850px;}
.y291{bottom:866.572500px;}
.y96{bottom:866.572650px;}
.y162{bottom:867.084900px;}
.y1a1{bottom:867.780150px;}
.y4f{bottom:869.584050px;}
.y124{bottom:869.756700px;}
.y338{bottom:870.431550px;}
.y3b2{bottom:870.431700px;}
.y143{bottom:870.752400px;}
.y236{bottom:873.451350px;}
.y274{bottom:874.331250px;}
.y255{bottom:874.531650px;}
.y389{bottom:875.150700px;}
.y181{bottom:875.389050px;}
.y2f5{bottom:876.775800px;}
.y3db{bottom:878.347200px;}
.y2{bottom:879.369000px;}
.y1df{bottom:881.949000px;}
.y2b0{bottom:882.793800px;}
.y1c0{bottom:883.417650px;}
.y319{bottom:883.433250px;}
.yd9{bottom:884.219400px;}
.y2d3{bottom:885.420450px;}
.y360{bottom:886.269000px;}
.yb7{bottom:888.223200px;}
.y70{bottom:888.223350px;}
.yfb{bottom:888.603450px;}
.y180{bottom:888.889050px;}
.y290{bottom:889.426200px;}
.y95{bottom:889.426350px;}
.y219{bottom:889.584900px;}
.y1a0{bottom:890.499750px;}
.y337{bottom:890.723100px;}
.y3b1{bottom:890.723400px;}
.y123{bottom:892.256700px;}
.y2e{bottom:892.788750px;}
.y273{bottom:893.831250px;}
.y142{bottom:893.848500px;}
.y235{bottom:894.457650px;}
.y388{bottom:894.970500px;}
.y3da{bottom:897.847200px;}
.y2f4{bottom:899.385150px;}
.y161{bottom:902.340750px;}
.y1bf{bottom:906.392550px;}
.y2af{bottom:906.425700px;}
.y318{bottom:907.036200px;}
.y35f{bottom:907.055550px;}
.y17f{bottom:909.612900px;}
.y4e{bottom:909.800100px;}
.y2d2{bottom:910.024800px;}
.y336{bottom:911.014650px;}
.y3b0{bottom:911.014950px;}
.yb6{bottom:911.227350px;}
.y6f{bottom:911.227500px;}
.yfa{bottom:911.560050px;}
.y28f{bottom:912.280050px;}
.y94{bottom:912.280200px;}
.y200{bottom:913.167000px;}
.y19f{bottom:913.219350px;}
.y272{bottom:913.331250px;}
.y122{bottom:914.756700px;}
.y387{bottom:914.790000px;}
.y141{bottom:916.944600px;}
.y3d9{bottom:917.347200px;}
.yd8{bottom:919.769550px;}
.y254{bottom:920.236050px;}
.y2f3{bottom:921.994650px;}
.y17e{bottom:923.112900px;}
.y218{bottom:924.840900px;}
.y1de{bottom:925.964850px;}
.y35e{bottom:927.841950px;}
.y234{bottom:928.219650px;}
.y2d{bottom:928.788750px;}
.y1be{bottom:929.367150px;}
.y317{bottom:930.639150px;}
.y335{bottom:931.306200px;}
.y3af{bottom:931.306500px;}
.y271{bottom:932.831250px;}
.y4d{bottom:933.008100px;}
.yb5{bottom:934.231500px;}
.y6e{bottom:934.231800px;}
.yf9{bottom:934.516800px;}
.y386{bottom:934.609650px;}
.y2d1{bottom:934.629300px;}
.y28e{bottom:935.133750px;}
.y93{bottom:935.133900px;}
.y1ff{bottom:935.894100px;}
.y19e{bottom:935.938950px;}
.y3d8{bottom:936.847200px;}
.y121{bottom:937.256700px;}
.y140{bottom:940.040700px;}
.y2ae{bottom:942.813450px;}
.y17d{bottom:943.836750px;}
.y2f2{bottom:944.604000px;}
.y253{bottom:944.680500px;}
.y35d{bottom:948.628350px;}
.y1dd{bottom:948.720750px;}
.y334{bottom:951.597900px;}
.y3ae{bottom:951.598050px;}
.y233{bottom:952.225800px;}
.y316{bottom:954.241950px;}
.y385{bottom:954.429450px;}
.y4c{bottom:956.216250px;}
.y3d7{bottom:956.347200px;}
.yb4{bottom:957.235800px;}
.y6d{bottom:957.235950px;}
.y17c{bottom:957.336750px;}
.yf8{bottom:957.473400px;}
.y92{bottom:957.987600px;}
.y1fe{bottom:958.621200px;}
.y19d{bottom:958.658550px;}
.y2d0{bottom:959.233650px;}
.y160{bottom:959.756550px;}
.y120{bottom:959.756700px;}
.y13f{bottom:963.136950px;}
.y2c{bottom:964.788750px;}
.y270{bottom:965.087250px;}
.y252{bottom:966.124950px;}
.y1{bottom:966.726000px;}
.y2f1{bottom:967.213500px;}
.y35c{bottom:969.414900px;}
.y333{bottom:971.889300px;}
.y3ad{bottom:971.889450px;}
.y1bd{bottom:973.601700px;}
.y384{bottom:974.248950px;}
.y3d6{bottom:975.847200px;}
.y232{bottom:976.231950px;}
.y315{bottom:977.844900px;}
.y17b{bottom:978.060600px;}
.y4b{bottom:979.424250px;}
.yb3{bottom:980.239950px;}
.y6c{bottom:980.240100px;}
.yf7{bottom:980.430150px;}
.y91{bottom:980.841450px;}
.yd7{bottom:981.079500px;}
.y1dc{bottom:981.232650px;}
.y1fd{bottom:981.348300px;}
.y19c{bottom:981.378150px;}
.y15f{bottom:982.256550px;}
.y11f{bottom:982.256700px;}
.y2cf{bottom:983.838000px;}
.y13e{bottom:986.233050px;}
.y251{bottom:987.569400px;}
.y26f{bottom:987.587250px;}
.y2f0{bottom:989.822850px;}
.y35b{bottom:990.201300px;}
.y17a{bottom:991.560600px;}
.y332{bottom:992.180850px;}
.y3ac{bottom:992.181000px;}
.y383{bottom:994.068600px;}
.y3d5{bottom:995.347200px;}
.y1bc{bottom:996.576450px;}
.y231{bottom:1000.238100px;}
.y2b{bottom:1000.788750px;}
.y2ad{bottom:1001.361000px;}
.y314{bottom:1001.447850px;}
.y4a{bottom:1002.632400px;}
.y1f9{bottom:1003.243950px;}
.yb2{bottom:1003.244100px;}
.y6b{bottom:1003.244250px;}
.yf6{bottom:1003.386750px;}
.y28d{bottom:1003.695150px;}
.y90{bottom:1003.695300px;}
.yd6{bottom:1003.873800px;}
.y1db{bottom:1003.988550px;}
.y1fc{bottom:1004.075250px;}
.y19b{bottom:1004.097900px;}
.y15e{bottom:1004.756550px;}
.y11e{bottom:1004.756700px;}
.y179{bottom:1005.060600px;}
.y2ce{bottom:1008.442350px;}
.y250{bottom:1009.013700px;}
.y13d{bottom:1009.329150px;}
.y35a{bottom:1010.987700px;}
.y2ef{bottom:1012.432200px;}
.y331{bottom:1012.472400px;}
.y3ab{bottom:1012.472700px;}
.y382{bottom:1013.888250px;}
.y3d4{bottom:1014.847200px;}
.y1bb{bottom:1016.551200px;}
.y230{bottom:1024.244250px;}
.y2ac{bottom:1024.992900px;}
.y313{bottom:1025.050800px;}
.y49{bottom:1025.840550px;}
.yb1{bottom:1026.248250px;}
.y6a{bottom:1026.248400px;}
.yf5{bottom:1026.343350px;}
.y8f{bottom:1026.549000px;}
.yd5{bottom:1026.668100px;}
.y1da{bottom:1026.744600px;}
.y1fb{bottom:1026.802350px;}
.y19a{bottom:1026.817350px;}
.y15d{bottom:1027.256550px;}
.y11d{bottom:1027.256700px;}
.y178{bottom:1027.841250px;}
.y24f{bottom:1030.458300px;}
.y26e{bottom:1031.347050px;}
.y359{bottom:1031.774250px;}
.y13c{bottom:1032.425250px;}
.y330{bottom:1032.763950px;}
.y3aa{bottom:1032.764100px;}
.y2cd{bottom:1033.046850px;}
.y381{bottom:1033.707750px;}
.y3d3{bottom:1034.347200px;}
.y2ee{bottom:1035.041700px;}
.y22f{bottom:1048.250550px;}
.y2ab{bottom:1048.624650px;}
.y312{bottom:1048.653600px;}
.y48{bottom:1049.048550px;}
.yb0{bottom:1049.252400px;}
.y69{bottom:1049.252550px;}
.y1ba{bottom:1049.281800px;}
.yf4{bottom:1049.299950px;}
.y8e{bottom:1049.402850px;}
.yd4{bottom:1049.462400px;}
.y1d9{bottom:1049.500650px;}
.y1fa{bottom:1049.529450px;}
.y199{bottom:1049.536950px;}
.y15c{bottom:1049.756550px;}
.y11c{bottom:1049.756700px;}
.y24e{bottom:1051.902600px;}
.y358{bottom:1052.560650px;}
.y32f{bottom:1053.055500px;}
.y380{bottom:1053.527550px;}
.y26d{bottom:1053.847050px;}
.y3d2{bottom:1053.847200px;}
.y13b{bottom:1068.277200px;}
.y2cc{bottom:1070.407050px;}
.y15b{bottom:1072.256550px;}
.y47{bottom:1072.256700px;}
.y26c{bottom:1073.347050px;}
.y24d{bottom:1073.347200px;}
.y28{bottom:1134.703800px;}
.y27{bottom:1154.503950px;}
.y46{bottom:1156.233000px;}
.y45{bottom:1157.323500px;}
.y26{bottom:1174.303950px;}
.h7{height:32.130000px;}
.hf{height:34.272000px;}
.h10{height:42.840000px;}
.h11{height:44.845800px;}
.h6{height:45.900000px;}
.hd{height:47.058000px;}
.ha{height:47.124000px;}
.h3{height:48.195000px;}
.h13{height:48.600000px;}
.h9{height:53.460000px;}
.h2{height:55.080000px;}
.h12{height:57.174000px;}
.hc{height:59.976000px;}
.he{height:65.970000px;}
.h5{height:78.030000px;}
.hb{height:85.560000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:144.566850px;}
.x13{left:150.566850px;}
.xd{left:162.073350px;}
.xb{left:166.042200px;}
.x12{left:182.910450px;}
.xf{left:191.537550px;}
.x9{left:194.191800px;}
.x8{left:196.321050px;}
.x4{left:203.484001px;}
.x7{left:218.760150px;}
.x6{left:235.950150px;}
.xc{left:267.013200px;}
.xe{left:276.220350px;}
.xa{left:287.720550px;}
.x14{left:367.730250px;}
.x11{left:388.137750px;}
.x3{left:454.959000px;}
.x10{left:732.189000px;}
@media print{
.v1{vertical-align:-7.657067pt;}
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-4.960000pt;}
.ls2{letter-spacing:-4.373333pt;}
.ls20{letter-spacing:-3.360000pt;}
.ls21{letter-spacing:-2.080000pt;}
.lsc{letter-spacing:-2.010667pt;}
.lsa{letter-spacing:-1.802667pt;}
.lse{letter-spacing:-1.760000pt;}
.lsd{letter-spacing:-1.642667pt;}
.ls1c{letter-spacing:-1.600000pt;}
.ls19{letter-spacing:-1.546667pt;}
.ls9{letter-spacing:-1.173333pt;}
.ls6{letter-spacing:-1.114667pt;}
.ls1{letter-spacing:-1.040000pt;}
.ls15{letter-spacing:-0.906667pt;}
.ls13{letter-spacing:-0.880000pt;}
.ls1d{letter-spacing:-0.853333pt;}
.ls18{letter-spacing:-0.693333pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls10{letter-spacing:-0.554667pt;}
.ls17{letter-spacing:-0.533333pt;}
.ls1f{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.469333pt;}
.ls7{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.373333pt;}
.ls12{letter-spacing:-0.293333pt;}
.ls3{letter-spacing:-0.240000pt;}
.ls5{letter-spacing:-0.234667pt;}
.ls1a{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.138667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.240000pt;}
.ls8{letter-spacing:0.293333pt;}
.ls14{letter-spacing:0.320000pt;}
.wsa2{word-spacing:-13.434667pt;}
.ws1{word-spacing:-13.317333pt;}
.ws5c{word-spacing:-13.200000pt;}
.ws3{word-spacing:-12.965333pt;}
.ws5b{word-spacing:-12.848000pt;}
.ws111{word-spacing:-12.426667pt;}
.ws2e{word-spacing:-12.320000pt;}
.ws108{word-spacing:-12.213333pt;}
.ws110{word-spacing:-12.106667pt;}
.ws14e{word-spacing:-12.000000pt;}
.ws112{word-spacing:-11.840000pt;}
.wsa3{word-spacing:-11.792000pt;}
.ws10f{word-spacing:-11.680000pt;}
.wsa4{word-spacing:-11.674667pt;}
.ws165{word-spacing:-11.626667pt;}
.ws12e{word-spacing:-11.520000pt;}
.ws150{word-spacing:-11.360000pt;}
.ws113{word-spacing:-10.613333pt;}
.ws17a{word-spacing:-10.133333pt;}
.wsa5{word-spacing:-9.429333pt;}
.ws179{word-spacing:-8.746667pt;}
.ws14f{word-spacing:-7.253333pt;}
.ws13b{word-spacing:-6.080000pt;}
.ws146{word-spacing:-4.000000pt;}
.ws145{word-spacing:-3.946667pt;}
.ws167{word-spacing:-3.840000pt;}
.ws12a{word-spacing:-3.413333pt;}
.ws13a{word-spacing:-3.253333pt;}
.ws144{word-spacing:-3.200000pt;}
.ws138{word-spacing:-3.146667pt;}
.ws139{word-spacing:-3.093333pt;}
.ws64{word-spacing:-2.874667pt;}
.ws10a{word-spacing:-2.826667pt;}
.wsfe{word-spacing:-2.757333pt;}
.ws5{word-spacing:-2.640000pt;}
.ws63{word-spacing:-2.581333pt;}
.ws119{word-spacing:-2.560000pt;}
.ws3a{word-spacing:-2.522667pt;}
.wsf3{word-spacing:-2.506667pt;}
.ws4e{word-spacing:-2.464000pt;}
.wse9{word-spacing:-2.453333pt;}
.wsc1{word-spacing:-2.405333pt;}
.wsd5{word-spacing:-2.346667pt;}
.ws2a{word-spacing:-2.288000pt;}
.ws14d{word-spacing:-2.240000pt;}
.ws59{word-spacing:-2.229333pt;}
.wsf6{word-spacing:-2.186667pt;}
.ws34{word-spacing:-2.170667pt;}
.ws12b{word-spacing:-2.133333pt;}
.ws101{word-spacing:-2.112000pt;}
.ws12c{word-spacing:-2.080000pt;}
.wsa6{word-spacing:-2.053333pt;}
.wsc7{word-spacing:-2.026667pt;}
.ws37{word-spacing:-1.994667pt;}
.ws11f{word-spacing:-1.973333pt;}
.wsc{word-spacing:-1.936000pt;}
.ws118{word-spacing:-1.920000pt;}
.ws3b{word-spacing:-1.877333pt;}
.ws12d{word-spacing:-1.866667pt;}
.ws4a{word-spacing:-1.818667pt;}
.ws4b{word-spacing:-1.760000pt;}
.ws12f{word-spacing:-1.706667pt;}
.wsb5{word-spacing:-1.701333pt;}
.wsb3{word-spacing:-1.664000pt;}
.wsba{word-spacing:-1.653333pt;}
.ws2b{word-spacing:-1.642667pt;}
.ws159{word-spacing:-1.600000pt;}
.ws2f{word-spacing:-1.584000pt;}
.wsf4{word-spacing:-1.546667pt;}
.ws4f{word-spacing:-1.525333pt;}
.ws158{word-spacing:-1.493333pt;}
.ws53{word-spacing:-1.466667pt;}
.wsca{word-spacing:-1.440000pt;}
.wsdd{word-spacing:-1.408000pt;}
.ws15a{word-spacing:-1.386667pt;}
.ws50{word-spacing:-1.349333pt;}
.ws92{word-spacing:-1.290667pt;}
.ws137{word-spacing:-1.280000pt;}
.ws73{word-spacing:-1.232000pt;}
.ws36{word-spacing:-1.173333pt;}
.wsc0{word-spacing:-1.120000pt;}
.ws67{word-spacing:-1.114667pt;}
.ws1d{word-spacing:-1.056000pt;}
.ws173{word-spacing:-1.013333pt;}
.ws3f{word-spacing:-0.997333pt;}
.ws57{word-spacing:-0.938667pt;}
.ws130{word-spacing:-0.906667pt;}
.ws7a{word-spacing:-0.880000pt;}
.ws31{word-spacing:-0.821333pt;}
.ws56{word-spacing:-0.762667pt;}
.wsb4{word-spacing:-0.725333pt;}
.ws76{word-spacing:-0.704000pt;}
.ws6b{word-spacing:-0.645333pt;}
.wse2{word-spacing:-0.640000pt;}
.ws5a{word-spacing:-0.586667pt;}
.wse3{word-spacing:-0.533333pt;}
.ws8c{word-spacing:-0.528000pt;}
.wse7{word-spacing:-0.480000pt;}
.ws65{word-spacing:-0.469333pt;}
.wscd{word-spacing:-0.426667pt;}
.wsa{word-spacing:-0.410667pt;}
.ws107{word-spacing:-0.400000pt;}
.ws6c{word-spacing:-0.352000pt;}
.ws105{word-spacing:-0.320000pt;}
.wsd6{word-spacing:-0.293333pt;}
.wse6{word-spacing:-0.266667pt;}
.ws87{word-spacing:-0.234667pt;}
.wsc5{word-spacing:-0.213333pt;}
.ws14{word-spacing:-0.176000pt;}
.wsb2{word-spacing:-0.170667pt;}
.ws77{word-spacing:-0.117333pt;}
.wsf7{word-spacing:-0.106667pt;}
.ws106{word-spacing:-0.080000pt;}
.ws48{word-spacing:-0.058667pt;}
.wsfa{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:0.058667pt;}
.wsc6{word-spacing:0.069333pt;}
.wsfb{word-spacing:0.106667pt;}
.ws97{word-spacing:0.117333pt;}
.ws11{word-spacing:0.160000pt;}
.ws46{word-spacing:0.176000pt;}
.ws120{word-spacing:0.213333pt;}
.wsab{word-spacing:0.234667pt;}
.wsc3{word-spacing:0.266667pt;}
.ws15{word-spacing:0.293333pt;}
.wsbb{word-spacing:0.320000pt;}
.ws49{word-spacing:0.352000pt;}
.ws114{word-spacing:0.373333pt;}
.ws51{word-spacing:0.410667pt;}
.ws1c{word-spacing:0.469333pt;}
.wsbc{word-spacing:0.480000pt;}
.ws100{word-spacing:0.485333pt;}
.ws41{word-spacing:0.528000pt;}
.wsed{word-spacing:0.533333pt;}
.ws8{word-spacing:0.586667pt;}
.ws121{word-spacing:0.640000pt;}
.ws38{word-spacing:0.645333pt;}
.wse8{word-spacing:0.693333pt;}
.ws61{word-spacing:0.704000pt;}
.wsec{word-spacing:0.746667pt;}
.ws44{word-spacing:0.762667pt;}
.ws157{word-spacing:0.800000pt;}
.wsd4{word-spacing:0.821333pt;}
.wscb{word-spacing:0.853333pt;}
.ws60{word-spacing:0.880000pt;}
.ws10b{word-spacing:0.906667pt;}
.wsc4{word-spacing:0.938667pt;}
.ws2{word-spacing:0.960000pt;}
.ws9{word-spacing:0.997333pt;}
.wscc{word-spacing:1.013333pt;}
.ws20{word-spacing:1.056000pt;}
.ws74{word-spacing:1.114667pt;}
.ws4c{word-spacing:1.173333pt;}
.wsbf{word-spacing:1.226667pt;}
.ws7e{word-spacing:1.232000pt;}
.wsfc{word-spacing:1.280000pt;}
.ws45{word-spacing:1.290667pt;}
.ws18{word-spacing:1.349333pt;}
.wsef{word-spacing:1.386667pt;}
.ws6a{word-spacing:1.408000pt;}
.wsf5{word-spacing:1.440000pt;}
.ws7f{word-spacing:1.466667pt;}
.ws15c{word-spacing:1.493333pt;}
.ws30{word-spacing:1.525333pt;}
.wsb7{word-spacing:1.546667pt;}
.ws27{word-spacing:1.584000pt;}
.wsf0{word-spacing:1.600000pt;}
.ws3e{word-spacing:1.642667pt;}
.wsee{word-spacing:1.653333pt;}
.ws71{word-spacing:1.701333pt;}
.ws161{word-spacing:1.706667pt;}
.ws98{word-spacing:1.733333pt;}
.ws25{word-spacing:1.760000pt;}
.ws172{word-spacing:1.813333pt;}
.wsdb{word-spacing:1.818667pt;}
.ws164{word-spacing:1.866667pt;}
.ws17{word-spacing:1.877333pt;}
.ws11e{word-spacing:1.920000pt;}
.ws6f{word-spacing:1.936000pt;}
.wsa1{word-spacing:1.941333pt;}
.wse0{word-spacing:1.973333pt;}
.ws95{word-spacing:1.994667pt;}
.wse4{word-spacing:2.026667pt;}
.ws21{word-spacing:2.053333pt;}
.ws1b{word-spacing:2.112000pt;}
.wsf1{word-spacing:2.133333pt;}
.ws6e{word-spacing:2.170667pt;}
.wsc8{word-spacing:2.229333pt;}
.ws124{word-spacing:2.240000pt;}
.wsb{word-spacing:2.288000pt;}
.wsd3{word-spacing:2.346667pt;}
.wsc9{word-spacing:2.400000pt;}
.ws32{word-spacing:2.405333pt;}
.ws155{word-spacing:2.453333pt;}
.ws91{word-spacing:2.464000pt;}
.ws154{word-spacing:2.506667pt;}
.wsae{word-spacing:2.517333pt;}
.ws78{word-spacing:2.522667pt;}
.ws147{word-spacing:2.560000pt;}
.ws109{word-spacing:2.581333pt;}
.wsf2{word-spacing:2.613333pt;}
.wsa0{word-spacing:2.640000pt;}
.ws83{word-spacing:2.698667pt;}
.ws5d{word-spacing:2.757333pt;}
.ws122{word-spacing:2.773333pt;}
.ws69{word-spacing:2.816000pt;}
.ws70{word-spacing:2.874667pt;}
.ws72{word-spacing:2.933333pt;}
.ws1f{word-spacing:2.992000pt;}
.wsf9{word-spacing:3.040000pt;}
.ws82{word-spacing:3.050667pt;}
.ws8b{word-spacing:3.109333pt;}
.ws153{word-spacing:3.146667pt;}
.ws66{word-spacing:3.168000pt;}
.ws75{word-spacing:3.226667pt;}
.ws162{word-spacing:3.253333pt;}
.wsa8{word-spacing:3.285333pt;}
.ws163{word-spacing:3.306667pt;}
.ws1a{word-spacing:3.344000pt;}
.ws4d{word-spacing:3.402667pt;}
.wse1{word-spacing:3.413333pt;}
.wsad{word-spacing:3.456000pt;}
.ws68{word-spacing:3.461333pt;}
.ws123{word-spacing:3.466667pt;}
.ws2c{word-spacing:3.520000pt;}
.ws156{word-spacing:3.573333pt;}
.ws9c{word-spacing:3.578667pt;}
.ws131{word-spacing:3.626667pt;}
.ws89{word-spacing:3.637333pt;}
.ws28{word-spacing:3.696000pt;}
.ws42{word-spacing:3.754667pt;}
.wsea{word-spacing:3.786667pt;}
.ws7c{word-spacing:3.813333pt;}
.ws166{word-spacing:3.840000pt;}
.wsd0{word-spacing:3.872000pt;}
.ws55{word-spacing:3.930667pt;}
.wsc2{word-spacing:3.946667pt;}
.ws80{word-spacing:3.989333pt;}
.ws174{word-spacing:4.000000pt;}
.ws16{word-spacing:4.048000pt;}
.ws35{word-spacing:4.106667pt;}
.ws132{word-spacing:4.160000pt;}
.wsce{word-spacing:4.165333pt;}
.ws133{word-spacing:4.213333pt;}
.ws1e{word-spacing:4.224000pt;}
.wsd1{word-spacing:4.282667pt;}
.ws58{word-spacing:4.341333pt;}
.ws12{word-spacing:4.373333pt;}
.ws6{word-spacing:4.400000pt;}
.ws23{word-spacing:4.458667pt;}
.wse5{word-spacing:4.480000pt;}
.ws33{word-spacing:4.517333pt;}
.wscf{word-spacing:4.576000pt;}
.ws90{word-spacing:4.634667pt;}
.wsff{word-spacing:4.693333pt;}
.ws125{word-spacing:4.746667pt;}
.ws7{word-spacing:4.752000pt;}
.ws8e{word-spacing:4.810667pt;}
.wsd9{word-spacing:4.869333pt;}
.wseb{word-spacing:4.906667pt;}
.wse{word-spacing:4.928000pt;}
.wsd2{word-spacing:4.986667pt;}
.ws7b{word-spacing:5.045333pt;}
.ws3d{word-spacing:5.104000pt;}
.ws29{word-spacing:5.162667pt;}
.ws9f{word-spacing:5.221333pt;}
.ws9b{word-spacing:5.280000pt;}
.ws102{word-spacing:5.397333pt;}
.ws26{word-spacing:5.456000pt;}
.ws19{word-spacing:5.514667pt;}
.wsd8{word-spacing:5.632000pt;}
.ws14a{word-spacing:5.653333pt;}
.ws8f{word-spacing:5.690667pt;}
.wsdc{word-spacing:5.749333pt;}
.ws62{word-spacing:5.808000pt;}
.wsf8{word-spacing:5.813333pt;}
.ws9e{word-spacing:5.866667pt;}
.wsda{word-spacing:5.925333pt;}
.wsa9{word-spacing:5.984000pt;}
.ws160{word-spacing:6.026667pt;}
.ws93{word-spacing:6.042667pt;}
.ws104{word-spacing:6.101333pt;}
.ws4{word-spacing:6.160000pt;}
.wsaf{word-spacing:6.186667pt;}
.ws79{word-spacing:6.277333pt;}
.ws24{word-spacing:6.394667pt;}
.ws81{word-spacing:6.453333pt;}
.ws84{word-spacing:6.570667pt;}
.ws13{word-spacing:6.688000pt;}
.ws175{word-spacing:6.720000pt;}
.wsb6{word-spacing:6.746667pt;}
.ws8a{word-spacing:6.805333pt;}
.ws149{word-spacing:6.826667pt;}
.ws182{word-spacing:6.864000pt;}
.ws148{word-spacing:6.880000pt;}
.wsfd{word-spacing:6.922667pt;}
.ws86{word-spacing:6.981333pt;}
.ws47{word-spacing:7.040000pt;}
.ws88{word-spacing:7.098667pt;}
.ws39{word-spacing:7.157333pt;}
.ws85{word-spacing:7.216000pt;}
.ws94{word-spacing:7.333333pt;}
.ws40{word-spacing:7.392000pt;}
.ws5f{word-spacing:7.450667pt;}
.ws3c{word-spacing:7.509333pt;}
.ws17e{word-spacing:7.520000pt;}
.ws9d{word-spacing:7.568000pt;}
.ws103{word-spacing:7.626667pt;}
.wsb0{word-spacing:7.680000pt;}
.ws54{word-spacing:7.744000pt;}
.ws9a{word-spacing:7.802667pt;}
.ws22{word-spacing:7.861333pt;}
.ws169{word-spacing:7.893333pt;}
.wsaa{word-spacing:8.154667pt;}
.wsa7{word-spacing:8.213333pt;}
.wsb9{word-spacing:8.266667pt;}
.ws15b{word-spacing:8.426667pt;}
.wsdf{word-spacing:8.448000pt;}
.wsbd{word-spacing:8.506667pt;}
.wsde{word-spacing:8.565333pt;}
.ws52{word-spacing:8.741333pt;}
.ws8d{word-spacing:8.800000pt;}
.wsd7{word-spacing:8.858667pt;}
.ws16b{word-spacing:9.066667pt;}
.ws16a{word-spacing:9.173333pt;}
.wsbe{word-spacing:9.269333pt;}
.ws96{word-spacing:9.328000pt;}
.ws5e{word-spacing:9.504000pt;}
.wsb1{word-spacing:9.898667pt;}
.wsf{word-spacing:10.208000pt;}
.ws183{word-spacing:10.266667pt;}
.wsb8{word-spacing:10.560000pt;}
.ws168{word-spacing:10.773333pt;}
.ws10c{word-spacing:12.746667pt;}
.ws14b{word-spacing:12.960000pt;}
.ws14c{word-spacing:13.066667pt;}
.ws11c{word-spacing:13.333333pt;}
.ws11d{word-spacing:13.440000pt;}
.ws16d{word-spacing:13.600000pt;}
.ws16e{word-spacing:13.706667pt;}
.ws140{word-spacing:14.346667pt;}
.wsac{word-spacing:14.389867pt;}
.ws99{word-spacing:14.390400pt;}
.ws151{word-spacing:16.106667pt;}
.ws15d{word-spacing:17.333333pt;}
.ws16c{word-spacing:17.813333pt;}
.ws15e{word-spacing:18.240000pt;}
.ws15f{word-spacing:18.400000pt;}
.ws17c{word-spacing:18.453333pt;}
.ws17f{word-spacing:18.720000pt;}
.ws17d{word-spacing:18.986667pt;}
.ws115{word-spacing:20.533333pt;}
.ws17b{word-spacing:20.640000pt;}
.ws117{word-spacing:20.693333pt;}
.ws116{word-spacing:21.386667pt;}
.ws176{word-spacing:22.026667pt;}
.ws177{word-spacing:22.773333pt;}
.ws13c{word-spacing:22.880000pt;}
.ws178{word-spacing:22.933333pt;}
.ws13d{word-spacing:23.040000pt;}
.ws141{word-spacing:23.840000pt;}
.ws134{word-spacing:23.946667pt;}
.ws152{word-spacing:24.053333pt;}
.ws142{word-spacing:25.546667pt;}
.ws143{word-spacing:25.760000pt;}
.ws13f{word-spacing:26.933333pt;}
.ws13e{word-spacing:27.146667pt;}
.ws181{word-spacing:28.000000pt;}
.ws180{word-spacing:28.213333pt;}
.ws135{word-spacing:28.373333pt;}
.ws136{word-spacing:28.800000pt;}
.ws10e{word-spacing:33.440000pt;}
.ws16f{word-spacing:33.546667pt;}
.ws10d{word-spacing:33.760000pt;}
.ws170{word-spacing:39.413333pt;}
.ws171{word-spacing:39.786667pt;}
.ws11a{word-spacing:41.173333pt;}
.ws11b{word-spacing:41.493333pt;}
.ws129{word-spacing:60.640000pt;}
.ws128{word-spacing:61.173333pt;}
.ws7d{word-spacing:65.211200pt;}
.ws6d{word-spacing:65.211733pt;}
.ws126{word-spacing:77.386667pt;}
.ws127{word-spacing:78.080000pt;}
.ws10{word-spacing:108.299200pt;}
.ws43{word-spacing:108.299733pt;}
.ws2d{word-spacing:332.426667pt;}
._1f{margin-left:-73.276800pt;}
._1d{margin-left:-52.524800pt;}
._1b{margin-left:-45.265067pt;}
._f{margin-left:-43.822933pt;}
._21{margin-left:-40.503467pt;}
._24{margin-left:-35.944000pt;}
._2c{margin-left:-34.487467pt;}
._1c{margin-left:-32.681067pt;}
._26{margin-left:-30.346667pt;}
._1e{margin-left:-25.136533pt;}
._2e{margin-left:-23.179200pt;}
._28{margin-left:-20.777067pt;}
._8{margin-left:-19.888000pt;}
._11{margin-left:-18.597333pt;}
._c{margin-left:-17.248000pt;}
._19{margin-left:-16.133333pt;}
._e{margin-left:-13.786667pt;}
._d{margin-left:-12.730667pt;}
._1a{margin-left:-11.369600pt;}
._5{margin-left:-10.301333pt;}
._b{margin-left:-8.043200pt;}
._9{margin-left:-6.517867pt;}
._2{margin-left:-5.403200pt;}
._3{margin-left:-4.394133pt;}
._7{margin-left:-3.478933pt;}
._0{margin-left:-2.288000pt;}
._1{margin-left:-1.290667pt;}
._4{width:0.991467pt;}
._6{width:2.081067pt;}
._12{width:3.166400pt;}
._a{width:4.806933pt;}
._13{width:5.712000pt;}
._22{width:6.946667pt;}
._27{width:8.864533pt;}
._29{width:13.332267pt;}
._25{width:17.853333pt;}
._23{width:23.989867pt;}
._2d{width:27.436267pt;}
._20{width:28.513067pt;}
._10{width:29.965333pt;}
._2a{width:39.612267pt;}
._2b{width:51.535467pt;}
._14{width:62.425067pt;}
._16{width:216.243200pt;}
._17{width:253.672533pt;}
._18{width:387.677867pt;}
._15{width:402.600000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y25{bottom:123.790666pt;}
.y2a{bottom:124.808400pt;}
.y29{bottom:142.408400pt;}
.y1c{bottom:175.052000pt;}
.y24{bottom:186.238666pt;}
.y1b{bottom:186.252002pt;}
.y68{bottom:196.535467pt;}
.y8d{bottom:196.535600pt;}
.y44{bottom:197.284800pt;}
.y23{bottom:197.438668pt;}
.y1a{bottom:197.452004pt;}
.y22e{bottom:197.612533pt;}
.y28c{bottom:200.551333pt;}
.y198{bottom:202.342400pt;}
.y22{bottom:208.638670pt;}
.y19{bottom:208.651996pt;}
.y3a9{bottom:214.152933pt;}
.y1d8{bottom:214.290667pt;}
.y357{bottom:214.572267pt;}
.y3d1{bottom:214.572400pt;}
.y32e{bottom:214.849067pt;}
.y22d{bottom:214.945867pt;}
.y37f{bottom:215.012400pt;}
.y311{bottom:216.632667pt;}
.y1b9{bottom:216.730667pt;}
.y217{bottom:216.737200pt;}
.y1f8{bottom:216.762933pt;}
.yf3{bottom:216.797067pt;}
.y2aa{bottom:216.849867pt;}
.yaf{bottom:216.850000pt;}
.y115{bottom:216.941200pt;}
.yd3{bottom:216.983467pt;}
.y8c{bottom:216.983600pt;}
.y15a{bottom:217.065467pt;}
.y67{bottom:217.164800pt;}
.y2cb{bottom:217.541467pt;}
.y24c{bottom:217.874400pt;}
.y26b{bottom:218.263733pt;}
.y2ed{bottom:218.405867pt;}
.y197{bottom:219.675733pt;}
.y28b{bottom:220.551333pt;}
.y13a{bottom:230.849333pt;}
.y21{bottom:231.038664pt;}
.y18{bottom:231.052000pt;}
.y3a8{bottom:231.770400pt;}
.y356{bottom:232.609200pt;}
.y3d0{bottom:232.609333pt;}
.y32d{bottom:233.162800pt;}
.y37e{bottom:233.489200pt;}
.y43{bottom:236.460400pt;}
.y310{bottom:236.729867pt;}
.y1b8{bottom:236.926000pt;}
.y216{bottom:236.939067pt;}
.y1f7{bottom:236.990400pt;}
.y196{bottom:237.009067pt;}
.yf2{bottom:237.058667pt;}
.y2a9{bottom:237.164267pt;}
.yae{bottom:237.164533pt;}
.y114{bottom:237.347200pt;}
.yd2{bottom:237.431600pt;}
.y8b{bottom:237.431867pt;}
.y159{bottom:237.595333pt;}
.y66{bottom:237.794133pt;}
.y2ca{bottom:238.547467pt;}
.y24b{bottom:239.213200pt;}
.y26a{bottom:239.992133pt;}
.y2ec{bottom:240.276400pt;}
.y28a{bottom:240.551333pt;}
.y20{bottom:242.238666pt;}
.y17{bottom:242.252002pt;}
.y1d7{bottom:243.384667pt;}
.y22c{bottom:243.617733pt;}
.y3a7{bottom:249.388000pt;}
.y355{bottom:250.646133pt;}
.y3cf{bottom:250.646267pt;}
.y32c{bottom:251.476533pt;}
.y37d{bottom:251.966000pt;}
.y1f{bottom:253.438668pt;}
.y16{bottom:253.451999pt;}
.y195{bottom:254.342400pt;}
.y42{bottom:256.460400pt;}
.y30f{bottom:256.827200pt;}
.y1b7{bottom:257.121200pt;}
.y215{bottom:257.140933pt;}
.y1f6{bottom:257.218000pt;}
.yf1{bottom:257.320267pt;}
.y2a8{bottom:257.478800pt;}
.yad{bottom:257.479067pt;}
.y113{bottom:257.753067pt;}
.yd1{bottom:257.879867pt;}
.y8a{bottom:257.880000pt;}
.y158{bottom:258.125200pt;}
.y65{bottom:258.423600pt;}
.y2c9{bottom:259.553600pt;}
.y289{bottom:260.551333pt;}
.y24a{bottom:260.552000pt;}
.y2eb{bottom:262.147067pt;}
.y22b{bottom:263.617733pt;}
.y1d6{bottom:263.806533pt;}
.y3a6{bottom:267.005333pt;}
.y354{bottom:268.683067pt;}
.y3ce{bottom:268.683333pt;}
.y32b{bottom:269.790267pt;}
.y37c{bottom:270.442933pt;}
.y139{bottom:273.526400pt;}
.y1e{bottom:275.838667pt;}
.y15{bottom:275.852001pt;}
.y30e{bottom:276.924533pt;}
.y1b6{bottom:277.316400pt;}
.y214{bottom:277.342800pt;}
.y1f5{bottom:277.445467pt;}
.yf0{bottom:277.581733pt;}
.y2a7{bottom:277.793333pt;}
.yac{bottom:277.793467pt;}
.y112{bottom:278.159067pt;}
.yd0{bottom:278.328000pt;}
.y89{bottom:278.328133pt;}
.y157{bottom:278.655067pt;}
.y64{bottom:279.052933pt;}
.y288{bottom:280.551333pt;}
.y2c8{bottom:280.559600pt;}
.y269{bottom:280.618133pt;}
.y249{bottom:281.890800pt;}
.y194{bottom:283.014267pt;}
.y22a{bottom:283.617733pt;}
.y2ea{bottom:284.017600pt;}
.y1d5{bottom:284.228533pt;}
.y3a5{bottom:284.622800pt;}
.y353{bottom:286.720000pt;}
.y3cd{bottom:286.720133pt;}
.y1d{bottom:287.038667pt;}
.y14{bottom:287.052000pt;}
.y37b{bottom:288.919733pt;}
.y41{bottom:291.578400pt;}
.y138{bottom:293.526533pt;}
.y30d{bottom:297.021733pt;}
.y1b5{bottom:297.511600pt;}
.y213{bottom:297.544533pt;}
.y1f4{bottom:297.673067pt;}
.yef{bottom:297.843333pt;}
.y2a6{bottom:298.107733pt;}
.yab{bottom:298.107867pt;}
.y111{bottom:298.564933pt;}
.ycf{bottom:298.776133pt;}
.y88{bottom:298.776267pt;}
.y156{bottom:299.184933pt;}
.y63{bottom:299.682400pt;}
.y2c7{bottom:301.565733pt;}
.y3a4{bottom:302.240267pt;}
.y268{bottom:302.346533pt;}
.y193{bottom:303.014267pt;}
.y32a{bottom:303.222000pt;}
.y229{bottom:303.617733pt;}
.y1d4{bottom:304.650533pt;}
.y352{bottom:304.756933pt;}
.y3cc{bottom:304.757067pt;}
.y2e9{bottom:305.888133pt;}
.y37a{bottom:307.396667pt;}
.y177{bottom:308.367333pt;}
.y13{bottom:309.452000pt;}
.y40{bottom:311.578400pt;}
.y287{bottom:311.889867pt;}
.y30c{bottom:317.118933pt;}
.y1b4{bottom:317.706800pt;}
.y1f3{bottom:317.900533pt;}
.yee{bottom:318.104933pt;}
.y2a5{bottom:318.422267pt;}
.yaa{bottom:318.422400pt;}
.y110{bottom:318.970800pt;}
.yce{bottom:319.224267pt;}
.y87{bottom:319.224400pt;}
.y155{bottom:319.714800pt;}
.y3a3{bottom:319.857733pt;}
.y62{bottom:320.311867pt;}
.y267{bottom:321.408267pt;}
.y248{bottom:322.127200pt;}
.y2c6{bottom:322.571867pt;}
.y351{bottom:322.793867pt;}
.y3cb{bottom:322.794000pt;}
.y192{bottom:323.014267pt;}
.y228{bottom:323.617733pt;}
.y1d3{bottom:325.072533pt;}
.y379{bottom:325.873467pt;}
.y2e8{bottom:327.758667pt;}
.y176{bottom:328.367333pt;}
.y212{bottom:329.085067pt;}
.y3f{bottom:331.578400pt;}
.y137{bottom:336.203600pt;}
.y30b{bottom:337.216267pt;}
.y3a2{bottom:337.475200pt;}
.y1b3{bottom:337.902000pt;}
.y1f2{bottom:338.128133pt;}
.yed{bottom:338.366533pt;}
.y2a4{bottom:338.736800pt;}
.ya9{bottom:338.736933pt;}
.y10f{bottom:339.376667pt;}
.ycd{bottom:339.672400pt;}
.y86{bottom:339.672533pt;}
.y154{bottom:340.244667pt;}
.y350{bottom:340.830800pt;}
.y3ca{bottom:340.830933pt;}
.y61{bottom:340.941200pt;}
.y191{bottom:343.014267pt;}
.y247{bottom:343.466000pt;}
.y2c5{bottom:343.577867pt;}
.y227{bottom:343.617733pt;}
.y12{bottom:343.809333pt;}
.y378{bottom:344.350400pt;}
.y1d2{bottom:345.494400pt;}
.y175{bottom:348.367333pt;}
.y2e7{bottom:349.629333pt;}
.y3a1{bottom:355.092667pt;}
.y136{bottom:356.203600pt;}
.y30a{bottom:357.313467pt;}
.y1b2{bottom:358.097200pt;}
.y1f1{bottom:358.355600pt;}
.y329{bottom:358.438533pt;}
.yec{bottom:358.628133pt;}
.y34f{bottom:358.867733pt;}
.y3c9{bottom:358.867867pt;}
.y2a3{bottom:359.051200pt;}
.ya8{bottom:359.051333pt;}
.y266{bottom:359.367733pt;}
.y10e{bottom:359.782667pt;}
.ycc{bottom:360.120533pt;}
.y85{bottom:360.120667pt;}
.y153{bottom:360.774533pt;}
.y60{bottom:361.570667pt;}
.y246{bottom:362.138267pt;}
.y11{bottom:362.706666pt;}
.y377{bottom:362.827200pt;}
.y226{bottom:363.617733pt;}
.y2c4{bottom:364.584000pt;}
.y1d1{bottom:365.916400pt;}
.y3e{bottom:366.696533pt;}
.y174{bottom:368.367333pt;}
.y286{bottom:370.485200pt;}
.y2e6{bottom:371.499867pt;}
.y3a0{bottom:372.710133pt;}
.y34e{bottom:376.904667pt;}
.y3c8{bottom:376.904800pt;}
.y309{bottom:377.410800pt;}
.y1b1{bottom:378.292400pt;}
.yeb{bottom:378.889733pt;}
.y2a2{bottom:379.365733pt;}
.ya7{bottom:379.365867pt;}
.y328{bottom:379.418933pt;}
.y10d{bottom:380.188533pt;}
.y211{bottom:380.323067pt;}
.ycb{bottom:380.568667pt;}
.y84{bottom:380.568933pt;}
.y245{bottom:380.810400pt;}
.y265{bottom:381.096133pt;}
.y376{bottom:381.304000pt;}
.y152{bottom:381.304400pt;}
.y190{bottom:381.912000pt;}
.y5f{bottom:382.200133pt;}
.y225{bottom:383.617733pt;}
.y2c3{bottom:385.590133pt;}
.y1d0{bottom:386.338400pt;}
.y3d{bottom:386.696533pt;}
.y135{bottom:387.542267pt;}
.y173{bottom:388.367333pt;}
.y1f0{bottom:389.921733pt;}
.y39f{bottom:390.327600pt;}
.y285{bottom:390.485200pt;}
.y2e5{bottom:393.370400pt;}
.y34d{bottom:394.941600pt;}
.y3c7{bottom:394.941733pt;}
.y308{bottom:397.508000pt;}
.y1b0{bottom:398.487733pt;}
.yea{bottom:399.151333pt;}
.y2a1{bottom:399.680133pt;}
.ya6{bottom:399.680400pt;}
.y375{bottom:399.780933pt;}
.y264{bottom:400.157733pt;}
.y327{bottom:400.399333pt;}
.y210{bottom:400.524933pt;}
.y10c{bottom:400.594400pt;}
.yca{bottom:401.016933pt;}
.y83{bottom:401.017067pt;}
.y151{bottom:401.834267pt;}
.y18f{bottom:401.912000pt;}
.y5e{bottom:402.829467pt;}
.y224{bottom:403.617733pt;}
.y2c2{bottom:406.596133pt;}
.y3c{bottom:406.696533pt;}
.y1cf{bottom:406.760400pt;}
.y134{bottom:407.542267pt;}
.y284{bottom:407.818533pt;}
.y39e{bottom:407.945067pt;}
.y172{bottom:408.367333pt;}
.y34c{bottom:412.978533pt;}
.y3c6{bottom:412.978667pt;}
.y10{bottom:414.990669pt;}
.y2e4{bottom:415.240933pt;}
.y307{bottom:417.605333pt;}
.y374{bottom:418.257733pt;}
.y244{bottom:418.380133pt;}
.y263{bottom:419.219467pt;}
.y18e{bottom:419.245333pt;}
.ye9{bottom:419.412800pt;}
.y2a0{bottom:419.994667pt;}
.ya5{bottom:419.994800pt;}
.y20f{bottom:420.726800pt;}
.y10b{bottom:421.000400pt;}
.y326{bottom:421.379600pt;}
.yc9{bottom:421.465067pt;}
.y82{bottom:421.465200pt;}
.y150{bottom:422.364133pt;}
.y5d{bottom:423.458933pt;}
.y283{bottom:425.151867pt;}
.y39d{bottom:425.562533pt;}
.y3b{bottom:426.696533pt;}
.y133{bottom:427.542267pt;}
.y2c1{bottom:427.602267pt;}
.y171{bottom:428.367333pt;}
.y1af{bottom:430.021467pt;}
.yf{bottom:430.990669pt;}
.y34b{bottom:431.015467pt;}
.y3c5{bottom:431.015600pt;}
.y223{bottom:434.956267pt;}
.y373{bottom:436.734533pt;}
.y2e3{bottom:437.111467pt;}
.y306{bottom:437.702533pt;}
.y262{bottom:438.281333pt;}
.y1ce{bottom:438.520933pt;}
.ye8{bottom:439.674400pt;}
.y243{bottom:439.718933pt;}
.y29f{bottom:440.309067pt;}
.ya4{bottom:440.309333pt;}
.y10a{bottom:441.406267pt;}
.yc8{bottom:441.913200pt;}
.y81{bottom:441.913333pt;}
.y325{bottom:442.360000pt;}
.y14f{bottom:442.894000pt;}
.y39c{bottom:443.180000pt;}
.y5c{bottom:444.088267pt;}
.y3a{bottom:446.696533pt;}
.ye{bottom:446.990669pt;}
.y132{bottom:447.542267pt;}
.y170{bottom:448.367333pt;}
.y2c0{bottom:448.608400pt;}
.y1ef{bottom:448.744533pt;}
.y34a{bottom:449.052267pt;}
.y3c4{bottom:449.052533pt;}
.y20e{bottom:452.267200pt;}
.y372{bottom:455.211467pt;}
.y18d{bottom:455.476267pt;}
.y305{bottom:457.799867pt;}
.y242{bottom:458.391200pt;}
.y2e2{bottom:458.982000pt;}
.ye7{bottom:459.936000pt;}
.y29e{bottom:460.623600pt;}
.ya3{bottom:460.623733pt;}
.y39b{bottom:460.797467pt;}
.y282{bottom:461.382800pt;}
.y109{bottom:461.812133pt;}
.yc7{bottom:462.361333pt;}
.y80{bottom:462.361467pt;}
.yd{bottom:462.990669pt;}
.y324{bottom:463.340400pt;}
.y14e{bottom:463.424000pt;}
.y1ee{bottom:466.305467pt;}
.y39{bottom:466.696533pt;}
.y349{bottom:467.089333pt;}
.y3c3{bottom:467.089467pt;}
.y131{bottom:467.542267pt;}
.y261{bottom:468.681600pt;}
.y2bf{bottom:469.614400pt;}
.y18c{bottom:472.809600pt;}
.y11b{bottom:473.150800pt;}
.y371{bottom:473.688267pt;}
.y5b{bottom:476.056267pt;}
.y241{bottom:477.063333pt;}
.y304{bottom:477.897200pt;}
.y39a{bottom:478.414933pt;}
.yc{bottom:478.990666pt;}
.y16f{bottom:479.705867pt;}
.ye6{bottom:480.197600pt;}
.y2e1{bottom:480.852667pt;}
.y29d{bottom:480.938133pt;}
.ya2{bottom:480.938267pt;}
.y1ae{bottom:481.252933pt;}
.y281{bottom:481.382800pt;}
.y108{bottom:482.218000pt;}
.yc6{bottom:482.809467pt;}
.y7f{bottom:482.809600pt;}
.y1ed{bottom:483.866267pt;}
.y14d{bottom:483.953867pt;}
.y348{bottom:485.126133pt;}
.y3c2{bottom:485.126400pt;}
.y222{bottom:485.992533pt;}
.y38{bottom:486.696533pt;}
.y130{bottom:487.542267pt;}
.y260{bottom:490.410000pt;}
.y2be{bottom:490.620533pt;}
.y370{bottom:492.165200pt;}
.yb{bottom:494.990666pt;}
.y323{bottom:495.659333pt;}
.y240{bottom:495.735467pt;}
.y399{bottom:496.032400pt;}
.y1cd{bottom:497.538267pt;}
.y303{bottom:497.994400pt;}
.y280{bottom:498.716133pt;}
.ye5{bottom:500.459200pt;}
.y29c{bottom:501.252533pt;}
.ya1{bottom:501.252667pt;}
.y1ad{bottom:501.448133pt;}
.y18b{bottom:501.481467pt;}
.y107{bottom:502.624000pt;}
.y2e0{bottom:502.723200pt;}
.y347{bottom:503.163067pt;}
.y3c1{bottom:503.163333pt;}
.yc5{bottom:503.257600pt;}
.y7e{bottom:503.257733pt;}
.y20d{bottom:503.505200pt;}
.y14c{bottom:504.483733pt;}
.y221{bottom:505.992533pt;}
.y37{bottom:506.696533pt;}
.y12f{bottom:507.542267pt;}
.y36f{bottom:510.642000pt;}
.y2bd{bottom:511.626533pt;}
.y25f{bottom:512.138400pt;}
.y398{bottom:513.649867pt;}
.y27f{bottom:516.049467pt;}
.y1cc{bottom:517.960267pt;}
.y302{bottom:518.091733pt;}
.y1ec{bottom:520.324800pt;}
.ye4{bottom:520.720800pt;}
.y346{bottom:521.200000pt;}
.y3c0{bottom:521.200133pt;}
.y18a{bottom:521.481467pt;}
.y29b{bottom:521.567067pt;}
.ya0{bottom:521.567200pt;}
.y106{bottom:523.029867pt;}
.yc4{bottom:523.705733pt;}
.y7d{bottom:523.705867pt;}
.y20c{bottom:523.707067pt;}
.y11a{bottom:524.592933pt;}
.y2df{bottom:524.593733pt;}
.y14b{bottom:525.013600pt;}
.y23f{bottom:525.746133pt;}
.y36{bottom:526.696533pt;}
.y12e{bottom:527.542267pt;}
.y36e{bottom:529.118800pt;}
.y16e{bottom:530.742133pt;}
.y5a{bottom:530.921867pt;}
.y397{bottom:531.267333pt;}
.y2bc{bottom:532.632667pt;}
.y25e{bottom:533.866800pt;}
.y220{bottom:537.331200pt;}
.y301{bottom:538.188933pt;}
.y345{bottom:539.236933pt;}
.y3bf{bottom:539.237200pt;}
.y1ac{bottom:540.540933pt;}
.y1eb{bottom:540.552267pt;}
.ye3{bottom:540.982267pt;}
.y189{bottom:541.481467pt;}
.y29a{bottom:541.881467pt;}
.y9f{bottom:541.881733pt;}
.y105{bottom:543.435733pt;}
.y20b{bottom:543.908933pt;}
.yc3{bottom:544.153867pt;}
.y7c{bottom:544.154133pt;}
.y27e{bottom:544.721467pt;}
.y119{bottom:544.998800pt;}
.y14a{bottom:545.543467pt;}
.y2de{bottom:546.464267pt;}
.y23e{bottom:547.085067pt;}
.y12d{bottom:547.542267pt;}
.y36d{bottom:547.595733pt;}
.y396{bottom:548.884800pt;}
.y16d{bottom:550.742133pt;}
.y322{bottom:550.876000pt;}
.y3e3{bottom:551.388133pt;}
.y59{bottom:551.551333pt;}
.y2bb{bottom:553.638800pt;}
.y1cb{bottom:554.613200pt;}
.ya{bottom:556.986668pt;}
.y344{bottom:557.273867pt;}
.y3be{bottom:557.274000pt;}
.y1ea{bottom:558.113200pt;}
.y300{bottom:558.286267pt;}
.y1ab{bottom:560.736133pt;}
.ye2{bottom:561.243867pt;}
.y188{bottom:561.481467pt;}
.y35{bottom:561.814667pt;}
.y299{bottom:562.196000pt;}
.y9e{bottom:562.196133pt;}
.y20a{bottom:564.110800pt;}
.yc2{bottom:564.602133pt;}
.y7b{bottom:564.602267pt;}
.y27d{bottom:564.721467pt;}
.y118{bottom:565.404667pt;}
.y36c{bottom:566.072533pt;}
.y149{bottom:566.073333pt;}
.y395{bottom:566.502267pt;}
.y25d{bottom:566.933733pt;}
.y12c{bottom:567.542267pt;}
.y2dd{bottom:568.334933pt;}
.y23d{bottom:568.423867pt;}
.y16c{bottom:570.742133pt;}
.y3e2{bottom:571.388133pt;}
.y321{bottom:571.856267pt;}
.y1ca{bottom:572.368533pt;}
.y9{bottom:573.786667pt;}
.y2ba{bottom:574.644800pt;}
.y104{bottom:575.180267pt;}
.y343{bottom:575.310800pt;}
.y3bd{bottom:575.310933pt;}
.y1e9{bottom:575.674133pt;}
.y2ff{bottom:578.383467pt;}
.ye1{bottom:581.505467pt;}
.y298{bottom:582.510400pt;}
.y9d{bottom:582.510667pt;}
.y394{bottom:584.119733pt;}
.y209{bottom:584.312667pt;}
.y36b{bottom:584.549333pt;}
.y27c{bottom:584.721467pt;}
.yc1{bottom:585.050267pt;}
.y7a{bottom:585.050400pt;}
.y117{bottom:585.810533pt;}
.y58{bottom:587.298933pt;}
.y12b{bottom:587.542267pt;}
.y21f{bottom:588.367333pt;}
.y1aa{bottom:589.603333pt;}
.y2dc{bottom:590.205467pt;}
.y16b{bottom:590.742133pt;}
.y3e1{bottom:591.388133pt;}
.y8{bottom:592.685334pt;}
.y187{bottom:592.820133pt;}
.y320{bottom:592.836667pt;}
.y1e8{bottom:593.234933pt;}
.y342{bottom:593.347733pt;}
.y3bc{bottom:593.347867pt;}
.y2b9{bottom:595.650933pt;}
.y148{bottom:597.941733pt;}
.y2fe{bottom:598.480800pt;}
.y23c{bottom:601.101200pt;}
.y1c9{bottom:601.462400pt;}
.y393{bottom:601.737200pt;}
.ye0{bottom:601.767067pt;}
.y9c{bottom:602.825067pt;}
.y36a{bottom:603.026267pt;}
.y208{bottom:604.514533pt;}
.y27b{bottom:604.721467pt;}
.yc0{bottom:605.498400pt;}
.y79{bottom:605.498533pt;}
.y116{bottom:606.216533pt;}
.y57{bottom:607.928267pt;}
.y21e{bottom:608.367333pt;}
.y1a9{bottom:609.798533pt;}
.y16a{bottom:610.742133pt;}
.y341{bottom:611.384667pt;}
.y3bb{bottom:611.384800pt;}
.y2db{bottom:612.076000pt;}
.y31f{bottom:613.817067pt;}
.y297{bottom:614.163600pt;}
.y34{bottom:616.050933pt;}
.y2b8{bottom:616.656933pt;}
.y2fd{bottom:618.578000pt;}
.y12a{bottom:618.880800pt;}
.y392{bottom:619.354667pt;}
.y369{bottom:621.503067pt;}
.y1c8{bottom:621.884400pt;}
.y1e7{bottom:622.134400pt;}
.y3e0{bottom:622.726800pt;}
.y9b{bottom:623.139600pt;}
.y207{bottom:624.716267pt;}
.y27a{bottom:624.721467pt;}
.ybf{bottom:625.946533pt;}
.y78{bottom:625.946667pt;}
.y103{bottom:626.622400pt;}
.y25c{bottom:627.257467pt;}
.y21d{bottom:628.367333pt;}
.y56{bottom:628.557733pt;}
.y340{bottom:629.421600pt;}
.y3ba{bottom:629.421733pt;}
.y1a8{bottom:629.993733pt;}
.y169{bottom:630.742133pt;}
.ydf{bottom:633.367200pt;}
.y2da{bottom:633.946533pt;}
.y31e{bottom:634.797333pt;}
.y391{bottom:636.972133pt;}
.y2b7{bottom:637.663067pt;}
.y2fc{bottom:638.675333pt;}
.y368{bottom:639.980000pt;}
.y1c7{bottom:642.306267pt;}
.y1e6{bottom:642.361867pt;}
.y3df{bottom:642.726800pt;}
.y186{bottom:643.856267pt;}
.y279{bottom:644.721467pt;}
.y206{bottom:644.918133pt;}
.y7{bottom:645.598667pt;}
.ybe{bottom:646.394667pt;}
.y77{bottom:646.394800pt;}
.y102{bottom:647.028267pt;}
.y33f{bottom:647.458533pt;}
.y3b9{bottom:647.458667pt;}
.y21c{bottom:648.367333pt;}
.y25b{bottom:648.985867pt;}
.y55{bottom:649.187067pt;}
.y147{bottom:649.507867pt;}
.y1a7{bottom:650.188933pt;}
.y168{bottom:650.742133pt;}
.y33{bottom:651.169067pt;}
.y23b{bottom:653.476267pt;}
.y390{bottom:654.589600pt;}
.y9a{bottom:654.792667pt;}
.y31d{bottom:655.777733pt;}
.y2d9{bottom:655.817067pt;}
.y367{bottom:658.456800pt;}
.y2b6{bottom:658.669200pt;}
.y2fb{bottom:658.772533pt;}
.y1e5{bottom:662.589467pt;}
.y3de{bottom:662.726800pt;}
.y1c6{bottom:662.728267pt;}
.y185{bottom:663.856267pt;}
.y205{bottom:665.120000pt;}
.y33e{bottom:665.495467pt;}
.y3b8{bottom:665.495600pt;}
.ybd{bottom:666.842800pt;}
.y76{bottom:666.843067pt;}
.y101{bottom:667.434267pt;}
.y25a{bottom:668.047467pt;}
.y21b{bottom:668.367333pt;}
.y296{bottom:668.714267pt;}
.y3{bottom:668.977329pt;}
.y54{bottom:669.816533pt;}
.y32{bottom:669.835733pt;}
.y146{bottom:670.037733pt;}
.y1a6{bottom:670.384133pt;}
.y167{bottom:670.742133pt;}
.y38f{bottom:672.207067pt;}
.y129{bottom:673.117067pt;}
.y23a{bottom:674.815067pt;}
.y31c{bottom:676.758133pt;}
.y366{bottom:676.933733pt;}
.y2d8{bottom:677.687600pt;}
.y2fa{bottom:678.869867pt;}
.y2b5{bottom:679.675200pt;}
.y1e4{bottom:682.816933pt;}
.y1c5{bottom:683.150267pt;}
.y33d{bottom:683.532400pt;}
.y3b7{bottom:683.532533pt;}
.y278{bottom:683.619067pt;}
.yde{bottom:684.664933pt;}
.y204{bottom:685.321867pt;}
.y259{bottom:687.109333pt;}
.ybc{bottom:687.291067pt;}
.y75{bottom:687.291200pt;}
.y100{bottom:687.840133pt;}
.y31{bottom:688.502400pt;}
.y295{bottom:689.028667pt;}
.y38e{bottom:689.824400pt;}
.y53{bottom:690.445867pt;}
.y145{bottom:690.567600pt;}
.y1a5{bottom:690.579333pt;}
.y166{bottom:690.742133pt;}
.y128{bottom:693.117067pt;}
.y184{bottom:695.194933pt;}
.y365{bottom:695.410533pt;}
.y239{bottom:696.153867pt;}
.y2f9{bottom:698.967067pt;}
.y2d7{bottom:699.558133pt;}
.y21a{bottom:699.705867pt;}
.y2b4{bottom:700.681333pt;}
.y33c{bottom:701.569333pt;}
.y3b6{bottom:701.569467pt;}
.y1e3{bottom:703.044533pt;}
.y1c4{bottom:703.572267pt;}
.y277{bottom:703.619067pt;}
.ydd{bottom:704.926533pt;}
.y203{bottom:705.523733pt;}
.y258{bottom:706.171067pt;}
.y30{bottom:707.169067pt;}
.y38d{bottom:707.442000pt;}
.ybb{bottom:707.739067pt;}
.y74{bottom:707.739200pt;}
.yff{bottom:708.246133pt;}
.y31b{bottom:709.077067pt;}
.y3dd{bottom:709.183467pt;}
.y294{bottom:709.343200pt;}
.y99{bottom:709.343333pt;}
.y165{bottom:710.742133pt;}
.y1a4{bottom:710.774533pt;}
.y52{bottom:711.075333pt;}
.y127{bottom:713.117067pt;}
.y364{bottom:713.887333pt;}
.y2f8{bottom:719.064400pt;}
.y33b{bottom:719.606267pt;}
.y3b5{bottom:719.606400pt;}
.y276{bottom:720.952400pt;}
.y2d6{bottom:721.428800pt;}
.y2b3{bottom:721.687467pt;}
.y144{bottom:722.436133pt;}
.y1e2{bottom:723.272000pt;}
.y1c3{bottom:723.994267pt;}
.y38c{bottom:725.059467pt;}
.ydc{bottom:725.188133pt;}
.y257{bottom:725.232800pt;}
.y202{bottom:725.725600pt;}
.yba{bottom:728.187200pt;}
.y73{bottom:728.187467pt;}
.yfe{bottom:728.652000pt;}
.y293{bottom:729.657733pt;}
.y98{bottom:729.657867pt;}
.y164{bottom:730.742133pt;}
.y1a3{bottom:730.969733pt;}
.y51{bottom:731.704800pt;}
.y363{bottom:732.364267pt;}
.y126{bottom:733.117067pt;}
.y238{bottom:736.390267pt;}
.y33a{bottom:737.643200pt;}
.y3b4{bottom:737.643333pt;}
.y2f7{bottom:739.161600pt;}
.y2f{bottom:740.953733pt;}
.y38b{bottom:742.676933pt;}
.y2b2{bottom:742.693467pt;}
.y2d5{bottom:743.299333pt;}
.y1e1{bottom:743.499600pt;}
.y1c2{bottom:744.416267pt;}
.ydb{bottom:745.449733pt;}
.yb9{bottom:748.635467pt;}
.y72{bottom:748.635600pt;}
.yfd{bottom:749.058000pt;}
.y292{bottom:749.972133pt;}
.y97{bottom:749.972267pt;}
.y163{bottom:750.742133pt;}
.y362{bottom:750.841067pt;}
.y1a2{bottom:751.164933pt;}
.y50{bottom:752.334267pt;}
.y125{bottom:753.117067pt;}
.y183{bottom:754.123600pt;}
.y256{bottom:755.633067pt;}
.y339{bottom:755.680133pt;}
.y3b3{bottom:755.680267pt;}
.y275{bottom:757.183333pt;}
.y201{bottom:757.266000pt;}
.y237{bottom:757.729067pt;}
.y2f6{bottom:759.258933pt;}
.y38a{bottom:760.294400pt;}
.y3dc{bottom:763.419733pt;}
.y2b1{bottom:763.699600pt;}
.y1e0{bottom:763.727067pt;}
.y31a{bottom:764.293600pt;}
.y1c1{bottom:764.838267pt;}
.y2d4{bottom:765.169867pt;}
.yda{bottom:765.711200pt;}
.y182{bottom:766.123600pt;}
.yb8{bottom:769.083600pt;}
.y71{bottom:769.083733pt;}
.y361{bottom:769.317867pt;}
.yfc{bottom:769.463867pt;}
.y291{bottom:770.286667pt;}
.y96{bottom:770.286800pt;}
.y162{bottom:770.742133pt;}
.y1a1{bottom:771.360133pt;}
.y4f{bottom:772.963600pt;}
.y124{bottom:773.117067pt;}
.y338{bottom:773.716933pt;}
.y3b2{bottom:773.717067pt;}
.y143{bottom:774.002133pt;}
.y236{bottom:776.401200pt;}
.y274{bottom:777.183333pt;}
.y255{bottom:777.361467pt;}
.y389{bottom:777.911733pt;}
.y181{bottom:778.123600pt;}
.y2f5{bottom:779.356267pt;}
.y3db{bottom:780.753067pt;}
.y2{bottom:781.661334pt;}
.y1df{bottom:783.954667pt;}
.y2b0{bottom:784.705600pt;}
.y1c0{bottom:785.260133pt;}
.y319{bottom:785.274000pt;}
.yd9{bottom:785.972800pt;}
.y2d3{bottom:787.040400pt;}
.y360{bottom:787.794667pt;}
.yb7{bottom:789.531733pt;}
.y70{bottom:789.531867pt;}
.yfb{bottom:789.869733pt;}
.y180{bottom:790.123600pt;}
.y290{bottom:790.601067pt;}
.y95{bottom:790.601200pt;}
.y219{bottom:790.742133pt;}
.y1a0{bottom:791.555333pt;}
.y337{bottom:791.753867pt;}
.y3b1{bottom:791.754133pt;}
.y123{bottom:793.117067pt;}
.y2e{bottom:793.590000pt;}
.y273{bottom:794.516667pt;}
.y142{bottom:794.532000pt;}
.y235{bottom:795.073467pt;}
.y388{bottom:795.529333pt;}
.y3da{bottom:798.086400pt;}
.y2f4{bottom:799.453467pt;}
.y161{bottom:802.080667pt;}
.y1bf{bottom:805.682267pt;}
.y2af{bottom:805.711733pt;}
.y318{bottom:806.254400pt;}
.y35f{bottom:806.271600pt;}
.y17f{bottom:808.544800pt;}
.y4e{bottom:808.711200pt;}
.y2d2{bottom:808.910933pt;}
.y336{bottom:809.790800pt;}
.y3b0{bottom:809.791067pt;}
.yb6{bottom:809.979867pt;}
.y6f{bottom:809.980000pt;}
.yfa{bottom:810.275600pt;}
.y28f{bottom:810.915600pt;}
.y94{bottom:810.915733pt;}
.y200{bottom:811.704000pt;}
.y19f{bottom:811.750533pt;}
.y272{bottom:811.850000pt;}
.y122{bottom:813.117067pt;}
.y387{bottom:813.146667pt;}
.y141{bottom:815.061867pt;}
.y3d9{bottom:815.419733pt;}
.yd8{bottom:817.572933pt;}
.y254{bottom:817.987600pt;}
.y2f3{bottom:819.550800pt;}
.y17e{bottom:820.544800pt;}
.y218{bottom:822.080800pt;}
.y1de{bottom:823.079867pt;}
.y35e{bottom:824.748400pt;}
.y234{bottom:825.084133pt;}
.y2d{bottom:825.590000pt;}
.y1be{bottom:826.104133pt;}
.y317{bottom:827.234800pt;}
.y335{bottom:827.827733pt;}
.y3af{bottom:827.828000pt;}
.y271{bottom:829.183333pt;}
.y4d{bottom:829.340533pt;}
.yb5{bottom:830.428000pt;}
.y6e{bottom:830.428267pt;}
.yf9{bottom:830.681600pt;}
.y386{bottom:830.764133pt;}
.y2d1{bottom:830.781600pt;}
.y28e{bottom:831.230000pt;}
.y93{bottom:831.230133pt;}
.y1ff{bottom:831.905867pt;}
.y19e{bottom:831.945733pt;}
.y3d8{bottom:832.753067pt;}
.y121{bottom:833.117067pt;}
.y140{bottom:835.591733pt;}
.y2ae{bottom:838.056400pt;}
.y17d{bottom:838.966000pt;}
.y2f2{bottom:839.648000pt;}
.y253{bottom:839.716000pt;}
.y35d{bottom:843.225200pt;}
.y1dd{bottom:843.307333pt;}
.y334{bottom:845.864800pt;}
.y3ae{bottom:845.864933pt;}
.y233{bottom:846.422933pt;}
.y316{bottom:848.215067pt;}
.y385{bottom:848.381733pt;}
.y4c{bottom:849.970000pt;}
.y3d7{bottom:850.086400pt;}
.yb4{bottom:850.876267pt;}
.y6d{bottom:850.876400pt;}
.y17c{bottom:850.966000pt;}
.yf8{bottom:851.087467pt;}
.y92{bottom:851.544533pt;}
.y1fe{bottom:852.107733pt;}
.y19d{bottom:852.140933pt;}
.y2d0{bottom:852.652133pt;}
.y160{bottom:853.116933pt;}
.y120{bottom:853.117067pt;}
.y13f{bottom:856.121733pt;}
.y2c{bottom:857.590000pt;}
.y270{bottom:857.855333pt;}
.y252{bottom:858.777733pt;}
.y1{bottom:859.312000pt;}
.y2f1{bottom:859.745333pt;}
.y35c{bottom:861.702133pt;}
.y333{bottom:863.901600pt;}
.y3ad{bottom:863.901733pt;}
.y1bd{bottom:865.423733pt;}
.y384{bottom:865.999067pt;}
.y3d6{bottom:867.419733pt;}
.y232{bottom:867.761733pt;}
.y315{bottom:869.195467pt;}
.y17b{bottom:869.387200pt;}
.y4b{bottom:870.599333pt;}
.yb3{bottom:871.324400pt;}
.y6c{bottom:871.324533pt;}
.yf7{bottom:871.493467pt;}
.y91{bottom:871.859067pt;}
.yd7{bottom:872.070667pt;}
.y1dc{bottom:872.206800pt;}
.y1fd{bottom:872.309600pt;}
.y19c{bottom:872.336133pt;}
.y15f{bottom:873.116933pt;}
.y11f{bottom:873.117067pt;}
.y2cf{bottom:874.522667pt;}
.y13e{bottom:876.651600pt;}
.y251{bottom:877.839467pt;}
.y26f{bottom:877.855333pt;}
.y2f0{bottom:879.842533pt;}
.y35b{bottom:880.178933pt;}
.y17a{bottom:881.387200pt;}
.y332{bottom:881.938533pt;}
.y3ac{bottom:881.938667pt;}
.y383{bottom:883.616533pt;}
.y3d5{bottom:884.753067pt;}
.y1bc{bottom:885.845733pt;}
.y231{bottom:889.100533pt;}
.y2b{bottom:889.590000pt;}
.y2ad{bottom:890.098667pt;}
.y314{bottom:890.175867pt;}
.y4a{bottom:891.228800pt;}
.y1f9{bottom:891.772400pt;}
.yb2{bottom:891.772533pt;}
.y6b{bottom:891.772667pt;}
.yf6{bottom:891.899333pt;}
.y28d{bottom:892.173467pt;}
.y90{bottom:892.173600pt;}
.yd6{bottom:892.332267pt;}
.y1db{bottom:892.434267pt;}
.y1fc{bottom:892.511333pt;}
.y19b{bottom:892.531467pt;}
.y15e{bottom:893.116933pt;}
.y11e{bottom:893.117067pt;}
.y179{bottom:893.387200pt;}
.y2ce{bottom:896.393200pt;}
.y250{bottom:896.901067pt;}
.y13d{bottom:897.181467pt;}
.y35a{bottom:898.655733pt;}
.y2ef{bottom:899.939733pt;}
.y331{bottom:899.975467pt;}
.y3ab{bottom:899.975733pt;}
.y382{bottom:901.234000pt;}
.y3d4{bottom:902.086400pt;}
.y1bb{bottom:903.601067pt;}
.y230{bottom:910.439333pt;}
.y2ac{bottom:911.104800pt;}
.y313{bottom:911.156267pt;}
.y49{bottom:911.858267pt;}
.yb1{bottom:912.220667pt;}
.y6a{bottom:912.220800pt;}
.yf5{bottom:912.305200pt;}
.y8f{bottom:912.488000pt;}
.yd5{bottom:912.593867pt;}
.y1da{bottom:912.661867pt;}
.y1fb{bottom:912.713200pt;}
.y19a{bottom:912.726533pt;}
.y15d{bottom:913.116933pt;}
.y11d{bottom:913.117067pt;}
.y178{bottom:913.636667pt;}
.y24f{bottom:915.962933pt;}
.y26e{bottom:916.752933pt;}
.y359{bottom:917.132667pt;}
.y13c{bottom:917.711333pt;}
.y330{bottom:918.012400pt;}
.y3aa{bottom:918.012533pt;}
.y2cd{bottom:918.263867pt;}
.y381{bottom:918.851333pt;}
.y3d3{bottom:919.419733pt;}
.y2ee{bottom:920.037067pt;}
.y22f{bottom:931.778267pt;}
.y2ab{bottom:932.110800pt;}
.y312{bottom:932.136533pt;}
.y48{bottom:932.487600pt;}
.yb0{bottom:932.668800pt;}
.y69{bottom:932.668933pt;}
.y1ba{bottom:932.694933pt;}
.yf4{bottom:932.711067pt;}
.y8e{bottom:932.802533pt;}
.yd4{bottom:932.855467pt;}
.y1d9{bottom:932.889467pt;}
.y1fa{bottom:932.915067pt;}
.y199{bottom:932.921733pt;}
.y15c{bottom:933.116933pt;}
.y11c{bottom:933.117067pt;}
.y24e{bottom:935.024533pt;}
.y358{bottom:935.609467pt;}
.y32f{bottom:936.049333pt;}
.y380{bottom:936.468933pt;}
.y26d{bottom:936.752933pt;}
.y3d2{bottom:936.753067pt;}
.y13b{bottom:949.579733pt;}
.y2cc{bottom:951.472933pt;}
.y15b{bottom:953.116933pt;}
.y47{bottom:953.117067pt;}
.y26c{bottom:954.086267pt;}
.y24d{bottom:954.086400pt;}
.y28{bottom:1008.625600pt;}
.y27{bottom:1026.225733pt;}
.y46{bottom:1027.762667pt;}
.y45{bottom:1028.732000pt;}
.y26{bottom:1043.825733pt;}
.h7{height:28.560000pt;}
.hf{height:30.464000pt;}
.h10{height:38.080000pt;}
.h11{height:39.862933pt;}
.h6{height:40.800000pt;}
.hd{height:41.829333pt;}
.ha{height:41.888000pt;}
.h3{height:42.840000pt;}
.h13{height:43.200000pt;}
.h9{height:47.520000pt;}
.h2{height:48.960000pt;}
.h12{height:50.821333pt;}
.hc{height:53.312000pt;}
.he{height:58.640000pt;}
.h5{height:69.360000pt;}
.hb{height:76.053333pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:128.503867pt;}
.x13{left:133.837200pt;}
.xd{left:144.065200pt;}
.xb{left:147.593067pt;}
.x12{left:162.587067pt;}
.xf{left:170.255600pt;}
.x9{left:172.614933pt;}
.x8{left:174.507600pt;}
.x4{left:180.874667pt;}
.x7{left:194.453467pt;}
.x6{left:209.733467pt;}
.xc{left:237.345067pt;}
.xe{left:245.529200pt;}
.xa{left:255.751600pt;}
.x14{left:326.871333pt;}
.x11{left:345.011333pt;}
.x3{left:404.408000pt;}
.x10{left:650.834667pt;}
}




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