
    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_2896a596ee3f0050590f5a27.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.850586;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_9843a18ac3bbab6378e4b8a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.675293;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_ad2c741f111924c3874761af.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.850586;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_a12bc48496c1d86a017dca18.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.850586;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_908d7947988f0349083a7615.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.906000;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_f8796d8ac01487566b3e02dc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.892000;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_8945d6468e9a03cb6efd1e64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.713000;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_b8d9304ef44e153ee6fa9191.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_bc439277b685b045c0646a76.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.932000;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_125b6b34af72386b9bd944fb.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897000;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_3adb20c0d5e11f5e9fa24d92.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5f84765ea9c454dbe527e7f4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.106000;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_d62abfbedf3c7fafb427c51a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.831000;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_c212304113f6990c5459a66d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_8c086ac6469f56e963ed8f22.woff2')format("woff");}.fff{font-family:fff;line-height:0.740723;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_6a40fffe480c30ac046ad900.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3a1ab9e09da70449b596826f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3901f9af70977244a1c7501d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.049000;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_f224c10efe38ff1cda3adafe.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a3b7c33205268cbcfc1f15be.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_a000da23d6f8a2c233dbbaf4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_85a3375f54a8649677ed8081.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.665000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.243831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243831,0.000000,0.000000,0.250000,0,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);}
