
    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_457bc7a9d290cfeb10d75c0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0e5b67d9462288087053685a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_7da59df1281214927d314683.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921000;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_84d099f841e8a44259c9dc1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.704000;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_8c11f8f47c148b9cc8ae7d75.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8090176f807b46242881bf0f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e644ab6cdd36211956bb04d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_91f014e709617c32c7201036.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.918000;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_4f48768b7837fe108a20bf0d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.738000;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_d18ddef5c6fb1ddbece8f27e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;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_479202b5bc41c98bba94fdf8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.430000;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_cc343cae3c9a43ae76f36df8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_9c01065f5ab6e77167c90521.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d129c3632b44730b2f864893.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.685000;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_2d40083d44f32b2efd41be97.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_30a0ab40f42e2e68aef6755e.woff2')format("woff");}.ff10{font-family:ff10;line-height:2.999000;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_b6d23ae6f44661cb72c17f94.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.664000;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_ae697aeb2c450afe8a483f14.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.514000;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_b127dafe3645b07b56eb2586.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.905000;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_c9eb680d0aef938db99b42fa.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.923000;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_284110106ff7dcb9a37a97fa.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.960938;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_1eac4bd8dae4c28b4ca2af56.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.971191;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_2b8304e803e3978f1b4daed2.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.960938;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);}
