
    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_0ab3c0615263b998596b8867.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.944000;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_893e0f0badfec66b6a34fad8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_b1f1ddcc394d668e33f5e95c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9394d60235a10edaa319f098.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_61002425b03433c9a9200d76.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_99875c69ed1a15fc73c983d4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.077000;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_0dfcf56c967df869eb0fd4fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.677246;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_a6d0b46defed8f9a60d76288.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924000;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_632cc04b97e3c325a58abe3e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.126000;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_c46108ca55e3ab79e12ef625.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_99ab0a65c446ca25e60d1aaa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.926758;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_5e79821d5ea65eaa9f2f1f32.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0ab3c0615263b998596b8867.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.944000;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_0ab3c0615263b998596b8867.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.944000;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_893e0f0badfec66b6a34fad8.woff2')format("woff");}.fff{font-family:fff;line-height:1.075000;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_7cae2041e94ff53c8d428bb5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.732000;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_9d261bdced2c69cf65c11046.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.068000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_25adca2e895492a4efd61c44.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.916992;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_b5e861f8db6ac347aac651e9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.922000;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_5775881514a656cae755a4ee.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.954000;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_9394d60235a10edaa319f098.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a74645f451c70b4953e8e43e.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;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_0ab3c0615263b998596b8867.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.944000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_99875c69ed1a15fc73c983d4.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.077000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_8e23cc91839bd4ba65773d70.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_0dfcf56c967df869eb0fd4fd.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_66d6a02d22ee2eb7babd7735.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.694336;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:ff1c;src:url('chunks/assets/font_a6d0b46defed8f9a60d76288.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.924000;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:ff1d;src:url('chunks/assets/font_b5f26154954b667c861875b4.woff2')format("woff");}.ff1d{font-family:ff1d;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;}
