
    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_9234c6299cf9194f46f8b832.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a85abbe7ba908508b2fcc086.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;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_5c8f087fc9feed3b6de0026a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_613895e1d70a541d25dbf69c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cbd42e85243c9d95dc4d213a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_126816a522ca27e8fd9a26ce.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_1582ac546cff5d585e642055.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.675781;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_35e3f745638888e0a0f67026.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_b801e84d12aff7d254c544a5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.093262;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_87e38c1960e81ff2eb37bb2d.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_f57f4075170b442ae2c71dbf.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3ce17b51b89de5764d01432c.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_417bb7281b9b454b9be7899f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.093262;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_c87dd5c0a90df01d3d654f8e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_ebf2ef5344c28af4520640b6.woff2')format("woff");}.fff{font-family:fff;line-height:0.910156;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_b801e84d12aff7d254c544a5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.093262;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_8a7646b511de4713bb21b6ed.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.893555;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_723f716ceaea5fcdffb1f376.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_347a183e4e541b5606d7902d.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_686c5b59c8ce3d3b55d2e7a5.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_0e6f32de02094583a8093fa1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.893066;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_514ed7f05ccd9df05d78550b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.908203;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_592ad2e3c860d7155694f034.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.910645;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_215b911cabba18ef336ca406.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;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_ebf2ef5344c28af4520640b6.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;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_90e358aa101370b525a522ed.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.093262;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_981e3ab3fce1dbc96f8468a3.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.893555;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_723f716ceaea5fcdffb1f376.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_01283a7645586a9b54a1b6e2.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.093262;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_10b7baf731d1b8e78027b55e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.093262;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_215b911cabba18ef336ca406.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.910156;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_ebf2ef5344c28af4520640b6.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.910156;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:ff21;src:url('chunks/assets/font_a86fffb7f8584e4f591328d7.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.893555;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:ff22;src:url('chunks/assets/font_10c0abbf2f6b8dbbc684d529.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.857910;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:ff23;src:url('chunks/assets/font_215b911cabba18ef336ca406.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.910156;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:ff24;src:url('chunks/assets/font_ebf2ef5344c28af4520640b6.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.910156;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:ff25;src:url('chunks/assets/font_5820f2727b2c523490ffc1db.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.093262;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:ff26;src:url('chunks/assets/font_84c0d6f04381780fcb915150.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.893555;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:ff27;src:url('chunks/assets/font_723f716ceaea5fcdffb1f376.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_fc23776de52e7e484dfb146d.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.093262;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:ff29;src:url('chunks/assets/font_646e090b022bdab92f1b2bb5.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.910156;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:ff2a;src:url('chunks/assets/font_ebf2ef5344c28af4520640b6.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.910156;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:ff2b;src:url('chunks/assets/font_c69a77c41fd476058c385187.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.093262;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:ff2c;src:url('chunks/assets/font_acbe7aa5eb7cda0e27ae7b8e.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_686c5b59c8ce3d3b55d2e7a5.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_215b911cabba18ef336ca406.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.910156;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:ff2f;src:url('chunks/assets/font_ebf2ef5344c28af4520640b6.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.910156;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:ff30;src:url('chunks/assets/font_60f4ccadd40e65e925042960.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.093262;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:ff31;src:url('chunks/assets/font_686c5b59c8ce3d3b55d2e7a5.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_a0e3a1e824e0c0ae6de6bcc7.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.093262;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:ff33;src:url('chunks/assets/font_215b911cabba18ef336ca406.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.910156;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:ff34;src:url('chunks/assets/font_ebf2ef5344c28af4520640b6.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.910156;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:ff35;src:url('chunks/assets/font_8f8477f03aeee6074b334e94.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.910156;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:ff36;src:url('chunks/assets/font_ebf2ef5344c28af4520640b6.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.910156;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:ff37;src:url('chunks/assets/font_dcf71e06cbd874d64e60d448.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.093262;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:ff38;src:url('chunks/assets/font_acbe7aa5eb7cda0e27ae7b8e.woff2')format("woff");}.ff38{font-family:ff38;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:ff39;src:url('chunks/assets/font_70e29e982311c5bcc7333256.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.893555;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:ff3a;src:url('chunks/assets/font_723f716ceaea5fcdffb1f376.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_86200ed89959a80cff7d6053.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.093262;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:ff3c;src:url('chunks/assets/font_c9ec8fa1a2c3c5fe64b59776.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.093262;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:ff3d;src:url('chunks/assets/font_215b911cabba18ef336ca406.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.910156;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:ff3e;src:url('chunks/assets/font_ebf2ef5344c28af4520640b6.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.910156;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:ff3f;src:url('chunks/assets/font_0d6352cbaa32aba70defb418.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.893555;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:ff40;src:url('chunks/assets/font_686c5b59c8ce3d3b55d2e7a5.woff2')format("woff");}.ff40{font-family:ff40;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:ff41;src:url('chunks/assets/font_db21c6b29fcb78ebd712751f.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.093262;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:ff42;src:url('chunks/assets/font_215b911cabba18ef336ca406.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.910156;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:ff43;src:url('chunks/assets/font_ebf2ef5344c28af4520640b6.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.910156;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:ff44;src:url('chunks/assets/font_91e0af8d8a08ed3b651fa551.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.093262;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:ff45;src:url('chunks/assets/font_686c5b59c8ce3d3b55d2e7a5.woff2')format("woff");}.ff45{font-family:ff45;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:ff46;src:url('chunks/assets/font_4b98f3ad510270d40f1c38c5.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.093262;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);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-18.000000px;}
.v1{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.v4{vertical-align:30.942000px;}
.ls55{letter-spacing:-1.061280px;}
.ls61{letter-spacing:-1.013040px;}
.ls13{letter-spacing:-0.964800px;}
.ls1c{letter-spacing:-0.864000px;}
.ls1a{letter-spacing:-0.675360px;}
.ls1b{letter-spacing:-0.594000px;}
.ls62{letter-spacing:-0.578880px;}
.ls11{letter-spacing:-0.530640px;}
.ls54{letter-spacing:-0.482400px;}
.ls43{letter-spacing:-0.478080px;}
.ls15{letter-spacing:-0.434160px;}
.ls1e{letter-spacing:-0.378000px;}
.ls36{letter-spacing:-0.358560px;}
.ls12{letter-spacing:-0.337680px;}
.ls16{letter-spacing:-0.289440px;}
.ls17{letter-spacing:-0.241200px;}
.ls20{letter-spacing:-0.216000px;}
.ls33{letter-spacing:-0.208800px;}
.ls1f{letter-spacing:-0.108000px;}
.ls34{letter-spacing:-0.083808px;}
.ls32{letter-spacing:-0.059760px;}
.lse{letter-spacing:0.000000px;}
.ls58{letter-spacing:0.000600px;}
.lsa{letter-spacing:0.018000px;}
.ls1{letter-spacing:0.020880px;}
.ls24{letter-spacing:0.021480px;}
.ls31{letter-spacing:0.059760px;}
.ls57{letter-spacing:0.090720px;}
.ls4d{letter-spacing:0.119520px;}
.ls2e{letter-spacing:0.124200px;}
.ls30{letter-spacing:0.125280px;}
.ls10{letter-spacing:0.144720px;}
.ls44{letter-spacing:0.156000px;}
.lsf{letter-spacing:0.162000px;}
.ls35{letter-spacing:0.179280px;}
.ls26{letter-spacing:0.179400px;}
.ls3{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.180600px;}
.ls9{letter-spacing:0.192960px;}
.ls2c{letter-spacing:0.239040px;}
.ls18{letter-spacing:0.241200px;}
.ls7{letter-spacing:0.253440px;}
.ls2a{letter-spacing:0.254040px;}
.lsb{letter-spacing:0.259320px;}
.ls2f{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.260520px;}
.ls27{letter-spacing:0.287400px;}
.ls4{letter-spacing:0.288000px;}
.ls28{letter-spacing:0.288600px;}
.ls14{letter-spacing:0.289440px;}
.ls23{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.324000px;}
.ls5b{letter-spacing:0.337680px;}
.ls29{letter-spacing:0.343320px;}
.ls6{letter-spacing:0.354240px;}
.ls19{letter-spacing:0.357840px;}
.ls22{letter-spacing:0.358560px;}
.ls52{letter-spacing:0.359400px;}
.ls2{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.360600px;}
.ls5{letter-spacing:0.371520px;}
.ls21{letter-spacing:0.378000px;}
.ls1d{letter-spacing:0.385920px;}
.ls0{letter-spacing:0.540000px;}
.ls53{letter-spacing:1.620600px;}
.ls5e{letter-spacing:1.640160px;}
.ls51{letter-spacing:2.340000px;}
.ls5d{letter-spacing:2.363760px;}
.ls5a{letter-spacing:3.762720px;}
.ls4f{letter-spacing:3.780000px;}
.ls45{letter-spacing:5.916240px;}
.ls41{letter-spacing:5.939400px;}
.ls5f{letter-spacing:8.924400px;}
.ls50{letter-spacing:9.053280px;}
.ls5c{letter-spacing:9.069120px;}
.ls60{letter-spacing:11.722320px;}
.ls48{letter-spacing:25.308000px;}
.ls4b{letter-spacing:25.308600px;}
.ls47{letter-spacing:25.326000px;}
.ls59{letter-spacing:32.803200px;}
.ls4e{letter-spacing:32.812680px;}
.ls39{letter-spacing:41.202000px;}
.ls37{letter-spacing:46.980000px;}
.ls46{letter-spacing:52.650000px;}
.ls42{letter-spacing:52.668000px;}
.ls4a{letter-spacing:52.668600px;}
.ls49{letter-spacing:54.900000px;}
.ls56{letter-spacing:54.900600px;}
.ls4c{letter-spacing:54.919440px;}
.lsd{letter-spacing:68.508600px;}
.ls2d{letter-spacing:68.526000px;}
.ls40{letter-spacing:84.420000px;}
.ls3f{letter-spacing:84.440880px;}
.ls38{letter-spacing:130.518000px;}
.ls3e{letter-spacing:158.598000px;}
.ls3a{letter-spacing:203.958000px;}
.ls3b{letter-spacing:245.700000px;}
.ls3d{letter-spacing:270.324000px;}
.ls3c{letter-spacing:553.338000px;}
.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;}
}
.ws5{word-spacing:-99.360000px;}
.ws1e{word-spacing:-54.000000px;}
.ws5a{word-spacing:-41.551200px;}
.wsf{word-spacing:-22.536000px;}
.ws12{word-spacing:-19.440000px;}
.ws2{word-spacing:-15.984000px;}
.ws1d{word-spacing:-15.298560px;}
.wsb{word-spacing:-15.292080px;}
.ws73{word-spacing:-15.238800px;}
.ws4{word-spacing:-15.174000px;}
.ws5d{word-spacing:-15.119280px;}
.wsa{word-spacing:-15.099120px;}
.ws1{word-spacing:-15.012000px;}
.ws60{word-spacing:-14.999760px;}
.ws58{word-spacing:-14.976000px;}
.ws61{word-spacing:-14.940000px;}
.ws56{word-spacing:-14.880240px;}
.wsc{word-spacing:-14.857920px;}
.wsd{word-spacing:-14.809680px;}
.ws5e{word-spacing:-14.581440px;}
.ws74{word-spacing:-14.461920px;}
.ws18{word-spacing:-13.878000px;}
.ws19{word-spacing:-13.824000px;}
.ws57{word-spacing:-13.624200px;}
.ws17{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.284000px;}
.ws11{word-spacing:-13.137840px;}
.ws59{word-spacing:-13.122000px;}
.ws10{word-spacing:-12.780000px;}
.ws15{word-spacing:-12.445920px;}
.ws9{word-spacing:-12.349440px;}
.wse{word-spacing:-12.204720px;}
.ws6{word-spacing:-12.060000px;}
.ws55{word-spacing:-12.000000px;}
.ws7c{word-spacing:-11.818800px;}
.ws8{word-spacing:-11.722320px;}
.ws1c{word-spacing:-11.625840px;}
.ws14{word-spacing:-11.529360px;}
.ws5f{word-spacing:-10.565280px;}
.ws5c{word-spacing:-10.476000px;}
.ws5b{word-spacing:-10.440000px;}
.ws13{word-spacing:-7.560000px;}
.ws6d{word-spacing:-0.864000px;}
.ws2d{word-spacing:-0.820080px;}
.ws29{word-spacing:-0.675360px;}
.ws20{word-spacing:-0.540000px;}
.ws7d{word-spacing:-0.537840px;}
.ws2e{word-spacing:-0.530640px;}
.ws77{word-spacing:-0.486000px;}
.ws6c{word-spacing:-0.378000px;}
.ws6b{word-spacing:-0.324000px;}
.ws7e{word-spacing:-0.298800px;}
.ws8e{word-spacing:-0.289440px;}
.ws2a{word-spacing:-0.241200px;}
.ws68{word-spacing:-0.216000px;}
.ws2f{word-spacing:-0.192960px;}
.ws50{word-spacing:-0.179280px;}
.ws21{word-spacing:-0.162000px;}
.ws22{word-spacing:-0.144720px;}
.ws7a{word-spacing:-0.108000px;}
.ws0{word-spacing:-0.099000px;}
.ws28{word-spacing:-0.096480px;}
.ws1b{word-spacing:-0.054000px;}
.ws7{word-spacing:-0.048240px;}
.ws1f{word-spacing:0.000000px;}
.ws26{word-spacing:0.048240px;}
.ws2b{word-spacing:0.072000px;}
.ws70{word-spacing:0.083808px;}
.ws3b{word-spacing:0.108000px;}
.ws41{word-spacing:0.119520px;}
.ws72{word-spacing:0.179280px;}
.ws6f{word-spacing:0.208800px;}
.ws71{word-spacing:0.209520px;}
.ws3f{word-spacing:0.216000px;}
.ws62{word-spacing:0.239040px;}
.ws27{word-spacing:0.289440px;}
.ws2c{word-spacing:0.306720px;}
.ws3e{word-spacing:0.324000px;}
.ws6e{word-spacing:0.334080px;}
.ws82{word-spacing:0.337680px;}
.ws6a{word-spacing:0.432000px;}
.ws3c{word-spacing:0.434160px;}
.ws24{word-spacing:0.482400px;}
.ws3d{word-spacing:0.486000px;}
.ws67{word-spacing:0.530640px;}
.ws8f{word-spacing:0.578880px;}
.ws32{word-spacing:0.594000px;}
.ws23{word-spacing:0.675360px;}
.ws88{word-spacing:0.723600px;}
.ws65{word-spacing:0.836640px;}
.ws35{word-spacing:0.864000px;}
.wsa7{word-spacing:0.964800px;}
.ws9d{word-spacing:1.013040px;}
.ws96{word-spacing:1.061280px;}
.ws25{word-spacing:1.109520px;}
.ws66{word-spacing:1.254960px;}
.ws85{word-spacing:1.302480px;}
.ws81{word-spacing:1.447200px;}
.ws49{word-spacing:1.553760px;}
.wsa9{word-spacing:2.026080px;}
.ws86{word-spacing:2.122560px;}
.ws8c{word-spacing:2.170800px;}
.ws4a{word-spacing:2.270880px;}
.ws78{word-spacing:2.390400px;}
.ws95{word-spacing:2.701440px;}
.ws9c{word-spacing:2.846160px;}
.ws4b{word-spacing:2.988000px;}
.ws36{word-spacing:3.024000px;}
.ws31{word-spacing:3.132000px;}
.wsa5{word-spacing:3.280320px;}
.ws83{word-spacing:3.425040px;}
.ws98{word-spacing:3.569760px;}
.ws46{word-spacing:3.705120px;}
.ws3a{word-spacing:3.726000px;}
.ws38{word-spacing:4.104000px;}
.ws99{word-spacing:4.148640px;}
.ws84{word-spacing:4.196880px;}
.ws8d{word-spacing:4.293360px;}
.ws43{word-spacing:4.422240px;}
.wsa6{word-spacing:4.872240px;}
.ws87{word-spacing:5.016960px;}
.ws42{word-spacing:5.139360px;}
.ws37{word-spacing:5.184000px;}
.ws9b{word-spacing:5.595840px;}
.ws9e{word-spacing:5.740560px;}
.ws51{word-spacing:5.856480px;}
.ws9f{word-spacing:6.222960px;}
.wsa1{word-spacing:6.319440px;}
.wsa0{word-spacing:6.464160px;}
.ws63{word-spacing:6.573600px;}
.ws8b{word-spacing:7.043040px;}
.wsad{word-spacing:7.139520px;}
.ws8a{word-spacing:7.187760px;}
.ws54{word-spacing:7.290720px;}
.ws93{word-spacing:7.766640px;}
.ws94{word-spacing:7.814880px;}
.ws9a{word-spacing:7.911360px;}
.ws34{word-spacing:8.046000px;}
.ws4f{word-spacing:8.067600px;}
.wsa8{word-spacing:8.345520px;}
.wsac{word-spacing:8.538480px;}
.wsaa{word-spacing:8.634960px;}
.ws33{word-spacing:8.748000px;}
.wsab{word-spacing:8.779680px;}
.ws47{word-spacing:8.784720px;}
.ws69{word-spacing:9.501840px;}
.ws30{word-spacing:9.504000px;}
.ws97{word-spacing:9.840960px;}
.ws91{word-spacing:9.985680px;}
.ws90{word-spacing:10.082160px;}
.ws44{word-spacing:10.218960px;}
.ws92{word-spacing:10.757520px;}
.wsa2{word-spacing:10.805760px;}
.ws39{word-spacing:10.908000px;}
.ws76{word-spacing:10.936080px;}
.ws89{word-spacing:11.384640px;}
.ws64{word-spacing:11.653200px;}
.ws53{word-spacing:12.370320px;}
.wsa3{word-spacing:12.783600px;}
.ws4e{word-spacing:13.087440px;}
.ws80{word-spacing:13.206960px;}
.ws40{word-spacing:13.804560px;}
.wsa4{word-spacing:14.375520px;}
.ws48{word-spacing:14.521680px;}
.ws7f{word-spacing:15.776640px;}
.ws4d{word-spacing:15.955920px;}
.ws79{word-spacing:18.107280px;}
.ws4c{word-spacing:18.824400px;}
.ws75{word-spacing:20.258640px;}
.ws52{word-spacing:22.469760px;}
.ws7b{word-spacing:23.186880px;}
.ws45{word-spacing:31.792320px;}
.ws3{word-spacing:1361.383800px;}
._9{margin-left:-7.462200px;}
._2{margin-left:-6.211200px;}
._1{margin-left:-3.510600px;}
._0{margin-left:-1.791900px;}
._3{width:1.053000px;}
._4{width:2.056080px;}
._5{width:3.235500px;}
._2b{width:4.453200px;}
._2d{width:7.432560px;}
._2e{width:9.985620px;}
._13{width:106.380000px;}
._14{width:108.054000px;}
._12{width:176.148000px;}
._e{width:186.894000px;}
._18{width:220.320000px;}
._17{width:256.878000px;}
._22{width:282.258000px;}
._1a{width:288.738000px;}
._d{width:300.186000px;}
._29{width:309.749400px;}
._11{width:313.659000px;}
._f{width:334.441800px;}
._27{width:336.663000px;}
._16{width:355.968000px;}
._10{width:357.966000px;}
._8{width:463.573500px;}
._1c{width:498.906000px;}
._26{width:503.604000px;}
._24{width:510.975000px;}
._15{width:564.948000px;}
._19{width:568.143900px;}
._1d{width:580.644900px;}
._20{width:582.984000px;}
._2a{width:590.922000px;}
._1f{width:592.002000px;}
._2f{width:599.419740px;}
._21{width:613.332000px;}
._1e{width:617.229900px;}
._c{width:623.179740px;}
._25{width:652.511700px;}
._1b{width:654.345000px;}
._28{width:667.413000px;}
._2c{width:669.128160px;}
._6{width:694.020000px;}
._23{width:714.898800px;}
._b{width:718.140000px;}
._a{width:769.842600px;}
._7{width:841.842000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,57,255);}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fsd{font-size:41.760000px;}
.fse{font-size:41.904000px;}
.fs2{font-size:48.000000px;}
.fs5{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fsc{font-size:59.904000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs0{font-size:99.000000px;}
.fs4{font-size:99.360000px;}
.fs7{font-size:102.240000px;}
.y71{bottom:-79.565700px;}
.y15{bottom:-79.564350px;}
.y70{bottom:-64.625700px;}
.y14{bottom:-64.624350px;}
.y6f{bottom:-49.505700px;}
.y13{bottom:-49.504350px;}
.y6e{bottom:-34.565700px;}
.y12{bottom:-34.564350px;}
.y8{bottom:-31.889700px;}
.y6d{bottom:-19.445700px;}
.y11{bottom:-19.444350px;}
.y0{bottom:0.000000px;}
.y15f{bottom:0.930300px;}
.yfb{bottom:2.878800px;}
.y10d{bottom:2.880300px;}
.y1e8{bottom:3.058800px;}
.yda{bottom:3.060300px;}
.y163{bottom:4.170300px;}
.y149{bottom:4.395300px;}
.y26a{bottom:4.498800px;}
.y21c{bottom:4.500300px;}
.y116{bottom:5.760300px;}
.y113{bottom:5.940300px;}
.y121{bottom:6.660300px;}
.y157{bottom:7.410300px;}
.y19e{bottom:8.638800px;}
.y117{bottom:8.640300px;}
.y196{bottom:8.818800px;}
.y114{bottom:8.820300px;}
.y15c{bottom:9.930300px;}
.y23d{bottom:10.620300px;}
.y168{bottom:10.695300px;}
.y193{bottom:10.800300px;}
.y309{bottom:11.815500px;}
.y90{bottom:13.524300px;}
.y122{bottom:14.400300px;}
.y15e{bottom:16.410300px;}
.y18f{bottom:18.360300px;}
.y1e7{bottom:18.538800px;}
.y110{bottom:18.540300px;}
.y1f0{bottom:18.585300px;}
.y165{bottom:18.750300px;}
.y2c9{bottom:20.880300px;}
.y2ca{bottom:20.925300px;}
.y120{bottom:22.185300px;}
.y35{bottom:23.365500px;}
.y233{bottom:26.100300px;}
.y8f{bottom:28.464300px;}
.ye{bottom:32.760300px;}
.y18e{bottom:33.840300px;}
.y161{bottom:35.490300px;}
.y147{bottom:38.955300px;}
.y8e{bottom:43.764300px;}
.y18a{bottom:49.500300px;}
.ya{bottom:50.040150px;}
.y67{bottom:50.040300px;}
.yd{bottom:52.380150px;}
.y6a{bottom:52.380300px;}
.y189{bottom:64.980300px;}
.y7{bottom:68.015850px;}
.y8d{bottom:75.804300px;}
.y188{bottom:80.460300px;}
.y6{bottom:81.515850px;}
.yc{bottom:86.040150px;}
.y69{bottom:86.040300px;}
.y2a7{bottom:89.920620px;}
.y2e9{bottom:89.995800px;}
.y308{bottom:92.321400px;}
.y2c6{bottom:92.455800px;}
.y187{bottom:95.940300px;}
.y5{bottom:96.515850px;}
.y33d{bottom:98.755800px;}
.y397{bottom:98.860620px;}
.y272{bottom:105.337020px;}
.y228{bottom:105.355800px;}
.y10f{bottom:106.315500px;}
.y8c{bottom:106.404300px;}
.y2a6{bottom:107.923320px;}
.y2e8{bottom:107.995800px;}
.y1fd{bottom:108.405120px;}
.y24b{bottom:108.415800px;}
.y4{bottom:110.015850px;}
.y307{bottom:110.324100px;}
.y2c5{bottom:110.455800px;}
.y186{bottom:111.645300px;}
.y33c{bottom:115.315800px;}
.y396{bottom:115.419000px;}
.y8b{bottom:116.844300px;}
.y10e{bottom:117.115800px;}
.y65{bottom:119.160300px;}
.y271{bottom:123.339720px;}
.y227{bottom:123.355800px;}
.y2a5{bottom:125.926020px;}
.y2e7{bottom:125.995800px;}
.y1fc{bottom:126.407820px;}
.y24a{bottom:126.415800px;}
.y185{bottom:127.125300px;}
.yb{bottom:127.290150px;}
.y68{bottom:127.290300px;}
.y145{bottom:127.735800px;}
.y306{bottom:128.326800px;}
.y8a{bottom:128.364300px;}
.y2c4{bottom:128.455800px;}
.y369{bottom:134.640300px;}
.y33b{bottom:136.195800px;}
.y395{bottom:136.294860px;}
.y64{bottom:137.160300px;}
.y10c{bottom:138.535500px;}
.ybf{bottom:142.525800px;}
.y184{bottom:142.605300px;}
.y2a4{bottom:143.928720px;}
.y2e6{bottom:143.995800px;}
.y1fb{bottom:144.410520px;}
.y249{bottom:144.415800px;}
.y89{bottom:144.744300px;}
.y305{bottom:146.329500px;}
.y2c3{bottom:146.455800px;}
.y368{bottom:152.640300px;}
.y33a{bottom:152.785800px;}
.y394{bottom:152.889420px;}
.y1c2{bottom:154.326360px;}
.y144{bottom:154.405800px;}
.y63{bottom:155.160300px;}
.y169{bottom:155.635500px;}
.y183{bottom:158.085300px;}
.y270{bottom:159.375000px;}
.y226{bottom:159.385800px;}
.y166{bottom:159.955500px;}
.ybe{bottom:160.530300px;}
.y88{bottom:161.304300px;}
.y2a3{bottom:161.961300px;}
.y2e5{bottom:162.025800px;}
.y1fa{bottom:162.443100px;}
.y248{bottom:162.445800px;}
.y10b{bottom:163.405800px;}
.y30f{bottom:164.332200px;}
.y304{bottom:164.362080px;}
.y2c2{bottom:164.485800px;}
.y339{bottom:169.345800px;}
.y393{bottom:169.447800px;}
.y367{bottom:170.670300px;}
.y1c1{bottom:172.329060px;}
.y143{bottom:172.405800px;}
.y62{bottom:173.190150px;}
.y182{bottom:173.565300px;}
.y160{bottom:175.795500px;}
.y87{bottom:177.864300px;}
.ybd{bottom:178.525800px;}
.y2a2{bottom:179.964000px;}
.y2e4{bottom:180.025800px;}
.y1f9{bottom:180.445800px;}
.y303{bottom:182.364780px;}
.y2c1{bottom:182.485800px;}
.y366{bottom:188.670300px;}
.y181{bottom:189.225300px;}
.y338{bottom:190.225800px;}
.y392{bottom:190.323660px;}
.y1c0{bottom:190.331760px;}
.y142{bottom:190.405800px;}
.y61{bottom:191.190150px;}
.y10a{bottom:193.997700px;}
.y192{bottom:194.005800px;}
.y86{bottom:194.244300px;}
.y247{bottom:195.205500px;}
.y26f{bottom:195.380400px;}
.y225{bottom:195.385800px;}
.y162{bottom:195.625800px;}
.ybc{bottom:196.453680px;}
.y2a1{bottom:197.966700px;}
.y2e3{bottom:198.025800px;}
.y302{bottom:200.367480px;}
.y2c0{bottom:200.485800px;}
.y156{bottom:200.815500px;}
.y1f8{bottom:200.970300px;}
.y180{bottom:204.705300px;}
.y15b{bottom:205.135500px;}
.y365{bottom:206.670300px;}
.y337{bottom:206.785800px;}
.y391{bottom:206.882040px;}
.y1ca{bottom:208.213920px;}
.y1bf{bottom:208.334460px;}
.y141{bottom:208.405800px;}
.y60{bottom:209.190300px;}
.y85{bottom:210.849300px;}
.y109{bottom:212.000400px;}
.y191{bottom:212.005800px;}
.y26e{bottom:213.383100px;}
.y224{bottom:213.385800px;}
.ybb{bottom:214.456380px;}
.y15a{bottom:215.065800px;}
.y1cc{bottom:215.069400px;}
.y2a0{bottom:215.969400px;}
.y2e2{bottom:216.025800px;}
.y246{bottom:216.445500px;}
.y301{bottom:218.370180px;}
.y2bf{bottom:218.485800px;}
.y17f{bottom:220.185300px;}
.y1f7{bottom:222.394800px;}
.y364{bottom:224.670300px;}
.y1c9{bottom:225.499500px;}
.y155{bottom:225.505800px;}
.y1be{bottom:226.337160px;}
.y140{bottom:226.405800px;}
.y159{bottom:227.125800px;}
.y1cb{bottom:227.127600px;}
.y5f{bottom:227.190300px;}
.y84{bottom:227.409300px;}
.y336{bottom:227.845800px;}
.y390{bottom:227.938800px;}
.y108{bottom:230.003100px;}
.y190{bottom:230.005800px;}
.y223{bottom:231.385800px;}
.yf{bottom:232.440000px;}
.y6b{bottom:232.441500px;}
.yba{bottom:232.459080px;}
.y29f{bottom:233.972100px;}
.y2e1{bottom:234.025800px;}
.y17e{bottom:235.665300px;}
.y300{bottom:236.372880px;}
.y2be{bottom:236.485800px;}
.y245{bottom:237.865500px;}
.y158{bottom:239.185800px;}
.y154{bottom:242.605800px;}
.y363{bottom:242.670300px;}
.y1f6{bottom:243.630300px;}
.y83{bottom:243.789300px;}
.y1bd{bottom:244.339860px;}
.y13f{bottom:244.405800px;}
.y38f{bottom:244.497180px;}
.y5e{bottom:245.190300px;}
.y34{bottom:245.963310px;}
.y222{bottom:246.145500px;}
.y107{bottom:248.005800px;}
.yb9{bottom:250.461780px;}
.y18d{bottom:251.325300px;}
.y29e{bottom:251.974800px;}
.y2e0{bottom:252.025800px;}
.y2ff{bottom:254.375580px;}
.y2bd{bottom:254.485800px;}
.y15d{bottom:258.595500px;}
.y244{bottom:259.105500px;}
.y82{bottom:260.349300px;}
.y362{bottom:260.670300px;}
.y164{bottom:260.755500px;}
.y33{bottom:260.905650px;}
.y1bc{bottom:262.342560px;}
.y13e{bottom:262.405800px;}
.y17d{bottom:262.945500px;}
.ye8{bottom:262.947000px;}
.y5d{bottom:263.190300px;}
.y3bf{bottom:263.938800px;}
.y1f5{bottom:264.865800px;}
.y335{bottom:265.285800px;}
.y38e{bottom:265.373040px;}
.y18c{bottom:266.805300px;}
.y221{bottom:267.385500px;}
.y26d{bottom:267.387000px;}
.yb8{bottom:268.464480px;}
.y29d{bottom:269.977500px;}
.y2df{bottom:270.025800px;}
.y2fe{bottom:272.378280px;}
.y2bc{bottom:272.485800px;}
.y32{bottom:276.205650px;}
.y81{bottom:276.909300px;}
.y361{bottom:278.670300px;}
.y1bb{bottom:280.345260px;}
.y243{bottom:280.345500px;}
.y13d{bottom:280.405800px;}
.y3be{bottom:280.497180px;}
.y5c{bottom:281.190300px;}
.yfa{bottom:281.256300px;}
.y334{bottom:281.845800px;}
.y38d{bottom:281.931420px;}
.ye9{bottom:282.283800px;}
.y18b{bottom:282.285300px;}
.y1f4{bottom:286.290300px;}
.yb7{bottom:286.467180px;}
.y29c{bottom:287.980200px;}
.y2de{bottom:288.025800px;}
.y220{bottom:288.805500px;}
.y2fd{bottom:290.380980px;}
.y2bb{bottom:290.485800px;}
.y80{bottom:293.289300px;}
.y360{bottom:296.670300px;}
.yf9{bottom:296.740800px;}
.y1ba{bottom:298.347960px;}
.y13c{bottom:298.405800px;}
.y5b{bottom:299.190300px;}
.y3bd{bottom:301.373040px;}
.y242{bottom:301.765500px;}
.y333{bottom:302.725800px;}
.y38c{bottom:302.807280px;}
.yb6{bottom:304.469880px;}
.y29b{bottom:305.982900px;}
.y2dd{bottom:306.025800px;}
.y1f3{bottom:307.525800px;}
.y31{bottom:308.245650px;}
.y2fc{bottom:308.383680px;}
.y2ba{bottom:308.485800px;}
.y7f{bottom:309.849300px;}
.y21f{bottom:310.045500px;}
.y26c{bottom:310.047000px;}
.yf8{bottom:312.400800px;}
.ye7{bottom:312.405300px;}
.y35f{bottom:314.670300px;}
.y1b9{bottom:316.350660px;}
.y13b{bottom:316.405800px;}
.y5a{bottom:317.190300px;}
.y3bc{bottom:317.931420px;}
.y332{bottom:319.285800px;}
.y38b{bottom:319.365660px;}
.yb5{bottom:322.472580px;}
.y241{bottom:323.005500px;}
.y29a{bottom:323.985600px;}
.y2dc{bottom:324.025800px;}
.y2fb{bottom:326.386380px;}
.y2b9{bottom:326.485800px;}
.yf7{bottom:327.885300px;}
.ye6{bottom:327.889800px;}
.y106{bottom:327.894300px;}
.y1f2{bottom:328.761300px;}
.y21e{bottom:331.285500px;}
.y35e{bottom:332.670300px;}
.y1b8{bottom:334.353360px;}
.y13a{bottom:334.405800px;}
.y167{bottom:334.915500px;}
.y59{bottom:335.190300px;}
.y26b{bottom:335.785800px;}
.y3bb{bottom:338.807280px;}
.y30{bottom:338.845650px;}
.y331{bottom:340.345800px;}
.y38a{bottom:340.422420px;}
.yb4{bottom:340.475280px;}
.y299{bottom:341.988300px;}
.y2db{bottom:342.025800px;}
.y7e{bottom:342.969300px;}
.yf6{bottom:343.369800px;}
.ye5{bottom:343.374300px;}
.y105{bottom:343.378800px;}
.y1ef{bottom:344.245500px;}
.y2fa{bottom:344.389080px;}
.y2b8{bottom:344.485800px;}
.y2f{bottom:349.285650px;}
.y35d{bottom:350.670300px;}
.y1b7{bottom:352.356060px;}
.y139{bottom:352.405800px;}
.y21d{bottom:352.705500px;}
.y269{bottom:352.707000px;}
.y58{bottom:353.190300px;}
.y1f1{bottom:355.045800px;}
.y3ba{bottom:355.365660px;}
.y330{bottom:356.905800px;}
.y389{bottom:356.980800px;}
.y153{bottom:357.805800px;}
.yb3{bottom:358.477980px;}
.yf5{bottom:358.854300px;}
.ye4{bottom:358.858800px;}
.y104{bottom:358.863300px;}
.y298{bottom:359.991000px;}
.y2da{bottom:360.025800px;}
.y2e{bottom:360.796650px;}
.y2f9{bottom:362.391780px;}
.y2b7{bottom:362.485800px;}
.y35c{bottom:368.670300px;}
.y152{bottom:369.910800px;}
.y1b6{bottom:370.403580px;}
.y138{bottom:370.450800px;}
.y57{bottom:371.235150px;}
.y146{bottom:372.175500px;}
.y21b{bottom:373.990500px;}
.yf4{bottom:374.554800px;}
.ye3{bottom:374.559300px;}
.y103{bottom:374.563800px;}
.y240{bottom:375.430500px;}
.y3b9{bottom:376.470660px;}
.yb2{bottom:376.480680px;}
.y2d{bottom:377.172150px;}
.y32f{bottom:377.830800px;}
.y388{bottom:377.904900px;}
.y297{bottom:378.038520px;}
.y2d9{bottom:378.070800px;}
.y1c4{bottom:378.181800px;}
.y14c{bottom:378.190800px;}
.y30e{bottom:380.394480px;}
.y2f8{bottom:380.439300px;}
.y2b6{bottom:380.530800px;}
.y1ee{bottom:381.195300px;}
.y151{bottom:381.970800px;}
.y1c8{bottom:381.977640px;}
.y35b{bottom:386.715300px;}
.y1b5{bottom:388.406280px;}
.y137{bottom:388.450800px;}
.y56{bottom:389.235150px;}
.yf3{bottom:390.039300px;}
.ye2{bottom:390.043800px;}
.y102{bottom:390.048300px;}
.y3b8{bottom:393.029040px;}
.y1c3{bottom:393.666300px;}
.y14b{bottom:393.670800px;}
.y2c{bottom:393.736650px;}
.y148{bottom:393.850800px;}
.y150{bottom:394.210800px;}
.y1c7{bottom:394.213320px;}
.y7d{bottom:394.269300px;}
.y32e{bottom:394.390800px;}
.y387{bottom:394.463280px;}
.yb1{bottom:394.528200px;}
.y296{bottom:396.041220px;}
.y2d8{bottom:396.070800px;}
.y21a{bottom:396.310500px;}
.y268{bottom:396.312000px;}
.y23f{bottom:396.670500px;}
.y2f7{bottom:398.442000px;}
.y2b5{bottom:398.530800px;}
.y1ed{bottom:402.430800px;}
.y35a{bottom:404.715300px;}
.yf2{bottom:405.523800px;}
.ye1{bottom:405.528300px;}
.y101{bottom:405.532800px;}
.y14f{bottom:406.270800px;}
.y1c6{bottom:406.271520px;}
.y1b4{bottom:406.408980px;}
.y136{bottom:406.450800px;}
.y55{bottom:407.235150px;}
.y14a{bottom:409.150800px;}
.y7c{bottom:409.209300px;}
.y2b{bottom:410.301150px;}
.yb0{bottom:412.530900px;}
.y3b7{bottom:413.904900px;}
.y295{bottom:414.043920px;}
.y2d7{bottom:414.070800px;}
.y32d{bottom:415.270800px;}
.y386{bottom:415.339140px;}
.y2f6{bottom:416.444700px;}
.y2b4{bottom:416.530800px;}
.y23e{bottom:417.910500px;}
.y1c5{bottom:418.329720px;}
.y14e{bottom:418.330800px;}
.yf1{bottom:421.008300px;}
.ye0{bottom:421.012800px;}
.y100{bottom:421.017300px;}
.y219{bottom:421.330800px;}
.y359{bottom:422.715300px;}
.y1ec{bottom:423.855300px;}
.y7b{bottom:424.359300px;}
.y1b3{bottom:424.411680px;}
.y135{bottom:424.450800px;}
.y54{bottom:425.235150px;}
.y2a{bottom:426.676650px;}
.y3b6{bottom:430.463280px;}
.yaf{bottom:430.533600px;}
.y14d{bottom:430.930800px;}
.y294{bottom:432.046620px;}
.y2d6{bottom:432.070800px;}
.y2f5{bottom:434.447400px;}
.y2b3{bottom:434.530800px;}
.y32c{bottom:436.330800px;}
.y385{bottom:436.395900px;}
.yf0{bottom:436.492800px;}
.ydf{bottom:436.497300px;}
.yff{bottom:436.501800px;}
.y7a{bottom:439.299300px;}
.y1ea{bottom:439.330500px;}
.y358{bottom:440.715300px;}
.y1b2{bottom:442.414380px;}
.y134{bottom:442.450800px;}
.y53{bottom:443.235150px;}
.y29{bottom:443.281650px;}
.yae{bottom:448.536300px;}
.y1eb{bottom:449.950800px;}
.y293{bottom:450.049320px;}
.y2d5{bottom:450.070800px;}
.y3b5{bottom:451.339140px;}
.y267{bottom:451.850100px;}
.y218{bottom:451.930800px;}
.yef{bottom:452.152800px;}
.yde{bottom:452.157300px;}
.yfe{bottom:452.161800px;}
.y2f4{bottom:452.450100px;}
.y2b2{bottom:452.530800px;}
.y32b{bottom:452.890800px;}
.y384{bottom:452.954280px;}
.y357{bottom:458.715300px;}
.y28{bottom:459.846150px;}
.y1b1{bottom:460.417080px;}
.y133{bottom:460.450800px;}
.y52{bottom:461.235150px;}
.y79{bottom:463.419300px;}
.yad{bottom:466.539000px;}
.yee{bottom:467.637300px;}
.ydd{bottom:467.641800px;}
.yfd{bottom:467.646300px;}
.y3b4{bottom:467.897520px;}
.y292{bottom:468.052020px;}
.y2d4{bottom:468.070800px;}
.y266{bottom:469.852800px;}
.y217{bottom:469.930800px;}
.y23c{bottom:470.290500px;}
.y1e6{bottom:470.292000px;}
.y2f3{bottom:470.452800px;}
.y2b1{bottom:470.530800px;}
.y32a{bottom:473.770800px;}
.y383{bottom:473.830140px;}
.y27{bottom:476.221650px;}
.y356{bottom:476.715300px;}
.y1b0{bottom:478.419780px;}
.y132{bottom:478.450800px;}
.y51{bottom:479.235150px;}
.y1e9{bottom:481.090800px;}
.yed{bottom:483.121800px;}
.ydc{bottom:483.126300px;}
.yfc{bottom:483.130800px;}
.yac{bottom:484.541700px;}
.y78{bottom:485.919300px;}
.y291{bottom:486.054720px;}
.y2d3{bottom:486.070800px;}
.y2f2{bottom:488.455500px;}
.y2b0{bottom:488.530800px;}
.y3b3{bottom:488.954280px;}
.y26{bottom:492.786150px;}
.y329{bottom:494.830800px;}
.y382{bottom:494.886900px;}
.y1af{bottom:496.422480px;}
.y131{bottom:496.450800px;}
.y50{bottom:497.235150px;}
.yec{bottom:498.606300px;}
.ydb{bottom:498.610800px;}
.y23b{bottom:501.430500px;}
.yab{bottom:502.544400px;}
.y290{bottom:504.057420px;}
.y2d2{bottom:504.070800px;}
.y3b2{bottom:505.512660px;}
.y265{bottom:505.858200px;}
.y216{bottom:505.930800px;}
.y2f1{bottom:506.458200px;}
.y2af{bottom:506.530800px;}
.y1e5{bottom:507.189300px;}
.y25{bottom:509.350650px;}
.y328{bottom:511.390800px;}
.y381{bottom:511.445280px;}
.y355{bottom:512.715300px;}
.yeb{bottom:514.266300px;}
.y1ae{bottom:514.425180px;}
.y130{bottom:514.450800px;}
.y4f{bottom:515.235150px;}
.yaa{bottom:520.547100px;}
.y28f{bottom:522.060120px;}
.y2d1{bottom:522.070800px;}
.y23a{bottom:522.670500px;}
.y2f0{bottom:524.460900px;}
.y2ae{bottom:524.530800px;}
.y24{bottom:525.726150px;}
.y3b1{bottom:526.388520px;}
.y77{bottom:527.679300px;}
.y1e4{bottom:528.424800px;}
.yea{bottom:529.750800px;}
.y327{bottom:532.270800px;}
.y380{bottom:532.321140px;}
.y1ad{bottom:532.427880px;}
.y12f{bottom:532.450800px;}
.y4e{bottom:533.235150px;}
.ya9{bottom:538.549800px;}
.y28e{bottom:540.062820px;}
.y2d0{bottom:540.070800px;}
.y264{bottom:541.863600px;}
.y215{bottom:541.930800px;}
.y23{bottom:542.290650px;}
.y2ef{bottom:542.463600px;}
.y2ad{bottom:542.530800px;}
.y3b0{bottom:542.946900px;}
.y239{bottom:543.910500px;}
.y354{bottom:548.715300px;}
.y326{bottom:548.830800px;}
.y37f{bottom:548.879520px;}
.y1e3{bottom:549.849300px;}
.y1ac{bottom:550.430580px;}
.y12e{bottom:550.450800px;}
.y4d{bottom:551.235150px;}
.ya8{bottom:556.552500px;}
.y76{bottom:557.739300px;}
.y28d{bottom:558.065520px;}
.y2cf{bottom:558.070800px;}
.yd9{bottom:558.910500px;}
.y3af{bottom:559.505280px;}
.y263{bottom:559.866300px;}
.y214{bottom:559.930800px;}
.y2ee{bottom:560.466300px;}
.y2ac{bottom:560.530800px;}
.y238{bottom:565.330500px;}
.y325{bottom:565.390800px;}
.y37e{bottom:565.437900px;}
.y353{bottom:566.715300px;}
.y1ab{bottom:568.433280px;}
.y12d{bottom:568.450800px;}
.y4c{bottom:569.235150px;}
.y1e2{bottom:571.084800px;}
.ya7{bottom:574.555200px;}
.y22{bottom:575.410650px;}
.y28c{bottom:576.098100px;}
.y2ce{bottom:576.100800px;}
.y262{bottom:577.898880px;}
.y213{bottom:577.960800px;}
.y30d{bottom:578.469000px;}
.y2ed{bottom:578.498880px;}
.y2ab{bottom:578.560800px;}
.y3ae{bottom:580.417320px;}
.y324{bottom:581.980800px;}
.y37d{bottom:582.032460px;}
.yd8{bottom:583.960800px;}
.y352{bottom:584.745300px;}
.y1aa{bottom:586.465860px;}
.y12c{bottom:586.480800px;}
.y237{bottom:586.600500px;}
.y4b{bottom:587.265300px;}
.y75{bottom:587.799300px;}
.y1e1{bottom:592.360800px;}
.ya6{bottom:592.557900px;}
.y28b{bottom:594.100800px;}
.y261{bottom:595.901580px;}
.y212{bottom:595.960800px;}
.y2ec{bottom:596.501580px;}
.y2aa{bottom:596.560800px;}
.y3ad{bottom:596.975700px;}
.y351{bottom:602.745300px;}
.y323{bottom:602.860800px;}
.y37c{bottom:602.908320px;}
.y1a9{bottom:604.468560px;}
.y12b{bottom:604.480800px;}
.y4a{bottom:605.265300px;}
.y236{bottom:607.840500px;}
.y28a{bottom:608.860500px;}
.ya5{bottom:610.590480px;}
.y289{bottom:613.360800px;}
.y1e0{bottom:613.785300px;}
.y260{bottom:613.904280px;}
.y211{bottom:613.960800px;}
.yd7{bottom:614.504280px;}
.y17c{bottom:614.560800px;}
.y3ac{bottom:617.851560px;}
.y350{bottom:620.745300px;}
.y1a8{bottom:622.471260px;}
.y12a{bottom:622.480800px;}
.y49{bottom:623.265300px;}
.y322{bottom:623.920800px;}
.y37b{bottom:623.965080px;}
.y21{bottom:626.710650px;}
.ya4{bottom:628.593180px;}
.y235{bottom:629.260500px;}
.y288{bottom:630.280500px;}
.y25f{bottom:631.906980px;}
.y210{bottom:631.960800px;}
.yd6{bottom:632.506980px;}
.y17b{bottom:632.560800px;}
.y74{bottom:633.564300px;}
.y3ab{bottom:634.409940px;}
.y1df{bottom:635.020800px;}
.y34f{bottom:638.745300px;}
.y1a7{bottom:640.473960px;}
.y129{bottom:640.480800px;}
.y48{bottom:641.265300px;}
.y20{bottom:641.650800px;}
.y321{bottom:644.800800px;}
.y37a{bottom:644.840940px;}
.ya3{bottom:646.595880px;}
.y25e{bottom:649.909680px;}
.y20f{bottom:649.960800px;}
.y234{bottom:650.500500px;}
.yd5{bottom:650.509680px;}
.y17a{bottom:650.560800px;}
.y287{bottom:651.520500px;}
.y73{bottom:651.564300px;}
.y3aa{bottom:655.466700px;}
.y1de{bottom:656.260800px;}
.y34e{bottom:656.745300px;}
.y1f{bottom:656.800650px;}
.y1a6{bottom:658.476660px;}
.y128{bottom:658.480800px;}
.y47{bottom:659.265300px;}
.y320{bottom:661.360800px;}
.y379{bottom:661.399320px;}
.ya2{bottom:664.598580px;}
.y25d{bottom:667.912380px;}
.y20e{bottom:667.960800px;}
.yd4{bottom:668.512380px;}
.y179{bottom:668.560800px;}
.y72{bottom:669.564300px;}
.y1e{bottom:671.740650px;}
.y3a9{bottom:672.025080px;}
.y286{bottom:672.400800px;}
.y1da{bottom:673.000500px;}
.y34d{bottom:674.745300px;}
.y127{bottom:676.120800px;}
.y46{bottom:677.265300px;}
.y31f{bottom:682.420800px;}
.y378{bottom:682.456080px;}
.ya1{bottom:682.601280px;}
.y25c{bottom:685.915080px;}
.y20d{bottom:685.960800px;}
.yd3{bottom:686.515080px;}
.y178{bottom:686.560800px;}
.y2cd{bottom:687.520500px;}
.y285{bottom:687.522000px;}
.y126{bottom:690.520500px;}
.y1dc{bottom:691.356300px;}
.y34c{bottom:692.745300px;}
.y3a8{bottom:692.900940px;}
.y45{bottom:695.265300px;}
.y1d{bottom:695.868570px;}
.y1a5{bottom:696.460800px;}
.y31e{bottom:698.980800px;}
.y377{bottom:699.014460px;}
.y1dd{bottom:699.100800px;}
.ya0{bottom:700.603980px;}
.y25b{bottom:703.917780px;}
.y20c{bottom:703.960800px;}
.y6c{bottom:704.484300px;}
.y10{bottom:704.485650px;}
.yd2{bottom:704.517780px;}
.y177{bottom:704.560800px;}
.y1db{bottom:706.840800px;}
.y284{bottom:708.760500px;}
.y34b{bottom:710.745300px;}
.y125{bottom:711.940500px;}
.y1a4{bottom:711.942000px;}
.y44{bottom:713.265300px;}
.y3a7{bottom:713.957700px;}
.y1a3{bottom:717.700800px;}
.y1c{bottom:718.360650px;}
.y9f{bottom:718.606680px;}
.y31d{bottom:719.860800px;}
.y376{bottom:719.890320px;}
.y25a{bottom:721.920480px;}
.y20b{bottom:721.960800px;}
.yd1{bottom:722.520480px;}
.y176{bottom:722.560800px;}
.y2cc{bottom:730.180500px;}
.y282{bottom:730.182000px;}
.y3a6{bottom:730.516080px;}
.y43{bottom:731.265300px;}
.y124{bottom:733.180500px;}
.y283{bottom:734.680800px;}
.y281{bottom:734.685300px;}
.y31c{bottom:736.420800px;}
.y375{bottom:736.448700px;}
.y9e{bottom:736.609380px;}
.y1a2{bottom:738.940800px;}
.y259{bottom:739.923180px;}
.y20a{bottom:739.960800px;}
.yd0{bottom:740.523180px;}
.y175{bottom:740.560800px;}
.y1d9{bottom:744.460800px;}
.y34a{bottom:746.745300px;}
.y42{bottom:749.265300px;}
.y3a5{bottom:751.391940px;}
.y2cb{bottom:751.420500px;}
.y123{bottom:754.420500px;}
.y9d{bottom:754.612080px;}
.y280{bottom:755.920800px;}
.y31b{bottom:757.300800px;}
.y374{bottom:757.324560px;}
.y258{bottom:757.925880px;}
.y209{bottom:757.960800px;}
.ycf{bottom:758.525880px;}
.y174{bottom:758.560800px;}
.y1b{bottom:760.123530px;}
.y1a1{bottom:760.360800px;}
.y41{bottom:767.265300px;}
.y3a4{bottom:767.950320px;}
.y9c{bottom:772.614780px;}
.y27f{bottom:772.660500px;}
.y31a{bottom:773.860800px;}
.y373{bottom:773.882940px;}
.y1d8{bottom:775.028580px;}
.y232{bottom:775.060800px;}
.y11f{bottom:775.840500px;}
.y257{bottom:775.928580px;}
.y208{bottom:775.960800px;}
.yce{bottom:776.528580px;}
.y173{bottom:776.560800px;}
.y1a0{bottom:782.500800px;}
.y349{bottom:782.745300px;}
.y40{bottom:785.265300px;}
.y3a3{bottom:788.826180px;}
.y1a{bottom:790.182090px;}
.y319{bottom:790.420800px;}
.y372{bottom:790.441320px;}
.y9b{bottom:790.617480px;}
.y27e{bottom:793.585800px;}
.y256{bottom:793.976100px;}
.y207{bottom:794.005800px;}
.y30c{bottom:794.531280px;}
.ycd{bottom:794.576100px;}
.y172{bottom:794.605800px;}
.y19f{bottom:798.025800px;}
.y348{bottom:800.790300px;}
.y3f{bottom:803.310150px;}
.y3a2{bottom:805.432800px;}
.y318{bottom:807.025800px;}
.y371{bottom:807.047940px;}
.y9a{bottom:808.620180px;}
.y27d{bottom:808.705500px;}
.y1d7{bottom:811.078800px;}
.y231{bottom:811.105800px;}
.y255{bottom:811.978800px;}
.y206{bottom:812.005800px;}
.y2eb{bottom:812.578800px;}
.y2a9{bottom:812.605800px;}
.y11e{bottom:814.405500px;}
.y19d{bottom:814.407000px;}
.y347{bottom:818.790300px;}
.y19c{bottom:820.165800px;}
.y19{bottom:820.240650px;}
.y3e{bottom:821.310150px;}
.y3a1{bottom:826.489560px;}
.y99{bottom:826.667700px;}
.y317{bottom:827.905800px;}
.y370{bottom:827.923800px;}
.y27c{bottom:829.585800px;}
.y254{bottom:829.981500px;}
.y205{bottom:830.005800px;}
.ycc{bottom:830.581500px;}
.y171{bottom:830.605800px;}
.y11d{bottom:835.645500px;}
.y346{bottom:836.790300px;}
.y19b{bottom:841.405800px;}
.y3a0{bottom:843.047940px;}
.y98{bottom:844.670400px;}
.y27b{bottom:844.705500px;}
.y1d6{bottom:847.084200px;}
.y230{bottom:847.105800px;}
.y253{bottom:847.984200px;}
.y204{bottom:848.005800px;}
.y2ea{bottom:848.584200px;}
.y2a8{bottom:848.605800px;}
.y316{bottom:848.965800px;}
.y36f{bottom:848.980560px;}
.y345{bottom:854.790300px;}
.y3d{bottom:857.310150px;}
.y11c{bottom:858.145500px;}
.y19a{bottom:858.147000px;}
.y39f{bottom:863.923800px;}
.y1d5{bottom:865.086900px;}
.y22f{bottom:865.105800px;}
.y315{bottom:865.525800px;}
.y36e{bottom:865.538940px;}
.y27a{bottom:865.585800px;}
.y252{bottom:865.986900px;}
.y18{bottom:866.005800px;}
.ycb{bottom:866.586900px;}
.y170{bottom:866.605800px;}
.y344{bottom:872.790300px;}
.y39e{bottom:880.482180px;}
.y97{bottom:880.675800px;}
.y2c8{bottom:880.705500px;}
.y279{bottom:880.707000px;}
.y11b{bottom:882.985800px;}
.y1d4{bottom:883.089600px;}
.y22e{bottom:883.105800px;}
.y251{bottom:883.989600px;}
.y17{bottom:884.005800px;}
.yca{bottom:884.589600px;}
.y16f{bottom:884.605800px;}
.y314{bottom:886.405800px;}
.y36d{bottom:886.414800px;}
.y343{bottom:890.790300px;}
.y1d3{bottom:901.092300px;}
.y22d{bottom:901.105800px;}
.y39d{bottom:901.358040px;}
.y250{bottom:901.992300px;}
.y16{bottom:902.005800px;}
.y278{bottom:902.125500px;}
.yc9{bottom:902.592300px;}
.y16e{bottom:902.605800px;}
.y313{bottom:902.965800px;}
.y36c{bottom:902.973180px;}
.y3c{bottom:908.610150px;}
.y342{bottom:908.790300px;}
.y199{bottom:913.580400px;}
.y11a{bottom:913.585800px;}
.y39c{bottom:917.916420px;}
.y1d2{bottom:919.095000px;}
.y22c{bottom:919.105800px;}
.y24f{bottom:919.995000px;}
.y203{bottom:920.005800px;}
.yc8{bottom:920.595000px;}
.y16d{bottom:920.605800px;}
.y2c7{bottom:923.365500px;}
.y277{bottom:923.367000px;}
.y312{bottom:923.845800px;}
.y36b{bottom:923.849040px;}
.y341{bottom:926.790300px;}
.y198{bottom:931.583100px;}
.y119{bottom:931.585800px;}
.y96{bottom:931.975800px;}
.y1d1{bottom:937.097700px;}
.y22b{bottom:937.105800px;}
.y24e{bottom:937.997700px;}
.y202{bottom:938.005800px;}
.y3b{bottom:938.490150px;}
.y95{bottom:938.490300px;}
.yc7{bottom:938.597700px;}
.y16c{bottom:938.605800px;}
.y39b{bottom:938.973180px;}
.y311{bottom:940.405800px;}
.y36a{bottom:940.407420px;}
.y276{bottom:944.605500px;}
.y340{bottom:944.790300px;}
.y118{bottom:949.585800px;}
.y3a{bottom:953.970150px;}
.y94{bottom:953.970300px;}
.y1d0{bottom:955.100400px;}
.y22a{bottom:955.105800px;}
.y39a{bottom:955.531560px;}
.y24d{bottom:956.000400px;}
.y201{bottom:956.005800px;}
.yc6{bottom:956.600400px;}
.y16b{bottom:956.605800px;}
.y310{bottom:956.965800px;}
.yc2{bottom:959.171100px;}
.y3{bottom:961.130850px;}
.y33f{bottom:962.790300px;}
.y115{bottom:964.345500px;}
.y275{bottom:967.105500px;}
.y39{bottom:969.450150px;}
.y93{bottom:969.450300px;}
.y197{bottom:970.105800px;}
.y9{bottom:970.405500px;}
.y1cf{bottom:973.103100px;}
.y229{bottom:973.105800px;}
.y24c{bottom:974.003100px;}
.y200{bottom:974.005800px;}
.yc1{bottom:974.171100px;}
.yc5{bottom:974.603100px;}
.y16a{bottom:974.605800px;}
.y399{bottom:976.407420px;}
.y33e{bottom:980.790300px;}
.y38{bottom:985.110150px;}
.y92{bottom:985.110300px;}
.y112{bottom:985.585500px;}
.y195{bottom:985.587000px;}
.y1{bottom:988.999500px;}
.yc0{bottom:989.171100px;}
.y1ce{bottom:991.105800px;}
.y194{bottom:991.525800px;}
.y274{bottom:991.945800px;}
.y1ff{bottom:992.005800px;}
.yc4{bottom:992.605800px;}
.y398{bottom:992.965800px;}
.y30b{bottom:998.790300px;}
.y37{bottom:1000.590150px;}
.y91{bottom:1000.590300px;}
.y273{bottom:1024.555800px;}
.y1cd{bottom:1026.055800px;}
.y1fe{bottom:1027.315800px;}
.yc3{bottom:1027.555800px;}
.y111{bottom:1027.915800px;}
.y2{bottom:1033.378950px;}
.y30a{bottom:1033.740300px;}
.y36{bottom:1034.100300px;}
.y66{bottom:1035.561750px;}
.h7{height:-44.173500px;}
.h35{height:15.478500px;}
.h24{height:15.480000px;}
.h1f{height:15.516000px;}
.h1d{height:15.660000px;}
.h8{height:20.996719px;}
.h23{height:21.240000px;}
.h34{height:21.241500px;}
.h40{height:21.276000px;}
.h33{height:21.418500px;}
.h22{height:21.420000px;}
.h2b{height:28.302187px;}
.h2d{height:29.160000px;}
.h41{height:30.960000px;}
.h3c{height:30.961500px;}
.h3b{height:31.138500px;}
.h20{height:31.140000px;}
.h3d{height:31.176000px;}
.h15{height:31.587891px;}
.h30{height:32.940000px;}
.h2f{height:33.120000px;}
.h38{height:33.121500px;}
.h4{height:33.328125px;}
.hc{height:33.494766px;}
.h5{height:36.000000px;}
.h45{height:36.036000px;}
.h43{height:36.037500px;}
.h37{height:36.583256px;}
.h13{height:36.597656px;}
.h28{height:36.641953px;}
.h29{height:36.768305px;}
.h19{height:37.494141px;}
.h1b{height:37.520508px;}
.h25{height:38.556000px;}
.h9{height:38.654297px;}
.h3{height:38.664000px;}
.h6{height:40.500000px;}
.h18{height:40.501406px;}
.h3f{height:41.493516px;}
.hb{height:42.327773px;}
.h14{height:47.381836px;}
.h2e{height:49.500000px;}
.h2c{height:51.480000px;}
.h16{height:52.435898px;}
.h27{height:52.562250px;}
.h26{height:54.540000px;}
.he{height:55.054688px;}
.h2a{height:60.120000px;}
.h3a{height:62.100000px;}
.hf{height:63.175781px;}
.ha{height:66.223828px;}
.h12{height:72.183125px;}
.h11{height:72.214805px;}
.h2{height:74.646000px;}
.h36{height:78.323836px;}
.h10{height:89.709609px;}
.h31{height:169.020000px;}
.h32{height:178.920000px;}
.h1e{height:294.870000px;}
.h1a{height:693.790500px;}
.hd{height:693.792000px;}
.h17{height:930.303000px;}
.h46{height:1002.799500px;}
.h42{height:1007.220000px;}
.h39{height:1008.720000px;}
.h3e{height:1009.620000px;}
.h44{height:1010.220000px;}
.h1c{height:1013.196000px;}
.h47{height:1016.220000px;}
.h21{height:1017.307500px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w7{width:-664.722000px;}
.w2a{width:-604.368000px;}
.w18{width:-584.685000px;}
.w1c{width:-557.865000px;}
.w27{width:-538.626000px;}
.w21{width:-520.680000px;}
.w20{width:-516.180000px;}
.w3e{width:-506.472000px;}
.w1b{width:-472.725000px;}
.w22{width:-466.500000px;}
.w23{width:-464.340000px;}
.w2b{width:-434.058000px;}
.w17{width:-414.375000px;}
.w2c{width:-401.643000px;}
.w1a{width:-387.555000px;}
.w16{width:-382.155000px;}
.w3f{width:-378.627000px;}
.w1f{width:-326.820000px;}
.w40{width:-314.913000px;}
.w28{width:-280.473000px;}
.w3d{width:-259.635000px;}
.w45{width:-258.153000px;}
.w8{width:-237.513000px;}
.w2d{width:-231.333000px;}
.w41{width:-229.773000px;}
.w15{width:-211.830000px;}
.w19{width:-174.930000px;}
.w14{width:-169.170000px;}
.w2e{width:-167.577000px;}
.w29{width:-149.037000px;}
.w1d{width:-138.540000px;}
.w1e{width:-137.460000px;}
.w42{width:-98.157000px;}
.w24{width:-82.560000px;}
.w25{width:-81.120000px;}
.w9{width:-57.123000px;}
.w6{width:1.500000px;}
.wa{width:1.602000px;}
.w3c{width:1.800000px;}
.w26{width:3.102000px;}
.w3a{width:16.380000px;}
.w12{width:32.400000px;}
.w39{width:32.940000px;}
.w10{width:42.478500px;}
.w38{width:56.700000px;}
.w37{width:57.420000px;}
.w13{width:63.754500px;}
.w2f{width:63.936000px;}
.w32{width:85.138500px;}
.w31{width:85.176000px;}
.w33{width:85.177500px;}
.w36{width:92.520000px;}
.w34{width:94.500000px;}
.w2{width:94.896000px;}
.w35{width:96.300000px;}
.wd{width:126.756000px;}
.wf{width:131.436000px;}
.w11{width:170.310000px;}
.w4{width:180.390000px;}
.w30{width:212.610000px;}
.w3b{width:212.790000px;}
.we{width:258.151500px;}
.w44{width:298.110000px;}
.w3{width:427.215000px;}
.wc{width:813.378000px;}
.w43{width:814.680000px;}
.w5{width:814.878000px;}
.wb{width:814.980000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x23{left:-759.618000px;}
.x28{left:-758.178000px;}
.x25{left:-757.098000px;}
.x24{left:-750.798000px;}
.x90{left:-748.998000px;}
.x6c{left:-747.498000px;}
.x30{left:-741.618000px;}
.x6d{left:-740.298000px;}
.x27{left:-732.042000px;}
.x93{left:-714.042000px;}
.x91{left:-706.481850px;}
.x2f{left:-693.522000px;}
.x26{left:-677.682000px;}
.x1d{left:-674.981850px;}
.x6f{left:-660.167850px;}
.x6e{left:-658.727850px;}
.x2e{left:-648.708000px;}
.x2b{left:-643.667850px;}
.x72{left:-641.628000px;}
.x92{left:-638.448000px;}
.x2d{left:-622.248000px;}
.x73{left:-599.147850px;}
.x1e{left:-578.327850px;}
.x20{left:-565.368000px;}
.xa4{left:-556.083000px;}
.x2c{left:-548.943000px;}
.x70{left:-533.403000px;}
.xa5{left:-524.042850px;}
.x1f{left:-519.243000px;}
.x94{left:-501.062850px;}
.xa6{left:-497.042850px;}
.x2a{left:-459.663000px;}
.x9d{left:-451.562850px;}
.x29{left:-449.762850px;}
.x98{left:-442.562850px;}
.x74{left:-428.823000px;}
.x75{left:-396.423000px;}
.x95{left:-373.413000px;}
.x9e{left:-362.612850px;}
.x99{left:-350.192850px;}
.x96{left:-309.692850px;}
.x9f{left:-288.093000px;}
.x71{left:-275.073000px;}
.x22{left:-237.872850px;}
.x76{left:-226.112850px;}
.x97{left:-224.553000px;}
.x9a{left:-210.647850px;}
.x9c{left:-195.167850px;}
.x9b{left:-193.548000px;}
.xa0{left:-164.028000px;}
.x21{left:-66.288000px;}
.x0{left:0.000000px;}
.xd{left:1.500000px;}
.x34{left:3.000000px;}
.x36{left:5.214000px;}
.x50{left:11.010000px;}
.x6a{left:14.112000px;}
.x64{left:15.405000px;}
.x61{left:22.605000px;}
.x66{left:27.825000px;}
.x62{left:29.445000px;}
.x5c{left:31.890000px;}
.x5f{left:42.555000px;}
.xa3{left:49.140000px;}
.x5{left:56.125950px;}
.x4{left:58.251900px;}
.xf{left:59.298000px;}
.xe{left:65.580000px;}
.xa9{left:66.582300px;}
.xa8{left:68.039850px;}
.xa7{left:73.080000px;}
.x18{left:74.756760px;}
.x31{left:75.903420px;}
.x1a{left:77.399850px;}
.x89{left:81.120000px;}
.x88{left:82.560000px;}
.x6{left:84.636000px;}
.x8{left:86.400000px;}
.x8b{left:97.116000px;}
.xa{left:99.360000px;}
.x32{left:102.936000px;}
.x1b{left:104.436000px;}
.x8f{left:106.739850px;}
.x8a{left:109.896000px;}
.x17{left:122.856000px;}
.x33{left:129.936000px;}
.x1c{left:131.436000px;}
.x10{left:138.714000px;}
.x9{left:145.485000px;}
.x7c{left:149.550000px;}
.x7{left:151.650000px;}
.x39{left:156.210000px;}
.x35{left:157.650000px;}
.x82{left:163.950000px;}
.x5a{left:165.449850px;}
.x16{left:167.670000px;}
.x3c{left:169.530000px;}
.xc{left:171.225000px;}
.x13{left:172.710000px;}
.x41{left:174.750000px;}
.x48{left:176.609850px;}
.x79{left:180.150000px;}
.x15{left:194.130000px;}
.x7b{left:203.550000px;}
.x4e{left:205.050000px;}
.x3d{left:212.010000px;}
.x2{left:236.123100px;}
.x3{left:254.268750px;}
.xa1{left:259.815000px;}
.x8d{left:261.614850px;}
.x14{left:267.435000px;}
.x37{left:277.755000px;}
.x3a{left:282.975000px;}
.x1{left:292.179600px;}
.x7e{left:299.895000px;}
.x52{left:301.394850px;}
.x7d{left:312.855000px;}
.x51{left:314.355000px;}
.xa2{left:318.855000px;}
.x83{left:337.875000px;}
.x5d{left:339.375000px;}
.x12{left:356.709360px;}
.x11{left:366.620640px;}
.x8c{left:373.815000px;}
.x3e{left:382.335000px;}
.x42{left:387.555000px;}
.x78{left:392.775000px;}
.x3f{left:414.735000px;}
.x80{left:457.427880px;}
.x54{left:458.925000px;}
.x56{left:460.545000px;}
.x55{left:462.164850px;}
.x87{left:464.340000px;}
.x86{left:466.500000px;}
.x81{left:469.305000px;}
.x59{left:470.804850px;}
.x57{left:473.144850px;}
.x58{left:475.304850px;}
.x84{left:516.180000px;}
.x7f{left:519.525000px;}
.x53{left:521.024850px;}
.x38{left:535.905000px;}
.x3b{left:541.305000px;}
.x85{left:545.265000px;}
.x65{left:546.765000px;}
.x77{left:557.865000px;}
.xb{left:578.865000px;}
.x40{left:585.045000px;}
.x7a{left:656.531580px;}
.x4d{left:658.050000px;}
.x19{left:814.878000px;}
.x6b{left:897.498000px;}
.x69{left:898.938000px;}
.x5b{left:953.838000px;}
.x4f{left:954.918000px;}
.x43{left:985.548000px;}
.x49{left:991.308000px;}
.x44{left:1028.208000px;}
.x8e{left:1076.013000px;}
.x5e{left:1143.198000px;}
.x45{left:1198.533000px;}
.x4a{left:1203.933000px;}
.x46{left:1230.753000px;}
.x68{left:1280.718000px;}
.x67{left:1282.878000px;}
.x4b{left:1289.103000px;}
.x60{left:1332.558000px;}
.x63{left:1337.058000px;}
.x4c{left:1374.243000px;}
.x47{left:1401.063000px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v1{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.v4{vertical-align:27.504000pt;}
.ls55{letter-spacing:-0.943360pt;}
.ls61{letter-spacing:-0.900480pt;}
.ls13{letter-spacing:-0.857600pt;}
.ls1c{letter-spacing:-0.768000pt;}
.ls1a{letter-spacing:-0.600320pt;}
.ls1b{letter-spacing:-0.528000pt;}
.ls62{letter-spacing:-0.514560pt;}
.ls11{letter-spacing:-0.471680pt;}
.ls54{letter-spacing:-0.428800pt;}
.ls43{letter-spacing:-0.424960pt;}
.ls15{letter-spacing:-0.385920pt;}
.ls1e{letter-spacing:-0.336000pt;}
.ls36{letter-spacing:-0.318720pt;}
.ls12{letter-spacing:-0.300160pt;}
.ls16{letter-spacing:-0.257280pt;}
.ls17{letter-spacing:-0.214400pt;}
.ls20{letter-spacing:-0.192000pt;}
.ls33{letter-spacing:-0.185600pt;}
.ls1f{letter-spacing:-0.096000pt;}
.ls34{letter-spacing:-0.074496pt;}
.ls32{letter-spacing:-0.053120pt;}
.lse{letter-spacing:0.000000pt;}
.ls58{letter-spacing:0.000533pt;}
.lsa{letter-spacing:0.016000pt;}
.ls1{letter-spacing:0.018560pt;}
.ls24{letter-spacing:0.019093pt;}
.ls31{letter-spacing:0.053120pt;}
.ls57{letter-spacing:0.080640pt;}
.ls4d{letter-spacing:0.106240pt;}
.ls2e{letter-spacing:0.110400pt;}
.ls30{letter-spacing:0.111360pt;}
.ls10{letter-spacing:0.128640pt;}
.ls44{letter-spacing:0.138667pt;}
.lsf{letter-spacing:0.144000pt;}
.ls35{letter-spacing:0.159360pt;}
.ls26{letter-spacing:0.159467pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.160533pt;}
.ls9{letter-spacing:0.171520pt;}
.ls2c{letter-spacing:0.212480pt;}
.ls18{letter-spacing:0.214400pt;}
.ls7{letter-spacing:0.225280pt;}
.ls2a{letter-spacing:0.225813pt;}
.lsb{letter-spacing:0.230507pt;}
.ls2f{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.231573pt;}
.ls27{letter-spacing:0.255467pt;}
.ls4{letter-spacing:0.256000pt;}
.ls28{letter-spacing:0.256533pt;}
.ls14{letter-spacing:0.257280pt;}
.ls23{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.288000pt;}
.ls5b{letter-spacing:0.300160pt;}
.ls29{letter-spacing:0.305173pt;}
.ls6{letter-spacing:0.314880pt;}
.ls19{letter-spacing:0.318080pt;}
.ls22{letter-spacing:0.318720pt;}
.ls52{letter-spacing:0.319467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.320533pt;}
.ls5{letter-spacing:0.330240pt;}
.ls21{letter-spacing:0.336000pt;}
.ls1d{letter-spacing:0.343040pt;}
.ls0{letter-spacing:0.480000pt;}
.ls53{letter-spacing:1.440533pt;}
.ls5e{letter-spacing:1.457920pt;}
.ls51{letter-spacing:2.080000pt;}
.ls5d{letter-spacing:2.101120pt;}
.ls5a{letter-spacing:3.344640pt;}
.ls4f{letter-spacing:3.360000pt;}
.ls45{letter-spacing:5.258880pt;}
.ls41{letter-spacing:5.279467pt;}
.ls5f{letter-spacing:7.932800pt;}
.ls50{letter-spacing:8.047360pt;}
.ls5c{letter-spacing:8.061440pt;}
.ls60{letter-spacing:10.419840pt;}
.ls48{letter-spacing:22.496000pt;}
.ls4b{letter-spacing:22.496533pt;}
.ls47{letter-spacing:22.512000pt;}
.ls59{letter-spacing:29.158400pt;}
.ls4e{letter-spacing:29.166827pt;}
.ls39{letter-spacing:36.624000pt;}
.ls37{letter-spacing:41.760000pt;}
.ls46{letter-spacing:46.800000pt;}
.ls42{letter-spacing:46.816000pt;}
.ls4a{letter-spacing:46.816533pt;}
.ls49{letter-spacing:48.800000pt;}
.ls56{letter-spacing:48.800533pt;}
.ls4c{letter-spacing:48.817280pt;}
.lsd{letter-spacing:60.896533pt;}
.ls2d{letter-spacing:60.912000pt;}
.ls40{letter-spacing:75.040000pt;}
.ls3f{letter-spacing:75.058560pt;}
.ls38{letter-spacing:116.016000pt;}
.ls3e{letter-spacing:140.976000pt;}
.ls3a{letter-spacing:181.296000pt;}
.ls3b{letter-spacing:218.400000pt;}
.ls3d{letter-spacing:240.288000pt;}
.ls3c{letter-spacing:491.856000pt;}
.ws5{word-spacing:-88.320000pt;}
.ws1e{word-spacing:-48.000000pt;}
.ws5a{word-spacing:-36.934400pt;}
.wsf{word-spacing:-20.032000pt;}
.ws12{word-spacing:-17.280000pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1d{word-spacing:-13.598720pt;}
.wsb{word-spacing:-13.592960pt;}
.ws73{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.488000pt;}
.ws5d{word-spacing:-13.439360pt;}
.wsa{word-spacing:-13.421440pt;}
.ws1{word-spacing:-13.344000pt;}
.ws60{word-spacing:-13.333120pt;}
.ws58{word-spacing:-13.312000pt;}
.ws61{word-spacing:-13.280000pt;}
.ws56{word-spacing:-13.226880pt;}
.wsc{word-spacing:-13.207040pt;}
.wsd{word-spacing:-13.164160pt;}
.ws5e{word-spacing:-12.961280pt;}
.ws74{word-spacing:-12.855040pt;}
.ws18{word-spacing:-12.336000pt;}
.ws19{word-spacing:-12.288000pt;}
.ws57{word-spacing:-12.110400pt;}
.ws17{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.808000pt;}
.ws11{word-spacing:-11.678080pt;}
.ws59{word-spacing:-11.664000pt;}
.ws10{word-spacing:-11.360000pt;}
.ws15{word-spacing:-11.063040pt;}
.ws9{word-spacing:-10.977280pt;}
.wse{word-spacing:-10.848640pt;}
.ws6{word-spacing:-10.720000pt;}
.ws55{word-spacing:-10.666667pt;}
.ws7c{word-spacing:-10.505600pt;}
.ws8{word-spacing:-10.419840pt;}
.ws1c{word-spacing:-10.334080pt;}
.ws14{word-spacing:-10.248320pt;}
.ws5f{word-spacing:-9.391360pt;}
.ws5c{word-spacing:-9.312000pt;}
.ws5b{word-spacing:-9.280000pt;}
.ws13{word-spacing:-6.720000pt;}
.ws6d{word-spacing:-0.768000pt;}
.ws2d{word-spacing:-0.728960pt;}
.ws29{word-spacing:-0.600320pt;}
.ws20{word-spacing:-0.480000pt;}
.ws7d{word-spacing:-0.478080pt;}
.ws2e{word-spacing:-0.471680pt;}
.ws77{word-spacing:-0.432000pt;}
.ws6c{word-spacing:-0.336000pt;}
.ws6b{word-spacing:-0.288000pt;}
.ws7e{word-spacing:-0.265600pt;}
.ws8e{word-spacing:-0.257280pt;}
.ws2a{word-spacing:-0.214400pt;}
.ws68{word-spacing:-0.192000pt;}
.ws2f{word-spacing:-0.171520pt;}
.ws50{word-spacing:-0.159360pt;}
.ws21{word-spacing:-0.144000pt;}
.ws22{word-spacing:-0.128640pt;}
.ws7a{word-spacing:-0.096000pt;}
.ws0{word-spacing:-0.088000pt;}
.ws28{word-spacing:-0.085760pt;}
.ws1b{word-spacing:-0.048000pt;}
.ws7{word-spacing:-0.042880pt;}
.ws1f{word-spacing:0.000000pt;}
.ws26{word-spacing:0.042880pt;}
.ws2b{word-spacing:0.064000pt;}
.ws70{word-spacing:0.074496pt;}
.ws3b{word-spacing:0.096000pt;}
.ws41{word-spacing:0.106240pt;}
.ws72{word-spacing:0.159360pt;}
.ws6f{word-spacing:0.185600pt;}
.ws71{word-spacing:0.186240pt;}
.ws3f{word-spacing:0.192000pt;}
.ws62{word-spacing:0.212480pt;}
.ws27{word-spacing:0.257280pt;}
.ws2c{word-spacing:0.272640pt;}
.ws3e{word-spacing:0.288000pt;}
.ws6e{word-spacing:0.296960pt;}
.ws82{word-spacing:0.300160pt;}
.ws6a{word-spacing:0.384000pt;}
.ws3c{word-spacing:0.385920pt;}
.ws24{word-spacing:0.428800pt;}
.ws3d{word-spacing:0.432000pt;}
.ws67{word-spacing:0.471680pt;}
.ws8f{word-spacing:0.514560pt;}
.ws32{word-spacing:0.528000pt;}
.ws23{word-spacing:0.600320pt;}
.ws88{word-spacing:0.643200pt;}
.ws65{word-spacing:0.743680pt;}
.ws35{word-spacing:0.768000pt;}
.wsa7{word-spacing:0.857600pt;}
.ws9d{word-spacing:0.900480pt;}
.ws96{word-spacing:0.943360pt;}
.ws25{word-spacing:0.986240pt;}
.ws66{word-spacing:1.115520pt;}
.ws85{word-spacing:1.157760pt;}
.ws81{word-spacing:1.286400pt;}
.ws49{word-spacing:1.381120pt;}
.wsa9{word-spacing:1.800960pt;}
.ws86{word-spacing:1.886720pt;}
.ws8c{word-spacing:1.929600pt;}
.ws4a{word-spacing:2.018560pt;}
.ws78{word-spacing:2.124800pt;}
.ws95{word-spacing:2.401280pt;}
.ws9c{word-spacing:2.529920pt;}
.ws4b{word-spacing:2.656000pt;}
.ws36{word-spacing:2.688000pt;}
.ws31{word-spacing:2.784000pt;}
.wsa5{word-spacing:2.915840pt;}
.ws83{word-spacing:3.044480pt;}
.ws98{word-spacing:3.173120pt;}
.ws46{word-spacing:3.293440pt;}
.ws3a{word-spacing:3.312000pt;}
.ws38{word-spacing:3.648000pt;}
.ws99{word-spacing:3.687680pt;}
.ws84{word-spacing:3.730560pt;}
.ws8d{word-spacing:3.816320pt;}
.ws43{word-spacing:3.930880pt;}
.wsa6{word-spacing:4.330880pt;}
.ws87{word-spacing:4.459520pt;}
.ws42{word-spacing:4.568320pt;}
.ws37{word-spacing:4.608000pt;}
.ws9b{word-spacing:4.974080pt;}
.ws9e{word-spacing:5.102720pt;}
.ws51{word-spacing:5.205760pt;}
.ws9f{word-spacing:5.531520pt;}
.wsa1{word-spacing:5.617280pt;}
.wsa0{word-spacing:5.745920pt;}
.ws63{word-spacing:5.843200pt;}
.ws8b{word-spacing:6.260480pt;}
.wsad{word-spacing:6.346240pt;}
.ws8a{word-spacing:6.389120pt;}
.ws54{word-spacing:6.480640pt;}
.ws93{word-spacing:6.903680pt;}
.ws94{word-spacing:6.946560pt;}
.ws9a{word-spacing:7.032320pt;}
.ws34{word-spacing:7.152000pt;}
.ws4f{word-spacing:7.171200pt;}
.wsa8{word-spacing:7.418240pt;}
.wsac{word-spacing:7.589760pt;}
.wsaa{word-spacing:7.675520pt;}
.ws33{word-spacing:7.776000pt;}
.wsab{word-spacing:7.804160pt;}
.ws47{word-spacing:7.808640pt;}
.ws69{word-spacing:8.446080pt;}
.ws30{word-spacing:8.448000pt;}
.ws97{word-spacing:8.747520pt;}
.ws91{word-spacing:8.876160pt;}
.ws90{word-spacing:8.961920pt;}
.ws44{word-spacing:9.083520pt;}
.ws92{word-spacing:9.562240pt;}
.wsa2{word-spacing:9.605120pt;}
.ws39{word-spacing:9.696000pt;}
.ws76{word-spacing:9.720960pt;}
.ws89{word-spacing:10.119680pt;}
.ws64{word-spacing:10.358400pt;}
.ws53{word-spacing:10.995840pt;}
.wsa3{word-spacing:11.363200pt;}
.ws4e{word-spacing:11.633280pt;}
.ws80{word-spacing:11.739520pt;}
.ws40{word-spacing:12.270720pt;}
.wsa4{word-spacing:12.778240pt;}
.ws48{word-spacing:12.908160pt;}
.ws7f{word-spacing:14.023680pt;}
.ws4d{word-spacing:14.183040pt;}
.ws79{word-spacing:16.095360pt;}
.ws4c{word-spacing:16.732800pt;}
.ws75{word-spacing:18.007680pt;}
.ws52{word-spacing:19.973120pt;}
.ws7b{word-spacing:20.610560pt;}
.ws45{word-spacing:28.259840pt;}
.ws3{word-spacing:1210.118933pt;}
._9{margin-left:-6.633067pt;}
._2{margin-left:-5.521067pt;}
._1{margin-left:-3.120533pt;}
._0{margin-left:-1.592800pt;}
._3{width:0.936000pt;}
._4{width:1.827627pt;}
._5{width:2.876000pt;}
._2b{width:3.958400pt;}
._2d{width:6.606720pt;}
._2e{width:8.876107pt;}
._13{width:94.560000pt;}
._14{width:96.048000pt;}
._12{width:156.576000pt;}
._e{width:166.128000pt;}
._18{width:195.840000pt;}
._17{width:228.336000pt;}
._22{width:250.896000pt;}
._1a{width:256.656000pt;}
._d{width:266.832000pt;}
._29{width:275.332800pt;}
._11{width:278.808000pt;}
._f{width:297.281600pt;}
._27{width:299.256000pt;}
._16{width:316.416000pt;}
._10{width:318.192000pt;}
._8{width:412.065333pt;}
._1c{width:443.472000pt;}
._26{width:447.648000pt;}
._24{width:454.200000pt;}
._15{width:502.176000pt;}
._19{width:505.016800pt;}
._1d{width:516.128800pt;}
._20{width:518.208000pt;}
._2a{width:525.264000pt;}
._1f{width:526.224000pt;}
._2f{width:532.817547pt;}
._21{width:545.184000pt;}
._1e{width:548.648800pt;}
._c{width:553.937547pt;}
._25{width:580.010400pt;}
._1b{width:581.640000pt;}
._28{width:593.256000pt;}
._2c{width:594.780587pt;}
._6{width:616.906667pt;}
._23{width:635.465600pt;}
._b{width:638.346667pt;}
._a{width:684.304533pt;}
._7{width:748.304000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fsd{font-size:37.120000pt;}
.fse{font-size:37.248000pt;}
.fs2{font-size:42.666667pt;}
.fs5{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fsc{font-size:53.248000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs0{font-size:88.000000pt;}
.fs4{font-size:88.320000pt;}
.fs7{font-size:90.880000pt;}
.y71{bottom:-70.725067pt;}
.y15{bottom:-70.723867pt;}
.y70{bottom:-57.445067pt;}
.y14{bottom:-57.443867pt;}
.y6f{bottom:-44.005067pt;}
.y13{bottom:-44.003867pt;}
.y6e{bottom:-30.725067pt;}
.y12{bottom:-30.723867pt;}
.y8{bottom:-28.346400pt;}
.y6d{bottom:-17.285067pt;}
.y11{bottom:-17.283867pt;}
.y0{bottom:0.000000pt;}
.y15f{bottom:0.826933pt;}
.yfb{bottom:2.558933pt;}
.y10d{bottom:2.560267pt;}
.y1e8{bottom:2.718933pt;}
.yda{bottom:2.720267pt;}
.y163{bottom:3.706933pt;}
.y149{bottom:3.906933pt;}
.y26a{bottom:3.998933pt;}
.y21c{bottom:4.000267pt;}
.y116{bottom:5.120267pt;}
.y113{bottom:5.280267pt;}
.y121{bottom:5.920267pt;}
.y157{bottom:6.586933pt;}
.y19e{bottom:7.678933pt;}
.y117{bottom:7.680267pt;}
.y196{bottom:7.838933pt;}
.y114{bottom:7.840267pt;}
.y15c{bottom:8.826933pt;}
.y23d{bottom:9.440267pt;}
.y168{bottom:9.506933pt;}
.y193{bottom:9.600267pt;}
.y309{bottom:10.502667pt;}
.y90{bottom:12.021600pt;}
.y122{bottom:12.800267pt;}
.y15e{bottom:14.586933pt;}
.y18f{bottom:16.320267pt;}
.y1e7{bottom:16.478933pt;}
.y110{bottom:16.480267pt;}
.y1f0{bottom:16.520267pt;}
.y165{bottom:16.666933pt;}
.y2c9{bottom:18.560267pt;}
.y2ca{bottom:18.600267pt;}
.y120{bottom:19.720267pt;}
.y35{bottom:20.769333pt;}
.y233{bottom:23.200267pt;}
.y8f{bottom:25.301600pt;}
.ye{bottom:29.120267pt;}
.y18e{bottom:30.080267pt;}
.y161{bottom:31.546933pt;}
.y147{bottom:34.626933pt;}
.y8e{bottom:38.901600pt;}
.y18a{bottom:44.000267pt;}
.ya{bottom:44.480133pt;}
.y67{bottom:44.480267pt;}
.yd{bottom:46.560133pt;}
.y6a{bottom:46.560267pt;}
.y189{bottom:57.760267pt;}
.y7{bottom:60.458533pt;}
.y8d{bottom:67.381600pt;}
.y188{bottom:71.520267pt;}
.y6{bottom:72.458533pt;}
.yc{bottom:76.480133pt;}
.y69{bottom:76.480267pt;}
.y2a7{bottom:79.929440pt;}
.y2e9{bottom:79.996267pt;}
.y308{bottom:82.063467pt;}
.y2c6{bottom:82.182933pt;}
.y187{bottom:85.280267pt;}
.y5{bottom:85.791867pt;}
.y33d{bottom:87.782933pt;}
.y397{bottom:87.876107pt;}
.y272{bottom:93.632907pt;}
.y228{bottom:93.649600pt;}
.y10f{bottom:94.502667pt;}
.y8c{bottom:94.581600pt;}
.y2a6{bottom:95.931840pt;}
.y2e8{bottom:95.996267pt;}
.y1fd{bottom:96.360107pt;}
.y24b{bottom:96.369600pt;}
.y4{bottom:97.791867pt;}
.y307{bottom:98.065867pt;}
.y2c5{bottom:98.182933pt;}
.y186{bottom:99.240267pt;}
.y33c{bottom:102.502933pt;}
.y396{bottom:102.594667pt;}
.y8b{bottom:103.861600pt;}
.y10e{bottom:104.102933pt;}
.y65{bottom:105.920267pt;}
.y271{bottom:109.635307pt;}
.y227{bottom:109.649600pt;}
.y2a5{bottom:111.934240pt;}
.y2e7{bottom:111.996267pt;}
.y1fc{bottom:112.362507pt;}
.y24a{bottom:112.369600pt;}
.y185{bottom:113.000267pt;}
.yb{bottom:113.146800pt;}
.y68{bottom:113.146933pt;}
.y145{bottom:113.542933pt;}
.y306{bottom:114.068267pt;}
.y8a{bottom:114.101600pt;}
.y2c4{bottom:114.182933pt;}
.y369{bottom:119.680267pt;}
.y33b{bottom:121.062933pt;}
.y395{bottom:121.150987pt;}
.y64{bottom:121.920267pt;}
.y10c{bottom:123.142667pt;}
.ybf{bottom:126.689600pt;}
.y184{bottom:126.760267pt;}
.y2a4{bottom:127.936640pt;}
.y2e6{bottom:127.996267pt;}
.y1fb{bottom:128.364907pt;}
.y249{bottom:128.369600pt;}
.y89{bottom:128.661600pt;}
.y305{bottom:130.070667pt;}
.y2c3{bottom:130.182933pt;}
.y368{bottom:135.680267pt;}
.y33a{bottom:135.809600pt;}
.y394{bottom:135.901707pt;}
.y1c2{bottom:137.178987pt;}
.y144{bottom:137.249600pt;}
.y63{bottom:137.920267pt;}
.y169{bottom:138.342667pt;}
.y183{bottom:140.520267pt;}
.y270{bottom:141.666667pt;}
.y226{bottom:141.676267pt;}
.y166{bottom:142.182667pt;}
.ybe{bottom:142.693600pt;}
.y88{bottom:143.381600pt;}
.y2a3{bottom:143.965600pt;}
.y2e5{bottom:144.022933pt;}
.y1fa{bottom:144.393867pt;}
.y248{bottom:144.396267pt;}
.y10b{bottom:145.249600pt;}
.y30f{bottom:146.073067pt;}
.y304{bottom:146.099627pt;}
.y2c2{bottom:146.209600pt;}
.y339{bottom:150.529600pt;}
.y393{bottom:150.620267pt;}
.y367{bottom:151.706933pt;}
.y1c1{bottom:153.181387pt;}
.y143{bottom:153.249600pt;}
.y62{bottom:153.946800pt;}
.y182{bottom:154.280267pt;}
.y160{bottom:156.262667pt;}
.y87{bottom:158.101600pt;}
.ybd{bottom:158.689600pt;}
.y2a2{bottom:159.968000pt;}
.y2e4{bottom:160.022933pt;}
.y1f9{bottom:160.396267pt;}
.y303{bottom:162.102027pt;}
.y2c1{bottom:162.209600pt;}
.y366{bottom:167.706933pt;}
.y181{bottom:168.200267pt;}
.y338{bottom:169.089600pt;}
.y392{bottom:169.176587pt;}
.y1c0{bottom:169.183787pt;}
.y142{bottom:169.249600pt;}
.y61{bottom:169.946800pt;}
.y10a{bottom:172.442400pt;}
.y192{bottom:172.449600pt;}
.y86{bottom:172.661600pt;}
.y247{bottom:173.516000pt;}
.y26f{bottom:173.671467pt;}
.y225{bottom:173.676267pt;}
.y162{bottom:173.889600pt;}
.ybc{bottom:174.625493pt;}
.y2a1{bottom:175.970400pt;}
.y2e3{bottom:176.022933pt;}
.y302{bottom:178.104427pt;}
.y2c0{bottom:178.209600pt;}
.y156{bottom:178.502667pt;}
.y1f8{bottom:178.640267pt;}
.y180{bottom:181.960267pt;}
.y15b{bottom:182.342667pt;}
.y365{bottom:183.706933pt;}
.y337{bottom:183.809600pt;}
.y391{bottom:183.895147pt;}
.y1ca{bottom:185.079040pt;}
.y1bf{bottom:185.186187pt;}
.y141{bottom:185.249600pt;}
.y60{bottom:185.946933pt;}
.y85{bottom:187.421600pt;}
.y109{bottom:188.444800pt;}
.y191{bottom:188.449600pt;}
.y26e{bottom:189.673867pt;}
.y224{bottom:189.676267pt;}
.ybb{bottom:190.627893pt;}
.y15a{bottom:191.169600pt;}
.y1cc{bottom:191.172800pt;}
.y2a0{bottom:191.972800pt;}
.y2e2{bottom:192.022933pt;}
.y246{bottom:192.396000pt;}
.y301{bottom:194.106827pt;}
.y2bf{bottom:194.209600pt;}
.y17f{bottom:195.720267pt;}
.y1f7{bottom:197.684267pt;}
.y364{bottom:199.706933pt;}
.y1c9{bottom:200.444000pt;}
.y155{bottom:200.449600pt;}
.y1be{bottom:201.188587pt;}
.y140{bottom:201.249600pt;}
.y159{bottom:201.889600pt;}
.y1cb{bottom:201.891200pt;}
.y5f{bottom:201.946933pt;}
.y84{bottom:202.141600pt;}
.y336{bottom:202.529600pt;}
.y390{bottom:202.612267pt;}
.y108{bottom:204.447200pt;}
.y190{bottom:204.449600pt;}
.y223{bottom:205.676267pt;}
.yf{bottom:206.613333pt;}
.y6b{bottom:206.614667pt;}
.yba{bottom:206.630293pt;}
.y29f{bottom:207.975200pt;}
.y2e1{bottom:208.022933pt;}
.y17e{bottom:209.480267pt;}
.y300{bottom:210.109227pt;}
.y2be{bottom:210.209600pt;}
.y245{bottom:211.436000pt;}
.y158{bottom:212.609600pt;}
.y154{bottom:215.649600pt;}
.y363{bottom:215.706933pt;}
.y1f6{bottom:216.560267pt;}
.y83{bottom:216.701600pt;}
.y1bd{bottom:217.190987pt;}
.y13f{bottom:217.249600pt;}
.y38f{bottom:217.330827pt;}
.y5e{bottom:217.946933pt;}
.y34{bottom:218.634053pt;}
.y222{bottom:218.796000pt;}
.y107{bottom:220.449600pt;}
.yb9{bottom:222.632693pt;}
.y18d{bottom:223.400267pt;}
.y29e{bottom:223.977600pt;}
.y2e0{bottom:224.022933pt;}
.y2ff{bottom:226.111627pt;}
.y2bd{bottom:226.209600pt;}
.y15d{bottom:229.862667pt;}
.y244{bottom:230.316000pt;}
.y82{bottom:231.421600pt;}
.y362{bottom:231.706933pt;}
.y164{bottom:231.782667pt;}
.y33{bottom:231.916133pt;}
.y1bc{bottom:233.193387pt;}
.y13e{bottom:233.249600pt;}
.y17d{bottom:233.729333pt;}
.ye8{bottom:233.730667pt;}
.y5d{bottom:233.946933pt;}
.y3bf{bottom:234.612267pt;}
.y1f5{bottom:235.436267pt;}
.y335{bottom:235.809600pt;}
.y38e{bottom:235.887147pt;}
.y18c{bottom:237.160267pt;}
.y221{bottom:237.676000pt;}
.y26d{bottom:237.677333pt;}
.yb8{bottom:238.635093pt;}
.y29d{bottom:239.980000pt;}
.y2df{bottom:240.022933pt;}
.y2fe{bottom:242.114027pt;}
.y2bc{bottom:242.209600pt;}
.y32{bottom:245.516133pt;}
.y81{bottom:246.141600pt;}
.y361{bottom:247.706933pt;}
.y1bb{bottom:249.195787pt;}
.y243{bottom:249.196000pt;}
.y13d{bottom:249.249600pt;}
.y3be{bottom:249.330827pt;}
.y5c{bottom:249.946933pt;}
.yfa{bottom:250.005600pt;}
.y334{bottom:250.529600pt;}
.y38d{bottom:250.605707pt;}
.ye9{bottom:250.918933pt;}
.y18b{bottom:250.920267pt;}
.y1f4{bottom:254.480267pt;}
.yb7{bottom:254.637493pt;}
.y29c{bottom:255.982400pt;}
.y2de{bottom:256.022933pt;}
.y220{bottom:256.716000pt;}
.y2fd{bottom:258.116427pt;}
.y2bb{bottom:258.209600pt;}
.y80{bottom:260.701600pt;}
.y360{bottom:263.706933pt;}
.yf9{bottom:263.769600pt;}
.y1ba{bottom:265.198187pt;}
.y13c{bottom:265.249600pt;}
.y5b{bottom:265.946933pt;}
.y3bd{bottom:267.887147pt;}
.y242{bottom:268.236000pt;}
.y333{bottom:269.089600pt;}
.y38c{bottom:269.162027pt;}
.yb6{bottom:270.639893pt;}
.y29b{bottom:271.984800pt;}
.y2dd{bottom:272.022933pt;}
.y1f3{bottom:273.356267pt;}
.y31{bottom:273.996133pt;}
.y2fc{bottom:274.118827pt;}
.y2ba{bottom:274.209600pt;}
.y7f{bottom:275.421600pt;}
.y21f{bottom:275.596000pt;}
.y26c{bottom:275.597333pt;}
.yf8{bottom:277.689600pt;}
.ye7{bottom:277.693600pt;}
.y35f{bottom:279.706933pt;}
.y1b9{bottom:281.200587pt;}
.y13b{bottom:281.249600pt;}
.y5a{bottom:281.946933pt;}
.y3bc{bottom:282.605707pt;}
.y332{bottom:283.809600pt;}
.y38b{bottom:283.880587pt;}
.yb5{bottom:286.642293pt;}
.y241{bottom:287.116000pt;}
.y29a{bottom:287.987200pt;}
.y2dc{bottom:288.022933pt;}
.y2fb{bottom:290.121227pt;}
.y2b9{bottom:290.209600pt;}
.yf7{bottom:291.453600pt;}
.ye6{bottom:291.457600pt;}
.y106{bottom:291.461600pt;}
.y1f2{bottom:292.232267pt;}
.y21e{bottom:294.476000pt;}
.y35e{bottom:295.706933pt;}
.y1b8{bottom:297.202987pt;}
.y13a{bottom:297.249600pt;}
.y167{bottom:297.702667pt;}
.y59{bottom:297.946933pt;}
.y26b{bottom:298.476267pt;}
.y3bb{bottom:301.162027pt;}
.y30{bottom:301.196133pt;}
.y331{bottom:302.529600pt;}
.y38a{bottom:302.597707pt;}
.yb4{bottom:302.644693pt;}
.y299{bottom:303.989600pt;}
.y2db{bottom:304.022933pt;}
.y7e{bottom:304.861600pt;}
.yf6{bottom:305.217600pt;}
.ye5{bottom:305.221600pt;}
.y105{bottom:305.225600pt;}
.y1ef{bottom:305.996000pt;}
.y2fa{bottom:306.123627pt;}
.y2b8{bottom:306.209600pt;}
.y2f{bottom:310.476133pt;}
.y35d{bottom:311.706933pt;}
.y1b7{bottom:313.205387pt;}
.y139{bottom:313.249600pt;}
.y21d{bottom:313.516000pt;}
.y269{bottom:313.517333pt;}
.y58{bottom:313.946933pt;}
.y1f1{bottom:315.596267pt;}
.y3ba{bottom:315.880587pt;}
.y330{bottom:317.249600pt;}
.y389{bottom:317.316267pt;}
.y153{bottom:318.049600pt;}
.yb3{bottom:318.647093pt;}
.yf5{bottom:318.981600pt;}
.ye4{bottom:318.985600pt;}
.y104{bottom:318.989600pt;}
.y298{bottom:319.992000pt;}
.y2da{bottom:320.022933pt;}
.y2e{bottom:320.708133pt;}
.y2f9{bottom:322.126027pt;}
.y2b7{bottom:322.209600pt;}
.y35c{bottom:327.706933pt;}
.y152{bottom:328.809600pt;}
.y1b6{bottom:329.247627pt;}
.y138{bottom:329.289600pt;}
.y57{bottom:329.986800pt;}
.y146{bottom:330.822667pt;}
.y21b{bottom:332.436000pt;}
.yf4{bottom:332.937600pt;}
.ye3{bottom:332.941600pt;}
.y103{bottom:332.945600pt;}
.y240{bottom:333.716000pt;}
.y3b9{bottom:334.640587pt;}
.yb2{bottom:334.649493pt;}
.y2d{bottom:335.264133pt;}
.y32f{bottom:335.849600pt;}
.y388{bottom:335.915467pt;}
.y297{bottom:336.034240pt;}
.y2d9{bottom:336.062933pt;}
.y1c4{bottom:336.161600pt;}
.y14c{bottom:336.169600pt;}
.y30e{bottom:338.128427pt;}
.y2f8{bottom:338.168267pt;}
.y2b6{bottom:338.249600pt;}
.y1ee{bottom:338.840267pt;}
.y151{bottom:339.529600pt;}
.y1c8{bottom:339.535680pt;}
.y35b{bottom:343.746933pt;}
.y1b5{bottom:345.250027pt;}
.y137{bottom:345.289600pt;}
.y56{bottom:345.986800pt;}
.yf3{bottom:346.701600pt;}
.ye2{bottom:346.705600pt;}
.y102{bottom:346.709600pt;}
.y3b8{bottom:349.359147pt;}
.y1c3{bottom:349.925600pt;}
.y14b{bottom:349.929600pt;}
.y2c{bottom:349.988133pt;}
.y148{bottom:350.089600pt;}
.y150{bottom:350.409600pt;}
.y1c7{bottom:350.411840pt;}
.y7d{bottom:350.461600pt;}
.y32e{bottom:350.569600pt;}
.y387{bottom:350.634027pt;}
.yb1{bottom:350.691733pt;}
.y296{bottom:352.036640pt;}
.y2d8{bottom:352.062933pt;}
.y21a{bottom:352.276000pt;}
.y268{bottom:352.277333pt;}
.y23f{bottom:352.596000pt;}
.y2f7{bottom:354.170667pt;}
.y2b5{bottom:354.249600pt;}
.y1ed{bottom:357.716267pt;}
.y35a{bottom:359.746933pt;}
.yf2{bottom:360.465600pt;}
.ye1{bottom:360.469600pt;}
.y101{bottom:360.473600pt;}
.y14f{bottom:361.129600pt;}
.y1c6{bottom:361.130240pt;}
.y1b4{bottom:361.252427pt;}
.y136{bottom:361.289600pt;}
.y55{bottom:361.986800pt;}
.y14a{bottom:363.689600pt;}
.y7c{bottom:363.741600pt;}
.y2b{bottom:364.712133pt;}
.yb0{bottom:366.694133pt;}
.y3b7{bottom:367.915467pt;}
.y295{bottom:368.039040pt;}
.y2d7{bottom:368.062933pt;}
.y32d{bottom:369.129600pt;}
.y386{bottom:369.190347pt;}
.y2f6{bottom:370.173067pt;}
.y2b4{bottom:370.249600pt;}
.y23e{bottom:371.476000pt;}
.y1c5{bottom:371.848640pt;}
.y14e{bottom:371.849600pt;}
.yf1{bottom:374.229600pt;}
.ye0{bottom:374.233600pt;}
.y100{bottom:374.237600pt;}
.y219{bottom:374.516267pt;}
.y359{bottom:375.746933pt;}
.y1ec{bottom:376.760267pt;}
.y7b{bottom:377.208267pt;}
.y1b3{bottom:377.254827pt;}
.y135{bottom:377.289600pt;}
.y54{bottom:377.986800pt;}
.y2a{bottom:379.268133pt;}
.y3b6{bottom:382.634027pt;}
.yaf{bottom:382.696533pt;}
.y14d{bottom:383.049600pt;}
.y294{bottom:384.041440pt;}
.y2d6{bottom:384.062933pt;}
.y2f5{bottom:386.175467pt;}
.y2b3{bottom:386.249600pt;}
.y32c{bottom:387.849600pt;}
.y385{bottom:387.907467pt;}
.yf0{bottom:387.993600pt;}
.ydf{bottom:387.997600pt;}
.yff{bottom:388.001600pt;}
.y7a{bottom:390.488267pt;}
.y1ea{bottom:390.516000pt;}
.y358{bottom:391.746933pt;}
.y1b2{bottom:393.257227pt;}
.y134{bottom:393.289600pt;}
.y53{bottom:393.986800pt;}
.y29{bottom:394.028133pt;}
.yae{bottom:398.698933pt;}
.y1eb{bottom:399.956267pt;}
.y293{bottom:400.043840pt;}
.y2d5{bottom:400.062933pt;}
.y3b5{bottom:401.190347pt;}
.y267{bottom:401.644533pt;}
.y218{bottom:401.716267pt;}
.yef{bottom:401.913600pt;}
.yde{bottom:401.917600pt;}
.yfe{bottom:401.921600pt;}
.y2f4{bottom:402.177867pt;}
.y2b2{bottom:402.249600pt;}
.y32b{bottom:402.569600pt;}
.y384{bottom:402.626027pt;}
.y357{bottom:407.746933pt;}
.y28{bottom:408.752133pt;}
.y1b1{bottom:409.259627pt;}
.y133{bottom:409.289600pt;}
.y52{bottom:409.986800pt;}
.y79{bottom:411.928267pt;}
.yad{bottom:414.701333pt;}
.yee{bottom:415.677600pt;}
.ydd{bottom:415.681600pt;}
.yfd{bottom:415.685600pt;}
.y3b4{bottom:415.908907pt;}
.y292{bottom:416.046240pt;}
.y2d4{bottom:416.062933pt;}
.y266{bottom:417.646933pt;}
.y217{bottom:417.716267pt;}
.y23c{bottom:418.036000pt;}
.y1e6{bottom:418.037333pt;}
.y2f3{bottom:418.180267pt;}
.y2b1{bottom:418.249600pt;}
.y32a{bottom:421.129600pt;}
.y383{bottom:421.182347pt;}
.y27{bottom:423.308133pt;}
.y356{bottom:423.746933pt;}
.y1b0{bottom:425.262027pt;}
.y132{bottom:425.289600pt;}
.y51{bottom:425.986800pt;}
.y1e9{bottom:427.636267pt;}
.yed{bottom:429.441600pt;}
.ydc{bottom:429.445600pt;}
.yfc{bottom:429.449600pt;}
.yac{bottom:430.703733pt;}
.y78{bottom:431.928267pt;}
.y291{bottom:432.048640pt;}
.y2d3{bottom:432.062933pt;}
.y2f2{bottom:434.182667pt;}
.y2b0{bottom:434.249600pt;}
.y3b3{bottom:434.626027pt;}
.y26{bottom:438.032133pt;}
.y329{bottom:439.849600pt;}
.y382{bottom:439.899467pt;}
.y1af{bottom:441.264427pt;}
.y131{bottom:441.289600pt;}
.y50{bottom:441.986800pt;}
.yec{bottom:443.205600pt;}
.ydb{bottom:443.209600pt;}
.y23b{bottom:445.716000pt;}
.yab{bottom:446.706133pt;}
.y290{bottom:448.051040pt;}
.y2d2{bottom:448.062933pt;}
.y3b2{bottom:449.344587pt;}
.y265{bottom:449.651733pt;}
.y216{bottom:449.716267pt;}
.y2f1{bottom:450.185067pt;}
.y2af{bottom:450.249600pt;}
.y1e5{bottom:450.834933pt;}
.y25{bottom:452.756133pt;}
.y328{bottom:454.569600pt;}
.y381{bottom:454.618027pt;}
.y355{bottom:455.746933pt;}
.yeb{bottom:457.125600pt;}
.y1ae{bottom:457.266827pt;}
.y130{bottom:457.289600pt;}
.y4f{bottom:457.986800pt;}
.yaa{bottom:462.708533pt;}
.y28f{bottom:464.053440pt;}
.y2d1{bottom:464.062933pt;}
.y23a{bottom:464.596000pt;}
.y2f0{bottom:466.187467pt;}
.y2ae{bottom:466.249600pt;}
.y24{bottom:467.312133pt;}
.y3b1{bottom:467.900907pt;}
.y77{bottom:469.048267pt;}
.y1e4{bottom:469.710933pt;}
.yea{bottom:470.889600pt;}
.y327{bottom:473.129600pt;}
.y380{bottom:473.174347pt;}
.y1ad{bottom:473.269227pt;}
.y12f{bottom:473.289600pt;}
.y4e{bottom:473.986800pt;}
.ya9{bottom:478.710933pt;}
.y28e{bottom:480.055840pt;}
.y2d0{bottom:480.062933pt;}
.y264{bottom:481.656533pt;}
.y215{bottom:481.716267pt;}
.y23{bottom:482.036133pt;}
.y2ef{bottom:482.189867pt;}
.y2ad{bottom:482.249600pt;}
.y3b0{bottom:482.619467pt;}
.y239{bottom:483.476000pt;}
.y354{bottom:487.746933pt;}
.y326{bottom:487.849600pt;}
.y37f{bottom:487.892907pt;}
.y1e3{bottom:488.754933pt;}
.y1ac{bottom:489.271627pt;}
.y12e{bottom:489.289600pt;}
.y4d{bottom:489.986800pt;}
.ya8{bottom:494.713333pt;}
.y76{bottom:495.768267pt;}
.y28d{bottom:496.058240pt;}
.y2cf{bottom:496.062933pt;}
.yd9{bottom:496.809333pt;}
.y3af{bottom:497.338027pt;}
.y263{bottom:497.658933pt;}
.y214{bottom:497.716267pt;}
.y2ee{bottom:498.192267pt;}
.y2ac{bottom:498.249600pt;}
.y238{bottom:502.516000pt;}
.y325{bottom:502.569600pt;}
.y37e{bottom:502.611467pt;}
.y353{bottom:503.746933pt;}
.y1ab{bottom:505.274027pt;}
.y12d{bottom:505.289600pt;}
.y4c{bottom:505.986800pt;}
.y1e2{bottom:507.630933pt;}
.ya7{bottom:510.715733pt;}
.y22{bottom:511.476133pt;}
.y28c{bottom:512.087200pt;}
.y2ce{bottom:512.089600pt;}
.y262{bottom:513.687893pt;}
.y213{bottom:513.742933pt;}
.y30d{bottom:514.194667pt;}
.y2ed{bottom:514.221227pt;}
.y2ab{bottom:514.276267pt;}
.y3ae{bottom:515.926507pt;}
.y324{bottom:517.316267pt;}
.y37d{bottom:517.362187pt;}
.yd8{bottom:519.076267pt;}
.y352{bottom:519.773600pt;}
.y1aa{bottom:521.302987pt;}
.y12c{bottom:521.316267pt;}
.y237{bottom:521.422667pt;}
.y4b{bottom:522.013600pt;}
.y75{bottom:522.488267pt;}
.y1e1{bottom:526.542933pt;}
.ya6{bottom:526.718133pt;}
.y28b{bottom:528.089600pt;}
.y261{bottom:529.690293pt;}
.y212{bottom:529.742933pt;}
.y2ec{bottom:530.223627pt;}
.y2aa{bottom:530.276267pt;}
.y3ad{bottom:530.645067pt;}
.y351{bottom:535.773600pt;}
.y323{bottom:535.876267pt;}
.y37c{bottom:535.918507pt;}
.y1a9{bottom:537.305387pt;}
.y12b{bottom:537.316267pt;}
.y4a{bottom:538.013600pt;}
.y236{bottom:540.302667pt;}
.y28a{bottom:541.209333pt;}
.ya5{bottom:542.747093pt;}
.y289{bottom:545.209600pt;}
.y1e0{bottom:545.586933pt;}
.y260{bottom:545.692693pt;}
.y211{bottom:545.742933pt;}
.yd7{bottom:546.226027pt;}
.y17c{bottom:546.276267pt;}
.y3ac{bottom:549.201387pt;}
.y350{bottom:551.773600pt;}
.y1a8{bottom:553.307787pt;}
.y12a{bottom:553.316267pt;}
.y49{bottom:554.013600pt;}
.y322{bottom:554.596267pt;}
.y37b{bottom:554.635627pt;}
.y21{bottom:557.076133pt;}
.ya4{bottom:558.749493pt;}
.y235{bottom:559.342667pt;}
.y288{bottom:560.249333pt;}
.y25f{bottom:561.695093pt;}
.y210{bottom:561.742933pt;}
.yd6{bottom:562.228427pt;}
.y17b{bottom:562.276267pt;}
.y74{bottom:563.168267pt;}
.y3ab{bottom:563.919947pt;}
.y1df{bottom:564.462933pt;}
.y34f{bottom:567.773600pt;}
.y1a7{bottom:569.310187pt;}
.y129{bottom:569.316267pt;}
.y48{bottom:570.013600pt;}
.y20{bottom:570.356267pt;}
.y321{bottom:573.156267pt;}
.y37a{bottom:573.191947pt;}
.ya3{bottom:574.751893pt;}
.y25e{bottom:577.697493pt;}
.y20f{bottom:577.742933pt;}
.y234{bottom:578.222667pt;}
.yd5{bottom:578.230827pt;}
.y17a{bottom:578.276267pt;}
.y287{bottom:579.129333pt;}
.y73{bottom:579.168267pt;}
.y3aa{bottom:582.637067pt;}
.y1de{bottom:583.342933pt;}
.y34e{bottom:583.773600pt;}
.y1f{bottom:583.822800pt;}
.y1a6{bottom:585.312587pt;}
.y128{bottom:585.316267pt;}
.y47{bottom:586.013600pt;}
.y320{bottom:587.876267pt;}
.y379{bottom:587.910507pt;}
.ya2{bottom:590.754293pt;}
.y25d{bottom:593.699893pt;}
.y20e{bottom:593.742933pt;}
.yd4{bottom:594.233227pt;}
.y179{bottom:594.276267pt;}
.y72{bottom:595.168267pt;}
.y1e{bottom:597.102800pt;}
.y3a9{bottom:597.355627pt;}
.y286{bottom:597.689600pt;}
.y1da{bottom:598.222667pt;}
.y34d{bottom:599.773600pt;}
.y127{bottom:600.996267pt;}
.y46{bottom:602.013600pt;}
.y31f{bottom:606.596267pt;}
.y378{bottom:606.627627pt;}
.ya1{bottom:606.756693pt;}
.y25c{bottom:609.702293pt;}
.y20d{bottom:609.742933pt;}
.yd3{bottom:610.235627pt;}
.y178{bottom:610.276267pt;}
.y2cd{bottom:611.129333pt;}
.y285{bottom:611.130667pt;}
.y126{bottom:613.796000pt;}
.y1dc{bottom:614.538933pt;}
.y34c{bottom:615.773600pt;}
.y3a8{bottom:615.911947pt;}
.y45{bottom:618.013600pt;}
.y1d{bottom:618.549840pt;}
.y1a5{bottom:619.076267pt;}
.y31e{bottom:621.316267pt;}
.y377{bottom:621.346187pt;}
.y1dd{bottom:621.422933pt;}
.ya0{bottom:622.759093pt;}
.y25b{bottom:625.704693pt;}
.y20c{bottom:625.742933pt;}
.y6c{bottom:626.208267pt;}
.y10{bottom:626.209467pt;}
.yd2{bottom:626.238027pt;}
.y177{bottom:626.276267pt;}
.y1db{bottom:628.302933pt;}
.y284{bottom:630.009333pt;}
.y34b{bottom:631.773600pt;}
.y125{bottom:632.836000pt;}
.y1a4{bottom:632.837333pt;}
.y44{bottom:634.013600pt;}
.y3a7{bottom:634.629067pt;}
.y1a3{bottom:637.956267pt;}
.y1c{bottom:638.542800pt;}
.y9f{bottom:638.761493pt;}
.y31d{bottom:639.876267pt;}
.y376{bottom:639.902507pt;}
.y25a{bottom:641.707093pt;}
.y20b{bottom:641.742933pt;}
.yd1{bottom:642.240427pt;}
.y176{bottom:642.276267pt;}
.y2cc{bottom:649.049333pt;}
.y282{bottom:649.050667pt;}
.y3a6{bottom:649.347627pt;}
.y43{bottom:650.013600pt;}
.y124{bottom:651.716000pt;}
.y283{bottom:653.049600pt;}
.y281{bottom:653.053600pt;}
.y31c{bottom:654.596267pt;}
.y375{bottom:654.621067pt;}
.y9e{bottom:654.763893pt;}
.y1a2{bottom:656.836267pt;}
.y259{bottom:657.709493pt;}
.y20a{bottom:657.742933pt;}
.yd0{bottom:658.242827pt;}
.y175{bottom:658.276267pt;}
.y1d9{bottom:661.742933pt;}
.y34a{bottom:663.773600pt;}
.y42{bottom:666.013600pt;}
.y3a5{bottom:667.903947pt;}
.y2cb{bottom:667.929333pt;}
.y123{bottom:670.596000pt;}
.y9d{bottom:670.766293pt;}
.y280{bottom:671.929600pt;}
.y31b{bottom:673.156267pt;}
.y374{bottom:673.177387pt;}
.y258{bottom:673.711893pt;}
.y209{bottom:673.742933pt;}
.ycf{bottom:674.245227pt;}
.y174{bottom:674.276267pt;}
.y1b{bottom:675.665360pt;}
.y1a1{bottom:675.876267pt;}
.y41{bottom:682.013600pt;}
.y3a4{bottom:682.622507pt;}
.y9c{bottom:686.768693pt;}
.y27f{bottom:686.809333pt;}
.y31a{bottom:687.876267pt;}
.y373{bottom:687.895947pt;}
.y1d8{bottom:688.914293pt;}
.y232{bottom:688.942933pt;}
.y11f{bottom:689.636000pt;}
.y257{bottom:689.714293pt;}
.y208{bottom:689.742933pt;}
.yce{bottom:690.247627pt;}
.y173{bottom:690.276267pt;}
.y1a0{bottom:695.556267pt;}
.y349{bottom:695.773600pt;}
.y40{bottom:698.013600pt;}
.y3a3{bottom:701.178827pt;}
.y1a{bottom:702.384080pt;}
.y319{bottom:702.596267pt;}
.y372{bottom:702.614507pt;}
.y9b{bottom:702.771093pt;}
.y27e{bottom:705.409600pt;}
.y256{bottom:705.756533pt;}
.y207{bottom:705.782933pt;}
.y30c{bottom:706.250027pt;}
.ycd{bottom:706.289867pt;}
.y172{bottom:706.316267pt;}
.y19f{bottom:709.356267pt;}
.y348{bottom:711.813600pt;}
.y3f{bottom:714.053467pt;}
.y3a2{bottom:715.940267pt;}
.y318{bottom:717.356267pt;}
.y371{bottom:717.375947pt;}
.y9a{bottom:718.773493pt;}
.y27d{bottom:718.849333pt;}
.y1d7{bottom:720.958933pt;}
.y231{bottom:720.982933pt;}
.y255{bottom:721.758933pt;}
.y206{bottom:721.782933pt;}
.y2eb{bottom:722.292267pt;}
.y2a9{bottom:722.316267pt;}
.y11e{bottom:723.916000pt;}
.y19d{bottom:723.917333pt;}
.y347{bottom:727.813600pt;}
.y19c{bottom:729.036267pt;}
.y19{bottom:729.102800pt;}
.y3e{bottom:730.053467pt;}
.y3a1{bottom:734.657387pt;}
.y99{bottom:734.815733pt;}
.y317{bottom:735.916267pt;}
.y370{bottom:735.932267pt;}
.y27c{bottom:737.409600pt;}
.y254{bottom:737.761333pt;}
.y205{bottom:737.782933pt;}
.ycc{bottom:738.294667pt;}
.y171{bottom:738.316267pt;}
.y11d{bottom:742.796000pt;}
.y346{bottom:743.813600pt;}
.y19b{bottom:747.916267pt;}
.y3a0{bottom:749.375947pt;}
.y98{bottom:750.818133pt;}
.y27b{bottom:750.849333pt;}
.y1d6{bottom:752.963733pt;}
.y230{bottom:752.982933pt;}
.y253{bottom:753.763733pt;}
.y204{bottom:753.782933pt;}
.y2ea{bottom:754.297067pt;}
.y2a8{bottom:754.316267pt;}
.y316{bottom:754.636267pt;}
.y36f{bottom:754.649387pt;}
.y345{bottom:759.813600pt;}
.y3d{bottom:762.053467pt;}
.y11c{bottom:762.796000pt;}
.y19a{bottom:762.797333pt;}
.y39f{bottom:767.932267pt;}
.y1d5{bottom:768.966133pt;}
.y22f{bottom:768.982933pt;}
.y315{bottom:769.356267pt;}
.y36e{bottom:769.367947pt;}
.y27a{bottom:769.409600pt;}
.y252{bottom:769.766133pt;}
.y18{bottom:769.782933pt;}
.ycb{bottom:770.299467pt;}
.y170{bottom:770.316267pt;}
.y344{bottom:775.813600pt;}
.y39e{bottom:782.650827pt;}
.y97{bottom:782.822933pt;}
.y2c8{bottom:782.849333pt;}
.y279{bottom:782.850667pt;}
.y11b{bottom:784.876267pt;}
.y1d4{bottom:784.968533pt;}
.y22e{bottom:784.982933pt;}
.y251{bottom:785.768533pt;}
.y17{bottom:785.782933pt;}
.yca{bottom:786.301867pt;}
.y16f{bottom:786.316267pt;}
.y314{bottom:787.916267pt;}
.y36d{bottom:787.924267pt;}
.y343{bottom:791.813600pt;}
.y1d3{bottom:800.970933pt;}
.y22d{bottom:800.982933pt;}
.y39d{bottom:801.207147pt;}
.y250{bottom:801.770933pt;}
.y16{bottom:801.782933pt;}
.y278{bottom:801.889333pt;}
.yc9{bottom:802.304267pt;}
.y16e{bottom:802.316267pt;}
.y313{bottom:802.636267pt;}
.y36c{bottom:802.642827pt;}
.y3c{bottom:807.653467pt;}
.y342{bottom:807.813600pt;}
.y199{bottom:812.071467pt;}
.y11a{bottom:812.076267pt;}
.y39c{bottom:815.925707pt;}
.y1d2{bottom:816.973333pt;}
.y22c{bottom:816.982933pt;}
.y24f{bottom:817.773333pt;}
.y203{bottom:817.782933pt;}
.yc8{bottom:818.306667pt;}
.y16d{bottom:818.316267pt;}
.y2c7{bottom:820.769333pt;}
.y277{bottom:820.770667pt;}
.y312{bottom:821.196267pt;}
.y36b{bottom:821.199147pt;}
.y341{bottom:823.813600pt;}
.y198{bottom:828.073867pt;}
.y119{bottom:828.076267pt;}
.y96{bottom:828.422933pt;}
.y1d1{bottom:832.975733pt;}
.y22b{bottom:832.982933pt;}
.y24e{bottom:833.775733pt;}
.y202{bottom:833.782933pt;}
.y3b{bottom:834.213467pt;}
.y95{bottom:834.213600pt;}
.yc7{bottom:834.309067pt;}
.y16c{bottom:834.316267pt;}
.y39b{bottom:834.642827pt;}
.y311{bottom:835.916267pt;}
.y36a{bottom:835.917707pt;}
.y276{bottom:839.649333pt;}
.y340{bottom:839.813600pt;}
.y118{bottom:844.076267pt;}
.y3a{bottom:847.973467pt;}
.y94{bottom:847.973600pt;}
.y1d0{bottom:848.978133pt;}
.y22a{bottom:848.982933pt;}
.y39a{bottom:849.361387pt;}
.y24d{bottom:849.778133pt;}
.y201{bottom:849.782933pt;}
.yc6{bottom:850.311467pt;}
.y16b{bottom:850.316267pt;}
.y310{bottom:850.636267pt;}
.yc2{bottom:852.596533pt;}
.y3{bottom:854.338533pt;}
.y33f{bottom:855.813600pt;}
.y115{bottom:857.196000pt;}
.y275{bottom:859.649333pt;}
.y39{bottom:861.733467pt;}
.y93{bottom:861.733600pt;}
.y197{bottom:862.316267pt;}
.y9{bottom:862.582667pt;}
.y1cf{bottom:864.980533pt;}
.y229{bottom:864.982933pt;}
.y24c{bottom:865.780533pt;}
.y200{bottom:865.782933pt;}
.yc1{bottom:865.929867pt;}
.yc5{bottom:866.313867pt;}
.y16a{bottom:866.316267pt;}
.y399{bottom:867.917707pt;}
.y33e{bottom:871.813600pt;}
.y38{bottom:875.653467pt;}
.y92{bottom:875.653600pt;}
.y112{bottom:876.076000pt;}
.y195{bottom:876.077333pt;}
.y1{bottom:879.110667pt;}
.yc0{bottom:879.263200pt;}
.y1ce{bottom:880.982933pt;}
.y194{bottom:881.356267pt;}
.y274{bottom:881.729600pt;}
.y1ff{bottom:881.782933pt;}
.yc4{bottom:882.316267pt;}
.y398{bottom:882.636267pt;}
.y30b{bottom:887.813600pt;}
.y37{bottom:889.413467pt;}
.y91{bottom:889.413600pt;}
.y273{bottom:910.716267pt;}
.y1cd{bottom:912.049600pt;}
.y1fe{bottom:913.169600pt;}
.yc3{bottom:913.382933pt;}
.y111{bottom:913.702933pt;}
.y2{bottom:918.559067pt;}
.y30a{bottom:918.880267pt;}
.y36{bottom:919.200267pt;}
.y66{bottom:920.499333pt;}
.h7{height:-39.265333pt;}
.h35{height:13.758667pt;}
.h24{height:13.760000pt;}
.h1f{height:13.792000pt;}
.h1d{height:13.920000pt;}
.h8{height:18.663750pt;}
.h23{height:18.880000pt;}
.h34{height:18.881333pt;}
.h40{height:18.912000pt;}
.h33{height:19.038667pt;}
.h22{height:19.040000pt;}
.h2b{height:25.157500pt;}
.h2d{height:25.920000pt;}
.h41{height:27.520000pt;}
.h3c{height:27.521333pt;}
.h3b{height:27.678667pt;}
.h20{height:27.680000pt;}
.h3d{height:27.712000pt;}
.h15{height:28.078125pt;}
.h30{height:29.280000pt;}
.h2f{height:29.440000pt;}
.h38{height:29.441333pt;}
.h4{height:29.625000pt;}
.hc{height:29.773125pt;}
.h5{height:32.000000pt;}
.h45{height:32.032000pt;}
.h43{height:32.033333pt;}
.h37{height:32.518450pt;}
.h13{height:32.531250pt;}
.h28{height:32.570625pt;}
.h29{height:32.682937pt;}
.h19{height:33.328125pt;}
.h1b{height:33.351562pt;}
.h25{height:34.272000pt;}
.h9{height:34.359375pt;}
.h3{height:34.368000pt;}
.h6{height:36.000000pt;}
.h18{height:36.001250pt;}
.h3f{height:36.883125pt;}
.hb{height:37.624687pt;}
.h14{height:42.117188pt;}
.h2e{height:44.000000pt;}
.h2c{height:45.760000pt;}
.h16{height:46.609688pt;}
.h27{height:46.722000pt;}
.h26{height:48.480000pt;}
.he{height:48.937500pt;}
.h2a{height:53.440000pt;}
.h3a{height:55.200000pt;}
.hf{height:56.156250pt;}
.ha{height:58.865625pt;}
.h12{height:64.162778pt;}
.h11{height:64.190938pt;}
.h2{height:66.352000pt;}
.h36{height:69.621188pt;}
.h10{height:79.741875pt;}
.h31{height:150.240000pt;}
.h32{height:159.040000pt;}
.h1e{height:262.106667pt;}
.h1a{height:616.702667pt;}
.hd{height:616.704000pt;}
.h17{height:826.936000pt;}
.h46{height:891.377333pt;}
.h42{height:895.306667pt;}
.h39{height:896.640000pt;}
.h3e{height:897.440000pt;}
.h44{height:897.973333pt;}
.h1c{height:900.618667pt;}
.h47{height:903.306667pt;}
.h21{height:904.273333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w7{width:-590.864000pt;}
.w2a{width:-537.216000pt;}
.w18{width:-519.720000pt;}
.w1c{width:-495.880000pt;}
.w27{width:-478.778667pt;}
.w21{width:-462.826667pt;}
.w20{width:-458.826667pt;}
.w3e{width:-450.197333pt;}
.w1b{width:-420.200000pt;}
.w22{width:-414.666667pt;}
.w23{width:-412.746667pt;}
.w2b{width:-385.829333pt;}
.w17{width:-368.333333pt;}
.w2c{width:-357.016000pt;}
.w1a{width:-344.493333pt;}
.w16{width:-339.693333pt;}
.w3f{width:-336.557333pt;}
.w1f{width:-290.506667pt;}
.w40{width:-279.922667pt;}
.w28{width:-249.309333pt;}
.w3d{width:-230.786667pt;}
.w45{width:-229.469333pt;}
.w8{width:-211.122667pt;}
.w2d{width:-205.629333pt;}
.w41{width:-204.242667pt;}
.w15{width:-188.293333pt;}
.w19{width:-155.493333pt;}
.w14{width:-150.373333pt;}
.w2e{width:-148.957333pt;}
.w29{width:-132.477333pt;}
.w1d{width:-123.146667pt;}
.w1e{width:-122.186667pt;}
.w42{width:-87.250667pt;}
.w24{width:-73.386667pt;}
.w25{width:-72.106667pt;}
.w9{width:-50.776000pt;}
.w6{width:1.333333pt;}
.wa{width:1.424000pt;}
.w3c{width:1.600000pt;}
.w26{width:2.757333pt;}
.w3a{width:14.560000pt;}
.w12{width:28.800000pt;}
.w39{width:29.280000pt;}
.w10{width:37.758667pt;}
.w38{width:50.400000pt;}
.w37{width:51.040000pt;}
.w13{width:56.670667pt;}
.w2f{width:56.832000pt;}
.w32{width:75.678667pt;}
.w31{width:75.712000pt;}
.w33{width:75.713333pt;}
.w36{width:82.240000pt;}
.w34{width:84.000000pt;}
.w2{width:84.352000pt;}
.w35{width:85.600000pt;}
.wd{width:112.672000pt;}
.wf{width:116.832000pt;}
.w11{width:151.386667pt;}
.w4{width:160.346667pt;}
.w30{width:188.986667pt;}
.w3b{width:189.146667pt;}
.we{width:229.468000pt;}
.w44{width:264.986667pt;}
.w3{width:379.746667pt;}
.wc{width:723.002667pt;}
.w43{width:724.160000pt;}
.w5{width:724.336000pt;}
.wb{width:724.426667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x23{left:-675.216000pt;}
.x28{left:-673.936000pt;}
.x25{left:-672.976000pt;}
.x24{left:-667.376000pt;}
.x90{left:-665.776000pt;}
.x6c{left:-664.442667pt;}
.x30{left:-659.216000pt;}
.x6d{left:-658.042667pt;}
.x27{left:-650.704000pt;}
.x93{left:-634.704000pt;}
.x91{left:-627.983867pt;}
.x2f{left:-616.464000pt;}
.x26{left:-602.384000pt;}
.x1d{left:-599.983867pt;}
.x6f{left:-586.815867pt;}
.x6e{left:-585.535867pt;}
.x2e{left:-576.629333pt;}
.x2b{left:-572.149200pt;}
.x72{left:-570.336000pt;}
.x92{left:-567.509333pt;}
.x2d{left:-553.109333pt;}
.x73{left:-532.575867pt;}
.x1e{left:-514.069200pt;}
.x20{left:-502.549333pt;}
.xa4{left:-494.296000pt;}
.x2c{left:-487.949333pt;}
.x70{left:-474.136000pt;}
.xa5{left:-465.815867pt;}
.x1f{left:-461.549333pt;}
.x94{left:-445.389200pt;}
.xa6{left:-441.815867pt;}
.x2a{left:-408.589333pt;}
.x9d{left:-401.389200pt;}
.x29{left:-399.789200pt;}
.x98{left:-393.389200pt;}
.x74{left:-381.176000pt;}
.x75{left:-352.376000pt;}
.x95{left:-331.922667pt;}
.x9e{left:-322.322533pt;}
.x99{left:-311.282533pt;}
.x96{left:-275.282533pt;}
.x9f{left:-256.082667pt;}
.x71{left:-244.509333pt;}
.x22{left:-211.442533pt;}
.x76{left:-200.989200pt;}
.x97{left:-199.602667pt;}
.x9a{left:-187.242533pt;}
.x9c{left:-173.482533pt;}
.x9b{left:-172.042667pt;}
.xa0{left:-145.802667pt;}
.x21{left:-58.922667pt;}
.x0{left:0.000000pt;}
.xd{left:1.333333pt;}
.x34{left:2.666667pt;}
.x36{left:4.634667pt;}
.x50{left:9.786667pt;}
.x6a{left:12.544000pt;}
.x64{left:13.693333pt;}
.x61{left:20.093333pt;}
.x66{left:24.733333pt;}
.x62{left:26.173333pt;}
.x5c{left:28.346667pt;}
.x5f{left:37.826667pt;}
.xa3{left:43.680000pt;}
.x5{left:49.889733pt;}
.x4{left:51.779467pt;}
.xf{left:52.709333pt;}
.xe{left:58.293333pt;}
.xa9{left:59.184267pt;}
.xa8{left:60.479867pt;}
.xa7{left:64.960000pt;}
.x18{left:66.450453pt;}
.x31{left:67.469707pt;}
.x1a{left:68.799867pt;}
.x89{left:72.106667pt;}
.x88{left:73.386667pt;}
.x6{left:75.232000pt;}
.x8{left:76.800000pt;}
.x8b{left:86.325333pt;}
.xa{left:88.320000pt;}
.x32{left:91.498667pt;}
.x1b{left:92.832000pt;}
.x8f{left:94.879867pt;}
.x8a{left:97.685333pt;}
.x17{left:109.205333pt;}
.x33{left:115.498667pt;}
.x1c{left:116.832000pt;}
.x10{left:123.301333pt;}
.x9{left:129.320000pt;}
.x7c{left:132.933333pt;}
.x7{left:134.800000pt;}
.x39{left:138.853333pt;}
.x35{left:140.133333pt;}
.x82{left:145.733333pt;}
.x5a{left:147.066533pt;}
.x16{left:149.040000pt;}
.x3c{left:150.693333pt;}
.xc{left:152.200000pt;}
.x13{left:153.520000pt;}
.x41{left:155.333333pt;}
.x48{left:156.986533pt;}
.x79{left:160.133333pt;}
.x15{left:172.560000pt;}
.x7b{left:180.933333pt;}
.x4e{left:182.266667pt;}
.x3d{left:188.453333pt;}
.x2{left:209.887200pt;}
.x3{left:226.016667pt;}
.xa1{left:230.946667pt;}
.x8d{left:232.546533pt;}
.x14{left:237.720000pt;}
.x37{left:246.893333pt;}
.x3a{left:251.533333pt;}
.x1{left:259.715200pt;}
.x7e{left:266.573333pt;}
.x52{left:267.906533pt;}
.x7d{left:278.093333pt;}
.x51{left:279.426667pt;}
.xa2{left:283.426667pt;}
.x83{left:300.333333pt;}
.x5d{left:301.666667pt;}
.x12{left:317.074987pt;}
.x11{left:325.885013pt;}
.x8c{left:332.280000pt;}
.x3e{left:339.853333pt;}
.x42{left:344.493333pt;}
.x78{left:349.133333pt;}
.x3f{left:368.653333pt;}
.x80{left:406.602560pt;}
.x54{left:407.933333pt;}
.x56{left:409.373333pt;}
.x55{left:410.813200pt;}
.x87{left:412.746667pt;}
.x86{left:414.666667pt;}
.x81{left:417.160000pt;}
.x59{left:418.493200pt;}
.x57{left:420.573200pt;}
.x58{left:422.493200pt;}
.x84{left:458.826667pt;}
.x7f{left:461.800000pt;}
.x53{left:463.133200pt;}
.x38{left:476.360000pt;}
.x3b{left:481.160000pt;}
.x85{left:484.680000pt;}
.x65{left:486.013333pt;}
.x77{left:495.880000pt;}
.xb{left:514.546667pt;}
.x40{left:520.040000pt;}
.x7a{left:583.583627pt;}
.x4d{left:584.933333pt;}
.x19{left:724.336000pt;}
.x6b{left:797.776000pt;}
.x69{left:799.056000pt;}
.x5b{left:847.856000pt;}
.x4f{left:848.816000pt;}
.x43{left:876.042667pt;}
.x49{left:881.162667pt;}
.x44{left:913.962667pt;}
.x8e{left:956.456000pt;}
.x5e{left:1016.176000pt;}
.x45{left:1065.362667pt;}
.x4a{left:1070.162667pt;}
.x46{left:1094.002667pt;}
.x68{left:1138.416000pt;}
.x67{left:1140.336000pt;}
.x4b{left:1145.869333pt;}
.x60{left:1184.496000pt;}
.x63{left:1188.496000pt;}
.x4c{left:1221.549333pt;}
.x47{left:1245.389333pt;}
}




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