.m2{transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250149,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);}
.v2{vertical-align:-21.690000px;}
.v9{vertical-align:-16.938000px;}
.v4{vertical-align:-10.758000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:10.758000px;}
.v7{vertical-align:17.736000px;}
.v3{vertical-align:26.028000px;}
.v1{vertical-align:31.236000px;}
.va{vertical-align:40.662000px;}
.v8{vertical-align:43.764000px;}
.v6{vertical-align:89.664000px;}
.v5{vertical-align:122.664000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000163px;}
.ls18{letter-spacing:0.000301px;}
.ls8{letter-spacing:0.000346px;}
.lse{letter-spacing:0.000760px;}
.lsd{letter-spacing:0.001114px;}
.ls1d{letter-spacing:0.001289px;}
.ls5c{letter-spacing:0.001571px;}
.ls44{letter-spacing:0.002375px;}
.ls17{letter-spacing:0.002400px;}
.ls11{letter-spacing:0.002759px;}
.lsb{letter-spacing:0.002809px;}
.ls27{letter-spacing:0.003056px;}
.ls49{letter-spacing:0.003600px;}
.ls4f{letter-spacing:0.004381px;}
.ls55{letter-spacing:0.006655px;}
.ls67{letter-spacing:0.063364px;}
.ls6a{letter-spacing:0.076036px;}
.ls64{letter-spacing:0.079204px;}
.ls69{letter-spacing:0.088709px;}
.ls6b{letter-spacing:0.095045px;}
.ls66{letter-spacing:0.110886px;}
.ls68{letter-spacing:0.126727px;}
.ls65{letter-spacing:0.142568px;}
.ls62{letter-spacing:0.155241px;}
.ls60{letter-spacing:0.177418px;}
.ls63{letter-spacing:0.190091px;}
.ls61{letter-spacing:0.199595px;}
.ls36{letter-spacing:0.586737px;}
.ls32{letter-spacing:0.592737px;}
.ls33{letter-spacing:1.271644px;}
.ls3b{letter-spacing:1.949543px;}
.ls19{letter-spacing:2.984915px;}
.ls1a{letter-spacing:2.986059px;}
.ls50{letter-spacing:2.986767px;}
.ls48{letter-spacing:2.987236px;}
.ls1e{letter-spacing:2.989289px;}
.ls23{letter-spacing:2.990525px;}
.ls4a{letter-spacing:2.990915px;}
.ls2{letter-spacing:2.992226px;}
.ls1{letter-spacing:2.992894px;}
.lsc{letter-spacing:4.697907px;}
.ls56{letter-spacing:4.699622px;}
.ls14{letter-spacing:4.703907px;}
.ls3e{letter-spacing:4.706056px;}
.lsf{letter-spacing:8.650059px;}
.ls52{letter-spacing:10.042177px;}
.ls4d{letter-spacing:10.048177px;}
.ls41{letter-spacing:11.914059px;}
.ls13{letter-spacing:11.951073px;}
.ls22{letter-spacing:11.951345px;}
.ls42{letter-spacing:11.953114px;}
.ls3c{letter-spacing:11.959114px;}
.ls37{letter-spacing:13.583518px;}
.ls47{letter-spacing:15.935518px;}
.ls53{letter-spacing:15.941518px;}
.ls5b{letter-spacing:15.943473px;}
.ls4e{letter-spacing:17.887021px;}
.ls5a{letter-spacing:18.506450px;}
.ls54{letter-spacing:18.926915px;}
.ls2b{letter-spacing:19.091518px;}
.ls15{letter-spacing:19.133299px;}
.lsa{letter-spacing:19.919518px;}
.ls57{letter-spacing:19.920472px;}
.ls35{letter-spacing:19.921693px;}
.ls4c{letter-spacing:19.922202px;}
.ls59{letter-spacing:19.922227px;}
.ls21{letter-spacing:19.922809px;}
.ls45{letter-spacing:19.923600px;}
.ls46{letter-spacing:19.924800px;}
.ls20{letter-spacing:19.925073px;}
.ls3d{letter-spacing:19.926760px;}
.ls39{letter-spacing:19.928375px;}
.ls1b{letter-spacing:19.928991px;}
.ls58{letter-spacing:19.930800px;}
.ls31{letter-spacing:21.416809px;}
.ls30{letter-spacing:21.426346px;}
.ls16{letter-spacing:22.120059px;}
.ls38{letter-spacing:22.262375px;}
.ls51{letter-spacing:22.496450px;}
.ls1f{letter-spacing:22.915289px;}
.ls2e{letter-spacing:23.215693px;}
.ls2f{letter-spacing:23.216375px;}
.ls4b{letter-spacing:23.412346px;}
.ls7{letter-spacing:23.413114px;}
.ls43{letter-spacing:23.418346px;}
.ls9{letter-spacing:24.629907px;}
.ls12{letter-spacing:25.987486px;}
.ls2a{letter-spacing:27.791518px;}
.ls2c{letter-spacing:27.794375px;}
.ls2d{letter-spacing:27.794809px;}
.ls29{letter-spacing:27.798000px;}
.ls25{letter-spacing:27.798346px;}
.ls26{letter-spacing:27.800809px;}
.ls40{letter-spacing:30.403165px;}
.ls3a{letter-spacing:30.881907px;}
.ls4{letter-spacing:31.033114px;}
.ls24{letter-spacing:32.741907px;}
.ls3f{letter-spacing:32.983486px;}
.ls5{letter-spacing:34.016915px;}
.ls5e{letter-spacing:35.111578px;}
.ls6{letter-spacing:35.117578px;}
.ls5d{letter-spacing:35.119200px;}
.ls1c{letter-spacing:36.389345px;}
.ls34{letter-spacing:88.169907px;}
.ls5f{letter-spacing:88.271578px;}
.ls28{letter-spacing:123.629907px;}
.ls0{letter-spacing:227.488178px;}
.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;}
}
.ws52{word-spacing:-71.731200px;}
.ws6c{word-spacing:-55.806874px;}
.ws36{word-spacing:-51.822010px;}
.ws61{word-spacing:-51.789926px;}
.ws34{word-spacing:-48.312818px;}
.wsa7{word-spacing:-48.297295px;}
.ws32{word-spacing:-45.664082px;}
.ws6a{word-spacing:-33.756703px;}
.ws70{word-spacing:-33.708766px;}
.ws38{word-spacing:-33.684972px;}
.ws44{word-spacing:-33.211407px;}
.ws66{word-spacing:-23.335494px;}
.ws67{word-spacing:-23.304751px;}
.ws2a{word-spacing:-22.416000px;}
.ws33{word-spacing:-19.510886px;}
.ws4d{word-spacing:-8.829961px;}
.wse9{word-spacing:-7.796693px;}
.wse0{word-spacing:-7.580118px;}
.wsea{word-spacing:-6.758916px;}
.wse8{word-spacing:-6.682880px;}
.ws4e{word-spacing:-6.588964px;}
.ws64{word-spacing:-6.477961px;}
.wse1{word-spacing:-5.759157px;}
.wse4{word-spacing:-5.711635px;}
.wse7{word-spacing:-5.695794px;}
.wse5{word-spacing:-5.679953px;}
.wsed{word-spacing:-5.664112px;}
.wse2{word-spacing:-5.648271px;}
.wse6{word-spacing:-5.632430px;}
.wse3{word-spacing:-5.569066px;}
.ws39{word-spacing:-3.909350px;}
.ws10a{word-spacing:-3.873485px;}
.ws3a{word-spacing:-3.443098px;}
.ws46{word-spacing:-3.327961px;}
.ws3b{word-spacing:-3.120307px;}
.wsbd{word-spacing:-2.869248px;}
.ws3c{word-spacing:-2.725786px;}
.ws56{word-spacing:-2.546458px;}
.ws93{word-spacing:-2.438861px;}
.wsb8{word-spacing:-2.367130px;}
.wsbe{word-spacing:-2.295398px;}
.ws55{word-spacing:-2.223667px;}
.ws19{word-spacing:-1.506355px;}
.ws9b{word-spacing:-1.434624px;}
.ws83{word-spacing:-1.255296px;}
.ws103{word-spacing:-1.219430px;}
.ws31{word-spacing:-1.147699px;}
.ws5{word-spacing:-1.099637px;}
.wsda{word-spacing:-0.645581px;}
.ws9d{word-spacing:-0.609715px;}
.wsb4{word-spacing:-0.573850px;}
.ws8{word-spacing:-0.510546px;}
.ws9e{word-spacing:-0.502118px;}
.wsac{word-spacing:-0.430387px;}
.ws7{word-spacing:-0.379637px;}
.ws37{word-spacing:-0.358656px;}
.ws10b{word-spacing:-0.215194px;}
.ws91{word-spacing:-0.143462px;}
.ws2c{word-spacing:-0.071731px;}
.wsb2{word-spacing:-0.047821px;}
.ws20{word-spacing:0.000000px;}
.ws10f{word-spacing:0.143462px;}
.ws89{word-spacing:0.273291px;}
.ws87{word-spacing:0.274391px;}
.ws2f{word-spacing:0.286925px;}
.ws109{word-spacing:0.358656px;}
.ws57{word-spacing:0.359643px;}
.ws69{word-spacing:0.430387px;}
.ws59{word-spacing:0.461028px;}
.ws5a{word-spacing:0.502118px;}
.ws7d{word-spacing:0.573850px;}
.ws1c{word-spacing:0.717312px;}
.wsf1{word-spacing:0.744806px;}
.wsf2{word-spacing:0.789043px;}
.wsc2{word-spacing:0.860774px;}
.ws65{word-spacing:0.997002px;}
.ws5f{word-spacing:0.999859px;}
.ws10{word-spacing:1.147699px;}
.ws78{word-spacing:1.219430px;}
.ws22{word-spacing:1.291162px;}
.ws9{word-spacing:1.387638px;}
.wsbf{word-spacing:1.434624px;}
.ws71{word-spacing:1.578086px;}
.ws28{word-spacing:1.793280px;}
.ws82{word-spacing:1.865011px;}
.ws110{word-spacing:2.008474px;}
.wsf3{word-spacing:2.080205px;}
.ws81{word-spacing:2.116070px;}
.wsf6{word-spacing:2.151936px;}
.ws4f{word-spacing:2.213472px;}
.ws13{word-spacing:2.223667px;}
.wsef{word-spacing:2.295398px;}
.ws10c{word-spacing:2.367130px;}
.ws96{word-spacing:2.438861px;}
.ws98{word-spacing:2.510592px;}
.wsf{word-spacing:2.654054px;}
.ws4c{word-spacing:2.725786px;}
.ws2e{word-spacing:2.797517px;}
.ws5c{word-spacing:2.940979px;}
.wscc{word-spacing:3.031891px;}
.wsa4{word-spacing:3.084442px;}
.ws1a{word-spacing:3.156173px;}
.ws88{word-spacing:3.170277px;}
.ws1e{word-spacing:3.227904px;}
.ws1f{word-spacing:3.299613px;}
.ws58{word-spacing:3.299635px;}
.ws29{word-spacing:3.371366px;}
.ws99{word-spacing:3.443098px;}
.wsb9{word-spacing:3.586560px;}
.wsc{word-spacing:3.613094px;}
.ws48{word-spacing:3.658291px;}
.ws47{word-spacing:3.695718px;}
.ws49{word-spacing:3.730022px;}
.wsf7{word-spacing:3.868579px;}
.ws18{word-spacing:3.873485px;}
.ws63{word-spacing:3.888349px;}
.ws50{word-spacing:3.889356px;}
.ws6f{word-spacing:3.889820px;}
.ws6b{word-spacing:3.889903px;}
.ws62{word-spacing:3.893643px;}
.ws30{word-spacing:3.894200px;}
.ws27{word-spacing:3.945216px;}
.ws2b{word-spacing:4.016947px;}
.ws106{word-spacing:4.160410px;}
.ws92{word-spacing:4.232141px;}
.ws5d{word-spacing:4.303872px;}
.ws95{word-spacing:4.447334px;}
.ws3f{word-spacing:4.483200px;}
.ws1b{word-spacing:4.519066px;}
.ws104{word-spacing:4.590797px;}
.ws2{word-spacing:4.648169px;}
.ws1{word-spacing:4.734246px;}
.ws4b{word-spacing:4.734259px;}
.ws4a{word-spacing:4.805990px;}
.ws25{word-spacing:4.877722px;}
.wscf{word-spacing:4.949453px;}
.ws14{word-spacing:5.021184px;}
.wsf5{word-spacing:5.092915px;}
.wsd1{word-spacing:5.236378px;}
.ws10d{word-spacing:5.308109px;}
.ws54{word-spacing:5.379825px;}
.ws90{word-spacing:5.379840px;}
.wsd9{word-spacing:5.523302px;}
.wsad{word-spacing:5.595034px;}
.ws80{word-spacing:5.666765px;}
.ws107{word-spacing:6.025421px;}
.wsfd{word-spacing:6.097152px;}
.wsa1{word-spacing:6.312346px;}
.wsd{word-spacing:6.455775px;}
.ws73{word-spacing:6.455808px;}
.ws72{word-spacing:6.527539px;}
.wsee{word-spacing:6.671002px;}
.ws3{word-spacing:6.754915px;}
.wsdb{word-spacing:6.886195px;}
.ws75{word-spacing:6.957926px;}
.wsab{word-spacing:7.029658px;}
.ws74{word-spacing:7.101389px;}
.wsc4{word-spacing:7.173120px;}
.ws4{word-spacing:7.344006px;}
.wsb5{word-spacing:7.388314px;}
.ws24{word-spacing:7.460045px;}
.ws5b{word-spacing:7.531776px;}
.ws3d{word-spacing:7.543681px;}
.wsa{word-spacing:7.736734px;}
.wsb3{word-spacing:7.818701px;}
.ws21{word-spacing:7.962163px;}
.wsdc{word-spacing:8.033894px;}
.wsdd{word-spacing:8.177357px;}
.ws115{word-spacing:8.320819px;}
.wsa9{word-spacing:8.392550px;}
.ws43{word-spacing:8.464282px;}
.ws42{word-spacing:8.493660px;}
.ws40{word-spacing:8.519618px;}
.ws45{word-spacing:8.536013px;}
.ws6{word-spacing:8.718553px;}
.wsb1{word-spacing:8.751206px;}
.wsa8{word-spacing:8.791288px;}
.wsa5{word-spacing:8.796409px;}
.ws6d{word-spacing:8.894669px;}
.ws11{word-spacing:8.966400px;}
.wse{word-spacing:9.109862px;}
.ws6e{word-spacing:9.253325px;}
.ws7c{word-spacing:9.325056px;}
.ws111{word-spacing:9.396787px;}
.ws68{word-spacing:9.468518px;}
.ws5e{word-spacing:9.540250px;}
.ws8a{word-spacing:9.611981px;}
.wsff{word-spacing:9.642371px;}
.ws77{word-spacing:9.755443px;}
.wsa3{word-spacing:9.827174px;}
.wscb{word-spacing:9.898906px;}
.wsfa{word-spacing:10.185830px;}
.ws86{word-spacing:10.329293px;}
.ws102{word-spacing:10.401024px;}
.ws100{word-spacing:10.472755px;}
.wsae{word-spacing:10.616218px;}
.wsd2{word-spacing:10.620067px;}
.wsd3{word-spacing:10.647972px;}
.ws7b{word-spacing:10.723814px;}
.ws53{word-spacing:10.886277px;}
.ws51{word-spacing:10.903142px;}
.ws8f{word-spacing:11.046605px;}
.ws8d{word-spacing:11.118336px;}
.wsfe{word-spacing:11.405261px;}
.wsa2{word-spacing:11.548723px;}
.wsb{word-spacing:11.664010px;}
.ws3e{word-spacing:11.668197px;}
.ws105{word-spacing:12.050842px;}
.wsc6{word-spacing:12.151473px;}
.wsc8{word-spacing:12.165972px;}
.wsca{word-spacing:12.194304px;}
.wsaa{word-spacing:12.409498px;}
.ws15{word-spacing:12.552960px;}
.ws17{word-spacing:12.624691px;}
.wsd7{word-spacing:12.983347px;}
.wsd6{word-spacing:13.198541px;}
.wsd8{word-spacing:13.413734px;}
.wsf9{word-spacing:13.557197px;}
.ws7a{word-spacing:13.628928px;}
.ws8b{word-spacing:13.772390px;}
.ws76{word-spacing:14.131046px;}
.ws84{word-spacing:14.417971px;}
.ws112{word-spacing:14.561434px;}
.ws7f{word-spacing:14.848358px;}
.wsa0{word-spacing:15.063552px;}
.ws9f{word-spacing:15.606632px;}
.ws79{word-spacing:15.673267px;}
.ws8c{word-spacing:15.816730px;}
.wsbb{word-spacing:15.852595px;}
.ws16{word-spacing:16.139520px;}
.wsa6{word-spacing:16.880672px;}
.ws7e{word-spacing:17.036160px;}
.wsb6{word-spacing:17.072026px;}
.wsec{word-spacing:18.385166px;}
.ws60{word-spacing:18.512877px;}
.ws9c{word-spacing:20.156467px;}
.ws23{word-spacing:20.739185px;}
.wsf4{word-spacing:21.466389px;}
.ws97{word-spacing:21.895016px;}
.wscd{word-spacing:22.479642px;}
.ws9a{word-spacing:22.864260px;}
.wsba{word-spacing:23.057265px;}
.wsb7{word-spacing:23.327265px;}
.wsf8{word-spacing:23.332389px;}
.wsd5{word-spacing:23.337642px;}
.ws94{word-spacing:23.367677px;}
.wsd0{word-spacing:24.398767px;}
.wsce{word-spacing:24.405642px;}
.ws35{word-spacing:24.427709px;}
.ws1d{word-spacing:24.460339px;}
.wsb0{word-spacing:25.034189px;}
.wsc0{word-spacing:25.245629px;}
.wsfc{word-spacing:25.515642px;}
.ws26{word-spacing:25.966694px;}
.wsc9{word-spacing:26.493514px;}
.wsc5{word-spacing:26.495265px;}
.wsd4{word-spacing:26.496140px;}
.wsc7{word-spacing:26.497016px;}
.ws8e{word-spacing:26.497891px;}
.wsfb{word-spacing:26.499642px;}
.ws108{word-spacing:28.796909px;}
.wsde{word-spacing:28.907674px;}
.ws114{word-spacing:29.122867px;}
.ws41{word-spacing:29.266330px;}
.ws12{word-spacing:29.696717px;}
.wsf0{word-spacing:30.023265px;}
.wsdf{word-spacing:30.167309px;}
.wsc1{word-spacing:30.783389px;}
.wsaf{word-spacing:31.203072px;}
.ws113{word-spacing:34.789632px;}
.ws101{word-spacing:35.753564px;}
.wsbc{word-spacing:36.009062px;}
.ws0{word-spacing:37.316475px;}
.ws85{word-spacing:37.785763px;}
.wsc3{word-spacing:53.072767px;}
.ws2d{word-spacing:69.937725px;}
.wseb{word-spacing:77.633660px;}
.ws10e{word-spacing:83.925075px;}
._2f{margin-left:-616.000644px;}
._2d{margin-left:-257.153198px;}
._29{margin-left:-17.215488px;}
._2a{margin-left:-15.924326px;}
._1{margin-left:-9.670050px;}
._14{margin-left:-7.447434px;}
._7{margin-left:-5.432732px;}
._27{margin-left:-4.414997px;}
._2{margin-left:-3.347325px;}
._3{margin-left:-2.324084px;}
._5{margin-left:-1.048166px;}
._4{width:1.048166px;}
._9{width:2.749093px;}
._2b{width:4.618599px;}
._1a{width:6.074937px;}
._1e{width:8.889832px;}
._1b{width:12.336855px;}
._1c{width:16.758682px;}
._8{width:18.556825px;}
._16{width:20.932581px;}
._10{width:21.936272px;}
._15{width:23.831741px;}
._28{width:25.091561px;}
._17{width:26.366048px;}
._b{width:27.524105px;}
._a{width:28.670007px;}
._19{width:29.942702px;}
._f{width:31.116982px;}
._d{width:32.868242px;}
._11{width:34.287514px;}
._22{width:35.542060px;}
._25{width:36.735337px;}
._24{width:37.856459px;}
._13{width:39.509532px;}
._6{width:40.876844px;}
._c{width:42.120481px;}
._18{width:43.885135px;}
._20{width:45.985078px;}
._1f{width:48.518977px;}
._0{width:50.333850px;}
._31{width:51.557606px;}
._23{width:53.229919px;}
._30{width:54.357890px;}
._12{width:57.241498px;}
._2c{width:58.920001px;}
._21{width:62.517306px;}
._26{width:80.697600px;}
._1d{width:96.836850px;}
._e{width:116.203950px;}
._2e{width:117.955258px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:15.840900px;}
.fsa{font-size:19.009080px;}
.fs8{font-size:22.177260px;}
.fs6{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs5{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y149{bottom:11.199597px;}
.y145{bottom:11.998963px;}
.y13e{bottom:12.500823px;}
.y141{bottom:13.207210px;}
.y14c{bottom:13.274542px;}
.y132{bottom:14.869360px;}
.y137{bottom:14.916893px;}
.y139{bottom:14.932750px;}
.y12e{bottom:14.984210px;}
.y130{bottom:15.071336px;}
.y134{bottom:15.071347px;}
.y155{bottom:16.879901px;}
.y140{bottom:18.003955px;}
.y14b{bottom:18.071286px;}
.y144{bottom:18.452889px;}
.y13d{bottom:18.954749px;}
.y16c{bottom:20.490170px;}
.y148{bottom:20.844137px;}
.y161{bottom:21.648831px;}
.y154{bottom:24.719921px;}
.y147{bottom:25.640882px;}
.y16b{bottom:26.944099px;}
.y160{bottom:28.102772px;}
.y13c{bottom:28.599290px;}
.y143{bottom:30.148702px;}
.y153{bottom:31.173863px;}
.y13b{bottom:33.396035px;}
.y16a{bottom:33.398004px;}
.y15f{bottom:34.556713px;}
.y152{bottom:37.627804px;}
.y169{bottom:39.851945px;}
.y15e{bottom:41.010606px;}
.y151{bottom:44.081696px;}
.y168{bottom:46.305887px;}
.y15d{bottom:47.464548px;}
.y128{bottom:49.848769px;}
.y150{bottom:50.535638px;}
.y167{bottom:52.759816px;}
.y15c{bottom:53.918489px;}
.y14f{bottom:56.989579px;}
.y166{bottom:59.213721px;}
.y15b{bottom:60.372430px;}
.y22{bottom:63.168000px;}
.y165{bottom:65.667656px;}
.y15a{bottom:66.826323px;}
.y14e{bottom:68.685392px;}
.y164{bottom:72.121597px;}
.y159{bottom:73.280270px;}
.y158{bottom:79.734205px;}
.y163{bottom:83.817410px;}
.y157{bottom:91.430018px;}
.yf8{bottom:108.642000px;}
.y21{bottom:113.977500px;}
.y12c{bottom:117.347894px;}
.ya6{bottom:118.170000px;}
.y124{bottom:121.278825px;}
.y182{bottom:121.581000px;}
.y171{bottom:125.158072px;}
.yc3{bottom:126.139500px;}
.y86{bottom:128.827500px;}
.yf7{bottom:130.311000px;}
.y20{bottom:132.043500px;}
.y120{bottom:133.176000px;}
.ydd{bottom:135.759000px;}
.y44{bottom:139.393500px;}
.ya5{bottom:139.837500px;}
.y181{bottom:143.250000px;}
.y10a{bottom:143.637000px;}
.y85{bottom:150.495000px;}
.y170{bottom:156.285455px;}
.y43{bottom:157.326000px;}
.yc2{bottom:158.643000px;}
.y1f{bottom:159.796500px;}
.y196{bottom:160.996500px;}
.ya4{bottom:161.506500px;}
.yf6{bottom:162.814500px;}
.y180{bottom:164.919000px;}
.y109{bottom:165.304500px;}
.y11f{bottom:166.426500px;}
.ydc{bottom:168.261000px;}
.y65{bottom:169.912500px;}
.y84{bottom:172.164000px;}
.yc1{bottom:180.312000px;}
.y42{bottom:180.682500px;}
.y1e{bottom:181.465500px;}
.y195{bottom:182.665500px;}
.y17f{bottom:186.586500px;}
.y108{bottom:186.973500px;}
.ydb{bottom:189.930000px;}
.y12a{bottom:191.553271px;}
.y64{bottom:191.581500px;}
.y83{bottom:193.833000px;}
.ya3{bottom:194.010000px;}
.y16f{bottom:194.897649px;}
.yf5{bottom:195.318000px;}
.y1d{bottom:203.133000px;}
.y41{bottom:203.952000px;}
.y194{bottom:204.333000px;}
.yc0{bottom:212.814000px;}
.y63{bottom:213.250500px;}
.y82{bottom:215.502000px;}
.ya2{bottom:215.679000px;}
.yf4{bottom:216.985500px;}
.y11e{bottom:218.418000px;}
.y17e{bottom:219.090000px;}
.y107{bottom:219.477000px;}
.yda{bottom:222.433500px;}
.y1c{bottom:224.802000px;}
.y40{bottom:225.621000px;}
.y193{bottom:226.002000px;}
.ybf{bottom:234.483000px;}
.y62{bottom:234.919500px;}
.y81{bottom:237.171000px;}
.ya1{bottom:237.348000px;}
.y126{bottom:237.779668px;}
.y11d{bottom:240.087000px;}
.y17d{bottom:240.759000px;}
.y106{bottom:241.146000px;}
.y1b{bottom:246.471000px;}
.y192{bottom:247.671000px;}
.yf3{bottom:249.489000px;}
.y16e{bottom:251.132844px;}
.yd9{bottom:254.937000px;}
.y3f{bottom:258.123000px;}
.y80{bottom:258.840000px;}
.y11c{bottom:261.756000px;}
.y17c{bottom:262.428000px;}
.y105{bottom:262.815000px;}
.ybe{bottom:266.986500px;}
.y1a{bottom:268.140000px;}
.y61{bottom:268.170000px;}
.y191{bottom:269.340000px;}
.ya0{bottom:269.850000px;}
.y3e{bottom:279.792000px;}
.yf2{bottom:281.992500px;}
.y17b{bottom:284.097000px;}
.yd8{bottom:287.439000px;}
.ybd{bottom:288.655500px;}
.y190{bottom:291.009000px;}
.y9f{bottom:291.519000px;}
.y11b{bottom:294.259500px;}
.y7f{bottom:298.266000px;}
.y16d{bottom:299.051554px;}
.y19{bottom:300.643500px;}
.y17a{bottom:305.764500px;}
.y104{bottom:306.151500px;}
.yd7{bottom:309.108000px;}
.y3d{bottom:312.295500px;}
.y18f{bottom:312.678000px;}
.y9e{bottom:313.188000px;}
.yf1{bottom:314.496000px;}
.y11a{bottom:315.927000px;}
.y60{bottom:320.161500px;}
.ybc{bottom:321.157500px;}
.y18{bottom:322.311000px;}
.y179{bottom:327.433500px;}
.y103{bottom:327.820500px;}
.y9d{bottom:334.857000px;}
.y119{bottom:337.596000px;}
.y3c{bottom:337.750500px;}
.yd6{bottom:341.611500px;}
.y5f{bottom:341.830500px;}
.y17{bottom:343.980000px;}
.yf0{bottom:346.998000px;}
.y102{bottom:349.489500px;}
.y18e{bottom:352.104000px;}
.ybb{bottom:353.661000px;}
.y3a{bottom:358.504500px;}
.y5e{bottom:363.499500px;}
.y16{bottom:365.649000px;}
.y9c{bottom:368.107500px;}
.y7e{bottom:369.997500px;}
.y118{bottom:370.099500px;}
.y178{bottom:370.771500px;}
.y101{bottom:371.158500px;}
.yd5{bottom:374.115000px;}
.y3b{bottom:375.541500px;}
.yef{bottom:379.501500px;}
.y5d{bottom:385.168500px;}
.yba{bottom:386.164500px;}
.y15{bottom:387.318000px;}
.y7d{bottom:391.666500px;}
.y177{bottom:392.440500px;}
.y39{bottom:395.865000px;}
.yee{bottom:401.170500px;}
.y117{bottom:402.603000px;}
.y100{bottom:404.409000px;}
.yd4{bottom:406.618500px;}
.y5c{bottom:406.837500px;}
.y14{bottom:408.987000px;}
.y18d{bottom:412.005000px;}
.y7c{bottom:413.335500px;}
.y176{bottom:414.109500px;}
.y9b{bottom:414.868500px;}
.y38{bottom:417.534000px;}
.yb9{bottom:418.668000px;}
.yd3{bottom:428.286000px;}
.y5b{bottom:428.505000px;}
.y13{bottom:430.656000px;}
.yed{bottom:433.674000px;}
.y116{bottom:435.106500px;}
.y175{bottom:435.777000px;}
.y7b{bottom:436.846500px;}
.yb8{bottom:440.335500px;}
.y9a{bottom:448.119000px;}
.yd2{bottom:449.955000px;}
.y5a{bottom:450.174000px;}
.y37{bottom:450.784500px;}
.yff{bottom:451.170000px;}
.y12{bottom:452.323500px;}
.yec{bottom:455.343000px;}
.y115{bottom:456.774000px;}
.y174{bottom:457.446000px;}
.y122{bottom:468.971786px;}
.yd1{bottom:471.624000px;}
.yb7{bottom:472.839000px;}
.y11{bottom:473.992500px;}
.y18c{bottom:477.010500px;}
.y114{bottom:478.443000px;}
.y7a{bottom:480.384000px;}
.y59{bottom:483.424500px;}
.yeb{bottom:487.845000px;}
.yb6{bottom:494.508000px;}
.y10{bottom:495.661500px;}
.y173{bottom:496.873500px;}
.y36{bottom:497.547000px;}
.y18b{bottom:498.679500px;}
.y99{bottom:500.112000px;}
.y79{bottom:502.051500px;}
.yd0{bottom:504.874500px;}
.y113{bottom:510.946500px;}
.yea{bottom:520.348500px;}
.y98{bottom:521.781000px;}
.y78{bottom:523.720500px;}
.yb5{bottom:527.011500px;}
.y35{bottom:530.050500px;}
.yf{bottom:535.089000px;}
.y58{bottom:535.417500px;}
.y18a{bottom:542.017500px;}
.y112{bottom:543.450000px;}
.yfe{bottom:548.680500px;}
.ycf{bottom:551.637000px;}
.ye9{bottom:552.852000px;}
.y97{bottom:554.284500px;}
.y77{bottom:556.971000px;}
.y57{bottom:557.086500px;}
.yb4{bottom:559.515000px;}
.y34{bottom:562.552500px;}
.y189{bottom:563.686500px;}
.y172{bottom:564.993000px;}
.yce{bottom:573.304500px;}
.y96{bottom:575.952000px;}
.yb3{bottom:581.182500px;}
.ye8{bottom:585.355500px;}
.y56{bottom:590.337000px;}
.ycd{bottom:594.973500px;}
.ye{bottom:594.988500px;}
.y33{bottom:595.056000px;}
.y188{bottom:596.190000px;}
.y121{bottom:601.605000px;}
.y125{bottom:601.607112px;}
.yb2{bottom:602.851500px;}
.y127{bottom:606.817184px;}
.y95{bottom:608.455500px;}
.yfd{bottom:614.433000px;}
.yd{bottom:615.313500px;}
.ycc{bottom:616.642500px;}
.y146{bottom:616.711410px;}
.y32{bottom:616.725000px;}
.ye7{bottom:617.857500px;}
.y138{bottom:622.159096px;}
.y76{bottom:627.207000px;}
.y94{bottom:630.124500px;}
.yb1{bottom:635.355000px;}
.yc{bottom:635.637000px;}
.y55{bottom:637.098000px;}
.y187{bottom:639.526500px;}
.y111{bottom:640.959000px;}
.y75{bottom:648.876000px;}
.ycb{bottom:649.893000px;}
.y31{bottom:649.975500px;}
.ye6{bottom:650.361000px;}
.y93{bottom:651.793500px;}
.y1a6{bottom:654.271500px;}
.yb{bottom:655.960500px;}
.yb0{bottom:657.024000px;}
.y123{bottom:658.704580px;}
.y54{bottom:658.767000px;}
.yfc{bottom:661.195500px;}
.y110{bottom:662.628000px;}
.y74{bottom:670.545000px;}
.y1a5{bottom:675.940500px;}
.y142{bottom:675.950040px;}
.ya{bottom:676.284000px;}
.yaf{bottom:678.693000px;}
.y53{bottom:680.436000px;}
.ye5{bottom:682.864500px;}
.y13f{bottom:683.672479px;}
.y92{bottom:684.297000px;}
.y136{bottom:684.730651px;}
.y73{bottom:692.214000px;}
.y186{bottom:693.699000px;}
.y10f{bottom:695.131500px;}
.y9{bottom:696.607500px;}
.yca{bottom:696.655500px;}
.y30{bottom:696.736500px;}
.y1a4{bottom:697.609500px;}
.y91{bottom:705.964500px;}
.yae{bottom:711.195000px;}
.y52{bottom:713.686500px;}
.y72{bottom:713.883000px;}
.ye4{bottom:715.368000px;}
.y10e{bottom:716.799000px;}
.y8{bottom:716.932500px;}
.yc9{bottom:718.324500px;}
.y2f{bottom:718.405500px;}
.y90{bottom:727.633500px;}
.y1a3{bottom:730.111500px;}
.yad{bottom:732.864000px;}
.y13a{bottom:736.277467px;}
.ye3{bottom:737.035500px;}
.y7{bottom:737.256000px;}
.y71{bottom:738.391500px;}
.y10d{bottom:738.468000px;}
.yc8{bottom:739.992000px;}
.y135{bottom:746.114138px;}
.yfb{bottom:747.870000px;}
.y8f{bottom:749.302500px;}
.y2e{bottom:751.656000px;}
.y1a2{bottom:751.780500px;}
.yac{bottom:754.533000px;}
.y6{bottom:757.579500px;}
.y185{bottom:758.704500px;}
.y10c{bottom:760.137000px;}
.y51{bottom:760.449000px;}
.ye2{bottom:769.539000px;}
.yc7{bottom:772.495500px;}
.yab{bottom:776.202000px;}
.y5{bottom:777.903000px;}
.yfa{bottom:780.373500px;}
.y8e{bottom:781.806000px;}
.y70{bottom:781.927500px;}
.y50{bottom:782.116500px;}
.y1a1{bottom:784.284000px;}
.y2d{bottom:796.314000px;}
.yc6{bottom:797.605500px;}
.ye1{bottom:802.042500px;}
.y8d{bottom:803.475000px;}
.y6f{bottom:803.596500px;}
.y1a0{bottom:805.953000px;}
.y133{bottom:808.685693px;}
.yaa{bottom:809.452500px;}
.y4{bottom:813.102000px;}
.y4f{bottom:815.367000px;}
.ye0{bottom:823.711500px;}
.y6e{bottom:825.265500px;}
.yc5{bottom:830.109000px;}
.yf9{bottom:834.546000px;}
.y8c{bottom:835.977000px;}
.y10b{bottom:836.725500px;}
.y19f{bottom:838.456500px;}
.y184{bottom:845.380500px;}
.y6d{bottom:846.933000px;}
.y2c{bottom:856.213500px;}
.y8b{bottom:857.646000px;}
.y19e{bottom:860.124000px;}
.y4e{bottom:862.129500px;}
.y12f{bottom:864.920888px;}
.y183{bottom:867.048000px;}
.y2b{bottom:877.882500px;}
.y4d{bottom:879.364500px;}
.y129{bottom:879.736354px;}
.y6c{bottom:880.183500px;}
.y19d{bottom:881.793000px;}
.y4c{bottom:883.798500px;}
.y3{bottom:888.157500px;}
.yc4{bottom:888.717000px;}
.y8a{bottom:890.896500px;}
.y2a{bottom:899.551500px;}
.y12b{bottom:901.029164px;}
.y4b{bottom:901.033500px;}
.y4a{bottom:905.467500px;}
.ya9{bottom:910.386000px;}
.y156{bottom:911.317300px;}
.y19c{bottom:914.296500px;}
.y162{bottom:915.706286px;}
.y29{bottom:921.220500px;}
.y14d{bottom:924.410860px;}
.ya8{bottom:932.055000px;}
.y19b{bottom:935.965500px;}
.y49{bottom:938.718000px;}
.y28{bottom:942.889500px;}
.y6b{bottom:950.421000px;}
.y2{bottom:952.230000px;}
.ya7{bottom:953.724000px;}
.y131{bottom:955.610041px;}
.y19a{bottom:957.634500px;}
.y89{bottom:964.558500px;}
.y6a{bottom:972.088500px;}
.ydf{bottom:975.391500px;}
.y27{bottom:975.393000px;}
.y199{bottom:979.302000px;}
.y48{bottom:985.479000px;}
.y88{bottom:986.226000px;}
.y1{bottom:989.589000px;}
.y69{bottom:993.757500px;}
.y26{bottom:997.060500px;}
.y198{bottom:1000.971000px;}
.y47{bottom:1007.148000px;}
.y87{bottom:1007.895000px;}
.y68{bottom:1015.426500px;}
.y25{bottom:1018.729500px;}
.y197{bottom:1022.640000px;}
.y46{bottom:1024.383000px;}
.y45{bottom:1028.817000px;}
.yde{bottom:1029.564000px;}
.y67{bottom:1037.095500px;}
.y14a{bottom:1038.904661px;}
.y12d{bottom:1039.962833px;}
.y24{bottom:1040.398500px;}
.y23{bottom:1062.067500px;}
.y66{bottom:1062.366000px;}
.hc{height:2.869248px;}
.h27{height:12.035371px;}
.h1d{height:12.112719px;}
.h1f{height:14.442446px;}
.h16{height:16.849520px;}
.h20{height:16.957807px;}
.h1c{height:24.592469px;}
.h21{height:26.442686px;}
.he{height:27.783619px;}
.h7{height:29.499174px;}
.h12{height:33.187496px;}
.hd{height:34.143908px;}
.h23{height:34.792425px;}
.h22{height:41.293530px;}
.h1e{height:43.141635px;}
.hf{height:44.831700px;}
.h3{height:45.687311px;}
.h4{height:49.090950px;}
.h6{height:53.798400px;}
.h10{height:59.215496px;}
.ha{height:59.221496px;}
.h8{height:60.171908px;}
.h19{height:60.923573px;}
.h9{height:64.557900px;}
.h13{height:71.534400px;}
.h2{height:73.437574px;}
.h14{height:74.805908px;}
.h11{height:76.951496px;}
.h5{height:77.469300px;}
.h24{height:83.117202px;}
.h1{height:87.650325px;}
.h26{height:99.742227px;}
.h25{height:108.091437px;}
.hb{height:125.533248px;}
.h1b{height:134.220474px;}
.h17{height:138.535535px;}
.h1a{height:200.263826px;}
.h18{height:268.897165px;}
.h15{height:478.395180px;}
.h0{height:1188.000000px;}
.w6{width:26.009702px;}
.wd{width:27.942292px;}
.w7{width:29.852176px;}
.wb{width:31.052916px;}
.w12{width:33.517760px;}
.w16{width:36.873391px;}
.w8{width:37.153775px;}
.w11{width:38.529821px;}
.w20{width:38.719384px;}
.w1b{width:39.476579px;}
.we{width:41.896012px;}
.w17{width:42.805280px;}
.wa{width:43.617918px;}
.w1f{width:44.317558px;}
.w13{width:44.348184px;}
.w10{width:47.734968px;}
.w9{width:47.836350px;}
.w1a{width:49.618451px;}
.w18{width:49.659637px;}
.w15{width:54.104594px;}
.wf{width:55.391403px;}
.wc{width:56.119556px;}
.w19{width:60.564513px;}
.w14{width:79.866650px;}
.w1c{width:115.310663px;}
.w1d{width:117.777620px;}
.w1e{width:124.722270px;}
.w2{width:154.933507px;}
.w3{width:272.523147px;}
.w5{width:276.559937px;}
.w1{width:286.472644px;}
.w4{width:372.838815px;}
.w21{width:666.901890px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3d{left:6.261731px;}
.x38{left:8.666963px;}
.x27{left:13.564736px;}
.x2b{left:15.300658px;}
.x46{left:17.153658px;}
.x3c{left:18.312332px;}
.x42{left:19.752197px;}
.x3f{left:31.325599px;}
.x37{left:32.567205px;}
.x36{left:33.601601px;}
.x47{left:40.529143px;}
.x45{left:43.857670px;}
.x20{left:48.578522px;}
.x24{left:52.402227px;}
.x49{left:56.366194px;}
.x1e{left:96.763543px;}
.x22{left:102.960446px;}
.x7{left:108.000000px;}
.x13{left:117.447000px;}
.x1d{left:122.625000px;}
.x8{left:128.196000px;}
.x14{left:129.460500px;}
.x1{left:135.268500px;}
.x2e{left:140.852596px;}
.x4d{left:148.596678px;}
.x6{left:151.897500px;}
.x4e{left:164.446990px;}
.x18{left:168.090000px;}
.x15{left:172.969500px;}
.x5{left:176.443500px;}
.x2f{left:186.421585px;}
.x50{left:188.085000px;}
.x16{left:190.527000px;}
.x2d{left:191.574101px;}
.x19{left:204.495000px;}
.x1f{left:220.500113px;}
.x1a{left:223.362000px;}
.x17{left:230.022000px;}
.x1b{left:235.656000px;}
.x30{left:237.539641px;}
.x32{left:245.464315px;}
.x11{left:253.189500px;}
.x2a{left:256.162731px;}
.x3{left:266.023500px;}
.x2{left:276.612000px;}
.x33{left:289.845765px;}
.x31{left:295.393776px;}
.x28{left:302.526405px;}
.x29{left:313.621371px;}
.x26{left:318.771776px;}
.x2c{left:321.150023px;}
.x4f{left:324.138887px;}
.x21{left:355.228551px;}
.xa{left:364.275000px;}
.x23{left:373.851641px;}
.x39{left:386.136787px;}
.x3e{left:387.324855px;}
.x4b{left:404.759877px;}
.xb{left:414.709500px;}
.xc{left:417.382500px;}
.x4{left:422.998500px;}
.x4c{left:434.876597px;}
.x25{left:437.650338px;}
.xd{left:443.601000px;}
.x35{left:446.763080px;}
.x40{left:448.745305px;}
.x1c{left:450.220500px;}
.x9{left:454.611000px;}
.x48{left:456.273956px;}
.x34{left:463.406585px;}
.x3a{left:493.918799px;}
.xe{left:524.346000px;}
.x41{left:529.581417px;}
.x3b{left:541.072406px;}
.x4a{left:562.075855px;}
.x44{left:674.216227px;}
.x43{left:712.257092px;}
.x10{left:739.144500px;}
.x12{left:760.705500px;}
.xf{left:798.016500px;}
@media print{
.v2{vertical-align:-19.280000pt;}
.v9{vertical-align:-15.056000pt;}
.v4{vertical-align:-9.562667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:9.562667pt;}
.v7{vertical-align:15.765333pt;}
.v3{vertical-align:23.136000pt;}
.v1{vertical-align:27.765333pt;}
.va{vertical-align:36.144000pt;}
.v8{vertical-align:38.901333pt;}
.v6{vertical-align:79.701333pt;}
.v5{vertical-align:109.034667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000145pt;}
.ls18{letter-spacing:0.000268pt;}
.ls8{letter-spacing:0.000307pt;}
.lse{letter-spacing:0.000676pt;}
.lsd{letter-spacing:0.000990pt;}
.ls1d{letter-spacing:0.001146pt;}
.ls5c{letter-spacing:0.001396pt;}
.ls44{letter-spacing:0.002111pt;}
.ls17{letter-spacing:0.002133pt;}
.ls11{letter-spacing:0.002452pt;}
.lsb{letter-spacing:0.002497pt;}
.ls27{letter-spacing:0.002717pt;}
.ls49{letter-spacing:0.003200pt;}
.ls4f{letter-spacing:0.003895pt;}
.ls55{letter-spacing:0.005915pt;}
.ls67{letter-spacing:0.056323pt;}
.ls6a{letter-spacing:0.067588pt;}
.ls64{letter-spacing:0.070404pt;}
.ls69{letter-spacing:0.078852pt;}
.ls6b{letter-spacing:0.084485pt;}
.ls66{letter-spacing:0.098566pt;}
.ls68{letter-spacing:0.112646pt;}
.ls65{letter-spacing:0.126727pt;}
.ls62{letter-spacing:0.137992pt;}
.ls60{letter-spacing:0.157705pt;}
.ls63{letter-spacing:0.168970pt;}
.ls61{letter-spacing:0.177418pt;}
.ls36{letter-spacing:0.521544pt;}
.ls32{letter-spacing:0.526877pt;}
.ls33{letter-spacing:1.130350pt;}
.ls3b{letter-spacing:1.732927pt;}
.ls19{letter-spacing:2.653258pt;}
.ls1a{letter-spacing:2.654275pt;}
.ls50{letter-spacing:2.654904pt;}
.ls48{letter-spacing:2.655321pt;}
.ls1e{letter-spacing:2.657146pt;}
.ls23{letter-spacing:2.658245pt;}
.ls4a{letter-spacing:2.658591pt;}
.ls2{letter-spacing:2.659757pt;}
.ls1{letter-spacing:2.660350pt;}
.lsc{letter-spacing:4.175918pt;}
.ls56{letter-spacing:4.177441pt;}
.ls14{letter-spacing:4.181251pt;}
.ls3e{letter-spacing:4.183161pt;}
.lsf{letter-spacing:7.688941pt;}
.ls52{letter-spacing:8.926379pt;}
.ls4d{letter-spacing:8.931713pt;}
.ls41{letter-spacing:10.590275pt;}
.ls13{letter-spacing:10.623176pt;}
.ls22{letter-spacing:10.623418pt;}
.ls42{letter-spacing:10.624990pt;}
.ls3c{letter-spacing:10.630323pt;}
.ls37{letter-spacing:12.074238pt;}
.ls47{letter-spacing:14.164905pt;}
.ls53{letter-spacing:14.170238pt;}
.ls5b{letter-spacing:14.171976pt;}
.ls4e{letter-spacing:15.899575pt;}
.ls5a{letter-spacing:16.450178pt;}
.ls54{letter-spacing:16.823925pt;}
.ls2b{letter-spacing:16.970238pt;}
.ls15{letter-spacing:17.007377pt;}
.lsa{letter-spacing:17.706238pt;}
.ls57{letter-spacing:17.707087pt;}
.ls35{letter-spacing:17.708172pt;}
.ls4c{letter-spacing:17.708624pt;}
.ls59{letter-spacing:17.708646pt;}
.ls21{letter-spacing:17.709164pt;}
.ls45{letter-spacing:17.709867pt;}
.ls46{letter-spacing:17.710933pt;}
.ls20{letter-spacing:17.711176pt;}
.ls3d{letter-spacing:17.712676pt;}
.ls39{letter-spacing:17.714111pt;}
.ls1b{letter-spacing:17.714659pt;}
.ls58{letter-spacing:17.716267pt;}
.ls31{letter-spacing:19.037164pt;}
.ls30{letter-spacing:19.045641pt;}
.ls16{letter-spacing:19.662275pt;}
.ls38{letter-spacing:19.788778pt;}
.ls51{letter-spacing:19.996844pt;}
.ls1f{letter-spacing:20.369146pt;}
.ls2e{letter-spacing:20.636172pt;}
.ls2f{letter-spacing:20.636778pt;}
.ls4b{letter-spacing:20.810974pt;}
.ls7{letter-spacing:20.811657pt;}
.ls43{letter-spacing:20.816307pt;}
.ls9{letter-spacing:21.893251pt;}
.ls12{letter-spacing:23.099988pt;}
.ls2a{letter-spacing:24.703572pt;}
.ls2c{letter-spacing:24.706111pt;}
.ls2d{letter-spacing:24.706497pt;}
.ls29{letter-spacing:24.709333pt;}
.ls25{letter-spacing:24.709641pt;}
.ls26{letter-spacing:24.711830pt;}
.ls40{letter-spacing:27.025036pt;}
.ls3a{letter-spacing:27.450584pt;}
.ls4{letter-spacing:27.584990pt;}
.ls24{letter-spacing:29.103918pt;}
.ls3f{letter-spacing:29.318654pt;}
.ls5{letter-spacing:30.237258pt;}
.ls5e{letter-spacing:31.210291pt;}
.ls6{letter-spacing:31.215625pt;}
.ls5d{letter-spacing:31.217067pt;}
.ls1c{letter-spacing:32.346085pt;}
.ls34{letter-spacing:78.373251pt;}
.ls5f{letter-spacing:78.463625pt;}
.ls28{letter-spacing:109.893251pt;}
.ls0{letter-spacing:202.211713pt;}
.ws52{word-spacing:-63.761067pt;}
.ws6c{word-spacing:-49.606110pt;}
.ws36{word-spacing:-46.064009pt;}
.ws61{word-spacing:-46.035490pt;}
.ws34{word-spacing:-42.944727pt;}
.wsa7{word-spacing:-42.930929pt;}
.ws32{word-spacing:-40.590295pt;}
.ws6a{word-spacing:-30.005958pt;}
.ws70{word-spacing:-29.963348pt;}
.ws38{word-spacing:-29.942197pt;}
.ws44{word-spacing:-29.521250pt;}
.ws66{word-spacing:-20.742661pt;}
.ws67{word-spacing:-20.715334pt;}
.ws2a{word-spacing:-19.925333pt;}
.ws33{word-spacing:-17.343010pt;}
.ws4d{word-spacing:-7.848854pt;}
.wse9{word-spacing:-6.930394pt;}
.wse0{word-spacing:-6.737883pt;}
.wsea{word-spacing:-6.007925pt;}
.wse8{word-spacing:-5.940338pt;}
.ws4e{word-spacing:-5.856857pt;}
.ws64{word-spacing:-5.758188pt;}
.wse1{word-spacing:-5.119251pt;}
.wse4{word-spacing:-5.077008pt;}
.wse7{word-spacing:-5.062928pt;}
.wse5{word-spacing:-5.048847pt;}
.wsed{word-spacing:-5.034766pt;}
.wse2{word-spacing:-5.020685pt;}
.wse6{word-spacing:-5.006604pt;}
.wse3{word-spacing:-4.950281pt;}
.ws39{word-spacing:-3.474978pt;}
.ws10a{word-spacing:-3.443098pt;}
.ws3a{word-spacing:-3.060531pt;}
.ws46{word-spacing:-2.958188pt;}
.ws3b{word-spacing:-2.773606pt;}
.wsbd{word-spacing:-2.550443pt;}
.ws3c{word-spacing:-2.422921pt;}
.ws56{word-spacing:-2.263518pt;}
.ws93{word-spacing:-2.167876pt;}
.wsb8{word-spacing:-2.104115pt;}
.wsbe{word-spacing:-2.040354pt;}
.ws55{word-spacing:-1.976593pt;}
.ws19{word-spacing:-1.338982pt;}
.ws9b{word-spacing:-1.275221pt;}
.ws83{word-spacing:-1.115819pt;}
.ws103{word-spacing:-1.083938pt;}
.ws31{word-spacing:-1.020177pt;}
.ws5{word-spacing:-0.977455pt;}
.wsda{word-spacing:-0.573850pt;}
.ws9d{word-spacing:-0.541969pt;}
.wsb4{word-spacing:-0.510089pt;}
.ws8{word-spacing:-0.453819pt;}
.ws9e{word-spacing:-0.446327pt;}
.wsac{word-spacing:-0.382566pt;}
.ws7{word-spacing:-0.337455pt;}
.ws37{word-spacing:-0.318805pt;}
.ws10b{word-spacing:-0.191283pt;}
.ws91{word-spacing:-0.127522pt;}
.ws2c{word-spacing:-0.063761pt;}
.wsb2{word-spacing:-0.042507pt;}
.ws20{word-spacing:0.000000pt;}
.ws10f{word-spacing:0.127522pt;}
.ws89{word-spacing:0.242925pt;}
.ws87{word-spacing:0.243903pt;}
.ws2f{word-spacing:0.255044pt;}
.ws109{word-spacing:0.318805pt;}
.ws57{word-spacing:0.319683pt;}
.ws69{word-spacing:0.382566pt;}
.ws59{word-spacing:0.409803pt;}
.ws5a{word-spacing:0.446327pt;}
.ws7d{word-spacing:0.510089pt;}
.ws1c{word-spacing:0.637611pt;}
.wsf1{word-spacing:0.662050pt;}
.wsf2{word-spacing:0.701372pt;}
.wsc2{word-spacing:0.765133pt;}
.ws65{word-spacing:0.886224pt;}
.ws5f{word-spacing:0.888764pt;}
.ws10{word-spacing:1.020177pt;}
.ws78{word-spacing:1.083938pt;}
.ws22{word-spacing:1.147699pt;}
.ws9{word-spacing:1.233456pt;}
.wsbf{word-spacing:1.275221pt;}
.ws71{word-spacing:1.402743pt;}
.ws28{word-spacing:1.594027pt;}
.ws82{word-spacing:1.657788pt;}
.ws110{word-spacing:1.785310pt;}
.wsf3{word-spacing:1.849071pt;}
.ws81{word-spacing:1.880951pt;}
.wsf6{word-spacing:1.912832pt;}
.ws4f{word-spacing:1.967531pt;}
.ws13{word-spacing:1.976593pt;}
.wsef{word-spacing:2.040354pt;}
.ws10c{word-spacing:2.104115pt;}
.ws96{word-spacing:2.167876pt;}
.ws98{word-spacing:2.231637pt;}
.wsf{word-spacing:2.359159pt;}
.ws4c{word-spacing:2.422921pt;}
.ws2e{word-spacing:2.486682pt;}
.ws5c{word-spacing:2.614204pt;}
.wscc{word-spacing:2.695014pt;}
.wsa4{word-spacing:2.741726pt;}
.ws1a{word-spacing:2.805487pt;}
.ws88{word-spacing:2.818024pt;}
.ws1e{word-spacing:2.869248pt;}
.ws1f{word-spacing:2.932989pt;}
.ws58{word-spacing:2.933009pt;}
.ws29{word-spacing:2.996770pt;}
.ws99{word-spacing:3.060531pt;}
.wsb9{word-spacing:3.188053pt;}
.wsc{word-spacing:3.211639pt;}
.ws48{word-spacing:3.251814pt;}
.ws47{word-spacing:3.285082pt;}
.ws49{word-spacing:3.315575pt;}
.wsf7{word-spacing:3.438737pt;}
.ws18{word-spacing:3.443098pt;}
.ws63{word-spacing:3.456311pt;}
.ws50{word-spacing:3.457205pt;}
.ws6f{word-spacing:3.457618pt;}
.ws6b{word-spacing:3.457691pt;}
.ws62{word-spacing:3.461016pt;}
.ws30{word-spacing:3.461511pt;}
.ws27{word-spacing:3.506859pt;}
.ws2b{word-spacing:3.570620pt;}
.ws106{word-spacing:3.698142pt;}
.ws92{word-spacing:3.761903pt;}
.ws5d{word-spacing:3.825664pt;}
.ws95{word-spacing:3.953186pt;}
.ws3f{word-spacing:3.985067pt;}
.ws1b{word-spacing:4.016947pt;}
.ws104{word-spacing:4.080708pt;}
.ws2{word-spacing:4.131706pt;}
.ws1{word-spacing:4.208219pt;}
.ws4b{word-spacing:4.208230pt;}
.ws4a{word-spacing:4.271991pt;}
.ws25{word-spacing:4.335753pt;}
.wscf{word-spacing:4.399514pt;}
.ws14{word-spacing:4.463275pt;}
.wsf5{word-spacing:4.527036pt;}
.wsd1{word-spacing:4.654558pt;}
.ws10d{word-spacing:4.718319pt;}
.ws54{word-spacing:4.782067pt;}
.ws90{word-spacing:4.782080pt;}
.wsd9{word-spacing:4.909602pt;}
.wsad{word-spacing:4.973363pt;}
.ws80{word-spacing:5.037124pt;}
.ws107{word-spacing:5.355930pt;}
.wsfd{word-spacing:5.419691pt;}
.wsa1{word-spacing:5.610974pt;}
.wsd{word-spacing:5.738467pt;}
.ws73{word-spacing:5.738496pt;}
.ws72{word-spacing:5.802257pt;}
.wsee{word-spacing:5.929779pt;}
.ws3{word-spacing:6.004369pt;}
.wsdb{word-spacing:6.121062pt;}
.ws75{word-spacing:6.184823pt;}
.wsab{word-spacing:6.248585pt;}
.ws74{word-spacing:6.312346pt;}
.wsc4{word-spacing:6.376107pt;}
.ws4{word-spacing:6.528005pt;}
.wsb5{word-spacing:6.567390pt;}
.ws24{word-spacing:6.631151pt;}
.ws5b{word-spacing:6.694912pt;}
.ws3d{word-spacing:6.705494pt;}
.wsa{word-spacing:6.877097pt;}
.wsb3{word-spacing:6.949956pt;}
.ws21{word-spacing:7.077478pt;}
.wsdc{word-spacing:7.141239pt;}
.wsdd{word-spacing:7.268762pt;}
.ws115{word-spacing:7.396284pt;}
.wsa9{word-spacing:7.460045pt;}
.ws43{word-spacing:7.523806pt;}
.ws42{word-spacing:7.549920pt;}
.ws40{word-spacing:7.572994pt;}
.ws45{word-spacing:7.587567pt;}
.ws6{word-spacing:7.749825pt;}
.wsb1{word-spacing:7.778850pt;}
.wsa8{word-spacing:7.814479pt;}
.wsa5{word-spacing:7.819030pt;}
.ws6d{word-spacing:7.906372pt;}
.ws11{word-spacing:7.970133pt;}
.wse{word-spacing:8.097655pt;}
.ws6e{word-spacing:8.225178pt;}
.ws7c{word-spacing:8.288939pt;}
.ws111{word-spacing:8.352700pt;}
.ws68{word-spacing:8.416461pt;}
.ws5e{word-spacing:8.480222pt;}
.ws8a{word-spacing:8.543983pt;}
.wsff{word-spacing:8.570996pt;}
.ws77{word-spacing:8.671505pt;}
.wsa3{word-spacing:8.735266pt;}
.wscb{word-spacing:8.799027pt;}
.wsfa{word-spacing:9.054071pt;}
.ws86{word-spacing:9.181594pt;}
.ws102{word-spacing:9.245355pt;}
.ws100{word-spacing:9.309116pt;}
.wsae{word-spacing:9.436638pt;}
.wsd2{word-spacing:9.440060pt;}
.wsd3{word-spacing:9.464864pt;}
.ws7b{word-spacing:9.532279pt;}
.ws53{word-spacing:9.676691pt;}
.ws51{word-spacing:9.691682pt;}
.ws8f{word-spacing:9.819204pt;}
.ws8d{word-spacing:9.882965pt;}
.wsfe{word-spacing:10.138010pt;}
.wsa2{word-spacing:10.265532pt;}
.wsb{word-spacing:10.368009pt;}
.ws3e{word-spacing:10.371731pt;}
.ws105{word-spacing:10.711859pt;}
.wsc6{word-spacing:10.801309pt;}
.wsc8{word-spacing:10.814198pt;}
.wsca{word-spacing:10.839381pt;}
.wsaa{word-spacing:11.030665pt;}
.ws15{word-spacing:11.158187pt;}
.ws17{word-spacing:11.221948pt;}
.wsd7{word-spacing:11.540753pt;}
.wsd6{word-spacing:11.732036pt;}
.wsd8{word-spacing:11.923319pt;}
.wsf9{word-spacing:12.050842pt;}
.ws7a{word-spacing:12.114603pt;}
.ws8b{word-spacing:12.242125pt;}
.ws76{word-spacing:12.560930pt;}
.ws84{word-spacing:12.815974pt;}
.ws112{word-spacing:12.943497pt;}
.ws7f{word-spacing:13.198541pt;}
.wsa0{word-spacing:13.389824pt;}
.ws9f{word-spacing:13.872561pt;}
.ws79{word-spacing:13.931793pt;}
.ws8c{word-spacing:14.059315pt;}
.wsbb{word-spacing:14.091196pt;}
.ws16{word-spacing:14.346240pt;}
.wsa6{word-spacing:15.005042pt;}
.ws7e{word-spacing:15.143253pt;}
.wsb6{word-spacing:15.175134pt;}
.wsec{word-spacing:16.342370pt;}
.ws60{word-spacing:16.455890pt;}
.ws9c{word-spacing:17.916860pt;}
.ws23{word-spacing:18.434831pt;}
.wsf4{word-spacing:19.081235pt;}
.ws97{word-spacing:19.462236pt;}
.wscd{word-spacing:19.981904pt;}
.ws9a{word-spacing:20.323787pt;}
.wsba{word-spacing:20.495346pt;}
.wsb7{word-spacing:20.735346pt;}
.wsf8{word-spacing:20.739901pt;}
.wsd5{word-spacing:20.744571pt;}
.ws94{word-spacing:20.771268pt;}
.wsd0{word-spacing:21.687793pt;}
.wsce{word-spacing:21.693904pt;}
.ws35{word-spacing:21.713519pt;}
.ws1d{word-spacing:21.742524pt;}
.wsb0{word-spacing:22.252612pt;}
.wsc0{word-spacing:22.440559pt;}
.wsfc{word-spacing:22.680571pt;}
.ws26{word-spacing:23.081506pt;}
.wsc9{word-spacing:23.549790pt;}
.wsc5{word-spacing:23.551346pt;}
.wsd4{word-spacing:23.552125pt;}
.wsc7{word-spacing:23.552903pt;}
.ws8e{word-spacing:23.553681pt;}
.wsfb{word-spacing:23.555238pt;}
.ws108{word-spacing:25.597252pt;}
.wsde{word-spacing:25.695710pt;}
.ws114{word-spacing:25.886993pt;}
.ws41{word-spacing:26.014515pt;}
.ws12{word-spacing:26.397082pt;}
.wsf0{word-spacing:26.687346pt;}
.wsdf{word-spacing:26.815386pt;}
.wsc1{word-spacing:27.363012pt;}
.wsaf{word-spacing:27.736064pt;}
.ws113{word-spacing:30.924117pt;}
.ws101{word-spacing:31.780946pt;}
.wsbc{word-spacing:32.008055pt;}
.ws0{word-spacing:33.170200pt;}
.ws85{word-spacing:33.587345pt;}
.wsc3{word-spacing:47.175793pt;}
.ws2d{word-spacing:62.166867pt;}
.wseb{word-spacing:69.007698pt;}
.ws10e{word-spacing:74.600067pt;}
._2f{margin-left:-547.556128pt;}
._2d{margin-left:-228.580620pt;}
._29{margin-left:-15.302656pt;}
._2a{margin-left:-14.154957pt;}
._1{margin-left:-8.595600pt;}
._14{margin-left:-6.619942pt;}
._7{margin-left:-4.829095pt;}
._27{margin-left:-3.924442pt;}
._2{margin-left:-2.975400pt;}
._3{margin-left:-2.065853pt;}
._5{margin-left:-0.931703pt;}
._4{width:0.931703pt;}
._9{width:2.443638pt;}
._2b{width:4.105421pt;}
._1a{width:5.399944pt;}
._1e{width:7.902073pt;}
._1b{width:10.966094pt;}
._1c{width:14.896606pt;}
._8{width:16.494956pt;}
._16{width:18.606739pt;}
._10{width:19.498908pt;}
._15{width:21.183770pt;}
._28{width:22.303610pt;}
._17{width:23.436487pt;}
._b{width:24.465871pt;}
._a{width:25.484451pt;}
._19{width:26.615735pt;}
._f{width:27.659539pt;}
._d{width:29.216215pt;}
._11{width:30.477790pt;}
._22{width:31.592942pt;}
._25{width:32.653633pt;}
._24{width:33.650186pt;}
._13{width:35.119584pt;}
._6{width:36.334972pt;}
._c{width:37.440428pt;}
._18{width:39.009009pt;}
._20{width:40.875625pt;}
._1f{width:43.127980pt;}
._0{width:44.741200pt;}
._31{width:45.828983pt;}
._23{width:47.315484pt;}
._30{width:48.318125pt;}
._12{width:50.881331pt;}
._2c{width:52.373334pt;}
._21{width:55.570939pt;}
._26{width:71.731200pt;}
._1d{width:86.077200pt;}
._e{width:103.292400pt;}
._2e{width:104.849119pt;}
.fs9{font-size:14.080800pt;}
.fsa{font-size:16.896960pt;}
.fs8{font-size:19.713120pt;}
.fs6{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs5{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y149{bottom:9.955197pt;}
.y145{bottom:10.665745pt;}
.y13e{bottom:11.111843pt;}
.y141{bottom:11.739743pt;}
.y14c{bottom:11.799593pt;}
.y132{bottom:13.217209pt;}
.y137{bottom:13.259460pt;}
.y139{bottom:13.273555pt;}
.y12e{bottom:13.319298pt;}
.y130{bottom:13.396743pt;}
.y134{bottom:13.396753pt;}
.y155{bottom:15.004356pt;}
.y140{bottom:16.003516pt;}
.y14b{bottom:16.063365pt;}
.y144{bottom:16.402568pt;}
.y13d{bottom:16.848666pt;}
.y16c{bottom:18.213484pt;}
.y148{bottom:18.528122pt;}
.y161{bottom:19.243405pt;}
.y154{bottom:21.973263pt;}
.y147{bottom:22.791895pt;}
.y16b{bottom:23.950310pt;}
.y160{bottom:24.980242pt;}
.y13c{bottom:25.421591pt;}
.y143{bottom:26.798846pt;}
.y153{bottom:27.710100pt;}
.y13b{bottom:29.685364pt;}
.y16a{bottom:29.687115pt;}
.y15f{bottom:30.717078pt;}
.y152{bottom:33.446937pt;}
.y169{bottom:35.423951pt;}
.y15e{bottom:36.453872pt;}
.y151{bottom:39.183730pt;}
.y168{bottom:41.160788pt;}
.y15d{bottom:42.190709pt;}
.y128{bottom:44.310017pt;}
.y150{bottom:44.920567pt;}
.y167{bottom:46.897614pt;}
.y15c{bottom:47.927546pt;}
.y14f{bottom:50.657404pt;}
.y166{bottom:52.634419pt;}
.y15b{bottom:53.664382pt;}
.y22{bottom:56.149333pt;}
.y165{bottom:58.371250pt;}
.y15a{bottom:59.401176pt;}
.y14e{bottom:61.053682pt;}
.y164{bottom:64.108087pt;}
.y159{bottom:65.138018pt;}
.y158{bottom:70.874849pt;}
.y163{bottom:74.504365pt;}
.y157{bottom:81.271127pt;}
.yf8{bottom:96.570667pt;}
.y21{bottom:101.313333pt;}
.y12c{bottom:104.309240pt;}
.ya6{bottom:105.040000pt;}
.y124{bottom:107.803400pt;}
.y182{bottom:108.072000pt;}
.y171{bottom:111.251620pt;}
.yc3{bottom:112.124000pt;}
.y86{bottom:114.513333pt;}
.yf7{bottom:115.832000pt;}
.y20{bottom:117.372000pt;}
.y120{bottom:118.378667pt;}
.ydd{bottom:120.674667pt;}
.y44{bottom:123.905333pt;}
.ya5{bottom:124.300000pt;}
.y181{bottom:127.333333pt;}
.y10a{bottom:127.677333pt;}
.y85{bottom:133.773333pt;}
.y170{bottom:138.920404pt;}
.y43{bottom:139.845333pt;}
.yc2{bottom:141.016000pt;}
.y1f{bottom:142.041333pt;}
.y196{bottom:143.108000pt;}
.ya4{bottom:143.561333pt;}
.yf6{bottom:144.724000pt;}
.y180{bottom:146.594667pt;}
.y109{bottom:146.937333pt;}
.y11f{bottom:147.934667pt;}
.ydc{bottom:149.565333pt;}
.y65{bottom:151.033333pt;}
.y84{bottom:153.034667pt;}
.yc1{bottom:160.277333pt;}
.y42{bottom:160.606667pt;}
.y1e{bottom:161.302667pt;}
.y195{bottom:162.369333pt;}
.y17f{bottom:165.854667pt;}
.y108{bottom:166.198667pt;}
.ydb{bottom:168.826667pt;}
.y12a{bottom:170.269575pt;}
.y64{bottom:170.294667pt;}
.y83{bottom:172.296000pt;}
.ya3{bottom:172.453333pt;}
.y16f{bottom:173.242354pt;}
.yf5{bottom:173.616000pt;}
.y1d{bottom:180.562667pt;}
.y41{bottom:181.290667pt;}
.y194{bottom:181.629333pt;}
.yc0{bottom:189.168000pt;}
.y63{bottom:189.556000pt;}
.y82{bottom:191.557333pt;}
.ya2{bottom:191.714667pt;}
.yf4{bottom:192.876000pt;}
.y11e{bottom:194.149333pt;}
.y17e{bottom:194.746667pt;}
.y107{bottom:195.090667pt;}
.yda{bottom:197.718667pt;}
.y1c{bottom:199.824000pt;}
.y40{bottom:200.552000pt;}
.y193{bottom:200.890667pt;}
.ybf{bottom:208.429333pt;}
.y62{bottom:208.817333pt;}
.y81{bottom:210.818667pt;}
.ya1{bottom:210.976000pt;}
.y126{bottom:211.359705pt;}
.y11d{bottom:213.410667pt;}
.y17d{bottom:214.008000pt;}
.y106{bottom:214.352000pt;}
.y1b{bottom:219.085333pt;}
.y192{bottom:220.152000pt;}
.yf3{bottom:221.768000pt;}
.y16e{bottom:223.229194pt;}
.yd9{bottom:226.610667pt;}
.y3f{bottom:229.442667pt;}
.y80{bottom:230.080000pt;}
.y11c{bottom:232.672000pt;}
.y17c{bottom:233.269333pt;}
.y105{bottom:233.613333pt;}
.ybe{bottom:237.321333pt;}
.y1a{bottom:238.346667pt;}
.y61{bottom:238.373333pt;}
.y191{bottom:239.413333pt;}
.ya0{bottom:239.866667pt;}
.y3e{bottom:248.704000pt;}
.yf2{bottom:250.660000pt;}
.y17b{bottom:252.530667pt;}
.yd8{bottom:255.501333pt;}
.ybd{bottom:256.582667pt;}
.y190{bottom:258.674667pt;}
.y9f{bottom:259.128000pt;}
.y11b{bottom:261.564000pt;}
.y7f{bottom:265.125333pt;}
.y16d{bottom:265.823604pt;}
.y19{bottom:267.238667pt;}
.y17a{bottom:271.790667pt;}
.y104{bottom:272.134667pt;}
.yd7{bottom:274.762667pt;}
.y3d{bottom:277.596000pt;}
.y18f{bottom:277.936000pt;}
.y9e{bottom:278.389333pt;}
.yf1{bottom:279.552000pt;}
.y11a{bottom:280.824000pt;}
.y60{bottom:284.588000pt;}
.ybc{bottom:285.473333pt;}
.y18{bottom:286.498667pt;}
.y179{bottom:291.052000pt;}
.y103{bottom:291.396000pt;}
.y9d{bottom:297.650667pt;}
.y119{bottom:300.085333pt;}
.y3c{bottom:300.222667pt;}
.yd6{bottom:303.654667pt;}
.y5f{bottom:303.849333pt;}
.y17{bottom:305.760000pt;}
.yf0{bottom:308.442667pt;}
.y102{bottom:310.657333pt;}
.y18e{bottom:312.981333pt;}
.ybb{bottom:314.365333pt;}
.y3a{bottom:318.670667pt;}
.y5e{bottom:323.110667pt;}
.y16{bottom:325.021333pt;}
.y9c{bottom:327.206667pt;}
.y7e{bottom:328.886667pt;}
.y118{bottom:328.977333pt;}
.y178{bottom:329.574667pt;}
.y101{bottom:329.918667pt;}
.yd5{bottom:332.546667pt;}
.y3b{bottom:333.814667pt;}
.yef{bottom:337.334667pt;}
.y5d{bottom:342.372000pt;}
.yba{bottom:343.257333pt;}
.y15{bottom:344.282667pt;}
.y7d{bottom:348.148000pt;}
.y177{bottom:348.836000pt;}
.y39{bottom:351.880000pt;}
.yee{bottom:356.596000pt;}
.y117{bottom:357.869333pt;}
.y100{bottom:359.474667pt;}
.yd4{bottom:361.438667pt;}
.y5c{bottom:361.633333pt;}
.y14{bottom:363.544000pt;}
.y18d{bottom:366.226667pt;}
.y7c{bottom:367.409333pt;}
.y176{bottom:368.097333pt;}
.y9b{bottom:368.772000pt;}
.y38{bottom:371.141333pt;}
.yb9{bottom:372.149333pt;}
.yd3{bottom:380.698667pt;}
.y5b{bottom:380.893333pt;}
.y13{bottom:382.805333pt;}
.yed{bottom:385.488000pt;}
.y116{bottom:386.761333pt;}
.y175{bottom:387.357333pt;}
.y7b{bottom:388.308000pt;}
.yb8{bottom:391.409333pt;}
.y9a{bottom:398.328000pt;}
.yd2{bottom:399.960000pt;}
.y5a{bottom:400.154667pt;}
.y37{bottom:400.697333pt;}
.yff{bottom:401.040000pt;}
.y12{bottom:402.065333pt;}
.yec{bottom:404.749333pt;}
.y115{bottom:406.021333pt;}
.y174{bottom:406.618667pt;}
.y122{bottom:416.863809pt;}
.yd1{bottom:419.221333pt;}
.yb7{bottom:420.301333pt;}
.y11{bottom:421.326667pt;}
.y18c{bottom:424.009333pt;}
.y114{bottom:425.282667pt;}
.y7a{bottom:427.008000pt;}
.y59{bottom:429.710667pt;}
.yeb{bottom:433.640000pt;}
.yb6{bottom:439.562667pt;}
.y10{bottom:440.588000pt;}
.y173{bottom:441.665333pt;}
.y36{bottom:442.264000pt;}
.y18b{bottom:443.270667pt;}
.y99{bottom:444.544000pt;}
.y79{bottom:446.268000pt;}
.yd0{bottom:448.777333pt;}
.y113{bottom:454.174667pt;}
.yea{bottom:462.532000pt;}
.y98{bottom:463.805333pt;}
.y78{bottom:465.529333pt;}
.yb5{bottom:468.454667pt;}
.y35{bottom:471.156000pt;}
.yf{bottom:475.634667pt;}
.y58{bottom:475.926667pt;}
.y18a{bottom:481.793333pt;}
.y112{bottom:483.066667pt;}
.yfe{bottom:487.716000pt;}
.ycf{bottom:490.344000pt;}
.ye9{bottom:491.424000pt;}
.y97{bottom:492.697333pt;}
.y77{bottom:495.085333pt;}
.y57{bottom:495.188000pt;}
.yb4{bottom:497.346667pt;}
.y34{bottom:500.046667pt;}
.y189{bottom:501.054667pt;}
.y172{bottom:502.216000pt;}
.yce{bottom:509.604000pt;}
.y96{bottom:511.957333pt;}
.yb3{bottom:516.606667pt;}
.ye8{bottom:520.316000pt;}
.y56{bottom:524.744000pt;}
.ycd{bottom:528.865333pt;}
.ye{bottom:528.878667pt;}
.y33{bottom:528.938667pt;}
.y188{bottom:529.946667pt;}
.y121{bottom:534.760000pt;}
.y125{bottom:534.761877pt;}
.yb2{bottom:535.868000pt;}
.y127{bottom:539.393053pt;}
.y95{bottom:540.849333pt;}
.yfd{bottom:546.162667pt;}
.yd{bottom:546.945333pt;}
.ycc{bottom:548.126667pt;}
.y146{bottom:548.187920pt;}
.y32{bottom:548.200000pt;}
.ye7{bottom:549.206667pt;}
.y138{bottom:553.030307pt;}
.y76{bottom:557.517333pt;}
.y94{bottom:560.110667pt;}
.yb1{bottom:564.760000pt;}
.yc{bottom:565.010667pt;}
.y55{bottom:566.309333pt;}
.y187{bottom:568.468000pt;}
.y111{bottom:569.741333pt;}
.y75{bottom:576.778667pt;}
.ycb{bottom:577.682667pt;}
.y31{bottom:577.756000pt;}
.ye6{bottom:578.098667pt;}
.y93{bottom:579.372000pt;}
.y1a6{bottom:581.574667pt;}
.yb{bottom:583.076000pt;}
.yb0{bottom:584.021333pt;}
.y123{bottom:585.515182pt;}
.y54{bottom:585.570667pt;}
.yfc{bottom:587.729333pt;}
.y110{bottom:589.002667pt;}
.y74{bottom:596.040000pt;}
.y1a5{bottom:600.836000pt;}
.y142{bottom:600.844480pt;}
.ya{bottom:601.141333pt;}
.yaf{bottom:603.282667pt;}
.y53{bottom:604.832000pt;}
.ye5{bottom:606.990667pt;}
.y13f{bottom:607.708870pt;}
.y92{bottom:608.264000pt;}
.y136{bottom:608.649467pt;}
.y73{bottom:615.301333pt;}
.y186{bottom:616.621333pt;}
.y10f{bottom:617.894667pt;}
.y9{bottom:619.206667pt;}
.yca{bottom:619.249333pt;}
.y30{bottom:619.321333pt;}
.y1a4{bottom:620.097333pt;}
.y91{bottom:627.524000pt;}
.yae{bottom:632.173333pt;}
.y52{bottom:634.388000pt;}
.y72{bottom:634.562667pt;}
.ye4{bottom:635.882667pt;}
.y10e{bottom:637.154667pt;}
.y8{bottom:637.273333pt;}
.yc9{bottom:638.510667pt;}
.y2f{bottom:638.582667pt;}
.y90{bottom:646.785333pt;}
.y1a3{bottom:648.988000pt;}
.yad{bottom:651.434667pt;}
.y13a{bottom:654.468860pt;}
.ye3{bottom:655.142667pt;}
.y7{bottom:655.338667pt;}
.y71{bottom:656.348000pt;}
.y10d{bottom:656.416000pt;}
.yc8{bottom:657.770667pt;}
.y135{bottom:663.212567pt;}
.yfb{bottom:664.773333pt;}
.y8f{bottom:666.046667pt;}
.y2e{bottom:668.138667pt;}
.y1a2{bottom:668.249333pt;}
.yac{bottom:670.696000pt;}
.y6{bottom:673.404000pt;}
.y185{bottom:674.404000pt;}
.y10c{bottom:675.677333pt;}
.y51{bottom:675.954667pt;}
.ye2{bottom:684.034667pt;}
.yc7{bottom:686.662667pt;}
.yab{bottom:689.957333pt;}
.y5{bottom:691.469333pt;}
.yfa{bottom:693.665333pt;}
.y8e{bottom:694.938667pt;}
.y70{bottom:695.046667pt;}
.y50{bottom:695.214667pt;}
.y1a1{bottom:697.141333pt;}
.y2d{bottom:707.834667pt;}
.yc6{bottom:708.982667pt;}
.ye1{bottom:712.926667pt;}
.y8d{bottom:714.200000pt;}
.y6f{bottom:714.308000pt;}
.y1a0{bottom:716.402667pt;}
.y133{bottom:718.831727pt;}
.yaa{bottom:719.513333pt;}
.y4{bottom:722.757333pt;}
.y4f{bottom:724.770667pt;}
.ye0{bottom:732.188000pt;}
.y6e{bottom:733.569333pt;}
.yc5{bottom:737.874667pt;}
.yf9{bottom:741.818667pt;}
.y8c{bottom:743.090667pt;}
.y10b{bottom:743.756000pt;}
.y19f{bottom:745.294667pt;}
.y184{bottom:751.449333pt;}
.y6d{bottom:752.829333pt;}
.y2c{bottom:761.078667pt;}
.y8b{bottom:762.352000pt;}
.y19e{bottom:764.554667pt;}
.y4e{bottom:766.337333pt;}
.y12f{bottom:768.818567pt;}
.y183{bottom:770.709333pt;}
.y2b{bottom:780.340000pt;}
.y4d{bottom:781.657333pt;}
.y129{bottom:781.987870pt;}
.y6c{bottom:782.385333pt;}
.y19d{bottom:783.816000pt;}
.y4c{bottom:785.598667pt;}
.y3{bottom:789.473333pt;}
.yc4{bottom:789.970667pt;}
.y8a{bottom:791.908000pt;}
.y2a{bottom:799.601333pt;}
.y12b{bottom:800.914812pt;}
.y4b{bottom:800.918667pt;}
.y4a{bottom:804.860000pt;}
.ya9{bottom:809.232000pt;}
.y156{bottom:810.059822pt;}
.y19c{bottom:812.708000pt;}
.y162{bottom:813.961143pt;}
.y29{bottom:818.862667pt;}
.y14d{bottom:821.698542pt;}
.ya8{bottom:828.493333pt;}
.y19b{bottom:831.969333pt;}
.y49{bottom:834.416000pt;}
.y28{bottom:838.124000pt;}
.y6b{bottom:844.818667pt;}
.y2{bottom:846.426667pt;}
.ya7{bottom:847.754667pt;}
.y131{bottom:849.431147pt;}
.y19a{bottom:851.230667pt;}
.y89{bottom:857.385333pt;}
.y6a{bottom:864.078667pt;}
.ydf{bottom:867.014667pt;}
.y27{bottom:867.016000pt;}
.y199{bottom:870.490667pt;}
.y48{bottom:875.981333pt;}
.y88{bottom:876.645333pt;}
.y1{bottom:879.634667pt;}
.y69{bottom:883.340000pt;}
.y26{bottom:886.276000pt;}
.y198{bottom:889.752000pt;}
.y47{bottom:895.242667pt;}
.y87{bottom:895.906667pt;}
.y68{bottom:902.601333pt;}
.y25{bottom:905.537333pt;}
.y197{bottom:909.013333pt;}
.y46{bottom:910.562667pt;}
.y45{bottom:914.504000pt;}
.yde{bottom:915.168000pt;}
.y67{bottom:921.862667pt;}
.y14a{bottom:923.470810pt;}
.y12d{bottom:924.411407pt;}
.y24{bottom:924.798667pt;}
.y23{bottom:944.060000pt;}
.y66{bottom:944.325333pt;}
.hc{height:2.550443pt;}
.h27{height:10.698108pt;}
.h1d{height:10.766862pt;}
.h1f{height:12.837729pt;}
.h16{height:14.977351pt;}
.h20{height:15.073606pt;}
.h1c{height:21.859973pt;}
.h21{height:23.504610pt;}
.he{height:24.696550pt;}
.h7{height:26.221488pt;}
.h12{height:29.499997pt;}
.hd{height:30.350141pt;}
.h23{height:30.926600pt;}
.h22{height:36.705360pt;}
.h1e{height:38.348120pt;}
.hf{height:39.850400pt;}
.h3{height:40.610943pt;}
.h4{height:43.636400pt;}
.h6{height:47.820800pt;}
.h10{height:52.635997pt;}
.ha{height:52.641330pt;}
.h8{height:53.486141pt;}
.h19{height:54.154287pt;}
.h9{height:57.384800pt;}
.h13{height:63.586133pt;}
.h2{height:65.277843pt;}
.h14{height:66.494141pt;}
.h11{height:68.401330pt;}
.h5{height:68.861600pt;}
.h24{height:73.881958pt;}
.h1{height:77.911400pt;}
.h26{height:88.659757pt;}
.h25{height:96.081278pt;}
.hb{height:111.585109pt;}
.h1b{height:119.307088pt;}
.h17{height:123.142698pt;}
.h1a{height:178.012290pt;}
.h18{height:239.019703pt;}
.h15{height:425.240160pt;}
.h0{height:1056.000000pt;}
.w6{width:23.119735pt;}
.wd{width:24.837592pt;}
.w7{width:26.535268pt;}
.wb{width:27.602592pt;}
.w12{width:29.793565pt;}
.w16{width:32.776348pt;}
.w8{width:33.025578pt;}
.w11{width:34.248730pt;}
.w20{width:34.417230pt;}
.w1b{width:35.090292pt;}
.we{width:37.240900pt;}
.w17{width:38.049138pt;}
.wa{width:38.771483pt;}
.w1f{width:39.393385pt;}
.w13{width:39.420608pt;}
.w10{width:42.431083pt;}
.w9{width:42.521200pt;}
.w1a{width:44.105290pt;}
.w18{width:44.141900pt;}
.w15{width:48.092972pt;}
.wf{width:49.236803pt;}
.wc{width:49.884050pt;}
.w19{width:53.835123pt;}
.w14{width:70.992577pt;}
.w1c{width:102.498367pt;}
.w1d{width:104.691217pt;}
.w1e{width:110.864240pt;}
.w2{width:137.718672pt;}
.w3{width:242.242798pt;}
.w5{width:245.831055pt;}
.w1{width:254.642350pt;}
.w4{width:331.412280pt;}
.w21{width:592.801680pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:5.565983pt;}
.x38{left:7.703967pt;}
.x27{left:12.057543pt;}
.x2b{left:13.600585pt;}
.x46{left:15.247696pt;}
.x3c{left:16.277628pt;}
.x42{left:17.557508pt;}
.x3f{left:27.844977pt;}
.x37{left:28.948627pt;}
.x36{left:29.868090pt;}
.x47{left:36.025905pt;}
.x45{left:38.984596pt;}
.x20{left:43.180909pt;}
.x24{left:46.579758pt;}
.x49{left:50.103284pt;}
.x1e{left:86.012038pt;}
.x22{left:91.520397pt;}
.x7{left:96.000000pt;}
.x13{left:104.397333pt;}
.x1d{left:109.000000pt;}
.x8{left:113.952000pt;}
.x14{left:115.076000pt;}
.x1{left:120.238667pt;}
.x2e{left:125.202307pt;}
.x4d{left:132.085936pt;}
.x6{left:135.020000pt;}
.x4e{left:146.175102pt;}
.x18{left:149.413333pt;}
.x15{left:153.750667pt;}
.x5{left:156.838667pt;}
.x2f{left:165.708075pt;}
.x50{left:167.186667pt;}
.x16{left:169.357333pt;}
.x2d{left:170.288090pt;}
.x19{left:181.773333pt;}
.x1f{left:196.000100pt;}
.x1a{left:198.544000pt;}
.x17{left:204.464000pt;}
.x1b{left:209.472000pt;}
.x30{left:211.146347pt;}
.x32{left:218.190502pt;}
.x11{left:225.057333pt;}
.x2a{left:227.700205pt;}
.x3{left:236.465333pt;}
.x2{left:245.877333pt;}
.x33{left:257.640680pt;}
.x31{left:262.572245pt;}
.x28{left:268.912360pt;}
.x29{left:278.774552pt;}
.x26{left:283.352690pt;}
.x2c{left:285.466687pt;}
.x4f{left:288.123455pt;}
.x21{left:315.758712pt;}
.xa{left:323.800000pt;}
.x23{left:332.312570pt;}
.x39{left:343.232700pt;}
.x3e{left:344.288760pt;}
.x4b{left:359.786558pt;}
.xb{left:368.630667pt;}
.xc{left:371.006667pt;}
.x4{left:375.998667pt;}
.x4c{left:386.556975pt;}
.x25{left:389.022523pt;}
.xd{left:394.312000pt;}
.x35{left:397.122738pt;}
.x40{left:398.884715pt;}
.x1c{left:400.196000pt;}
.x9{left:404.098667pt;}
.x48{left:405.576850pt;}
.x34{left:411.916965pt;}
.x3a{left:439.038932pt;}
.xe{left:466.085333pt;}
.x41{left:470.739038pt;}
.x3b{left:480.953250pt;}
.x4a{left:499.622983pt;}
.x44{left:599.303313pt;}
.x43{left:633.117415pt;}
.x10{left:657.017333pt;}
.x12{left:676.182667pt;}
.xf{left:709.348000pt;}
}




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