
    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_60fddbd012715b45862b3637.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_02823de814b58840b9577aed.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_97d13a2bc0ee004f2dce634d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_c3ff4cafbda4b0e8e0cac917.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762000;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_b07dce25026a8b66cd8520cb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.744000;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_bd62ece66a1d5ddf0ff364fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;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_64ddc446204eb0ead66adc07.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.109000;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_3dcc1f6405600d50264d80a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.901855;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_301fdf546a368d34185eab01.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_fb8e43fb0004d043d835256d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.905762;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_7eb9ca893b755abc630efb22.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.952637;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_aece94cb96189019323d980e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_7c27760a433f226befd81337.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.881836;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_112ed8a262c867970528c989.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_84f2b63edd12bbfe65ed26db.woff2')format("woff");}.fff{font-family:fff;line-height:0.854980;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_041bf0aa423fcec8842252f7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.881836;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_5da95cf017e5a7c2e6416009.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d5b9388c8cf81640b84b9eb6.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.881836;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_9c35c57316b32a52d8f9a893.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_041bf0aa423fcec8842252f7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.881836;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_0601896b5b43d47045af9c0f.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_d5b9388c8cf81640b84b9eb6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.881836;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_c9e3e390a5909e29ad89d302.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.677734;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_d5b9388c8cf81640b84b9eb6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.881836;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_9c35c57316b32a52d8f9a893.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_a1af5bbdc51873f689169254.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.881836;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_041bf0aa423fcec8842252f7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.881836;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_c24c45513e7d874a5e8d77ea.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.677246;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_d5b9388c8cf81640b84b9eb6.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.881836;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_c9e3e390a5909e29ad89d302.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.677734;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_b6dd97be6ab68f4e07ed542c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.673828;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_a5b668040bc2d438d025e085.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.045898;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_62b99afbaeb541314c99619c.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.895996;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_03304f29abd45201f0be028c.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.930000;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_8fe68fb00d6a8a79b8e48a36.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.895996;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_03304f29abd45201f0be028c.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.930000;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_8ccacb5a72cac3823c977115.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.895996;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_03304f29abd45201f0be028c.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.930000;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_8ccacb5a72cac3823c977115.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.895996;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_2beaa76557aad5f3a41a5204.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.930000;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_df346a5f03a8001479d3f536.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.895996;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_03304f29abd45201f0be028c.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.930000;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_c3e0f9067f368a866f800759.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.895996;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_03304f29abd45201f0be028c.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.930000;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_6c950908f6e678f11133e5d8.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.895996;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_03304f29abd45201f0be028c.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.930000;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_9278c1756109e88e32322fc1.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.113770;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v5{vertical-align:-18.740496px;}
