
    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_23f6c9a6fec6322624f8e008.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_792e758b4bf1f1ffdb9a8bb1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_f6a947da6c98a7d5bba41ee2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_888db874a0b3f94bc7303191.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.958496;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_0563bd53866c3858b0b535c4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958496;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_9f20045e60e11d659376912f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_8cc9b221093ec2a2b7ac1e2b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719238;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_22a1cc8bd56798f95d9615fa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973000;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_13e0d9c07e1abb32a4d5e0c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956500;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_178572001117f9a156fa0fb9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958496;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_a42f56a5f865669ae4f23ffe.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958496;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_792e758b4bf1f1ffdb9a8bb1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_f6a947da6c98a7d5bba41ee2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_cca659bddb45abee5fa2e4a1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958496;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_98c2f5d769e737a19f6b0d63.woff2')format("woff");}.fff{font-family:fff;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d71ae061295c4bd3386c35e8.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.958000;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:ff11;src:url('chunks/assets/font_a42f56a5f865669ae4f23ffe.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958496;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:ff12;src:url('chunks/assets/font_792e758b4bf1f1ffdb9a8bb1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958496;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:ff13;src:url('chunks/assets/font_f6a947da6c98a7d5bba41ee2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958496;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:ff14;src:url('chunks/assets/font_cca659bddb45abee5fa2e4a1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958496;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:ff15;src:url('chunks/assets/font_792e758b4bf1f1ffdb9a8bb1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.958496;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:ff16;src:url('chunks/assets/font_f6a947da6c98a7d5bba41ee2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.958496;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:ff17;src:url('chunks/assets/font_cca659bddb45abee5fa2e4a1.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.958496;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:ff18;src:url('chunks/assets/font_9101c82e5c0b11a98b3de998.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.958496;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:ff19;src:url('chunks/assets/font_ebfbfa1028a6bd54f46546e5.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.958496;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:ff1a;src:url('chunks/assets/font_e6eefc25fe1ecc294c7a92a0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.958496;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:ff1b;src:url('chunks/assets/font_88696c6c52936008959b6587.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.411000;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);}
.v4{vertical-align:-18.360000px;}
.v3{vertical-align:-17.340000px;}
.v6{vertical-align:-12.000000px;}
.v5{vertical-align:-10.806600px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.168000px;}
.v1{vertical-align:20.400600px;}
.ls74{letter-spacing:-3.060000px;}
.ls67{letter-spacing:-2.160000px;}
.ls85{letter-spacing:-1.755000px;}
.ls2e{letter-spacing:-1.512000px;}
.ls61{letter-spacing:-1.320000px;}
.ls30{letter-spacing:-1.296000px;}
.ls62{letter-spacing:-1.188000px;}
.ls1f{letter-spacing:-1.026000px;}
.ls2f{letter-spacing:-0.972000px;}
.ls87{letter-spacing:-0.945000px;}
.ls3a{letter-spacing:-0.864000px;}
.ls3b{letter-spacing:-0.840000px;}
.ls1e{letter-spacing:-0.810000px;}
.ls84{letter-spacing:-0.765000px;}
.ls63{letter-spacing:-0.756000px;}
.ls1d{letter-spacing:-0.702000px;}
.ls7b{letter-spacing:-0.675000px;}
.ls32{letter-spacing:-0.648000px;}
.ls4b{letter-spacing:-0.594000px;}
.ls76{letter-spacing:-0.585000px;}
.ls46{letter-spacing:-0.540000px;}
.ls64{letter-spacing:-0.491400px;}
.ls20{letter-spacing:-0.486000px;}
.ls86{letter-spacing:-0.450000px;}
.ls48{letter-spacing:-0.432000px;}
.ls7a{letter-spacing:-0.405000px;}
.ls5d{letter-spacing:-0.324000px;}
.ls31{letter-spacing:-0.315900px;}
.ls7c{letter-spacing:-0.315000px;}
.ls65{letter-spacing:-0.270000px;}
.ls12{letter-spacing:-0.216000px;}
.ls77{letter-spacing:-0.180000px;}
.ls52{letter-spacing:-0.175500px;}
.ls14{letter-spacing:-0.162000px;}
.ls21{letter-spacing:-0.140400px;}
.ls75{letter-spacing:-0.135000px;}
.lsf{letter-spacing:-0.108000px;}
.ls60{letter-spacing:-0.105300px;}
.ls78{letter-spacing:-0.090000px;}
.ls3d{letter-spacing:-0.070200px;}
.ls15{letter-spacing:-0.054000px;}
.ls79{letter-spacing:-0.045000px;}
.ls39{letter-spacing:-0.035100px;}
.lsd{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.022800px;}
.ls3{letter-spacing:0.031800px;}
.ls4{letter-spacing:0.032400px;}
.ls1a{letter-spacing:0.035100px;}
.ls5b{letter-spacing:0.044400px;}
.ls71{letter-spacing:0.045000px;}
.ls19{letter-spacing:0.054000px;}
.ls57{letter-spacing:0.058200px;}
.ls4d{letter-spacing:0.060000px;}
.ls56{letter-spacing:0.070200px;}
.ls6c{letter-spacing:0.090000px;}
.ls1c{letter-spacing:0.105300px;}
.ls26{letter-spacing:0.108000px;}
.ls80{letter-spacing:0.117000px;}
.ls2b{letter-spacing:0.120000px;}
.ls6a{letter-spacing:0.135000px;}
.ls37{letter-spacing:0.140400px;}
.ls35{letter-spacing:0.148200px;}
.ls4c{letter-spacing:0.154200px;}
.ls8{letter-spacing:0.161850px;}
.ls17{letter-spacing:0.162000px;}
.ls45{letter-spacing:0.175500px;}
.ls33{letter-spacing:0.180000px;}
.ls3c{letter-spacing:0.210600px;}
.ls10{letter-spacing:0.216000px;}
.ls70{letter-spacing:0.225000px;}
.ls49{letter-spacing:0.245700px;}
.ls9{letter-spacing:0.255000px;}
.ls27{letter-spacing:0.270000px;}
.lsb{letter-spacing:0.280650px;}
.ls43{letter-spacing:0.280800px;}
.ls58{letter-spacing:0.300000px;}
.ls4e{letter-spacing:0.307800px;}
.ls6{letter-spacing:0.310800px;}
.ls41{letter-spacing:0.315900px;}
.ls16{letter-spacing:0.324000px;}
.ls38{letter-spacing:0.330600px;}
.ls5f{letter-spacing:0.351000px;}
.ls59{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.361800px;}
.ls24{letter-spacing:0.378000px;}
.ls3f{letter-spacing:0.386100px;}
.ls23{letter-spacing:0.420000px;}
.ls29{letter-spacing:0.426000px;}
.ls11{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.459000px;}
.ls7{letter-spacing:0.486000px;}
.ls81{letter-spacing:0.495000px;}
.ls6f{letter-spacing:0.504000px;}
.ls55{letter-spacing:0.516000px;}
.ls25{letter-spacing:0.540000px;}
.ls40{letter-spacing:0.561600px;}
.ls69{letter-spacing:0.585000px;}
.ls2c{letter-spacing:0.594000px;}
.ls6e{letter-spacing:0.630000px;}
.lse{letter-spacing:0.648000px;}
.ls2a{letter-spacing:0.660000px;}
.ls44{letter-spacing:0.664200px;}
.ls51{letter-spacing:0.666900px;}
.ls42{letter-spacing:0.691200px;}
.ls2d{letter-spacing:0.702000px;}
.ls28{letter-spacing:0.720000px;}
.ls34{letter-spacing:0.756000px;}
.ls6d{letter-spacing:0.765000px;}
.ls50{letter-spacing:0.780000px;}
.ls4a{letter-spacing:0.810000px;}
.ls6b{letter-spacing:0.855000px;}
.ls47{letter-spacing:0.864000px;}
.ls54{letter-spacing:0.900000px;}
.ls5e{letter-spacing:0.918000px;}
.ls72{letter-spacing:0.945000px;}
.lsc{letter-spacing:0.960000px;}
.ls3e{letter-spacing:0.972000px;}
.ls13{letter-spacing:1.026000px;}
.ls68{letter-spacing:1.080000px;}
.ls7e{letter-spacing:1.102500px;}
.ls83{letter-spacing:1.125000px;}
.ls7f{letter-spacing:1.170000px;}
.ls36{letter-spacing:1.242000px;}
.ls22{letter-spacing:1.260000px;}
.ls73{letter-spacing:1.296000px;}
.ls5a{letter-spacing:1.500000px;}
.ls66{letter-spacing:1.512000px;}
.ls4f{letter-spacing:1.560000px;}
.ls53{letter-spacing:1.566000px;}
.ls82{letter-spacing:1.674000px;}
.ls7d{letter-spacing:2.497500px;}
.ls0{letter-spacing:2.592000px;}
.ls18{letter-spacing:2.700000px;}
.ls1{letter-spacing:2.767500px;}
.ls5c{letter-spacing:6.120000px;}
.ls1b{letter-spacing:14.742000px;}
.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;}
}
.ws2{word-spacing:-15.067500px;}
.ws1c{word-spacing:-13.596000px;}
.ws2a{word-spacing:-13.014000px;}
.ws2b{word-spacing:-12.852000px;}
.ws72{word-spacing:-12.798000px;}
.ws71{word-spacing:-12.744000px;}
.ws61{word-spacing:-12.582000px;}
.ws64{word-spacing:-12.528000px;}
.ws58{word-spacing:-12.366000px;}
.ws3{word-spacing:-12.360000px;}
.ws1d{word-spacing:-12.258000px;}
.ws59{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.192000px;}
.ws2c{word-spacing:-12.042000px;}
.ws69{word-spacing:-11.988000px;}
.ws3e{word-spacing:-11.610000px;}
.ws67{word-spacing:-11.502000px;}
.ws70{word-spacing:-11.448000px;}
.ws83{word-spacing:-10.485000px;}
.ws82{word-spacing:-10.305000px;}
.ws9f{word-spacing:-10.260000px;}
.ws84{word-spacing:-10.215000px;}
.ws86{word-spacing:-10.125000px;}
.ws85{word-spacing:-9.900000px;}
.wsa0{word-spacing:-9.765000px;}
.wsa9{word-spacing:-9.675000px;}
.ws62{word-spacing:-8.634600px;}
.ws55{word-spacing:-8.529300px;}
.ws40{word-spacing:-8.353800px;}
.ws6d{word-spacing:-8.318700px;}
.ws56{word-spacing:-8.283600px;}
.ws57{word-spacing:-8.248500px;}
.ws5a{word-spacing:-8.213400px;}
.ws3c{word-spacing:-8.178300px;}
.ws54{word-spacing:-8.143200px;}
.ws3f{word-spacing:-8.108100px;}
.ws19{word-spacing:-8.073000px;}
.ws6c{word-spacing:-8.037900px;}
.ws18{word-spacing:-8.002800px;}
.ws4{word-spacing:-7.967700px;}
.ws3b{word-spacing:-7.932600px;}
.ws3d{word-spacing:-7.897500px;}
.ws6e{word-spacing:-7.862400px;}
.ws1b{word-spacing:-7.827300px;}
.ws63{word-spacing:-7.792200px;}
.ws29{word-spacing:-7.651800px;}
.ws6f{word-spacing:-7.476300px;}
.ws5{word-spacing:-6.630000px;}
.ws73{word-spacing:-6.120000px;}
.ws4c{word-spacing:-5.508000px;}
.wsaa{word-spacing:-3.960000px;}
.ws7{word-spacing:-3.276000px;}
.ws17{word-spacing:-2.760000px;}
.ws60{word-spacing:-2.700000px;}
.ws1{word-spacing:-2.640000px;}
.ws32{word-spacing:-2.484000px;}
.ws9{word-spacing:-2.400000px;}
.ws34{word-spacing:-1.998000px;}
.ws49{word-spacing:-1.890000px;}
.wsc{word-spacing:-1.836000px;}
.ws22{word-spacing:-1.782000px;}
.ws35{word-spacing:-1.728000px;}
.ws7c{word-spacing:-1.674000px;}
.ws5f{word-spacing:-1.620000px;}
.ws98{word-spacing:-1.575000px;}
.ws2d{word-spacing:-1.566000px;}
.ws8f{word-spacing:-1.530000px;}
.ws33{word-spacing:-1.512000px;}
.ws7f{word-spacing:-1.500000px;}
.ws90{word-spacing:-1.440000px;}
.ws14{word-spacing:-1.404000px;}
.ws65{word-spacing:-1.386000px;}
.ws44{word-spacing:-1.350000px;}
.wsa6{word-spacing:-1.305000px;}
.ws2f{word-spacing:-1.296000px;}
.ws8{word-spacing:-1.260000px;}
.ws10{word-spacing:-1.242000px;}
.ws97{word-spacing:-1.215000px;}
.ws28{word-spacing:-1.188000px;}
.wsa{word-spacing:-1.134000px;}
.wsa1{word-spacing:-1.125000px;}
.ws4e{word-spacing:-1.080000px;}
.ws8a{word-spacing:-1.035000px;}
.ws1f{word-spacing:-1.026000px;}
.ws26{word-spacing:-0.972000px;}
.ws9b{word-spacing:-0.945000px;}
.ws99{word-spacing:-0.900000px;}
.ws36{word-spacing:-0.864000px;}
.ws52{word-spacing:-0.810000px;}
.ws66{word-spacing:-0.780000px;}
.ws91{word-spacing:-0.765000px;}
.ws20{word-spacing:-0.756000px;}
.ws30{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.702000px;}
.ws68{word-spacing:-0.660000px;}
.wsd{word-spacing:-0.648000px;}
.ws42{word-spacing:-0.600000px;}
.ws12{word-spacing:-0.594000px;}
.ws9c{word-spacing:-0.585000px;}
.ws5c{word-spacing:-0.540000px;}
.ws8b{word-spacing:-0.495000px;}
.ws13{word-spacing:-0.486000px;}
.ws16{word-spacing:-0.459000px;}
.ws92{word-spacing:-0.450000px;}
.ws41{word-spacing:-0.432000px;}
.ws24{word-spacing:-0.420000px;}
.ws25{word-spacing:-0.378000px;}
.wsa8{word-spacing:-0.360000px;}
.ws4b{word-spacing:-0.324000px;}
.ws79{word-spacing:-0.300000px;}
.ws38{word-spacing:-0.270000px;}
.ws15{word-spacing:-0.255000px;}
.ws7d{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws45{word-spacing:-0.180000px;}
.ws47{word-spacing:-0.162000px;}
.ws3a{word-spacing:-0.120000px;}
.ws23{word-spacing:-0.108000px;}
.wsf{word-spacing:-0.054000px;}
.ws1a{word-spacing:-0.035100px;}
.ws6{word-spacing:0.000000px;}
.ws21{word-spacing:0.054000px;}
.ws96{word-spacing:0.090000px;}
.ws50{word-spacing:0.108000px;}
.ws9a{word-spacing:0.135000px;}
.ws27{word-spacing:0.162000px;}
.ws95{word-spacing:0.180000px;}
.ws1e{word-spacing:0.216000px;}
.ws2e{word-spacing:0.270000px;}
.wsa5{word-spacing:0.315000px;}
.ws51{word-spacing:0.324000px;}
.ws46{word-spacing:0.378000px;}
.ws39{word-spacing:0.420000px;}
.wsb{word-spacing:0.432000px;}
.ws89{word-spacing:0.495000px;}
.ws5e{word-spacing:0.540000px;}
.ws31{word-spacing:0.594000px;}
.ws93{word-spacing:0.630000px;}
.ws43{word-spacing:0.648000px;}
.ws4a{word-spacing:0.702000px;}
.ws78{word-spacing:0.720000px;}
.ws5d{word-spacing:0.756000px;}
.wsa4{word-spacing:0.765000px;}
.ws48{word-spacing:0.840000px;}
.ws5b{word-spacing:0.864000px;}
.ws8e{word-spacing:0.945000px;}
.ws77{word-spacing:0.972000px;}
.ws76{word-spacing:1.020000px;}
.ws75{word-spacing:1.026000px;}
.wsa7{word-spacing:1.035000px;}
.ws8c{word-spacing:1.080000px;}
.ws7b{word-spacing:1.188000px;}
.ws4f{word-spacing:1.242000px;}
.ws9d{word-spacing:1.260000px;}
.ws9e{word-spacing:1.305000px;}
.ws7a{word-spacing:1.320000px;}
.ws11{word-spacing:1.350000px;}
.ws7e{word-spacing:1.404000px;}
.ws74{word-spacing:1.458000px;}
.ws87{word-spacing:1.500000px;}
.ws81{word-spacing:1.620000px;}
.ws94{word-spacing:1.665000px;}
.wsa2{word-spacing:1.710000px;}
.wsa3{word-spacing:1.845000px;}
.ws4d{word-spacing:1.890000px;}
.ws88{word-spacing:1.944000px;}
.ws80{word-spacing:2.484000px;}
.ws6b{word-spacing:2.592000px;}
.ws6a{word-spacing:2.640000px;}
.wsab{word-spacing:3.024000px;}
.ws8d{word-spacing:3.060000px;}
.ws53{word-spacing:14.742000px;}
._f{margin-left:-13.678800px;}
._5{margin-left:-12.571800px;}
._a{margin-left:-10.592400px;}
._12{margin-left:-9.500400px;}
._9{margin-left:-8.323200px;}
._1{margin-left:-6.848400px;}
._4{margin-left:-5.125200px;}
._2{margin-left:-3.412800px;}
._0{margin-left:-1.776000px;}
._3{width:1.173600px;}
._6{width:2.268600px;}
._7{width:3.557400px;}
._e{width:4.643400px;}
._c{width:6.100800px;}
._d{width:7.414800px;}
._13{width:9.768900px;}
._b{width:11.333400px;}
._11{width:44.846400px;}
._10{width:47.359200px;}
._8{width:48.384000px;}
.fc3{color:rgb(245,130,32);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(131,144,151);}
.fs7{font-size:33.150000px;}
.fs6{font-size:35.100000px;}
.fs4{font-size:39.000000px;}
.fsb{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:61.500000px;}
.fsa{font-size:66.000000px;}
.fs9{font-size:108.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:27.197850px;}
.y2{bottom:27.253800px;}
.y31{bottom:68.313900px;}
.y77{bottom:68.551500px;}
.ybc{bottom:68.553000px;}
.y1c7{bottom:69.775800px;}
.yf8{bottom:81.558300px;}
.y52{bottom:82.296300px;}
.y1c6{bottom:82.522050px;}
.yc2{bottom:82.986450px;}
.yff{bottom:83.047800px;}
.y30{bottom:83.307900px;}
.y146{bottom:83.550000px;}
.ybb{bottom:83.551500px;}
.y76{bottom:83.553000px;}
.ycb{bottom:85.369950px;}
.y1c5{bottom:95.268300px;}
.yf7{bottom:96.556800px;}
.y51{bottom:97.294800px;}
.yc1{bottom:97.984950px;}
.yfe{bottom:98.046300px;}
.y2f{bottom:98.307900px;}
.y75{bottom:98.551500px;}
.yba{bottom:98.554500px;}
.yca{bottom:100.368450px;}
.y1c4{bottom:108.014550px;}
.y145{bottom:111.095100px;}
.yf6{bottom:111.555300px;}
.y50{bottom:112.296300px;}
.yc0{bottom:112.983450px;}
.yfd{bottom:113.044800px;}
.y2e{bottom:113.307900px;}
.y74{bottom:113.551500px;}
.yb9{bottom:113.553000px;}
.yc9{bottom:115.366950px;}
.y1c3{bottom:120.760800px;}
.y144{bottom:126.093600px;}
.yf5{bottom:126.553800px;}
.y4f{bottom:127.294800px;}
.ybf{bottom:127.981950px;}
.yfc{bottom:128.043300px;}
.y73{bottom:128.551500px;}
.yc8{bottom:130.365450px;}
.y2d{bottom:132.636900px;}
.y1c2{bottom:133.507050px;}
.y143{bottom:141.092100px;}
.yf4{bottom:141.552300px;}
.y4e{bottom:142.296300px;}
.ybe{bottom:142.980450px;}
.y72{bottom:143.550000px;}
.yb8{bottom:143.551500px;}
.y17d{bottom:143.554500px;}
.yc7{bottom:145.363950px;}
.y1c1{bottom:146.253300px;}
.y142{bottom:156.090600px;}
.yf3{bottom:156.550800px;}
.y4d{bottom:157.294800px;}
.ybd{bottom:157.978950px;}
.y71{bottom:158.550000px;}
.yb7{bottom:158.553000px;}
.y1c0{bottom:158.999550px;}
.y2c{bottom:170.187300px;}
.yf2{bottom:171.549300px;}
.y1bf{bottom:171.745800px;}
.y4c{bottom:172.293300px;}
.yb6{bottom:173.551500px;}
.y109{bottom:179.592450px;}
.y141{bottom:183.635550px;}
.y1be{bottom:184.492050px;}
.y2b{bottom:185.185800px;}
.yf1{bottom:186.547800px;}
.y4b{bottom:187.293300px;}
.y17c{bottom:188.551500px;}
.yb5{bottom:188.553000px;}
.y70{bottom:190.927650px;}
.y108{bottom:194.590950px;}
.y1bd{bottom:197.238300px;}
.y140{bottom:198.634050px;}
.y2a{bottom:200.196300px;}
.yf0{bottom:201.546300px;}
.y4a{bottom:202.293300px;}
.y17b{bottom:203.550000px;}
.yb4{bottom:203.551500px;}
.y6f{bottom:205.926150px;}
.y107{bottom:209.589450px;}
.y1bc{bottom:209.984550px;}
.y13f{bottom:213.632550px;}
.y29{bottom:215.194800px;}
.yef{bottom:216.544800px;}
.yb3{bottom:218.553000px;}
.y6e{bottom:220.924650px;}
.y1bb{bottom:222.730800px;}
.y106{bottom:224.587950px;}
.y13e{bottom:228.650550px;}
.y28{bottom:230.193300px;}
.y17a{bottom:231.093600px;}
.yee{bottom:231.544800px;}
.yb2{bottom:233.551500px;}
.y49{bottom:235.294800px;}
.y1ba{bottom:235.477050px;}
.y6d{bottom:235.923150px;}
.y105{bottom:239.586450px;}
.y13d{bottom:243.649050px;}
.y27{bottom:245.191800px;}
.y179{bottom:246.092100px;}
.yed{bottom:246.547800px;}
.y1b9{bottom:248.223300px;}
.yb1{bottom:248.560500px;}
.y48{bottom:250.294800px;}
.y6c{bottom:250.933650px;}
.y104{bottom:254.584950px;}
.y13c{bottom:258.647550px;}
.y26{bottom:260.190300px;}
.y1b8{bottom:260.969550px;}
.y178{bottom:261.097950px;}
.yec{bottom:261.546300px;}
.yb0{bottom:263.559000px;}
.y47{bottom:265.294800px;}
.y6b{bottom:265.932150px;}
.y103{bottom:269.583450px;}
.y13b{bottom:273.646050px;}
.y1b7{bottom:273.715800px;}
.y25{bottom:275.188800px;}
.y177{bottom:276.096450px;}
.yeb{bottom:276.544800px;}
.yaf{bottom:278.557500px;}
.y46{bottom:280.297800px;}
.y6a{bottom:280.930650px;}
.y102{bottom:284.581950px;}
.y1b6{bottom:286.462050px;}
.y13a{bottom:288.644550px;}
.y24{bottom:290.187300px;}
.y176{bottom:291.094950px;}
.yea{bottom:291.546300px;}
.yae{bottom:293.556000px;}
.y45{bottom:295.296300px;}
.y69{bottom:295.929150px;}
.y1b5{bottom:299.208300px;}
.y101{bottom:299.580450px;}
.y139{bottom:303.643050px;}
.y23{bottom:305.185800px;}
.y175{bottom:306.093450px;}
.ye9{bottom:306.544800px;}
.yad{bottom:308.554500px;}
.y44{bottom:310.294800px;}
.y68{bottom:310.927650px;}
.y1b4{bottom:311.954550px;}
.y100{bottom:314.578950px;}
.y138{bottom:318.641550px;}
.y22{bottom:320.185800px;}
.y174{bottom:321.091950px;}
.ye8{bottom:321.544800px;}
.yac{bottom:323.553000px;}
.y1b3{bottom:324.700800px;}
.y43{bottom:325.294800px;}
.y67{bottom:325.926150px;}
.y137{bottom:333.640050px;}
.y21{bottom:335.185800px;}
.y173{bottom:336.096450px;}
.ye7{bottom:336.549300px;}
.y1b2{bottom:337.447050px;}
.yab{bottom:338.551500px;}
.y1fb{bottom:339.549300px;}
.y42{bottom:340.294800px;}
.y66{bottom:340.924650px;}
.y136{bottom:348.638550px;}
.y20{bottom:350.188800px;}
.y1b1{bottom:350.193300px;}
.y172{bottom:351.094950px;}
.ye6{bottom:351.547800px;}
.yaa{bottom:353.550000px;}
.y1fa{bottom:354.547800px;}
.y41{bottom:355.296300px;}
.y65{bottom:355.923150px;}
.y1b0{bottom:362.939550px;}
.y135{bottom:363.637050px;}
.y1f{bottom:365.187300px;}
.y171{bottom:366.093450px;}
.ye5{bottom:366.546300px;}
.ya9{bottom:368.550000px;}
.y1f9{bottom:369.546300px;}
.y40{bottom:370.294800px;}
.y64{bottom:370.924650px;}
.y1af{bottom:375.685800px;}
.y134{bottom:378.635550px;}
.y1e{bottom:380.185800px;}
.y170{bottom:381.091950px;}
.ye4{bottom:381.544800px;}
.y1f8{bottom:384.544800px;}
.y3e{bottom:385.296300px;}
.y63{bottom:385.923150px;}
.y1ae{bottom:388.432050px;}
.y3f{bottom:389.883300px;}
.y133{bottom:393.634050px;}
.y1d{bottom:395.185800px;}
.y16f{bottom:396.090450px;}
.ye3{bottom:396.544800px;}
.ya8{bottom:398.624250px;}
.y1f7{bottom:399.543300px;}
.y3d{bottom:400.294800px;}
.y62{bottom:400.923150px;}
.y1ad{bottom:401.178300px;}
.y132{bottom:408.632550px;}
.y1c{bottom:410.185800px;}
.ye2{bottom:411.547800px;}
.ya7{bottom:413.622750px;}
.y1ac{bottom:413.924550px;}
.y3c{bottom:415.300800px;}
.y61{bottom:415.921650px;}
.y1f6{bottom:421.297800px;}
.y16e{bottom:423.637050px;}
.y131{bottom:423.643050px;}
.y1b{bottom:425.232300px;}
.ye1{bottom:426.546300px;}
.y1ab{bottom:426.670800px;}
.ya6{bottom:428.621250px;}
.y3b{bottom:430.299300px;}
.y1f5{bottom:436.296300px;}
.y16d{bottom:438.635550px;}
.y130{bottom:438.641550px;}
.y1aa{bottom:439.417050px;}
.y1a{bottom:440.230800px;}
.ye0{bottom:441.544800px;}
.ya5{bottom:443.619750px;}
.y3a{bottom:445.297800px;}
.y60{bottom:448.303800px;}
.y1a9{bottom:452.163300px;}
.y16c{bottom:453.634050px;}
.y12f{bottom:453.640050px;}
.y19{bottom:455.229300px;}
.ydf{bottom:456.544800px;}
.y1f4{bottom:458.044800px;}
.ya4{bottom:458.618250px;}
.y39{bottom:460.296300px;}
.y5f{bottom:463.302300px;}
.y1a8{bottom:464.909550px;}
.y16b{bottom:468.632550px;}
.y12e{bottom:468.638550px;}
.y18{bottom:470.227800px;}
.ydd{bottom:471.547800px;}
.ya3{bottom:473.616750px;}
.y38{bottom:475.294800px;}
.yde{bottom:476.133300px;}
.y1a7{bottom:477.655800px;}
.y5e{bottom:478.300800px;}
.y1f3{bottom:479.793300px;}
.y12d{bottom:483.637050px;}
.y16a{bottom:483.655050px;}
.y17{bottom:485.226300px;}
.ydc{bottom:486.546300px;}
.ya2{bottom:488.615250px;}
.y37{bottom:490.293300px;}
.y1a6{bottom:490.402050px;}
.y5d{bottom:493.299300px;}
.y1f2{bottom:494.793300px;}
.y12c{bottom:498.635550px;}
.y169{bottom:498.653550px;}
.ydb{bottom:501.544800px;}
.y1a5{bottom:503.148300px;}
.ya1{bottom:503.613750px;}
.y5c{bottom:508.297800px;}
.y12b{bottom:513.634050px;}
.y168{bottom:513.652050px;}
.y1a4{bottom:515.894550px;}
.yda{bottom:516.546300px;}
.ya0{bottom:518.612250px;}
.y1f1{bottom:521.797800px;}
.y5b{bottom:523.296300px;}
.y12a{bottom:528.632550px;}
.y1a3{bottom:528.640800px;}
.y167{bottom:528.650550px;}
.yd9{bottom:531.544800px;}
.y16{bottom:532.476300px;}
.y9f{bottom:533.613750px;}
.y1f0{bottom:536.796300px;}
.y5a{bottom:538.294800px;}
.y1a2{bottom:541.387050px;}
.y58{bottom:543.426450px;}
.y129{bottom:543.631050px;}
.y166{bottom:543.649050px;}
.yd8{bottom:546.544800px;}
.y9e{bottom:548.612250px;}
.y15{bottom:548.973300px;}
.y1ef{bottom:551.794800px;}
.y59{bottom:553.293300px;}
.y1a1{bottom:554.133300px;}
.y57{bottom:558.424950px;}
.y165{bottom:558.647550px;}
.yd7{bottom:561.549300px;}
.y9d{bottom:563.613750px;}
.y14{bottom:565.470300px;}
.y1ee{bottom:566.793300px;}
.y1a0{bottom:566.879550px;}
.y128{bottom:571.174650px;}
.y56{bottom:573.423450px;}
.y164{bottom:573.646050px;}
.yd6{bottom:576.547800px;}
.y9c{bottom:578.612250px;}
.y19f{bottom:579.625800px;}
.y1ed{bottom:581.793300px;}
.y13{bottom:581.967300px;}
.y127{bottom:586.173150px;}
.y55{bottom:588.421950px;}
.y163{bottom:588.644550px;}
.yd5{bottom:591.546300px;}
.y19e{bottom:592.372050px;}
.y9b{bottom:593.610750px;}
.y12{bottom:598.464300px;}
.y126{bottom:601.176150px;}
.y54{bottom:603.420450px;}
.y162{bottom:603.643050px;}
.y19d{bottom:605.118300px;}
.yd4{bottom:606.544800px;}
.y7b{bottom:608.343450px;}
.y1ec{bottom:608.797800px;}
.y11{bottom:614.961300px;}
.y125{bottom:616.174650px;}
.y19c{bottom:617.864550px;}
.y53{bottom:618.418950px;}
.y161{bottom:618.641550px;}
.yd3{bottom:621.552300px;}
.y7a{bottom:623.341950px;}
.y9a{bottom:623.682150px;}
.y1eb{bottom:623.796300px;}
.y19b{bottom:630.610800px;}
.y124{bottom:631.173150px;}
.y10{bottom:631.458300px;}
.y160{bottom:633.640050px;}
.yd2{bottom:636.550800px;}
.y79{bottom:638.340450px;}
.y99{bottom:638.680650px;}
.y1ea{bottom:638.794800px;}
.y19a{bottom:643.357050px;}
.y123{bottom:646.171650px;}
.yf{bottom:647.955300px;}
.y15f{bottom:648.638550px;}
.yd1{bottom:651.549300px;}
.y78{bottom:653.338950px;}
.y98{bottom:653.679150px;}
.y1e9{bottom:653.793300px;}
.y199{bottom:656.103300px;}
.y15e{bottom:663.637050px;}
.ye{bottom:664.452300px;}
.yd0{bottom:666.547800px;}
.y97{bottom:668.677650px;}
.y1e8{bottom:668.793300px;}
.y198{bottom:668.849550px;}
.y122{bottom:673.713600px;}
.y15d{bottom:678.635550px;}
.yd{bottom:680.949300px;}
.ycf{bottom:681.546300px;}
.y197{bottom:681.595800px;}
.y96{bottom:683.676150px;}
.y121{bottom:688.712100px;}
.y15c{bottom:693.634050px;}
.y196{bottom:694.342050px;}
.y1e7{bottom:695.909550px;}
.yce{bottom:696.544800px;}
.yc{bottom:697.446300px;}
.y95{bottom:698.674650px;}
.y195{bottom:707.088300px;}
.y15b{bottom:708.632550px;}
.y1e6{bottom:708.655800px;}
.ycd{bottom:711.544800px;}
.y94{bottom:713.673150px;}
.yb{bottom:713.943300px;}
.y120{bottom:716.254200px;}
.y194{bottom:719.834550px;}
.y1e5{bottom:721.402050px;}
.y15a{bottom:723.632550px;}
.ycc{bottom:726.543300px;}
.y93{bottom:728.673150px;}
.ya{bottom:730.440300px;}
.y11f{bottom:731.252700px;}
.y193{bottom:732.580800px;}
.y1e4{bottom:734.148300px;}
.y159{bottom:738.631050px;}
.y92{bottom:743.671650px;}
.y192{bottom:745.327050px;}
.y11e{bottom:746.252700px;}
.y1e3{bottom:746.894550px;}
.y9{bottom:746.937300px;}
.y34{bottom:757.050000px;}
.y191{bottom:758.073300px;}
.y1e2{bottom:759.640800px;}
.y8{bottom:763.434300px;}
.y158{bottom:766.176150px;}
.yc6{bottom:768.597150px;}
.y190{bottom:770.819550px;}
.y1e1{bottom:772.387050px;}
.y91{bottom:773.735550px;}
.y11d{bottom:773.812800px;}
.yfb{bottom:777.061950px;}
.y33{bottom:778.050000px;}
.y157{bottom:781.174650px;}
.y18f{bottom:783.565800px;}
.yc5{bottom:783.595650px;}
.y1e0{bottom:785.133300px;}
.y90{bottom:788.734050px;}
.y11c{bottom:788.811300px;}
.yfa{bottom:792.060450px;}
.y7{bottom:793.434300px;}
.y156{bottom:796.173150px;}
.y18e{bottom:796.312050px;}
.y1df{bottom:797.879550px;}
.yc4{bottom:798.594150px;}
.y32{bottom:799.050000px;}
.y8e{bottom:803.741550px;}
.y11b{bottom:803.809800px;}
.yf9{bottom:807.058950px;}
.y8f{bottom:808.322550px;}
.y18d{bottom:809.058300px;}
.y1de{bottom:810.625800px;}
.y155{bottom:811.173150px;}
.yc3{bottom:813.592650px;}
.y8d{bottom:818.740050px;}
.y11a{bottom:818.808300px;}
.y18c{bottom:821.804550px;}
.y1dd{bottom:823.372050px;}
.y154{bottom:826.171650px;}
.y6{bottom:826.422300px;}
.y8c{bottom:833.738550px;}
.y119{bottom:833.806800px;}
.y18b{bottom:834.550800px;}
.y1dc{bottom:836.118300px;}
.y18a{bottom:847.297050px;}
.y8b{bottom:848.737050px;}
.y118{bottom:848.805300px;}
.y1db{bottom:848.864550px;}
.y153{bottom:853.713750px;}
.y189{bottom:860.043300px;}
.y1da{bottom:861.610800px;}
.y8a{bottom:863.735550px;}
.y117{bottom:863.803800px;}
.y152{bottom:868.713750px;}
.y5{bottom:871.428300px;}
.y188{bottom:872.793300px;}
.y1d9{bottom:874.357050px;}
.y89{bottom:878.734050px;}
.y116{bottom:878.802300px;}
.y151{bottom:883.713750px;}
.y1d8{bottom:887.103300px;}
.y88{bottom:893.737050px;}
.y115{bottom:893.800800px;}
.y150{bottom:898.712250px;}
.y1d7{bottom:899.849550px;}
.y187{bottom:905.806800px;}
.y87{bottom:908.735550px;}
.y114{bottom:908.799300px;}
.y1d6{bottom:912.595800px;}
.y4{bottom:916.434300px;}
.y186{bottom:920.805300px;}
.y86{bottom:923.734050px;}
.y113{bottom:923.797800px;}
.y1d5{bottom:925.342050px;}
.y14f{bottom:926.255700px;}
.y35{bottom:926.409600px;}
.y185{bottom:935.803800px;}
.y1d4{bottom:938.088300px;}
.y85{bottom:938.743050px;}
.y112{bottom:938.796300px;}
.y14e{bottom:941.254200px;}
.y184{bottom:950.802300px;}
.y1d3{bottom:950.834550px;}
.y84{bottom:953.741550px;}
.y111{bottom:953.794800px;}
.y14d{bottom:956.252700px;}
.y1d2{bottom:963.580800px;}
.y183{bottom:965.800800px;}
.y83{bottom:968.740050px;}
.y110{bottom:968.802300px;}
.y1d1{bottom:976.327050px;}
.y182{bottom:980.799300px;}
.y82{bottom:983.738550px;}
.y10f{bottom:983.800800px;}
.y14c{bottom:983.803800px;}
.y1d0{bottom:989.073300px;}
.y181{bottom:995.797800px;}
.y81{bottom:998.737050px;}
.y10e{bottom:998.799300px;}
.y14b{bottom:998.802300px;}
.y1cf{bottom:1001.819550px;}
.y180{bottom:1010.796300px;}
.y80{bottom:1013.735550px;}
.y10d{bottom:1013.797800px;}
.y14a{bottom:1013.800800px;}
.y1ce{bottom:1014.565800px;}
.y17f{bottom:1025.794800px;}
.y1cd{bottom:1027.312050px;}
.y7f{bottom:1028.734050px;}
.y10c{bottom:1028.796300px;}
.y149{bottom:1028.799300px;}
.y1cc{bottom:1040.058300px;}
.y17e{bottom:1040.793300px;}
.y7e{bottom:1043.732550px;}
.y10b{bottom:1043.794800px;}
.y148{bottom:1043.797800px;}
.y1cb{bottom:1052.804550px;}
.y10a{bottom:1058.794800px;}
.y147{bottom:1058.796300px;}
.y1ca{bottom:1065.550800px;}
.y7d{bottom:1073.794800px;}
.y1c9{bottom:1078.297050px;}
.y7c{bottom:1088.793300px;}
.y1c8{bottom:1091.043300px;}
.y36{bottom:1139.853000px;}
.y3{bottom:1140.126900px;}
.hf{height:23.842749px;}
.h14{height:25.131600px;}
.h24{height:32.220000px;}
.h25{height:33.255000px;}
.h3{height:34.523438px;}
.h11{height:36.681152px;}
.h8{height:38.664000px;}
.h7{height:38.838867px;}
.h9{height:39.906000px;}
.h10{height:41.158749px;}
.h2{height:43.154297px;}
.ha{height:43.299600px;}
.h21{height:43.395600px;}
.h1f{height:43.413600px;}
.h1e{height:43.431600px;}
.hd{height:43.443600px;}
.h19{height:43.449000px;}
.h18{height:43.449600px;}
.h1b{height:43.455600px;}
.h13{height:43.461600px;}
.h22{height:43.462200px;}
.h1d{height:43.467600px;}
.h23{height:43.473000px;}
.hc{height:43.473600px;}
.h1a{height:43.479000px;}
.he{height:43.479600px;}
.h17{height:43.485000px;}
.hb{height:43.485600px;}
.h20{height:43.491600px;}
.h4{height:44.233154px;}
.h1c{height:44.274900px;}
.h15{height:44.292900px;}
.h16{height:47.469727px;}
.h6{height:48.450893px;}
.h12{height:77.677734px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:61.191450px;}
.x6{left:67.742100px;}
.x8{left:93.974100px;}
.x7{left:95.786100px;}
.x9{left:140.952750px;}
.x4{left:233.456400px;}
.xf{left:238.992150px;}
.x5{left:251.459550px;}
.xd{left:279.103200px;}
.x10{left:300.348900px;}
.xc{left:412.144500px;}
.x3{left:584.586600px;}
.xa{left:641.630700px;}
.xe{left:816.003600px;}
.xb{left:824.207400px;}
.x1{left:825.232800px;}
@media print{
.v4{vertical-align:-16.320000pt;}
.v3{vertical-align:-15.413333pt;}
.v6{vertical-align:-10.666667pt;}
.v5{vertical-align:-9.605867pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.149333pt;}
.v1{vertical-align:18.133867pt;}
.ls74{letter-spacing:-2.720000pt;}
.ls67{letter-spacing:-1.920000pt;}
.ls85{letter-spacing:-1.560000pt;}
.ls2e{letter-spacing:-1.344000pt;}
.ls61{letter-spacing:-1.173333pt;}
.ls30{letter-spacing:-1.152000pt;}
.ls62{letter-spacing:-1.056000pt;}
.ls1f{letter-spacing:-0.912000pt;}
.ls2f{letter-spacing:-0.864000pt;}
.ls87{letter-spacing:-0.840000pt;}
.ls3a{letter-spacing:-0.768000pt;}
.ls3b{letter-spacing:-0.746667pt;}
.ls1e{letter-spacing:-0.720000pt;}
.ls84{letter-spacing:-0.680000pt;}
.ls63{letter-spacing:-0.672000pt;}
.ls1d{letter-spacing:-0.624000pt;}
.ls7b{letter-spacing:-0.600000pt;}
.ls32{letter-spacing:-0.576000pt;}
.ls4b{letter-spacing:-0.528000pt;}
.ls76{letter-spacing:-0.520000pt;}
.ls46{letter-spacing:-0.480000pt;}
.ls64{letter-spacing:-0.436800pt;}
.ls20{letter-spacing:-0.432000pt;}
.ls86{letter-spacing:-0.400000pt;}
.ls48{letter-spacing:-0.384000pt;}
.ls7a{letter-spacing:-0.360000pt;}
.ls5d{letter-spacing:-0.288000pt;}
.ls31{letter-spacing:-0.280800pt;}
.ls7c{letter-spacing:-0.280000pt;}
.ls65{letter-spacing:-0.240000pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls77{letter-spacing:-0.160000pt;}
.ls52{letter-spacing:-0.156000pt;}
.ls14{letter-spacing:-0.144000pt;}
.ls21{letter-spacing:-0.124800pt;}
.ls75{letter-spacing:-0.120000pt;}
.lsf{letter-spacing:-0.096000pt;}
.ls60{letter-spacing:-0.093600pt;}
.ls78{letter-spacing:-0.080000pt;}
.ls3d{letter-spacing:-0.062400pt;}
.ls15{letter-spacing:-0.048000pt;}
.ls79{letter-spacing:-0.040000pt;}
.ls39{letter-spacing:-0.031200pt;}
.lsd{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.020267pt;}
.ls3{letter-spacing:0.028267pt;}
.ls4{letter-spacing:0.028800pt;}
.ls1a{letter-spacing:0.031200pt;}
.ls5b{letter-spacing:0.039467pt;}
.ls71{letter-spacing:0.040000pt;}
.ls19{letter-spacing:0.048000pt;}
.ls57{letter-spacing:0.051733pt;}
.ls4d{letter-spacing:0.053333pt;}
.ls56{letter-spacing:0.062400pt;}
.ls6c{letter-spacing:0.080000pt;}
.ls1c{letter-spacing:0.093600pt;}
.ls26{letter-spacing:0.096000pt;}
.ls80{letter-spacing:0.104000pt;}
.ls2b{letter-spacing:0.106667pt;}
.ls6a{letter-spacing:0.120000pt;}
.ls37{letter-spacing:0.124800pt;}
.ls35{letter-spacing:0.131733pt;}
.ls4c{letter-spacing:0.137067pt;}
.ls8{letter-spacing:0.143867pt;}
.ls17{letter-spacing:0.144000pt;}
.ls45{letter-spacing:0.156000pt;}
.ls33{letter-spacing:0.160000pt;}
.ls3c{letter-spacing:0.187200pt;}
.ls10{letter-spacing:0.192000pt;}
.ls70{letter-spacing:0.200000pt;}
.ls49{letter-spacing:0.218400pt;}
.ls9{letter-spacing:0.226667pt;}
.ls27{letter-spacing:0.240000pt;}
.lsb{letter-spacing:0.249467pt;}
.ls43{letter-spacing:0.249600pt;}
.ls58{letter-spacing:0.266667pt;}
.ls4e{letter-spacing:0.273600pt;}
.ls6{letter-spacing:0.276267pt;}
.ls41{letter-spacing:0.280800pt;}
.ls16{letter-spacing:0.288000pt;}
.ls38{letter-spacing:0.293867pt;}
.ls5f{letter-spacing:0.312000pt;}
.ls59{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.321600pt;}
.ls24{letter-spacing:0.336000pt;}
.ls3f{letter-spacing:0.343200pt;}
.ls23{letter-spacing:0.373333pt;}
.ls29{letter-spacing:0.378667pt;}
.ls11{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.408000pt;}
.ls7{letter-spacing:0.432000pt;}
.ls81{letter-spacing:0.440000pt;}
.ls6f{letter-spacing:0.448000pt;}
.ls55{letter-spacing:0.458667pt;}
.ls25{letter-spacing:0.480000pt;}
.ls40{letter-spacing:0.499200pt;}
.ls69{letter-spacing:0.520000pt;}
.ls2c{letter-spacing:0.528000pt;}
.ls6e{letter-spacing:0.560000pt;}
.lse{letter-spacing:0.576000pt;}
.ls2a{letter-spacing:0.586667pt;}
.ls44{letter-spacing:0.590400pt;}
.ls51{letter-spacing:0.592800pt;}
.ls42{letter-spacing:0.614400pt;}
.ls2d{letter-spacing:0.624000pt;}
.ls28{letter-spacing:0.640000pt;}
.ls34{letter-spacing:0.672000pt;}
.ls6d{letter-spacing:0.680000pt;}
.ls50{letter-spacing:0.693333pt;}
.ls4a{letter-spacing:0.720000pt;}
.ls6b{letter-spacing:0.760000pt;}
.ls47{letter-spacing:0.768000pt;}
.ls54{letter-spacing:0.800000pt;}
.ls5e{letter-spacing:0.816000pt;}
.ls72{letter-spacing:0.840000pt;}
.lsc{letter-spacing:0.853333pt;}
.ls3e{letter-spacing:0.864000pt;}
.ls13{letter-spacing:0.912000pt;}
.ls68{letter-spacing:0.960000pt;}
.ls7e{letter-spacing:0.980000pt;}
.ls83{letter-spacing:1.000000pt;}
.ls7f{letter-spacing:1.040000pt;}
.ls36{letter-spacing:1.104000pt;}
.ls22{letter-spacing:1.120000pt;}
.ls73{letter-spacing:1.152000pt;}
.ls5a{letter-spacing:1.333333pt;}
.ls66{letter-spacing:1.344000pt;}
.ls4f{letter-spacing:1.386667pt;}
.ls53{letter-spacing:1.392000pt;}
.ls82{letter-spacing:1.488000pt;}
.ls7d{letter-spacing:2.220000pt;}
.ls0{letter-spacing:2.304000pt;}
.ls18{letter-spacing:2.400000pt;}
.ls1{letter-spacing:2.460000pt;}
.ls5c{letter-spacing:5.440000pt;}
.ls1b{letter-spacing:13.104000pt;}
.ws2{word-spacing:-13.393333pt;}
.ws1c{word-spacing:-12.085333pt;}
.ws2a{word-spacing:-11.568000pt;}
.ws2b{word-spacing:-11.424000pt;}
.ws72{word-spacing:-11.376000pt;}
.ws71{word-spacing:-11.328000pt;}
.ws61{word-spacing:-11.184000pt;}
.ws64{word-spacing:-11.136000pt;}
.ws58{word-spacing:-10.992000pt;}
.ws3{word-spacing:-10.986667pt;}
.ws1d{word-spacing:-10.896000pt;}
.ws59{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws2c{word-spacing:-10.704000pt;}
.ws69{word-spacing:-10.656000pt;}
.ws3e{word-spacing:-10.320000pt;}
.ws67{word-spacing:-10.224000pt;}
.ws70{word-spacing:-10.176000pt;}
.ws83{word-spacing:-9.320000pt;}
.ws82{word-spacing:-9.160000pt;}
.ws9f{word-spacing:-9.120000pt;}
.ws84{word-spacing:-9.080000pt;}
.ws86{word-spacing:-9.000000pt;}
.ws85{word-spacing:-8.800000pt;}
.wsa0{word-spacing:-8.680000pt;}
.wsa9{word-spacing:-8.600000pt;}
.ws62{word-spacing:-7.675200pt;}
.ws55{word-spacing:-7.581600pt;}
.ws40{word-spacing:-7.425600pt;}
.ws6d{word-spacing:-7.394400pt;}
.ws56{word-spacing:-7.363200pt;}
.ws57{word-spacing:-7.332000pt;}
.ws5a{word-spacing:-7.300800pt;}
.ws3c{word-spacing:-7.269600pt;}
.ws54{word-spacing:-7.238400pt;}
.ws3f{word-spacing:-7.207200pt;}
.ws19{word-spacing:-7.176000pt;}
.ws6c{word-spacing:-7.144800pt;}
.ws18{word-spacing:-7.113600pt;}
.ws4{word-spacing:-7.082400pt;}
.ws3b{word-spacing:-7.051200pt;}
.ws3d{word-spacing:-7.020000pt;}
.ws6e{word-spacing:-6.988800pt;}
.ws1b{word-spacing:-6.957600pt;}
.ws63{word-spacing:-6.926400pt;}
.ws29{word-spacing:-6.801600pt;}
.ws6f{word-spacing:-6.645600pt;}
.ws5{word-spacing:-5.893333pt;}
.ws73{word-spacing:-5.440000pt;}
.ws4c{word-spacing:-4.896000pt;}
.wsaa{word-spacing:-3.520000pt;}
.ws7{word-spacing:-2.912000pt;}
.ws17{word-spacing:-2.453333pt;}
.ws60{word-spacing:-2.400000pt;}
.ws1{word-spacing:-2.346667pt;}
.ws32{word-spacing:-2.208000pt;}
.ws9{word-spacing:-2.133333pt;}
.ws34{word-spacing:-1.776000pt;}
.ws49{word-spacing:-1.680000pt;}
.wsc{word-spacing:-1.632000pt;}
.ws22{word-spacing:-1.584000pt;}
.ws35{word-spacing:-1.536000pt;}
.ws7c{word-spacing:-1.488000pt;}
.ws5f{word-spacing:-1.440000pt;}
.ws98{word-spacing:-1.400000pt;}
.ws2d{word-spacing:-1.392000pt;}
.ws8f{word-spacing:-1.360000pt;}
.ws33{word-spacing:-1.344000pt;}
.ws7f{word-spacing:-1.333333pt;}
.ws90{word-spacing:-1.280000pt;}
.ws14{word-spacing:-1.248000pt;}
.ws65{word-spacing:-1.232000pt;}
.ws44{word-spacing:-1.200000pt;}
.wsa6{word-spacing:-1.160000pt;}
.ws2f{word-spacing:-1.152000pt;}
.ws8{word-spacing:-1.120000pt;}
.ws10{word-spacing:-1.104000pt;}
.ws97{word-spacing:-1.080000pt;}
.ws28{word-spacing:-1.056000pt;}
.wsa{word-spacing:-1.008000pt;}
.wsa1{word-spacing:-1.000000pt;}
.ws4e{word-spacing:-0.960000pt;}
.ws8a{word-spacing:-0.920000pt;}
.ws1f{word-spacing:-0.912000pt;}
.ws26{word-spacing:-0.864000pt;}
.ws9b{word-spacing:-0.840000pt;}
.ws99{word-spacing:-0.800000pt;}
.ws36{word-spacing:-0.768000pt;}
.ws52{word-spacing:-0.720000pt;}
.ws66{word-spacing:-0.693333pt;}
.ws91{word-spacing:-0.680000pt;}
.ws20{word-spacing:-0.672000pt;}
.ws30{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.624000pt;}
.ws68{word-spacing:-0.586667pt;}
.wsd{word-spacing:-0.576000pt;}
.ws42{word-spacing:-0.533333pt;}
.ws12{word-spacing:-0.528000pt;}
.ws9c{word-spacing:-0.520000pt;}
.ws5c{word-spacing:-0.480000pt;}
.ws8b{word-spacing:-0.440000pt;}
.ws13{word-spacing:-0.432000pt;}
.ws16{word-spacing:-0.408000pt;}
.ws92{word-spacing:-0.400000pt;}
.ws41{word-spacing:-0.384000pt;}
.ws24{word-spacing:-0.373333pt;}
.ws25{word-spacing:-0.336000pt;}
.wsa8{word-spacing:-0.320000pt;}
.ws4b{word-spacing:-0.288000pt;}
.ws79{word-spacing:-0.266667pt;}
.ws38{word-spacing:-0.240000pt;}
.ws15{word-spacing:-0.226667pt;}
.ws7d{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws45{word-spacing:-0.160000pt;}
.ws47{word-spacing:-0.144000pt;}
.ws3a{word-spacing:-0.106667pt;}
.ws23{word-spacing:-0.096000pt;}
.wsf{word-spacing:-0.048000pt;}
.ws1a{word-spacing:-0.031200pt;}
.ws6{word-spacing:0.000000pt;}
.ws21{word-spacing:0.048000pt;}
.ws96{word-spacing:0.080000pt;}
.ws50{word-spacing:0.096000pt;}
.ws9a{word-spacing:0.120000pt;}
.ws27{word-spacing:0.144000pt;}
.ws95{word-spacing:0.160000pt;}
.ws1e{word-spacing:0.192000pt;}
.ws2e{word-spacing:0.240000pt;}
.wsa5{word-spacing:0.280000pt;}
.ws51{word-spacing:0.288000pt;}
.ws46{word-spacing:0.336000pt;}
.ws39{word-spacing:0.373333pt;}
.wsb{word-spacing:0.384000pt;}
.ws89{word-spacing:0.440000pt;}
.ws5e{word-spacing:0.480000pt;}
.ws31{word-spacing:0.528000pt;}
.ws93{word-spacing:0.560000pt;}
.ws43{word-spacing:0.576000pt;}
.ws4a{word-spacing:0.624000pt;}
.ws78{word-spacing:0.640000pt;}
.ws5d{word-spacing:0.672000pt;}
.wsa4{word-spacing:0.680000pt;}
.ws48{word-spacing:0.746667pt;}
.ws5b{word-spacing:0.768000pt;}
.ws8e{word-spacing:0.840000pt;}
.ws77{word-spacing:0.864000pt;}
.ws76{word-spacing:0.906667pt;}
.ws75{word-spacing:0.912000pt;}
.wsa7{word-spacing:0.920000pt;}
.ws8c{word-spacing:0.960000pt;}
.ws7b{word-spacing:1.056000pt;}
.ws4f{word-spacing:1.104000pt;}
.ws9d{word-spacing:1.120000pt;}
.ws9e{word-spacing:1.160000pt;}
.ws7a{word-spacing:1.173333pt;}
.ws11{word-spacing:1.200000pt;}
.ws7e{word-spacing:1.248000pt;}
.ws74{word-spacing:1.296000pt;}
.ws87{word-spacing:1.333333pt;}
.ws81{word-spacing:1.440000pt;}
.ws94{word-spacing:1.480000pt;}
.wsa2{word-spacing:1.520000pt;}
.wsa3{word-spacing:1.640000pt;}
.ws4d{word-spacing:1.680000pt;}
.ws88{word-spacing:1.728000pt;}
.ws80{word-spacing:2.208000pt;}
.ws6b{word-spacing:2.304000pt;}
.ws6a{word-spacing:2.346667pt;}
.wsab{word-spacing:2.688000pt;}
.ws8d{word-spacing:2.720000pt;}
.ws53{word-spacing:13.104000pt;}
._f{margin-left:-12.158933pt;}
._5{margin-left:-11.174933pt;}
._a{margin-left:-9.415467pt;}
._12{margin-left:-8.444800pt;}
._9{margin-left:-7.398400pt;}
._1{margin-left:-6.087467pt;}
._4{margin-left:-4.555733pt;}
._2{margin-left:-3.033600pt;}
._0{margin-left:-1.578667pt;}
._3{width:1.043200pt;}
._6{width:2.016533pt;}
._7{width:3.162133pt;}
._e{width:4.127467pt;}
._c{width:5.422933pt;}
._d{width:6.590933pt;}
._13{width:8.683467pt;}
._b{width:10.074133pt;}
._11{width:39.863467pt;}
._10{width:42.097067pt;}
._8{width:43.008000pt;}
.fs7{font-size:29.466667pt;}
.fs6{font-size:31.200000pt;}
.fs4{font-size:34.666667pt;}
.fsb{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:54.666667pt;}
.fsa{font-size:58.666667pt;}
.fs9{font-size:96.000000pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:24.175867pt;}
.y2{bottom:24.225600pt;}
.y31{bottom:60.723467pt;}
.y77{bottom:60.934667pt;}
.ybc{bottom:60.936000pt;}
.y1c7{bottom:62.022933pt;}
.yf8{bottom:72.496267pt;}
.y52{bottom:73.152267pt;}
.y1c6{bottom:73.352933pt;}
.yc2{bottom:73.765733pt;}
.yff{bottom:73.820267pt;}
.y30{bottom:74.051467pt;}
.y146{bottom:74.266667pt;}
.ybb{bottom:74.268000pt;}
.y76{bottom:74.269333pt;}
.ycb{bottom:75.884400pt;}
.y1c5{bottom:84.682933pt;}
.yf7{bottom:85.828267pt;}
.y51{bottom:86.484267pt;}
.yc1{bottom:87.097733pt;}
.yfe{bottom:87.152267pt;}
.y2f{bottom:87.384800pt;}
.y75{bottom:87.601333pt;}
.yba{bottom:87.604000pt;}
.yca{bottom:89.216400pt;}
.y1c4{bottom:96.012933pt;}
.y145{bottom:98.751200pt;}
.yf6{bottom:99.160267pt;}
.y50{bottom:99.818933pt;}
.yc0{bottom:100.429733pt;}
.yfd{bottom:100.484267pt;}
.y2e{bottom:100.718133pt;}
.y74{bottom:100.934667pt;}
.yb9{bottom:100.936000pt;}
.yc9{bottom:102.548400pt;}
.y1c3{bottom:107.342933pt;}
.y144{bottom:112.083200pt;}
.yf5{bottom:112.492267pt;}
.y4f{bottom:113.150933pt;}
.ybf{bottom:113.761733pt;}
.yfc{bottom:113.816267pt;}
.y73{bottom:114.268000pt;}
.yc8{bottom:115.880400pt;}
.y2d{bottom:117.899467pt;}
.y1c2{bottom:118.672933pt;}
.y143{bottom:125.415200pt;}
.yf4{bottom:125.824267pt;}
.y4e{bottom:126.485600pt;}
.ybe{bottom:127.093733pt;}
.y72{bottom:127.600000pt;}
.yb8{bottom:127.601333pt;}
.y17d{bottom:127.604000pt;}
.yc7{bottom:129.212400pt;}
.y1c1{bottom:130.002933pt;}
.y142{bottom:138.747200pt;}
.yf3{bottom:139.156267pt;}
.y4d{bottom:139.817600pt;}
.ybd{bottom:140.425733pt;}
.y71{bottom:140.933333pt;}
.yb7{bottom:140.936000pt;}
.y1c0{bottom:141.332933pt;}
.y2c{bottom:151.277600pt;}
.yf2{bottom:152.488267pt;}
.y1bf{bottom:152.662933pt;}
.y4c{bottom:153.149600pt;}
.yb6{bottom:154.268000pt;}
.y109{bottom:159.637733pt;}
.y141{bottom:163.231600pt;}
.y1be{bottom:163.992933pt;}
.y2b{bottom:164.609600pt;}
.yf1{bottom:165.820267pt;}
.y4b{bottom:166.482933pt;}
.y17c{bottom:167.601333pt;}
.yb5{bottom:167.602667pt;}
.y70{bottom:169.713467pt;}
.y108{bottom:172.969733pt;}
.y1bd{bottom:175.322933pt;}
.y140{bottom:176.563600pt;}
.y2a{bottom:177.952267pt;}
.yf0{bottom:179.152267pt;}
.y4a{bottom:179.816267pt;}
.y17b{bottom:180.933333pt;}
.yb4{bottom:180.934667pt;}
.y6f{bottom:183.045467pt;}
.y107{bottom:186.301733pt;}
.y1bc{bottom:186.652933pt;}
.y13f{bottom:189.895600pt;}
.y29{bottom:191.284267pt;}
.yef{bottom:192.484267pt;}
.yb3{bottom:194.269333pt;}
.y6e{bottom:196.377467pt;}
.y1bb{bottom:197.982933pt;}
.y106{bottom:199.633733pt;}
.y13e{bottom:203.244933pt;}
.y28{bottom:204.616267pt;}
.y17a{bottom:205.416533pt;}
.yee{bottom:205.817600pt;}
.yb2{bottom:207.601333pt;}
.y49{bottom:209.150933pt;}
.y1ba{bottom:209.312933pt;}
.y6d{bottom:209.709467pt;}
.y105{bottom:212.965733pt;}
.y13d{bottom:216.576933pt;}
.y27{bottom:217.948267pt;}
.y179{bottom:218.748533pt;}
.yed{bottom:219.153600pt;}
.y1b9{bottom:220.642933pt;}
.yb1{bottom:220.942667pt;}
.y48{bottom:222.484267pt;}
.y6c{bottom:223.052133pt;}
.y104{bottom:226.297733pt;}
.y13c{bottom:229.908933pt;}
.y26{bottom:231.280267pt;}
.y1b8{bottom:231.972933pt;}
.y178{bottom:232.087067pt;}
.yec{bottom:232.485600pt;}
.yb0{bottom:234.274667pt;}
.y47{bottom:235.817600pt;}
.y6b{bottom:236.384133pt;}
.y103{bottom:239.629733pt;}
.y13b{bottom:243.240933pt;}
.y1b7{bottom:243.302933pt;}
.y25{bottom:244.612267pt;}
.y177{bottom:245.419067pt;}
.yeb{bottom:245.817600pt;}
.yaf{bottom:247.606667pt;}
.y46{bottom:249.153600pt;}
.y6a{bottom:249.716133pt;}
.y102{bottom:252.961733pt;}
.y1b6{bottom:254.632933pt;}
.y13a{bottom:256.572933pt;}
.y24{bottom:257.944267pt;}
.y176{bottom:258.751067pt;}
.yea{bottom:259.152267pt;}
.yae{bottom:260.938667pt;}
.y45{bottom:262.485600pt;}
.y69{bottom:263.048133pt;}
.y1b5{bottom:265.962933pt;}
.y101{bottom:266.293733pt;}
.y139{bottom:269.904933pt;}
.y23{bottom:271.276267pt;}
.y175{bottom:272.083067pt;}
.ye9{bottom:272.484267pt;}
.yad{bottom:274.270667pt;}
.y44{bottom:275.817600pt;}
.y68{bottom:276.380133pt;}
.y1b4{bottom:277.292933pt;}
.y100{bottom:279.625733pt;}
.y138{bottom:283.236933pt;}
.y22{bottom:284.609600pt;}
.y174{bottom:285.415067pt;}
.ye8{bottom:285.817600pt;}
.yac{bottom:287.602667pt;}
.y1b3{bottom:288.622933pt;}
.y43{bottom:289.150933pt;}
.y67{bottom:289.712133pt;}
.y137{bottom:296.568933pt;}
.y21{bottom:297.942933pt;}
.y173{bottom:298.752400pt;}
.ye7{bottom:299.154933pt;}
.y1b2{bottom:299.952933pt;}
.yab{bottom:300.934667pt;}
.y1fb{bottom:301.821600pt;}
.y42{bottom:302.484267pt;}
.y66{bottom:303.044133pt;}
.y136{bottom:309.900933pt;}
.y20{bottom:311.278933pt;}
.y1b1{bottom:311.282933pt;}
.y172{bottom:312.084400pt;}
.ye6{bottom:312.486933pt;}
.yaa{bottom:314.266667pt;}
.y1fa{bottom:315.153600pt;}
.y41{bottom:315.818933pt;}
.y65{bottom:316.376133pt;}
.y1b0{bottom:322.612933pt;}
.y135{bottom:323.232933pt;}
.y1f{bottom:324.610933pt;}
.y171{bottom:325.416400pt;}
.ye5{bottom:325.818933pt;}
.ya9{bottom:327.600000pt;}
.y1f9{bottom:328.485600pt;}
.y40{bottom:329.150933pt;}
.y64{bottom:329.710800pt;}
.y1af{bottom:333.942933pt;}
.y134{bottom:336.564933pt;}
.y1e{bottom:337.942933pt;}
.y170{bottom:338.748400pt;}
.ye4{bottom:339.150933pt;}
.y1f8{bottom:341.817600pt;}
.y3e{bottom:342.485600pt;}
.y63{bottom:343.042800pt;}
.y1ae{bottom:345.272933pt;}
.y3f{bottom:346.562933pt;}
.y133{bottom:349.896933pt;}
.y1d{bottom:351.276267pt;}
.y16f{bottom:352.080400pt;}
.ye3{bottom:352.484267pt;}
.ya8{bottom:354.332667pt;}
.y1f7{bottom:355.149600pt;}
.y3d{bottom:355.817600pt;}
.y62{bottom:356.376133pt;}
.y1ad{bottom:356.602933pt;}
.y132{bottom:363.228933pt;}
.y1c{bottom:364.609600pt;}
.ye2{bottom:365.820267pt;}
.ya7{bottom:367.664667pt;}
.y1ac{bottom:367.932933pt;}
.y3c{bottom:369.156267pt;}
.y61{bottom:369.708133pt;}
.y1f6{bottom:374.486933pt;}
.y16e{bottom:376.566267pt;}
.y131{bottom:376.571600pt;}
.y1b{bottom:377.984267pt;}
.ye1{bottom:379.152267pt;}
.y1ab{bottom:379.262933pt;}
.ya6{bottom:380.996667pt;}
.y3b{bottom:382.488267pt;}
.y1f5{bottom:387.818933pt;}
.y16d{bottom:389.898267pt;}
.y130{bottom:389.903600pt;}
.y1aa{bottom:390.592933pt;}
.y1a{bottom:391.316267pt;}
.ye0{bottom:392.484267pt;}
.ya5{bottom:394.328667pt;}
.y3a{bottom:395.820267pt;}
.y60{bottom:398.492267pt;}
.y1a9{bottom:401.922933pt;}
.y16c{bottom:403.230267pt;}
.y12f{bottom:403.235600pt;}
.y19{bottom:404.648267pt;}
.ydf{bottom:405.817600pt;}
.y1f4{bottom:407.150933pt;}
.ya4{bottom:407.660667pt;}
.y39{bottom:409.152267pt;}
.y5f{bottom:411.824267pt;}
.y1a8{bottom:413.252933pt;}
.y16b{bottom:416.562267pt;}
.y12e{bottom:416.567600pt;}
.y18{bottom:417.980267pt;}
.ydd{bottom:419.153600pt;}
.ya3{bottom:420.992667pt;}
.y38{bottom:422.484267pt;}
.yde{bottom:423.229600pt;}
.y1a7{bottom:424.582933pt;}
.y5e{bottom:425.156267pt;}
.y1f3{bottom:426.482933pt;}
.y12d{bottom:429.899600pt;}
.y16a{bottom:429.915600pt;}
.y17{bottom:431.312267pt;}
.ydc{bottom:432.485600pt;}
.ya2{bottom:434.324667pt;}
.y37{bottom:435.816267pt;}
.y1a6{bottom:435.912933pt;}
.y5d{bottom:438.488267pt;}
.y1f2{bottom:439.816267pt;}
.y12c{bottom:443.231600pt;}
.y169{bottom:443.247600pt;}
.ydb{bottom:445.817600pt;}
.y1a5{bottom:447.242933pt;}
.ya1{bottom:447.656667pt;}
.y5c{bottom:451.820267pt;}
.y12b{bottom:456.563600pt;}
.y168{bottom:456.579600pt;}
.y1a4{bottom:458.572933pt;}
.yda{bottom:459.152267pt;}
.ya0{bottom:460.988667pt;}
.y1f1{bottom:463.820267pt;}
.y5b{bottom:465.152267pt;}
.y12a{bottom:469.895600pt;}
.y1a3{bottom:469.902933pt;}
.y167{bottom:469.911600pt;}
.yd9{bottom:472.484267pt;}
.y16{bottom:473.312267pt;}
.y9f{bottom:474.323333pt;}
.y1f0{bottom:477.152267pt;}
.y5a{bottom:478.484267pt;}
.y1a2{bottom:481.232933pt;}
.y58{bottom:483.045733pt;}
.y129{bottom:483.227600pt;}
.y166{bottom:483.243600pt;}
.yd8{bottom:485.817600pt;}
.y9e{bottom:487.655333pt;}
.y15{bottom:487.976267pt;}
.y1ef{bottom:490.484267pt;}
.y59{bottom:491.816267pt;}
.y1a1{bottom:492.562933pt;}
.y57{bottom:496.377733pt;}
.y165{bottom:496.575600pt;}
.yd7{bottom:499.154933pt;}
.y9d{bottom:500.990000pt;}
.y14{bottom:502.640267pt;}
.y1ee{bottom:503.816267pt;}
.y1a0{bottom:503.892933pt;}
.y128{bottom:507.710800pt;}
.y56{bottom:509.709733pt;}
.y164{bottom:509.907600pt;}
.yd6{bottom:512.486933pt;}
.y9c{bottom:514.322000pt;}
.y19f{bottom:515.222933pt;}
.y1ed{bottom:517.149600pt;}
.y13{bottom:517.304267pt;}
.y127{bottom:521.042800pt;}
.y55{bottom:523.041733pt;}
.y163{bottom:523.239600pt;}
.yd5{bottom:525.818933pt;}
.y19e{bottom:526.552933pt;}
.y9b{bottom:527.654000pt;}
.y12{bottom:531.968267pt;}
.y126{bottom:534.378800pt;}
.y54{bottom:536.373733pt;}
.y162{bottom:536.571600pt;}
.y19d{bottom:537.882933pt;}
.yd4{bottom:539.150933pt;}
.y7b{bottom:540.749733pt;}
.y1ec{bottom:541.153600pt;}
.y11{bottom:546.632267pt;}
.y125{bottom:547.710800pt;}
.y19c{bottom:549.212933pt;}
.y53{bottom:549.705733pt;}
.y161{bottom:549.903600pt;}
.yd3{bottom:552.490933pt;}
.y7a{bottom:554.081733pt;}
.y9a{bottom:554.384133pt;}
.y1eb{bottom:554.485600pt;}
.y19b{bottom:560.542933pt;}
.y124{bottom:561.042800pt;}
.y10{bottom:561.296267pt;}
.y160{bottom:563.235600pt;}
.yd2{bottom:565.822933pt;}
.y79{bottom:567.413733pt;}
.y99{bottom:567.716133pt;}
.y1ea{bottom:567.817600pt;}
.y19a{bottom:571.872933pt;}
.y123{bottom:574.374800pt;}
.yf{bottom:575.960267pt;}
.y15f{bottom:576.567600pt;}
.yd1{bottom:579.154933pt;}
.y78{bottom:580.745733pt;}
.y98{bottom:581.048133pt;}
.y1e9{bottom:581.149600pt;}
.y199{bottom:583.202933pt;}
.y15e{bottom:589.899600pt;}
.ye{bottom:590.624267pt;}
.yd0{bottom:592.486933pt;}
.y97{bottom:594.380133pt;}
.y1e8{bottom:594.482933pt;}
.y198{bottom:594.532933pt;}
.y122{bottom:598.856533pt;}
.y15d{bottom:603.231600pt;}
.yd{bottom:605.288267pt;}
.ycf{bottom:605.818933pt;}
.y197{bottom:605.862933pt;}
.y96{bottom:607.712133pt;}
.y121{bottom:612.188533pt;}
.y15c{bottom:616.563600pt;}
.y196{bottom:617.192933pt;}
.y1e7{bottom:618.586267pt;}
.yce{bottom:619.150933pt;}
.yc{bottom:619.952267pt;}
.y95{bottom:621.044133pt;}
.y195{bottom:628.522933pt;}
.y15b{bottom:629.895600pt;}
.y1e6{bottom:629.916267pt;}
.ycd{bottom:632.484267pt;}
.y94{bottom:634.376133pt;}
.yb{bottom:634.616267pt;}
.y120{bottom:636.670400pt;}
.y194{bottom:639.852933pt;}
.y1e5{bottom:641.246267pt;}
.y15a{bottom:643.228933pt;}
.ycc{bottom:645.816267pt;}
.y93{bottom:647.709467pt;}
.ya{bottom:649.280267pt;}
.y11f{bottom:650.002400pt;}
.y193{bottom:651.182933pt;}
.y1e4{bottom:652.576267pt;}
.y159{bottom:656.560933pt;}
.y92{bottom:661.041467pt;}
.y192{bottom:662.512933pt;}
.y11e{bottom:663.335733pt;}
.y1e3{bottom:663.906267pt;}
.y9{bottom:663.944267pt;}
.y34{bottom:672.933333pt;}
.y191{bottom:673.842933pt;}
.y1e2{bottom:675.236267pt;}
.y8{bottom:678.608267pt;}
.y158{bottom:681.045467pt;}
.yc6{bottom:683.197467pt;}
.y190{bottom:685.172933pt;}
.y1e1{bottom:686.566267pt;}
.y91{bottom:687.764933pt;}
.y11d{bottom:687.833600pt;}
.yfb{bottom:690.721733pt;}
.y33{bottom:691.600000pt;}
.y157{bottom:694.377467pt;}
.y18f{bottom:696.502933pt;}
.yc5{bottom:696.529467pt;}
.y1e0{bottom:697.896267pt;}
.y90{bottom:701.096933pt;}
.y11c{bottom:701.165600pt;}
.yfa{bottom:704.053733pt;}
.y7{bottom:705.274933pt;}
.y156{bottom:707.709467pt;}
.y18e{bottom:707.832933pt;}
.y1df{bottom:709.226267pt;}
.yc4{bottom:709.861467pt;}
.y32{bottom:710.266667pt;}
.y8e{bottom:714.436933pt;}
.y11b{bottom:714.497600pt;}
.yf9{bottom:717.385733pt;}
.y8f{bottom:718.508933pt;}
.y18d{bottom:719.162933pt;}
.y1de{bottom:720.556267pt;}
.y155{bottom:721.042800pt;}
.yc3{bottom:723.193467pt;}
.y8d{bottom:727.768933pt;}
.y11a{bottom:727.829600pt;}
.y18c{bottom:730.492933pt;}
.y1dd{bottom:731.886267pt;}
.y154{bottom:734.374800pt;}
.y6{bottom:734.597600pt;}
.y8c{bottom:741.100933pt;}
.y119{bottom:741.161600pt;}
.y18b{bottom:741.822933pt;}
.y1dc{bottom:743.216267pt;}
.y18a{bottom:753.152933pt;}
.y8b{bottom:754.432933pt;}
.y118{bottom:754.493600pt;}
.y1db{bottom:754.546267pt;}
.y153{bottom:758.856667pt;}
.y189{bottom:764.482933pt;}
.y1da{bottom:765.876267pt;}
.y8a{bottom:767.764933pt;}
.y117{bottom:767.825600pt;}
.y152{bottom:772.190000pt;}
.y5{bottom:774.602933pt;}
.y188{bottom:775.816267pt;}
.y1d9{bottom:777.206267pt;}
.y89{bottom:781.096933pt;}
.y116{bottom:781.157600pt;}
.y151{bottom:785.523333pt;}
.y1d8{bottom:788.536267pt;}
.y88{bottom:794.432933pt;}
.y115{bottom:794.489600pt;}
.y150{bottom:798.855333pt;}
.y1d7{bottom:799.866267pt;}
.y187{bottom:805.161600pt;}
.y87{bottom:807.764933pt;}
.y114{bottom:807.821600pt;}
.y1d6{bottom:811.196267pt;}
.y4{bottom:814.608267pt;}
.y186{bottom:818.493600pt;}
.y86{bottom:821.096933pt;}
.y113{bottom:821.153600pt;}
.y1d5{bottom:822.526267pt;}
.y14f{bottom:823.338400pt;}
.y35{bottom:823.475200pt;}
.y185{bottom:831.825600pt;}
.y1d4{bottom:833.856267pt;}
.y85{bottom:834.438267pt;}
.y112{bottom:834.485600pt;}
.y14e{bottom:836.670400pt;}
.y184{bottom:845.157600pt;}
.y1d3{bottom:845.186267pt;}
.y84{bottom:847.770267pt;}
.y111{bottom:847.817600pt;}
.y14d{bottom:850.002400pt;}
.y1d2{bottom:856.516267pt;}
.y183{bottom:858.489600pt;}
.y83{bottom:861.102267pt;}
.y110{bottom:861.157600pt;}
.y1d1{bottom:867.846267pt;}
.y182{bottom:871.821600pt;}
.y82{bottom:874.434267pt;}
.y10f{bottom:874.489600pt;}
.y14c{bottom:874.492267pt;}
.y1d0{bottom:879.176267pt;}
.y181{bottom:885.153600pt;}
.y81{bottom:887.766267pt;}
.y10e{bottom:887.821600pt;}
.y14b{bottom:887.824267pt;}
.y1cf{bottom:890.506267pt;}
.y180{bottom:898.485600pt;}
.y80{bottom:901.098267pt;}
.y10d{bottom:901.153600pt;}
.y14a{bottom:901.156267pt;}
.y1ce{bottom:901.836267pt;}
.y17f{bottom:911.817600pt;}
.y1cd{bottom:913.166267pt;}
.y7f{bottom:914.430267pt;}
.y10c{bottom:914.485600pt;}
.y149{bottom:914.488267pt;}
.y1cc{bottom:924.496267pt;}
.y17e{bottom:925.149600pt;}
.y7e{bottom:927.762267pt;}
.y10b{bottom:927.817600pt;}
.y148{bottom:927.820267pt;}
.y1cb{bottom:935.826267pt;}
.y10a{bottom:941.150933pt;}
.y147{bottom:941.152267pt;}
.y1ca{bottom:947.156267pt;}
.y7d{bottom:954.484267pt;}
.y1c9{bottom:958.486267pt;}
.y7c{bottom:967.816267pt;}
.y1c8{bottom:969.816267pt;}
.y36{bottom:1013.202667pt;}
.y3{bottom:1013.446133pt;}
.hf{height:21.193555pt;}
.h14{height:22.339200pt;}
.h24{height:28.640000pt;}
.h25{height:29.560000pt;}
.h3{height:30.687500pt;}
.h11{height:32.605469pt;}
.h8{height:34.368000pt;}
.h7{height:34.523438pt;}
.h9{height:35.472000pt;}
.h10{height:36.585555pt;}
.h2{height:38.359375pt;}
.ha{height:38.488533pt;}
.h21{height:38.573867pt;}
.h1f{height:38.589867pt;}
.h1e{height:38.605867pt;}
.hd{height:38.616533pt;}
.h19{height:38.621333pt;}
.h18{height:38.621867pt;}
.h1b{height:38.627200pt;}
.h13{height:38.632533pt;}
.h22{height:38.633067pt;}
.h1d{height:38.637867pt;}
.h23{height:38.642667pt;}
.hc{height:38.643200pt;}
.h1a{height:38.648000pt;}
.he{height:38.648533pt;}
.h17{height:38.653333pt;}
.hb{height:38.653867pt;}
.h20{height:38.659200pt;}
.h4{height:39.318359pt;}
.h1c{height:39.355467pt;}
.h15{height:39.371467pt;}
.h16{height:42.195312pt;}
.h6{height:43.067460pt;}
.h12{height:69.046875pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:54.392400pt;}
.x6{left:60.215200pt;}
.x8{left:83.532533pt;}
.x7{left:85.143200pt;}
.x9{left:125.291333pt;}
.x4{left:207.516800pt;}
.xf{left:212.437467pt;}
.x5{left:223.519600pt;}
.xd{left:248.091733pt;}
.x10{left:266.976800pt;}
.xc{left:366.350667pt;}
.x3{left:519.632533pt;}
.xa{left:570.338400pt;}
.xe{left:725.336533pt;}
.xb{left:732.628800pt;}
.x1{left:733.540267pt;}
}




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