.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.246202,0.000000,-0.043411,0.246202,0,0);-ms-transform:matrix(0.246202,0.000000,-0.043411,0.246202,0,0);-webkit-transform:matrix(0.246202,0.000000,-0.043411,0.246202,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);}
.v5{vertical-align:-17.982000px;}
.v3{vertical-align:-13.986000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:13.986000px;}
.v1{vertical-align:17.982000px;}
.v2{vertical-align:21.978000px;}
.ls81{letter-spacing:-2.925000px;}
.ls5b{letter-spacing:-1.620000px;}
.ls5d{letter-spacing:-1.512000px;}
.ls5c{letter-spacing:-1.350000px;}
.ls6f{letter-spacing:-1.296000px;}
.ls5a{letter-spacing:-1.080000px;}
.ls5{letter-spacing:-1.026000px;}
.ls3d{letter-spacing:-0.972000px;}
.ls4c{letter-spacing:-0.864000px;}
.ls38{letter-spacing:-0.810000px;}
.ls4d{letter-spacing:-0.756000px;}
.ls85{letter-spacing:-0.741000px;}
.ls59{letter-spacing:-0.702000px;}
.ls17{letter-spacing:-0.648000px;}
.ls3c{letter-spacing:-0.594000px;}
.ls63{letter-spacing:-0.585000px;}
.ls3a{letter-spacing:-0.540000px;}
.ls80{letter-spacing:-0.507000px;}
.lsf{letter-spacing:-0.486000px;}
.ls18{letter-spacing:-0.432000px;}
.ls16{letter-spacing:-0.378000px;}
.ls7c{letter-spacing:-0.351000px;}
.ls39{letter-spacing:-0.324000px;}
.ls3b{letter-spacing:-0.314820px;}
.ls82{letter-spacing:-0.312000px;}
.ls47{letter-spacing:-0.283338px;}
.ls84{letter-spacing:-0.273000px;}
.ls3e{letter-spacing:-0.270000px;}
.ls7f{letter-spacing:-0.234000px;}
.ls15{letter-spacing:-0.216000px;}
.ls7d{letter-spacing:-0.195000px;}
.ls64{letter-spacing:-0.180000px;}
.ls31{letter-spacing:-0.162000px;}
.ls3f{letter-spacing:-0.157410px;}
.ls86{letter-spacing:-0.156000px;}
.ls70{letter-spacing:-0.144000px;}
.ls69{letter-spacing:-0.135000px;}
.ls83{letter-spacing:-0.117000px;}
.ls37{letter-spacing:-0.108000px;}
.ls7e{letter-spacing:-0.078000px;}
.ls61{letter-spacing:-0.062964px;}
.ls40{letter-spacing:-0.054000px;}
.ls62{letter-spacing:-0.045000px;}
.ls7b{letter-spacing:-0.039000px;}
.ls4{letter-spacing:0.000000px;}
.ls5f{letter-spacing:0.000300px;}
.ls3{letter-spacing:0.000384px;}
.ls1{letter-spacing:0.000600px;}
.ls2e{letter-spacing:0.012000px;}
.ls6a{letter-spacing:0.031482px;}
.ls76{letter-spacing:0.039000px;}
.ls11{letter-spacing:0.054000px;}
.ls72{letter-spacing:0.058500px;}
.ls4e{letter-spacing:0.062964px;}
.ls78{letter-spacing:0.078000px;}
.ls48{letter-spacing:0.094446px;}
.ls2{letter-spacing:0.108000px;}
.ls19{letter-spacing:0.109666px;}
.ls6e{letter-spacing:0.125928px;}
.ls29{letter-spacing:0.141240px;}
.ls1f{letter-spacing:0.157410px;}
.ls6{letter-spacing:0.162000px;}
.ls20{letter-spacing:0.216000px;}
.ls1e{letter-spacing:0.220374px;}
.ls71{letter-spacing:0.234000px;}
.ls27{letter-spacing:0.243000px;}
.ls28{letter-spacing:0.244800px;}
.ls1a{letter-spacing:0.270000px;}
.ls46{letter-spacing:0.314820px;}
.ls8{letter-spacing:0.324000px;}
.ls6d{letter-spacing:0.346302px;}
.ls10{letter-spacing:0.378000px;}
.ls7a{letter-spacing:0.390000px;}
.ls75{letter-spacing:0.429000px;}
.ls13{letter-spacing:0.432000px;}
.ls49{letter-spacing:0.440748px;}
.ls57{letter-spacing:0.441000px;}
.ls56{letter-spacing:0.441600px;}
.ls73{letter-spacing:0.468000px;}
.ls23{letter-spacing:0.486000px;}
.ls45{letter-spacing:0.503712px;}
.ls6c{letter-spacing:0.526500px;}
.lsd{letter-spacing:0.540000px;}
.ls74{letter-spacing:0.546000px;}
.ls1d{letter-spacing:0.566676px;}
.ls65{letter-spacing:0.589200px;}
.ls7{letter-spacing:0.594000px;}
.ls12{letter-spacing:0.648000px;}
.ls5e{letter-spacing:0.652200px;}
.ls54{letter-spacing:0.699000px;}
.ls50{letter-spacing:0.702000px;}
.ls52{letter-spacing:0.719400px;}
.ls51{letter-spacing:0.726000px;}
.ls2a{letter-spacing:0.756000px;}
.ls35{letter-spacing:0.810000px;}
.ls53{letter-spacing:0.840000px;}
.ls67{letter-spacing:0.855000px;}
.ls34{letter-spacing:0.864000px;}
.lsb{letter-spacing:0.918000px;}
.ls68{letter-spacing:0.945000px;}
.ls2f{letter-spacing:0.972000px;}
.ls6b{letter-spacing:1.008000px;}
.ls36{letter-spacing:1.026000px;}
.ls1c{letter-spacing:1.039800px;}
.ls79{letter-spacing:1.053000px;}
.ls1b{letter-spacing:1.057200px;}
.lse{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.134000px;}
.ls77{letter-spacing:1.170000px;}
.lsa{letter-spacing:1.188000px;}
.ls14{letter-spacing:1.242000px;}
.ls9{letter-spacing:1.296000px;}
.ls22{letter-spacing:1.350000px;}
.ls66{letter-spacing:1.404000px;}
.ls21{letter-spacing:1.458000px;}
.ls24{letter-spacing:1.512000px;}
.ls32{letter-spacing:1.566000px;}
.ls43{letter-spacing:1.620000px;}
.ls2d{letter-spacing:1.728000px;}
.ls4a{letter-spacing:1.782000px;}
.ls2b{letter-spacing:1.890000px;}
.ls25{letter-spacing:1.944000px;}
.ls55{letter-spacing:1.998000px;}
.ls26{letter-spacing:2.106000px;}
.ls2c{letter-spacing:2.200800px;}
.ls44{letter-spacing:2.214000px;}
.ls30{letter-spacing:2.430000px;}
.ls60{letter-spacing:3.024000px;}
.lsc{letter-spacing:3.078000px;}
.ls33{letter-spacing:3.240000px;}
.ls42{letter-spacing:3.267600px;}
.ls4b{letter-spacing:3.294000px;}
.ls41{letter-spacing:3.300000px;}
.ls58{letter-spacing:3.456000px;}
.ls4f{letter-spacing:3.510000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-54.000000px;}
.wsbe{word-spacing:-45.000000px;}
.ws8a{word-spacing:-16.470000px;}
.ws3{word-spacing:-15.012000px;}
.ws31{word-spacing:-14.301000px;}
.wsad{word-spacing:-13.725000px;}
.wsc0{word-spacing:-13.365000px;}
.wsd4{word-spacing:-13.068000px;}
.wsbd{word-spacing:-12.960000px;}
.ws8f{word-spacing:-12.906000px;}
.wsd1{word-spacing:-12.852000px;}
.ws88{word-spacing:-12.744000px;}
.ws2d{word-spacing:-12.528000px;}
.wsac{word-spacing:-12.510000px;}
.wsab{word-spacing:-12.465000px;}
.ws68{word-spacing:-12.366000px;}
.ws65{word-spacing:-12.258000px;}
.wscf{word-spacing:-11.988000px;}
.wse5{word-spacing:-11.895000px;}
.ws90{word-spacing:-11.826000px;}
.ws2f{word-spacing:-11.718000px;}
.ws8c{word-spacing:-11.664000px;}
.ws89{word-spacing:-11.448000px;}
.ws8b{word-spacing:-11.286000px;}
.wsce{word-spacing:-11.178000px;}
.ws8d{word-spacing:-10.854000px;}
.wse6{word-spacing:-10.215000px;}
.ws8e{word-spacing:-10.206000px;}
.ws1{word-spacing:-8.349726px;}
.ws2b{word-spacing:-7.713090px;}
.ws62{word-spacing:-7.650126px;}
.ws67{word-spacing:-7.587162px;}
.wsd2{word-spacing:-7.492716px;}
.ws63{word-spacing:-7.461234px;}
.ws2c{word-spacing:-7.366788px;}
.ws2e{word-spacing:-7.303824px;}
.wsd3{word-spacing:-7.272342px;}
.ws66{word-spacing:-7.240860px;}
.ws69{word-spacing:-7.209378px;}
.wsd0{word-spacing:-7.177896px;}
.ws0{word-spacing:-7.146414px;}
.wsaa{word-spacing:-7.083450px;}
.ws33{word-spacing:-6.989004px;}
.wsd5{word-spacing:-6.934785px;}
.ws64{word-spacing:-6.863076px;}
.ws30{word-spacing:-6.831594px;}
.ws4{word-spacing:-6.807108px;}
.ws1f{word-spacing:-4.104000px;}
.wsdd{word-spacing:-3.888000px;}
.ws100{word-spacing:-3.627000px;}
.ws9d{word-spacing:-3.510000px;}
.wsb8{word-spacing:-3.420000px;}
.ws4e{word-spacing:-3.132000px;}
.wsb7{word-spacing:-3.105000px;}
.ws1b{word-spacing:-3.078000px;}
.ws14{word-spacing:-3.024000px;}
.wsf8{word-spacing:-3.003000px;}
.ws80{word-spacing:-2.970000px;}
.wse7{word-spacing:-2.964000px;}
.ws8{word-spacing:-2.916000px;}
.ws1e{word-spacing:-2.862000px;}
.ws3b{word-spacing:-2.808000px;}
.ws6c{word-spacing:-2.754000px;}
.wse0{word-spacing:-2.736000px;}
.wsef{word-spacing:-2.730000px;}
.wsc8{word-spacing:-2.700000px;}
.ws2a{word-spacing:-2.664000px;}
.ws85{word-spacing:-2.646000px;}
.ws12{word-spacing:-2.592000px;}
.ws4f{word-spacing:-2.538000px;}
.wsed{word-spacing:-2.535000px;}
.ws97{word-spacing:-2.484000px;}
.wsc7{word-spacing:-2.475000px;}
.wsa3{word-spacing:-2.376000px;}
.ws98{word-spacing:-2.322000px;}
.ws6{word-spacing:-2.268000px;}
.ws75{word-spacing:-2.106000px;}
.wsd8{word-spacing:-2.052000px;}
.ws49{word-spacing:-1.998000px;}
.wsb1{word-spacing:-1.944000px;}
.ws77{word-spacing:-1.890000px;}
.ws29{word-spacing:-1.860000px;}
.wsb6{word-spacing:-1.836000px;}
.wsf5{word-spacing:-1.794000px;}
.ws10{word-spacing:-1.782000px;}
.wsd9{word-spacing:-1.674000px;}
.wscc{word-spacing:-1.665000px;}
.wsc4{word-spacing:-1.566000px;}
.ws17{word-spacing:-1.512000px;}
.ws109{word-spacing:-1.482000px;}
.ws4a{word-spacing:-1.458000px;}
.ws5d{word-spacing:-1.404000px;}
.ws36{word-spacing:-1.350000px;}
.ws7{word-spacing:-1.296000px;}
.ws78{word-spacing:-1.188000px;}
.ws7a{word-spacing:-1.134000px;}
.ws106{word-spacing:-1.092000px;}
.ws9a{word-spacing:-1.080000px;}
.ws54{word-spacing:-1.026000px;}
.wsd{word-spacing:-0.972000px;}
.ws5e{word-spacing:-0.918000px;}
.ws50{word-spacing:-0.864000px;}
.wsfa{word-spacing:-0.858000px;}
.ws104{word-spacing:-0.819000px;}
.ws10b{word-spacing:-0.765000px;}
.ws5b{word-spacing:-0.756000px;}
.wsbc{word-spacing:-0.630000px;}
.wsdc{word-spacing:-0.594000px;}
.wsfd{word-spacing:-0.585000px;}
.ws5c{word-spacing:-0.540000px;}
.wsc{word-spacing:-0.432000px;}
.wse9{word-spacing:-0.390000px;}
.wsc2{word-spacing:-0.378000px;}
.ws102{word-spacing:-0.312000px;}
.wsd7{word-spacing:-0.270000px;}
.ws23{word-spacing:-0.216000px;}
.wse8{word-spacing:-0.195000px;}
.ws107{word-spacing:-0.156000px;}
.wsf0{word-spacing:-0.117000px;}
.ws26{word-spacing:-0.109666px;}
.ws4b{word-spacing:-0.108000px;}
.ws32{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws47{word-spacing:0.054000px;}
.wsfb{word-spacing:0.078000px;}
.ws39{word-spacing:0.108000px;}
.wscd{word-spacing:0.135000px;}
.ws43{word-spacing:0.162000px;}
.ws1a{word-spacing:0.216000px;}
.wsd6{word-spacing:0.270000px;}
.wsf6{word-spacing:0.312000px;}
.wsa{word-spacing:0.378000px;}
.ws105{word-spacing:0.507000px;}
.wsa5{word-spacing:0.540000px;}
.wsf7{word-spacing:0.585000px;}
.ws42{word-spacing:0.594000px;}
.wsda{word-spacing:0.648000px;}
.ws61{word-spacing:0.684000px;}
.wsa9{word-spacing:0.702000px;}
.ws94{word-spacing:0.756000px;}
.wse4{word-spacing:0.765000px;}
.ws7d{word-spacing:0.810000px;}
.wseb{word-spacing:0.819000px;}
.ws81{word-spacing:0.918000px;}
.ws41{word-spacing:0.972000px;}
.ws58{word-spacing:1.026000px;}
.ws103{word-spacing:1.053000px;}
.ws45{word-spacing:1.080000px;}
.wsc6{word-spacing:1.134000px;}
.ws9c{word-spacing:1.188000px;}
.ws6b{word-spacing:1.242000px;}
.ws22{word-spacing:1.296000px;}
.wsc9{word-spacing:1.305000px;}
.ws5a{word-spacing:1.350000px;}
.wsdf{word-spacing:1.440000px;}
.ws60{word-spacing:1.512000px;}
.ws6a{word-spacing:1.566000px;}
.ws3a{word-spacing:1.620000px;}
.wscb{word-spacing:1.665000px;}
.wsf{word-spacing:1.674000px;}
.ws53{word-spacing:1.728000px;}
.wsa7{word-spacing:1.782000px;}
.wsfc{word-spacing:1.794000px;}
.wsc3{word-spacing:1.836000px;}
.ws52{word-spacing:1.890000px;}
.ws40{word-spacing:1.998000px;}
.ws37{word-spacing:2.052000px;}
.ws16{word-spacing:2.106000px;}
.ws3e{word-spacing:2.160000px;}
.wsee{word-spacing:2.184000px;}
.ws4c{word-spacing:2.268000px;}
.wsa8{word-spacing:2.322000px;}
.wsc5{word-spacing:2.376000px;}
.wse{word-spacing:2.484000px;}
.ws101{word-spacing:2.535000px;}
.ws79{word-spacing:2.538000px;}
.ws6d{word-spacing:2.592000px;}
.ws15{word-spacing:2.646000px;}
.wse2{word-spacing:2.655000px;}
.ws76{word-spacing:2.700000px;}
.ws9f{word-spacing:2.754000px;}
.ws93{word-spacing:2.808000px;}
.wsec{word-spacing:2.847000px;}
.ws70{word-spacing:2.862000px;}
.ws59{word-spacing:2.916000px;}
.wse3{word-spacing:2.925000px;}
.wsea{word-spacing:2.964000px;}
.ws24{word-spacing:2.970000px;}
.ws34{word-spacing:3.024000px;}
.ws51{word-spacing:3.078000px;}
.ws46{word-spacing:3.132000px;}
.ws13{word-spacing:3.186000px;}
.ws87{word-spacing:3.240000px;}
.ws28{word-spacing:3.294000px;}
.ws56{word-spacing:3.402000px;}
.ws44{word-spacing:3.456000px;}
.ws96{word-spacing:3.510000px;}
.wsa6{word-spacing:3.564000px;}
.wsb5{word-spacing:3.618000px;}
.ws55{word-spacing:3.672000px;}
.ws7b{word-spacing:3.726000px;}
.ws6e{word-spacing:3.780000px;}
.wsa0{word-spacing:3.834000px;}
.wsf1{word-spacing:3.861000px;}
.ws19{word-spacing:3.888000px;}
.wsfe{word-spacing:3.939000px;}
.ws18{word-spacing:3.942000px;}
.ws1c{word-spacing:3.996000px;}
.wsba{word-spacing:4.050000px;}
.ws3d{word-spacing:4.104000px;}
.wsf2{word-spacing:4.134000px;}
.wsc1{word-spacing:4.158000px;}
.wsb0{word-spacing:4.212000px;}
.ws3c{word-spacing:4.266000px;}
.ws95{word-spacing:4.320000px;}
.ws6f{word-spacing:4.374000px;}
.ws108{word-spacing:4.407000px;}
.wsbb{word-spacing:4.455000px;}
.ws7f{word-spacing:4.482000px;}
.ws57{word-spacing:4.536000px;}
.ws21{word-spacing:4.590000px;}
.ws3f{word-spacing:4.644000px;}
.ws83{word-spacing:4.698000px;}
.wsf3{word-spacing:4.719000px;}
.wsb3{word-spacing:4.752000px;}
.wsa4{word-spacing:4.806000px;}
.wsff{word-spacing:4.836000px;}
.ws5f{word-spacing:4.860000px;}
.wsb2{word-spacing:4.914000px;}
.ws86{word-spacing:4.968000px;}
.ws27{word-spacing:5.022000px;}
.ws1d{word-spacing:5.076000px;}
.ws10a{word-spacing:5.085000px;}
.ws73{word-spacing:5.130000px;}
.ws35{word-spacing:5.184000px;}
.wsaf{word-spacing:5.238000px;}
.ws4d{word-spacing:5.292000px;}
.wsb{word-spacing:5.346000px;}
.wsf4{word-spacing:5.382000px;}
.wsa2{word-spacing:5.454000px;}
.wsde{word-spacing:5.472000px;}
.ws82{word-spacing:5.508000px;}
.ws48{word-spacing:5.616000px;}
.wsa1{word-spacing:5.670000px;}
.ws7e{word-spacing:5.724000px;}
.wsdb{word-spacing:5.778000px;}
.ws9b{word-spacing:5.832000px;}
.ws38{word-spacing:5.886000px;}
.wse1{word-spacing:5.928000px;}
.ws72{word-spacing:5.940000px;}
.wsf9{word-spacing:5.967000px;}
.wsae{word-spacing:5.994000px;}
.wsb4{word-spacing:6.048000px;}
.ws9{word-spacing:6.102000px;}
.ws11{word-spacing:6.156000px;}
.ws71{word-spacing:6.210000px;}
.wsca{word-spacing:6.255000px;}
.ws7c{word-spacing:6.318000px;}
.ws99{word-spacing:6.372000px;}
.ws9e{word-spacing:6.588000px;}
.ws74{word-spacing:6.642000px;}
.ws20{word-spacing:6.804000px;}
.wsb9{word-spacing:6.840000px;}
.ws91{word-spacing:6.966000px;}
.ws92{word-spacing:7.020000px;}
.ws84{word-spacing:7.074000px;}
.ws25{word-spacing:8.262000px;}
.wsbf{word-spacing:850.312200px;}
._6{margin-left:-8.322600px;}
._5{margin-left:-7.131600px;}
._4{margin-left:-5.308200px;}
._3{margin-left:-3.436800px;}
._0{margin-left:-2.310000px;}
._1{margin-left:-1.242000px;}
._2{width:1.521000px;}
._7{width:5.185200px;}
._8{width:6.804000px;}
._c{width:24.447000px;}
._d{width:30.297000px;}
._a{width:48.993600px;}
._b{width:50.142000px;}
._9{width:60.588000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs10{font-size:22.737000px;}
.fs7{font-size:24.486000px;}
.fse{font-size:26.235000px;}
.fs2{font-size:31.482000px;}
.fs5{font-size:38.478000px;}
.fsf{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fsb{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:54.832992px;}
.fs8{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fs3{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:39.721200px;}
.y88{bottom:78.661350px;}
.y46{bottom:78.661500px;}
.y45{bottom:91.261500px;}
.y246{bottom:91.446750px;}
.y1f5{bottom:92.161500px;}
.y17f{bottom:95.361450px;}
.yc1{bottom:95.432400px;}
.y87{bottom:95.510700px;}
.yfa{bottom:95.548800px;}
.y224{bottom:95.575200px;}
.y147{bottom:95.577450px;}
.y1b9{bottom:95.601150px;}
.y191{bottom:95.608800px;}
.y44{bottom:103.861500px;}
.y245{bottom:104.232000px;}
.y1f4{bottom:105.661500px;}
.y17e{bottom:112.061700px;}
.yc0{bottom:112.203300px;}
.y86{bottom:112.360050px;}
.yf9{bottom:112.435950px;}
.y223{bottom:112.489050px;}
.y146{bottom:112.493400px;}
.y1b8{bottom:112.540800px;}
.y190{bottom:112.556100px;}
.y43{bottom:116.461500px;}
.y17d{bottom:128.761650px;}
.ybf{bottom:128.974200px;}
.y85{bottom:129.209250px;}
.yf8{bottom:129.323250px;}
.y222{bottom:129.402900px;}
.y145{bottom:129.409350px;}
.y1b7{bottom:129.480300px;}
.y18f{bottom:129.503550px;}
.y1f6{bottom:130.308450px;}
.y1f9{bottom:131.358450px;}
.y42{bottom:132.558000px;}
.y244{bottom:135.424200px;}
.y17c{bottom:145.461750px;}
.ybe{bottom:145.745250px;}
.y84{bottom:146.058600px;}
.yf7{bottom:146.210700px;}
.y221{bottom:146.316600px;}
.y144{bottom:146.325450px;}
.y1b6{bottom:146.419950px;}
.y18e{bottom:146.450850px;}
.y243{bottom:151.134600px;}
.y18{bottom:152.212500px;}
.y17b{bottom:162.162000px;}
.ybd{bottom:162.516300px;}
.y83{bottom:162.907950px;}
.yf6{bottom:163.097850px;}
.y220{bottom:163.230450px;}
.y143{bottom:163.241400px;}
.y1b5{bottom:163.359600px;}
.y18d{bottom:163.398150px;}
.y242{bottom:166.844850px;}
.y2d{bottom:168.862500px;}
.y17{bottom:168.915900px;}
.y17a{bottom:178.862100px;}
.ybc{bottom:179.287200px;}
.y82{bottom:179.757150px;}
.yf5{bottom:179.985300px;}
.y21f{bottom:180.144150px;}
.y142{bottom:180.157500px;}
.y1b4{bottom:180.299100px;}
.y18c{bottom:180.345600px;}
.y241{bottom:182.555250px;}
.y2c{bottom:185.512500px;}
.y16{bottom:185.619300px;}
.y179{bottom:195.562200px;}
.ybb{bottom:196.058100px;}
.y81{bottom:196.606500px;}
.yf4{bottom:196.872600px;}
.y21e{bottom:197.058000px;}
.y141{bottom:197.073450px;}
.y1b3{bottom:197.238750px;}
.y18b{bottom:197.292900px;}
.y240{bottom:198.265500px;}
.y2b{bottom:202.162500px;}
.y15{bottom:202.322700px;}
.y178{bottom:212.262300px;}
.yba{bottom:212.829150px;}
.y80{bottom:213.455850px;}
.yf3{bottom:213.759900px;}
.y21d{bottom:213.971850px;}
.y140{bottom:213.989400px;}
.y1b2{bottom:214.178400px;}
.y18a{bottom:214.240350px;}
.y2a{bottom:218.812500px;}
.y14{bottom:219.026250px;}
.y23f{bottom:227.331750px;}
.y177{bottom:228.962400px;}
.yb9{bottom:229.600200px;}
.y7f{bottom:230.305050px;}
.yf2{bottom:230.647200px;}
.y21c{bottom:230.885550px;}
.y1b1{bottom:231.118050px;}
.y189{bottom:231.187650px;}
.y29{bottom:235.462500px;}
.y13{bottom:235.729650px;}
.y13f{bottom:240.309300px;}
.y23e{bottom:244.092000px;}
.y176{bottom:245.662500px;}
.yb8{bottom:246.371100px;}
.y7e{bottom:247.154550px;}
.yf1{bottom:247.534500px;}
.y21b{bottom:247.799400px;}
.y1b0{bottom:248.057550px;}
.y28{bottom:252.112500px;}
.y12{bottom:252.433050px;}
.y13e{bottom:257.225400px;}
.y175{bottom:262.362600px;}
.yb7{bottom:263.142000px;}
.y7d{bottom:264.003750px;}
.yf0{bottom:264.421800px;}
.y21a{bottom:264.713100px;}
.y1af{bottom:264.997200px;}
.y188{bottom:266.042850px;}
.y27{bottom:268.762500px;}
.y11{bottom:269.136450px;}
.y23d{bottom:273.158250px;}
.y13d{bottom:274.141350px;}
.y174{bottom:279.062700px;}
.yb6{bottom:279.913050px;}
.yef{bottom:281.309100px;}
.y219{bottom:281.626950px;}
.y1ae{bottom:281.936850px;}
.y187{bottom:282.990300px;}
.y26{bottom:285.412500px;}
.y10{bottom:285.839850px;}
.y23c{bottom:289.918500px;}
.y7c{bottom:290.256900px;}
.y13c{bottom:291.057450px;}
.y173{bottom:295.762800px;}
.yb5{bottom:296.684100px;}
.yee{bottom:298.196400px;}
.y218{bottom:298.540800px;}
.y1f7{bottom:298.608450px;}
.y1ad{bottom:298.876350px;}
.y1f8{bottom:299.658300px;}
.y186{bottom:299.937600px;}
.y25{bottom:302.062500px;}
.yf{bottom:302.543400px;}
.y23b{bottom:306.678750px;}
.y7b{bottom:307.106250px;}
.y13b{bottom:307.973400px;}
.y172{bottom:312.463050px;}
.yb4{bottom:313.455000px;}
.yed{bottom:315.083700px;}
.y217{bottom:315.454500px;}
.y1ac{bottom:315.816000px;}
.y185{bottom:316.884900px;}
.y24{bottom:318.712500px;}
.ye{bottom:319.246800px;}
.y23a{bottom:323.439150px;}
.y7a{bottom:323.955600px;}
.y13a{bottom:324.889500px;}
.y171{bottom:329.163150px;}
.yb3{bottom:330.225900px;}
.yec{bottom:331.971000px;}
.y285{bottom:332.100750px;}
.y216{bottom:332.368350px;}
.y1ab{bottom:332.755650px;}
.y184{bottom:333.832350px;}
.y23{bottom:335.362500px;}
.yd{bottom:335.950200px;}
.y239{bottom:340.199400px;}
.y79{bottom:340.804950px;}
.y139{bottom:341.805450px;}
.y284{bottom:344.775750px;}
.y170{bottom:345.863250px;}
.yb2{bottom:346.996950px;}
.yeb{bottom:348.858300px;}
.y215{bottom:349.282200px;}
.y1aa{bottom:349.695300px;}
.y183{bottom:350.779650px;}
.y22{bottom:352.012500px;}
.y299{bottom:352.403850px;}
.yc{bottom:352.653600px;}
.y238{bottom:356.959800px;}
.y283{bottom:357.450750px;}
.y78{bottom:357.654300px;}
.y138{bottom:358.721400px;}
.y16f{bottom:362.563350px;}
.yb1{bottom:363.767850px;}
.yea{bottom:365.745600px;}
.y298{bottom:365.903850px;}
.y214{bottom:366.195900px;}
.y1a9{bottom:366.634800px;}
.y182{bottom:367.726950px;}
.y21{bottom:368.662500px;}
.yb{bottom:369.357000px;}
.y282{bottom:370.550850px;}
.y77{bottom:374.503500px;}
.y137{bottom:375.637500px;}
.y16e{bottom:379.263450px;}
.y297{bottom:379.403850px;}
.yb0{bottom:380.538900px;}
.ye9{bottom:382.633050px;}
.y213{bottom:383.109750px;}
.y281{bottom:383.225850px;}
.y1a8{bottom:383.574450px;}
.y181{bottom:384.674400px;}
.y20{bottom:385.312500px;}
.y237{bottom:386.025900px;}
.ya{bottom:386.060550px;}
.y76{bottom:391.352850px;}
.y136{bottom:392.553450px;}
.y296{bottom:392.903850px;}
.y280{bottom:395.900850px;}
.y16d{bottom:395.963550px;}
.yaf{bottom:397.309800px;}
.ye8{bottom:399.520350px;}
.y212{bottom:400.023450px;}
.y1a7{bottom:400.514100px;}
.y180{bottom:401.621700px;}
.y1f{bottom:401.962500px;}
.y9{bottom:402.763950px;}
.y236{bottom:402.786300px;}
.y295{bottom:406.403850px;}
.y75{bottom:408.202200px;}
.y27f{bottom:409.001100px;}
.y135{bottom:409.469400px;}
.yae{bottom:414.080850px;}
.ye7{bottom:416.407650px;}
.y211{bottom:416.937300px;}
.y1a6{bottom:417.453750px;}
.y1e{bottom:418.612500px;}
.y8{bottom:419.467350px;}
.y235{bottom:419.546550px;}
.y27e{bottom:421.676100px;}
.y16c{bottom:422.067600px;}
.y74{bottom:425.051400px;}
.y134{bottom:426.385500px;}
.yad{bottom:430.851750px;}
.ye6{bottom:433.294950px;}
.y210{bottom:433.851150px;}
.y27d{bottom:434.351100px;}
.y1a5{bottom:434.393250px;}
.y1d{bottom:435.262500px;}
.y7{bottom:436.170750px;}
.y234{bottom:436.306800px;}
.y16b{bottom:438.767700px;}
.y1be{bottom:442.182300px;}
.y73{bottom:442.800750px;}
.y133{bottom:443.301450px;}
.y27c{bottom:447.451200px;}
.yac{bottom:447.622800px;}
.ye5{bottom:450.182250px;}
.y20f{bottom:450.764850px;}
.y1a4{bottom:451.332900px;}
.y1c{bottom:451.912500px;}
.y1bd{bottom:451.936050px;}
.y6{bottom:452.874150px;}
.y233{bottom:453.067200px;}
.y16a{bottom:455.467800px;}
.y27b{bottom:460.126350px;}
.y132{bottom:460.217400px;}
.yab{bottom:464.393700px;}
.y1bc{bottom:465.436050px;}
.ye4{bottom:467.069550px;}
.y20e{bottom:467.678700px;}
.y1a3{bottom:468.272550px;}
.y1b{bottom:468.562500px;}
.y5{bottom:469.577700px;}
.y232{bottom:469.827450px;}
.y72{bottom:471.955950px;}
.y169{bottom:472.167900px;}
.y27a{bottom:472.801350px;}
.y131{bottom:477.133500px;}
.y1bb{bottom:478.936050px;}
.yaa{bottom:481.164750px;}
.ye3{bottom:483.956850px;}
.y20d{bottom:484.592400px;}
.y1a2{bottom:485.212200px;}
.y1a{bottom:485.212500px;}
.y279{bottom:485.901450px;}
.y4{bottom:486.281100px;}
.y231{bottom:486.587700px;}
.y71{bottom:488.805300px;}
.y168{bottom:488.868000px;}
.y1f3{bottom:491.735550px;}
.y1ba{bottom:492.436050px;}
.y130{bottom:494.049450px;}
.ya9{bottom:497.935650px;}
.y278{bottom:498.576450px;}
.ye2{bottom:500.844150px;}
.y20c{bottom:501.506250px;}
.y19{bottom:501.862500px;}
.y1a1{bottom:502.151700px;}
.y3{bottom:502.984500px;}
.y230{bottom:503.348100px;}
.y1fd{bottom:505.235550px;}
.y167{bottom:505.568100px;}
.y70{bottom:505.654650px;}
.y1f2{bottom:508.498650px;}
.y12f{bottom:510.965550px;}
.y277{bottom:511.251450px;}
.y1bf{bottom:512.235600px;}
.ya8{bottom:514.706700px;}
.ye1{bottom:517.731450px;}
.y20b{bottom:518.419950px;}
.y1fc{bottom:518.735550px;}
.y1a0{bottom:519.091350px;}
.y22f{bottom:520.108350px;}
.y166{bottom:522.268350px;}
.y6f{bottom:522.503850px;}
.y276{bottom:524.351700px;}
.y1f1{bottom:525.261750px;}
.y12e{bottom:527.881500px;}
.ya7{bottom:531.477600px;}
.y1fb{bottom:532.235550px;}
.ye0{bottom:534.618750px;}
.y20a{bottom:535.333800px;}
.y19f{bottom:536.031000px;}
.y22e{bottom:536.868750px;}
.y275{bottom:537.026700px;}
.y165{bottom:538.968450px;}
.y6e{bottom:539.353200px;}
.y1f0{bottom:542.024850px;}
.y12d{bottom:544.797450px;}
.y1fa{bottom:545.735550px;}
.ya6{bottom:548.248650px;}
.y294{bottom:549.701700px;}
.y274{bottom:550.126950px;}
.ydf{bottom:551.506050px;}
.y209{bottom:552.247650px;}
.y19e{bottom:552.970500px;}
.y22d{bottom:553.629000px;}
.y41{bottom:555.318450px;}
.y164{bottom:555.668550px;}
.y6d{bottom:556.202550px;}
.y1ef{bottom:558.787950px;}
.y12c{bottom:561.713550px;}
.y273{bottom:562.801950px;}
.ya5{bottom:565.019550px;}
.y1fe{bottom:565.535100px;}
.yde{bottom:568.393350px;}
.y208{bottom:569.161350px;}
.y19d{bottom:569.910150px;}
.y22c{bottom:570.389250px;}
.y163{bottom:572.368650px;}
.y6c{bottom:573.051750px;}
.y293{bottom:575.476800px;}
.y1ee{bottom:575.551050px;}
.y272{bottom:575.902050px;}
.y12b{bottom:578.629500px;}
.ya4{bottom:581.790600px;}
.y40{bottom:584.274450px;}
.ydd{bottom:585.280650px;}
.y207{bottom:586.075200px;}
.y19c{bottom:586.849800px;}
.y22b{bottom:587.149650px;}
.y271{bottom:588.577050px;}
.y162{bottom:589.068750px;}
.y6b{bottom:589.901100px;}
.y1ed{bottom:592.314300px;}
.y12a{bottom:595.545600px;}
.ya3{bottom:598.561500px;}
.y292{bottom:601.252050px;}
.y270{bottom:601.677300px;}
.ydc{bottom:602.167950px;}
.y3f{bottom:602.274450px;}
.y206{bottom:602.989050px;}
.y19b{bottom:603.789450px;}
.y22a{bottom:603.909900px;}
.y161{bottom:605.768850px;}
.y6a{bottom:606.750450px;}
.y1ec{bottom:609.077400px;}
.y129{bottom:612.461550px;}
.y26f{bottom:614.352300px;}
.ya2{bottom:615.332400px;}
.y3e{bottom:618.474450px;}
.ydb{bottom:619.055400px;}
.y205{bottom:619.902750px;}
.y229{bottom:620.670300px;}
.y19a{bottom:620.728950px;}
.y69{bottom:623.599800px;}
.y1eb{bottom:625.840500px;}
.y291{bottom:627.027300px;}
.y26e{bottom:627.452400px;}
.y128{bottom:629.377500px;}
.y160{bottom:631.872900px;}
.y10f{bottom:632.103450px;}
.ya1{bottom:633.003450px;}
.y3d{bottom:634.674450px;}
.yda{bottom:635.942700px;}
.y204{bottom:636.816600px;}
.y228{bottom:637.430550px;}
.y199{bottom:637.668600px;}
.y290{bottom:639.702300px;}
.y68{bottom:640.449000px;}
.y26d{bottom:640.552650px;}
.y1ea{bottom:642.603600px;}
.y1c0{bottom:642.627900px;}
.y127{bottom:646.293600px;}
.y15f{bottom:648.573000px;}
.y10e{bottom:648.874350px;}
.y3c{bottom:650.874450px;}
.y28f{bottom:652.802400px;}
.yd9{bottom:652.830000px;}
.y26c{bottom:653.227650px;}
.y203{bottom:653.730450px;}
.y227{bottom:654.190800px;}
.y198{bottom:654.608250px;}
.y67{bottom:657.298350px;}
.ya0{bottom:659.178300px;}
.y1e9{bottom:659.366700px;}
.y126{bottom:663.209550px;}
.y15e{bottom:665.273100px;}
.y28e{bottom:665.477400px;}
.y10d{bottom:665.645400px;}
.y26b{bottom:665.902650px;}
.y3b{bottom:667.074450px;}
.yd8{bottom:669.717150px;}
.y202{bottom:670.644150px;}
.y226{bottom:670.951200px;}
.y197{bottom:671.547750px;}
.y66{bottom:674.147700px;}
.y9f{bottom:675.949350px;}
.y1e8{bottom:676.129800px;}
.y28d{bottom:678.577650px;}
.y26a{bottom:679.002900px;}
.y125{bottom:680.125650px;}
.y15d{bottom:681.973200px;}
.y10c{bottom:682.416300px;}
.y3a{bottom:683.274450px;}
.yd7{bottom:686.604600px;}
.y201{bottom:687.558000px;}
.y225{bottom:687.711450px;}
.y196{bottom:688.487400px;}
.y65{bottom:690.996900px;}
.y28c{bottom:691.252650px;}
.y269{bottom:691.677900px;}
.y1ff{bottom:691.951050px;}
.y9e{bottom:692.720250px;}
.y1e7{bottom:692.892900px;}
.y124{bottom:697.041600px;}
.y15c{bottom:698.673300px;}
.y10b{bottom:699.187350px;}
.y39{bottom:699.474450px;}
.yd6{bottom:703.491900px;}
.y268{bottom:704.352900px;}
.y200{bottom:704.471700px;}
.y195{bottom:705.427050px;}
.y64{bottom:707.846250px;}
.y9d{bottom:709.491300px;}
.y1e6{bottom:709.656150px;}
.y123{bottom:713.957550px;}
.y15b{bottom:715.373400px;}
.y38{bottom:715.674450px;}
.y10a{bottom:715.958250px;}
.y28b{bottom:717.027900px;}
.y267{bottom:717.453000px;}
.yd5{bottom:720.379200px;}
.y63{bottom:724.695600px;}
.y9c{bottom:726.262200px;}
.y1e5{bottom:726.419250px;}
.y266{bottom:730.128000px;}
.y122{bottom:730.873650px;}
.y37{bottom:731.874450px;}
.y15a{bottom:732.073650px;}
.y109{bottom:732.729300px;}
.y194{bottom:734.672550px;}
.yd4{bottom:737.266500px;}
.y24b{bottom:741.286050px;}
.y62{bottom:741.544800px;}
.y265{bottom:742.803000px;}
.y9b{bottom:743.033250px;}
.y1e4{bottom:743.182350px;}
.y121{bottom:747.789600px;}
.y36{bottom:748.074450px;}
.y159{bottom:748.773750px;}
.y108{bottom:749.500200px;}
.y193{bottom:751.612200px;}
.y24a{bottom:754.786050px;}
.y264{bottom:755.903250px;}
.y61{bottom:758.394150px;}
.y9a{bottom:759.804150px;}
.y1e3{bottom:759.945450px;}
.yd3{bottom:763.557750px;}
.y35{bottom:764.274450px;}
.y120{bottom:764.705550px;}
.y158{bottom:765.473850px;}
.y107{bottom:766.271250px;}
.y249{bottom:768.286050px;}
.y192{bottom:768.551850px;}
.y263{bottom:768.578250px;}
.y60{bottom:775.243500px;}
.y99{bottom:776.575200px;}
.y1e2{bottom:776.708550px;}
.yd2{bottom:780.445050px;}
.y34{bottom:780.474450px;}
.y11f{bottom:781.621650px;}
.y262{bottom:781.678500px;}
.y248{bottom:781.786050px;}
.y157{bottom:782.173950px;}
.y106{bottom:783.042150px;}
.y5f{bottom:792.092700px;}
.y98{bottom:793.346100px;}
.y1e1{bottom:793.471650px;}
.y261{bottom:794.353500px;}
.y247{bottom:795.286050px;}
.y33{bottom:796.674450px;}
.yd1{bottom:797.332350px;}
.y11e{bottom:798.537600px;}
.y156{bottom:798.874050px;}
.y105{bottom:799.813050px;}
.y1c3{bottom:805.366050px;}
.y260{bottom:807.453600px;}
.y5e{bottom:808.942050px;}
.y97{bottom:810.117150px;}
.y1e0{bottom:810.234900px;}
.y32{bottom:812.874450px;}
.yd0{bottom:814.219650px;}
.y11d{bottom:815.453550px;}
.y155{bottom:815.574150px;}
.y104{bottom:816.584100px;}
.y1c2{bottom:818.866050px;}
.y25f{bottom:820.128600px;}
.y5d{bottom:825.791400px;}
.y96{bottom:826.888050px;}
.y1df{bottom:826.998000px;}
.ycf{bottom:831.106950px;}
.y154{bottom:832.274250px;}
.y1c1{bottom:832.366050px;}
.y11c{bottom:832.369650px;}
.y25e{bottom:832.803600px;}
.y28a{bottom:833.228850px;}
.y103{bottom:833.355150px;}
.y5c{bottom:842.640750px;}
.y95{bottom:843.658950px;}
.y1de{bottom:843.761100px;}
.y25d{bottom:845.903850px;}
.yce{bottom:847.994250px;}
.y153{bottom:848.974350px;}
.y11b{bottom:849.285600px;}
.y102{bottom:850.126050px;}
.y31{bottom:850.334250px;}
.y1c4{bottom:852.165750px;}
.y1c5{bottom:853.215750px;}
.y25c{bottom:858.578850px;}
.y5b{bottom:859.489950px;}
.y94{bottom:860.430000px;}
.y1dd{bottom:860.524200px;}
.y1d1{bottom:861.881700px;}
.ycd{bottom:864.881550px;}
.y152{bottom:865.674450px;}
.y11a{bottom:866.201700px;}
.y101{bottom:866.897100px;}
.y30{bottom:870.134250px;}
.y25b{bottom:871.679100px;}
.y5a{bottom:876.339300px;}
.y93{bottom:877.201050px;}
.y1dc{bottom:877.287300px;}
.y1d0{bottom:878.531550px;}
.ycc{bottom:881.768850px;}
.y151{bottom:882.374700px;}
.y119{bottom:883.117650px;}
.y100{bottom:883.668000px;}
.y25a{bottom:884.353950px;}
.y47{bottom:889.783500px;}
.y59{bottom:893.188650px;}
.y92{bottom:893.971950px;}
.y1db{bottom:894.050400px;}
.y1cf{bottom:895.181700px;}
.y259{bottom:897.028950px;}
.y289{bottom:897.454350px;}
.ycb{bottom:898.656150px;}
.y150{bottom:899.074800px;}
.y118{bottom:900.033750px;}
.yff{bottom:900.439050px;}
.y58{bottom:910.038000px;}
.y258{bottom:910.129200px;}
.y91{bottom:910.742850px;}
.y1da{bottom:910.813500px;}
.y1ce{bottom:911.831700px;}
.yca{bottom:915.543600px;}
.y14f{bottom:915.774900px;}
.y117{bottom:916.949700px;}
.yfe{bottom:917.209950px;}
.y257{bottom:922.804200px;}
.y2f{bottom:923.950050px;}
.y57{bottom:926.887200px;}
.y90{bottom:927.513900px;}
.y1d9{bottom:927.576750px;}
.y1cd{bottom:928.481700px;}
.y14e{bottom:932.475000px;}
.y116{bottom:933.865650px;}
.yfd{bottom:933.980850px;}
.y256{bottom:935.479200px;}
.y288{bottom:935.904450px;}
.yc9{bottom:941.834700px;}
.y56{bottom:943.736550px;}
.y8f{bottom:944.284950px;}
.y1d8{bottom:944.339850px;}
.y1cc{bottom:945.131700px;}
.y255{bottom:948.579450px;}
.y14d{bottom:949.175100px;}
.yfc{bottom:950.751900px;}
.yc8{bottom:958.722150px;}
.y115{bottom:960.185700px;}
.y55{bottom:960.585900px;}
.y8e{bottom:961.055850px;}
.y1d7{bottom:961.102950px;}
.y254{bottom:961.254450px;}
.y1cb{bottom:961.781700px;}
.y2e{bottom:963.550050px;}
.y14c{bottom:965.875200px;}
.yfb{bottom:968.422800px;}
.y253{bottom:974.354700px;}
.yc7{bottom:975.609300px;}
.y114{bottom:977.101650px;}
.y54{bottom:977.435100px;}
.y8d{bottom:977.826750px;}
.y1d6{bottom:977.866050px;}
.y1ca{bottom:978.431700px;}
.y14b{bottom:982.575300px;}
.y252{bottom:987.029700px;}
.yc6{bottom:992.496750px;}
.y113{bottom:994.017600px;}
.y53{bottom:994.284450px;}
.y8c{bottom:994.597800px;}
.y1d5{bottom:994.629150px;}
.y1c9{bottom:995.081700px;}
.y251{bottom:999.704550px;}
.yc5{bottom:1009.384050px;}
.y112{bottom:1010.933550px;}
.y52{bottom:1011.133800px;}
.y8b{bottom:1011.368700px;}
.y1d4{bottom:1011.392250px;}
.y14a{bottom:1011.581400px;}
.y1c8{bottom:1011.731700px;}
.y250{bottom:1012.379550px;}
.y287{bottom:1012.804800px;}
.y49{bottom:1018.342200px;}
.y24f{bottom:1025.479800px;}
.yc4{bottom:1026.271350px;}
.y111{bottom:1027.849650px;}
.y51{bottom:1027.983000px;}
.y8a{bottom:1028.139750px;}
.y1d3{bottom:1028.155500px;}
.y149{bottom:1028.281350px;}
.y1c7{bottom:1028.381700px;}
.y24e{bottom:1038.154800px;}
.y286{bottom:1038.580050px;}
.yc3{bottom:1043.158650px;}
.y110{bottom:1044.765600px;}
.y50{bottom:1044.832350px;}
.y89{bottom:1044.910650px;}
.y1d2{bottom:1044.918600px;}
.y148{bottom:1044.981600px;}
.y1c6{bottom:1045.031700px;}
.y24d{bottom:1051.255050px;}
.y48{bottom:1052.289150px;}
.yc2{bottom:1060.045950px;}
.y4f{bottom:1061.681700px;}
.y24c{bottom:1063.930050px;}
.y4e{bottom:1089.177750px;}
.y2{bottom:1111.871850px;}
.y4d{bottom:1113.281550px;}
.y1{bottom:1125.521850px;}
.y4c{bottom:1128.881700px;}
.y4a{bottom:1142.292000px;}
.ha{height:23.436000px;}
.h15{height:25.605000px;}
.he{height:34.945312px;}
.h17{height:35.178000px;}
.hf{height:36.096000px;}
.h18{height:36.495000px;}
.h2{height:37.422000px;}
.h11{height:38.340000px;}
.h16{height:38.928000px;}
.h4{height:39.528000px;}
.h7{height:40.137750px;}
.h14{height:40.590000px;}
.h10{height:42.768000px;}
.h3{height:43.794000px;}
.h13{height:44.982000px;}
.hb{height:45.878906px;}
.h8{height:48.114000px;}
.h9{height:48.708000px;}
.h12{height:51.093000px;}
.hc{height:52.417969px;}
.h6{height:54.978000px;}
.hd{height:61.488000px;}
.h5{height:96.624000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:45.000000px;}
.x11{left:46.275600px;}
.xf{left:53.431650px;}
.x4{left:68.031450px;}
.x19{left:85.684350px;}
.x14{left:89.291250px;}
.x18{left:95.031450px;}
.x7{left:118.764300px;}
.x8{left:130.751850px;}
.x1e{left:134.854350px;}
.x1c{left:232.804350px;}
.x1b{left:236.917650px;}
.xd{left:252.385650px;}
.xe{left:264.373350px;}
.x12{left:267.429450px;}
.x9{left:303.093450px;}
.xa{left:315.081000px;}
.x13{left:318.789900px;}
.x1d{left:355.204350px;}
.x1{left:447.448800px;}
.x1a{left:449.497800px;}
.x2{left:455.478000px;}
.x1f{left:462.079350px;}
.x3{left:476.737800px;}
.x17{left:482.456850px;}
.x5{left:645.184500px;}
.x6{left:657.227700px;}
.x15{left:715.298400px;}
.xb{left:766.656750px;}
.xc{left:778.644450px;}
.x16{left:826.621800px;}
@media print{
.v5{vertical-align:-15.984000pt;}
.v3{vertical-align:-12.432000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:12.432000pt;}
.v1{vertical-align:15.984000pt;}
.v2{vertical-align:19.536000pt;}
.ls81{letter-spacing:-2.600000pt;}
.ls5b{letter-spacing:-1.440000pt;}
.ls5d{letter-spacing:-1.344000pt;}
.ls5c{letter-spacing:-1.200000pt;}
.ls6f{letter-spacing:-1.152000pt;}
.ls5a{letter-spacing:-0.960000pt;}
.ls5{letter-spacing:-0.912000pt;}
.ls3d{letter-spacing:-0.864000pt;}
.ls4c{letter-spacing:-0.768000pt;}
.ls38{letter-spacing:-0.720000pt;}
.ls4d{letter-spacing:-0.672000pt;}
.ls85{letter-spacing:-0.658667pt;}
.ls59{letter-spacing:-0.624000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls3c{letter-spacing:-0.528000pt;}
.ls63{letter-spacing:-0.520000pt;}
.ls3a{letter-spacing:-0.480000pt;}
.ls80{letter-spacing:-0.450667pt;}
.lsf{letter-spacing:-0.432000pt;}
.ls18{letter-spacing:-0.384000pt;}
.ls16{letter-spacing:-0.336000pt;}
.ls7c{letter-spacing:-0.312000pt;}
.ls39{letter-spacing:-0.288000pt;}
.ls3b{letter-spacing:-0.279840pt;}
.ls82{letter-spacing:-0.277333pt;}
.ls47{letter-spacing:-0.251856pt;}
.ls84{letter-spacing:-0.242667pt;}
.ls3e{letter-spacing:-0.240000pt;}
.ls7f{letter-spacing:-0.208000pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls7d{letter-spacing:-0.173333pt;}
.ls64{letter-spacing:-0.160000pt;}
.ls31{letter-spacing:-0.144000pt;}
.ls3f{letter-spacing:-0.139920pt;}
.ls86{letter-spacing:-0.138667pt;}
.ls70{letter-spacing:-0.128000pt;}
.ls69{letter-spacing:-0.120000pt;}
.ls83{letter-spacing:-0.104000pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls7e{letter-spacing:-0.069333pt;}
.ls61{letter-spacing:-0.055968pt;}
.ls40{letter-spacing:-0.048000pt;}
.ls62{letter-spacing:-0.040000pt;}
.ls7b{letter-spacing:-0.034667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls5f{letter-spacing:0.000267pt;}
.ls3{letter-spacing:0.000341pt;}
.ls1{letter-spacing:0.000533pt;}
.ls2e{letter-spacing:0.010667pt;}
.ls6a{letter-spacing:0.027984pt;}
.ls76{letter-spacing:0.034667pt;}
.ls11{letter-spacing:0.048000pt;}
.ls72{letter-spacing:0.052000pt;}
.ls4e{letter-spacing:0.055968pt;}
.ls78{letter-spacing:0.069333pt;}
.ls48{letter-spacing:0.083952pt;}
.ls2{letter-spacing:0.096000pt;}
.ls19{letter-spacing:0.097481pt;}
.ls6e{letter-spacing:0.111936pt;}
.ls29{letter-spacing:0.125547pt;}
.ls1f{letter-spacing:0.139920pt;}
.ls6{letter-spacing:0.144000pt;}
.ls20{letter-spacing:0.192000pt;}
.ls1e{letter-spacing:0.195888pt;}
.ls71{letter-spacing:0.208000pt;}
.ls27{letter-spacing:0.216000pt;}
.ls28{letter-spacing:0.217600pt;}
.ls1a{letter-spacing:0.240000pt;}
.ls46{letter-spacing:0.279840pt;}
.ls8{letter-spacing:0.288000pt;}
.ls6d{letter-spacing:0.307824pt;}
.ls10{letter-spacing:0.336000pt;}
.ls7a{letter-spacing:0.346667pt;}
.ls75{letter-spacing:0.381333pt;}
.ls13{letter-spacing:0.384000pt;}
.ls49{letter-spacing:0.391776pt;}
.ls57{letter-spacing:0.392000pt;}
.ls56{letter-spacing:0.392533pt;}
.ls73{letter-spacing:0.416000pt;}
.ls23{letter-spacing:0.432000pt;}
.ls45{letter-spacing:0.447744pt;}
.ls6c{letter-spacing:0.468000pt;}
.lsd{letter-spacing:0.480000pt;}
.ls74{letter-spacing:0.485333pt;}
.ls1d{letter-spacing:0.503712pt;}
.ls65{letter-spacing:0.523733pt;}
.ls7{letter-spacing:0.528000pt;}
.ls12{letter-spacing:0.576000pt;}
.ls5e{letter-spacing:0.579733pt;}
.ls54{letter-spacing:0.621333pt;}
.ls50{letter-spacing:0.624000pt;}
.ls52{letter-spacing:0.639467pt;}
.ls51{letter-spacing:0.645333pt;}
.ls2a{letter-spacing:0.672000pt;}
.ls35{letter-spacing:0.720000pt;}
.ls53{letter-spacing:0.746667pt;}
.ls67{letter-spacing:0.760000pt;}
.ls34{letter-spacing:0.768000pt;}
.lsb{letter-spacing:0.816000pt;}
.ls68{letter-spacing:0.840000pt;}
.ls2f{letter-spacing:0.864000pt;}
.ls6b{letter-spacing:0.896000pt;}
.ls36{letter-spacing:0.912000pt;}
.ls1c{letter-spacing:0.924267pt;}
.ls79{letter-spacing:0.936000pt;}
.ls1b{letter-spacing:0.939733pt;}
.lse{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.008000pt;}
.ls77{letter-spacing:1.040000pt;}
.lsa{letter-spacing:1.056000pt;}
.ls14{letter-spacing:1.104000pt;}
.ls9{letter-spacing:1.152000pt;}
.ls22{letter-spacing:1.200000pt;}
.ls66{letter-spacing:1.248000pt;}
.ls21{letter-spacing:1.296000pt;}
.ls24{letter-spacing:1.344000pt;}
.ls32{letter-spacing:1.392000pt;}
.ls43{letter-spacing:1.440000pt;}
.ls2d{letter-spacing:1.536000pt;}
.ls4a{letter-spacing:1.584000pt;}
.ls2b{letter-spacing:1.680000pt;}
.ls25{letter-spacing:1.728000pt;}
.ls55{letter-spacing:1.776000pt;}
.ls26{letter-spacing:1.872000pt;}
.ls2c{letter-spacing:1.956267pt;}
.ls44{letter-spacing:1.968000pt;}
.ls30{letter-spacing:2.160000pt;}
.ls60{letter-spacing:2.688000pt;}
.lsc{letter-spacing:2.736000pt;}
.ls33{letter-spacing:2.880000pt;}
.ls42{letter-spacing:2.904533pt;}
.ls4b{letter-spacing:2.928000pt;}
.ls41{letter-spacing:2.933333pt;}
.ls58{letter-spacing:3.072000pt;}
.ls4f{letter-spacing:3.120000pt;}
.ws2{word-spacing:-48.000000pt;}
.wsbe{word-spacing:-40.000000pt;}
.ws8a{word-spacing:-14.640000pt;}
.ws3{word-spacing:-13.344000pt;}
.ws31{word-spacing:-12.712000pt;}
.wsad{word-spacing:-12.200000pt;}
.wsc0{word-spacing:-11.880000pt;}
.wsd4{word-spacing:-11.616000pt;}
.wsbd{word-spacing:-11.520000pt;}
.ws8f{word-spacing:-11.472000pt;}
.wsd1{word-spacing:-11.424000pt;}
.ws88{word-spacing:-11.328000pt;}
.ws2d{word-spacing:-11.136000pt;}
.wsac{word-spacing:-11.120000pt;}
.wsab{word-spacing:-11.080000pt;}
.ws68{word-spacing:-10.992000pt;}
.ws65{word-spacing:-10.896000pt;}
.wscf{word-spacing:-10.656000pt;}
.wse5{word-spacing:-10.573333pt;}
.ws90{word-spacing:-10.512000pt;}
.ws2f{word-spacing:-10.416000pt;}
.ws8c{word-spacing:-10.368000pt;}
.ws89{word-spacing:-10.176000pt;}
.ws8b{word-spacing:-10.032000pt;}
.wsce{word-spacing:-9.936000pt;}
.ws8d{word-spacing:-9.648000pt;}
.wse6{word-spacing:-9.080000pt;}
.ws8e{word-spacing:-9.072000pt;}
.ws1{word-spacing:-7.421979pt;}
.ws2b{word-spacing:-6.856080pt;}
.ws62{word-spacing:-6.800112pt;}
.ws67{word-spacing:-6.744144pt;}
.wsd2{word-spacing:-6.660192pt;}
.ws63{word-spacing:-6.632208pt;}
.ws2c{word-spacing:-6.548256pt;}
.ws2e{word-spacing:-6.492288pt;}
.wsd3{word-spacing:-6.464304pt;}
.ws66{word-spacing:-6.436320pt;}
.ws69{word-spacing:-6.408336pt;}
.wsd0{word-spacing:-6.380352pt;}
.ws0{word-spacing:-6.352368pt;}
.wsaa{word-spacing:-6.296400pt;}
.ws33{word-spacing:-6.212448pt;}
.wsd5{word-spacing:-6.164253pt;}
.ws64{word-spacing:-6.100512pt;}
.ws30{word-spacing:-6.072528pt;}
.ws4{word-spacing:-6.050763pt;}
.ws1f{word-spacing:-3.648000pt;}
.wsdd{word-spacing:-3.456000pt;}
.ws100{word-spacing:-3.224000pt;}
.ws9d{word-spacing:-3.120000pt;}
.wsb8{word-spacing:-3.040000pt;}
.ws4e{word-spacing:-2.784000pt;}
.wsb7{word-spacing:-2.760000pt;}
.ws1b{word-spacing:-2.736000pt;}
.ws14{word-spacing:-2.688000pt;}
.wsf8{word-spacing:-2.669333pt;}
.ws80{word-spacing:-2.640000pt;}
.wse7{word-spacing:-2.634667pt;}
.ws8{word-spacing:-2.592000pt;}
.ws1e{word-spacing:-2.544000pt;}
.ws3b{word-spacing:-2.496000pt;}
.ws6c{word-spacing:-2.448000pt;}
.wse0{word-spacing:-2.432000pt;}
.wsef{word-spacing:-2.426667pt;}
.wsc8{word-spacing:-2.400000pt;}
.ws2a{word-spacing:-2.368000pt;}
.ws85{word-spacing:-2.352000pt;}
.ws12{word-spacing:-2.304000pt;}
.ws4f{word-spacing:-2.256000pt;}
.wsed{word-spacing:-2.253333pt;}
.ws97{word-spacing:-2.208000pt;}
.wsc7{word-spacing:-2.200000pt;}
.wsa3{word-spacing:-2.112000pt;}
.ws98{word-spacing:-2.064000pt;}
.ws6{word-spacing:-2.016000pt;}
.ws75{word-spacing:-1.872000pt;}
.wsd8{word-spacing:-1.824000pt;}
.ws49{word-spacing:-1.776000pt;}
.wsb1{word-spacing:-1.728000pt;}
.ws77{word-spacing:-1.680000pt;}
.ws29{word-spacing:-1.653333pt;}
.wsb6{word-spacing:-1.632000pt;}
.wsf5{word-spacing:-1.594667pt;}
.ws10{word-spacing:-1.584000pt;}
.wsd9{word-spacing:-1.488000pt;}
.wscc{word-spacing:-1.480000pt;}
.wsc4{word-spacing:-1.392000pt;}
.ws17{word-spacing:-1.344000pt;}
.ws109{word-spacing:-1.317333pt;}
.ws4a{word-spacing:-1.296000pt;}
.ws5d{word-spacing:-1.248000pt;}
.ws36{word-spacing:-1.200000pt;}
.ws7{word-spacing:-1.152000pt;}
.ws78{word-spacing:-1.056000pt;}
.ws7a{word-spacing:-1.008000pt;}
.ws106{word-spacing:-0.970667pt;}
.ws9a{word-spacing:-0.960000pt;}
.ws54{word-spacing:-0.912000pt;}
.wsd{word-spacing:-0.864000pt;}
.ws5e{word-spacing:-0.816000pt;}
.ws50{word-spacing:-0.768000pt;}
.wsfa{word-spacing:-0.762667pt;}
.ws104{word-spacing:-0.728000pt;}
.ws10b{word-spacing:-0.680000pt;}
.ws5b{word-spacing:-0.672000pt;}
.wsbc{word-spacing:-0.560000pt;}
.wsdc{word-spacing:-0.528000pt;}
.wsfd{word-spacing:-0.520000pt;}
.ws5c{word-spacing:-0.480000pt;}
.wsc{word-spacing:-0.384000pt;}
.wse9{word-spacing:-0.346667pt;}
.wsc2{word-spacing:-0.336000pt;}
.ws102{word-spacing:-0.277333pt;}
.wsd7{word-spacing:-0.240000pt;}
.ws23{word-spacing:-0.192000pt;}
.wse8{word-spacing:-0.173333pt;}
.ws107{word-spacing:-0.138667pt;}
.wsf0{word-spacing:-0.104000pt;}
.ws26{word-spacing:-0.097481pt;}
.ws4b{word-spacing:-0.096000pt;}
.ws32{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws47{word-spacing:0.048000pt;}
.wsfb{word-spacing:0.069333pt;}
.ws39{word-spacing:0.096000pt;}
.wscd{word-spacing:0.120000pt;}
.ws43{word-spacing:0.144000pt;}
.ws1a{word-spacing:0.192000pt;}
.wsd6{word-spacing:0.240000pt;}
.wsf6{word-spacing:0.277333pt;}
.wsa{word-spacing:0.336000pt;}
.ws105{word-spacing:0.450667pt;}
.wsa5{word-spacing:0.480000pt;}
.wsf7{word-spacing:0.520000pt;}
.ws42{word-spacing:0.528000pt;}
.wsda{word-spacing:0.576000pt;}
.ws61{word-spacing:0.608000pt;}
.wsa9{word-spacing:0.624000pt;}
.ws94{word-spacing:0.672000pt;}
.wse4{word-spacing:0.680000pt;}
.ws7d{word-spacing:0.720000pt;}
.wseb{word-spacing:0.728000pt;}
.ws81{word-spacing:0.816000pt;}
.ws41{word-spacing:0.864000pt;}
.ws58{word-spacing:0.912000pt;}
.ws103{word-spacing:0.936000pt;}
.ws45{word-spacing:0.960000pt;}
.wsc6{word-spacing:1.008000pt;}
.ws9c{word-spacing:1.056000pt;}
.ws6b{word-spacing:1.104000pt;}
.ws22{word-spacing:1.152000pt;}
.wsc9{word-spacing:1.160000pt;}
.ws5a{word-spacing:1.200000pt;}
.wsdf{word-spacing:1.280000pt;}
.ws60{word-spacing:1.344000pt;}
.ws6a{word-spacing:1.392000pt;}
.ws3a{word-spacing:1.440000pt;}
.wscb{word-spacing:1.480000pt;}
.wsf{word-spacing:1.488000pt;}
.ws53{word-spacing:1.536000pt;}
.wsa7{word-spacing:1.584000pt;}
.wsfc{word-spacing:1.594667pt;}
.wsc3{word-spacing:1.632000pt;}
.ws52{word-spacing:1.680000pt;}
.ws40{word-spacing:1.776000pt;}
.ws37{word-spacing:1.824000pt;}
.ws16{word-spacing:1.872000pt;}
.ws3e{word-spacing:1.920000pt;}
.wsee{word-spacing:1.941333pt;}
.ws4c{word-spacing:2.016000pt;}
.wsa8{word-spacing:2.064000pt;}
.wsc5{word-spacing:2.112000pt;}
.wse{word-spacing:2.208000pt;}
.ws101{word-spacing:2.253333pt;}
.ws79{word-spacing:2.256000pt;}
.ws6d{word-spacing:2.304000pt;}
.ws15{word-spacing:2.352000pt;}
.wse2{word-spacing:2.360000pt;}
.ws76{word-spacing:2.400000pt;}
.ws9f{word-spacing:2.448000pt;}
.ws93{word-spacing:2.496000pt;}
.wsec{word-spacing:2.530667pt;}
.ws70{word-spacing:2.544000pt;}
.ws59{word-spacing:2.592000pt;}
.wse3{word-spacing:2.600000pt;}
.wsea{word-spacing:2.634667pt;}
.ws24{word-spacing:2.640000pt;}
.ws34{word-spacing:2.688000pt;}
.ws51{word-spacing:2.736000pt;}
.ws46{word-spacing:2.784000pt;}
.ws13{word-spacing:2.832000pt;}
.ws87{word-spacing:2.880000pt;}
.ws28{word-spacing:2.928000pt;}
.ws56{word-spacing:3.024000pt;}
.ws44{word-spacing:3.072000pt;}
.ws96{word-spacing:3.120000pt;}
.wsa6{word-spacing:3.168000pt;}
.wsb5{word-spacing:3.216000pt;}
.ws55{word-spacing:3.264000pt;}
.ws7b{word-spacing:3.312000pt;}
.ws6e{word-spacing:3.360000pt;}
.wsa0{word-spacing:3.408000pt;}
.wsf1{word-spacing:3.432000pt;}
.ws19{word-spacing:3.456000pt;}
.wsfe{word-spacing:3.501333pt;}
.ws18{word-spacing:3.504000pt;}
.ws1c{word-spacing:3.552000pt;}
.wsba{word-spacing:3.600000pt;}
.ws3d{word-spacing:3.648000pt;}
.wsf2{word-spacing:3.674667pt;}
.wsc1{word-spacing:3.696000pt;}
.wsb0{word-spacing:3.744000pt;}
.ws3c{word-spacing:3.792000pt;}
.ws95{word-spacing:3.840000pt;}
.ws6f{word-spacing:3.888000pt;}
.ws108{word-spacing:3.917333pt;}
.wsbb{word-spacing:3.960000pt;}
.ws7f{word-spacing:3.984000pt;}
.ws57{word-spacing:4.032000pt;}
.ws21{word-spacing:4.080000pt;}
.ws3f{word-spacing:4.128000pt;}
.ws83{word-spacing:4.176000pt;}
.wsf3{word-spacing:4.194667pt;}
.wsb3{word-spacing:4.224000pt;}
.wsa4{word-spacing:4.272000pt;}
.wsff{word-spacing:4.298667pt;}
.ws5f{word-spacing:4.320000pt;}
.wsb2{word-spacing:4.368000pt;}
.ws86{word-spacing:4.416000pt;}
.ws27{word-spacing:4.464000pt;}
.ws1d{word-spacing:4.512000pt;}
.ws10a{word-spacing:4.520000pt;}
.ws73{word-spacing:4.560000pt;}
.ws35{word-spacing:4.608000pt;}
.wsaf{word-spacing:4.656000pt;}
.ws4d{word-spacing:4.704000pt;}
.wsb{word-spacing:4.752000pt;}
.wsf4{word-spacing:4.784000pt;}
.wsa2{word-spacing:4.848000pt;}
.wsde{word-spacing:4.864000pt;}
.ws82{word-spacing:4.896000pt;}
.ws48{word-spacing:4.992000pt;}
.wsa1{word-spacing:5.040000pt;}
.ws7e{word-spacing:5.088000pt;}
.wsdb{word-spacing:5.136000pt;}
.ws9b{word-spacing:5.184000pt;}
.ws38{word-spacing:5.232000pt;}
.wse1{word-spacing:5.269333pt;}
.ws72{word-spacing:5.280000pt;}
.wsf9{word-spacing:5.304000pt;}
.wsae{word-spacing:5.328000pt;}
.wsb4{word-spacing:5.376000pt;}
.ws9{word-spacing:5.424000pt;}
.ws11{word-spacing:5.472000pt;}
.ws71{word-spacing:5.520000pt;}
.wsca{word-spacing:5.560000pt;}
.ws7c{word-spacing:5.616000pt;}
.ws99{word-spacing:5.664000pt;}
.ws9e{word-spacing:5.856000pt;}
.ws74{word-spacing:5.904000pt;}
.ws20{word-spacing:6.048000pt;}
.wsb9{word-spacing:6.080000pt;}
.ws91{word-spacing:6.192000pt;}
.ws92{word-spacing:6.240000pt;}
.ws84{word-spacing:6.288000pt;}
.ws25{word-spacing:7.344000pt;}
.wsbf{word-spacing:755.833067pt;}
._6{margin-left:-7.397867pt;}
._5{margin-left:-6.339200pt;}
._4{margin-left:-4.718400pt;}
._3{margin-left:-3.054933pt;}
._0{margin-left:-2.053333pt;}
._1{margin-left:-1.104000pt;}
._2{width:1.352000pt;}
._7{width:4.609067pt;}
._8{width:6.048000pt;}
._c{width:21.730667pt;}
._d{width:26.930667pt;}
._a{width:43.549867pt;}
._b{width:44.570667pt;}
._9{width:53.856000pt;}
.fs10{font-size:20.210667pt;}
.fs7{font-size:21.765333pt;}
.fse{font-size:23.320000pt;}
.fs2{font-size:27.984000pt;}
.fs5{font-size:34.202667pt;}
.fsf{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fsb{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:48.740438pt;}
.fs8{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fs3{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:35.307733pt;}
.y88{bottom:69.921200pt;}
.y46{bottom:69.921333pt;}
.y45{bottom:81.121333pt;}
.y246{bottom:81.286000pt;}
.y1f5{bottom:81.921333pt;}
.y17f{bottom:84.765733pt;}
.yc1{bottom:84.828800pt;}
.y87{bottom:84.898400pt;}
.yfa{bottom:84.932267pt;}
.y224{bottom:84.955733pt;}
.y147{bottom:84.957733pt;}
.y1b9{bottom:84.978800pt;}
.y191{bottom:84.985600pt;}
.y44{bottom:92.321333pt;}
.y245{bottom:92.650667pt;}
.y1f4{bottom:93.921333pt;}
.y17e{bottom:99.610400pt;}
.yc0{bottom:99.736267pt;}
.y86{bottom:99.875600pt;}
.yf9{bottom:99.943067pt;}
.y223{bottom:99.990267pt;}
.y146{bottom:99.994133pt;}
.y1b8{bottom:100.036267pt;}
.y190{bottom:100.049867pt;}
.y43{bottom:103.521333pt;}
.y17d{bottom:114.454800pt;}
.ybf{bottom:114.643733pt;}
.y85{bottom:114.852667pt;}
.yf8{bottom:114.954000pt;}
.y222{bottom:115.024800pt;}
.y145{bottom:115.030533pt;}
.y1b7{bottom:115.093600pt;}
.y18f{bottom:115.114267pt;}
.y1f6{bottom:115.829733pt;}
.y1f9{bottom:116.763067pt;}
.y42{bottom:117.829333pt;}
.y244{bottom:120.377067pt;}
.y17c{bottom:129.299333pt;}
.ybe{bottom:129.551333pt;}
.y84{bottom:129.829867pt;}
.yf7{bottom:129.965067pt;}
.y221{bottom:130.059200pt;}
.y144{bottom:130.067067pt;}
.y1b6{bottom:130.151067pt;}
.y18e{bottom:130.178533pt;}
.y243{bottom:134.341867pt;}
.y18{bottom:135.300000pt;}
.y17b{bottom:144.144000pt;}
.ybd{bottom:144.458933pt;}
.y83{bottom:144.807067pt;}
.yf6{bottom:144.975867pt;}
.y220{bottom:145.093733pt;}
.y143{bottom:145.103467pt;}
.y1b5{bottom:145.208533pt;}
.y18d{bottom:145.242800pt;}
.y242{bottom:148.306533pt;}
.y2d{bottom:150.100000pt;}
.y17{bottom:150.147467pt;}
.y17a{bottom:158.988533pt;}
.ybc{bottom:159.366400pt;}
.y82{bottom:159.784133pt;}
.yf5{bottom:159.986933pt;}
.y21f{bottom:160.128133pt;}
.y142{bottom:160.140000pt;}
.y1b4{bottom:160.265867pt;}
.y18c{bottom:160.307200pt;}
.y241{bottom:162.271333pt;}
.y2c{bottom:164.900000pt;}
.y16{bottom:164.994933pt;}
.y179{bottom:173.833067pt;}
.ybb{bottom:174.273867pt;}
.y81{bottom:174.761333pt;}
.yf4{bottom:174.997867pt;}
.y21e{bottom:175.162667pt;}
.y141{bottom:175.176400pt;}
.y1b3{bottom:175.323333pt;}
.y18b{bottom:175.371467pt;}
.y240{bottom:176.236000pt;}
.y2b{bottom:179.700000pt;}
.y15{bottom:179.842400pt;}
.y178{bottom:188.677600pt;}
.yba{bottom:189.181467pt;}
.y80{bottom:189.738533pt;}
.yf3{bottom:190.008800pt;}
.y21d{bottom:190.197200pt;}
.y140{bottom:190.212800pt;}
.y1b2{bottom:190.380800pt;}
.y18a{bottom:190.435867pt;}
.y2a{bottom:194.500000pt;}
.y14{bottom:194.690000pt;}
.y23f{bottom:202.072667pt;}
.y177{bottom:203.522133pt;}
.yb9{bottom:204.089067pt;}
.y7f{bottom:204.715600pt;}
.yf2{bottom:205.019733pt;}
.y21c{bottom:205.231600pt;}
.y1b1{bottom:205.438267pt;}
.y189{bottom:205.500133pt;}
.y29{bottom:209.300000pt;}
.y13{bottom:209.537467pt;}
.y13f{bottom:213.608267pt;}
.y23e{bottom:216.970667pt;}
.y176{bottom:218.366667pt;}
.yb8{bottom:218.996533pt;}
.y7e{bottom:219.692933pt;}
.yf1{bottom:220.030667pt;}
.y21b{bottom:220.266133pt;}
.y1b0{bottom:220.495600pt;}
.y28{bottom:224.100000pt;}
.y12{bottom:224.384933pt;}
.y13e{bottom:228.644800pt;}
.y175{bottom:233.211200pt;}
.yb7{bottom:233.904000pt;}
.y7d{bottom:234.670000pt;}
.yf0{bottom:235.041600pt;}
.y21a{bottom:235.300533pt;}
.y1af{bottom:235.553067pt;}
.y188{bottom:236.482533pt;}
.y27{bottom:238.900000pt;}
.y11{bottom:239.232400pt;}
.y23d{bottom:242.807333pt;}
.y13d{bottom:243.681200pt;}
.y174{bottom:248.055733pt;}
.yb6{bottom:248.811600pt;}
.yef{bottom:250.052533pt;}
.y219{bottom:250.335067pt;}
.y1ae{bottom:250.610533pt;}
.y187{bottom:251.546933pt;}
.y26{bottom:253.700000pt;}
.y10{bottom:254.079867pt;}
.y23c{bottom:257.705333pt;}
.y7c{bottom:258.006133pt;}
.y13c{bottom:258.717733pt;}
.y173{bottom:262.900267pt;}
.yb5{bottom:263.719200pt;}
.yee{bottom:265.063467pt;}
.y218{bottom:265.369600pt;}
.y1f7{bottom:265.429733pt;}
.y1ad{bottom:265.667867pt;}
.y1f8{bottom:266.362933pt;}
.y186{bottom:266.611200pt;}
.y25{bottom:268.500000pt;}
.yf{bottom:268.927467pt;}
.y23b{bottom:272.603333pt;}
.y7b{bottom:272.983333pt;}
.y13b{bottom:273.754133pt;}
.y172{bottom:277.744933pt;}
.yb4{bottom:278.626667pt;}
.yed{bottom:280.074400pt;}
.y217{bottom:280.404000pt;}
.y1ac{bottom:280.725333pt;}
.y185{bottom:281.675467pt;}
.y24{bottom:283.300000pt;}
.ye{bottom:283.774933pt;}
.y23a{bottom:287.501467pt;}
.y7a{bottom:287.960533pt;}
.y13a{bottom:288.790667pt;}
.y171{bottom:292.589467pt;}
.yb3{bottom:293.534133pt;}
.yec{bottom:295.085333pt;}
.y285{bottom:295.200667pt;}
.y216{bottom:295.438533pt;}
.y1ab{bottom:295.782800pt;}
.y184{bottom:296.739867pt;}
.y23{bottom:298.100000pt;}
.yd{bottom:298.622400pt;}
.y239{bottom:302.399467pt;}
.y79{bottom:302.937733pt;}
.y139{bottom:303.827067pt;}
.y284{bottom:306.467333pt;}
.y170{bottom:307.434000pt;}
.yb2{bottom:308.441733pt;}
.yeb{bottom:310.096267pt;}
.y215{bottom:310.473067pt;}
.y1aa{bottom:310.840267pt;}
.y183{bottom:311.804133pt;}
.y22{bottom:312.900000pt;}
.y299{bottom:313.247867pt;}
.yc{bottom:313.469867pt;}
.y238{bottom:317.297600pt;}
.y283{bottom:317.734000pt;}
.y78{bottom:317.914933pt;}
.y138{bottom:318.863467pt;}
.y16f{bottom:322.278533pt;}
.yb1{bottom:323.349200pt;}
.yea{bottom:325.107200pt;}
.y298{bottom:325.247867pt;}
.y214{bottom:325.507467pt;}
.y1a9{bottom:325.897600pt;}
.y182{bottom:326.868400pt;}
.y21{bottom:327.700000pt;}
.yb{bottom:328.317333pt;}
.y282{bottom:329.378533pt;}
.y77{bottom:332.892000pt;}
.y137{bottom:333.900000pt;}
.y16e{bottom:337.123067pt;}
.y297{bottom:337.247867pt;}
.yb0{bottom:338.256800pt;}
.ye9{bottom:340.118267pt;}
.y213{bottom:340.542000pt;}
.y281{bottom:340.645200pt;}
.y1a8{bottom:340.955067pt;}
.y181{bottom:341.932800pt;}
.y20{bottom:342.500000pt;}
.y237{bottom:343.134133pt;}
.ya{bottom:343.164933pt;}
.y76{bottom:347.869200pt;}
.y136{bottom:348.936400pt;}
.y296{bottom:349.247867pt;}
.y280{bottom:351.911867pt;}
.y16d{bottom:351.967600pt;}
.yaf{bottom:353.164267pt;}
.ye8{bottom:355.129200pt;}
.y212{bottom:355.576400pt;}
.y1a7{bottom:356.012533pt;}
.y180{bottom:356.997067pt;}
.y1f{bottom:357.300000pt;}
.y9{bottom:358.012400pt;}
.y236{bottom:358.032267pt;}
.y295{bottom:361.247867pt;}
.y75{bottom:362.846400pt;}
.y27f{bottom:363.556533pt;}
.y135{bottom:363.972800pt;}
.yae{bottom:368.071867pt;}
.ye7{bottom:370.140133pt;}
.y211{bottom:370.610933pt;}
.y1a6{bottom:371.070000pt;}
.y1e{bottom:372.100000pt;}
.y8{bottom:372.859867pt;}
.y235{bottom:372.930267pt;}
.y27e{bottom:374.823200pt;}
.y16c{bottom:375.171200pt;}
.y74{bottom:377.823467pt;}
.y134{bottom:379.009333pt;}
.yad{bottom:382.979333pt;}
.ye6{bottom:385.151067pt;}
.y210{bottom:385.645467pt;}
.y27d{bottom:386.089867pt;}
.y1a5{bottom:386.127333pt;}
.y1d{bottom:386.900000pt;}
.y7{bottom:387.707333pt;}
.y234{bottom:387.828267pt;}
.y16b{bottom:390.015733pt;}
.y1be{bottom:393.050933pt;}
.y73{bottom:393.600667pt;}
.y133{bottom:394.045733pt;}
.y27c{bottom:397.734400pt;}
.yac{bottom:397.886933pt;}
.ye5{bottom:400.162000pt;}
.y20f{bottom:400.679867pt;}
.y1a4{bottom:401.184800pt;}
.y1c{bottom:401.700000pt;}
.y1bd{bottom:401.720933pt;}
.y6{bottom:402.554800pt;}
.y233{bottom:402.726400pt;}
.y16a{bottom:404.860267pt;}
.y27b{bottom:409.001200pt;}
.y132{bottom:409.082133pt;}
.yab{bottom:412.794400pt;}
.y1bc{bottom:413.720933pt;}
.ye4{bottom:415.172933pt;}
.y20e{bottom:415.714400pt;}
.y1a3{bottom:416.242267pt;}
.y1b{bottom:416.500000pt;}
.y5{bottom:417.402400pt;}
.y232{bottom:417.624400pt;}
.y72{bottom:419.516400pt;}
.y169{bottom:419.704800pt;}
.y27a{bottom:420.267867pt;}
.y131{bottom:424.118667pt;}
.y1bb{bottom:425.720933pt;}
.yaa{bottom:427.702000pt;}
.ye3{bottom:430.183867pt;}
.y20d{bottom:430.748800pt;}
.y1a2{bottom:431.299733pt;}
.y1a{bottom:431.300000pt;}
.y279{bottom:431.912400pt;}
.y4{bottom:432.249867pt;}
.y231{bottom:432.522400pt;}
.y71{bottom:434.493600pt;}
.y168{bottom:434.549333pt;}
.y1f3{bottom:437.098267pt;}
.y1ba{bottom:437.720933pt;}
.y130{bottom:439.155067pt;}
.ya9{bottom:442.609467pt;}
.y278{bottom:443.179067pt;}
.ye2{bottom:445.194800pt;}
.y20c{bottom:445.783333pt;}
.y19{bottom:446.100000pt;}
.y1a1{bottom:446.357067pt;}
.y3{bottom:447.097333pt;}
.y230{bottom:447.420533pt;}
.y1fd{bottom:449.098267pt;}
.y167{bottom:449.393867pt;}
.y70{bottom:449.470800pt;}
.y1f2{bottom:451.998800pt;}
.y12f{bottom:454.191600pt;}
.y277{bottom:454.445733pt;}
.y1bf{bottom:455.320533pt;}
.ya8{bottom:457.517067pt;}
.ye1{bottom:460.205733pt;}
.y20b{bottom:460.817733pt;}
.y1fc{bottom:461.098267pt;}
.y1a0{bottom:461.414533pt;}
.y22f{bottom:462.318533pt;}
.y166{bottom:464.238533pt;}
.y6f{bottom:464.447867pt;}
.y276{bottom:466.090400pt;}
.y1f1{bottom:466.899333pt;}
.y12e{bottom:469.228000pt;}
.ya7{bottom:472.424533pt;}
.y1fb{bottom:473.098267pt;}
.ye0{bottom:475.216667pt;}
.y20a{bottom:475.852267pt;}
.y19f{bottom:476.472000pt;}
.y22e{bottom:477.216667pt;}
.y275{bottom:477.357067pt;}
.y165{bottom:479.083067pt;}
.y6e{bottom:479.425067pt;}
.y1f0{bottom:481.799867pt;}
.y12d{bottom:484.264400pt;}
.y1fa{bottom:485.098267pt;}
.ya6{bottom:487.332133pt;}
.y294{bottom:488.623733pt;}
.y274{bottom:489.001733pt;}
.ydf{bottom:490.227600pt;}
.y209{bottom:490.886800pt;}
.y19e{bottom:491.529333pt;}
.y22d{bottom:492.114667pt;}
.y41{bottom:493.616400pt;}
.y164{bottom:493.927600pt;}
.y6d{bottom:494.402267pt;}
.y1ef{bottom:496.700400pt;}
.y12c{bottom:499.300933pt;}
.y273{bottom:500.268400pt;}
.ya5{bottom:502.239600pt;}
.y1fe{bottom:502.697867pt;}
.yde{bottom:505.238533pt;}
.y208{bottom:505.921200pt;}
.y19d{bottom:506.586800pt;}
.y22c{bottom:507.012667pt;}
.y163{bottom:508.772133pt;}
.y6c{bottom:509.379333pt;}
.y293{bottom:511.534933pt;}
.y1ee{bottom:511.600933pt;}
.y272{bottom:511.912933pt;}
.y12b{bottom:514.337333pt;}
.ya4{bottom:517.147200pt;}
.y40{bottom:519.355067pt;}
.ydd{bottom:520.249467pt;}
.y207{bottom:520.955733pt;}
.y19c{bottom:521.644267pt;}
.y22b{bottom:521.910800pt;}
.y271{bottom:523.179600pt;}
.y162{bottom:523.616667pt;}
.y6b{bottom:524.356533pt;}
.y1ed{bottom:526.501600pt;}
.y12a{bottom:529.373867pt;}
.ya3{bottom:532.054667pt;}
.y292{bottom:534.446267pt;}
.y270{bottom:534.824267pt;}
.ydc{bottom:535.260400pt;}
.y3f{bottom:535.355067pt;}
.y206{bottom:535.990267pt;}
.y19b{bottom:536.701733pt;}
.y22a{bottom:536.808800pt;}
.y161{bottom:538.461200pt;}
.y6a{bottom:539.333733pt;}
.y1ec{bottom:541.402133pt;}
.y129{bottom:544.410267pt;}
.y26f{bottom:546.090933pt;}
.ya2{bottom:546.962133pt;}
.y3e{bottom:549.755067pt;}
.ydb{bottom:550.271467pt;}
.y205{bottom:551.024667pt;}
.y229{bottom:551.706933pt;}
.y19a{bottom:551.759067pt;}
.y69{bottom:554.310933pt;}
.y1eb{bottom:556.302667pt;}
.y291{bottom:557.357600pt;}
.y26e{bottom:557.735467pt;}
.y128{bottom:559.446667pt;}
.y160{bottom:561.664800pt;}
.y10f{bottom:561.869733pt;}
.ya1{bottom:562.669733pt;}
.y3d{bottom:564.155067pt;}
.yda{bottom:565.282400pt;}
.y204{bottom:566.059200pt;}
.y228{bottom:566.604933pt;}
.y199{bottom:566.816533pt;}
.y290{bottom:568.624267pt;}
.y68{bottom:569.288000pt;}
.y26d{bottom:569.380133pt;}
.y1ea{bottom:571.203200pt;}
.y1c0{bottom:571.224800pt;}
.y127{bottom:574.483200pt;}
.y15f{bottom:576.509333pt;}
.y10e{bottom:576.777200pt;}
.y3c{bottom:578.555067pt;}
.y28f{bottom:580.268800pt;}
.yd9{bottom:580.293333pt;}
.y26c{bottom:580.646800pt;}
.y203{bottom:581.093733pt;}
.y227{bottom:581.502933pt;}
.y198{bottom:581.874000pt;}
.y67{bottom:584.265200pt;}
.ya0{bottom:585.936267pt;}
.y1e9{bottom:586.103733pt;}
.y126{bottom:589.519600pt;}
.y15e{bottom:591.353867pt;}
.y28e{bottom:591.535467pt;}
.y10d{bottom:591.684800pt;}
.y26b{bottom:591.913467pt;}
.y3b{bottom:592.955067pt;}
.yd8{bottom:595.304133pt;}
.y202{bottom:596.128133pt;}
.y226{bottom:596.401067pt;}
.y197{bottom:596.931333pt;}
.y66{bottom:599.242400pt;}
.y9f{bottom:600.843867pt;}
.y1e8{bottom:601.004267pt;}
.y28d{bottom:603.180133pt;}
.y26a{bottom:603.558133pt;}
.y125{bottom:604.556133pt;}
.y15d{bottom:606.198400pt;}
.y10c{bottom:606.592267pt;}
.y3a{bottom:607.355067pt;}
.yd7{bottom:610.315200pt;}
.y201{bottom:611.162667pt;}
.y225{bottom:611.299067pt;}
.y196{bottom:611.988800pt;}
.y65{bottom:614.219467pt;}
.y28c{bottom:614.446800pt;}
.y269{bottom:614.824800pt;}
.y1ff{bottom:615.067600pt;}
.y9e{bottom:615.751333pt;}
.y1e7{bottom:615.904800pt;}
.y124{bottom:619.592533pt;}
.y15c{bottom:621.042933pt;}
.y10b{bottom:621.499867pt;}
.y39{bottom:621.755067pt;}
.yd6{bottom:625.326133pt;}
.y268{bottom:626.091467pt;}
.y200{bottom:626.197067pt;}
.y195{bottom:627.046267pt;}
.y64{bottom:629.196667pt;}
.y9d{bottom:630.658933pt;}
.y1e6{bottom:630.805467pt;}
.y123{bottom:634.628933pt;}
.y15b{bottom:635.887467pt;}
.y38{bottom:636.155067pt;}
.y10a{bottom:636.407333pt;}
.y28b{bottom:637.358133pt;}
.y267{bottom:637.736000pt;}
.yd5{bottom:640.337067pt;}
.y63{bottom:644.173867pt;}
.y9c{bottom:645.566400pt;}
.y1e5{bottom:645.706000pt;}
.y266{bottom:649.002667pt;}
.y122{bottom:649.665467pt;}
.y37{bottom:650.555067pt;}
.y15a{bottom:650.732133pt;}
.y109{bottom:651.314933pt;}
.y194{bottom:653.042267pt;}
.yd4{bottom:655.348000pt;}
.y24b{bottom:658.920933pt;}
.y62{bottom:659.150933pt;}
.y265{bottom:660.269333pt;}
.y9b{bottom:660.474000pt;}
.y1e4{bottom:660.606533pt;}
.y121{bottom:664.701867pt;}
.y36{bottom:664.955067pt;}
.y159{bottom:665.576667pt;}
.y108{bottom:666.222400pt;}
.y193{bottom:668.099733pt;}
.y24a{bottom:670.920933pt;}
.y264{bottom:671.914000pt;}
.y61{bottom:674.128133pt;}
.y9a{bottom:675.381467pt;}
.y1e3{bottom:675.507067pt;}
.yd3{bottom:678.718000pt;}
.y35{bottom:679.355067pt;}
.y120{bottom:679.738267pt;}
.y158{bottom:680.421200pt;}
.y107{bottom:681.130000pt;}
.y249{bottom:682.920933pt;}
.y192{bottom:683.157200pt;}
.y263{bottom:683.180667pt;}
.y60{bottom:689.105333pt;}
.y99{bottom:690.289067pt;}
.y1e2{bottom:690.407600pt;}
.yd2{bottom:693.728933pt;}
.y34{bottom:693.755067pt;}
.y11f{bottom:694.774800pt;}
.y262{bottom:694.825333pt;}
.y248{bottom:694.920933pt;}
.y157{bottom:695.265733pt;}
.y106{bottom:696.037467pt;}
.y5f{bottom:704.082400pt;}
.y98{bottom:705.196533pt;}
.y1e1{bottom:705.308133pt;}
.y261{bottom:706.092000pt;}
.y247{bottom:706.920933pt;}
.y33{bottom:708.155067pt;}
.yd1{bottom:708.739867pt;}
.y11e{bottom:709.811200pt;}
.y156{bottom:710.110267pt;}
.y105{bottom:710.944933pt;}
.y1c3{bottom:715.880933pt;}
.y260{bottom:717.736533pt;}
.y5e{bottom:719.059600pt;}
.y97{bottom:720.104133pt;}
.y1e0{bottom:720.208800pt;}
.y32{bottom:722.555067pt;}
.yd0{bottom:723.750800pt;}
.y11d{bottom:724.847600pt;}
.y155{bottom:724.954800pt;}
.y104{bottom:725.852533pt;}
.y1c2{bottom:727.880933pt;}
.y25f{bottom:729.003200pt;}
.y5d{bottom:734.036800pt;}
.y96{bottom:735.011600pt;}
.y1df{bottom:735.109333pt;}
.ycf{bottom:738.761733pt;}
.y154{bottom:739.799333pt;}
.y1c1{bottom:739.880933pt;}
.y11c{bottom:739.884133pt;}
.y25e{bottom:740.269867pt;}
.y28a{bottom:740.647867pt;}
.y103{bottom:740.760133pt;}
.y5c{bottom:749.014000pt;}
.y95{bottom:749.919067pt;}
.y1de{bottom:750.009867pt;}
.y25d{bottom:751.914533pt;}
.yce{bottom:753.772667pt;}
.y153{bottom:754.643867pt;}
.y11b{bottom:754.920533pt;}
.y102{bottom:755.667600pt;}
.y31{bottom:755.852667pt;}
.y1c4{bottom:757.480667pt;}
.y1c5{bottom:758.414000pt;}
.y25c{bottom:763.181200pt;}
.y5b{bottom:763.991067pt;}
.y94{bottom:764.826667pt;}
.y1dd{bottom:764.910400pt;}
.y1d1{bottom:766.117067pt;}
.ycd{bottom:768.783600pt;}
.y152{bottom:769.488400pt;}
.y11a{bottom:769.957067pt;}
.y101{bottom:770.575200pt;}
.y30{bottom:773.452667pt;}
.y25b{bottom:774.825867pt;}
.y5a{bottom:778.968267pt;}
.y93{bottom:779.734267pt;}
.y1dc{bottom:779.810933pt;}
.y1d0{bottom:780.916933pt;}
.ycc{bottom:783.794533pt;}
.y151{bottom:784.333067pt;}
.y119{bottom:784.993467pt;}
.y100{bottom:785.482667pt;}
.y25a{bottom:786.092400pt;}
.y47{bottom:790.918667pt;}
.y59{bottom:793.945467pt;}
.y92{bottom:794.641733pt;}
.y1db{bottom:794.711467pt;}
.y1cf{bottom:795.717067pt;}
.y259{bottom:797.359067pt;}
.y289{bottom:797.737200pt;}
.ycb{bottom:798.805467pt;}
.y150{bottom:799.177600pt;}
.y118{bottom:800.030000pt;}
.yff{bottom:800.390267pt;}
.y58{bottom:808.922667pt;}
.y258{bottom:809.003733pt;}
.y91{bottom:809.549200pt;}
.y1da{bottom:809.612000pt;}
.y1ce{bottom:810.517067pt;}
.yca{bottom:813.816533pt;}
.y14f{bottom:814.022133pt;}
.y117{bottom:815.066400pt;}
.yfe{bottom:815.297733pt;}
.y257{bottom:820.270400pt;}
.y2f{bottom:821.288933pt;}
.y57{bottom:823.899733pt;}
.y90{bottom:824.456800pt;}
.y1d9{bottom:824.512667pt;}
.y1cd{bottom:825.317067pt;}
.y14e{bottom:828.866667pt;}
.y116{bottom:830.102800pt;}
.yfd{bottom:830.205200pt;}
.y256{bottom:831.537067pt;}
.y288{bottom:831.915067pt;}
.yc9{bottom:837.186400pt;}
.y56{bottom:838.876933pt;}
.y8f{bottom:839.364400pt;}
.y1d8{bottom:839.413200pt;}
.y1cc{bottom:840.117067pt;}
.y255{bottom:843.181733pt;}
.y14d{bottom:843.711200pt;}
.yfc{bottom:845.112800pt;}
.yc8{bottom:852.197467pt;}
.y115{bottom:853.498400pt;}
.y55{bottom:853.854133pt;}
.y8e{bottom:854.271867pt;}
.y1d7{bottom:854.313733pt;}
.y254{bottom:854.448400pt;}
.y1cb{bottom:854.917067pt;}
.y2e{bottom:856.488933pt;}
.y14c{bottom:858.555733pt;}
.yfb{bottom:860.820267pt;}
.y253{bottom:866.093067pt;}
.yc7{bottom:867.208267pt;}
.y114{bottom:868.534800pt;}
.y54{bottom:868.831200pt;}
.y8d{bottom:869.179333pt;}
.y1d6{bottom:869.214267pt;}
.y1ca{bottom:869.717067pt;}
.y14b{bottom:873.400267pt;}
.y252{bottom:877.359733pt;}
.yc6{bottom:882.219333pt;}
.y113{bottom:883.571200pt;}
.y53{bottom:883.808400pt;}
.y8c{bottom:884.086933pt;}
.y1d5{bottom:884.114800pt;}
.y1c9{bottom:884.517067pt;}
.y251{bottom:888.626267pt;}
.yc5{bottom:897.230267pt;}
.y112{bottom:898.607600pt;}
.y52{bottom:898.785600pt;}
.y8b{bottom:898.994400pt;}
.y1d4{bottom:899.015333pt;}
.y14a{bottom:899.183467pt;}
.y1c8{bottom:899.317067pt;}
.y250{bottom:899.892933pt;}
.y287{bottom:900.270933pt;}
.y49{bottom:905.193067pt;}
.y24f{bottom:911.537600pt;}
.yc4{bottom:912.241200pt;}
.y111{bottom:913.644133pt;}
.y51{bottom:913.762667pt;}
.y8a{bottom:913.902000pt;}
.y1d3{bottom:913.916000pt;}
.y149{bottom:914.027867pt;}
.y1c7{bottom:914.117067pt;}
.y24e{bottom:922.804267pt;}
.y286{bottom:923.182267pt;}
.yc3{bottom:927.252133pt;}
.y110{bottom:928.680533pt;}
.y50{bottom:928.739867pt;}
.y89{bottom:928.809467pt;}
.y1d2{bottom:928.816533pt;}
.y148{bottom:928.872533pt;}
.y1c6{bottom:928.917067pt;}
.y24d{bottom:934.448933pt;}
.y48{bottom:935.368133pt;}
.yc2{bottom:942.263067pt;}
.y4f{bottom:943.717067pt;}
.y24c{bottom:945.715600pt;}
.y4e{bottom:968.158000pt;}
.y2{bottom:988.330533pt;}
.y4d{bottom:989.583600pt;}
.y1{bottom:1000.463867pt;}
.y4c{bottom:1003.450400pt;}
.y4a{bottom:1015.370667pt;}
.ha{height:20.832000pt;}
.h15{height:22.760000pt;}
.he{height:31.062500pt;}
.h17{height:31.269333pt;}
.hf{height:32.085333pt;}
.h18{height:32.440000pt;}
.h2{height:33.264000pt;}
.h11{height:34.080000pt;}
.h16{height:34.602667pt;}
.h4{height:35.136000pt;}
.h7{height:35.678000pt;}
.h14{height:36.080000pt;}
.h10{height:38.016000pt;}
.h3{height:38.928000pt;}
.h13{height:39.984000pt;}
.hb{height:40.781250pt;}
.h8{height:42.768000pt;}
.h9{height:43.296000pt;}
.h12{height:45.416000pt;}
.hc{height:46.593750pt;}
.h6{height:48.869333pt;}
.hd{height:54.656000pt;}
.h5{height:85.888000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:40.000000pt;}
.x11{left:41.133867pt;}
.xf{left:47.494800pt;}
.x4{left:60.472400pt;}
.x19{left:76.163867pt;}
.x14{left:79.370000pt;}
.x18{left:84.472400pt;}
.x7{left:105.568267pt;}
.x8{left:116.223867pt;}
.x1e{left:119.870533pt;}
.x1c{left:206.937200pt;}
.x1b{left:210.593467pt;}
.xd{left:224.342800pt;}
.xe{left:234.998533pt;}
.x12{left:237.715067pt;}
.x9{left:269.416400pt;}
.xa{left:280.072000pt;}
.x13{left:283.368800pt;}
.x1d{left:315.737200pt;}
.x1{left:397.732267pt;}
.x1a{left:399.553600pt;}
.x2{left:404.869333pt;}
.x1f{left:410.737200pt;}
.x3{left:423.766933pt;}
.x17{left:428.850533pt;}
.x5{left:573.497333pt;}
.x6{left:584.202400pt;}
.x15{left:635.820800pt;}
.xb{left:681.472667pt;}
.xc{left:692.128400pt;}
.x16{left:734.774933pt;}
}




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