.v3{vertical-align:-13.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.200000px;}
.v2{vertical-align:19.800000px;}
.v7{vertical-align:29.329200px;}
.v6{vertical-align:33.388740px;}
.v4{vertical-align:35.283600px;}
.ls42{letter-spacing:-13.320000px;}
.ls50{letter-spacing:-11.115000px;}
.ls41{letter-spacing:-10.845000px;}
.ls56{letter-spacing:-10.215000px;}
.ls49{letter-spacing:-9.990000px;}
.ls4c{letter-spacing:-9.180000px;}
.ls54{letter-spacing:-8.550000px;}
.ls53{letter-spacing:-8.325000px;}
.ls4b{letter-spacing:-4.995000px;}
.ls33{letter-spacing:-1.320000px;}
.ls2f{letter-spacing:-0.660000px;}
.ls31{letter-spacing:-0.594000px;}
.ls30{letter-spacing:-0.528000px;}
.ls7{letter-spacing:-0.480000px;}
.ls29{letter-spacing:-0.330000px;}
.ls4f{letter-spacing:-0.300000px;}
.ls34{letter-spacing:-0.198000px;}
.ls2a{letter-spacing:-0.066000px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.000316px;}
.ls3b{letter-spacing:0.009000px;}
.ls3d{letter-spacing:0.009600px;}
.ls3c{letter-spacing:0.010200px;}
.ls46{letter-spacing:0.060000px;}
.ls13{letter-spacing:0.066000px;}
.ls44{letter-spacing:0.081600px;}
.ls45{letter-spacing:0.090000px;}
.ls5{letter-spacing:0.096000px;}
.ls3e{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.132000px;}
.ls2c{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.198000px;}
.ls2{letter-spacing:0.210000px;}
.ls11{letter-spacing:0.264000px;}
.lse{letter-spacing:0.330000px;}
.ls14{letter-spacing:0.396000px;}
.ls3{letter-spacing:0.420000px;}
.ls2b{letter-spacing:0.462000px;}
.ls10{letter-spacing:0.528000px;}
.ls28{letter-spacing:0.577800px;}
.ls27{letter-spacing:0.588600px;}
.lsb{letter-spacing:0.594000px;}
.ls48{letter-spacing:0.630000px;}
.ls47{letter-spacing:0.637200px;}
.lsf{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.792000px;}
.lsc{letter-spacing:0.924000px;}
.ls3a{letter-spacing:0.990000px;}
.ls39{letter-spacing:1.003200px;}
.ls38{letter-spacing:1.005000px;}
.ls40{letter-spacing:1.020000px;}
.ls16{letter-spacing:1.056000px;}
.ls19{letter-spacing:1.122000px;}
.ls32{letter-spacing:1.254000px;}
.ls17{letter-spacing:1.320000px;}
.ls4e{letter-spacing:1.380000px;}
.ls2e{letter-spacing:1.500000px;}
.lsd{letter-spacing:1.584000px;}
.ls51{letter-spacing:1.620000px;}
.ls1f{letter-spacing:1.633500px;}
.ls43{letter-spacing:1.636200px;}
.ls35{letter-spacing:1.650000px;}
.ls36{letter-spacing:1.782000px;}
.ls18{letter-spacing:2.442000px;}
.ls4a{letter-spacing:2.640000px;}
.ls26{letter-spacing:2.970000px;}
.ls2d{letter-spacing:3.060000px;}
.ls4d{letter-spacing:3.120000px;}
.ls52{letter-spacing:5.760000px;}
.ls55{letter-spacing:8.160000px;}
.ls3f{letter-spacing:8.520000px;}
.ls23{letter-spacing:8.755560px;}
.ls22{letter-spacing:8.886240px;}
.ls37{letter-spacing:8.893800px;}
.ls1a{letter-spacing:9.735660px;}
.ls1{letter-spacing:10.656000px;}
.ls1b{letter-spacing:10.911780px;}
.ls1e{letter-spacing:11.499840px;}
.ls25{letter-spacing:12.479940px;}
.ls4{letter-spacing:12.510000px;}
.ls1d{letter-spacing:14.178780px;}
.ls1c{letter-spacing:14.440140px;}
.ls21{letter-spacing:17.800189px;}
.ls24{letter-spacing:61.419600px;}
.ls20{letter-spacing:100.166220px;}
.ls8{letter-spacing:1267.089600px;}
.ls0{letter-spacing:1920.921600px;}
.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;}
}
.ws7{word-spacing:-66.000000px;}
.ws6{word-spacing:-16.500000px;}
.ws10{word-spacing:-16.020000px;}
.ws1c{word-spacing:-15.660000px;}
.ws1{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.250000px;}
.wsf{word-spacing:-12.240000px;}
.ws1b{word-spacing:-11.880000px;}
.ws19{word-spacing:-11.340000px;}
.ws13{word-spacing:-11.250000px;}
.ws3{word-spacing:-10.725000px;}
.ws15{word-spacing:-6.255000px;}
.wse{word-spacing:-0.044529px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:5.400000px;}
.ws1d{word-spacing:6.480000px;}
.ws16{word-spacing:7.110000px;}
.ws14{word-spacing:8.730000px;}
.ws1e{word-spacing:9.810000px;}
.ws11{word-spacing:10.440000px;}
.ws17{word-spacing:10.665000px;}
.ws18{word-spacing:10.710000px;}
.ws12{word-spacing:15.390000px;}
.ws8{word-spacing:72.625490px;}
.wsc{word-spacing:106.026480px;}
.wsb{word-spacing:113.020460px;}
.wsa{word-spacing:113.170088px;}
.ws9{word-spacing:113.860514px;}
.wsd{word-spacing:115.881214px;}
.ws5{word-spacing:121.708200px;}
.ws2{word-spacing:477.681158px;}
._12{margin-left:-1867.506000px;}
._24{margin-left:-1824.070800px;}
._25{margin-left:-1778.261400px;}
._23{margin-left:-1736.668800px;}
._13{margin-left:-1649.602200px;}
._36{margin-left:-659.991717px;}
._37{margin-left:-631.821981px;}
._38{margin-left:-626.211327px;}
._22{margin-left:-17.556000px;}
._b{margin-left:-16.500000px;}
._39{margin-left:-15.154200px;}
._7{margin-left:-13.705200px;}
._1{margin-left:-10.662600px;}
._6{margin-left:-8.610000px;}
._3d{margin-left:-7.549800px;}
._3a{margin-left:-5.940000px;}
._10{margin-left:-4.884000px;}
._11{margin-left:-3.564000px;}
._d{margin-left:-2.310000px;}
._4{margin-left:-1.085400px;}
._5{width:1.260000px;}
._3{width:2.982000px;}
._8{width:4.176000px;}
._9{width:5.520000px;}
._a{width:6.528000px;}
._c{width:8.118000px;}
._e{width:9.174000px;}
._2c{width:10.374000px;}
._2{width:12.096000px;}
._0{width:13.344000px;}
._3b{width:28.446000px;}
._3c{width:29.607000px;}
._3e{width:31.107000px;}
._14{width:44.999400px;}
._18{width:53.272421px;}
._1a{width:57.675158px;}
._19{width:66.773053px;}
._17{width:73.522737px;}
._1c{width:80.272421px;}
._30{width:90.428771px;}
._1f{width:93.773053px;}
._1d{width:98.176421px;}
._2f{width:99.869341px;}
._32{width:104.425180px;}
._16{width:107.272421px;}
._35{width:116.525676px;}
._34{width:122.179649px;}
._31{width:123.408173px;}
._20{width:125.175789px;}
._33{width:132.417734px;}
._26{width:135.948600px;}
._2b{width:164.448600px;}
._27{width:216.274200px;}
._28{width:220.411800px;}
._2a{width:302.923200px;}
._29{width:315.564000px;}
._2d{width:437.220000px;}
._15{width:549.349263px;}
._1b{width:612.313263px;}
._2e{width:772.960800px;}
._1e{width:962.597084px;}
._21{width:976.097084px;}
._f{width:1187.565600px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.000000px;}
.fsd{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fs12{font-size:37.167600px;}
.fs14{font-size:37.441800px;}
.fs18{font-size:37.951800px;}
.fs16{font-size:37.963800px;}
.fs1b{font-size:38.614200px;}
.fs19{font-size:38.908800px;}
.fs13{font-size:41.131800px;}
.fs15{font-size:41.435400px;}
.fs5{font-size:42.000000px;}
.fs17{font-size:42.013200px;}
.fs11{font-size:42.322800px;}
.fs1c{font-size:42.733200px;}
.fse{font-size:42.900000px;}
.fs1a{font-size:43.059000px;}
.fs1d{font-size:44.529000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs1e{font-size:49.278600px;}
.fsb{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs10{font-size:65.340000px;}
.fsc{font-size:66.000000px;}
.fsf{font-size:67.350930px;}
.fs8{font-size:72.000000px;}
.fs7{font-size:90.000000px;}
.fs3{font-size:139.800000px;}
.y0{bottom:0.000000px;}
.y110{bottom:2.569950px;}
.y121{bottom:2.590350px;}
.y13a{bottom:2.624250px;}
.y12d{bottom:2.627400px;}
.y157{bottom:2.671500px;}
.y146{bottom:2.691450px;}
.y19c{bottom:3.080550px;}
.yd3{bottom:3.804900px;}
.ydd{bottom:4.733700px;}
.yd5{bottom:8.490024px;}
.y11f{bottom:17.110500px;}
.ydb{bottom:17.820300px;}
.y10d{bottom:18.016050px;}
.y138{bottom:18.396300px;}
.y12b{bottom:18.404400px;}
.y155{bottom:18.702150px;}
.y144{bottom:18.844350px;}
.yd4{bottom:20.975250px;}
.y19a{bottom:21.586200px;}
.ydc{bottom:26.173500px;}
.yd1{bottom:26.729550px;}
.y116{bottom:29.274150px;}
.y107{bottom:30.098700px;}
.y131{bottom:30.725700px;}
.y124{bottom:30.737550px;}
.y14a{bottom:31.255350px;}
.y13c{bottom:31.501650px;}
.yd2{bottom:32.298300px;}
.y18f{bottom:36.052200px;}
.y10f{bottom:38.855658px;}
.y14b{bottom:49.346103px;}
.y156{bottom:49.513500px;}
.y145{bottom:50.920650px;}
.y117{bottom:51.205684px;}
.y12c{bottom:51.324450px;}
.y10e{bottom:54.722250px;}
.y13d{bottom:57.531637px;}
.y120{bottom:58.215150px;}
.y190{bottom:60.164654px;}
.y132{bottom:60.347080px;}
.y125{bottom:60.377787px;}
.y139{bottom:62.375550px;}
.y108{bottom:64.915449px;}
.y14c{bottom:67.427202px;}
.y118{bottom:73.118498px;}
.y13e{bottom:83.551897px;}
.y191{bottom:84.299372px;}
.y1{bottom:85.039350px;}
.y5e{bottom:85.039650px;}
.y31{bottom:85.039800px;}
.y1ba{bottom:85.039950px;}
.y18b{bottom:85.040100px;}
.y14d{bottom:85.508301px;}
.y133{bottom:89.968460px;}
.y126{bottom:90.008533px;}
.y119{bottom:95.040672px;}
.y109{bottom:99.732199px;}
.y14e{bottom:103.599054px;}
.y192{bottom:108.411825px;}
.y13f{bottom:109.581884px;}
.y19b{bottom:110.120550px;}
.y11a{bottom:116.972206px;}
.y10{bottom:119.055150px;}
.y86{bottom:119.055300px;}
.y5d{bottom:119.055600px;}
.y1e0{bottom:119.063250px;}
.yc9{bottom:119.138550px;}
.y134{bottom:119.589840px;}
.y127{bottom:119.639279px;}
.ya9{bottom:119.673750px;}
.y1b9{bottom:120.845700px;}
.y14f{bottom:121.670499px;}
.yec{bottom:122.378400px;}
.y122{bottom:122.915550px;}
.y18a{bottom:129.601050px;}
.y161{bottom:129.932550px;}
.yf{bottom:131.055150px;}
.y193{bottom:132.535411px;}
.y10a{bottom:134.548948px;}
.y140{bottom:135.611872px;}
.y85{bottom:136.696800px;}
.yc8{bottom:136.734900px;}
.y1df{bottom:136.878750px;}
.y5c{bottom:136.903650px;}
.ya8{bottom:137.270250px;}
.y1b8{bottom:138.442200px;}
.y11b{bottom:138.885019px;}
.y114{bottom:138.902550px;}
.y150{bottom:139.751598px;}
.yeb{bottom:139.974900px;}
.y189{bottom:147.197550px;}
.y160{bottom:147.529050px;}
.y135{bottom:149.220708px;}
.y128{bottom:149.279516px;}
.ye{bottom:149.433000px;}
.yc7{bottom:154.331400px;}
.y84{bottom:154.338300px;}
.y1de{bottom:154.694250px;}
.y5b{bottom:154.751700px;}
.ya7{bottom:154.866750px;}
.y113{bottom:154.889550px;}
.y1b7{bottom:156.038700px;}
.y194{bottom:156.658997px;}
.yea{bottom:157.571400px;}
.y151{bottom:157.832698px;}
.y1a2{bottom:158.333100px;}
.y11c{bottom:160.807193px;}
.y141{bottom:161.651586px;}
.y188{bottom:164.794050px;}
.y15f{bottom:165.125550px;}
.yd{bottom:167.811000px;}
.y10b{bottom:169.365697px;}
.yc6{bottom:171.928050px;}
.y83{bottom:171.979800px;}
.ya6{bottom:172.463250px;}
.y1dd{bottom:172.509750px;}
.y5a{bottom:172.599750px;}
.y1b6{bottom:173.635350px;}
.y209{bottom:174.621600px;}
.ye9{bottom:175.167900px;}
.y152{bottom:175.923450px;}
.y136{bottom:178.842087px;}
.y129{bottom:178.910261px;}
.y1a1{bottom:179.206050px;}
.y106{bottom:179.719500px;}
.y115{bottom:180.250500px;}
.y195{bottom:180.771450px;}
.y187{bottom:182.390550px;}
.y11d{bottom:182.720007px;}
.y15e{bottom:182.722050px;}
.y112{bottom:185.011500px;}
.yc{bottom:185.370000px;}
.y142{bottom:187.681573px;}
.yc5{bottom:189.524400px;}
.y82{bottom:189.621300px;}
.ya5{bottom:190.059750px;}
.y1dc{bottom:190.325250px;}
.y59{bottom:190.447800px;}
.y1b5{bottom:191.231850px;}
.y208{bottom:192.437100px;}
.ye8{bottom:192.764400px;}
.y153{bottom:194.004549px;}
.y111{bottom:196.110150px;}
.yb{bottom:196.551000px;}
.y186{bottom:199.987050px;}
.y1a0{bottom:200.079150px;}
.y15d{bottom:200.318550px;}
.y10c{bottom:204.168000px;}
.y11e{bottom:204.643800px;}
.y196{bottom:204.906168px;}
.yc4{bottom:207.120900px;}
.y81{bottom:207.262800px;}
.ya4{bottom:207.656250px;}
.y1db{bottom:208.140750px;}
.y58{bottom:208.295850px;}
.y137{bottom:208.485300px;}
.y12a{bottom:208.535700px;}
.y1b4{bottom:208.828350px;}
.y207{bottom:210.252600px;}
.ye7{bottom:210.360900px;}
.y154{bottom:212.100900px;}
.y143{bottom:213.717900px;}
.ya{bottom:214.109850px;}
.y185{bottom:217.583550px;}
.y15c{bottom:217.915050px;}
.y19f{bottom:220.951950px;}
.yc3{bottom:224.717400px;}
.y80{bottom:224.904150px;}
.ya3{bottom:225.252750px;}
.y9{bottom:225.290850px;}
.y1da{bottom:225.956250px;}
.y57{bottom:226.143900px;}
.y1b3{bottom:226.424850px;}
.ye6{bottom:227.957400px;}
.y206{bottom:228.068100px;}
.y197{bottom:229.018622px;}
.y184{bottom:235.180050px;}
.y15b{bottom:235.511550px;}
.y8{bottom:236.471850px;}
.y19e{bottom:241.825050px;}
.yc2{bottom:242.313900px;}
.y7f{bottom:242.545650px;}
.ya2{bottom:242.849250px;}
.y1d9{bottom:243.771750px;}
.y56{bottom:243.991950px;}
.y1b2{bottom:244.021200px;}
.ye5{bottom:245.553900px;}
.y205{bottom:245.883600px;}
.y183{bottom:252.776550px;}
.y15a{bottom:253.108050px;}
.y198{bottom:253.142207px;}
.yc1{bottom:259.910550px;}
.y7e{bottom:260.187150px;}
.ya1{bottom:260.445750px;}
.y1b1{bottom:261.617700px;}
.y55{bottom:261.840000px;}
.y19d{bottom:262.698000px;}
.ye4{bottom:263.150400px;}
.y204{bottom:263.699100px;}
.y182{bottom:270.373050px;}
.y159{bottom:270.704550px;}
.y199{bottom:277.251150px;}
.yc0{bottom:277.506900px;}
.y7d{bottom:277.828650px;}
.ya0{bottom:278.042250px;}
.y1d8{bottom:279.181950px;}
.y1b0{bottom:279.214350px;}
.ye3{bottom:280.746900px;}
.y203{bottom:281.514600px;}
.y30{bottom:282.317700px;}
.y181{bottom:287.969550px;}
.y158{bottom:288.301050px;}
.y54{bottom:288.485400px;}
.ybf{bottom:295.103400px;}
.y9f{bottom:295.638750px;}
.y1af{bottom:296.810850px;}
.ye2{bottom:298.343400px;}
.y202{bottom:299.330100px;}
.y7c{bottom:304.267500px;}
.y2f{bottom:304.703850px;}
.y180{bottom:305.566050px;}
.y53{bottom:306.333450px;}
.ybe{bottom:312.699900px;}
.y9e{bottom:313.235250px;}
.y1ae{bottom:314.407350px;}
.ye1{bottom:315.939900px;}
.y201{bottom:317.145600px;}
.y2e{bottom:319.096350px;}
.y17f{bottom:323.162550px;}
.y52{bottom:324.181500px;}
.ybd{bottom:330.296400px;}
.y9d{bottom:330.831750px;}
.y1d7{bottom:331.967700px;}
.y2d{bottom:333.488850px;}
.y200{bottom:334.961100px;}
.y7b{bottom:339.503550px;}
.y17e{bottom:340.759050px;}
.y148{bottom:341.434950px;}
.y51{bottom:342.029550px;}
.ye0{bottom:342.333600px;}
.y2c{bottom:347.881350px;}
.ybc{bottom:347.892900px;}
.y1d6{bottom:349.564200px;}
.y1ad{bottom:349.598400px;}
.y1ff{bottom:352.776600px;}
.y9c{bottom:357.225600px;}
.y147{bottom:357.421950px;}
.y17d{bottom:358.355550px;}
.y50{bottom:359.877750px;}
.ydf{bottom:359.930100px;}
.y2b{bottom:362.273850px;}
.y1d5{bottom:367.160700px;}
.y1ac{bottom:367.194900px;}
.y1fe{bottom:370.592100px;}
.ybb{bottom:374.286750px;}
.y17c{bottom:375.952050px;}
.y2a{bottom:376.666350px;}
.yde{bottom:377.526600px;}
.y4f{bottom:377.725800px;}
.y13b{bottom:382.977000px;}
.y149{bottom:384.654000px;}
.y1d4{bottom:384.757200px;}
.y1ab{bottom:384.791400px;}
.y1fd{bottom:388.407600px;}
.y29{bottom:391.058850px;}
.y7a{bottom:392.334300px;}
.y17b{bottom:393.548550px;}
.y4e{bottom:395.573850px;}
.y1d3{bottom:402.353700px;}
.y1aa{bottom:402.387900px;}
.y28{bottom:405.451350px;}
.y1fc{bottom:406.223100px;}
.y79{bottom:409.975800px;}
.y17a{bottom:411.145050px;}
.yda{bottom:412.717500px;}
.yd9{bottom:412.717800px;}
.y4d{bottom:413.421900px;}
.yba{bottom:418.275300px;}
.y9b{bottom:418.549650px;}
.y27{bottom:419.843850px;}
.y1d2{bottom:419.950200px;}
.y1a9{bottom:419.984400px;}
.y1fb{bottom:424.038600px;}
.y78{bottom:427.617300px;}
.y105{bottom:428.508000px;}
.y179{bottom:428.741550px;}
.y4c{bottom:431.269950px;}
.y26{bottom:434.236350px;}
.y9a{bottom:435.477750px;}
.yb9{bottom:435.871800px;}
.y1d1{bottom:437.546700px;}
.y1a8{bottom:437.580900px;}
.y1fa{bottom:441.854100px;}
.y77{bottom:445.258800px;}
.y104{bottom:446.104500px;}
.y178{bottom:446.338050px;}
.y4b{bottom:449.118000px;}
.yb8{bottom:453.468300px;}
.y1d0{bottom:455.143200px;}
.y1a7{bottom:455.177400px;}
.y1f9{bottom:459.669600px;}
.y99{bottom:460.909950px;}
.y76{bottom:462.900300px;}
.y103{bottom:463.701000px;}
.y177{bottom:463.934550px;}
.y25{bottom:464.616300px;}
.y4a{bottom:466.966050px;}
.yb7{bottom:471.064800px;}
.y1cf{bottom:472.739700px;}
.y1a6{bottom:472.773900px;}
.y1f8{bottom:477.485100px;}
.yd8{bottom:479.347500px;}
.y75{bottom:480.541650px;}
.y102{bottom:481.297650px;}
.y176{bottom:481.531200px;}
.y49{bottom:484.814100px;}
.y98{bottom:486.342000px;}
.y24{bottom:487.002450px;}
.yb6{bottom:488.661300px;}
.y1ce{bottom:490.336200px;}
.y1a5{bottom:490.370400px;}
.y1f7{bottom:495.300600px;}
.yd7{bottom:496.944000px;}
.y74{bottom:498.183150px;}
.y101{bottom:498.894000px;}
.y175{bottom:499.127550px;}
.y23{bottom:501.394950px;}
.y48{bottom:502.662150px;}
.yb5{bottom:506.257800px;}
.y1cd{bottom:507.932700px;}
.y97{bottom:511.774050px;}
.y1f6{bottom:513.116100px;}
.yd6{bottom:514.540500px;}
.y22{bottom:515.787450px;}
.y73{bottom:515.824650px;}
.y100{bottom:516.490500px;}
.y174{bottom:516.724050px;}
.y47{bottom:520.510200px;}
.y1a4{bottom:525.561600px;}
.y21{bottom:530.179950px;}
.y1f5{bottom:530.931600px;}
.yff{bottom:534.087000px;}
.y173{bottom:534.320550px;}
.y96{bottom:536.081250px;}
.y46{bottom:538.358250px;}
.y72{bottom:542.263500px;}
.y1cc{bottom:543.123900px;}
.y20{bottom:544.572450px;}
.y1f4{bottom:548.747100px;}
.ycf{bottom:549.731550px;}
.yd0{bottom:549.732000px;}
.yfe{bottom:551.683500px;}
.y172{bottom:551.917050px;}
.y95{bottom:553.009350px;}
.y45{bottom:556.206300px;}
.y1f{bottom:558.964950px;}
.y71{bottom:559.905000px;}
.yb4{bottom:560.191950px;}
.y1f3{bottom:566.562600px;}
.yfd{bottom:569.280150px;}
.y171{bottom:569.513700px;}
.y1e{bottom:573.357450px;}
.y44{bottom:574.054350px;}
.y70{bottom:577.546350px;}
.yb3{bottom:577.682550px;}
.y94{bottom:578.441400px;}
.y1f2{bottom:584.378100px;}
.y1a3{bottom:586.851300px;}
.yfc{bottom:586.876500px;}
.y1d{bottom:587.749950px;}
.y43{bottom:591.902550px;}
.yb2{bottom:595.173150px;}
.y6f{bottom:595.187850px;}
.y170{bottom:595.907400px;}
.y1cb{bottom:595.909650px;}
.y1c{bottom:602.142450px;}
.y1f1{bottom:602.193600px;}
.y93{bottom:603.873450px;}
.yfb{bottom:604.473150px;}
.y42{bottom:609.750600px;}
.y18e{bottom:610.831500px;}
.yb1{bottom:612.663900px;}
.y6e{bottom:612.829350px;}
.y16f{bottom:613.503900px;}
.y1ca{bottom:613.506150px;}
.y1b{bottom:616.534950px;}
.y1f0{bottom:620.009100px;}
.yfa{bottom:622.069500px;}
.yce{bottom:622.301250px;}
.y41{bottom:627.598650px;}
.y92{bottom:629.305500px;}
.yb0{bottom:630.154500px;}
.y6d{bottom:630.470850px;}
.y1a{bottom:630.927450px;}
.y16e{bottom:631.100400px;}
.y1c9{bottom:631.102650px;}
.y12f{bottom:637.371150px;}
.y1ef{bottom:637.824600px;}
.yf9{bottom:639.666000px;}
.ycd{bottom:639.897750px;}
.y19{bottom:645.319950px;}
.y40{bottom:645.446700px;}
.y6c{bottom:648.112350px;}
.y16d{bottom:648.696900px;}
.y1c8{bottom:648.699150px;}
.y12e{bottom:653.358150px;}
.y1ee{bottom:655.640100px;}
.yaf{bottom:656.149050px;}
.yf8{bottom:657.262500px;}
.ycc{bottom:657.494250px;}
.y18{bottom:659.712450px;}
.y91{bottom:661.131450px;}
.yac{bottom:663.345450px;}
.y6b{bottom:665.753850px;}
.y16c{bottom:666.293400px;}
.y1c7{bottom:666.295650px;}
.yae{bottom:670.541550px;}
.y3f{bottom:672.092100px;}
.y1ed{bottom:673.455600px;}
.yf7{bottom:674.859000px;}
.ycb{bottom:675.090750px;}
.yab{bottom:677.737950px;}
.y123{bottom:677.910000px;}
.y130{bottom:677.962500px;}
.y6a{bottom:683.395350px;}
.y16b{bottom:683.889900px;}
.y1c6{bottom:683.892150px;}
.yad{bottom:684.934050px;}
.y3e{bottom:689.940150px;}
.y1ec{bottom:691.271100px;}
.yf6{bottom:692.455500px;}
.yca{bottom:692.687250px;}
.y69{bottom:701.036700px;}
.y16a{bottom:701.486400px;}
.y3d{bottom:707.788200px;}
.y1eb{bottom:709.086600px;}
.yf5{bottom:710.052000px;}
.y90{bottom:710.283750px;}
.yaa{bottom:717.322500px;}
.y68{bottom:718.678200px;}
.y169{bottom:719.082900px;}
.y1c5{bottom:719.083350px;}
.y3c{bottom:725.636250px;}
.y1ea{bottom:726.902100px;}
.yf4{bottom:727.648650px;}
.y8f{bottom:727.880250px;}
.y17{bottom:733.632600px;}
.y168{bottom:736.679400px;}
.y1c4{bottom:736.679850px;}
.y3b{bottom:743.484300px;}
.y1e9{bottom:744.717600px;}
.y67{bottom:745.117050px;}
.yf3{bottom:745.245000px;}
.y8e{bottom:745.476750px;}
.y16{bottom:749.619600px;}
.y167{bottom:754.275900px;}
.y1c3{bottom:754.276350px;}
.y3a{bottom:761.332350px;}
.y1e8{bottom:762.532950px;}
.y66{bottom:762.758550px;}
.yf2{bottom:762.841500px;}
.y8d{bottom:763.073250px;}
.y166{bottom:771.872400px;}
.y1c2{bottom:771.872700px;}
.y15{bottom:774.403950px;}
.y39{bottom:779.180400px;}
.y1e7{bottom:780.348600px;}
.y65{bottom:780.400050px;}
.yf1{bottom:780.438150px;}
.y8c{bottom:780.669750px;}
.y165{bottom:789.468900px;}
.y1c1{bottom:789.469350px;}
.y38{bottom:797.028450px;}
.yf0{bottom:798.034650px;}
.y64{bottom:798.041400px;}
.y1e6{bottom:798.164100px;}
.y8b{bottom:798.266400px;}
.y164{bottom:807.065400px;}
.y1c0{bottom:807.065850px;}
.y14{bottom:809.008350px;}
.y37{bottom:814.876500px;}
.yef{bottom:815.631150px;}
.y63{bottom:815.682900px;}
.y8a{bottom:815.862900px;}
.y1e5{bottom:815.979600px;}
.y163{bottom:824.662050px;}
.y1bf{bottom:824.662350px;}
.y13{bottom:830.608200px;}
.y36{bottom:832.724550px;}
.yee{bottom:833.227650px;}
.y62{bottom:833.324400px;}
.y89{bottom:833.459400px;}
.y1e4{bottom:833.795100px;}
.y162{bottom:842.258550px;}
.y1be{bottom:842.258850px;}
.y35{bottom:850.572450px;}
.yed{bottom:850.824150px;}
.y61{bottom:850.965900px;}
.y88{bottom:851.055750px;}
.y1e3{bottom:851.610600px;}
.y12{bottom:856.460250px;}
.y60{bottom:868.607400px;}
.y87{bottom:868.652400px;}
.y1bd{bottom:868.652700px;}
.y1e2{bottom:869.426100px;}
.y11{bottom:881.960250px;}
.y34{bottom:886.015200px;}
.y5f{bottom:886.248900px;}
.y1bc{bottom:886.249200px;}
.y1e1{bottom:887.241600px;}
.y2{bottom:920.367150px;}
.y33{bottom:931.878450px;}
.y18d{bottom:931.878750px;}
.y1bb{bottom:931.878900px;}
.y5{bottom:939.027750px;}
.y4{bottom:945.477750px;}
.y32{bottom:949.474950px;}
.y18c{bottom:949.475250px;}
.y3{bottom:953.272050px;}
.y7{bottom:957.890700px;}
.y6{bottom:971.390700px;}
.h5{height:19.602000px;}
.h1c{height:26.677916px;}
.h1f{height:26.874729px;}
.h25{height:27.240794px;}
.h22{height:27.249407px;}
.h2b{height:27.716247px;}
.h28{height:27.927703px;}
.h17{height:28.642286px;}
.h1d{height:29.656028px;}
.h20{height:29.874923px;}
.h26{height:30.282000px;}
.h23{height:30.291517px;}
.h2c{height:30.810637px;}
.h29{height:31.045539px;}
.h2e{height:31.961733px;}
.h3{height:35.328000px;}
.h2f{height:35.529871px;}
.h6{height:38.388000px;}
.h7{height:41.130000px;}
.hd{height:42.539062px;}
.hc{height:43.054688px;}
.h14{height:44.219355px;}
.h10{height:45.745605px;}
.h30{height:45.826172px;}
.h18{height:46.035000px;}
.h15{height:46.069805px;}
.h13{height:47.487668px;}
.hb{height:48.436523px;}
.h11{height:51.127441px;}
.h12{height:51.975000px;}
.ha{height:53.173828px;}
.h2{height:53.818359px;}
.h1a{height:57.847493px;}
.he{height:58.491211px;}
.hf{height:59.200195px;}
.h8{height:62.490234px;}
.h9{height:64.582031px;}
.h16{height:78.832965px;}
.h19{height:79.458545px;}
.h4{height:104.850000px;}
.h1e{height:211.218000px;}
.h1b{height:211.750500px;}
.h24{height:216.226500px;}
.h21{height:216.277500px;}
.h2a{height:219.976500px;}
.h27{height:221.653500px;}
.h2d{height:286.333500px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w3{width:69.795000px;}
.w2{width:230.175000px;}
.w4{width:238.110000px;}
.w5{width:498.754500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1e{left:2.644800px;}
.x32{left:8.605476px;}
.x41{left:10.311300px;}
.x1f{left:11.786850px;}
.x2a{left:14.896050px;}
.x3f{left:17.386500px;}
.x2f{left:19.352250px;}
.x3d{left:21.111000px;}
.x33{left:22.393200px;}
.x3b{left:25.096950px;}
.x3e{left:27.237300px;}
.x20{left:28.307550px;}
.x38{left:30.789900px;}
.x37{left:33.640350px;}
.x21{left:38.470500px;}
.x2c{left:43.621500px;}
.x30{left:51.051150px;}
.x2b{left:52.160250px;}
.x34{left:53.970900px;}
.x3c{left:56.009550px;}
.x3a{left:57.638700px;}
.x36{left:58.885950px;}
.x22{left:97.824000px;}
.x23{left:107.986950px;}
.xa{left:110.551200px;}
.x1{left:113.476500px;}
.x10{left:124.435950px;}
.x11{left:129.388500px;}
.x1c{left:131.925900px;}
.xb{left:136.063050px;}
.x4{left:138.988350px;}
.xd{left:142.624350px;}
.x46{left:146.692950px;}
.x45{left:149.618250px;}
.x44{left:155.196900px;}
.x24{left:157.920150px;}
.x7{left:172.332300px;}
.x5{left:173.632800px;}
.x25{left:174.904800px;}
.x6{left:179.257800px;}
.x26{left:188.269800px;}
.x12{left:190.699500px;}
.x42{left:203.388000px;}
.x2e{left:206.181750px;}
.x13{left:208.753650px;}
.x27{left:212.447400px;}
.x28{left:222.610500px;}
.x31{left:235.539900px;}
.x1d{left:244.842000px;}
.x14{left:256.632600px;}
.xf{left:286.664700px;}
.x15{left:289.541100px;}
.x8{left:294.018300px;}
.xe{left:309.773850px;}
.x29{left:325.032000px;}
.x16{left:351.925500px;}
.x39{left:370.584000px;}
.x35{left:373.510500px;}
.x17{left:376.706400px;}
.x9{left:380.219250px;}
.x2d{left:394.826700px;}
.x43{left:408.406950px;}
.x18{left:430.959900px;}
.x2{left:441.045750px;}
.x19{left:475.211400px;}
.x40{left:479.017650px;}
.x3{left:521.280900px;}
.x1a{left:570.174000px;}
.x1b{left:572.296950px;}
.xc{left:606.831900px;}
@media print{
.v5{vertical-align:-16.658219pt;}
.v3{vertical-align:-11.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:14.400000pt;}
.v2{vertical-align:17.600000pt;}
.v7{vertical-align:26.070400pt;}
.v6{vertical-align:29.678880pt;}
.v4{vertical-align:31.363200pt;}
.ls42{letter-spacing:-11.840000pt;}
.ls50{letter-spacing:-9.880000pt;}
.ls41{letter-spacing:-9.640000pt;}
.ls56{letter-spacing:-9.080000pt;}
.ls49{letter-spacing:-8.880000pt;}
.ls4c{letter-spacing:-8.160000pt;}
.ls54{letter-spacing:-7.600000pt;}
.ls53{letter-spacing:-7.400000pt;}
.ls4b{letter-spacing:-4.440000pt;}
.ls33{letter-spacing:-1.173333pt;}
.ls2f{letter-spacing:-0.586667pt;}
.ls31{letter-spacing:-0.528000pt;}
.ls30{letter-spacing:-0.469333pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls29{letter-spacing:-0.293333pt;}
.ls4f{letter-spacing:-0.266667pt;}
.ls34{letter-spacing:-0.176000pt;}
.ls2a{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.000281pt;}
.ls3b{letter-spacing:0.008000pt;}
.ls3d{letter-spacing:0.008533pt;}
.ls3c{letter-spacing:0.009067pt;}
.ls46{letter-spacing:0.053333pt;}
.ls13{letter-spacing:0.058667pt;}
.ls44{letter-spacing:0.072533pt;}
.ls45{letter-spacing:0.080000pt;}
.ls5{letter-spacing:0.085333pt;}
.ls3e{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.117333pt;}
.ls2c{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.176000pt;}
.ls2{letter-spacing:0.186667pt;}
.ls11{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.293333pt;}
.ls14{letter-spacing:0.352000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls2b{letter-spacing:0.410667pt;}
.ls10{letter-spacing:0.469333pt;}
.ls28{letter-spacing:0.513600pt;}
.ls27{letter-spacing:0.523200pt;}
.lsb{letter-spacing:0.528000pt;}
.ls48{letter-spacing:0.560000pt;}
.ls47{letter-spacing:0.566400pt;}
.lsf{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.704000pt;}
.lsc{letter-spacing:0.821333pt;}
.ls3a{letter-spacing:0.880000pt;}
.ls39{letter-spacing:0.891733pt;}
.ls38{letter-spacing:0.893333pt;}
.ls40{letter-spacing:0.906667pt;}
.ls16{letter-spacing:0.938667pt;}
.ls19{letter-spacing:0.997333pt;}
.ls32{letter-spacing:1.114667pt;}
.ls17{letter-spacing:1.173333pt;}
.ls4e{letter-spacing:1.226667pt;}
.ls2e{letter-spacing:1.333333pt;}
.lsd{letter-spacing:1.408000pt;}
.ls51{letter-spacing:1.440000pt;}
.ls1f{letter-spacing:1.452000pt;}
.ls43{letter-spacing:1.454400pt;}
.ls35{letter-spacing:1.466667pt;}
.ls36{letter-spacing:1.584000pt;}
.ls18{letter-spacing:2.170667pt;}
.ls4a{letter-spacing:2.346667pt;}
.ls26{letter-spacing:2.640000pt;}
.ls2d{letter-spacing:2.720000pt;}
.ls4d{letter-spacing:2.773333pt;}
.ls52{letter-spacing:5.120000pt;}
.ls55{letter-spacing:7.253333pt;}
.ls3f{letter-spacing:7.573333pt;}
.ls23{letter-spacing:7.782720pt;}
.ls22{letter-spacing:7.898880pt;}
.ls37{letter-spacing:7.905600pt;}
.ls1a{letter-spacing:8.653920pt;}
.ls1{letter-spacing:9.472000pt;}
.ls1b{letter-spacing:9.699360pt;}
.ls1e{letter-spacing:10.222080pt;}
.ls25{letter-spacing:11.093280pt;}
.ls4{letter-spacing:11.120000pt;}
.ls1d{letter-spacing:12.603360pt;}
.ls1c{letter-spacing:12.835680pt;}
.ls21{letter-spacing:15.822390pt;}
.ls24{letter-spacing:54.595200pt;}
.ls20{letter-spacing:89.036640pt;}
.ls8{letter-spacing:1126.301867pt;}
.ls0{letter-spacing:1707.485867pt;}
.ws7{word-spacing:-58.666667pt;}
.ws6{word-spacing:-14.666667pt;}
.ws10{word-spacing:-14.240000pt;}
.ws1c{word-spacing:-13.920000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.666667pt;}
.wsf{word-spacing:-10.880000pt;}
.ws1b{word-spacing:-10.560000pt;}
.ws19{word-spacing:-10.080000pt;}
.ws13{word-spacing:-10.000000pt;}
.ws3{word-spacing:-9.533333pt;}
.ws15{word-spacing:-5.560000pt;}
.wse{word-spacing:-0.039581pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:4.800000pt;}
.ws1d{word-spacing:5.760000pt;}
.ws16{word-spacing:6.320000pt;}
.ws14{word-spacing:7.760000pt;}
.ws1e{word-spacing:8.720000pt;}
.ws11{word-spacing:9.280000pt;}
.ws17{word-spacing:9.480000pt;}
.ws18{word-spacing:9.520000pt;}
.ws12{word-spacing:13.680000pt;}
.ws8{word-spacing:64.555991pt;}
.wsc{word-spacing:94.245760pt;}
.wsb{word-spacing:100.462631pt;}
.wsa{word-spacing:100.595634pt;}
.ws9{word-spacing:101.209346pt;}
.wsd{word-spacing:103.005524pt;}
.ws5{word-spacing:108.185067pt;}
.ws2{word-spacing:424.605474pt;}
._12{margin-left:-1660.005333pt;}
._24{margin-left:-1621.396267pt;}
._25{margin-left:-1580.676800pt;}
._23{margin-left:-1543.705600pt;}
._13{margin-left:-1466.313067pt;}
._36{margin-left:-586.659304pt;}
._37{margin-left:-561.619539pt;}
._38{margin-left:-556.632291pt;}
._22{margin-left:-15.605333pt;}
._b{margin-left:-14.666667pt;}
._39{margin-left:-13.470400pt;}
._7{margin-left:-12.182400pt;}
._1{margin-left:-9.477867pt;}
._6{margin-left:-7.653333pt;}
._3d{margin-left:-6.710933pt;}
._3a{margin-left:-5.280000pt;}
._10{margin-left:-4.341333pt;}
._11{margin-left:-3.168000pt;}
._d{margin-left:-2.053333pt;}
._4{margin-left:-0.964800pt;}
._5{width:1.120000pt;}
._3{width:2.650667pt;}
._8{width:3.712000pt;}
._9{width:4.906667pt;}
._a{width:5.802667pt;}
._c{width:7.216000pt;}
._e{width:8.154667pt;}
._2c{width:9.221333pt;}
._2{width:10.752000pt;}
._0{width:11.861333pt;}
._3b{width:25.285333pt;}
._3c{width:26.317333pt;}
._3e{width:27.650667pt;}
._14{width:39.999467pt;}
._18{width:47.353263pt;}
._1a{width:51.266807pt;}
._19{width:59.353825pt;}
._17{width:65.353544pt;}
._1c{width:71.353263pt;}
._30{width:80.381130pt;}
._1f{width:83.353825pt;}
._1d{width:87.267930pt;}
._2f{width:88.772748pt;}
._32{width:92.822382pt;}
._16{width:95.353263pt;}
._35{width:103.578379pt;}
._34{width:108.604133pt;}
._31{width:109.696154pt;}
._20{width:111.267368pt;}
._33{width:117.704653pt;}
._26{width:120.843200pt;}
._2b{width:146.176533pt;}
._27{width:192.243733pt;}
._28{width:195.921600pt;}
._2a{width:269.265067pt;}
._29{width:280.501333pt;}
._2d{width:388.640000pt;}
._15{width:488.310456pt;}
._1b{width:544.278456pt;}
._2e{width:687.076267pt;}
._1e{width:855.641853pt;}
._21{width:867.641853pt;}
._f{width:1055.613867pt;}
.fs4{font-size:24.000000pt;}
.fsd{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fs12{font-size:33.037867pt;}
.fs14{font-size:33.281600pt;}
.fs18{font-size:33.734933pt;}
.fs16{font-size:33.745600pt;}
.fs1b{font-size:34.323733pt;}
.fs19{font-size:34.585600pt;}
.fs13{font-size:36.561600pt;}
.fs15{font-size:36.831467pt;}
.fs5{font-size:37.333333pt;}
.fs17{font-size:37.345067pt;}
.fs11{font-size:37.620267pt;}
.fs1c{font-size:37.985067pt;}
.fse{font-size:38.133333pt;}
.fs1a{font-size:38.274667pt;}
.fs1d{font-size:39.581333pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs1e{font-size:43.803200pt;}
.fsb{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs10{font-size:58.080000pt;}
.fsc{font-size:58.666667pt;}
.fsf{font-size:59.867494pt;}
.fs8{font-size:64.000000pt;}
.fs7{font-size:80.000000pt;}
.fs3{font-size:124.266667pt;}
.y0{bottom:0.000000pt;}
.y110{bottom:2.284400pt;}
.y121{bottom:2.302533pt;}
.y13a{bottom:2.332667pt;}
.y12d{bottom:2.335467pt;}
.y157{bottom:2.374667pt;}
.y146{bottom:2.392400pt;}
.y19c{bottom:2.738267pt;}
.yd3{bottom:3.382133pt;}
.ydd{bottom:4.207733pt;}
.yd5{bottom:7.546688pt;}
.y11f{bottom:15.209333pt;}
.ydb{bottom:15.840267pt;}
.y10d{bottom:16.014267pt;}
.y138{bottom:16.352267pt;}
.y12b{bottom:16.359467pt;}
.y155{bottom:16.624133pt;}
.y144{bottom:16.750533pt;}
.yd4{bottom:18.644667pt;}
.y19a{bottom:19.187733pt;}
.ydc{bottom:23.265333pt;}
.yd1{bottom:23.759600pt;}
.y116{bottom:26.021467pt;}
.y107{bottom:26.754400pt;}
.y131{bottom:27.311733pt;}
.y124{bottom:27.322267pt;}
.y14a{bottom:27.782533pt;}
.y13c{bottom:28.001467pt;}
.yd2{bottom:28.709600pt;}
.y18f{bottom:32.046400pt;}
.y10f{bottom:34.538363pt;}
.y14b{bottom:43.863202pt;}
.y156{bottom:44.012000pt;}
.y145{bottom:45.262800pt;}
.y117{bottom:45.516164pt;}
.y12c{bottom:45.621733pt;}
.y10e{bottom:48.642000pt;}
.y13d{bottom:51.139233pt;}
.y120{bottom:51.746800pt;}
.y190{bottom:53.479692pt;}
.y132{bottom:53.641849pt;}
.y125{bottom:53.669144pt;}
.y139{bottom:55.444933pt;}
.y108{bottom:57.702622pt;}
.y14c{bottom:59.935291pt;}
.y118{bottom:64.994220pt;}
.y13e{bottom:74.268353pt;}
.y191{bottom:74.932775pt;}
.y1{bottom:75.590533pt;}
.y5e{bottom:75.590800pt;}
.y31{bottom:75.590933pt;}
.y1ba{bottom:75.591067pt;}
.y18b{bottom:75.591200pt;}
.y14d{bottom:76.007379pt;}
.y133{bottom:79.971964pt;}
.y126{bottom:80.007585pt;}
.y119{bottom:84.480597pt;}
.y109{bottom:88.650843pt;}
.y14e{bottom:92.088048pt;}
.y192{bottom:96.366067pt;}
.y13f{bottom:97.406119pt;}
.y19b{bottom:97.884933pt;}
.y11a{bottom:103.975294pt;}
.y10{bottom:105.826800pt;}
.y86{bottom:105.826933pt;}
.y5d{bottom:105.827200pt;}
.y1e0{bottom:105.834000pt;}
.yc9{bottom:105.900933pt;}
.y134{bottom:106.302080pt;}
.y127{bottom:106.346025pt;}
.ya9{bottom:106.376667pt;}
.y1b9{bottom:107.418400pt;}
.y14f{bottom:108.151555pt;}
.yec{bottom:108.780800pt;}
.y122{bottom:109.258267pt;}
.y18a{bottom:115.200933pt;}
.y161{bottom:115.495600pt;}
.yf{bottom:116.493467pt;}
.y193{bottom:117.809254pt;}
.y10a{bottom:119.599065pt;}
.y140{bottom:120.543886pt;}
.y85{bottom:121.508267pt;}
.yc8{bottom:121.542133pt;}
.y1df{bottom:121.670000pt;}
.y5c{bottom:121.692133pt;}
.ya8{bottom:122.018000pt;}
.y1b8{bottom:123.059733pt;}
.y11b{bottom:123.453351pt;}
.y114{bottom:123.468933pt;}
.y150{bottom:124.223643pt;}
.yeb{bottom:124.422133pt;}
.y189{bottom:130.842267pt;}
.y160{bottom:131.136933pt;}
.y135{bottom:132.640629pt;}
.y128{bottom:132.692903pt;}
.ye{bottom:132.829333pt;}
.yc7{bottom:137.183467pt;}
.y84{bottom:137.189600pt;}
.y1de{bottom:137.506000pt;}
.y5b{bottom:137.557067pt;}
.ya7{bottom:137.659333pt;}
.y113{bottom:137.679600pt;}
.y1b7{bottom:138.701067pt;}
.y194{bottom:139.252441pt;}
.yea{bottom:140.063467pt;}
.y151{bottom:140.295731pt;}
.y1a2{bottom:140.740533pt;}
.y11c{bottom:142.939727pt;}
.y141{bottom:143.690299pt;}
.y188{bottom:146.483600pt;}
.y15f{bottom:146.778267pt;}
.yd{bottom:149.165333pt;}
.y10b{bottom:150.547286pt;}
.yc6{bottom:152.824933pt;}
.y83{bottom:152.870933pt;}
.ya6{bottom:153.300667pt;}
.y1dd{bottom:153.342000pt;}
.y5a{bottom:153.422000pt;}
.y1b6{bottom:154.342533pt;}
.y209{bottom:155.219200pt;}
.ye9{bottom:155.704800pt;}
.y152{bottom:156.376400pt;}
.y136{bottom:158.970744pt;}
.y129{bottom:159.031343pt;}
.y1a1{bottom:159.294267pt;}
.y106{bottom:159.750667pt;}
.y115{bottom:160.222667pt;}
.y195{bottom:160.685733pt;}
.y187{bottom:162.124933pt;}
.y11d{bottom:162.417784pt;}
.y15e{bottom:162.419600pt;}
.y112{bottom:164.454667pt;}
.yc{bottom:164.773333pt;}
.y142{bottom:166.828065pt;}
.yc5{bottom:168.466133pt;}
.y82{bottom:168.552267pt;}
.ya5{bottom:168.942000pt;}
.y1dc{bottom:169.178000pt;}
.y59{bottom:169.286933pt;}
.y1b5{bottom:169.983867pt;}
.y208{bottom:171.055200pt;}
.ye8{bottom:171.346133pt;}
.y153{bottom:172.448488pt;}
.y111{bottom:174.320133pt;}
.yb{bottom:174.712000pt;}
.y186{bottom:177.766267pt;}
.y1a0{bottom:177.848133pt;}
.y15d{bottom:178.060933pt;}
.y10c{bottom:181.482667pt;}
.y11e{bottom:181.905600pt;}
.y196{bottom:182.138816pt;}
.yc4{bottom:184.107467pt;}
.y81{bottom:184.233600pt;}
.ya4{bottom:184.583333pt;}
.y1db{bottom:185.014000pt;}
.y58{bottom:185.151867pt;}
.y137{bottom:185.320267pt;}
.y12a{bottom:185.365067pt;}
.y1b4{bottom:185.625200pt;}
.y207{bottom:186.891200pt;}
.ye7{bottom:186.987467pt;}
.y154{bottom:188.534133pt;}
.y143{bottom:189.971467pt;}
.ya{bottom:190.319867pt;}
.y185{bottom:193.407600pt;}
.y15c{bottom:193.702267pt;}
.y19f{bottom:196.401733pt;}
.yc3{bottom:199.748800pt;}
.y80{bottom:199.914800pt;}
.ya3{bottom:200.224667pt;}
.y9{bottom:200.258533pt;}
.y1da{bottom:200.850000pt;}
.y57{bottom:201.016800pt;}
.y1b3{bottom:201.266533pt;}
.ye6{bottom:202.628800pt;}
.y206{bottom:202.727200pt;}
.y197{bottom:203.572108pt;}
.y184{bottom:209.048933pt;}
.y15b{bottom:209.343600pt;}
.y8{bottom:210.197200pt;}
.y19e{bottom:214.955600pt;}
.yc2{bottom:215.390133pt;}
.y7f{bottom:215.596133pt;}
.ya2{bottom:215.866000pt;}
.y1d9{bottom:216.686000pt;}
.y56{bottom:216.881733pt;}
.y1b2{bottom:216.907733pt;}
.ye5{bottom:218.270133pt;}
.y205{bottom:218.563200pt;}
.y183{bottom:224.690267pt;}
.y15a{bottom:224.984933pt;}
.y198{bottom:225.015295pt;}
.yc1{bottom:231.031600pt;}
.y7e{bottom:231.277467pt;}
.ya1{bottom:231.507333pt;}
.y1b1{bottom:232.549067pt;}
.y55{bottom:232.746667pt;}
.y19d{bottom:233.509333pt;}
.ye4{bottom:233.911467pt;}
.y204{bottom:234.399200pt;}
.y182{bottom:240.331600pt;}
.y159{bottom:240.626267pt;}
.y199{bottom:246.445467pt;}
.yc0{bottom:246.672800pt;}
.y7d{bottom:246.958800pt;}
.ya0{bottom:247.148667pt;}
.y1d8{bottom:248.161733pt;}
.y1b0{bottom:248.190533pt;}
.ye3{bottom:249.552800pt;}
.y203{bottom:250.235200pt;}
.y30{bottom:250.949067pt;}
.y181{bottom:255.972933pt;}
.y158{bottom:256.267600pt;}
.y54{bottom:256.431467pt;}
.ybf{bottom:262.314133pt;}
.y9f{bottom:262.790000pt;}
.y1af{bottom:263.831867pt;}
.ye2{bottom:265.194133pt;}
.y202{bottom:266.071200pt;}
.y7c{bottom:270.460000pt;}
.y2f{bottom:270.847867pt;}
.y180{bottom:271.614267pt;}
.y53{bottom:272.296400pt;}
.ybe{bottom:277.955467pt;}
.y9e{bottom:278.431333pt;}
.y1ae{bottom:279.473200pt;}
.ye1{bottom:280.835467pt;}
.y201{bottom:281.907200pt;}
.y2e{bottom:283.641200pt;}
.y17f{bottom:287.255600pt;}
.y52{bottom:288.161333pt;}
.ybd{bottom:293.596800pt;}
.y9d{bottom:294.072667pt;}
.y1d7{bottom:295.082400pt;}
.y2d{bottom:296.434533pt;}
.y200{bottom:297.743200pt;}
.y7b{bottom:301.780933pt;}
.y17e{bottom:302.896933pt;}
.y148{bottom:303.497733pt;}
.y51{bottom:304.026267pt;}
.ye0{bottom:304.296533pt;}
.y2c{bottom:309.227867pt;}
.ybc{bottom:309.238133pt;}
.y1d6{bottom:310.723733pt;}
.y1ad{bottom:310.754133pt;}
.y1ff{bottom:313.579200pt;}
.y9c{bottom:317.533867pt;}
.y147{bottom:317.708400pt;}
.y17d{bottom:318.538267pt;}
.y50{bottom:319.891333pt;}
.ydf{bottom:319.937867pt;}
.y2b{bottom:322.021200pt;}
.y1d5{bottom:326.365067pt;}
.y1ac{bottom:326.395467pt;}
.y1fe{bottom:329.415200pt;}
.ybb{bottom:332.699333pt;}
.y17c{bottom:334.179600pt;}
.y2a{bottom:334.814533pt;}
.yde{bottom:335.579200pt;}
.y4f{bottom:335.756267pt;}
.y13b{bottom:340.424000pt;}
.y149{bottom:341.914667pt;}
.y1d4{bottom:342.006400pt;}
.y1ab{bottom:342.036800pt;}
.y1fd{bottom:345.251200pt;}
.y29{bottom:347.607867pt;}
.y7a{bottom:348.741600pt;}
.y17b{bottom:349.820933pt;}
.y4e{bottom:351.621200pt;}
.y1d3{bottom:357.647733pt;}
.y1aa{bottom:357.678133pt;}
.y28{bottom:360.401200pt;}
.y1fc{bottom:361.087200pt;}
.y79{bottom:364.422933pt;}
.y17a{bottom:365.462267pt;}
.yda{bottom:366.860000pt;}
.yd9{bottom:366.860267pt;}
.y4d{bottom:367.486133pt;}
.yba{bottom:371.800267pt;}
.y9b{bottom:372.044133pt;}
.y27{bottom:373.194533pt;}
.y1d2{bottom:373.289067pt;}
.y1a9{bottom:373.319467pt;}
.y1fb{bottom:376.923200pt;}
.y78{bottom:380.104267pt;}
.y105{bottom:380.896000pt;}
.y179{bottom:381.103600pt;}
.y4c{bottom:383.351067pt;}
.y26{bottom:385.987867pt;}
.y9a{bottom:387.091333pt;}
.yb9{bottom:387.441600pt;}
.y1d1{bottom:388.930400pt;}
.y1a8{bottom:388.960800pt;}
.y1fa{bottom:392.759200pt;}
.y77{bottom:395.785600pt;}
.y104{bottom:396.537333pt;}
.y178{bottom:396.744933pt;}
.y4b{bottom:399.216000pt;}
.yb8{bottom:403.082933pt;}
.y1d0{bottom:404.571733pt;}
.y1a7{bottom:404.602133pt;}
.y1f9{bottom:408.595200pt;}
.y99{bottom:409.697733pt;}
.y76{bottom:411.466933pt;}
.y103{bottom:412.178667pt;}
.y177{bottom:412.386267pt;}
.y25{bottom:412.992267pt;}
.y4a{bottom:415.080933pt;}
.yb7{bottom:418.724267pt;}
.y1cf{bottom:420.213067pt;}
.y1a6{bottom:420.243467pt;}
.y1f8{bottom:424.431200pt;}
.yd8{bottom:426.086667pt;}
.y75{bottom:427.148133pt;}
.y102{bottom:427.820133pt;}
.y176{bottom:428.027733pt;}
.y49{bottom:430.945867pt;}
.y98{bottom:432.304000pt;}
.y24{bottom:432.891067pt;}
.yb6{bottom:434.365600pt;}
.y1ce{bottom:435.854400pt;}
.y1a5{bottom:435.884800pt;}
.y1f7{bottom:440.267200pt;}
.yd7{bottom:441.728000pt;}
.y74{bottom:442.829467pt;}
.y101{bottom:443.461333pt;}
.y175{bottom:443.668933pt;}
.y23{bottom:445.684400pt;}
.y48{bottom:446.810800pt;}
.yb5{bottom:450.006933pt;}
.y1cd{bottom:451.495733pt;}
.y97{bottom:454.910267pt;}
.y1f6{bottom:456.103200pt;}
.yd6{bottom:457.369333pt;}
.y22{bottom:458.477733pt;}
.y73{bottom:458.510800pt;}
.y100{bottom:459.102667pt;}
.y174{bottom:459.310267pt;}
.y47{bottom:462.675733pt;}
.y1a4{bottom:467.165867pt;}
.y21{bottom:471.271067pt;}
.y1f5{bottom:471.939200pt;}
.yff{bottom:474.744000pt;}
.y173{bottom:474.951600pt;}
.y96{bottom:476.516667pt;}
.y46{bottom:478.540667pt;}
.y72{bottom:482.012000pt;}
.y1cc{bottom:482.776800pt;}
.y20{bottom:484.064400pt;}
.y1f4{bottom:487.775200pt;}
.ycf{bottom:488.650267pt;}
.yd0{bottom:488.650667pt;}
.yfe{bottom:490.385333pt;}
.y172{bottom:490.592933pt;}
.y95{bottom:491.563867pt;}
.y45{bottom:494.405600pt;}
.y1f{bottom:496.857733pt;}
.y71{bottom:497.693333pt;}
.yb4{bottom:497.948400pt;}
.y1f3{bottom:503.611200pt;}
.yfd{bottom:506.026800pt;}
.y171{bottom:506.234400pt;}
.y1e{bottom:509.651067pt;}
.y44{bottom:510.270533pt;}
.y70{bottom:513.374533pt;}
.yb3{bottom:513.495600pt;}
.y94{bottom:514.170133pt;}
.y1f2{bottom:519.447200pt;}
.y1a3{bottom:521.645600pt;}
.yfc{bottom:521.668000pt;}
.y1d{bottom:522.444400pt;}
.y43{bottom:526.135600pt;}
.yb2{bottom:529.042800pt;}
.y6f{bottom:529.055867pt;}
.y170{bottom:529.695467pt;}
.y1cb{bottom:529.697467pt;}
.y1c{bottom:535.237733pt;}
.y1f1{bottom:535.283200pt;}
.y93{bottom:536.776400pt;}
.yfb{bottom:537.309467pt;}
.y42{bottom:542.000533pt;}
.y18e{bottom:542.961333pt;}
.yb1{bottom:544.590133pt;}
.y6e{bottom:544.737200pt;}
.y16f{bottom:545.336800pt;}
.y1ca{bottom:545.338800pt;}
.y1b{bottom:548.031067pt;}
.y1f0{bottom:551.119200pt;}
.yfa{bottom:552.950667pt;}
.yce{bottom:553.156667pt;}
.y41{bottom:557.865467pt;}
.y92{bottom:559.382667pt;}
.yb0{bottom:560.137333pt;}
.y6d{bottom:560.418533pt;}
.y1a{bottom:560.824400pt;}
.y16e{bottom:560.978133pt;}
.y1c9{bottom:560.980133pt;}
.y12f{bottom:566.552133pt;}
.y1ef{bottom:566.955200pt;}
.yf9{bottom:568.592000pt;}
.ycd{bottom:568.798000pt;}
.y19{bottom:573.617733pt;}
.y40{bottom:573.730400pt;}
.y6c{bottom:576.099867pt;}
.y16d{bottom:576.619467pt;}
.y1c8{bottom:576.621467pt;}
.y12e{bottom:580.762800pt;}
.y1ee{bottom:582.791200pt;}
.yaf{bottom:583.243600pt;}
.yf8{bottom:584.233333pt;}
.ycc{bottom:584.439333pt;}
.y18{bottom:586.411067pt;}
.y91{bottom:587.672400pt;}
.yac{bottom:589.640400pt;}
.y6b{bottom:591.781200pt;}
.y16c{bottom:592.260800pt;}
.y1c7{bottom:592.262800pt;}
.yae{bottom:596.036933pt;}
.y3f{bottom:597.415200pt;}
.y1ed{bottom:598.627200pt;}
.yf7{bottom:599.874667pt;}
.ycb{bottom:600.080667pt;}
.yab{bottom:602.433733pt;}
.y123{bottom:602.586667pt;}
.y130{bottom:602.633333pt;}
.y6a{bottom:607.462533pt;}
.y16b{bottom:607.902133pt;}
.y1c6{bottom:607.904133pt;}
.yad{bottom:608.830267pt;}
.y3e{bottom:613.280133pt;}
.y1ec{bottom:614.463200pt;}
.yf6{bottom:615.516000pt;}
.yca{bottom:615.722000pt;}
.y69{bottom:623.143733pt;}
.y16a{bottom:623.543467pt;}
.y3d{bottom:629.145067pt;}
.y1eb{bottom:630.299200pt;}
.yf5{bottom:631.157333pt;}
.y90{bottom:631.363333pt;}
.yaa{bottom:637.620000pt;}
.y68{bottom:638.825067pt;}
.y169{bottom:639.184800pt;}
.y1c5{bottom:639.185200pt;}
.y3c{bottom:645.010000pt;}
.y1ea{bottom:646.135200pt;}
.yf4{bottom:646.798800pt;}
.y8f{bottom:647.004667pt;}
.y17{bottom:652.117867pt;}
.y168{bottom:654.826133pt;}
.y1c4{bottom:654.826533pt;}
.y3b{bottom:660.874933pt;}
.y1e9{bottom:661.971200pt;}
.y67{bottom:662.326267pt;}
.yf3{bottom:662.440000pt;}
.y8e{bottom:662.646000pt;}
.y16{bottom:666.328533pt;}
.y167{bottom:670.467467pt;}
.y1c3{bottom:670.467867pt;}
.y3a{bottom:676.739867pt;}
.y1e8{bottom:677.807067pt;}
.y66{bottom:678.007600pt;}
.yf2{bottom:678.081333pt;}
.y8d{bottom:678.287333pt;}
.y166{bottom:686.108800pt;}
.y1c2{bottom:686.109067pt;}
.y15{bottom:688.359067pt;}
.y39{bottom:692.604800pt;}
.y1e7{bottom:693.643200pt;}
.y65{bottom:693.688933pt;}
.yf1{bottom:693.722800pt;}
.y8c{bottom:693.928667pt;}
.y165{bottom:701.750133pt;}
.y1c1{bottom:701.750533pt;}
.y38{bottom:708.469733pt;}
.yf0{bottom:709.364133pt;}
.y64{bottom:709.370133pt;}
.y1e6{bottom:709.479200pt;}
.y8b{bottom:709.570133pt;}
.y164{bottom:717.391467pt;}
.y1c0{bottom:717.391867pt;}
.y14{bottom:719.118533pt;}
.y37{bottom:724.334667pt;}
.yef{bottom:725.005467pt;}
.y63{bottom:725.051467pt;}
.y8a{bottom:725.211467pt;}
.y1e5{bottom:725.315200pt;}
.y163{bottom:733.032933pt;}
.y1bf{bottom:733.033200pt;}
.y13{bottom:738.318400pt;}
.y36{bottom:740.199600pt;}
.yee{bottom:740.646800pt;}
.y62{bottom:740.732800pt;}
.y89{bottom:740.852800pt;}
.y1e4{bottom:741.151200pt;}
.y162{bottom:748.674267pt;}
.y1be{bottom:748.674533pt;}
.y35{bottom:756.064400pt;}
.yed{bottom:756.288133pt;}
.y61{bottom:756.414133pt;}
.y88{bottom:756.494000pt;}
.y1e3{bottom:756.987200pt;}
.y12{bottom:761.298000pt;}
.y60{bottom:772.095467pt;}
.y87{bottom:772.135467pt;}
.y1bd{bottom:772.135733pt;}
.y1e2{bottom:772.823200pt;}
.y11{bottom:783.964667pt;}
.y34{bottom:787.569067pt;}
.y5f{bottom:787.776800pt;}
.y1bc{bottom:787.777067pt;}
.y1e1{bottom:788.659200pt;}
.y2{bottom:818.104133pt;}
.y33{bottom:828.336400pt;}
.y18d{bottom:828.336667pt;}
.y1bb{bottom:828.336800pt;}
.y5{bottom:834.691333pt;}
.y4{bottom:840.424667pt;}
.y32{bottom:843.977733pt;}
.y18c{bottom:843.978000pt;}
.y3{bottom:847.352933pt;}
.y7{bottom:851.458400pt;}
.y6{bottom:863.458400pt;}
.h5{height:17.424000pt;}
.h1c{height:23.713703pt;}
.h1f{height:23.888648pt;}
.h25{height:24.214039pt;}
.h22{height:24.221695pt;}
.h2b{height:24.636664pt;}
.h28{height:24.824625pt;}
.h17{height:25.459809pt;}
.h1d{height:26.360914pt;}
.h20{height:26.555487pt;}
.h26{height:26.917333pt;}
.h23{height:26.925793pt;}
.h2c{height:27.387233pt;}
.h29{height:27.596035pt;}
.h2e{height:28.410430pt;}
.h3{height:31.402667pt;}
.h2f{height:31.582107pt;}
.h6{height:34.122667pt;}
.h7{height:36.560000pt;}
.hd{height:37.812500pt;}
.hc{height:38.270833pt;}
.h14{height:39.306094pt;}
.h10{height:40.662760pt;}
.h30{height:40.734375pt;}
.h18{height:40.920000pt;}
.h15{height:40.950938pt;}
.h13{height:42.211260pt;}
.hb{height:43.054688pt;}
.h11{height:45.446615pt;}
.h12{height:46.200000pt;}
.ha{height:47.265625pt;}
.h2{height:47.838542pt;}
.h1a{height:51.419994pt;}
.he{height:51.992188pt;}
.hf{height:52.622396pt;}
.h8{height:55.546875pt;}
.h9{height:57.406250pt;}
.h16{height:70.073747pt;}
.h19{height:70.629818pt;}
.h4{height:93.200000pt;}
.h1e{height:187.749333pt;}
.h1b{height:188.222667pt;}
.h24{height:192.201333pt;}
.h21{height:192.246667pt;}
.h2a{height:195.534667pt;}
.h27{height:197.025333pt;}
.h2d{height:254.518667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w3{width:62.040000pt;}
.w2{width:204.600000pt;}
.w4{width:211.653333pt;}
.w5{width:443.337333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1e{left:2.350933pt;}
.x32{left:7.649312pt;}
.x41{left:9.165600pt;}
.x1f{left:10.477200pt;}
.x2a{left:13.240933pt;}
.x3f{left:15.454667pt;}
.x2f{left:17.202000pt;}
.x3d{left:18.765333pt;}
.x33{left:19.905067pt;}
.x3b{left:22.308400pt;}
.x3e{left:24.210933pt;}
.x20{left:25.162267pt;}
.x38{left:27.368800pt;}
.x37{left:29.902533pt;}
.x21{left:34.196000pt;}
.x2c{left:38.774667pt;}
.x30{left:45.378800pt;}
.x2b{left:46.364667pt;}
.x34{left:47.974133pt;}
.x3c{left:49.786267pt;}
.x3a{left:51.234400pt;}
.x36{left:52.343067pt;}
.x22{left:86.954667pt;}
.x23{left:95.988400pt;}
.xa{left:98.267733pt;}
.x1{left:100.868000pt;}
.x10{left:110.609733pt;}
.x11{left:115.012000pt;}
.x1c{left:117.267467pt;}
.xb{left:120.944933pt;}
.x4{left:123.545200pt;}
.xd{left:126.777200pt;}
.x46{left:130.393733pt;}
.x45{left:132.994000pt;}
.x44{left:137.952800pt;}
.x24{left:140.373467pt;}
.x7{left:153.184267pt;}
.x5{left:154.340267pt;}
.x25{left:155.470933pt;}
.x6{left:159.340267pt;}
.x26{left:167.350933pt;}
.x12{left:169.510667pt;}
.x42{left:180.789333pt;}
.x2e{left:183.272667pt;}
.x13{left:185.558800pt;}
.x27{left:188.842133pt;}
.x28{left:197.876000pt;}
.x31{left:209.368800pt;}
.x1d{left:217.637333pt;}
.x14{left:228.117867pt;}
.xf{left:254.813067pt;}
.x15{left:257.369867pt;}
.x8{left:261.349600pt;}
.xe{left:275.354533pt;}
.x29{left:288.917333pt;}
.x16{left:312.822667pt;}
.x39{left:329.408000pt;}
.x35{left:332.009333pt;}
.x17{left:334.850133pt;}
.x9{left:337.972667pt;}
.x2d{left:350.957067pt;}
.x43{left:363.028400pt;}
.x18{left:383.075467pt;}
.x2{left:392.040667pt;}
.x19{left:422.410133pt;}
.x40{left:425.793467pt;}
.x3{left:463.360800pt;}
.x1a{left:506.821333pt;}
.x1b{left:508.708400pt;}
.xc{left:539.406133pt;}
}




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