.v14{vertical-align:-40.009212px;}
.v12{vertical-align:-33.899724px;}
.v13{vertical-align:-26.102610px;}
.v11{vertical-align:-15.007500px;}
.v3{vertical-align:-13.906602px;}
.v1{vertical-align:-8.970000px;}
.va{vertical-align:-7.565346px;}
.v15{vertical-align:-5.976000px;}
.v10{vertical-align:-1.100898px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:4.115970px;}
.vb{vertical-align:8.964000px;}
.vd{vertical-align:11.646000px;}
.v16{vertical-align:16.872000px;}
.v4{vertical-align:20.880000px;}
.vc{vertical-align:23.538000px;}
.v6{vertical-align:30.067200px;}
.v9{vertical-align:36.218082px;}
.v2{vertical-align:40.440000px;}
.vf{vertical-align:44.148000px;}
.ve{vertical-align:47.280000px;}
.v7{vertical-align:62.389440px;}
.v8{vertical-align:92.707200px;}
.ls7{letter-spacing:-8.424000px;}
.ls2f{letter-spacing:-1.339034px;}
.lsa{letter-spacing:-0.648000px;}
.lsb{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000522px;}
.ls25{letter-spacing:0.000538px;}
.ls4c{letter-spacing:0.000564px;}
.ls16{letter-spacing:0.000993px;}
.ls24{letter-spacing:0.001707px;}
.ls28{letter-spacing:0.002088px;}
.ls42{letter-spacing:0.002338px;}
.ls36{letter-spacing:0.002387px;}
.ls4b{letter-spacing:0.002525px;}
.ls3c{letter-spacing:0.002646px;}
.ls39{letter-spacing:0.003269px;}
.ls14{letter-spacing:0.004379px;}
.ls48{letter-spacing:0.004738px;}
.ls11{letter-spacing:0.004893px;}
.ls5a{letter-spacing:0.006264px;}
.ls1d{letter-spacing:0.006786px;}
.ls1f{letter-spacing:0.007080px;}
.ls1e{letter-spacing:0.007308px;}
.ls1{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls5c{letter-spacing:2.391030px;}
.lsd{letter-spacing:2.964877px;}
.ls26{letter-spacing:2.984525px;}
.ls10{letter-spacing:2.986766px;}
.ls27{letter-spacing:2.987251px;}
.ls53{letter-spacing:2.987675px;}
.ls5d{letter-spacing:2.988532px;}
.ls1c{letter-spacing:2.988780px;}
.ls4d{letter-spacing:2.990525px;}
.ls51{letter-spacing:2.993251px;}
.ls43{letter-spacing:7.173269px;}
.ls22{letter-spacing:8.017920px;}
.ls49{letter-spacing:8.156525px;}
.ls47{letter-spacing:8.162525px;}
.ls21{letter-spacing:8.644320px;}
.ls38{letter-spacing:8.702338px;}
.ls37{letter-spacing:8.712538px;}
.ls20{letter-spacing:8.811360px;}
.ls29{letter-spacing:9.123078px;}
.ls0{letter-spacing:10.584000px;}
.ls3a{letter-spacing:11.697672px;}
.ls35{letter-spacing:13.278538px;}
.ls18{letter-spacing:13.284538px;}
.ls15{letter-spacing:13.286338px;}
.ls3e{letter-spacing:13.326538px;}
.ls41{letter-spacing:13.332538px;}
.ls34{letter-spacing:16.273140px;}
.ls40{letter-spacing:16.315140px;}
.ls44{letter-spacing:16.473798px;}
.ls32{letter-spacing:16.602538px;}
.ls3f{letter-spacing:16.716538px;}
.ls4a{letter-spacing:19.590615px;}
.ls45{letter-spacing:19.590775px;}
.ls12{letter-spacing:19.595251px;}
.lsc{letter-spacing:20.924100px;}
.ls1b{letter-spacing:21.302525px;}
.ls17{letter-spacing:21.581139px;}
.ls30{letter-spacing:22.482538px;}
.ls33{letter-spacing:22.706891px;}
.ls3d{letter-spacing:22.754891px;}
.ls46{letter-spacing:23.778538px;}
.lse{letter-spacing:24.929675px;}
.ls31{letter-spacing:25.470564px;}
.ls4f{letter-spacing:26.762525px;}
.ls50{letter-spacing:28.493251px;}
.ls3b{letter-spacing:29.889269px;}
.ls2d{letter-spacing:31.167138px;}
.ls4e{letter-spacing:31.514525px;}
.lsf{letter-spacing:31.613675px;}
.ls13{letter-spacing:31.998538px;}
.ls54{letter-spacing:35.248134px;}
.ls1a{letter-spacing:37.679139px;}
.ls52{letter-spacing:38.600891px;}
.ls59{letter-spacing:124.298724px;}
.ls2e{letter-spacing:163.265502px;}
.ls5b{letter-spacing:171.620634px;}
.ls2b{letter-spacing:185.692710px;}
.ls2c{letter-spacing:185.695320px;}
.ls55{letter-spacing:192.786168px;}
.ls56{letter-spacing:199.170750px;}
.ls23{letter-spacing:199.458949px;}
.ls58{letter-spacing:217.486686px;}
.ls19{letter-spacing:383.756525px;}
.ls57{letter-spacing:437.124450px;}
.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;}
}
.ws48{word-spacing:-38.937826px;}
.ws49{word-spacing:-31.633157px;}
.ws88{word-spacing:-16.605662px;}
.ws18{word-spacing:-14.943900px;}
.ws27{word-spacing:-14.920027px;}
.ws5{word-spacing:-14.616000px;}
.ws6{word-spacing:-14.544000px;}
.ws7{word-spacing:-14.400000px;}
.ws2{word-spacing:-14.328000px;}
.ws4{word-spacing:-14.256000px;}
.ws85{word-spacing:-13.531962px;}
.wsc4{word-spacing:-12.543212px;}
.ws66{word-spacing:-11.955150px;}
.ws6e{word-spacing:-11.609280px;}
.wsf8{word-spacing:-10.675200px;}
.ws8d{word-spacing:-10.460700px;}
.wsb9{word-spacing:-6.623136px;}
.ws0{word-spacing:-6.192000px;}
.ws4b{word-spacing:-3.003422px;}
.ws103{word-spacing:-2.391030px;}
.wsad{word-spacing:-1.834127px;}
.wsc{word-spacing:-1.584000px;}
.wse6{word-spacing:-1.545120px;}
.wsf2{word-spacing:-1.135736px;}
.wscb{word-spacing:-1.016185px;}
.wsf5{word-spacing:-0.956410px;}
.ws13b{word-spacing:-0.908591px;}
.ws1c{word-spacing:-0.860774px;}
.ws114{word-spacing:-0.669488px;}
.ws39{word-spacing:-0.597756px;}
.ws83{word-spacing:-0.537980px;}
.ws8a{word-spacing:-0.498917px;}
.ws8b{word-spacing:-0.478205px;}
.ws1{word-spacing:-0.432000px;}
.ws5b{word-spacing:-0.358654px;}
.ws53{word-spacing:-0.298878px;}
.ws8{word-spacing:-0.288000px;}
.wsc6{word-spacing:-0.239102px;}
.ws12{word-spacing:-0.216000px;}
.wscc{word-spacing:-0.179327px;}
.ws11{word-spacing:-0.144000px;}
.ws101{word-spacing:-0.119551px;}
.ws19{word-spacing:-0.053798px;}
.ws11d{word-spacing:-0.047821px;}
.wsd3{word-spacing:-0.041843px;}
.ws9b{word-spacing:-0.041760px;}
.wsa{word-spacing:0.000000px;}
.ws9f{word-spacing:0.047821px;}
.ws10{word-spacing:0.072000px;}
.wsb8{word-spacing:0.131506px;}
.ws13{word-spacing:0.216000px;}
.wsa3{word-spacing:0.358654px;}
.ws3{word-spacing:0.576000px;}
.ws86{word-spacing:0.657532px;}
.wsf3{word-spacing:0.717307px;}
.ws131{word-spacing:0.717309px;}
.ws98{word-spacing:1.016185px;}
.ws81{word-spacing:1.135736px;}
.ws141{word-spacing:1.147694px;}
.wsda{word-spacing:1.315063px;}
.wse5{word-spacing:1.339034px;}
.ws3a{word-spacing:1.494390px;}
.wsac{word-spacing:1.502589px;}
.ws12f{word-spacing:1.673721px;}
.ws46{word-spacing:1.793268px;}
.wsf9{word-spacing:1.817183px;}
.wsdb{word-spacing:1.912819px;}
.wsdf{word-spacing:1.972595px;}
.wsec{word-spacing:2.151922px;}
.wsa7{word-spacing:2.271473px;}
.wsea{word-spacing:2.331248px;}
.wsdd{word-spacing:2.391024px;}
.ws2a{word-spacing:2.450800px;}
.ws36{word-spacing:2.510575px;}
.wsb0{word-spacing:2.570351px;}
.wsae{word-spacing:2.596309px;}
.ws5f{word-spacing:2.630126px;}
.ws130{word-spacing:2.677954px;}
.ws3c{word-spacing:2.689902px;}
.ws52{word-spacing:2.749678px;}
.ws89{word-spacing:2.809453px;}
.ws28{word-spacing:2.869229px;}
.ws123{word-spacing:2.869236px;}
.ws77{word-spacing:2.924134px;}
.ws79{word-spacing:2.929004px;}
.ws29{word-spacing:2.988780px;}
.ws124{word-spacing:3.060518px;}
.ws25{word-spacing:3.066509px;}
.ws13e{word-spacing:3.090644px;}
.ws140{word-spacing:3.108339px;}
.ws57{word-spacing:3.168107px;}
.wsa4{word-spacing:3.227882px;}
.ws50{word-spacing:3.347434px;}
.ws4f{word-spacing:3.407209px;}
.ws6d{word-spacing:3.466985px;}
.ws125{word-spacing:3.490904px;}
.ws3e{word-spacing:3.526760px;}
.ws21{word-spacing:3.604493px;}
.wse4{word-spacing:3.634366px;}
.wsbd{word-spacing:3.706087px;}
.ws2d{word-spacing:3.765863px;}
.ws1d{word-spacing:3.819686px;}
.ws80{word-spacing:3.825638px;}
.ws3f{word-spacing:3.945190px;}
.ws55{word-spacing:4.004965px;}
.ws7a{word-spacing:4.064741px;}
.wsc7{word-spacing:4.137757px;}
.ws11a{word-spacing:4.160392px;}
.wsca{word-spacing:4.303843px;}
.ws116{word-spacing:4.351675px;}
.ws118{word-spacing:4.367215px;}
.wsc1{word-spacing:4.529380px;}
.wsc3{word-spacing:4.538134px;}
.wsc5{word-spacing:4.542946px;}
.ws20{word-spacing:4.572864px;}
.ws111{word-spacing:4.734239px;}
.ws54{word-spacing:4.782048px;}
.ws70{word-spacing:4.782060px;}
.wsd{word-spacing:4.824000px;}
.ws117{word-spacing:4.829881px;}
.ws60{word-spacing:4.841824px;}
.wse{word-spacing:4.968000px;}
.wsbb{word-spacing:5.080926px;}
.wsc0{word-spacing:5.140702px;}
.ws90{word-spacing:5.200477px;}
.wse8{word-spacing:5.212445px;}
.ws2c{word-spacing:5.260253px;}
.ws7f{word-spacing:5.320028px;}
.ws5a{word-spacing:5.439580px;}
.ws84{word-spacing:5.499355px;}
.ws59{word-spacing:5.559131px;}
.wsf{word-spacing:5.760000px;}
.wseb{word-spacing:5.858009px;}
.wsaa{word-spacing:5.869964px;}
.wsde{word-spacing:5.924663px;}
.ws67{word-spacing:5.946046px;}
.ws45{word-spacing:5.963212px;}
.ws17{word-spacing:5.977560px;}
.ws105{word-spacing:5.977575px;}
.ws91{word-spacing:6.037336px;}
.wsb5{word-spacing:6.038134px;}
.ws11e{word-spacing:6.121037px;}
.ws1f{word-spacing:6.133018px;}
.ws7d{word-spacing:6.156887px;}
.wsb7{word-spacing:6.171757px;}
.wsb6{word-spacing:6.175837px;}
.ws129{word-spacing:6.216678px;}
.wsef{word-spacing:6.276438px;}
.ws32{word-spacing:6.394015px;}
.ws33{word-spacing:6.395989px;}
.ws13a{word-spacing:6.407960px;}
.wsff{word-spacing:6.455765px;}
.ws139{word-spacing:6.455781px;}
.ws7e{word-spacing:6.515540px;}
.ws15{word-spacing:6.575340px;}
.ws47{word-spacing:6.635092px;}
.ws41{word-spacing:6.694867px;}
.wse7{word-spacing:6.694884px;}
.ws22{word-spacing:6.724800px;}
.wsf6{word-spacing:6.874194px;}
.wsc2{word-spacing:6.938788px;}
.ws75{word-spacing:7.053521px;}
.wsa2{word-spacing:7.173072px;}
.ws37{word-spacing:7.232848px;}
.ws92{word-spacing:7.352399px;}
.wsc8{word-spacing:7.412174px;}
.ws12b{word-spacing:7.412193px;}
.ws11b{word-spacing:7.460014px;}
.wsa0{word-spacing:7.507834px;}
.ws40{word-spacing:7.531726px;}
.wsd0{word-spacing:7.555466px;}
.ws2e{word-spacing:7.591501px;}
.ws95{word-spacing:7.651277px;}
.ws112{word-spacing:7.746937px;}
.ws113{word-spacing:7.794758px;}
.wsba{word-spacing:7.890379px;}
.wsd2{word-spacing:8.056049px;}
.wsd4{word-spacing:8.069706px;}
.ws58{word-spacing:8.189257px;}
.ws128{word-spacing:8.272964px;}
.wsfb{word-spacing:8.320784px;}
.ws10f{word-spacing:8.368605px;}
.ws24{word-spacing:8.553946px;}
.ws64{word-spacing:8.787013px;}
.wsd6{word-spacing:8.834134px;}
.ws71{word-spacing:8.846789px;}
.ws2b{word-spacing:8.906564px;}
.ws63{word-spacing:8.966340px;}
.wsa8{word-spacing:9.145667px;}
.ws4a{word-spacing:9.190309px;}
.ws4c{word-spacing:9.205442px;}
.ws56{word-spacing:9.265218px;}
.ws99{word-spacing:9.384769px;}
.wsab{word-spacing:9.398589px;}
.ws5c{word-spacing:9.504320px;}
.ws51{word-spacing:9.623872px;}
.ws126{word-spacing:9.659761px;}
.wsed{word-spacing:9.803198px;}
.ws10e{word-spacing:9.803223px;}
.wsf0{word-spacing:9.862974px;}
.ws10d{word-spacing:9.898864px;}
.ws9a{word-spacing:9.982525px;}
.ws61{word-spacing:10.042301px;}
.ws13c{word-spacing:10.127289px;}
.wsaf{word-spacing:10.334589px;}
.ws3b{word-spacing:10.341179px;}
.ws115{word-spacing:10.377070px;}
.ws35{word-spacing:10.460730px;}
.wsd8{word-spacing:10.562134px;}
.ws44{word-spacing:10.568353px;}
.ws42{word-spacing:10.580281px;}
.wsb{word-spacing:10.656000px;}
.wsa5{word-spacing:10.699832px;}
.ws107{word-spacing:10.759037px;}
.wsfd{word-spacing:10.759608px;}
.ws9{word-spacing:10.872000px;}
.ws8f{word-spacing:10.938935px;}
.wsb4{word-spacing:11.129433px;}
.ws137{word-spacing:11.190020px;}
.ws134{word-spacing:11.232133px;}
.wsee{word-spacing:11.297588px;}
.ws1e{word-spacing:11.297664px;}
.wsf1{word-spacing:11.357364px;}
.wsfc{word-spacing:11.417140px;}
.ws74{word-spacing:11.536691px;}
.ws8e{word-spacing:11.596466px;}
.wsfe{word-spacing:11.656242px;}
.ws12a{word-spacing:11.668226px;}
.ws6b{word-spacing:11.716018px;}
.ws122{word-spacing:11.811688px;}
.wsc9{word-spacing:11.823757px;}
.ws121{word-spacing:11.859509px;}
.ws65{word-spacing:11.955120px;}
.wsa9{word-spacing:11.962328px;}
.ws94{word-spacing:12.433325px;}
.wscf{word-spacing:12.552876px;}
.wsa6{word-spacing:12.612652px;}
.ws132{word-spacing:12.624638px;}
.ws7b{word-spacing:12.732203px;}
.wsb2{word-spacing:12.791978px;}
.wscd{word-spacing:12.911530px;}
.ws142{word-spacing:13.055024px;}
.ws34{word-spacing:13.090856px;}
.wsd5{word-spacing:13.227089px;}
.ws68{word-spacing:13.569061px;}
.wsd7{word-spacing:13.628837px;}
.ws2f{word-spacing:13.688612px;}
.wsdc{word-spacing:13.867939px;}
.wsd9{word-spacing:14.226593px;}
.ws14{word-spacing:14.346180px;}
.ws4d{word-spacing:14.405920px;}
.ws4e{word-spacing:14.465695px;}
.ws10b{word-spacing:14.489642px;}
.ws3d{word-spacing:14.525471px;}
.ws7c{word-spacing:14.704798px;}
.wse0{word-spacing:14.764573px;}
.ws97{word-spacing:14.943900px;}
.ws13f{word-spacing:15.015668px;}
.wsbe{word-spacing:15.123227px;}
.ws31{word-spacing:15.183002px;}
.ws133{word-spacing:15.350413px;}
.wsce{word-spacing:15.422105px;}
.ws12e{word-spacing:15.493874px;}
.ws5e{word-spacing:15.661207px;}
.ws102{word-spacing:16.019861px;}
.ws11f{word-spacing:16.163363px;}
.ws87{word-spacing:16.258963px;}
.ws119{word-spacing:16.259004px;}
.ws6c{word-spacing:16.498066px;}
.wsd1{word-spacing:16.677392px;}
.ws10c{word-spacing:16.689389px;}
.ws38{word-spacing:17.036046px;}
.ws82{word-spacing:17.215373px;}
.wsb1{word-spacing:17.217757px;}
.ws100{word-spacing:17.275148px;}
.ws72{word-spacing:17.514251px;}
.ws30{word-spacing:17.633802px;}
.ws78{word-spacing:17.805533px;}
.wsbf{word-spacing:17.813129px;}
.ws26{word-spacing:17.932680px;}
.ws136{word-spacing:18.363110px;}
.ws8c{word-spacing:18.530436px;}
.ws93{word-spacing:18.649987px;}
.ws12c{word-spacing:19.319522px;}
.ws73{word-spacing:19.367294px;}
.ws11c{word-spacing:19.367343px;}
.ws43{word-spacing:19.654267px;}
.ws96{word-spacing:19.785724px;}
.ws69{word-spacing:19.845499px;}
.wsf4{word-spacing:19.905275px;}
.ws110{word-spacing:20.275934px;}
.ws109{word-spacing:20.323755px;}
.ws16{word-spacing:20.861684px;}
.ws5d{word-spacing:20.981236px;}
.ws6a{word-spacing:21.339889px;}
.ws62{word-spacing:21.459440px;}
.ws127{word-spacing:21.567091px;}
.ws12d{word-spacing:21.710552px;}
.wsb3{word-spacing:21.792802px;}
.ws23{word-spacing:21.949747px;}
.ws13d{word-spacing:22.045297px;}
.ws76{word-spacing:22.407191px;}
.ws138{word-spacing:23.097350px;}
.ws135{word-spacing:23.145170px;}
.wse9{word-spacing:23.252708px;}
.wsbc{word-spacing:23.611362px;}
.wsa1{word-spacing:27.324035px;}
.ws120{word-spacing:28.070692px;}
.ws1b{word-spacing:28.620749px;}
.ws1a{word-spacing:30.019507px;}
.ws10a{word-spacing:32.231084px;}
.ws6f{word-spacing:51.900894px;}
.wsfa{word-spacing:65.318400px;}
.ws104{word-spacing:67.767979px;}
.ws106{word-spacing:71.730900px;}
.ws108{word-spacing:77.708475px;}
.wsf7{word-spacing:103.795200px;}
.wse2{word-spacing:129.245634px;}
.ws9e{word-spacing:183.303265px;}
.ws9d{word-spacing:186.652730px;}
.ws9c{word-spacing:206.206892px;}
.wse1{word-spacing:277.614926px;}
.wse3{word-spacing:458.740595px;}
._e{margin-left:-1540.234080px;}
._1d{margin-left:-189.849600px;}
._1c{margin-left:-186.662400px;}
._18{margin-left:-180.864000px;}
._17{margin-left:-177.139200px;}
._1e{margin-left:-175.027200px;}
._15{margin-left:-7.711052px;}
._7{margin-left:-6.253308px;}
._6{margin-left:-5.021163px;}
._12{margin-left:-3.825638px;}
._2{margin-left:-2.354400px;}
._0{margin-left:-1.296000px;}
._1{width:1.440000px;}
._8{width:2.988780px;}
._4{width:6.912000px;}
._3{width:8.352000px;}
._5{width:9.432000px;}
._3a{width:16.019901px;}
._d{width:17.394700px;}
._c{width:18.576739px;}
._13{width:20.084602px;}
._39{width:21.339178px;}
._b{width:23.135761px;}
._9{width:24.388445px;}
._19{width:27.544666px;}
._a{width:30.605184px;}
._11{width:33.474420px;}
._16{width:37.347889px;}
._1f{width:40.504048px;}
._f{width:44.407062px;}
._33{width:77.038987px;}
._1b{width:80.179200px;}
._20{width:87.702980px;}
._29{width:89.663625px;}
._1a{width:92.044800px;}
._2b{width:95.641200px;}
._35{width:101.618775px;}
._24{width:107.596350px;}
._2a{width:113.573925px;}
._2d{width:117.447394px;}
._37{width:120.220988px;}
._21{width:124.237919px;}
._2f{width:125.529075px;}
._31{width:129.160108px;}
._22{width:130.215494px;}
._38{width:138.153713px;}
._2e{width:147.478730px;}
._26{width:150.108863px;}
._2c{width:153.976897px;}
._14{width:155.537730px;}
._32{width:160.194361px;}
._25{width:168.041588px;}
._27{width:171.908047px;}
._23{width:178.657762px;}
._30{width:189.187708px;}
._34{width:193.929376px;}
._36{width:199.597435px;}
._28{width:215.192700px;}
._10{width:322.178400px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:24.346080px;}
.fsb{font-size:33.600000px;}
.fsc{font-size:35.865600px;}
.fsa{font-size:38.400000px;}
.fs9{font-size:41.735988px;}
.fs7{font-size:41.760000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs2{font-size:65.753400px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y1a4{bottom:1.939440px;}
.y18d{bottom:3.001200px;}
.yf7{bottom:3.189159px;}
.y80{bottom:5.785065px;}
.ydd{bottom:12.187264px;}
.y198{bottom:12.362280px;}
.y18c{bottom:12.506280px;}
.y1a3{bottom:12.787440px;}
.y104{bottom:16.161903px;}
.yf8{bottom:17.646862px;}
.ye7{bottom:19.912734px;}
.y85{bottom:20.319372px;}
.y165{bottom:20.368962px;}
.y1a5{bottom:20.750400px;}
.y18e{bottom:22.940640px;}
.y88{bottom:24.981093px;}
.yfa{bottom:26.110309px;}
.y103{bottom:26.487063px;}
.ye3{bottom:28.861641px;}
.y197{bottom:30.829680px;}
.y82{bottom:31.963104px;}
.y1a8{bottom:32.757480px;}
.y7e{bottom:34.565404px;}
.y15b{bottom:35.290462px;}
.y192{bottom:35.886360px;}
.y102{bottom:36.812223px;}
.y194{bottom:37.468320px;}
.y84{bottom:38.265732px;}
.yf9{bottom:38.638309px;}
.y196{bottom:41.398800px;}
.y87{bottom:42.918840px;}
.y81{bottom:44.491104px;}
.y7d{bottom:47.093405px;}
.y101{bottom:47.137383px;}
.yd9{bottom:47.640199px;}
.y164{bottom:49.839777px;}
.y1a6{bottom:51.537600px;}
.y195{bottom:51.959760px;}
.ye4{bottom:54.608639px;}
.ye6{bottom:54.797211px;}
.y83{bottom:56.890692px;}
.y18f{bottom:57.673440px;}
.y86{bottom:59.810760px;}
.yf3{bottom:67.513392px;}
.yde{bottom:67.655507px;}
.y161{bottom:71.192579px;}
.yfb{bottom:72.457384px;}
.y166{bottom:74.563394px;}
.yd8{bottom:76.358421px;}
.y1a9{bottom:76.613640px;}
.yda{bottom:79.399854px;}
.yf0{bottom:81.186791px;}
.yf4{bottom:82.014552px;}
.yf2{bottom:82.992910px;}
.y1a7{bottom:83.016000px;}
.ye5{bottom:87.059030px;}
.yad{bottom:87.991974px;}
.ye0{bottom:88.523370px;}
.yef{bottom:93.714791px;}
.y9e{bottom:94.345497px;}
.y190{bottom:94.527840px;}
.yf6{bottom:95.245425px;}
.yf1{bottom:95.520911px;}
.y9a{bottom:98.519017px;}
.y163{bottom:99.151943px;}
.yfc{bottom:101.511905px;}
.y19b{bottom:102.986760px;}
.ya8{bottom:106.128081px;}
.yee{bottom:106.242791px;}
.yf5{bottom:107.773425px;}
.ya7{bottom:109.507901px;}
.y19e{bottom:110.763240px;}
.y8f{bottom:110.805939px;}
.y91{bottom:111.136541px;}
.y40{bottom:113.332500px;}
.y16b{bottom:113.500500px;}
.y14f{bottom:113.542047px;}
.y9c{bottom:114.690839px;}
.ya4{bottom:114.957189px;}
.ye8{bottom:115.921500px;}
.ya3{bottom:125.079944px;}
.ye1{bottom:126.002579px;}
.y3f{bottom:126.783000px;}
.y16a{bottom:126.949500px;}
.y1a2{bottom:127.637160px;}
.y8e{bottom:127.740316px;}
.ydc{bottom:128.946528px;}
.y90{bottom:129.082901px;}
.y19c{bottom:129.309960px;}
.y199{bottom:129.370500px;}
.y162{bottom:129.662712px;}
.y191{bottom:131.135160px;}
.y69{bottom:131.265000px;}
.y12d{bottom:131.266500px;}
.y193{bottom:131.374200px;}
.y7a{bottom:131.921014px;}
.y96{bottom:132.904201px;}
.y7b{bottom:135.087205px;}
.y1d3{bottom:135.748500px;}
.y1a1{bottom:137.312160px;}
.y3e{bottom:140.232000px;}
.yd6{bottom:142.821000px;}
.yec{bottom:144.291762px;}
.y14e{bottom:146.727805px;}
.ydf{bottom:146.742422px;}
.y1a0{bottom:146.975400px;}
.y8b{bottom:149.123088px;}
.y68{bottom:149.199000px;}
.y8d{bottom:149.463477px;}
.y100{bottom:150.462846px;}
.ya6{bottom:153.269901px;}
.y147{bottom:153.849000px;}
.y19d{bottom:154.433160px;}
.y95{bottom:154.656463px;}
.yed{bottom:154.731762px;}
.y6d{bottom:155.502103px;}
.y1d2{bottom:156.007500px;}
.y18b{bottom:156.270000px;}
.y19f{bottom:156.650400px;}
.yeb{bottom:157.885947px;}
.y15d{bottom:160.102359px;}
.yff{bottom:160.788006px;}
.y169{bottom:161.480961px;}
.ya5{bottom:163.392656px;}
.ye2{bottom:163.667880px;}
.yaa{bottom:165.492270px;}
.ydb{bottom:165.828047px;}
.y8a{bottom:166.057466px;}
.y3d{bottom:166.828500px;}
.y12c{bottom:167.128500px;}
.y67{bottom:167.131500px;}
.y8c{bottom:167.399397px;}
.y1d1{bottom:170.040000px;}
.yfe{bottom:171.113166px;}
.y76{bottom:174.248037px;}
.yd7{bottom:180.579375px;}
.yfd{bottom:181.438326px;}
.ya2{bottom:181.649867px;}
.y9b{bottom:182.290230px;}
.y1d0{bottom:183.489000px;}
.y3c{bottom:184.761000px;}
.y12b{bottom:185.062500px;}
.y66{bottom:185.064000px;}
.y6f{bottom:192.240855px;}
.y98{bottom:193.387819px;}
.yea{bottom:194.961780px;}
.y1cf{bottom:196.938000px;}
.y71{bottom:198.051237px;}
.y14c{bottom:200.539220px;}
.y3b{bottom:202.693500px;}
.y12a{bottom:202.995000px;}
.y65{bottom:202.996500px;}
.y73{bottom:203.767920px;}
.y79{bottom:205.053215px;}
.y74{bottom:208.237284px;}
.y15f{bottom:210.082032px;}
.y1ce{bottom:210.388500px;}
.y77{bottom:210.605207px;}
.ya9{bottom:214.870077px;}
.y160{bottom:216.607032px;}
.y70{bottom:218.513637px;}
.yac{bottom:219.200458px;}
.y3a{bottom:220.626000px;}
.y129{bottom:220.927500px;}
.y64{bottom:220.929000px;}
.y72{bottom:221.678001px;}
.y1cd{bottom:223.837500px;}
.y14b{bottom:224.307707px;}
.y6e{bottom:225.154521px;}
.y153{bottom:232.389441px;}
.y1cc{bottom:237.286500px;}
.y97{bottom:237.538058px;}
.y39{bottom:238.558500px;}
.y128{bottom:238.860000px;}
.y63{bottom:238.861500px;}
.y168{bottom:242.584101px;}
.y75{bottom:244.633995px;}
.y94{bottom:250.400007px;}
.y1cb{bottom:250.737000px;}
.y127{bottom:251.640000px;}
.y15e{bottom:251.800664px;}
.ya0{bottom:253.395726px;}
.y38{bottom:256.491000px;}
.y126{bottom:256.792500px;}
.yc7{bottom:256.795500px;}
.y62{bottom:262.237500px;}
.y6c{bottom:263.750810px;}
.y6b{bottom:263.751462px;}
.y1ca{bottom:264.784500px;}
.y99{bottom:265.266697px;}
.y93{bottom:267.738498px;}
.y9f{bottom:269.432780px;}
.y157{bottom:273.266870px;}
.y78{bottom:273.863907px;}
.y37{bottom:274.425000px;}
.y125{bottom:274.725000px;}
.yc6{bottom:274.728000px;}
.y7c{bottom:277.645145px;}
.y149{bottom:278.632116px;}
.y167{bottom:278.707937px;}
.y9d{bottom:282.774838px;}
.y89{bottom:283.705565px;}
.y20f{bottom:283.918500px;}
.y154{bottom:285.434298px;}
.ya1{bottom:286.309823px;}
.y158{bottom:289.702953px;}
.y61{bottom:291.300000px;}
.y36{bottom:292.357500px;}
.y155{bottom:292.551246px;}
.y124{bottom:292.659000px;}
.yc5{bottom:292.660500px;}
.y92{bottom:292.757697px;}
.y1c9{bottom:293.625000px;}
.y7f{bottom:293.814225px;}
.y14a{bottom:295.487496px;}
.y20e{bottom:297.369000px;}
.y15a{bottom:297.401148px;}
.y148{bottom:307.068197px;}
.y1c8{bottom:307.075500px;}
.y156{bottom:308.656773px;}
.y60{bottom:309.232500px;}
.y35{bottom:310.290000px;}
.y123{bottom:310.591500px;}
.yc4{bottom:310.593000px;}
.y20d{bottom:310.818000px;}
.y159{bottom:313.496888px;}
.yab{bottom:323.050009px;}
.y20c{bottom:324.267000px;}
.y5f{bottom:327.166500px;}
.y152{bottom:327.718778px;}
.y34{bottom:328.222500px;}
.y122{bottom:328.524000px;}
.yc3{bottom:328.525500px;}
.y18a{bottom:333.334500px;}
.y20b{bottom:337.717500px;}
.y5e{bottom:345.099000px;}
.y33{bottom:345.744000px;}
.y121{bottom:346.456500px;}
.yc2{bottom:346.459500px;}
.y14d{bottom:350.746807px;}
.y20a{bottom:351.166500px;}
.y189{bottom:351.267000px;}
.y1c7{bottom:354.840000px;}
.y5d{bottom:363.031500px;}
.y32{bottom:363.676500px;}
.y120{bottom:364.389000px;}
.yc1{bottom:364.392000px;}
.y209{bottom:364.615500px;}
.y188{bottom:369.199500px;}
.yd5{bottom:370.593000px;}
.y151{bottom:371.876584px;}
.y1c6{bottom:372.774000px;}
.y208{bottom:378.066000px;}
.y5c{bottom:380.964000px;}
.y31{bottom:381.609000px;}
.y11f{bottom:382.320000px;}
.yc0{bottom:382.324500px;}
.y187{bottom:387.133500px;}
.yd4{bottom:388.525500px;}
.y1c5{bottom:390.706500px;}
.y150{bottom:391.199198px;}
.y207{bottom:391.515000px;}
.y15c{bottom:395.586999px;}
.y5b{bottom:398.896500px;}
.y30{bottom:399.543000px;}
.y11e{bottom:400.252500px;}
.ybf{bottom:400.257000px;}
.y206{bottom:404.965500px;}
.y186{bottom:405.066000px;}
.yd3{bottom:406.458000px;}
.y1c4{bottom:408.639000px;}
.y5a{bottom:416.830500px;}
.y2f{bottom:417.475500px;}
.y11d{bottom:418.185000px;}
.ybe{bottom:418.189500px;}
.y205{bottom:418.414500px;}
.y185{bottom:422.998500px;}
.yd2{bottom:424.392000px;}
.y1c3{bottom:426.571500px;}
.y204{bottom:431.863500px;}
.y59{bottom:434.763000px;}
.y2e{bottom:435.408000px;}
.y11c{bottom:436.117500px;}
.ybd{bottom:436.122000px;}
.y184{bottom:440.931000px;}
.yd1{bottom:442.324500px;}
.y1c2{bottom:444.504000px;}
.y203{bottom:445.314000px;}
.y58{bottom:452.695500px;}
.y2d{bottom:453.340500px;}
.ybc{bottom:453.900000px;}
.y11b{bottom:454.051500px;}
.y202{bottom:458.763000px;}
.y183{bottom:458.863500px;}
.yd0{bottom:460.257000px;}
.y1c1{bottom:462.436500px;}
.y57{bottom:470.628000px;}
.y2c{bottom:471.273000px;}
.ybb{bottom:471.834000px;}
.y11a{bottom:471.984000px;}
.y201{bottom:472.212000px;}
.y182{bottom:477.175500px;}
.ycf{bottom:478.189500px;}
.y1c0{bottom:480.370500px;}
.y200{bottom:485.662500px;}
.y56{bottom:488.560500px;}
.y2b{bottom:489.207000px;}
.yba{bottom:489.766500px;}
.y119{bottom:494.514000px;}
.y181{bottom:495.108000px;}
.yce{bottom:496.122000px;}
.y1bf{bottom:498.303000px;}
.y1ff{bottom:499.111500px;}
.y117{bottom:504.765000px;}
.y55{bottom:506.493000px;}
.y2a{bottom:507.139500px;}
.yb9{bottom:507.699000px;}
.y1fe{bottom:512.562000px;}
.y180{bottom:513.040500px;}
.ycd{bottom:514.056000px;}
.y118{bottom:514.873500px;}
.y1be{bottom:516.235500px;}
.y54{bottom:524.427000px;}
.y29{bottom:525.072000px;}
.yb8{bottom:525.631500px;}
.y1fd{bottom:526.011000px;}
.y17f{bottom:530.973000px;}
.ycc{bottom:531.988500px;}
.y116{bottom:538.398000px;}
.y1bd{bottom:538.762500px;}
.y1fc{bottom:539.460000px;}
.y53{bottom:542.359500px;}
.y28{bottom:543.004500px;}
.yb7{bottom:543.564000px;}
.y17e{bottom:548.907000px;}
.y1fb{bottom:552.910500px;}
.y115{bottom:556.330500px;}
.ycb{bottom:557.688000px;}
.y52{bottom:560.292000px;}
.y27{bottom:560.937000px;}
.yb6{bottom:561.496500px;}
.y1bc{bottom:566.109000px;}
.y1fa{bottom:566.359500px;}
.y17d{bottom:566.839500px;}
.y114{bottom:574.263000px;}
.y51{bottom:578.224500px;}
.y26{bottom:578.869500px;}
.yb5{bottom:579.430500px;}
.y1f9{bottom:579.808500px;}
.y1bb{bottom:584.041500px;}
.y17c{bottom:585.150000px;}
.y113{bottom:592.195500px;}
.yca{bottom:593.142000px;}
.y1f8{bottom:593.259000px;}
.y50{bottom:596.157000px;}
.y25{bottom:596.803500px;}
.yb4{bottom:601.915500px;}
.y1ba{bottom:601.974000px;}
.y146{bottom:602.233500px;}
.y17b{bottom:603.084000px;}
.y1f7{bottom:606.708000px;}
.y112{bottom:610.129500px;}
.yc9{bottom:611.074500px;}
.y4f{bottom:614.089500px;}
.y24{bottom:614.736000px;}
.y1b9{bottom:619.908000px;}
.y1f6{bottom:620.157000px;}
.y145{bottom:620.166000px;}
.y17a{bottom:621.016500px;}
.y111{bottom:628.062000px;}
.yb3{bottom:629.007000px;}
.y4e{bottom:632.023500px;}
.y23{bottom:632.668500px;}
.y1f5{bottom:633.607500px;}
.y1b8{bottom:637.728000px;}
.y144{bottom:638.098500px;}
.y179{bottom:638.949000px;}
.yb2{bottom:646.939500px;}
.y1f4{bottom:647.056500px;}
.y4d{bottom:649.956000px;}
.y22{bottom:650.601000px;}
.y110{bottom:650.700000px;}
.y1b7{bottom:655.660500px;}
.y143{bottom:656.031000px;}
.y178{bottom:656.881500px;}
.y1f3{bottom:660.507000px;}
.yc8{bottom:664.872000px;}
.yb1{bottom:664.873500px;}
.y4c{bottom:667.888500px;}
.y21{bottom:668.533500px;}
.y1b6{bottom:673.593000px;}
.y1f2{bottom:673.956000px;}
.y177{bottom:674.814000px;}
.y10f{bottom:678.705000px;}
.yb0{bottom:682.806000px;}
.y142{bottom:685.438500px;}
.y4b{bottom:685.821000px;}
.y20{bottom:686.466000px;}
.y1f1{bottom:687.405000px;}
.y1b5{bottom:691.525500px;}
.y176{bottom:692.746500px;}
.y10e{bottom:696.639000px;}
.yaf{bottom:700.738500px;}
.y1f0{bottom:700.855500px;}
.y4a{bottom:703.876500px;}
.y1f{bottom:708.696000px;}
.y1b4{bottom:709.459500px;}
.y175{bottom:710.680500px;}
.y1ef{bottom:714.304500px;}
.y10d{bottom:714.571500px;}
.y49{bottom:721.809000px;}
.y141{bottom:723.046500px;}
.y1b3{bottom:727.392000px;}
.y1ee{bottom:727.753500px;}
.y174{bottom:728.613000px;}
.y10c{bottom:732.504000px;}
.y1e{bottom:738.402000px;}
.y48{bottom:739.741500px;}
.y140{bottom:740.979000px;}
.y1ed{bottom:741.204000px;}
.y1b2{bottom:745.324500px;}
.y173{bottom:746.545500px;}
.yae{bottom:749.055000px;}
.y10b{bottom:750.436500px;}
.y1d{bottom:753.346500px;}
.y1ec{bottom:754.653000px;}
.y47{bottom:757.675500px;}
.y13f{bottom:758.911500px;}
.yd{bottom:762.300000px;}
.y1b1{bottom:763.257000px;}
.y172{bottom:764.478000px;}
.y1eb{bottom:768.103500px;}
.y1c{bottom:768.289500px;}
.y10a{bottom:768.369000px;}
.y46{bottom:775.608000px;}
.y6a{bottom:775.954500px;}
.y13e{bottom:776.844000px;}
.y1b0{bottom:781.189500px;}
.y1ea{bottom:781.552500px;}
.y171{bottom:782.410500px;}
.y1b{bottom:782.823000px;}
.y109{bottom:786.301500px;}
.y13d{bottom:794.778000px;}
.y1e9{bottom:795.001500px;}
.y1a{bottom:797.766000px;}
.y45{bottom:798.693000px;}
.y1af{bottom:799.122000px;}
.yc{bottom:799.740000px;}
.y170{bottom:800.722500px;}
.y108{bottom:804.235500px;}
.y1e8{bottom:808.452000px;}
.y44{bottom:808.944000px;}
.y19{bottom:812.710500px;}
.y1ae{bottom:817.056000px;}
.y16f{bottom:818.655000px;}
.y1e7{bottom:821.901000px;}
.y18{bottom:827.655000px;}
.y13c{bottom:830.643000px;}
.y1ad{bottom:834.988500px;}
.y1e6{bottom:835.350000px;}
.yb{bottom:837.180000px;}
.y17{bottom:842.598000px;}
.y43{bottom:843.132000px;}
.y13b{bottom:848.575500px;}
.y1e5{bottom:848.800500px;}
.y107{bottom:852.526500px;}
.y1ac{bottom:852.921000px;}
.y16{bottom:857.542500px;}
.y42{bottom:861.066000px;}
.y1e4{bottom:862.249500px;}
.y106{bottom:865.977000px;}
.y13a{bottom:866.508000px;}
.y16e{bottom:867.981000px;}
.y15{bottom:872.487000px;}
.ya{bottom:874.620000px;}
.y1e3{bottom:875.700000px;}
.y41{bottom:878.998500px;}
.y105{bottom:879.426000px;}
.y16d{bottom:881.431500px;}
.y139{bottom:884.442000px;}
.y14{bottom:887.430000px;}
.y1e2{bottom:889.149000px;}
.y16c{bottom:894.880500px;}
.y1ab{bottom:900.039000px;}
.y13{bottom:902.374500px;}
.y1e1{bottom:902.598000px;}
.ye9{bottom:906.325500px;}
.y9{bottom:912.060000px;}
.y1aa{bottom:913.489500px;}
.y1e0{bottom:916.048500px;}
.y138{bottom:920.307000px;}
.y1df{bottom:929.497500px;}
.y8{bottom:937.440000px;}
.y137{bottom:938.239500px;}
.y19a{bottom:940.387500px;}
.y1de{bottom:942.946500px;}
.y12{bottom:955.027500px;}
.y136{bottom:956.172000px;}
.y1dd{bottom:956.397000px;}
.y1dc{bottom:969.846000px;}
.y11{bottom:973.521000px;}
.y135{bottom:974.104500px;}
.y7{bottom:975.060000px;}
.y1db{bottom:983.296500px;}
.y134{bottom:992.038500px;}
.y10{bottom:992.235000px;}
.y1da{bottom:996.745500px;}
.y6{bottom:1000.440000px;}
.y133{bottom:1009.971000px;}
.y1d9{bottom:1010.194500px;}
.y1d8{bottom:1023.645000px;}
.y132{bottom:1027.903500px;}
.y1d7{bottom:1037.094000px;}
.y5{bottom:1037.880000px;}
.yf{bottom:1039.309500px;}
.y131{bottom:1045.836000px;}
.y1d6{bottom:1050.543000px;}
.y4{bottom:1063.260000px;}
.y130{bottom:1063.768500px;}
.y1d5{bottom:1063.993500px;}
.y1d4{bottom:1077.442500px;}
.ye{bottom:1081.152000px;}
.y12f{bottom:1081.701000px;}
.y3{bottom:1088.820000px;}
.y12e{bottom:1099.635000px;}
.y2{bottom:1114.200000px;}
.y1{bottom:1139.760000px;}
.h22{height:24.461719px;}
.h21{height:27.956250px;}
.h12{height:30.384940px;}
.hf{height:30.402422px;}
.h1f{height:30.405032px;}
.h9{height:32.900573px;}
.ha{height:33.134573px;}
.h26{height:33.140573px;}
.h24{height:33.187496px;}
.h1e{height:33.550082px;}
.h11{height:34.816454px;}
.h8{height:37.336090px;}
.h7{height:37.605082px;}
.h25{height:40.722624px;}
.h15{height:40.826735px;}
.h6{height:41.125613px;}
.hc{height:42.799330px;}
.hd{height:44.831700px;}
.h5{height:45.238339px;}
.h2{height:47.988281px;}
.h10{height:51.282422px;}
.h1c{height:51.523916px;}
.h18{height:52.116632px;}
.h1b{height:61.735613px;}
.h14{height:66.620503px;}
.h1a{height:72.726632px;}
.h19{height:77.113916px;}
.hb{height:83.239330px;}
.h4{height:98.701718px;}
.h13{height:123.109622px;}
.h20{height:139.644000px;}
.h23{height:171.799200px;}
.h16{height:189.031860px;}
.h17{height:205.863750px;}
.he{height:336.235860px;}
.h1d{height:408.968730px;}
.h3{height:1188.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:295.936800px;}
.w7{width:296.774400px;}
.w5{width:306.571905px;}
.w4{width:333.101250px;}
.w6{width:341.311005px;}
.w3{width:690.056595px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w2{width:918.000000px;}
.x0{left:0.000000px;}
.x5e{left:3.857710px;}
.x6f{left:6.453617px;}
.x3d{left:8.092566px;}
.x4d{left:12.608388px;}
.x75{left:15.365640px;}
.x3c{left:16.693560px;}
.x52{left:18.965174px;}
.x25{left:20.056676px;}
.x74{left:23.035920px;}
.x4e{left:25.136388px;}
.x66{left:28.676853px;}
.x41{left:37.683180px;}
.x6b{left:42.595330px;}
.x60{left:44.602551px;}
.x42{left:49.924471px;}
.x63{left:56.473092px;}
.x27{left:61.504520px;}
.x26{left:63.757080px;}
.x28{left:64.965118px;}
.x4f{left:66.800993px;}
.x4c{left:72.391874px;}
.x8{left:73.446000px;}
.x3{left:74.811000px;}
.x6c{left:75.871656px;}
.x2{left:78.684000px;}
.x55{left:80.917500px;}
.x1{left:84.960000px;}
.x7{left:88.389000px;}
.x43{left:93.000303px;}
.x73{left:95.370720px;}
.x62{left:99.229068px;}
.x81{left:100.834500px;}
.x6d{left:102.467295px;}
.x71{left:105.911451px;}
.x4a{left:108.454500px;}
.x4b{left:109.739799px;}
.x6a{left:112.335835px;}
.x12{left:113.974500px;}
.x69{left:115.408980px;}
.x3f{left:117.664803px;}
.x5d{left:122.680179px;}
.x51{left:125.722917px;}
.x50{left:128.522273px;}
.x32{left:130.731898px;}
.x5{left:131.983500px;}
.x7c{left:133.676400px;}
.x7b{left:134.827680px;}
.x31{left:138.893238px;}
.x22{left:140.330174px;}
.x4{left:145.761000px;}
.x59{left:150.394500px;}
.x44{left:151.504888px;}
.x33{left:153.696897px;}
.x61{left:157.291389px;}
.x30{left:160.074041px;}
.x34{left:162.069125px;}
.x45{left:171.211172px;}
.x79{left:177.059160px;}
.x67{left:184.601385px;}
.x53{left:187.592445px;}
.x38{left:194.716440px;}
.x40{left:197.244225px;}
.x35{left:200.710044px;}
.x9{left:203.428500px;}
.x72{left:212.292720px;}
.x56{left:214.806000px;}
.x78{left:219.884160px;}
.x57{left:221.634000px;}
.x68{left:222.661188px;}
.x65{left:226.586367px;}
.x5f{left:230.229927px;}
.x46{left:232.507935px;}
.x2e{left:241.685608px;}
.x64{left:243.887796px;}
.x7a{left:246.880080px;}
.x47{left:254.017467px;}
.x2c{left:256.745961px;}
.x2a{left:259.607043px;}
.x6e{left:261.319203px;}
.x76{left:270.544320px;}
.x54{left:272.031165px;}
.xa{left:273.829500px;}
.x48{left:276.560559px;}
.x2b{left:280.975766px;}
.x58{left:291.669000px;}
.x77{left:294.718320px;}
.x3e{left:313.119090px;}
.x70{left:320.933169px;}
.x82{left:324.391500px;}
.x5a{left:332.481000px;}
.x29{left:341.997304px;}
.x2d{left:343.752921px;}
.x36{left:358.399589px;}
.x6{left:370.809000px;}
.x2f{left:388.096038px;}
.x24{left:422.529377px;}
.x37{left:435.694739px;}
.x23{left:436.884377px;}
.x1a{left:450.357588px;}
.xd{left:467.967000px;}
.x1d{left:475.279303px;}
.x80{left:477.364500px;}
.xc{left:482.910000px;}
.x5c{left:485.605500px;}
.x3b{left:489.711000px;}
.x1e{left:492.315687px;}
.x1c{left:493.539125px;}
.x1f{left:501.304527px;}
.x5b{left:503.587500px;}
.x11{left:506.613000px;}
.x20{left:508.807233px;}
.x19{left:516.590775px;}
.x1b{left:522.145899px;}
.x21{left:528.392673px;}
.x49{left:535.968000px;}
.x15{left:552.955514px;}
.x14{left:560.454174px;}
.xb{left:571.081500px;}
.xe{left:580.582500px;}
.x7f{left:587.971500px;}
.x18{left:590.825961px;}
.x17{left:592.310660px;}
.x13{left:599.772389px;}
.x7d{left:602.641500px;}
.x3a{left:607.175523px;}
.xf{left:617.106000px;}
.x7e{left:633.474000px;}
.x39{left:641.812703px;}
.x10{left:658.627500px;}
.x16{left:661.415760px;}
@media print{
.v14{vertical-align:-35.563744pt;}
.v12{vertical-align:-30.133088pt;}
.v13{vertical-align:-23.202320pt;}
.v11{vertical-align:-13.340000pt;}
.v3{vertical-align:-12.361424pt;}
.v1{vertical-align:-7.973333pt;}
.va{vertical-align:-6.724752pt;}
.v15{vertical-align:-5.312000pt;}
.v10{vertical-align:-0.978576pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:3.658640pt;}
.vb{vertical-align:7.968000pt;}
.vd{vertical-align:10.352000pt;}
.v16{vertical-align:14.997333pt;}
.v4{vertical-align:18.560000pt;}
.vc{vertical-align:20.922667pt;}
.v6{vertical-align:26.726400pt;}
.v9{vertical-align:32.193850pt;}
.v2{vertical-align:35.946667pt;}
.vf{vertical-align:39.242667pt;}
.ve{vertical-align:42.026667pt;}
.v7{vertical-align:55.457280pt;}
.v8{vertical-align:82.406400pt;}
.ls7{letter-spacing:-7.488000pt;}
.ls2f{letter-spacing:-1.190253pt;}
.lsa{letter-spacing:-0.576000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000464pt;}
.ls25{letter-spacing:0.000479pt;}
.ls4c{letter-spacing:0.000501pt;}
.ls16{letter-spacing:0.000882pt;}
.ls24{letter-spacing:0.001518pt;}
.ls28{letter-spacing:0.001856pt;}
.ls42{letter-spacing:0.002079pt;}
.ls36{letter-spacing:0.002122pt;}
.ls4b{letter-spacing:0.002245pt;}
.ls3c{letter-spacing:0.002352pt;}
.ls39{letter-spacing:0.002906pt;}
.ls14{letter-spacing:0.003892pt;}
.ls48{letter-spacing:0.004212pt;}
.ls11{letter-spacing:0.004349pt;}
.ls5a{letter-spacing:0.005568pt;}
.ls1d{letter-spacing:0.006032pt;}
.ls1f{letter-spacing:0.006293pt;}
.ls1e{letter-spacing:0.006496pt;}
.ls1{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls5c{letter-spacing:2.125360pt;}
.lsd{letter-spacing:2.635446pt;}
.ls26{letter-spacing:2.652911pt;}
.ls10{letter-spacing:2.654903pt;}
.ls27{letter-spacing:2.655334pt;}
.ls53{letter-spacing:2.655711pt;}
.ls5d{letter-spacing:2.656473pt;}
.ls1c{letter-spacing:2.656693pt;}
.ls4d{letter-spacing:2.658245pt;}
.ls51{letter-spacing:2.660667pt;}
.ls43{letter-spacing:6.376239pt;}
.ls22{letter-spacing:7.127040pt;}
.ls49{letter-spacing:7.250245pt;}
.ls47{letter-spacing:7.255578pt;}
.ls21{letter-spacing:7.683840pt;}
.ls38{letter-spacing:7.735412pt;}
.ls37{letter-spacing:7.744479pt;}
.ls20{letter-spacing:7.832320pt;}
.ls29{letter-spacing:8.109402pt;}
.ls0{letter-spacing:9.408000pt;}
.ls3a{letter-spacing:10.397931pt;}
.ls35{letter-spacing:11.803145pt;}
.ls18{letter-spacing:11.808479pt;}
.ls15{letter-spacing:11.810079pt;}
.ls3e{letter-spacing:11.845812pt;}
.ls41{letter-spacing:11.851145pt;}
.ls34{letter-spacing:14.465014pt;}
.ls40{letter-spacing:14.502347pt;}
.ls44{letter-spacing:14.643376pt;}
.ls32{letter-spacing:14.757812pt;}
.ls3f{letter-spacing:14.859145pt;}
.ls4a{letter-spacing:17.413880pt;}
.ls45{letter-spacing:17.414022pt;}
.ls12{letter-spacing:17.418001pt;}
.lsc{letter-spacing:18.599200pt;}
.ls1b{letter-spacing:18.935578pt;}
.ls17{letter-spacing:19.183235pt;}
.ls30{letter-spacing:19.984479pt;}
.ls33{letter-spacing:20.183903pt;}
.ls3d{letter-spacing:20.226570pt;}
.ls46{letter-spacing:21.136479pt;}
.lse{letter-spacing:22.159711pt;}
.ls31{letter-spacing:22.640501pt;}
.ls4f{letter-spacing:23.788911pt;}
.ls50{letter-spacing:25.327334pt;}
.ls3b{letter-spacing:26.568239pt;}
.ls2d{letter-spacing:27.704122pt;}
.ls4e{letter-spacing:28.012911pt;}
.lsf{letter-spacing:28.101044pt;}
.ls13{letter-spacing:28.443145pt;}
.ls54{letter-spacing:31.331674pt;}
.ls1a{letter-spacing:33.492568pt;}
.ls52{letter-spacing:34.311903pt;}
.ls59{letter-spacing:110.487754pt;}
.ls2e{letter-spacing:145.124890pt;}
.ls5b{letter-spacing:152.551674pt;}
.ls2b{letter-spacing:165.060186pt;}
.ls2c{letter-spacing:165.062506pt;}
.ls55{letter-spacing:171.365482pt;}
.ls56{letter-spacing:177.040666pt;}
.ls23{letter-spacing:177.296843pt;}
.ls58{letter-spacing:193.321498pt;}
.ls19{letter-spacing:341.116911pt;}
.ls57{letter-spacing:388.555066pt;}
.ws48{word-spacing:-34.611401pt;}
.ws49{word-spacing:-28.118362pt;}
.ws88{word-spacing:-14.760588pt;}
.ws18{word-spacing:-13.283467pt;}
.ws27{word-spacing:-13.262246pt;}
.ws5{word-spacing:-12.992000pt;}
.ws6{word-spacing:-12.928000pt;}
.ws7{word-spacing:-12.800000pt;}
.ws2{word-spacing:-12.736000pt;}
.ws4{word-spacing:-12.672000pt;}
.ws85{word-spacing:-12.028410pt;}
.wsc4{word-spacing:-11.149522pt;}
.ws66{word-spacing:-10.626800pt;}
.ws6e{word-spacing:-10.319360pt;}
.wsf8{word-spacing:-9.489067pt;}
.ws8d{word-spacing:-9.298400pt;}
.wsb9{word-spacing:-5.887232pt;}
.ws0{word-spacing:-5.504000pt;}
.ws4b{word-spacing:-2.669709pt;}
.ws103{word-spacing:-2.125360pt;}
.wsad{word-spacing:-1.630335pt;}
.wsc{word-spacing:-1.408000pt;}
.wse6{word-spacing:-1.373440pt;}
.wsf2{word-spacing:-1.009543pt;}
.wscb{word-spacing:-0.903276pt;}
.wsf5{word-spacing:-0.850142pt;}
.ws13b{word-spacing:-0.807637pt;}
.ws1c{word-spacing:-0.765133pt;}
.ws114{word-spacing:-0.595101pt;}
.ws39{word-spacing:-0.531339pt;}
.ws83{word-spacing:-0.478205pt;}
.ws8a{word-spacing:-0.443482pt;}
.ws8b{word-spacing:-0.425071pt;}
.ws1{word-spacing:-0.384000pt;}
.ws5b{word-spacing:-0.318803pt;}
.ws53{word-spacing:-0.265669pt;}
.ws8{word-spacing:-0.256000pt;}
.wsc6{word-spacing:-0.212535pt;}
.ws12{word-spacing:-0.192000pt;}
.wscc{word-spacing:-0.159402pt;}
.ws11{word-spacing:-0.128000pt;}
.ws101{word-spacing:-0.106268pt;}
.ws19{word-spacing:-0.047821pt;}
.ws11d{word-spacing:-0.042507pt;}
.wsd3{word-spacing:-0.037194pt;}
.ws9b{word-spacing:-0.037120pt;}
.wsa{word-spacing:0.000000pt;}
.ws9f{word-spacing:0.042507pt;}
.ws10{word-spacing:0.064000pt;}
.wsb8{word-spacing:0.116895pt;}
.ws13{word-spacing:0.192000pt;}
.wsa3{word-spacing:0.318803pt;}
.ws3{word-spacing:0.512000pt;}
.ws86{word-spacing:0.584473pt;}
.wsf3{word-spacing:0.637606pt;}
.ws131{word-spacing:0.637608pt;}
.ws98{word-spacing:0.903276pt;}
.ws81{word-spacing:1.009543pt;}
.ws141{word-spacing:1.020173pt;}
.wsda{word-spacing:1.168945pt;}
.wse5{word-spacing:1.190253pt;}
.ws3a{word-spacing:1.328347pt;}
.wsac{word-spacing:1.335635pt;}
.ws12f{word-spacing:1.487752pt;}
.ws46{word-spacing:1.594016pt;}
.wsf9{word-spacing:1.615274pt;}
.wsdb{word-spacing:1.700284pt;}
.wsdf{word-spacing:1.753418pt;}
.wsec{word-spacing:1.912819pt;}
.wsa7{word-spacing:2.019087pt;}
.wsea{word-spacing:2.072221pt;}
.wsdd{word-spacing:2.125355pt;}
.ws2a{word-spacing:2.178489pt;}
.ws36{word-spacing:2.231622pt;}
.wsb0{word-spacing:2.284756pt;}
.wsae{word-spacing:2.307830pt;}
.ws5f{word-spacing:2.337890pt;}
.ws130{word-spacing:2.380403pt;}
.ws3c{word-spacing:2.391024pt;}
.ws52{word-spacing:2.444158pt;}
.ws89{word-spacing:2.497292pt;}
.ws28{word-spacing:2.550426pt;}
.ws123{word-spacing:2.550432pt;}
.ws77{word-spacing:2.599230pt;}
.ws79{word-spacing:2.603559pt;}
.ws29{word-spacing:2.656693pt;}
.ws124{word-spacing:2.720461pt;}
.ws25{word-spacing:2.725786pt;}
.ws13e{word-spacing:2.747239pt;}
.ws140{word-spacing:2.762968pt;}
.ws57{word-spacing:2.816095pt;}
.wsa4{word-spacing:2.869229pt;}
.ws50{word-spacing:2.975497pt;}
.ws4f{word-spacing:3.028630pt;}
.ws6d{word-spacing:3.081764pt;}
.ws125{word-spacing:3.103026pt;}
.ws3e{word-spacing:3.134898pt;}
.ws21{word-spacing:3.203994pt;}
.wse4{word-spacing:3.230547pt;}
.wsbd{word-spacing:3.294300pt;}
.ws2d{word-spacing:3.347434pt;}
.ws1d{word-spacing:3.395277pt;}
.ws80{word-spacing:3.400567pt;}
.ws3f{word-spacing:3.506835pt;}
.ws55{word-spacing:3.559969pt;}
.ws7a{word-spacing:3.613103pt;}
.wsc7{word-spacing:3.678006pt;}
.ws11a{word-spacing:3.698126pt;}
.wsca{word-spacing:3.825638pt;}
.ws116{word-spacing:3.868155pt;}
.ws118{word-spacing:3.881969pt;}
.wsc1{word-spacing:4.026115pt;}
.wsc3{word-spacing:4.033897pt;}
.wsc5{word-spacing:4.038174pt;}
.ws20{word-spacing:4.064768pt;}
.ws111{word-spacing:4.208213pt;}
.ws54{word-spacing:4.250709pt;}
.ws70{word-spacing:4.250720pt;}
.wsd{word-spacing:4.288000pt;}
.ws117{word-spacing:4.293227pt;}
.ws60{word-spacing:4.303843pt;}
.wse{word-spacing:4.416000pt;}
.wsbb{word-spacing:4.516379pt;}
.wsc0{word-spacing:4.569513pt;}
.ws90{word-spacing:4.622646pt;}
.wse8{word-spacing:4.633285pt;}
.ws2c{word-spacing:4.675780pt;}
.ws7f{word-spacing:4.728914pt;}
.ws5a{word-spacing:4.835182pt;}
.ws84{word-spacing:4.888316pt;}
.ws59{word-spacing:4.941450pt;}
.wsf{word-spacing:5.120000pt;}
.wseb{word-spacing:5.207119pt;}
.wsaa{word-spacing:5.217746pt;}
.wsde{word-spacing:5.266367pt;}
.ws67{word-spacing:5.285374pt;}
.ws45{word-spacing:5.300633pt;}
.ws17{word-spacing:5.313387pt;}
.ws105{word-spacing:5.313400pt;}
.ws91{word-spacing:5.366521pt;}
.wsb5{word-spacing:5.367230pt;}
.ws11e{word-spacing:5.440922pt;}
.ws1f{word-spacing:5.451571pt;}
.ws7d{word-spacing:5.472788pt;}
.wsb7{word-spacing:5.486006pt;}
.wsb6{word-spacing:5.489633pt;}
.ws129{word-spacing:5.525936pt;}
.wsef{word-spacing:5.579056pt;}
.ws32{word-spacing:5.683569pt;}
.ws33{word-spacing:5.685324pt;}
.ws13a{word-spacing:5.695965pt;}
.wsff{word-spacing:5.738458pt;}
.ws139{word-spacing:5.738472pt;}
.ws7e{word-spacing:5.791591pt;}
.ws15{word-spacing:5.844747pt;}
.ws47{word-spacing:5.897859pt;}
.ws41{word-spacing:5.950993pt;}
.wse7{word-spacing:5.951008pt;}
.ws22{word-spacing:5.977600pt;}
.wsf6{word-spacing:6.110395pt;}
.wsc2{word-spacing:6.167812pt;}
.ws75{word-spacing:6.269796pt;}
.wsa2{word-spacing:6.376064pt;}
.ws37{word-spacing:6.429198pt;}
.ws92{word-spacing:6.535466pt;}
.wsc8{word-spacing:6.588599pt;}
.ws12b{word-spacing:6.588616pt;}
.ws11b{word-spacing:6.631123pt;}
.wsa0{word-spacing:6.673630pt;}
.ws40{word-spacing:6.694867pt;}
.wsd0{word-spacing:6.715970pt;}
.ws2e{word-spacing:6.748001pt;}
.ws95{word-spacing:6.801135pt;}
.ws112{word-spacing:6.886166pt;}
.ws113{word-spacing:6.928674pt;}
.wsba{word-spacing:7.013670pt;}
.wsd2{word-spacing:7.160932pt;}
.wsd4{word-spacing:7.173072pt;}
.ws58{word-spacing:7.279340pt;}
.ws128{word-spacing:7.353746pt;}
.wsfb{word-spacing:7.396253pt;}
.ws10f{word-spacing:7.438760pt;}
.ws24{word-spacing:7.603507pt;}
.ws64{word-spacing:7.810678pt;}
.wsd6{word-spacing:7.852563pt;}
.ws71{word-spacing:7.863812pt;}
.ws2b{word-spacing:7.916946pt;}
.ws63{word-spacing:7.970080pt;}
.wsa8{word-spacing:8.129482pt;}
.ws4a{word-spacing:8.169164pt;}
.ws4c{word-spacing:8.182615pt;}
.ws56{word-spacing:8.235749pt;}
.ws99{word-spacing:8.342017pt;}
.wsab{word-spacing:8.354301pt;}
.ws5c{word-spacing:8.448285pt;}
.ws51{word-spacing:8.554553pt;}
.ws126{word-spacing:8.586454pt;}
.wsed{word-spacing:8.713954pt;}
.ws10e{word-spacing:8.713976pt;}
.wsf0{word-spacing:8.767088pt;}
.ws10d{word-spacing:8.798990pt;}
.ws9a{word-spacing:8.873356pt;}
.ws61{word-spacing:8.926490pt;}
.ws13c{word-spacing:9.002035pt;}
.wsaf{word-spacing:9.186301pt;}
.ws3b{word-spacing:9.192159pt;}
.ws115{word-spacing:9.224062pt;}
.ws35{word-spacing:9.298427pt;}
.wsd8{word-spacing:9.388563pt;}
.ws44{word-spacing:9.394091pt;}
.ws42{word-spacing:9.404694pt;}
.wsb{word-spacing:9.472000pt;}
.wsa5{word-spacing:9.510962pt;}
.ws107{word-spacing:9.563588pt;}
.wsfd{word-spacing:9.564096pt;}
.ws9{word-spacing:9.664000pt;}
.ws8f{word-spacing:9.723498pt;}
.wsb4{word-spacing:9.892829pt;}
.ws137{word-spacing:9.946685pt;}
.ws134{word-spacing:9.984118pt;}
.wsee{word-spacing:10.042301pt;}
.ws1e{word-spacing:10.042368pt;}
.wsf1{word-spacing:10.095435pt;}
.wsfc{word-spacing:10.148569pt;}
.ws74{word-spacing:10.254836pt;}
.ws8e{word-spacing:10.307970pt;}
.wsfe{word-spacing:10.361104pt;}
.ws12a{word-spacing:10.371757pt;}
.ws6b{word-spacing:10.414238pt;}
.ws122{word-spacing:10.499278pt;}
.wsc9{word-spacing:10.510006pt;}
.ws121{word-spacing:10.541786pt;}
.ws65{word-spacing:10.626773pt;}
.wsa9{word-spacing:10.633180pt;}
.ws94{word-spacing:11.051844pt;}
.wscf{word-spacing:11.158112pt;}
.wsa6{word-spacing:11.211246pt;}
.ws132{word-spacing:11.221901pt;}
.ws7b{word-spacing:11.317514pt;}
.wsb2{word-spacing:11.370647pt;}
.wscd{word-spacing:11.476915pt;}
.ws142{word-spacing:11.604466pt;}
.ws34{word-spacing:11.636317pt;}
.wsd5{word-spacing:11.757413pt;}
.ws68{word-spacing:12.061388pt;}
.wsd7{word-spacing:12.114522pt;}
.ws2f{word-spacing:12.167655pt;}
.wsdc{word-spacing:12.327057pt;}
.wsd9{word-spacing:12.645860pt;}
.ws14{word-spacing:12.752160pt;}
.ws4d{word-spacing:12.805262pt;}
.ws4e{word-spacing:12.858396pt;}
.ws10b{word-spacing:12.879682pt;}
.ws3d{word-spacing:12.911530pt;}
.ws7c{word-spacing:13.070931pt;}
.wse0{word-spacing:13.124065pt;}
.ws97{word-spacing:13.283467pt;}
.ws13f{word-spacing:13.347261pt;}
.wsbe{word-spacing:13.442868pt;}
.ws31{word-spacing:13.496002pt;}
.ws133{word-spacing:13.644811pt;}
.wsce{word-spacing:13.708538pt;}
.ws12e{word-spacing:13.772333pt;}
.ws5e{word-spacing:13.921073pt;}
.ws102{word-spacing:14.239876pt;}
.ws11f{word-spacing:14.367434pt;}
.ws87{word-spacing:14.452412pt;}
.ws119{word-spacing:14.452448pt;}
.ws6c{word-spacing:14.664947pt;}
.wsd1{word-spacing:14.824349pt;}
.ws10c{word-spacing:14.835013pt;}
.ws38{word-spacing:15.143152pt;}
.ws82{word-spacing:15.302554pt;}
.wsb1{word-spacing:15.304673pt;}
.ws100{word-spacing:15.355687pt;}
.ws72{word-spacing:15.568223pt;}
.ws30{word-spacing:15.674491pt;}
.ws78{word-spacing:15.827140pt;}
.wsbf{word-spacing:15.833892pt;}
.ws26{word-spacing:15.940160pt;}
.ws136{word-spacing:16.322765pt;}
.ws8c{word-spacing:16.471499pt;}
.ws93{word-spacing:16.577766pt;}
.ws12c{word-spacing:17.172909pt;}
.ws73{word-spacing:17.215373pt;}
.ws11c{word-spacing:17.215416pt;}
.ws43{word-spacing:17.470459pt;}
.ws96{word-spacing:17.587310pt;}
.ws69{word-spacing:17.640444pt;}
.wsf4{word-spacing:17.693578pt;}
.ws110{word-spacing:18.023053pt;}
.ws109{word-spacing:18.065560pt;}
.ws16{word-spacing:18.543719pt;}
.ws5d{word-spacing:18.649987pt;}
.ws6a{word-spacing:18.968790pt;}
.ws62{word-spacing:19.075058pt;}
.ws127{word-spacing:19.170747pt;}
.ws12d{word-spacing:19.298269pt;}
.wsb3{word-spacing:19.371379pt;}
.ws23{word-spacing:19.510886pt;}
.ws13d{word-spacing:19.595819pt;}
.ws76{word-spacing:19.917503pt;}
.ws138{word-spacing:20.530978pt;}
.ws135{word-spacing:20.573485pt;}
.wse9{word-spacing:20.669074pt;}
.wsbc{word-spacing:20.987877pt;}
.wsa1{word-spacing:24.288031pt;}
.ws120{word-spacing:24.951726pt;}
.ws1b{word-spacing:25.440666pt;}
.ws1a{word-spacing:26.684006pt;}
.ws10a{word-spacing:28.649853pt;}
.ws6f{word-spacing:46.134128pt;}
.wsfa{word-spacing:58.060800pt;}
.ws104{word-spacing:60.238203pt;}
.ws106{word-spacing:63.760800pt;}
.ws108{word-spacing:69.074200pt;}
.wsf7{word-spacing:92.262400pt;}
.wse2{word-spacing:114.885008pt;}
.ws9e{word-spacing:162.936236pt;}
.ws9d{word-spacing:165.913538pt;}
.ws9c{word-spacing:183.295015pt;}
.wse1{word-spacing:246.768823pt;}
.wse3{word-spacing:407.769418pt;}
._e{margin-left:-1369.096960pt;}
._1d{margin-left:-168.755200pt;}
._1c{margin-left:-165.922133pt;}
._18{margin-left:-160.768000pt;}
._17{margin-left:-157.457067pt;}
._1e{margin-left:-155.579733pt;}
._15{margin-left:-6.854269pt;}
._7{margin-left:-5.558496pt;}
._6{margin-left:-4.463256pt;}
._12{margin-left:-3.400567pt;}
._2{margin-left:-2.092800pt;}
._0{margin-left:-1.152000pt;}
._1{width:1.280000pt;}
._8{width:2.656693pt;}
._4{width:6.144000pt;}
._3{width:7.424000pt;}
._5{width:8.384000pt;}
._3a{width:14.239912pt;}
._d{width:15.461955pt;}
._c{width:16.512657pt;}
._13{width:17.852979pt;}
._39{width:18.968158pt;}
._b{width:20.565121pt;}
._9{width:21.678618pt;}
._19{width:24.484147pt;}
._a{width:27.204608pt;}
._11{width:29.755040pt;}
._16{width:33.198123pt;}
._1f{width:36.003598pt;}
._f{width:39.472944pt;}
._33{width:68.479099pt;}
._1b{width:71.270400pt;}
._20{width:77.958205pt;}
._29{width:79.701000pt;}
._1a{width:81.817600pt;}
._2b{width:85.014400pt;}
._35{width:90.327800pt;}
._24{width:95.641200pt;}
._2a{width:100.954600pt;}
._2d{width:104.397683pt;}
._37{width:106.863101pt;}
._21{width:110.433706pt;}
._2f{width:111.581400pt;}
._31{width:114.808985pt;}
._22{width:115.747106pt;}
._38{width:122.803301pt;}
._2e{width:131.092205pt;}
._26{width:133.430101pt;}
._2c{width:136.868353pt;}
._14{width:138.255760pt;}
._32{width:142.394987pt;}
._25{width:149.370301pt;}
._27{width:152.807153pt;}
._23{width:158.806899pt;}
._30{width:168.166851pt;}
._34{width:172.381667pt;}
._36{width:177.419942pt;}
._28{width:191.282400pt;}
._10{width:286.380800pt;}
.fs8{font-size:21.640960pt;}
.fsb{font-size:29.866667pt;}
.fsc{font-size:31.880533pt;}
.fsa{font-size:34.133333pt;}
.fs9{font-size:37.098656pt;}
.fs7{font-size:37.120000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs2{font-size:58.447467pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y1a4{bottom:1.723947pt;}
.y18d{bottom:2.667733pt;}
.yf7{bottom:2.834808pt;}
.y80{bottom:5.142280pt;}
.ydd{bottom:10.833124pt;}
.y198{bottom:10.988693pt;}
.y18c{bottom:11.116693pt;}
.y1a3{bottom:11.366613pt;}
.y104{bottom:14.366136pt;}
.yf8{bottom:15.686100pt;}
.ye7{bottom:17.700208pt;}
.y85{bottom:18.061664pt;}
.y165{bottom:18.105744pt;}
.y1a5{bottom:18.444800pt;}
.y18e{bottom:20.391680pt;}
.y88{bottom:22.205416pt;}
.yfa{bottom:23.209164pt;}
.y103{bottom:23.544056pt;}
.ye3{bottom:25.654792pt;}
.y197{bottom:27.404160pt;}
.y82{bottom:28.411648pt;}
.y1a8{bottom:29.117760pt;}
.y7e{bottom:30.724804pt;}
.y15b{bottom:31.369300pt;}
.y192{bottom:31.898987pt;}
.y102{bottom:32.721976pt;}
.y194{bottom:33.305173pt;}
.y84{bottom:34.013984pt;}
.yf9{bottom:34.345164pt;}
.y196{bottom:36.798933pt;}
.y87{bottom:38.150080pt;}
.y81{bottom:39.547648pt;}
.y7d{bottom:41.860804pt;}
.y101{bottom:41.899896pt;}
.yd9{bottom:42.346844pt;}
.y164{bottom:44.302024pt;}
.y1a6{bottom:45.811200pt;}
.y195{bottom:46.186453pt;}
.ye4{bottom:48.541012pt;}
.ye6{bottom:48.708632pt;}
.y83{bottom:50.569504pt;}
.y18f{bottom:51.265280pt;}
.y86{bottom:53.165120pt;}
.yf3{bottom:60.011904pt;}
.yde{bottom:60.138228pt;}
.y161{bottom:63.282292pt;}
.yfb{bottom:64.406564pt;}
.y166{bottom:66.278572pt;}
.yd8{bottom:67.874152pt;}
.y1a9{bottom:68.101013pt;}
.yda{bottom:70.577648pt;}
.yf0{bottom:72.166036pt;}
.yf4{bottom:72.901824pt;}
.yf2{bottom:73.771476pt;}
.y1a7{bottom:73.792000pt;}
.ye5{bottom:77.385804pt;}
.yad{bottom:78.215088pt;}
.ye0{bottom:78.687440pt;}
.yef{bottom:83.302036pt;}
.y9e{bottom:83.862664pt;}
.y190{bottom:84.024747pt;}
.yf6{bottom:84.662600pt;}
.yf1{bottom:84.907476pt;}
.y9a{bottom:87.572460pt;}
.y163{bottom:88.135060pt;}
.yfc{bottom:90.232804pt;}
.y19b{bottom:91.543787pt;}
.ya8{bottom:94.336072pt;}
.yee{bottom:94.438036pt;}
.yf5{bottom:95.798600pt;}
.ya7{bottom:97.340356pt;}
.y19e{bottom:98.456213pt;}
.y8f{bottom:98.494168pt;}
.y91{bottom:98.788036pt;}
.y40{bottom:100.740000pt;}
.y16b{bottom:100.889333pt;}
.y14f{bottom:100.926264pt;}
.y9c{bottom:101.947412pt;}
.ya4{bottom:102.184168pt;}
.ye8{bottom:103.041333pt;}
.ya3{bottom:111.182172pt;}
.ye1{bottom:112.002292pt;}
.y3f{bottom:112.696000pt;}
.y16a{bottom:112.844000pt;}
.y1a2{bottom:113.455253pt;}
.y8e{bottom:113.546948pt;}
.ydc{bottom:114.619136pt;}
.y90{bottom:114.740356pt;}
.y19c{bottom:114.942187pt;}
.y199{bottom:114.996000pt;}
.y162{bottom:115.255744pt;}
.y191{bottom:116.564587pt;}
.y69{bottom:116.680000pt;}
.y12d{bottom:116.681333pt;}
.y193{bottom:116.777067pt;}
.y7a{bottom:117.263124pt;}
.y96{bottom:118.137068pt;}
.y7b{bottom:120.077516pt;}
.y1d3{bottom:120.665333pt;}
.y1a1{bottom:122.055253pt;}
.y3e{bottom:124.650667pt;}
.yd6{bottom:126.952000pt;}
.yec{bottom:128.259344pt;}
.y14e{bottom:130.424716pt;}
.ydf{bottom:130.437708pt;}
.y1a0{bottom:130.644800pt;}
.y8b{bottom:132.553856pt;}
.y68{bottom:132.621333pt;}
.y8d{bottom:132.856424pt;}
.y100{bottom:133.744752pt;}
.ya6{bottom:136.239912pt;}
.y147{bottom:136.754667pt;}
.y19d{bottom:137.273920pt;}
.y95{bottom:137.472412pt;}
.yed{bottom:137.539344pt;}
.y6d{bottom:138.224092pt;}
.y1d2{bottom:138.673333pt;}
.y18b{bottom:138.906667pt;}
.y19f{bottom:139.244800pt;}
.yeb{bottom:140.343064pt;}
.y15d{bottom:142.313208pt;}
.yff{bottom:142.922672pt;}
.y169{bottom:143.538632pt;}
.ya5{bottom:145.237916pt;}
.ye2{bottom:145.482560pt;}
.yaa{bottom:147.104240pt;}
.ydb{bottom:147.402708pt;}
.y8a{bottom:147.606636pt;}
.y3d{bottom:148.292000pt;}
.y12c{bottom:148.558667pt;}
.y67{bottom:148.561333pt;}
.y8c{bottom:148.799464pt;}
.y1d1{bottom:151.146667pt;}
.yfe{bottom:152.100592pt;}
.y76{bottom:154.887144pt;}
.yd7{bottom:160.515000pt;}
.yfd{bottom:161.278512pt;}
.ya2{bottom:161.466548pt;}
.y9b{bottom:162.035760pt;}
.y1d0{bottom:163.101333pt;}
.y3c{bottom:164.232000pt;}
.y12b{bottom:164.500000pt;}
.y66{bottom:164.501333pt;}
.y6f{bottom:170.880760pt;}
.y98{bottom:171.900284pt;}
.yea{bottom:173.299360pt;}
.y1cf{bottom:175.056000pt;}
.y71{bottom:176.045544pt;}
.y14c{bottom:178.257084pt;}
.y3b{bottom:180.172000pt;}
.y12a{bottom:180.440000pt;}
.y65{bottom:180.441333pt;}
.y73{bottom:181.127040pt;}
.y79{bottom:182.269524pt;}
.y74{bottom:185.099808pt;}
.y15f{bottom:186.739584pt;}
.y1ce{bottom:187.012000pt;}
.y77{bottom:187.204628pt;}
.ya9{bottom:190.995624pt;}
.y160{bottom:192.539584pt;}
.y70{bottom:194.234344pt;}
.yac{bottom:194.844852pt;}
.y3a{bottom:196.112000pt;}
.y129{bottom:196.380000pt;}
.y64{bottom:196.381333pt;}
.y72{bottom:197.047112pt;}
.y1cd{bottom:198.966667pt;}
.y14b{bottom:199.384628pt;}
.y6e{bottom:200.137352pt;}
.y153{bottom:206.568392pt;}
.y1cc{bottom:210.921333pt;}
.y97{bottom:211.144940pt;}
.y39{bottom:212.052000pt;}
.y128{bottom:212.320000pt;}
.y63{bottom:212.321333pt;}
.y168{bottom:215.630312pt;}
.y75{bottom:217.452440pt;}
.y94{bottom:222.577784pt;}
.y1cb{bottom:222.877333pt;}
.y127{bottom:223.680000pt;}
.y15e{bottom:223.822812pt;}
.ya0{bottom:225.240645pt;}
.y38{bottom:227.992000pt;}
.y126{bottom:228.260000pt;}
.yc7{bottom:228.262667pt;}
.y62{bottom:233.100000pt;}
.y6c{bottom:234.445164pt;}
.y6b{bottom:234.445744pt;}
.y1ca{bottom:235.364000pt;}
.y99{bottom:235.792620pt;}
.y93{bottom:237.989776pt;}
.y9f{bottom:239.495804pt;}
.y157{bottom:242.903884pt;}
.y78{bottom:243.434584pt;}
.y37{bottom:243.933333pt;}
.y125{bottom:244.200000pt;}
.yc6{bottom:244.202667pt;}
.y7c{bottom:246.795684pt;}
.y149{bottom:247.672992pt;}
.y167{bottom:247.740388pt;}
.y9d{bottom:251.355412pt;}
.y89{bottom:252.182724pt;}
.y20f{bottom:252.372000pt;}
.y154{bottom:253.719376pt;}
.ya1{bottom:254.497620pt;}
.y158{bottom:257.513736pt;}
.y61{bottom:258.933333pt;}
.y36{bottom:259.873333pt;}
.y155{bottom:260.045552pt;}
.y124{bottom:260.141333pt;}
.yc5{bottom:260.142667pt;}
.y92{bottom:260.229064pt;}
.y1c9{bottom:261.000000pt;}
.y7f{bottom:261.168200pt;}
.y14a{bottom:262.655552pt;}
.y20e{bottom:264.328000pt;}
.y15a{bottom:264.356576pt;}
.y148{bottom:272.949508pt;}
.y1c8{bottom:272.956000pt;}
.y156{bottom:274.361576pt;}
.y60{bottom:274.873333pt;}
.y35{bottom:275.813333pt;}
.y123{bottom:276.081333pt;}
.yc4{bottom:276.082667pt;}
.y20d{bottom:276.282667pt;}
.y159{bottom:278.663900pt;}
.yab{bottom:287.155564pt;}
.y20c{bottom:288.237333pt;}
.y5f{bottom:290.814667pt;}
.y152{bottom:291.305580pt;}
.y34{bottom:291.753333pt;}
.y122{bottom:292.021333pt;}
.yc3{bottom:292.022667pt;}
.y18a{bottom:296.297333pt;}
.y20b{bottom:300.193333pt;}
.y5e{bottom:306.754667pt;}
.y33{bottom:307.328000pt;}
.y121{bottom:307.961333pt;}
.yc2{bottom:307.964000pt;}
.y14d{bottom:311.774940pt;}
.y20a{bottom:312.148000pt;}
.y189{bottom:312.237333pt;}
.y1c7{bottom:315.413333pt;}
.y5d{bottom:322.694667pt;}
.y32{bottom:323.268000pt;}
.y120{bottom:323.901333pt;}
.yc1{bottom:323.904000pt;}
.y209{bottom:324.102667pt;}
.y188{bottom:328.177333pt;}
.yd5{bottom:329.416000pt;}
.y151{bottom:330.556964pt;}
.y1c6{bottom:331.354667pt;}
.y208{bottom:336.058667pt;}
.y5c{bottom:338.634667pt;}
.y31{bottom:339.208000pt;}
.y11f{bottom:339.840000pt;}
.yc0{bottom:339.844000pt;}
.y187{bottom:344.118667pt;}
.yd4{bottom:345.356000pt;}
.y1c5{bottom:347.294667pt;}
.y150{bottom:347.732620pt;}
.y207{bottom:348.013333pt;}
.y15c{bottom:351.632888pt;}
.y5b{bottom:354.574667pt;}
.y30{bottom:355.149333pt;}
.y11e{bottom:355.780000pt;}
.ybf{bottom:355.784000pt;}
.y206{bottom:359.969333pt;}
.y186{bottom:360.058667pt;}
.yd3{bottom:361.296000pt;}
.y1c4{bottom:363.234667pt;}
.y5a{bottom:370.516000pt;}
.y2f{bottom:371.089333pt;}
.y11d{bottom:371.720000pt;}
.ybe{bottom:371.724000pt;}
.y205{bottom:371.924000pt;}
.y185{bottom:375.998667pt;}
.yd2{bottom:377.237333pt;}
.y1c3{bottom:379.174667pt;}
.y204{bottom:383.878667pt;}
.y59{bottom:386.456000pt;}
.y2e{bottom:387.029333pt;}
.y11c{bottom:387.660000pt;}
.ybd{bottom:387.664000pt;}
.y184{bottom:391.938667pt;}
.yd1{bottom:393.177333pt;}
.y1c2{bottom:395.114667pt;}
.y203{bottom:395.834667pt;}
.y58{bottom:402.396000pt;}
.y2d{bottom:402.969333pt;}
.ybc{bottom:403.466667pt;}
.y11b{bottom:403.601333pt;}
.y202{bottom:407.789333pt;}
.y183{bottom:407.878667pt;}
.yd0{bottom:409.117333pt;}
.y1c1{bottom:411.054667pt;}
.y57{bottom:418.336000pt;}
.y2c{bottom:418.909333pt;}
.ybb{bottom:419.408000pt;}
.y11a{bottom:419.541333pt;}
.y201{bottom:419.744000pt;}
.y182{bottom:424.156000pt;}
.ycf{bottom:425.057333pt;}
.y1c0{bottom:426.996000pt;}
.y200{bottom:431.700000pt;}
.y56{bottom:434.276000pt;}
.y2b{bottom:434.850667pt;}
.yba{bottom:435.348000pt;}
.y119{bottom:439.568000pt;}
.y181{bottom:440.096000pt;}
.yce{bottom:440.997333pt;}
.y1bf{bottom:442.936000pt;}
.y1ff{bottom:443.654667pt;}
.y117{bottom:448.680000pt;}
.y55{bottom:450.216000pt;}
.y2a{bottom:450.790667pt;}
.yb9{bottom:451.288000pt;}
.y1fe{bottom:455.610667pt;}
.y180{bottom:456.036000pt;}
.ycd{bottom:456.938667pt;}
.y118{bottom:457.665333pt;}
.y1be{bottom:458.876000pt;}
.y54{bottom:466.157333pt;}
.y29{bottom:466.730667pt;}
.yb8{bottom:467.228000pt;}
.y1fd{bottom:467.565333pt;}
.y17f{bottom:471.976000pt;}
.ycc{bottom:472.878667pt;}
.y116{bottom:478.576000pt;}
.y1bd{bottom:478.900000pt;}
.y1fc{bottom:479.520000pt;}
.y53{bottom:482.097333pt;}
.y28{bottom:482.670667pt;}
.yb7{bottom:483.168000pt;}
.y17e{bottom:487.917333pt;}
.y1fb{bottom:491.476000pt;}
.y115{bottom:494.516000pt;}
.ycb{bottom:495.722667pt;}
.y52{bottom:498.037333pt;}
.y27{bottom:498.610667pt;}
.yb6{bottom:499.108000pt;}
.y1bc{bottom:503.208000pt;}
.y1fa{bottom:503.430667pt;}
.y17d{bottom:503.857333pt;}
.y114{bottom:510.456000pt;}
.y51{bottom:513.977333pt;}
.y26{bottom:514.550667pt;}
.yb5{bottom:515.049333pt;}
.y1f9{bottom:515.385333pt;}
.y1bb{bottom:519.148000pt;}
.y17c{bottom:520.133333pt;}
.y113{bottom:526.396000pt;}
.yca{bottom:527.237333pt;}
.y1f8{bottom:527.341333pt;}
.y50{bottom:529.917333pt;}
.y25{bottom:530.492000pt;}
.yb4{bottom:535.036000pt;}
.y1ba{bottom:535.088000pt;}
.y146{bottom:535.318667pt;}
.y17b{bottom:536.074667pt;}
.y1f7{bottom:539.296000pt;}
.y112{bottom:542.337333pt;}
.yc9{bottom:543.177333pt;}
.y4f{bottom:545.857333pt;}
.y24{bottom:546.432000pt;}
.y1b9{bottom:551.029333pt;}
.y1f6{bottom:551.250667pt;}
.y145{bottom:551.258667pt;}
.y17a{bottom:552.014667pt;}
.y111{bottom:558.277333pt;}
.yb3{bottom:559.117333pt;}
.y4e{bottom:561.798667pt;}
.y23{bottom:562.372000pt;}
.y1f5{bottom:563.206667pt;}
.y1b8{bottom:566.869333pt;}
.y144{bottom:567.198667pt;}
.y179{bottom:567.954667pt;}
.yb2{bottom:575.057333pt;}
.y1f4{bottom:575.161333pt;}
.y4d{bottom:577.738667pt;}
.y22{bottom:578.312000pt;}
.y110{bottom:578.400000pt;}
.y1b7{bottom:582.809333pt;}
.y143{bottom:583.138667pt;}
.y178{bottom:583.894667pt;}
.y1f3{bottom:587.117333pt;}
.yc8{bottom:590.997333pt;}
.yb1{bottom:590.998667pt;}
.y4c{bottom:593.678667pt;}
.y21{bottom:594.252000pt;}
.y1b6{bottom:598.749333pt;}
.y1f2{bottom:599.072000pt;}
.y177{bottom:599.834667pt;}
.y10f{bottom:603.293333pt;}
.yb0{bottom:606.938667pt;}
.y142{bottom:609.278667pt;}
.y4b{bottom:609.618667pt;}
.y20{bottom:610.192000pt;}
.y1f1{bottom:611.026667pt;}
.y1b5{bottom:614.689333pt;}
.y176{bottom:615.774667pt;}
.y10e{bottom:619.234667pt;}
.yaf{bottom:622.878667pt;}
.y1f0{bottom:622.982667pt;}
.y4a{bottom:625.668000pt;}
.y1f{bottom:629.952000pt;}
.y1b4{bottom:630.630667pt;}
.y175{bottom:631.716000pt;}
.y1ef{bottom:634.937333pt;}
.y10d{bottom:635.174667pt;}
.y49{bottom:641.608000pt;}
.y141{bottom:642.708000pt;}
.y1b3{bottom:646.570667pt;}
.y1ee{bottom:646.892000pt;}
.y174{bottom:647.656000pt;}
.y10c{bottom:651.114667pt;}
.y1e{bottom:656.357333pt;}
.y48{bottom:657.548000pt;}
.y140{bottom:658.648000pt;}
.y1ed{bottom:658.848000pt;}
.y1b2{bottom:662.510667pt;}
.y173{bottom:663.596000pt;}
.yae{bottom:665.826667pt;}
.y10b{bottom:667.054667pt;}
.y1d{bottom:669.641333pt;}
.y1ec{bottom:670.802667pt;}
.y47{bottom:673.489333pt;}
.y13f{bottom:674.588000pt;}
.yd{bottom:677.600000pt;}
.y1b1{bottom:678.450667pt;}
.y172{bottom:679.536000pt;}
.y1eb{bottom:682.758667pt;}
.y1c{bottom:682.924000pt;}
.y10a{bottom:682.994667pt;}
.y46{bottom:689.429333pt;}
.y6a{bottom:689.737333pt;}
.y13e{bottom:690.528000pt;}
.y1b0{bottom:694.390667pt;}
.y1ea{bottom:694.713333pt;}
.y171{bottom:695.476000pt;}
.y1b{bottom:695.842667pt;}
.y109{bottom:698.934667pt;}
.y13d{bottom:706.469333pt;}
.y1e9{bottom:706.668000pt;}
.y1a{bottom:709.125333pt;}
.y45{bottom:709.949333pt;}
.y1af{bottom:710.330667pt;}
.yc{bottom:710.880000pt;}
.y170{bottom:711.753333pt;}
.y108{bottom:714.876000pt;}
.y1e8{bottom:718.624000pt;}
.y44{bottom:719.061333pt;}
.y19{bottom:722.409333pt;}
.y1ae{bottom:726.272000pt;}
.y16f{bottom:727.693333pt;}
.y1e7{bottom:730.578667pt;}
.y18{bottom:735.693333pt;}
.y13c{bottom:738.349333pt;}
.y1ad{bottom:742.212000pt;}
.y1e6{bottom:742.533333pt;}
.yb{bottom:744.160000pt;}
.y17{bottom:748.976000pt;}
.y43{bottom:749.450667pt;}
.y13b{bottom:754.289333pt;}
.y1e5{bottom:754.489333pt;}
.y107{bottom:757.801333pt;}
.y1ac{bottom:758.152000pt;}
.y16{bottom:762.260000pt;}
.y42{bottom:765.392000pt;}
.y1e4{bottom:766.444000pt;}
.y106{bottom:769.757333pt;}
.y13a{bottom:770.229333pt;}
.y16e{bottom:771.538667pt;}
.y15{bottom:775.544000pt;}
.ya{bottom:777.440000pt;}
.y1e3{bottom:778.400000pt;}
.y41{bottom:781.332000pt;}
.y105{bottom:781.712000pt;}
.y16d{bottom:783.494667pt;}
.y139{bottom:786.170667pt;}
.y14{bottom:788.826667pt;}
.y1e2{bottom:790.354667pt;}
.y16c{bottom:795.449333pt;}
.y1ab{bottom:800.034667pt;}
.y13{bottom:802.110667pt;}
.y1e1{bottom:802.309333pt;}
.ye9{bottom:805.622667pt;}
.y9{bottom:810.720000pt;}
.y1aa{bottom:811.990667pt;}
.y1e0{bottom:814.265333pt;}
.y138{bottom:818.050667pt;}
.y1df{bottom:826.220000pt;}
.y8{bottom:833.280000pt;}
.y137{bottom:833.990667pt;}
.y19a{bottom:835.900000pt;}
.y1de{bottom:838.174667pt;}
.y12{bottom:848.913333pt;}
.y136{bottom:849.930667pt;}
.y1dd{bottom:850.130667pt;}
.y1dc{bottom:862.085333pt;}
.y11{bottom:865.352000pt;}
.y135{bottom:865.870667pt;}
.y7{bottom:866.720000pt;}
.y1db{bottom:874.041333pt;}
.y134{bottom:881.812000pt;}
.y10{bottom:881.986667pt;}
.y1da{bottom:885.996000pt;}
.y6{bottom:889.280000pt;}
.y133{bottom:897.752000pt;}
.y1d9{bottom:897.950667pt;}
.y1d8{bottom:909.906667pt;}
.y132{bottom:913.692000pt;}
.y1d7{bottom:921.861333pt;}
.y5{bottom:922.560000pt;}
.yf{bottom:923.830667pt;}
.y131{bottom:929.632000pt;}
.y1d6{bottom:933.816000pt;}
.y4{bottom:945.120000pt;}
.y130{bottom:945.572000pt;}
.y1d5{bottom:945.772000pt;}
.y1d4{bottom:957.726667pt;}
.ye{bottom:961.024000pt;}
.y12f{bottom:961.512000pt;}
.y3{bottom:967.840000pt;}
.y12e{bottom:977.453333pt;}
.y2{bottom:990.400000pt;}
.y1{bottom:1013.120000pt;}
.h22{height:21.743750pt;}
.h21{height:24.850000pt;}
.h12{height:27.008836pt;}
.hf{height:27.024375pt;}
.h1f{height:27.026695pt;}
.h9{height:29.244954pt;}
.ha{height:29.452954pt;}
.h26{height:29.458287pt;}
.h24{height:29.499997pt;}
.h1e{height:29.822295pt;}
.h11{height:30.947959pt;}
.h8{height:33.187635pt;}
.h7{height:33.426739pt;}
.h25{height:36.197888pt;}
.h15{height:36.290431pt;}
.h6{height:36.556100pt;}
.hc{height:38.043849pt;}
.hd{height:39.850400pt;}
.h5{height:40.211857pt;}
.h2{height:42.656250pt;}
.h10{height:45.584375pt;}
.h1c{height:45.799037pt;}
.h18{height:46.325895pt;}
.h1b{height:54.876100pt;}
.h14{height:59.218225pt;}
.h1a{height:64.645895pt;}
.h19{height:68.545703pt;}
.hb{height:73.990515pt;}
.h4{height:87.734861pt;}
.h13{height:109.430775pt;}
.h20{height:124.128000pt;}
.h23{height:152.710400pt;}
.h16{height:168.028320pt;}
.h17{height:182.990000pt;}
.he{height:298.876320pt;}
.h1d{height:363.527760pt;}
.h3{height:1056.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:263.054933pt;}
.w7{width:263.799467pt;}
.w5{width:272.508360pt;}
.w4{width:296.090000pt;}
.w6{width:303.387560pt;}
.w3{width:613.383640pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w2{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:3.429076pt;}
.x6f{left:5.736548pt;}
.x3d{left:7.193392pt;}
.x4d{left:11.207456pt;}
.x75{left:13.658347pt;}
.x3c{left:14.838720pt;}
.x52{left:16.857932pt;}
.x25{left:17.828156pt;}
.x74{left:20.476373pt;}
.x4e{left:22.343456pt;}
.x66{left:25.490536pt;}
.x41{left:33.496160pt;}
.x6b{left:37.862516pt;}
.x60{left:39.646712pt;}
.x42{left:44.377308pt;}
.x63{left:50.198304pt;}
.x27{left:54.670684pt;}
.x26{left:56.672960pt;}
.x28{left:57.746772pt;}
.x4f{left:59.378660pt;}
.x4c{left:64.348332pt;}
.x8{left:65.285333pt;}
.x3{left:66.498667pt;}
.x6c{left:67.441472pt;}
.x2{left:69.941333pt;}
.x55{left:71.926667pt;}
.x1{left:75.520000pt;}
.x7{left:78.568000pt;}
.x43{left:82.666936pt;}
.x73{left:84.773973pt;}
.x62{left:88.203616pt;}
.x81{left:89.630667pt;}
.x6d{left:91.082040pt;}
.x71{left:94.143512pt;}
.x4a{left:96.404000pt;}
.x4b{left:97.546488pt;}
.x6a{left:99.854076pt;}
.x12{left:101.310667pt;}
.x69{left:102.585760pt;}
.x3f{left:104.590936pt;}
.x5d{left:109.049048pt;}
.x51{left:111.753704pt;}
.x50{left:114.242020pt;}
.x32{left:116.206132pt;}
.x5{left:117.318667pt;}
.x7c{left:118.823467pt;}
.x7b{left:119.846827pt;}
.x31{left:123.460656pt;}
.x22{left:124.737932pt;}
.x4{left:129.565333pt;}
.x59{left:133.684000pt;}
.x44{left:134.671012pt;}
.x33{left:136.619464pt;}
.x61{left:139.814568pt;}
.x30{left:142.288036pt;}
.x34{left:144.061444pt;}
.x45{left:152.187708pt;}
.x79{left:157.385920pt;}
.x67{left:164.090120pt;}
.x53{left:166.748840pt;}
.x38{left:173.081280pt;}
.x40{left:175.328200pt;}
.x35{left:178.408928pt;}
.x9{left:180.825333pt;}
.x72{left:188.704640pt;}
.x56{left:190.938667pt;}
.x78{left:195.452587pt;}
.x57{left:197.008000pt;}
.x68{left:197.921056pt;}
.x65{left:201.410104pt;}
.x5f{left:204.648824pt;}
.x46{left:206.673720pt;}
.x2e{left:214.831652pt;}
.x64{left:216.789152pt;}
.x7a{left:219.448960pt;}
.x47{left:225.793304pt;}
.x2c{left:228.218632pt;}
.x2a{left:230.761816pt;}
.x6e{left:232.283736pt;}
.x76{left:240.483840pt;}
.x54{left:241.805480pt;}
.xa{left:243.404000pt;}
.x48{left:245.831608pt;}
.x2b{left:249.756236pt;}
.x58{left:259.261333pt;}
.x77{left:261.971840pt;}
.x3e{left:278.328080pt;}
.x70{left:285.273928pt;}
.x82{left:288.348000pt;}
.x5a{left:295.538667pt;}
.x29{left:303.997604pt;}
.x2d{left:305.558152pt;}
.x36{left:318.577412pt;}
.x6{left:329.608000pt;}
.x2f{left:344.974256pt;}
.x24{left:375.581668pt;}
.x37{left:387.284212pt;}
.x23{left:388.341668pt;}
.x1a{left:400.317856pt;}
.xd{left:415.970667pt;}
.x1d{left:422.470492pt;}
.x80{left:424.324000pt;}
.xc{left:429.253333pt;}
.x5c{left:431.649333pt;}
.x3b{left:435.298667pt;}
.x1e{left:437.613944pt;}
.x1c{left:438.701444pt;}
.x1f{left:445.604024pt;}
.x5b{left:447.633333pt;}
.x11{left:450.322667pt;}
.x20{left:452.273096pt;}
.x19{left:459.191800pt;}
.x1b{left:464.129688pt;}
.x21{left:469.682376pt;}
.x49{left:476.416000pt;}
.x15{left:491.516012pt;}
.x14{left:498.181488pt;}
.xb{left:507.628000pt;}
.xe{left:516.073333pt;}
.x7f{left:522.641333pt;}
.x18{left:525.178632pt;}
.x17{left:526.498364pt;}
.x13{left:533.131012pt;}
.x7d{left:535.681333pt;}
.x3a{left:539.711576pt;}
.xf{left:548.538667pt;}
.x7e{left:563.088000pt;}
.x39{left:570.500180pt;}
.x10{left:585.446667pt;}
.x16{left:587.925120pt;}
}




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