
    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_803466796b9ae8543d076ef2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_c706815bb43b77c86b9e245c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;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_cea88cae4205934a51f9f369.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_9651c6f1abd78e18063ec802.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_932ab59301e4cb452c604fcf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.761000;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_6b455bf8b6127db11a92caa5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_77262934408f29c85be7d7d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.388000;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_0ba02819523e942624dc56c0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_48dcd5aae0037293679f4e14.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.199000;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_5a92b9e439d5ed57413369a1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_0dad70b41d9a29850095a771.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;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_6ab3acf99b41d6d4d92df53c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_7d26c271d1585bc4193d89da.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.734863;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_caa68e97cd22daf8352950a2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.727539;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_5a92b9e439d5ed57413369a1.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;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_0dad70b41d9a29850095a771.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006348;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_6ab3acf99b41d6d4d92df53c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.206055;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_7d26c271d1585bc4193d89da.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.734863;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_caa68e97cd22daf8352950a2.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.727539;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_655e50264b3b607e54dece38.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000488;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_e92fff1c8cfdc52512b129c5.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.006348;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_43c4906876fcd4a58442fb34.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;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_8387f6d699961747349f783e.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.734863;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_cd731c4c8dd96f59e9aea907.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.926270;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_5a92b9e439d5ed57413369a1.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000488;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_936c09916c34288dec980897.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.006348;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_74a8fc05435eb10441976fc2.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.206055;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_3ce7be04044e4b2a588f76ea.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.734863;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_5a92b9e439d5ed57413369a1.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;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:ff1e;src:url('chunks/assets/font_936c09916c34288dec980897.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.006348;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:ff1f;src:url('chunks/assets/font_74a8fc05435eb10441976fc2.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.206055;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:ff20;src:url('chunks/assets/font_3ce7be04044e4b2a588f76ea.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.734863;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;}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m26{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-22.677732px;}
.v2{vertical-align:-17.358000px;}
.v9{vertical-align:-12.977316px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.504000px;}
.v7{vertical-align:19.620000px;}
.v1{vertical-align:21.702000px;}
.vb{vertical-align:23.802000px;}
.v3{vertical-align:28.578000px;}
.v6{vertical-align:40.200000px;}
.v8{vertical-align:41.322000px;}
.v5{vertical-align:68.754000px;}
.ls41{letter-spacing:-2.789568px;}
.ls39{letter-spacing:-2.510611px;}
.ls44{letter-spacing:-0.394200px;}
.ls3c{letter-spacing:-0.354780px;}
.ls66{letter-spacing:-0.288576px;}
.ls5c{letter-spacing:-0.186372px;}
.ls56{letter-spacing:-0.180360px;}
.ls57{letter-spacing:-0.162324px;}
.ls68{letter-spacing:-0.138276px;}
.ls5d{letter-spacing:-0.132264px;}
.ls5a{letter-spacing:-0.120240px;}
.ls58{letter-spacing:-0.114228px;}
.ls55{letter-spacing:-0.108216px;}
.ls67{letter-spacing:-0.102204px;}
.ls65{letter-spacing:-0.096192px;}
.ls45{letter-spacing:-0.072144px;}
.ls3d{letter-spacing:-0.064930px;}
.ls43{letter-spacing:-0.054108px;}
.ls3b{letter-spacing:-0.048697px;}
.ls5b{letter-spacing:-0.042084px;}
.ls46{letter-spacing:-0.036072px;}
.ls3e{letter-spacing:-0.032465px;}
.ls63{letter-spacing:-0.032400px;}
.ls42{letter-spacing:-0.030060px;}
.ls3a{letter-spacing:-0.027054px;}
.ls6b{letter-spacing:-0.027000px;}
.ls40{letter-spacing:-0.024048px;}
.ls38{letter-spacing:-0.021643px;}
.ls62{letter-spacing:-0.021600px;}
.ls69{letter-spacing:-0.018036px;}
.ls64{letter-spacing:-0.016200px;}
.ls3f{letter-spacing:-0.014364px;}
.ls37{letter-spacing:-0.012928px;}
.ls5e{letter-spacing:-0.012024px;}
.lsd{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001952px;}
.ls1{letter-spacing:0.002725px;}
.lsa{letter-spacing:0.003008px;}
.ls7{letter-spacing:0.004200px;}
.ls3{letter-spacing:0.004766px;}
.ls1a{letter-spacing:0.009720px;}
.ls27{letter-spacing:0.010800px;}
.ls1c{letter-spacing:0.010822px;}
.ls29{letter-spacing:0.012024px;}
.ls20{letter-spacing:0.014580px;}
.ls2d{letter-spacing:0.016200px;}
.ls47{letter-spacing:0.018036px;}
.ls53{letter-spacing:0.021600px;}
.ls50{letter-spacing:0.024048px;}
.ls19{letter-spacing:0.024300px;}
.ls26{letter-spacing:0.027000px;}
.ls4c{letter-spacing:0.030060px;}
.ls1d{letter-spacing:0.032465px;}
.ls2a{letter-spacing:0.036072px;}
.ls4d{letter-spacing:0.037800px;}
.ls21{letter-spacing:0.038880px;}
.ls4f{letter-spacing:0.042084px;}
.ls2e{letter-spacing:0.043200px;}
.ls16{letter-spacing:0.047401px;}
.ls1b{letter-spacing:0.048697px;}
.ls23{letter-spacing:0.052668px;}
.ls28{letter-spacing:0.054108px;}
.ls51{letter-spacing:0.060120px;}
.ls52{letter-spacing:0.066132px;}
.ls4e{letter-spacing:0.072144px;}
.ls59{letter-spacing:0.078156px;}
.ls22{letter-spacing:0.082620px;}
.ls6a{letter-spacing:0.084168px;}
.ls2f{letter-spacing:0.091800px;}
.ls1e{letter-spacing:0.091984px;}
.ls2b{letter-spacing:0.102204px;}
.ls61{letter-spacing:0.109512px;}
.ls1f{letter-spacing:0.111780px;}
.ls2c{letter-spacing:0.124200px;}
.ls48{letter-spacing:0.132264px;}
.ls18{letter-spacing:0.150822px;}
.ls17{letter-spacing:0.163750px;}
.ls25{letter-spacing:0.167580px;}
.ls24{letter-spacing:0.181944px;}
.ls12{letter-spacing:1.343675px;}
.ls6d{letter-spacing:1.349675px;}
.lse{letter-spacing:2.314741px;}
.ls2{letter-spacing:2.989200px;}
.ls10{letter-spacing:3.733200px;}
.ls11{letter-spacing:3.739200px;}
.lsf{letter-spacing:8.519675px;}
.ls0{letter-spacing:10.461300px;}
.ls15{letter-spacing:11.716018px;}
.lsc{letter-spacing:11.954850px;}
.ls73{letter-spacing:12.440400px;}
.ls60{letter-spacing:13.046040px;}
.ls14{letter-spacing:13.270183px;}
.ls74{letter-spacing:13.369032px;}
.ls5f{letter-spacing:13.406760px;}
.ls6f{letter-spacing:13.448400px;}
.ls71{letter-spacing:13.454400px;}
.ls70{letter-spacing:13.477819px;}
.ls13{letter-spacing:13.569061px;}
.ls34{letter-spacing:13.983483px;}
.ls32{letter-spacing:13.989483px;}
.ls30{letter-spacing:14.645022px;}
.ls6c{letter-spacing:14.704798px;}
.ls4{letter-spacing:14.939108px;}
.ls6{letter-spacing:14.944200px;}
.ls6e{letter-spacing:15.003676px;}
.ls31{letter-spacing:15.355200px;}
.ls49{letter-spacing:15.571008px;}
.ls35{letter-spacing:15.616741px;}
.ls33{letter-spacing:17.449200px;}
.ls4b{letter-spacing:21.330504px;}
.ls36{letter-spacing:21.339889px;}
.ls72{letter-spacing:21.650400px;}
.ls4a{letter-spacing:34.294716px;}
.ls5{letter-spacing:57.415200px;}
.ls8{letter-spacing:62.761200px;}
.lsb{letter-spacing:64.321654px;}
.ls54{letter-spacing:848.972556px;}
.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;}
}
.ws97{word-spacing:-60.120000px;}
.ws96{word-spacing:-60.005772px;}
.ws99{word-spacing:-54.000000px;}
.wsb{word-spacing:-28.532313px;}
.wsc{word-spacing:-14.943900px;}
.wsec{word-spacing:-13.449600px;}
.ws60{word-spacing:-13.105800px;}
.ws5e{word-spacing:-12.151944px;}
.ws5f{word-spacing:-11.970000px;}
.ws2e{word-spacing:-11.955150px;}
.ws5b{word-spacing:-11.795220px;}
.ws10{word-spacing:-11.357400px;}
.ws59{word-spacing:-10.936750px;}
.ws5a{word-spacing:-10.773000px;}
.ws3{word-spacing:-10.460700px;}
.ws51{word-spacing:-3.526760px;}
.ws53{word-spacing:-3.227882px;}
.ws87{word-spacing:-3.162312px;}
.wse2{word-spacing:-3.048556px;}
.ws70{word-spacing:-2.846081px;}
.wsfa{word-spacing:-2.636122px;}
.wse5{word-spacing:-2.474726px;}
.ws88{word-spacing:-2.428848px;}
.wscd{word-spacing:-2.391024px;}
.ws71{word-spacing:-2.185963px;}
.wsbe{word-spacing:-2.092176px;}
.wsbc{word-spacing:-2.086164px;}
.wsbd{word-spacing:-2.050092px;}
.wsfb{word-spacing:-2.044339px;}
.ws89{word-spacing:-2.044080px;}
.ws3e{word-spacing:-2.032370px;}
.ws72{word-spacing:-1.839672px;}
.wsd2{word-spacing:-1.733492px;}
.ws52{word-spacing:-1.673717px;}
.wsfc{word-spacing:-1.613952px;}
.ws8b{word-spacing:-1.388772px;}
.ws50{word-spacing:-1.374839px;}
.ws100{word-spacing:-1.291162px;}
.ws74{word-spacing:-1.249895px;}
.ws46{word-spacing:-1.195512px;}
.ws3c{word-spacing:-1.135736px;}
.wsf9{word-spacing:-1.075968px;}
.ws3b{word-spacing:-1.075961px;}
.wsf8{word-spacing:-1.022170px;}
.ws3d{word-spacing:-1.016185px;}
.wsfe{word-spacing:-0.999917px;}
.ws8c{word-spacing:-0.961920px;}
.wscb{word-spacing:-0.956410px;}
.ws94{word-spacing:-0.955908px;}
.ws8f{word-spacing:-0.928800px;}
.ws93{word-spacing:-0.919836px;}
.ws75{word-spacing:-0.865728px;}
.wse3{word-spacing:-0.860774px;}
.ws7d{word-spacing:-0.860317px;}
.wsa8{word-spacing:-0.859716px;}
.ws78{word-spacing:-0.835920px;}
.ws7c{word-spacing:-0.827852px;}
.ws62{word-spacing:-0.806976px;}
.wsa7{word-spacing:-0.805608px;}
.ws56{word-spacing:-0.777083px;}
.wsdd{word-spacing:-0.537980px;}
.wse4{word-spacing:-0.430387px;}
.ws22{word-spacing:-0.358654px;}
.wsa5{word-spacing:-0.348696px;}
.ws23{word-spacing:-0.298878px;}
.ws80{word-spacing:-0.272916px;}
.ws69{word-spacing:-0.245624px;}
.ws28{word-spacing:-0.239102px;}
.ws1a{word-spacing:-0.215194px;}
.ws36{word-spacing:-0.179327px;}
.ws7f{word-spacing:-0.143640px;}
.ws68{word-spacing:-0.129276px;}
.ws2a{word-spacing:-0.119551px;}
.ws98{word-spacing:-0.107597px;}
.ws81{word-spacing:-0.076608px;}
.ws6a{word-spacing:-0.068947px;}
.wsd{word-spacing:-0.059776px;}
.ws61{word-spacing:-0.053798px;}
.ws12{word-spacing:-0.047821px;}
.wse{word-spacing:-0.005717px;}
.wsf2{word-spacing:-0.004157px;}
.ws11{word-spacing:-0.002683px;}
.ws13{word-spacing:-0.002209px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.002683px;}
.ws2d{word-spacing:0.003599px;}
.wsbf{word-spacing:0.006012px;}
.ws18{word-spacing:0.053798px;}
.ws27{word-spacing:0.059776px;}
.ws73{word-spacing:0.070340px;}
.wsa4{word-spacing:0.072144px;}
.ws8a{word-spacing:0.078156px;}
.ws1d{word-spacing:0.107597px;}
.ws24{word-spacing:0.119551px;}
.wsab{word-spacing:0.120240px;}
.ws7a{word-spacing:0.121500px;}
.wsc7{word-spacing:0.126252px;}
.ws77{word-spacing:0.129859px;}
.ws91{word-spacing:0.135000px;}
.wsb0{word-spacing:0.140400px;}
.ws8e{word-spacing:0.144288px;}
.ws6e{word-spacing:0.150660px;}
.wsc8{word-spacing:0.156600px;}
.ws7b{word-spacing:0.160380px;}
.ws85{word-spacing:0.167400px;}
.ws92{word-spacing:0.178200px;}
.ws2f{word-spacing:0.179327px;}
.wsb9{word-spacing:0.192384px;}
.ws31{word-spacing:0.239102px;}
.wsf0{word-spacing:0.268992px;}
.wsca{word-spacing:0.298878px;}
.ws45{word-spacing:0.358654px;}
.wsc4{word-spacing:0.390780px;}
.wsd9{word-spacing:0.418429px;}
.ws15{word-spacing:0.430387px;}
.wsc5{word-spacing:0.438876px;}
.wsc3{word-spacing:0.450900px;}
.ws43{word-spacing:0.537980px;}
.wsbb{word-spacing:0.571140px;}
.ws44{word-spacing:0.657532px;}
.ws76{word-spacing:0.752101px;}
.ws79{word-spacing:0.797040px;}
.ws9b{word-spacing:0.806976px;}
.wsb1{word-spacing:0.823644px;}
.ws8d{word-spacing:0.835668px;}
.ws90{word-spacing:0.885600px;}
.ws1b{word-spacing:0.914573px;}
.wsa6{word-spacing:0.931860px;}
.ws41{word-spacing:0.956410px;}
.wsd1{word-spacing:1.016185px;}
.ws9e{word-spacing:1.070136px;}
.ws63{word-spacing:1.075961px;}
.ws9a{word-spacing:1.129766px;}
.ws42{word-spacing:1.374839px;}
.ws16{word-spacing:1.398758px;}
.wsd5{word-spacing:1.434614px;}
.wsc6{word-spacing:1.460916px;}
.wsd6{word-spacing:1.494390px;}
.ws4e{word-spacing:1.554166px;}
.ws9f{word-spacing:1.689372px;}
.wsd3{word-spacing:1.793268px;}
.ws17{word-spacing:1.829146px;}
.ws65{word-spacing:1.853044px;}
.wsa3{word-spacing:1.869732px;}
.ws48{word-spacing:1.912819px;}
.wsa2{word-spacing:1.941876px;}
.wsdb{word-spacing:1.972595px;}
.ws7e{word-spacing:1.974942px;}
.wsaf{word-spacing:1.998000px;}
.wsad{word-spacing:2.003400px;}
.wsae{word-spacing:2.014200px;}
.ws37{word-spacing:2.032370px;}
.ws66{word-spacing:2.092146px;}
.ws1c{word-spacing:2.098138px;}
.ws95{word-spacing:2.194380px;}
.wsc9{word-spacing:2.271473px;}
.ws6f{word-spacing:2.299590px;}
.ws5d{word-spacing:2.420928px;}
.ws19{word-spacing:2.474726px;}
.ws2{word-spacing:2.510568px;}
.ws0{word-spacing:2.511541px;}
.wse6{word-spacing:2.528525px;}
.ws86{word-spacing:2.555100px;}
.wse1{word-spacing:2.630126px;}
.ws26{word-spacing:2.689902px;}
.ws5c{word-spacing:2.743718px;}
.ws38{word-spacing:2.749678px;}
.ws3f{word-spacing:2.869229px;}
.ws14{word-spacing:2.869236px;}
.wsa9{word-spacing:2.981952px;}
.wsaa{word-spacing:2.993976px;}
.wsda{word-spacing:3.048556px;}
.ws4a{word-spacing:3.108331px;}
.ws40{word-spacing:3.168107px;}
.wsef{word-spacing:3.174106px;}
.ws1e{word-spacing:3.219667px;}
.wsfd{word-spacing:3.220886px;}
.ws101{word-spacing:3.221520px;}
.wsee{word-spacing:3.223133px;}
.wsff{word-spacing:3.224256px;}
.wse7{word-spacing:3.224822px;}
.wsf1{word-spacing:3.225398px;}
.wsf7{word-spacing:3.227674px;}
.wseb{word-spacing:3.227904px;}
.wsde{word-spacing:3.347434px;}
.ws33{word-spacing:3.466985px;}
.wse9{word-spacing:3.496896px;}
.wscc{word-spacing:3.526760px;}
.ws1f{word-spacing:3.586536px;}
.ws4f{word-spacing:3.646312px;}
.ws39{word-spacing:3.706087px;}
.wsc2{word-spacing:3.736800px;}
.ws25{word-spacing:3.765863px;}
.wsea{word-spacing:3.765888px;}
.ws9c{word-spacing:3.799584px;}
.wsc0{word-spacing:3.801600px;}
.wsc1{word-spacing:3.807000px;}
.wse8{word-spacing:3.819686px;}
.ws9d{word-spacing:3.871728px;}
.wse0{word-spacing:4.004965px;}
.ws64{word-spacing:4.005000px;}
.ws35{word-spacing:4.064741px;}
.ws67{word-spacing:4.124516px;}
.wscf{word-spacing:4.184292px;}
.ws103{word-spacing:4.250074px;}
.wsd8{word-spacing:4.303843px;}
.wsce{word-spacing:4.363619px;}
.ws102{word-spacing:4.626662px;}
.ws57{word-spacing:4.662497px;}
.wsb8{word-spacing:4.725432px;}
.wsb7{word-spacing:4.767516px;}
.ws9{word-spacing:4.770079px;}
.ws54{word-spacing:4.782048px;}
.wsa1{word-spacing:4.791564px;}
.wsa{word-spacing:4.853765px;}
.wsd4{word-spacing:5.200477px;}
.wsa0{word-spacing:5.242464px;}
.ws2b{word-spacing:5.320028px;}
.ws6c{word-spacing:5.321700px;}
.ws6d{word-spacing:5.336280px;}
.wsd7{word-spacing:5.379804px;}
.wsb6{word-spacing:5.416812px;}
.wsf3{word-spacing:5.487437px;}
.ws3a{word-spacing:5.499355px;}
.ws21{word-spacing:5.559131px;}
.wsb4{word-spacing:5.585148px;}
.wsb5{word-spacing:5.777532px;}
.wsb2{word-spacing:5.849676px;}
.ws49{word-spacing:5.858009px;}
.ws83{word-spacing:5.913000px;}
.ws84{word-spacing:5.929200px;}
.ws4b{word-spacing:6.156887px;}
.wsb3{word-spacing:6.240456px;}
.wsed{word-spacing:6.294413px;}
.ws30{word-spacing:6.395989px;}
.ws55{word-spacing:6.455765px;}
.wsf4{word-spacing:6.509606px;}
.wsdc{word-spacing:6.635092px;}
.ws29{word-spacing:6.694867px;}
.ws58{word-spacing:6.754643px;}
.wsba{word-spacing:7.070112px;}
.ws2c{word-spacing:7.232848px;}
.ws32{word-spacing:7.471950px;}
.ws4d{word-spacing:7.531726px;}
.wsdf{word-spacing:7.651277px;}
.ws4c{word-spacing:7.770828px;}
.ws7{word-spacing:7.782761px;}
.ws34{word-spacing:8.069706px;}
.wsf6{word-spacing:8.177357px;}
.wsd0{word-spacing:8.368584px;}
.ws47{word-spacing:8.667462px;}
.ws20{word-spacing:9.623872px;}
.ws6b{word-spacing:10.458428px;}
.ws82{word-spacing:11.620476px;}
.wsac{word-spacing:11.939832px;}
.ws5{word-spacing:12.176255px;}
.ws6{word-spacing:16.109478px;}
.wsf5{word-spacing:23.187110px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:26.840252px;}
._1d{margin-left:-13.172292px;}
._18{margin-left:-7.651277px;}
._5{margin-left:-6.634957px;}
._1{margin-left:-5.397721px;}
._8{margin-left:-4.312578px;}
._7{margin-left:-2.635899px;}
._0{margin-left:-1.506341px;}
._19{width:1.055754px;}
._6{width:2.995054px;}
._20{width:4.937452px;}
._1c{width:11.402093px;}
._3{width:12.971268px;}
._9{width:14.824386px;}
._c{width:16.462310px;}
._13{width:17.716219px;}
._b{width:18.883238px;}
._12{width:20.503031px;}
._f{width:22.128923px;}
._15{width:23.204884px;}
._a{width:24.478272px;}
._2{width:25.941685px;}
._d{width:27.448951px;}
._1f{width:29.170493px;}
._4{width:30.587087px;}
._1e{width:31.812570px;}
._14{width:35.745809px;}
._21{width:36.920038px;}
._e{width:38.746540px;}
._17{width:40.719134px;}
._16{width:42.811280px;}
._23{width:61.868160px;}
._22{width:88.767360px;}
._10{width:878.988649px;}
._1a{width:1893.479717px;}
._1b{width:2103.983658px;}
._11{width:2512.802400px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(74,73,130);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs10{font-size:42.120000px;}
.fsa{font-size:43.092000px;}
.fs4{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fsd{font-size:47.880000px;}
.fsc{font-size:48.600000px;}
.fs7{font-size:53.798400px;}
.fsf{font-size:54.000000px;}
.fsb{font-size:54.108000px;}
.fs2{font-size:59.775600px;}
.fse{font-size:60.120000px;}
.fs9{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:114.129254px;}
.ybe{bottom:-603.739343px;}
.ybd{bottom:-586.405845px;}
.ybc{bottom:-553.277115px;}
.ybb{bottom:-537.643710px;}
.yba{bottom:-522.091710px;}
.y110{bottom:-504.433050px;}
.yb9{bottom:-501.918625px;}
.y10f{bottom:-464.653050px;}
.y10e{bottom:-442.151700px;}
.y102{bottom:-259.133988px;}
.y101{bottom:-239.874546px;}
.y100{bottom:-220.705284px;}
.yff{bottom:-201.445842px;}
.yb8{bottom:-190.312006px;}
.yfe{bottom:-182.186400px;}
.yb7{bottom:-172.978508px;}
.yfd{bottom:-163.017138px;}
.yb6{bottom:-155.645010px;}
.yfc{bottom:-143.757696px;}
.yb5{bottom:-138.392674px;}
.yfb{bottom:-124.588434px;}
.yb4{bottom:-121.059176px;}
.y10d{bottom:-113.021754px;}
.yd4{bottom:-109.342992px;}
.yfa{bottom:-105.328992px;}
.yb3{bottom:-103.806841px;}
.y10c{bottom:-93.852492px;}
.yd3{bottom:-90.083550px;}
.yb2{bottom:-86.473343px;}
.yf9{bottom:-86.069550px;}
.y10b{bottom:-74.593050px;}
.yb1{bottom:-69.139845px;}
.y11e{bottom:-58.018050px;}
.yd2{bottom:-53.273850px;}
.yf8{bottom:-49.260450px;}
.y10a{bottom:-37.783500px;}
.yb0{bottom:-36.011250px;}
.yd1{bottom:-35.903400px;}
.yf7{bottom:-31.890000px;}
.y109{bottom:-20.413050px;}
.yaf{bottom:-20.377845px;}
.yd0{bottom:-18.623400px;}
.y11d{bottom:-18.238050px;}
.yf6{bottom:-0.479550px;}
.yae{bottom:-0.208845px;}
.y0{bottom:0.000000px;}
.y18{bottom:1.739201px;}
.y108{bottom:1.996950px;}
.ycf{bottom:3.791139px;}
.y11c{bottom:4.263300px;}
.y17{bottom:30.271042px;}
.y46{bottom:31.890000px;}
.y112{bottom:92.925000px;}
.ye6{bottom:93.732000px;}
.y1b2{bottom:95.461500px;}
.y13f{bottom:101.142000px;}
.y45{bottom:103.621500px;}
.y15{bottom:104.646000px;}
.y7c{bottom:106.296000px;}
.y16c{bottom:107.641500px;}
.y111{bottom:112.158000px;}
.ye5{bottom:112.561500px;}
.y1b1{bottom:112.722000px;}
.y13e{bottom:119.971500px;}
.yaa{bottom:120.073500px;}
.y44{bottom:122.449500px;}
.y14{bottom:122.535000px;}
.y7b{bottom:125.125500px;}
.y16b{bottom:126.471000px;}
.y1b0{bottom:129.982500px;}
.ye4{bottom:131.391000px;}
.y105{bottom:134.587500px;}
.y13d{bottom:138.801000px;}
.ya9{bottom:138.903000px;}
.y13{bottom:140.422500px;}
.y43{bottom:141.279000px;}
.y7a{bottom:143.955000px;}
.y16a{bottom:145.300500px;}
.ye3{bottom:150.219000px;}
.y13c{bottom:157.630500px;}
.ya8{bottom:157.732500px;}
.y12{bottom:158.310000px;}
.y42{bottom:160.108500px;}
.y79{bottom:162.784500px;}
.y169{bottom:164.130000px;}
.ye2{bottom:169.048500px;}
.y1af{bottom:169.060500px;}
.y17a{bottom:172.020000px;}
.y11{bottom:176.199000px;}
.y13b{bottom:176.460000px;}
.ya7{bottom:176.562000px;}
.y41{bottom:178.938000px;}
.y78{bottom:181.614000px;}
.y168{bottom:182.959500px;}
.y1ae{bottom:186.321000px;}
.ye1{bottom:187.878000px;}
.y10{bottom:194.086500px;}
.y13a{bottom:195.289500px;}
.ya6{bottom:195.391500px;}
.y40{bottom:197.767500px;}
.y179{bottom:198.561000px;}
.y77{bottom:200.443500px;}
.y167{bottom:201.789000px;}
.y1ad{bottom:203.581500px;}
.ye0{bottom:206.707500px;}
.yf{bottom:211.974000px;}
.y139{bottom:214.119000px;}
.ya5{bottom:214.221000px;}
.y178{bottom:216.135000px;}
.y3f{bottom:216.597000px;}
.y76{bottom:219.273000px;}
.ydf{bottom:220.462500px;}
.y166{bottom:220.618500px;}
.yde{bottom:220.632000px;}
.y1ac{bottom:220.842000px;}
.ydd{bottom:220.912500px;}
.ydc{bottom:225.537000px;}
.ye{bottom:229.863000px;}
.y138{bottom:232.948500px;}
.ya4{bottom:233.050500px;}
.y3e{bottom:235.426500px;}
.y75{bottom:238.102500px;}
.y165{bottom:239.446500px;}
.y177{bottom:242.676000px;}
.ydb{bottom:246.148500px;}
.y137{bottom:251.778000px;}
.ya3{bottom:251.880000px;}
.y164{bottom:253.201500px;}
.y3d{bottom:254.256000px;}
.y1ab{bottom:255.363000px;}
.y74{bottom:256.932000px;}
.y163{bottom:258.276000px;}
.yda{bottom:264.978000px;}
.y176{bottom:269.215500px;}
.y136{bottom:270.607500px;}
.ya2{bottom:270.709500px;}
.y160{bottom:272.031000px;}
.y161{bottom:272.200500px;}
.y1aa{bottom:272.623500px;}
.y162{bottom:272.727000px;}
.y3c{bottom:273.085500px;}
.y15f{bottom:277.105500px;}
.y73{bottom:280.245000px;}
.yd9{bottom:283.807500px;}
.y135{bottom:289.435500px;}
.ya1{bottom:289.539000px;}
.y1a9{bottom:289.884000px;}
.y3b{bottom:291.915000px;}
.y175{bottom:295.756500px;}
.y15e{bottom:295.935000px;}
.yd{bottom:297.166500px;}
.yd8{bottom:307.120500px;}
.y1a8{bottom:307.143000px;}
.y134{bottom:308.265000px;}
.ya0{bottom:308.368500px;}
.y3a{bottom:310.744500px;}
.y72{bottom:313.869000px;}
.y15d{bottom:314.764500px;}
.yc{bottom:315.054000px;}
.y174{bottom:322.297500px;}
.y1a7{bottom:324.403500px;}
.y133{bottom:327.094500px;}
.y9f{bottom:327.198000px;}
.y39{bottom:329.574000px;}
.y70{bottom:332.698500px;}
.yb{bottom:332.943000px;}
.y11b{bottom:333.393246px;}
.y15c{bottom:333.594000px;}
.yd7{bottom:337.548000px;}
.y71{bottom:338.122500px;}
.y173{bottom:339.871500px;}
.y1a6{bottom:341.664000px;}
.y132{bottom:345.924000px;}
.y9e{bottom:346.027500px;}
.y38{bottom:348.403500px;}
.yce{bottom:350.020716px;}
.ya{bottom:350.830500px;}
.y6f{bottom:351.528000px;}
.y15b{bottom:352.423500px;}
.y11a{bottom:352.562508px;}
.yd6{bottom:356.779500px;}
.y172{bottom:357.445500px;}
.yad{bottom:357.487277px;}
.y1a5{bottom:358.924500px;}
.y131{bottom:364.753500px;}
.y9d{bottom:364.857000px;}
.yac{bottom:366.154155px;}
.y37{bottom:367.233000px;}
.ycd{bottom:369.280158px;}
.y6d{bottom:370.357500px;}
.y15a{bottom:371.253000px;}
.y119{bottom:371.821950px;}
.y171{bottom:375.019500px;}
.y6e{bottom:375.781500px;}
.yd5{bottom:376.012500px;}
.y1a4{bottom:376.185000px;}
.y9{bottom:379.179000px;}
.y130{bottom:383.583000px;}
.y9c{bottom:383.686500px;}
.y159{bottom:385.008000px;}
.y36{bottom:386.062500px;}
.ycc{bottom:388.539600px;}
.y6c{bottom:389.187000px;}
.y158{bottom:390.082500px;}
.y170{bottom:392.593500px;}
.y1a3{bottom:393.445500px;}
.yc1{bottom:398.442000px;}
.yf5{bottom:400.110450px;}
.y12f{bottom:402.412500px;}
.yf3{bottom:403.354779px;}
.y35{bottom:404.892000px;}
.y8{bottom:406.033500px;}
.y9b{bottom:406.998000px;}
.ycb{bottom:407.708862px;}
.y6b{bottom:408.015000px;}
.y118{bottom:408.631500px;}
.y157{bottom:408.912000px;}
.yf4{bottom:409.019883px;}
.y16f{bottom:410.167500px;}
.y1a2{bottom:410.706000px;}
.y12e{bottom:421.242000px;}
.yf2{bottom:422.524041px;}
.y7{bottom:423.921000px;}
.y117{bottom:426.001950px;}
.y6a{bottom:426.844500px;}
.yca{bottom:426.968304px;}
.y9a{bottom:427.173000px;}
.y156{bottom:427.741500px;}
.y1a1{bottom:427.966500px;}
.y34{bottom:428.205000px;}
.y12d{bottom:440.071500px;}
.yf1{bottom:441.783483px;}
.y6{bottom:441.810000px;}
.y1a0{bottom:445.225500px;}
.y69{bottom:445.674000px;}
.yc9{bottom:446.137566px;}
.y155{bottom:446.571000px;}
.y116{bottom:448.411950px;}
.y12c{bottom:458.901000px;}
.y5{bottom:459.697500px;}
.y99{bottom:460.797000px;}
.yf0{bottom:461.042925px;}
.y19f{bottom:462.486000px;}
.y68{bottom:464.503500px;}
.yc8{bottom:465.397008px;}
.y154{bottom:465.400500px;}
.y4{bottom:477.585000px;}
.y12b{bottom:477.730500px;}
.y98{bottom:479.626500px;}
.y19e{bottom:479.746500px;}
.y67{bottom:483.333000px;}
.y153{bottom:484.230000px;}
.yc7{bottom:484.656450px;}
.yef{bottom:484.712169px;}
.y3{bottom:495.474000px;}
.y12a{bottom:496.560000px;}
.y19d{bottom:497.007000px;}
.y97{bottom:498.456000px;}
.y66{bottom:502.162500px;}
.y152{bottom:503.059500px;}
.y33{bottom:503.355000px;}
.y2{bottom:513.361500px;}
.y19c{bottom:514.267500px;}
.y129{bottom:515.389500px;}
.y96{bottom:517.285500px;}
.y65{bottom:520.992000px;}
.yc6{bottom:521.466000px;}
.y151{bottom:521.889000px;}
.yee{bottom:521.971539px;}
.y107{bottom:530.477085px;}
.y1{bottom:531.249000px;}
.y19b{bottom:531.528000px;}
.y128{bottom:534.219000px;}
.yc5{bottom:538.836450px;}
.y64{bottom:539.821500px;}
.y106{bottom:540.106950px;}
.y95{bottom:540.598500px;}
.y150{bottom:540.718500px;}
.y32{bottom:540.744000px;}
.yed{bottom:541.140801px;}
.y19a{bottom:548.788500px;}
.y127{bottom:553.048500px;}
.y63{bottom:558.651000px;}
.y14f{bottom:559.548000px;}
.y31{bottom:560.202000px;}
.yec{bottom:560.400243px;}
.yc4{bottom:561.246450px;}
.y199{bottom:566.049000px;}
.y126{bottom:571.878000px;}
.y94{bottom:574.222500px;}
.y62{bottom:577.480500px;}
.y14e{bottom:578.377500px;}
.y30{bottom:579.658500px;}
.yeb{bottom:579.659685px;}
.y198{bottom:583.309500px;}
.y125{bottom:590.707500px;}
.y93{bottom:593.052000px;}
.y61{bottom:596.310000px;}
.y14d{bottom:597.207000px;}
.yea{bottom:598.830450px;}
.y2f{bottom:599.115000px;}
.y197{bottom:600.568500px;}
.y124{bottom:609.537000px;}
.y92{bottom:611.880000px;}
.y60{bottom:615.139500px;}
.y14c{bottom:616.036500px;}
.y196{bottom:617.829000px;}
.y2e{bottom:618.573000px;}
.y123{bottom:628.366500px;}
.y91{bottom:630.709500px;}
.y104{bottom:633.645000px;}
.y5f{bottom:633.969000px;}
.y14b{bottom:634.866000px;}
.y195{bottom:635.089500px;}
.y2d{bottom:638.029500px;}
.y122{bottom:647.196000px;}
.y90{bottom:649.539000px;}
.y194{bottom:652.350000px;}
.y5e{bottom:652.798500px;}
.y103{bottom:652.878000px;}
.ye9{bottom:653.550585px;}
.y14a{bottom:653.695500px;}
.y2c{bottom:657.487500px;}
.ye8{bottom:663.180450px;}
.y121{bottom:666.025500px;}
.y8f{bottom:668.368500px;}
.y193{bottom:669.610500px;}
.y5d{bottom:671.628000px;}
.y149{bottom:672.525000px;}
.ye7{bottom:675.307500px;}
.y2b{bottom:676.944000px;}
.y192{bottom:686.871000px;}
.y8e{bottom:687.198000px;}
.y120{bottom:689.337000px;}
.y5c{bottom:690.457500px;}
.y148{bottom:691.354500px;}
.y2a{bottom:696.400500px;}
.y191{bottom:704.131500px;}
.y8d{bottom:706.027500px;}
.y5b{bottom:709.287000px;}
.y147{bottom:710.184000px;}
.y16e{bottom:713.770500px;}
.y29{bottom:715.858500px;}
.yc0{bottom:718.351500px;}
.y11f{bottom:719.764500px;}
.y190{bottom:721.392000px;}
.y8c{bottom:724.857000px;}
.y146{bottom:729.013500px;}
.y5a{bottom:732.600000px;}
.y28{bottom:735.315000px;}
.ybf{bottom:737.584500px;}
.y18f{bottom:738.651000px;}
.y113{bottom:742.194000px;}
.y8b{bottom:743.686500px;}
.y16d{bottom:747.394500px;}
.y145{bottom:747.843000px;}
.y27{bottom:754.771500px;}
.y18e{bottom:755.911500px;}
.yab{bottom:760.014000px;}
.y8a{bottom:762.516000px;}
.y59{bottom:766.224000px;}
.y144{bottom:766.671000px;}
.y18d{bottom:773.172000px;}
.y26{bottom:774.229500px;}
.y89{bottom:781.345500px;}
.y58{bottom:785.053500px;}
.y143{bottom:785.500500px;}
.y18c{bottom:790.432500px;}
.y25{bottom:793.686000px;}
.y88{bottom:800.175000px;}
.y57{bottom:803.883000px;}
.y142{bottom:804.330000px;}
.y18b{bottom:807.693000px;}
.y87{bottom:819.004500px;}
.y141{bottom:823.159500px;}
.y18a{bottom:824.953500px;}
.y56{bottom:827.194500px;}
.y24{bottom:832.095000px;}
.y86{bottom:837.834000px;}
.y140{bottom:841.989000px;}
.y189{bottom:842.214000px;}
.y23{bottom:848.233500px;}
.y85{bottom:856.663500px;}
.y188{bottom:859.474500px;}
.y55{bottom:860.818500px;}
.y22{bottom:868.713000px;}
.y84{bottom:875.493000px;}
.y187{bottom:876.735000px;}
.y54{bottom:879.648000px;}
.y21{bottom:880.513500px;}
.y83{bottom:889.246500px;}
.y82{bottom:889.698000px;}
.y186{bottom:893.994000px;}
.y81{bottom:894.165000px;}
.y80{bottom:894.322500px;}
.y53{bottom:898.477500px;}
.y20{bottom:900.993000px;}
.y7f{bottom:910.900500px;}
.y185{bottom:911.254500px;}
.y1f{bottom:912.792000px;}
.y7e{bottom:915.369000px;}
.y7d{bottom:915.526500px;}
.y52{bottom:917.307000px;}
.y184{bottom:928.515000px;}
.y1e{bottom:933.271500px;}
.y51{bottom:936.136500px;}
.y183{bottom:945.775500px;}
.y50{bottom:954.966000px;}
.yc3{bottom:958.686585px;}
.y182{bottom:963.036000px;}
.yc2{bottom:968.316450px;}
.y4f{bottom:973.795500px;}
.y115{bottom:976.892085px;}
.y1d{bottom:977.770500px;}
.y181{bottom:980.296500px;}
.y114{bottom:986.521950px;}
.y4e{bottom:992.625000px;}
.y1c{bottom:996.600000px;}
.y180{bottom:997.557000px;}
.y4d{bottom:1011.454500px;}
.y17f{bottom:1014.817500px;}
.y4c{bottom:1030.284000px;}
.y17e{bottom:1032.076500px;}
.y1b{bottom:1036.519500px;}
.y4b{bottom:1049.113500px;}
.y17d{bottom:1049.337000px;}
.y1a{bottom:1064.764500px;}
.y17c{bottom:1066.597500px;}
.y4a{bottom:1067.943000px;}
.y17b{bottom:1083.858000px;}
.y49{bottom:1086.772500px;}
.y19{bottom:1093.008000px;}
.y48{bottom:1105.602000px;}
.y16{bottom:1136.494500px;}
.y47{bottom:1168.366500px;}
.h10{height:21.017894px;}
.h9{height:26.302208px;}
.h2a{height:27.655250px;}
.h25{height:29.718457px;}
.h2{height:30.461558px;}
.h3{height:30.670772px;}
.h26{height:32.921526px;}
.h2c{height:33.072749px;}
.ha{height:34.813397px;}
.hf{height:35.052500px;}
.hb{height:38.734848px;}
.hc{height:39.165235px;}
.h2e{height:39.434227px;}
.h27{height:39.761719px;}
.h17{height:39.851684px;}
.hd{height:43.038432px;}
.h24{height:43.269961px;}
.he{height:43.516637px;}
.h6{height:43.815515px;}
.h1b{height:44.279648px;}
.h19{height:44.945508px;}
.h2f{height:49.117939px;}
.h1d{height:49.939453px;}
.h18{height:50.039332px;}
.h4{height:50.931027px;}
.h8{height:54.411312px;}
.h14{height:54.768749px;}
.h2b{height:54.774749px;}
.h1c{height:55.599258px;}
.h2d{height:56.874749px;}
.h1e{height:61.656749px;}
.h11{height:62.280749px;}
.h13{height:65.212950px;}
.h12{height:65.218950px;}
.h22{height:67.012950px;}
.h15{height:71.145024px;}
.h1f{height:73.272749px;}
.h20{height:74.394749px;}
.h21{height:75.072749px;}
.h5{height:77.379634px;}
.h7{height:77.469696px;}
.h1a{height:303.679500px;}
.h29{height:306.591000px;}
.h16{height:316.569600px;}
.h23{height:377.961000px;}
.h28{height:482.829000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:207.609956px;}
.w5{width:377.232000px;}
.w6{width:379.417500px;}
.w3{width:409.638600px;}
.w7{width:441.318000px;}
.w4{width:442.045500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x4c{left:-195.789000px;}
.x46{left:-194.332500px;}
.x3b{left:-189.235500px;}
.x35{left:-171.622800px;}
.x0{left:0.000000px;}
.x47{left:1.237500px;}
.x37{left:4.390200px;}
.x3d{left:6.334500px;}
.x4e{left:31.641000px;}
.x38{left:33.064200px;}
.x3e{left:38.194500px;}
.x1{left:53.574000px;}
.x2{left:58.054042px;}
.x76{left:85.848000px;}
.x7a{left:238.488000px;}
.x14{left:247.333500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x4{left:269.914500px;}
.x1c{left:278.080500px;}
.x7{left:281.479500px;}
.x48{left:283.027878px;}
.x12{left:284.188500px;}
.x13{left:291.660000px;}
.x1d{left:293.025000px;}
.x1e{left:300.646500px;}
.x33{left:305.316000px;}
.x40{left:306.804000px;}
.x6{left:308.497500px;}
.x3a{left:309.586500px;}
.x34{left:310.854000px;}
.x1f{left:315.589500px;}
.x49{left:317.047878px;}
.x28{left:327.841500px;}
.x29{left:346.573500px;}
.x5f{left:348.301500px;}
.x31{left:349.564500px;}
.x4a{left:351.156951px;}
.x2a{left:359.410500px;}
.x60{left:363.246000px;}
.x32{left:364.509000px;}
.x2b{left:366.886500px;}
.x57{left:369.328500px;}
.xe{left:371.730000px;}
.xf{left:379.203000px;}
.x10{left:383.013000px;}
.x58{left:384.273000px;}
.x2c{left:385.618500px;}
.x4d{left:386.781000px;}
.x4b{left:388.507500px;}
.x11{left:390.484500px;}
.x5d{left:400.689000px;}
.x59{left:402.877500px;}
.x36{left:406.150200px;}
.x2d{left:407.734500px;}
.x39{left:410.360637px;}
.x5e{left:416.824500px;}
.x75{left:431.814000px;}
.x66{left:434.869500px;}
.x2e{left:438.109500px;}
.x4f{left:439.701000px;}
.x67{left:444.649500px;}
.x68{left:451.599000px;}
.x3c{left:452.734500px;}
.x2f{left:454.524000px;}
.x3f{left:457.412763px;}
.x50{left:458.448000px;}
.x69{left:462.222000px;}
.x41{left:463.735500px;}
.x5c{left:465.205500px;}
.x6a{left:472.003500px;}
.x30{left:473.847000px;}
.x5a{left:479.241000px;}
.x6b{left:482.863500px;}
.x6e{left:487.545000px;}
.x5b{left:494.185500px;}
.x6f{left:497.325000px;}
.x42{left:498.642000px;}
.x61{left:505.383000px;}
.x70{left:513.297000px;}
.x6c{left:516.727500px;}
.x62{left:520.326000px;}
.x6d{left:527.031000px;}
.x43{left:534.072000px;}
.x71{left:543.379500px;}
.x72{left:553.159500px;}
.x44{left:569.502000px;}
.x20{left:571.759500px;}
.x73{left:578.776500px;}
.xa{left:581.436000px;}
.x21{left:586.704000px;}
.xb{left:588.907500px;}
.xc{left:592.626000px;}
.xd{left:600.097500px;}
.x45{left:610.087500px;}
.x74{left:631.312500px;}
.x22{left:667.780500px;}
.x17{left:671.536500px;}
.x18{left:678.342000px;}
.x23{left:686.512500px;}
.x24{left:699.349500px;}
.x15{left:711.279000px;}
.x78{left:717.585000px;}
.x16{left:718.750500px;}
.x55{left:740.484000px;}
.x77{left:745.083000px;}
.x79{left:749.947500px;}
.x56{left:755.427000px;}
.x51{left:757.780500px;}
.x52{left:772.725000px;}
.x53{left:776.452500px;}
.x25{left:778.374000px;}
.x54{left:791.397000px;}
.x8{left:793.455000px;}
.x26{left:797.106000px;}
.x9{left:800.926500px;}
.x1b{left:808.899000px;}
.x27{left:813.664500px;}
.x19{left:815.634000px;}
.x63{left:821.007000px;}
.x1a{left:826.041000px;}
.x64{left:830.787000px;}
.x65{left:837.736500px;}
@media print{
.va{vertical-align:-20.157984pt;}
.v2{vertical-align:-15.429333pt;}
.v9{vertical-align:-11.535392pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.448000pt;}
.v7{vertical-align:17.440000pt;}
.v1{vertical-align:19.290667pt;}
.vb{vertical-align:21.157333pt;}
.v3{vertical-align:25.402667pt;}
.v6{vertical-align:35.733333pt;}
.v8{vertical-align:36.730667pt;}
.v5{vertical-align:61.114667pt;}
.ls41{letter-spacing:-2.479616pt;}
.ls39{letter-spacing:-2.231654pt;}
.ls44{letter-spacing:-0.350400pt;}
.ls3c{letter-spacing:-0.315360pt;}
.ls66{letter-spacing:-0.256512pt;}
.ls5c{letter-spacing:-0.165664pt;}
.ls56{letter-spacing:-0.160320pt;}
.ls57{letter-spacing:-0.144288pt;}
.ls68{letter-spacing:-0.122912pt;}
.ls5d{letter-spacing:-0.117568pt;}
.ls5a{letter-spacing:-0.106880pt;}
.ls58{letter-spacing:-0.101536pt;}
.ls55{letter-spacing:-0.096192pt;}
.ls67{letter-spacing:-0.090848pt;}
.ls65{letter-spacing:-0.085504pt;}
.ls45{letter-spacing:-0.064128pt;}
.ls3d{letter-spacing:-0.057715pt;}
.ls43{letter-spacing:-0.048096pt;}
.ls3b{letter-spacing:-0.043286pt;}
.ls5b{letter-spacing:-0.037408pt;}
.ls46{letter-spacing:-0.032064pt;}
.ls3e{letter-spacing:-0.028858pt;}
.ls63{letter-spacing:-0.028800pt;}
.ls42{letter-spacing:-0.026720pt;}
.ls3a{letter-spacing:-0.024048pt;}
.ls6b{letter-spacing:-0.024000pt;}
.ls40{letter-spacing:-0.021376pt;}
.ls38{letter-spacing:-0.019238pt;}
.ls62{letter-spacing:-0.019200pt;}
.ls69{letter-spacing:-0.016032pt;}
.ls64{letter-spacing:-0.014400pt;}
.ls3f{letter-spacing:-0.012768pt;}
.ls37{letter-spacing:-0.011491pt;}
.ls5e{letter-spacing:-0.010688pt;}
.lsd{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.001735pt;}
.ls1{letter-spacing:0.002422pt;}
.lsa{letter-spacing:0.002674pt;}
.ls7{letter-spacing:0.003733pt;}
.ls3{letter-spacing:0.004237pt;}
.ls1a{letter-spacing:0.008640pt;}
.ls27{letter-spacing:0.009600pt;}
.ls1c{letter-spacing:0.009619pt;}
.ls29{letter-spacing:0.010688pt;}
.ls20{letter-spacing:0.012960pt;}
.ls2d{letter-spacing:0.014400pt;}
.ls47{letter-spacing:0.016032pt;}
.ls53{letter-spacing:0.019200pt;}
.ls50{letter-spacing:0.021376pt;}
.ls19{letter-spacing:0.021600pt;}
.ls26{letter-spacing:0.024000pt;}
.ls4c{letter-spacing:0.026720pt;}
.ls1d{letter-spacing:0.028858pt;}
.ls2a{letter-spacing:0.032064pt;}
.ls4d{letter-spacing:0.033600pt;}
.ls21{letter-spacing:0.034560pt;}
.ls4f{letter-spacing:0.037408pt;}
.ls2e{letter-spacing:0.038400pt;}
.ls16{letter-spacing:0.042134pt;}
.ls1b{letter-spacing:0.043286pt;}
.ls23{letter-spacing:0.046816pt;}
.ls28{letter-spacing:0.048096pt;}
.ls51{letter-spacing:0.053440pt;}
.ls52{letter-spacing:0.058784pt;}
.ls4e{letter-spacing:0.064128pt;}
.ls59{letter-spacing:0.069472pt;}
.ls22{letter-spacing:0.073440pt;}
.ls6a{letter-spacing:0.074816pt;}
.ls2f{letter-spacing:0.081600pt;}
.ls1e{letter-spacing:0.081763pt;}
.ls2b{letter-spacing:0.090848pt;}
.ls61{letter-spacing:0.097344pt;}
.ls1f{letter-spacing:0.099360pt;}
.ls2c{letter-spacing:0.110400pt;}
.ls48{letter-spacing:0.117568pt;}
.ls18{letter-spacing:0.134064pt;}
.ls17{letter-spacing:0.145555pt;}
.ls25{letter-spacing:0.148960pt;}
.ls24{letter-spacing:0.161728pt;}
.ls12{letter-spacing:1.194378pt;}
.ls6d{letter-spacing:1.199711pt;}
.lse{letter-spacing:2.057548pt;}
.ls2{letter-spacing:2.657067pt;}
.ls10{letter-spacing:3.318400pt;}
.ls11{letter-spacing:3.323733pt;}
.lsf{letter-spacing:7.573044pt;}
.ls0{letter-spacing:9.298933pt;}
.ls15{letter-spacing:10.414238pt;}
.lsc{letter-spacing:10.626533pt;}
.ls73{letter-spacing:11.058133pt;}
.ls60{letter-spacing:11.596480pt;}
.ls14{letter-spacing:11.795718pt;}
.ls74{letter-spacing:11.883584pt;}
.ls5f{letter-spacing:11.917120pt;}
.ls6f{letter-spacing:11.954133pt;}
.ls71{letter-spacing:11.959467pt;}
.ls70{letter-spacing:11.980284pt;}
.ls13{letter-spacing:12.061388pt;}
.ls34{letter-spacing:12.429762pt;}
.ls32{letter-spacing:12.435096pt;}
.ls30{letter-spacing:13.017797pt;}
.ls6c{letter-spacing:13.070931pt;}
.ls4{letter-spacing:13.279207pt;}
.ls6{letter-spacing:13.283733pt;}
.ls6e{letter-spacing:13.336601pt;}
.ls31{letter-spacing:13.649067pt;}
.ls49{letter-spacing:13.840896pt;}
.ls35{letter-spacing:13.881548pt;}
.ls33{letter-spacing:15.510400pt;}
.ls4b{letter-spacing:18.960448pt;}
.ls36{letter-spacing:18.968790pt;}
.ls72{letter-spacing:19.244800pt;}
.ls4a{letter-spacing:30.484192pt;}
.ls5{letter-spacing:51.035733pt;}
.ls8{letter-spacing:55.787733pt;}
.lsb{letter-spacing:57.174803pt;}
.ls54{letter-spacing:754.642272pt;}
.ws97{word-spacing:-53.440000pt;}
.ws96{word-spacing:-53.338464pt;}
.ws99{word-spacing:-48.000000pt;}
.wsb{word-spacing:-25.362056pt;}
.wsc{word-spacing:-13.283467pt;}
.wsec{word-spacing:-11.955200pt;}
.ws60{word-spacing:-11.649600pt;}
.ws5e{word-spacing:-10.801728pt;}
.ws5f{word-spacing:-10.640000pt;}
.ws2e{word-spacing:-10.626800pt;}
.ws5b{word-spacing:-10.484640pt;}
.ws10{word-spacing:-10.095467pt;}
.ws59{word-spacing:-9.721555pt;}
.ws5a{word-spacing:-9.576000pt;}
.ws3{word-spacing:-9.298400pt;}
.ws51{word-spacing:-3.134898pt;}
.ws53{word-spacing:-2.869229pt;}
.ws87{word-spacing:-2.810944pt;}
.wse2{word-spacing:-2.709827pt;}
.ws70{word-spacing:-2.529850pt;}
.wsfa{word-spacing:-2.343219pt;}
.wse5{word-spacing:-2.199757pt;}
.ws88{word-spacing:-2.158976pt;}
.wscd{word-spacing:-2.125355pt;}
.ws71{word-spacing:-1.943078pt;}
.wsbe{word-spacing:-1.859712pt;}
.wsbc{word-spacing:-1.854368pt;}
.wsbd{word-spacing:-1.822304pt;}
.wsfb{word-spacing:-1.817190pt;}
.ws89{word-spacing:-1.816960pt;}
.ws3e{word-spacing:-1.806551pt;}
.ws72{word-spacing:-1.635264pt;}
.wsd2{word-spacing:-1.540882pt;}
.ws52{word-spacing:-1.487748pt;}
.wsfc{word-spacing:-1.434624pt;}
.ws8b{word-spacing:-1.234464pt;}
.ws50{word-spacing:-1.222079pt;}
.ws100{word-spacing:-1.147699pt;}
.ws74{word-spacing:-1.111018pt;}
.ws46{word-spacing:-1.062677pt;}
.ws3c{word-spacing:-1.009543pt;}
.wsf9{word-spacing:-0.956416pt;}
.ws3b{word-spacing:-0.956410pt;}
.wsf8{word-spacing:-0.908595pt;}
.ws3d{word-spacing:-0.903276pt;}
.wsfe{word-spacing:-0.888815pt;}
.ws8c{word-spacing:-0.855040pt;}
.wscb{word-spacing:-0.850142pt;}
.ws94{word-spacing:-0.849696pt;}
.ws8f{word-spacing:-0.825600pt;}
.ws93{word-spacing:-0.817632pt;}
.ws75{word-spacing:-0.769536pt;}
.wse3{word-spacing:-0.765133pt;}
.ws7d{word-spacing:-0.764726pt;}
.wsa8{word-spacing:-0.764192pt;}
.ws78{word-spacing:-0.743040pt;}
.ws7c{word-spacing:-0.735869pt;}
.ws62{word-spacing:-0.717312pt;}
.wsa7{word-spacing:-0.716096pt;}
.ws56{word-spacing:-0.690740pt;}
.wsdd{word-spacing:-0.478205pt;}
.wse4{word-spacing:-0.382566pt;}
.ws22{word-spacing:-0.318803pt;}
.wsa5{word-spacing:-0.309952pt;}
.ws23{word-spacing:-0.265669pt;}
.ws80{word-spacing:-0.242592pt;}
.ws69{word-spacing:-0.218333pt;}
.ws28{word-spacing:-0.212535pt;}
.ws1a{word-spacing:-0.191283pt;}
.ws36{word-spacing:-0.159402pt;}
.ws7f{word-spacing:-0.127680pt;}
.ws68{word-spacing:-0.114912pt;}
.ws2a{word-spacing:-0.106268pt;}
.ws98{word-spacing:-0.095642pt;}
.ws81{word-spacing:-0.068096pt;}
.ws6a{word-spacing:-0.061286pt;}
.wsd{word-spacing:-0.053134pt;}
.ws61{word-spacing:-0.047821pt;}
.ws12{word-spacing:-0.042507pt;}
.wse{word-spacing:-0.005082pt;}
.wsf2{word-spacing:-0.003695pt;}
.ws11{word-spacing:-0.002385pt;}
.ws13{word-spacing:-0.001963pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.002385pt;}
.ws2d{word-spacing:0.003199pt;}
.wsbf{word-spacing:0.005344pt;}
.ws18{word-spacing:0.047821pt;}
.ws27{word-spacing:0.053134pt;}
.ws73{word-spacing:0.062525pt;}
.wsa4{word-spacing:0.064128pt;}
.ws8a{word-spacing:0.069472pt;}
.ws1d{word-spacing:0.095642pt;}
.ws24{word-spacing:0.106268pt;}
.wsab{word-spacing:0.106880pt;}
.ws7a{word-spacing:0.108000pt;}
.wsc7{word-spacing:0.112224pt;}
.ws77{word-spacing:0.115430pt;}
.ws91{word-spacing:0.120000pt;}
.wsb0{word-spacing:0.124800pt;}
.ws8e{word-spacing:0.128256pt;}
.ws6e{word-spacing:0.133920pt;}
.wsc8{word-spacing:0.139200pt;}
.ws7b{word-spacing:0.142560pt;}
.ws85{word-spacing:0.148800pt;}
.ws92{word-spacing:0.158400pt;}
.ws2f{word-spacing:0.159402pt;}
.wsb9{word-spacing:0.171008pt;}
.ws31{word-spacing:0.212535pt;}
.wsf0{word-spacing:0.239104pt;}
.wsca{word-spacing:0.265669pt;}
.ws45{word-spacing:0.318803pt;}
.wsc4{word-spacing:0.347360pt;}
.wsd9{word-spacing:0.371937pt;}
.ws15{word-spacing:0.382566pt;}
.wsc5{word-spacing:0.390112pt;}
.wsc3{word-spacing:0.400800pt;}
.ws43{word-spacing:0.478205pt;}
.wsbb{word-spacing:0.507680pt;}
.ws44{word-spacing:0.584473pt;}
.ws76{word-spacing:0.668534pt;}
.ws79{word-spacing:0.708480pt;}
.ws9b{word-spacing:0.717312pt;}
.wsb1{word-spacing:0.732128pt;}
.ws8d{word-spacing:0.742816pt;}
.ws90{word-spacing:0.787200pt;}
.ws1b{word-spacing:0.812954pt;}
.wsa6{word-spacing:0.828320pt;}
.ws41{word-spacing:0.850142pt;}
.wsd1{word-spacing:0.903276pt;}
.ws9e{word-spacing:0.951232pt;}
.ws63{word-spacing:0.956410pt;}
.ws9a{word-spacing:1.004237pt;}
.ws42{word-spacing:1.222079pt;}
.ws16{word-spacing:1.243341pt;}
.wsd5{word-spacing:1.275213pt;}
.wsc6{word-spacing:1.298592pt;}
.wsd6{word-spacing:1.328347pt;}
.ws4e{word-spacing:1.381481pt;}
.ws9f{word-spacing:1.501664pt;}
.wsd3{word-spacing:1.594016pt;}
.ws17{word-spacing:1.625907pt;}
.ws65{word-spacing:1.647150pt;}
.wsa3{word-spacing:1.661984pt;}
.ws48{word-spacing:1.700284pt;}
.wsa2{word-spacing:1.726112pt;}
.wsdb{word-spacing:1.753418pt;}
.ws7e{word-spacing:1.755504pt;}
.wsaf{word-spacing:1.776000pt;}
.wsad{word-spacing:1.780800pt;}
.wsae{word-spacing:1.790400pt;}
.ws37{word-spacing:1.806551pt;}
.ws66{word-spacing:1.859685pt;}
.ws1c{word-spacing:1.865011pt;}
.ws95{word-spacing:1.950560pt;}
.wsc9{word-spacing:2.019087pt;}
.ws6f{word-spacing:2.044080pt;}
.ws5d{word-spacing:2.151936pt;}
.ws19{word-spacing:2.199757pt;}
.ws2{word-spacing:2.231616pt;}
.ws0{word-spacing:2.232481pt;}
.wse6{word-spacing:2.247578pt;}
.ws86{word-spacing:2.271200pt;}
.wse1{word-spacing:2.337890pt;}
.ws26{word-spacing:2.391024pt;}
.ws5c{word-spacing:2.438861pt;}
.ws38{word-spacing:2.444158pt;}
.ws3f{word-spacing:2.550426pt;}
.ws14{word-spacing:2.550432pt;}
.wsa9{word-spacing:2.650624pt;}
.wsaa{word-spacing:2.661312pt;}
.wsda{word-spacing:2.709827pt;}
.ws4a{word-spacing:2.762961pt;}
.ws40{word-spacing:2.816095pt;}
.wsef{word-spacing:2.821427pt;}
.ws1e{word-spacing:2.861926pt;}
.wsfd{word-spacing:2.863010pt;}
.ws101{word-spacing:2.863573pt;}
.wsee{word-spacing:2.865007pt;}
.wsff{word-spacing:2.866005pt;}
.wse7{word-spacing:2.866509pt;}
.wsf1{word-spacing:2.867021pt;}
.wsf7{word-spacing:2.869043pt;}
.wseb{word-spacing:2.869248pt;}
.wsde{word-spacing:2.975497pt;}
.ws33{word-spacing:3.081764pt;}
.wse9{word-spacing:3.108352pt;}
.wscc{word-spacing:3.134898pt;}
.ws1f{word-spacing:3.188032pt;}
.ws4f{word-spacing:3.241166pt;}
.ws39{word-spacing:3.294300pt;}
.wsc2{word-spacing:3.321600pt;}
.ws25{word-spacing:3.347434pt;}
.wsea{word-spacing:3.347456pt;}
.ws9c{word-spacing:3.377408pt;}
.wsc0{word-spacing:3.379200pt;}
.wsc1{word-spacing:3.384000pt;}
.wse8{word-spacing:3.395277pt;}
.ws9d{word-spacing:3.441536pt;}
.wse0{word-spacing:3.559969pt;}
.ws64{word-spacing:3.560000pt;}
.ws35{word-spacing:3.613103pt;}
.ws67{word-spacing:3.666237pt;}
.wscf{word-spacing:3.719371pt;}
.ws103{word-spacing:3.777843pt;}
.wsd8{word-spacing:3.825638pt;}
.wsce{word-spacing:3.878772pt;}
.ws102{word-spacing:4.112589pt;}
.ws57{word-spacing:4.144442pt;}
.wsb8{word-spacing:4.200384pt;}
.wsb7{word-spacing:4.237792pt;}
.ws9{word-spacing:4.240070pt;}
.ws54{word-spacing:4.250709pt;}
.wsa1{word-spacing:4.259168pt;}
.wsa{word-spacing:4.314458pt;}
.wsd4{word-spacing:4.622646pt;}
.wsa0{word-spacing:4.659968pt;}
.ws2b{word-spacing:4.728914pt;}
.ws6c{word-spacing:4.730400pt;}
.ws6d{word-spacing:4.743360pt;}
.wsd7{word-spacing:4.782048pt;}
.wsb6{word-spacing:4.814944pt;}
.wsf3{word-spacing:4.877722pt;}
.ws3a{word-spacing:4.888316pt;}
.ws21{word-spacing:4.941450pt;}
.wsb4{word-spacing:4.964576pt;}
.wsb5{word-spacing:5.135584pt;}
.wsb2{word-spacing:5.199712pt;}
.ws49{word-spacing:5.207119pt;}
.ws83{word-spacing:5.256000pt;}
.ws84{word-spacing:5.270400pt;}
.ws4b{word-spacing:5.472788pt;}
.wsb3{word-spacing:5.547072pt;}
.wsed{word-spacing:5.595034pt;}
.ws30{word-spacing:5.685324pt;}
.ws55{word-spacing:5.738458pt;}
.wsf4{word-spacing:5.786317pt;}
.wsdc{word-spacing:5.897859pt;}
.ws29{word-spacing:5.950993pt;}
.ws58{word-spacing:6.004127pt;}
.wsba{word-spacing:6.284544pt;}
.ws2c{word-spacing:6.429198pt;}
.ws32{word-spacing:6.641733pt;}
.ws4d{word-spacing:6.694867pt;}
.wsdf{word-spacing:6.801135pt;}
.ws4c{word-spacing:6.907403pt;}
.ws7{word-spacing:6.918010pt;}
.ws34{word-spacing:7.173072pt;}
.wsf6{word-spacing:7.268762pt;}
.wsd0{word-spacing:7.438741pt;}
.ws47{word-spacing:7.704411pt;}
.ws20{word-spacing:8.554553pt;}
.ws6b{word-spacing:9.296381pt;}
.ws82{word-spacing:10.329312pt;}
.wsac{word-spacing:10.613184pt;}
.ws5{word-spacing:10.823338pt;}
.ws6{word-spacing:14.319536pt;}
.wsf5{word-spacing:20.610765pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:23.858002pt;}
._1d{margin-left:-11.708704pt;}
._18{margin-left:-6.801135pt;}
._5{margin-left:-5.897740pt;}
._1{margin-left:-4.797974pt;}
._8{margin-left:-3.833403pt;}
._7{margin-left:-2.343021pt;}
._0{margin-left:-1.338970pt;}
._19{width:0.938448pt;}
._6{width:2.662270pt;}
._20{width:4.388846pt;}
._1c{width:10.135194pt;}
._3{width:11.530016pt;}
._9{width:13.177232pt;}
._c{width:14.633165pt;}
._13{width:15.747750pt;}
._b{width:16.785101pt;}
._12{width:18.224916pt;}
._f{width:19.670154pt;}
._15{width:20.626563pt;}
._a{width:21.758464pt;}
._2{width:23.059276pt;}
._d{width:24.399068pt;}
._1f{width:25.929327pt;}
._4{width:27.188522pt;}
._1e{width:28.277840pt;}
._14{width:31.774052pt;}
._21{width:32.817812pt;}
._e{width:34.441369pt;}
._17{width:36.194786pt;}
._16{width:38.054471pt;}
._23{width:54.993920pt;}
._22{width:78.904320pt;}
._10{width:781.323243pt;}
._1a{width:1683.093082pt;}
._1b{width:1870.207696pt;}
._11{width:2233.602133pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs10{font-size:37.440000pt;}
.fsa{font-size:38.304000pt;}
.fs4{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fsd{font-size:42.560000pt;}
.fsc{font-size:43.200000pt;}
.fs7{font-size:47.820800pt;}
.fsf{font-size:48.000000pt;}
.fsb{font-size:48.096000pt;}
.fs2{font-size:53.133867pt;}
.fse{font-size:53.440000pt;}
.fs9{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:101.448225pt;}
.ybe{bottom:-536.657194pt;}
.ybd{bottom:-521.249640pt;}
.ybc{bottom:-491.801880pt;}
.ybb{bottom:-477.905520pt;}
.yba{bottom:-464.081520pt;}
.y110{bottom:-448.384933pt;}
.yb9{bottom:-446.149889pt;}
.y10f{bottom:-413.024933pt;}
.y10e{bottom:-393.023733pt;}
.y102{bottom:-230.341323pt;}
.y101{bottom:-213.221819pt;}
.y100{bottom:-196.182475pt;}
.yff{bottom:-179.062971pt;}
.yb8{bottom:-169.166227pt;}
.yfe{bottom:-161.943467pt;}
.yb7{bottom:-153.758674pt;}
.yfd{bottom:-144.904123pt;}
.yb6{bottom:-138.351120pt;}
.yfc{bottom:-127.784619pt;}
.yb5{bottom:-123.015710pt;}
.yfb{bottom:-110.745275pt;}
.yb4{bottom:-107.608157pt;}
.y10d{bottom:-100.463781pt;}
.yd4{bottom:-97.193771pt;}
.yfa{bottom:-93.625771pt;}
.yb3{bottom:-92.272747pt;}
.y10c{bottom:-83.424437pt;}
.yd3{bottom:-80.074267pt;}
.yb2{bottom:-76.865194pt;}
.yf9{bottom:-76.506267pt;}
.y10b{bottom:-66.304933pt;}
.yb1{bottom:-61.457640pt;}
.y11e{bottom:-51.571600pt;}
.yd2{bottom:-47.354533pt;}
.yf8{bottom:-43.787067pt;}
.y10a{bottom:-33.585333pt;}
.yb0{bottom:-32.010000pt;}
.yd1{bottom:-31.914133pt;}
.yf7{bottom:-28.346667pt;}
.y109{bottom:-18.144933pt;}
.yaf{bottom:-18.113640pt;}
.yd0{bottom:-16.554133pt;}
.y11d{bottom:-16.211600pt;}
.yf6{bottom:-0.426267pt;}
.yae{bottom:-0.185640pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:1.545957pt;}
.y108{bottom:1.775067pt;}
.ycf{bottom:3.369901pt;}
.y11c{bottom:3.789600pt;}
.y17{bottom:26.907593pt;}
.y46{bottom:28.346667pt;}
.y112{bottom:82.600000pt;}
.ye6{bottom:83.317333pt;}
.y1b2{bottom:84.854667pt;}
.y13f{bottom:89.904000pt;}
.y45{bottom:92.108000pt;}
.y15{bottom:93.018667pt;}
.y7c{bottom:94.485333pt;}
.y16c{bottom:95.681333pt;}
.y111{bottom:99.696000pt;}
.ye5{bottom:100.054667pt;}
.y1b1{bottom:100.197333pt;}
.y13e{bottom:106.641333pt;}
.yaa{bottom:106.732000pt;}
.y44{bottom:108.844000pt;}
.y14{bottom:108.920000pt;}
.y7b{bottom:111.222667pt;}
.y16b{bottom:112.418667pt;}
.y1b0{bottom:115.540000pt;}
.ye4{bottom:116.792000pt;}
.y105{bottom:119.633333pt;}
.y13d{bottom:123.378667pt;}
.ya9{bottom:123.469333pt;}
.y13{bottom:124.820000pt;}
.y43{bottom:125.581333pt;}
.y7a{bottom:127.960000pt;}
.y16a{bottom:129.156000pt;}
.ye3{bottom:133.528000pt;}
.y13c{bottom:140.116000pt;}
.ya8{bottom:140.206667pt;}
.y12{bottom:140.720000pt;}
.y42{bottom:142.318667pt;}
.y79{bottom:144.697333pt;}
.y169{bottom:145.893333pt;}
.ye2{bottom:150.265333pt;}
.y1af{bottom:150.276000pt;}
.y17a{bottom:152.906667pt;}
.y11{bottom:156.621333pt;}
.y13b{bottom:156.853333pt;}
.ya7{bottom:156.944000pt;}
.y41{bottom:159.056000pt;}
.y78{bottom:161.434667pt;}
.y168{bottom:162.630667pt;}
.y1ae{bottom:165.618667pt;}
.ye1{bottom:167.002667pt;}
.y10{bottom:172.521333pt;}
.y13a{bottom:173.590667pt;}
.ya6{bottom:173.681333pt;}
.y40{bottom:175.793333pt;}
.y179{bottom:176.498667pt;}
.y77{bottom:178.172000pt;}
.y167{bottom:179.368000pt;}
.y1ad{bottom:180.961333pt;}
.ye0{bottom:183.740000pt;}
.yf{bottom:188.421333pt;}
.y139{bottom:190.328000pt;}
.ya5{bottom:190.418667pt;}
.y178{bottom:192.120000pt;}
.y3f{bottom:192.530667pt;}
.y76{bottom:194.909333pt;}
.ydf{bottom:195.966667pt;}
.y166{bottom:196.105333pt;}
.yde{bottom:196.117333pt;}
.y1ac{bottom:196.304000pt;}
.ydd{bottom:196.366667pt;}
.ydc{bottom:200.477333pt;}
.ye{bottom:204.322667pt;}
.y138{bottom:207.065333pt;}
.ya4{bottom:207.156000pt;}
.y3e{bottom:209.268000pt;}
.y75{bottom:211.646667pt;}
.y165{bottom:212.841333pt;}
.y177{bottom:215.712000pt;}
.ydb{bottom:218.798667pt;}
.y137{bottom:223.802667pt;}
.ya3{bottom:223.893333pt;}
.y164{bottom:225.068000pt;}
.y3d{bottom:226.005333pt;}
.y1ab{bottom:226.989333pt;}
.y74{bottom:228.384000pt;}
.y163{bottom:229.578667pt;}
.yda{bottom:235.536000pt;}
.y176{bottom:239.302667pt;}
.y136{bottom:240.540000pt;}
.ya2{bottom:240.630667pt;}
.y160{bottom:241.805333pt;}
.y161{bottom:241.956000pt;}
.y1aa{bottom:242.332000pt;}
.y162{bottom:242.424000pt;}
.y3c{bottom:242.742667pt;}
.y15f{bottom:246.316000pt;}
.y73{bottom:249.106667pt;}
.yd9{bottom:252.273333pt;}
.y135{bottom:257.276000pt;}
.ya1{bottom:257.368000pt;}
.y1a9{bottom:257.674667pt;}
.y3b{bottom:259.480000pt;}
.y175{bottom:262.894667pt;}
.y15e{bottom:263.053333pt;}
.yd{bottom:264.148000pt;}
.yd8{bottom:272.996000pt;}
.y1a8{bottom:273.016000pt;}
.y134{bottom:274.013333pt;}
.ya0{bottom:274.105333pt;}
.y3a{bottom:276.217333pt;}
.y72{bottom:278.994667pt;}
.y15d{bottom:279.790667pt;}
.yc{bottom:280.048000pt;}
.y174{bottom:286.486667pt;}
.y1a7{bottom:288.358667pt;}
.y133{bottom:290.750667pt;}
.y9f{bottom:290.842667pt;}
.y39{bottom:292.954667pt;}
.y70{bottom:295.732000pt;}
.yb{bottom:295.949333pt;}
.y11b{bottom:296.349552pt;}
.y15c{bottom:296.528000pt;}
.yd7{bottom:300.042667pt;}
.y71{bottom:300.553333pt;}
.y173{bottom:302.108000pt;}
.y1a6{bottom:303.701333pt;}
.y132{bottom:307.488000pt;}
.y9e{bottom:307.580000pt;}
.y38{bottom:309.692000pt;}
.yce{bottom:311.129525pt;}
.ya{bottom:311.849333pt;}
.y6f{bottom:312.469333pt;}
.y15b{bottom:313.265333pt;}
.y11a{bottom:313.388896pt;}
.yd6{bottom:317.137333pt;}
.y172{bottom:317.729333pt;}
.yad{bottom:317.766468pt;}
.y1a5{bottom:319.044000pt;}
.y131{bottom:324.225333pt;}
.y9d{bottom:324.317333pt;}
.yac{bottom:325.470360pt;}
.y37{bottom:326.429333pt;}
.ycd{bottom:328.249029pt;}
.y6d{bottom:329.206667pt;}
.y15a{bottom:330.002667pt;}
.y119{bottom:330.508400pt;}
.y171{bottom:333.350667pt;}
.y6e{bottom:334.028000pt;}
.yd5{bottom:334.233333pt;}
.y1a4{bottom:334.386667pt;}
.y9{bottom:337.048000pt;}
.y130{bottom:340.962667pt;}
.y9c{bottom:341.054667pt;}
.y159{bottom:342.229333pt;}
.y36{bottom:343.166667pt;}
.ycc{bottom:345.368533pt;}
.y6c{bottom:345.944000pt;}
.y158{bottom:346.740000pt;}
.y170{bottom:348.972000pt;}
.y1a3{bottom:349.729333pt;}
.yc1{bottom:354.170667pt;}
.yf5{bottom:355.653733pt;}
.y12f{bottom:357.700000pt;}
.yf3{bottom:358.537581pt;}
.y35{bottom:359.904000pt;}
.y8{bottom:360.918667pt;}
.y9b{bottom:361.776000pt;}
.ycb{bottom:362.407877pt;}
.y6b{bottom:362.680000pt;}
.y118{bottom:363.228000pt;}
.y157{bottom:363.477333pt;}
.yf4{bottom:363.573229pt;}
.y16f{bottom:364.593333pt;}
.y1a2{bottom:365.072000pt;}
.y12e{bottom:374.437333pt;}
.yf2{bottom:375.576925pt;}
.y7{bottom:376.818667pt;}
.y117{bottom:378.668400pt;}
.y6a{bottom:379.417333pt;}
.yca{bottom:379.527381pt;}
.y9a{bottom:379.709333pt;}
.y156{bottom:380.214667pt;}
.y1a1{bottom:380.414667pt;}
.y34{bottom:380.626667pt;}
.y12d{bottom:391.174667pt;}
.yf1{bottom:392.696429pt;}
.y6{bottom:392.720000pt;}
.y1a0{bottom:395.756000pt;}
.y69{bottom:396.154667pt;}
.yc9{bottom:396.566725pt;}
.y155{bottom:396.952000pt;}
.y116{bottom:398.588400pt;}
.y12c{bottom:407.912000pt;}
.y5{bottom:408.620000pt;}
.y99{bottom:409.597333pt;}
.yf0{bottom:409.815933pt;}
.y19f{bottom:411.098667pt;}
.y68{bottom:412.892000pt;}
.yc8{bottom:413.686229pt;}
.y154{bottom:413.689333pt;}
.y4{bottom:424.520000pt;}
.y12b{bottom:424.649333pt;}
.y98{bottom:426.334667pt;}
.y19e{bottom:426.441333pt;}
.y67{bottom:429.629333pt;}
.y153{bottom:430.426667pt;}
.yc7{bottom:430.805733pt;}
.yef{bottom:430.855261pt;}
.y3{bottom:440.421333pt;}
.y12a{bottom:441.386667pt;}
.y19d{bottom:441.784000pt;}
.y97{bottom:443.072000pt;}
.y66{bottom:446.366667pt;}
.y152{bottom:447.164000pt;}
.y33{bottom:447.426667pt;}
.y2{bottom:456.321333pt;}
.y19c{bottom:457.126667pt;}
.y129{bottom:458.124000pt;}
.y96{bottom:459.809333pt;}
.y65{bottom:463.104000pt;}
.yc6{bottom:463.525333pt;}
.y151{bottom:463.901333pt;}
.yee{bottom:463.974701pt;}
.y107{bottom:471.535187pt;}
.y1{bottom:472.221333pt;}
.y19b{bottom:472.469333pt;}
.y128{bottom:474.861333pt;}
.yc5{bottom:478.965733pt;}
.y64{bottom:479.841333pt;}
.y106{bottom:480.095067pt;}
.y95{bottom:480.532000pt;}
.y150{bottom:480.638667pt;}
.y32{bottom:480.661333pt;}
.yed{bottom:481.014045pt;}
.y19a{bottom:487.812000pt;}
.y127{bottom:491.598667pt;}
.y63{bottom:496.578667pt;}
.y14f{bottom:497.376000pt;}
.y31{bottom:497.957333pt;}
.yec{bottom:498.133549pt;}
.yc4{bottom:498.885733pt;}
.y199{bottom:503.154667pt;}
.y126{bottom:508.336000pt;}
.y94{bottom:510.420000pt;}
.y62{bottom:513.316000pt;}
.y14e{bottom:514.113333pt;}
.y30{bottom:515.252000pt;}
.yeb{bottom:515.253053pt;}
.y198{bottom:518.497333pt;}
.y125{bottom:525.073333pt;}
.y93{bottom:527.157333pt;}
.y61{bottom:530.053333pt;}
.y14d{bottom:530.850667pt;}
.yea{bottom:532.293733pt;}
.y2f{bottom:532.546667pt;}
.y197{bottom:533.838667pt;}
.y124{bottom:541.810667pt;}
.y92{bottom:543.893333pt;}
.y60{bottom:546.790667pt;}
.y14c{bottom:547.588000pt;}
.y196{bottom:549.181333pt;}
.y2e{bottom:549.842667pt;}
.y123{bottom:558.548000pt;}
.y91{bottom:560.630667pt;}
.y104{bottom:563.240000pt;}
.y5f{bottom:563.528000pt;}
.y14b{bottom:564.325333pt;}
.y195{bottom:564.524000pt;}
.y2d{bottom:567.137333pt;}
.y122{bottom:575.285333pt;}
.y90{bottom:577.368000pt;}
.y194{bottom:579.866667pt;}
.y5e{bottom:580.265333pt;}
.y103{bottom:580.336000pt;}
.ye9{bottom:580.933853pt;}
.y14a{bottom:581.062667pt;}
.y2c{bottom:584.433333pt;}
.ye8{bottom:589.493733pt;}
.y121{bottom:592.022667pt;}
.y8f{bottom:594.105333pt;}
.y193{bottom:595.209333pt;}
.y5d{bottom:597.002667pt;}
.y149{bottom:597.800000pt;}
.ye7{bottom:600.273333pt;}
.y2b{bottom:601.728000pt;}
.y192{bottom:610.552000pt;}
.y8e{bottom:610.842667pt;}
.y120{bottom:612.744000pt;}
.y5c{bottom:613.740000pt;}
.y148{bottom:614.537333pt;}
.y2a{bottom:619.022667pt;}
.y191{bottom:625.894667pt;}
.y8d{bottom:627.580000pt;}
.y5b{bottom:630.477333pt;}
.y147{bottom:631.274667pt;}
.y16e{bottom:634.462667pt;}
.y29{bottom:636.318667pt;}
.yc0{bottom:638.534667pt;}
.y11f{bottom:639.790667pt;}
.y190{bottom:641.237333pt;}
.y8c{bottom:644.317333pt;}
.y146{bottom:648.012000pt;}
.y5a{bottom:651.200000pt;}
.y28{bottom:653.613333pt;}
.ybf{bottom:655.630667pt;}
.y18f{bottom:656.578667pt;}
.y113{bottom:659.728000pt;}
.y8b{bottom:661.054667pt;}
.y16d{bottom:664.350667pt;}
.y145{bottom:664.749333pt;}
.y27{bottom:670.908000pt;}
.y18e{bottom:671.921333pt;}
.yab{bottom:675.568000pt;}
.y8a{bottom:677.792000pt;}
.y59{bottom:681.088000pt;}
.y144{bottom:681.485333pt;}
.y18d{bottom:687.264000pt;}
.y26{bottom:688.204000pt;}
.y89{bottom:694.529333pt;}
.y58{bottom:697.825333pt;}
.y143{bottom:698.222667pt;}
.y18c{bottom:702.606667pt;}
.y25{bottom:705.498667pt;}
.y88{bottom:711.266667pt;}
.y57{bottom:714.562667pt;}
.y142{bottom:714.960000pt;}
.y18b{bottom:717.949333pt;}
.y87{bottom:728.004000pt;}
.y141{bottom:731.697333pt;}
.y18a{bottom:733.292000pt;}
.y56{bottom:735.284000pt;}
.y24{bottom:739.640000pt;}
.y86{bottom:744.741333pt;}
.y140{bottom:748.434667pt;}
.y189{bottom:748.634667pt;}
.y23{bottom:753.985333pt;}
.y85{bottom:761.478667pt;}
.y188{bottom:763.977333pt;}
.y55{bottom:765.172000pt;}
.y22{bottom:772.189333pt;}
.y84{bottom:778.216000pt;}
.y187{bottom:779.320000pt;}
.y54{bottom:781.909333pt;}
.y21{bottom:782.678667pt;}
.y83{bottom:790.441333pt;}
.y82{bottom:790.842667pt;}
.y186{bottom:794.661333pt;}
.y81{bottom:794.813333pt;}
.y80{bottom:794.953333pt;}
.y53{bottom:798.646667pt;}
.y20{bottom:800.882667pt;}
.y7f{bottom:809.689333pt;}
.y185{bottom:810.004000pt;}
.y1f{bottom:811.370667pt;}
.y7e{bottom:813.661333pt;}
.y7d{bottom:813.801333pt;}
.y52{bottom:815.384000pt;}
.y184{bottom:825.346667pt;}
.y1e{bottom:829.574667pt;}
.y51{bottom:832.121333pt;}
.y183{bottom:840.689333pt;}
.y50{bottom:848.858667pt;}
.yc3{bottom:852.165853pt;}
.y182{bottom:856.032000pt;}
.yc2{bottom:860.725733pt;}
.y4f{bottom:865.596000pt;}
.y115{bottom:868.348520pt;}
.y1d{bottom:869.129333pt;}
.y181{bottom:871.374667pt;}
.y114{bottom:876.908400pt;}
.y4e{bottom:882.333333pt;}
.y1c{bottom:885.866667pt;}
.y180{bottom:886.717333pt;}
.y4d{bottom:899.070667pt;}
.y17f{bottom:902.060000pt;}
.y4c{bottom:915.808000pt;}
.y17e{bottom:917.401333pt;}
.y1b{bottom:921.350667pt;}
.y4b{bottom:932.545333pt;}
.y17d{bottom:932.744000pt;}
.y1a{bottom:946.457333pt;}
.y17c{bottom:948.086667pt;}
.y4a{bottom:949.282667pt;}
.y17b{bottom:963.429333pt;}
.y49{bottom:966.020000pt;}
.y19{bottom:971.562667pt;}
.y48{bottom:982.757333pt;}
.y16{bottom:1010.217333pt;}
.y47{bottom:1038.548000pt;}
.h10{height:18.682573pt;}
.h9{height:23.379740pt;}
.h2a{height:24.582445pt;}
.h25{height:26.416406pt;}
.h2{height:27.076941pt;}
.h3{height:27.262909pt;}
.h26{height:29.263578pt;}
.h2c{height:29.397999pt;}
.ha{height:30.945242pt;}
.hf{height:31.157778pt;}
.hb{height:34.430976pt;}
.hc{height:34.813542pt;}
.h2e{height:35.052646pt;}
.h27{height:35.343750pt;}
.h17{height:35.423719pt;}
.hd{height:38.256384pt;}
.h24{height:38.462187pt;}
.he{height:38.681455pt;}
.h6{height:38.947124pt;}
.h1b{height:39.359687pt;}
.h19{height:39.951563pt;}
.h2f{height:43.660390pt;}
.h1d{height:44.390625pt;}
.h18{height:44.479406pt;}
.h4{height:45.272024pt;}
.h8{height:48.365611pt;}
.h14{height:48.683332pt;}
.h2b{height:48.688666pt;}
.h1c{height:49.421563pt;}
.h2d{height:50.555332pt;}
.h1e{height:54.805999pt;}
.h11{height:55.360666pt;}
.h13{height:57.967067pt;}
.h12{height:57.972400pt;}
.h22{height:59.567067pt;}
.h15{height:63.240021pt;}
.h1f{height:65.131332pt;}
.h20{height:66.128666pt;}
.h21{height:66.731332pt;}
.h5{height:68.781897pt;}
.h7{height:68.861952pt;}
.h1a{height:269.937333pt;}
.h29{height:272.525333pt;}
.h16{height:281.395200pt;}
.h23{height:335.965333pt;}
.h28{height:429.181333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:184.542183pt;}
.w5{width:335.317333pt;}
.w6{width:337.260000pt;}
.w3{width:364.123200pt;}
.w7{width:392.282667pt;}
.w4{width:392.929333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x4c{left:-174.034667pt;}
.x46{left:-172.740000pt;}
.x3b{left:-168.209333pt;}
.x35{left:-152.553600pt;}
.x0{left:0.000000pt;}
.x47{left:1.100000pt;}
.x37{left:3.902400pt;}
.x3d{left:5.630667pt;}
.x4e{left:28.125333pt;}
.x38{left:29.390400pt;}
.x3e{left:33.950667pt;}
.x1{left:47.621333pt;}
.x2{left:51.603593pt;}
.x76{left:76.309333pt;}
.x7a{left:211.989333pt;}
.x14{left:219.852000pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x4{left:239.924000pt;}
.x1c{left:247.182667pt;}
.x7{left:250.204000pt;}
.x48{left:251.580336pt;}
.x12{left:252.612000pt;}
.x13{left:259.253333pt;}
.x1d{left:260.466667pt;}
.x1e{left:267.241333pt;}
.x33{left:271.392000pt;}
.x40{left:272.714667pt;}
.x6{left:274.220000pt;}
.x3a{left:275.188000pt;}
.x34{left:276.314667pt;}
.x1f{left:280.524000pt;}
.x49{left:281.820336pt;}
.x28{left:291.414667pt;}
.x29{left:308.065333pt;}
.x5f{left:309.601333pt;}
.x31{left:310.724000pt;}
.x4a{left:312.139512pt;}
.x2a{left:319.476000pt;}
.x60{left:322.885333pt;}
.x32{left:324.008000pt;}
.x2b{left:326.121333pt;}
.x57{left:328.292000pt;}
.xe{left:330.426667pt;}
.xf{left:337.069333pt;}
.x10{left:340.456000pt;}
.x58{left:341.576000pt;}
.x2c{left:342.772000pt;}
.x4d{left:343.805333pt;}
.x4b{left:345.340000pt;}
.x11{left:347.097333pt;}
.x5d{left:356.168000pt;}
.x59{left:358.113333pt;}
.x36{left:361.022400pt;}
.x2d{left:362.430667pt;}
.x39{left:364.765010pt;}
.x5e{left:370.510667pt;}
.x75{left:383.834667pt;}
.x66{left:386.550667pt;}
.x2e{left:389.430667pt;}
.x4f{left:390.845333pt;}
.x67{left:395.244000pt;}
.x68{left:401.421333pt;}
.x3c{left:402.430667pt;}
.x2f{left:404.021333pt;}
.x3f{left:406.589123pt;}
.x50{left:407.509333pt;}
.x69{left:410.864000pt;}
.x41{left:412.209333pt;}
.x5c{left:413.516000pt;}
.x6a{left:419.558667pt;}
.x30{left:421.197333pt;}
.x5a{left:425.992000pt;}
.x6b{left:429.212000pt;}
.x6e{left:433.373333pt;}
.x5b{left:439.276000pt;}
.x6f{left:442.066667pt;}
.x42{left:443.237333pt;}
.x61{left:449.229333pt;}
.x70{left:456.264000pt;}
.x6c{left:459.313333pt;}
.x62{left:462.512000pt;}
.x6d{left:468.472000pt;}
.x43{left:474.730667pt;}
.x71{left:483.004000pt;}
.x72{left:491.697333pt;}
.x44{left:506.224000pt;}
.x20{left:508.230667pt;}
.x73{left:514.468000pt;}
.xa{left:516.832000pt;}
.x21{left:521.514667pt;}
.xb{left:523.473333pt;}
.xc{left:526.778667pt;}
.xd{left:533.420000pt;}
.x45{left:542.300000pt;}
.x74{left:561.166667pt;}
.x22{left:593.582667pt;}
.x17{left:596.921333pt;}
.x18{left:602.970667pt;}
.x23{left:610.233333pt;}
.x24{left:621.644000pt;}
.x15{left:632.248000pt;}
.x78{left:637.853333pt;}
.x16{left:638.889333pt;}
.x55{left:658.208000pt;}
.x77{left:662.296000pt;}
.x79{left:666.620000pt;}
.x56{left:671.490667pt;}
.x51{left:673.582667pt;}
.x52{left:686.866667pt;}
.x53{left:690.180000pt;}
.x25{left:691.888000pt;}
.x54{left:703.464000pt;}
.x8{left:705.293333pt;}
.x26{left:708.538667pt;}
.x9{left:711.934667pt;}
.x1b{left:719.021333pt;}
.x27{left:723.257333pt;}
.x19{left:725.008000pt;}
.x63{left:729.784000pt;}
.x1a{left:734.258667pt;}
.x64{left:738.477333pt;}
.x65{left:744.654667pt;}
}




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