
    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_c65ac53210581790ad361b52.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.035645;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_d43a09ae2bc5025372adae14.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035645;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_b0c90a3e3ae066ed4ad2780b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.035645;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_a8fb1f715d0d526f186fa9ec.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.026855;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_82f998faa8ce1a6ffc739faf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.701172;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_c813dbaefa7fd3c29ec57758.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_cf70a322a30a8638d55362c0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.963867;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_f5b5b655d19feea5b1689cc9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698242;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_9224756e392ad3ff4af45562.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854004;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_d4a642429aeba3b82b184d1b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684082;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_df9df9c3baab722e3b729d60.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.026855;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_17ee16ed428075bc27f134b6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035645;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_6e5893804c56273d05ae8147.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_670e15a9a59a6a2028c5cb78.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.026855;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_8225b2f90ec3aa185b2375a2.woff2')format("woff");}.fff{font-family:fff;line-height:0.698242;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_033569ccc82495b4768dc9e0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.723145;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_31a4d3fd89095323afcc0b8c.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.035645;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_bcdf73ac6899a6c0abebd5b2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.959961;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_2842782ca6f1f7356509147a.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.746094;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_0f5d2d77383059057e5ab21f.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.035645;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_a52bc2e2e1c99039c6782ee9.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.723145;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_aca3b68a207a3e01ad7b83ed.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.734375;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_3df0ecafdcf6da19da154989.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.698242;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_40f4e7a619ee3a32b9b9e968.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.035645;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_528cc5e6c9d08bba800899a5.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.721191;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_d5582bfd1dbb0c1f5e3c8aee.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.689453;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_1b290f0c06fdf11916612545.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_53c5ac0c3f2c6219fb82c999.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_b5050913db94813686080401.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.746094;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_23679651610dc0c644a9365b.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.698242;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_fcae7bc06cd410c1f9c5b3fd.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.698242;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_0d51182e33e16296171f28bc.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_deca63b99d85e416573fa437.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_2e84a088921fa8b48cf2a382.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.689453;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_30b5cc786eed4b0631e47996.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.674316;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_1462c5a4b08161d6e228f159.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_c6f514d158a4364e8780c548.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_73912650a32501410689c051.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.767090;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_68584a39fd765ab2a47679ce.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.701172;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_9a4e62076db070611f89e097.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.698242;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_8a4e77105462448f11a8e4b2.woff2')format("woff");}.ff29{font-family:ff29;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;}
.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);}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls61{letter-spacing:-6.854400px;}
.ls62{letter-spacing:-5.025600px;}
.ls63{letter-spacing:-1.850400px;}
.ls64{letter-spacing:-1.152000px;}
.ls3e{letter-spacing:-0.547200px;}
.ls3f{letter-spacing:-0.495360px;}
.ls1d{letter-spacing:-0.477792px;}
.ls59{letter-spacing:-0.471744px;}
.ls57{letter-spacing:-0.435456px;}
.ls18{letter-spacing:-0.399168px;}
.ls45{letter-spacing:-0.393120px;}
.ls20{letter-spacing:-0.387072px;}
.ls33{letter-spacing:-0.380160px;}
.ls54{letter-spacing:-0.368928px;}
.ls44{letter-spacing:-0.350784px;}
.ls41{letter-spacing:-0.344736px;}
.ls2c{letter-spacing:-0.326592px;}
.ls47{letter-spacing:-0.320544px;}
.ls11{letter-spacing:-0.302400px;}
.ls16{letter-spacing:-0.290304px;}
.ls48{letter-spacing:-0.284256px;}
.ls19{letter-spacing:-0.278208px;}
.ls55{letter-spacing:-0.272160px;}
.ls37{letter-spacing:-0.260064px;}
.ls1a{letter-spacing:-0.247968px;}
.ls3a{letter-spacing:-0.241920px;}
.ls39{letter-spacing:-0.235872px;}
.ls50{letter-spacing:-0.231840px;}
.ls13{letter-spacing:-0.217728px;}
.ls5f{letter-spacing:-0.213120px;}
.ls1c{letter-spacing:-0.205632px;}
.ls27{letter-spacing:-0.192096px;}
.ls24{letter-spacing:-0.185472px;}
.ls5e{letter-spacing:-0.178848px;}
.ls21{letter-spacing:-0.175392px;}
.ls53{letter-spacing:-0.172224px;}
.ls14{letter-spacing:-0.169344px;}
.ls2a{letter-spacing:-0.165600px;}
.lse{letter-spacing:-0.158976px;}
.ls12{letter-spacing:-0.157248px;}
.ls1e{letter-spacing:-0.151200px;}
.ls25{letter-spacing:-0.145728px;}
.ls17{letter-spacing:-0.139104px;}
.ls1b{letter-spacing:-0.133056px;}
.lsa{letter-spacing:-0.132480px;}
.lsb{letter-spacing:-0.125856px;}
.ls1f{letter-spacing:-0.120960px;}
.ls23{letter-spacing:-0.119232px;}
.lsc{letter-spacing:-0.112608px;}
.ls4c{letter-spacing:-0.105984px;}
.ls2b{letter-spacing:-0.099360px;}
.lsf{letter-spacing:-0.092736px;}
.ls26{letter-spacing:-0.086112px;}
.ls29{letter-spacing:-0.079488px;}
.ls51{letter-spacing:-0.072864px;}
.ls28{letter-spacing:-0.066240px;}
.ls10{letter-spacing:-0.059616px;}
.ls4{letter-spacing:-0.021600px;}
.ls8{letter-spacing:-0.014400px;}
.ls5{letter-spacing:-0.010800px;}
.ls7{letter-spacing:-0.007200px;}
.ls3{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.001296px;}
.ls2f{letter-spacing:0.001440px;}
.ls56{letter-spacing:0.002880px;}
.ls34{letter-spacing:0.004752px;}
.ls38{letter-spacing:0.005760px;}
.ls5b{letter-spacing:0.006768px;}
.ls2{letter-spacing:0.007200px;}
.ls5c{letter-spacing:0.008208px;}
.ls31{letter-spacing:0.008640px;}
.ls2d{letter-spacing:0.010080px;}
.ls2e{letter-spacing:0.010512px;}
.ls4e{letter-spacing:0.012960px;}
.ls60{letter-spacing:0.013248px;}
.ls30{letter-spacing:0.013392px;}
.ls1{letter-spacing:0.014400px;}
.ls5d{letter-spacing:0.014688px;}
.ls4d{letter-spacing:0.014976px;}
.ls52{letter-spacing:0.015840px;}
.ls0{letter-spacing:0.021600px;}
.lsd{letter-spacing:0.040320px;}
.ls65{letter-spacing:0.057600px;}
.ls36{letter-spacing:0.141120px;}
.ls42{letter-spacing:0.175680px;}
.ls15{letter-spacing:0.207360px;}
.ls43{letter-spacing:0.378720px;}
.ls46{letter-spacing:0.389664px;}
.ls6{letter-spacing:0.459360px;}
.ls58{letter-spacing:0.719280px;}
.ls4a{letter-spacing:0.722304px;}
.ls32{letter-spacing:0.930672px;}
.ls40{letter-spacing:1.196640px;}
.ls22{letter-spacing:1.396800px;}
.ls4f{letter-spacing:54.866880px;}
.ls3d{letter-spacing:115.546464px;}
.ls49{letter-spacing:123.562080px;}
.ls3c{letter-spacing:136.359072px;}
.ls4b{letter-spacing:144.374688px;}
.ls3b{letter-spacing:157.171536px;}
.ls9{letter-spacing:846.000000px;}
.ls5a{letter-spacing:847.440000px;}
.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;}
}
.ws0{word-spacing:-26.978400px;}
.ws2{word-spacing:-18.720000px;}
.ws42{word-spacing:-18.021600px;}
.ws5{word-spacing:-18.014400px;}
.ws8{word-spacing:-18.007200px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.992800px;}
.ws3{word-spacing:-17.985600px;}
.ws41{word-spacing:-16.848000px;}
.ws1b{word-spacing:-16.560000px;}
.ws1c{word-spacing:-16.493760px;}
.ws1d{word-spacing:-16.480512px;}
.ws20{word-spacing:-16.473888px;}
.ws3c{word-spacing:-16.467264px;}
.ws1f{word-spacing:-16.460640px;}
.wsc{word-spacing:-16.447392px;}
.ws17{word-spacing:-16.440768px;}
.ws34{word-spacing:-16.427520px;}
.ws19{word-spacing:-16.420896px;}
.ws1a{word-spacing:-16.414272px;}
.ws23{word-spacing:-16.367904px;}
.wsd{word-spacing:-15.120000px;}
.ws16{word-spacing:-14.999040px;}
.ws21{word-spacing:-14.986944px;}
.wsf{word-spacing:-14.980896px;}
.ws15{word-spacing:-14.968800px;}
.ws11{word-spacing:-14.950656px;}
.ws37{word-spacing:-14.944608px;}
.ws27{word-spacing:-14.914368px;}
.ws13{word-spacing:-14.902272px;}
.ws2f{word-spacing:-14.884128px;}
.ws28{word-spacing:-14.878080px;}
.ws12{word-spacing:-14.872032px;}
.ws26{word-spacing:-14.859936px;}
.ws10{word-spacing:-14.841792px;}
.ws31{word-spacing:-14.835744px;}
.ws2d{word-spacing:-14.829696px;}
.ws2c{word-spacing:-14.769216px;}
.ws3d{word-spacing:-14.751072px;}
.ws2e{word-spacing:-14.732928px;}
.ws3e{word-spacing:-14.720832px;}
.ws25{word-spacing:-14.400000px;}
.ws40{word-spacing:-14.186880px;}
.ws24{word-spacing:-14.019840px;}
.ws2b{word-spacing:-13.904640px;}
.ws2a{word-spacing:-13.852800px;}
.ws32{word-spacing:-0.769824px;}
.ws3f{word-spacing:-0.758160px;}
.ws30{word-spacing:-0.437184px;}
.ws9{word-spacing:-0.086400px;}
.ws33{word-spacing:-0.079200px;}
.ws4{word-spacing:-0.072000px;}
.ws29{word-spacing:-0.066240px;}
.wse{word-spacing:-0.060480px;}
.wsa{word-spacing:-0.057600px;}
.wsb{word-spacing:-0.006624px;}
.ws7{word-spacing:0.000000px;}
.ws3a{word-spacing:0.006624px;}
.ws3b{word-spacing:0.013248px;}
.ws35{word-spacing:0.019872px;}
.ws36{word-spacing:0.039744px;}
.ws1e{word-spacing:0.052992px;}
.ws22{word-spacing:0.072576px;}
.ws38{word-spacing:0.114912px;}
.ws18{word-spacing:0.119232px;}
.ws39{word-spacing:0.326592px;}
.ws14{word-spacing:0.417312px;}
._12{margin-left:-19.063152px;}
._a{margin-left:-14.860800px;}
._f{margin-left:-13.651200px;}
._11{margin-left:-11.582352px;}
._d{margin-left:-10.094400px;}
._6{margin-left:-8.150400px;}
._8{margin-left:-6.594768px;}
._7{margin-left:-5.025600px;}
._9{margin-left:-3.935952px;}
._5{margin-left:-2.433600px;}
._0{margin-left:-1.169280px;}
._2{width:1.099728px;}
._e{width:2.474784px;}
._10{width:3.712896px;}
._c{width:5.400000px;}
._b{width:6.827040px;}
._4{width:19.827360px;}
._3{width:436.611456px;}
._1{width:454.611456px;}
.fc2{color:rgb(68,114,196);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs5{font-size:47.520000px;}
.fs8{font-size:57.600000px;}
.fs6{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.fs1{font-size:108.000000px;}
.fs3{font-size:246.240000px;}
.y0{bottom:0.000000px;}
.y22{bottom:11.280000px;}
.ybf{bottom:28.020000px;}
.y1bf{bottom:28.260000px;}
.y1b7{bottom:28.320000px;}
.yc5{bottom:28.380000px;}
.yd7{bottom:28.560000px;}
.yb4{bottom:28.620000px;}
.y1b5{bottom:28.920000px;}
.ybb{bottom:29.040000px;}
.yc9{bottom:29.100000px;}
.y1c1{bottom:29.160000px;}
.y2a{bottom:29.220000px;}
.y30{bottom:29.340000px;}
.y36{bottom:29.460000px;}
.yb7{bottom:29.640000px;}
.y32{bottom:29.880000px;}
.y38{bottom:30.000000px;}
.y2c{bottom:30.120000px;}
.y3a{bottom:30.180000px;}
.y34{bottom:30.420000px;}
.y2e{bottom:30.660000px;}
.yc4{bottom:58.260000px;}
.yd6{bottom:58.440000px;}
.y1c7{bottom:58.500000px;}
.y1b2{bottom:58.680000px;}
.yba{bottom:58.920000px;}
.ybe{bottom:58.980000px;}
.y1{bottom:59.040000px;}
.yb6{bottom:59.520000px;}
.ycc{bottom:60.540000px;}
.ycd{bottom:61.620000px;}
.y28{bottom:84.960000px;}
.yd5{bottom:88.320000px;}
.yc3{bottom:89.580000px;}
.ybd{bottom:89.940000px;}
.ycb{bottom:91.500000px;}
.y4b{bottom:112.680000px;}
.y176{bottom:117.000000px;}
.yd4{bottom:117.840000px;}
.y20{bottom:119.160000px;}
.yd9{bottom:120.360000px;}
.yc2{bottom:120.540000px;}
.yc8{bottom:120.900000px;}
.ye7{bottom:122.040000px;}
.y170{bottom:124.200000px;}
.y1ee{bottom:124.920000px;}
.y1e7{bottom:131.040000px;}
.y4a{bottom:134.280000px;}
.y6c{bottom:135.360000px;}
.y139{bottom:135.720000px;}
.y1db{bottom:136.800000px;}
.y197{bottom:138.960000px;}
.y1b0{bottom:139.680000px;}
.yfe{bottom:142.560000px;}
.y175{bottom:146.880000px;}
.y1f6{bottom:148.680000px;}
.y1f{bottom:149.040000px;}
.yd3{bottom:149.160000px;}
.ye6{bottom:149.400000px;}
.yd8{bottom:150.240000px;}
.yc1{bottom:150.420000px;}
.yc7{bottom:150.780000px;}
.y16f{bottom:151.560000px;}
.y1a9{bottom:153.000000px;}
.y99{bottom:154.800000px;}
.ycf{bottom:155.880000px;}
.y6b{bottom:156.960000px;}
.y212{bottom:159.480000px;}
.yb2{bottom:160.200000px;}
.y1e6{bottom:160.920000px;}
.y86{bottom:165.240000px;}
.y138{bottom:165.600000px;}
.y196{bottom:166.320000px;}
.y1da{bottom:166.680000px;}
.y1a0{bottom:167.040000px;}
.y155{bottom:169.920000px;}
.yfd{bottom:172.440000px;}
.y1dc{bottom:172.800000px;}
.y1f5{bottom:174.600000px;}
.y157{bottom:176.040000px;}
.ye5{bottom:176.760000px;}
.ye3{bottom:177.840000px;}
.y1e{bottom:178.920000px;}
.y6a{bottom:179.640000px;}
.yd2{bottom:180.120000px;}
.y1a8{bottom:180.360000px;}
.y18f{bottom:181.080000px;}
.y49{bottom:181.800000px;}
.y1d7{bottom:184.680000px;}
.y211{bottom:185.400000px;}
.y1e5{bottom:190.800000px;}
.y16e{bottom:191.880000px;}
.y195{bottom:193.680000px;}
.y174{bottom:194.040000px;}
.y220{bottom:194.760000px;}
.y85{bottom:195.120000px;}
.y137{bottom:195.480000px;}
.y165{bottom:196.560000px;}
.y19f{bottom:196.920000px;}
.ye2{bottom:199.440000px;}
.y1f4{bottom:200.880000px;}
.y69{bottom:202.320000px;}
.y98{bottom:202.680000px;}
.yce{bottom:203.400000px;}
.ye4{bottom:204.120000px;}
.y79{bottom:204.480000px;}
.y1d9{bottom:205.200000px;}
.y1a5{bottom:206.640000px;}
.y1a7{bottom:207.720000px;}
.y192{bottom:208.440000px;}
.y1d{bottom:208.800000px;}
.yd1{bottom:210.000000px;}
.y18e{bottom:210.960000px;}
.y210{bottom:211.320000px;}
.y1d6{bottom:212.040000px;}
.y1ae{bottom:214.560000px;}
.y154{bottom:217.800000px;}
.y1e4{bottom:220.680000px;}
.ye1{bottom:221.040000px;}
.y173{bottom:221.400000px;}
.y84{bottom:225.000000px;}
.y164{bottom:226.440000px;}
.y19e{bottom:226.800000px;}
.y12d{bottom:231.480000px;}
.yfc{bottom:232.200000px;}
.y97{bottom:232.560000px;}
.y194{bottom:233.640000px;}
.y191{bottom:235.800000px;}
.y1c{bottom:238.680000px;}
.y1d5{bottom:239.400000px;}
.y18d{bottom:240.840000px;}
.y122{bottom:242.640000px;}
.y136{bottom:243.360000px;}
.y1ad{bottom:244.440000px;}
.y1af{bottom:246.600000px;}
.y1a6{bottom:248.040000px;}
.y172{bottom:248.760000px;}
.y68{bottom:249.480000px;}
.y1e3{bottom:250.560000px;}
.y20f{bottom:252.360000px;}
.y1a4{bottom:254.520000px;}
.y83{bottom:254.880000px;}
.y78{bottom:255.960000px;}
.y163{bottom:256.320000px;}
.y19d{bottom:256.680000px;}
.y12c{bottom:261.360000px;}
.yfb{bottom:262.080000px;}
.y96{bottom:262.440000px;}
.y121{bottom:264.240000px;}
.y153{bottom:265.680000px;}
.y1f3{bottom:267.840000px;}
.ye0{bottom:268.200000px;}
.y1b{bottom:268.560000px;}
.y18c{bottom:270.720000px;}
.y1d8{bottom:272.520000px;}
.y1ac{bottom:274.320000px;}
.y190{bottom:275.760000px;}
.y1d4{bottom:279.720000px;}
.y1e2{bottom:280.440000px;}
.y77{bottom:283.320000px;}
.y82{bottom:284.760000px;}
.y120{bottom:285.840000px;}
.yca{bottom:286.500000px;}
.y48{bottom:286.560000px;}
.y171{bottom:288.720000px;}
.y12b{bottom:291.240000px;}
.yfa{bottom:291.600000px;}
.y95{bottom:292.320000px;}
.y20e{bottom:293.400000px;}
.y1f2{bottom:293.760000px;}
.y1a{bottom:298.440000px;}
.y18b{bottom:300.600000px;}
.y1a3{bottom:301.680000px;}
.y162{bottom:304.200000px;}
.y11f{bottom:307.440000px;}
.y10e{bottom:309.960000px;}
.y67{bottom:310.320000px;}
.y76{bottom:310.680000px;}
.y152{bottom:313.560000px;}
.y47{bottom:316.440000px;}
.y20d{bottom:319.320000px;}
.y12a{bottom:321.120000px;}
.yf9{bottom:321.480000px;}
.y94{bottom:322.200000px;}
.y140{bottom:327.960000px;}
.y19{bottom:328.320000px;}
.y11e{bottom:329.040000px;}
.y18a{bottom:330.480000px;}
.y81{bottom:331.920000px;}
.y161{bottom:334.080000px;}
.y19c{bottom:334.440000px;}
.y75{bottom:338.040000px;}
.y21f{bottom:339.480000px;}
.y10d{bottom:339.840000px;}
.y66{bottom:340.200000px;}
.y151{bottom:343.440000px;}
.yb1{bottom:344.160000px;}
.y20c{bottom:345.240000px;}
.y16d{bottom:345.960000px;}
.y46{bottom:346.320000px;}
.y11d{bottom:351.000000px;}
.y93{bottom:352.080000px;}
.y1a2{bottom:356.400000px;}
.y13f{bottom:357.840000px;}
.y18{bottom:358.200000px;}
.y80{bottom:359.280000px;}
.y1f1{bottom:360.720000px;}
.y189{bottom:361.440000px;}
.y180{bottom:363.600000px;}
.y160{bottom:363.960000px;}
.y74{bottom:365.400000px;}
.y129{bottom:369.000000px;}
.yf8{bottom:369.360000px;}
.y65{bottom:370.080000px;}
.y11c{bottom:372.600000px;}
.y150{bottom:373.320000px;}
.y45{bottom:376.200000px;}
.y135{bottom:380.880000px;}
.y19b{bottom:381.600000px;}
.y92{bottom:381.960000px;}
.y1c5{bottom:383.040000px;}
.y20b{bottom:386.280000px;}
.y7f{bottom:386.640000px;}
.y10c{bottom:387.720000px;}
.y17{bottom:388.080000px;}
.y188{bottom:391.320000px;}
.yb0{bottom:392.040000px;}
.y73{bottom:392.760000px;}
.y17f{bottom:393.480000px;}
.y15f{bottom:393.840000px;}
.y11b{bottom:394.200000px;}
.y1a1{bottom:396.720000px;}
.yc6{bottom:397.500000px;}
.y128{bottom:398.880000px;}
.y64{bottom:399.960000px;}
.y1f0{bottom:401.400000px;}
.y14f{bottom:403.200000px;}
.y44{bottom:405.720000px;}
.y19a{bottom:408.960000px;}
.y134{bottom:410.760000px;}
.y1ed{bottom:411.480000px;}
.y91{bottom:411.840000px;}
.y20a{bottom:412.200000px;}
.y7e{bottom:414.000000px;}
.y11a{bottom:415.800000px;}
.yf7{bottom:417.240000px;}
.y10b{bottom:417.600000px;}
.y16{bottom:417.960000px;}
.y72{bottom:420.120000px;}
.y187{bottom:421.200000px;}
.yaf{bottom:421.920000px;}
.y17e{bottom:423.360000px;}
.y15e{bottom:423.720000px;}
.y1ef{bottom:427.680000px;}
.y1c4{bottom:428.400000px;}
.y127{bottom:428.760000px;}
.y63{bottom:429.840000px;}
.y14e{bottom:433.080000px;}
.y43{bottom:435.600000px;}
.y199{bottom:436.320000px;}
.y119{bottom:437.400000px;}
.y209{bottom:438.120000px;}
.y133{bottom:440.280000px;}
.y7d{bottom:441.360000px;}
.y90{bottom:441.720000px;}
.yf6{bottom:447.120000px;}
.y71{bottom:447.480000px;}
.y15{bottom:447.840000px;}
.y186{bottom:451.080000px;}
.yae{bottom:451.800000px;}
.y17d{bottom:453.240000px;}
.y16c{bottom:453.600000px;}
.y1c3{bottom:455.760000px;}
.y126{bottom:458.280000px;}
.y62{bottom:459.720000px;}
.y42{bottom:465.480000px;}
.y7c{bottom:468.720000px;}
.y1ec{bottom:471.240000px;}
.y8f{bottom:471.600000px;}
.y1c2{bottom:474.000000px;}
.y70{bottom:474.840000px;}
.y198{bottom:475.200000px;}
.yf5{bottom:477.000000px;}
.y208{bottom:479.160000px;}
.y14d{bottom:480.960000px;}
.yad{bottom:481.680000px;}
.y17c{bottom:483.120000px;}
.y16b{bottom:483.480000px;}
.y21e{bottom:484.200000px;}
.y118{bottom:484.920000px;}
.y125{bottom:488.160000px;}
.y61{bottom:489.600000px;}
.y1d3{bottom:495.000000px;}
.y10a{bottom:495.360000px;}
.y14{bottom:495.720000px;}
.y7b{bottom:496.080000px;}
.y41{bottom:496.800000px;}
.y1eb{bottom:501.120000px;}
.y15d{bottom:501.480000px;}
.y6f{bottom:502.200000px;}
.y207{bottom:505.080000px;}
.y145{bottom:508.680000px;}
.y21d{bottom:510.120000px;}
.y27{bottom:510.840000px;}
.yac{bottom:511.560000px;}
.y17b{bottom:513.000000px;}
.y13e{bottom:513.360000px;}
.y124{bottom:518.040000px;}
.y60{bottom:519.480000px;}
.y1c0{bottom:522.000000px;}
.y1d2{bottom:522.360000px;}
.yf4{bottom:524.880000px;}
.y109{bottom:525.240000px;}
.y13{bottom:525.600000px;}
.y40{bottom:527.760000px;}
.y185{bottom:528.840000px;}
.y6e{bottom:529.560000px;}
.y1ea{bottom:531.000000px;}
.y15c{bottom:531.360000px;}
.y144{bottom:536.040000px;}
.y7a{bottom:536.400000px;}
.y1d1{bottom:540.000000px;}
.y14c{bottom:540.720000px;}
.yab{bottom:541.440000px;}
.y17a{bottom:542.880000px;}
.y13d{bottom:543.240000px;}
.y206{bottom:546.120000px;}
.y123{bottom:547.920000px;}
.y5f{bottom:549.360000px;}
.y108{bottom:555.120000px;}
.y12{bottom:555.480000px;}
.y3f{bottom:558.720000px;}
.y26{bottom:559.080000px;}
.y1e9{bottom:560.880000px;}
.y15b{bottom:561.240000px;}
.y21c{bottom:562.320000px;}
.y143{bottom:563.400000px;}
.y1e1{bottom:567.360000px;}
.yc0{bottom:568.500000px;}
.y6d{bottom:569.880000px;}
.y14b{bottom:570.600000px;}
.yaa{bottom:571.320000px;}
.y1be{bottom:571.500000px;}
.y205{bottom:572.040000px;}
.y179{bottom:572.760000px;}
.y16a{bottom:573.120000px;}
.y184{bottom:576.000000px;}
.y132{bottom:577.800000px;}
.y5e{bottom:579.240000px;}
.yf3{bottom:585.000000px;}
.y11{bottom:585.360000px;}
.y3e{bottom:588.600000px;}
.y1d0{bottom:589.500000px;}
.y156{bottom:590.040000px;}
.y142{bottom:590.760000px;}
.y13c{bottom:591.120000px;}
.y1e0{bottom:597.240000px;}
.y204{bottom:597.960000px;}
.y14a{bottom:600.480000px;}
.ya9{bottom:601.200000px;}
.y169{bottom:603.000000px;}
.y183{bottom:603.360000px;}
.y25{bottom:606.240000px;}
.y131{bottom:607.680000px;}
.y1e8{bottom:608.760000px;}
.y5d{bottom:609.120000px;}
.yf2{bottom:614.880000px;}
.y10{bottom:615.240000px;}
.y141{bottom:618.120000px;}
.y3d{bottom:618.480000px;}
.y1bd{bottom:619.500000px;}
.y178{bottom:620.640000px;}
.y13b{bottom:621.000000px;}
.y1df{bottom:627.120000px;}
.y21b{bottom:629.280000px;}
.y149{bottom:630.360000px;}
.y182{bottom:630.720000px;}
.ya8{bottom:631.080000px;}
.y168{bottom:632.880000px;}
.y1cf{bottom:637.500000px;}
.y130{bottom:637.560000px;}
.y5c{bottom:639.000000px;}
.yf1{bottom:644.400000px;}
.yf{bottom:645.120000px;}
.y24{bottom:646.200000px;}
.y3c{bottom:648.360000px;}
.y1ab{bottom:650.880000px;}
.y21a{bottom:655.200000px;}
.y1de{bottom:657.000000px;}
.y148{bottom:660.240000px;}
.y107{bottom:662.400000px;}
.y203{bottom:664.920000px;}
.y12f{bottom:667.440000px;}
.y177{bottom:668.520000px;}
.y5b{bottom:668.880000px;}
.y1bc{bottom:669.000000px;}
.y181{bottom:671.040000px;}
.yf0{bottom:674.280000px;}
.ye{bottom:675.000000px;}
.ya7{bottom:678.960000px;}
.y1aa{bottom:680.400000px;}
.y1dd{bottom:686.880000px;}
.y1ce{bottom:687.000000px;}
.y167{bottom:692.280000px;}
.y3b{bottom:695.520000px;}
.y219{bottom:696.240000px;}
.y12e{bottom:697.320000px;}
.y5a{bottom:698.400000px;}
.yef{bottom:704.160000px;}
.yd{bottom:704.520000px;}
.y202{bottom:705.960000px;}
.y147{bottom:707.400000px;}
.ya6{bottom:708.840000px;}
.y106{bottom:710.280000px;}
.y39{bottom:712.500000px;}
.y15a{bottom:716.400000px;}
.y1bb{bottom:717.000000px;}
.y166{bottom:722.160000px;}
.y59{bottom:728.280000px;}
.y201{bottom:731.880000px;}
.yee{bottom:734.040000px;}
.y1cd{bottom:735.000000px;}
.yc{bottom:735.840000px;}
.ya5{bottom:738.720000px;}
.ydf{bottom:739.080000px;}
.ybc{bottom:739.500000px;}
.y105{bottom:740.160000px;}
.y159{bottom:746.280000px;}
.y146{bottom:747.720000px;}
.y117{bottom:752.040000px;}
.y58{bottom:758.160000px;}
.y37{bottom:762.000000px;}
.y218{bottom:763.200000px;}
.yed{bottom:763.920000px;}
.yb{bottom:765.720000px;}
.y1ba{bottom:766.500000px;}
.ya4{bottom:768.600000px;}
.yde{bottom:768.960000px;}
.y104{bottom:770.040000px;}
.y200{bottom:772.920000px;}
.y158{bottom:776.160000px;}
.y116{bottom:781.920000px;}
.y1cc{bottom:784.500000px;}
.y57{bottom:788.040000px;}
.y217{bottom:789.120000px;}
.yec{bottom:793.800000px;}
.ya{bottom:795.600000px;}
.ydd{bottom:798.840000px;}
.ya3{bottom:799.560000px;}
.y103{bottom:799.920000px;}
.y13a{bottom:806.040000px;}
.y35{bottom:811.500000px;}
.y115{bottom:811.800000px;}
.y1b9{bottom:814.500000px;}
.y1ff{bottom:815.040000px;}
.y8e{bottom:817.920000px;}
.y1b1{bottom:819.360000px;}
.yeb{bottom:823.680000px;}
.y9{bottom:826.560000px;}
.ydc{bottom:828.720000px;}
.y102{bottom:829.800000px;}
.y216{bottom:830.160000px;}
.ya2{bottom:830.520000px;}
.y1cb{bottom:832.500000px;}
.y56{bottom:835.920000px;}
.y1fe{bottom:840.960000px;}
.y114{bottom:841.680000px;}
.y8d{bottom:847.800000px;}
.yb9{bottom:849.000000px;}
.yea{bottom:853.560000px;}
.y215{bottom:856.080000px;}
.y8{bottom:856.440000px;}
.ydb{bottom:858.240000px;}
.y33{bottom:859.500000px;}
.y101{bottom:859.680000px;}
.ya1{bottom:861.480000px;}
.y1b8{bottom:862.500000px;}
.y55{bottom:865.800000px;}
.y113{bottom:871.560000px;}
.y8c{bottom:877.680000px;}
.y1ca{bottom:880.500000px;}
.y1fd{bottom:882.000000px;}
.y7{bottom:887.400000px;}
.y100{bottom:889.560000px;}
.ya0{bottom:891.360000px;}
.y54{bottom:895.680000px;}
.y214{bottom:897.120000px;}
.ye9{bottom:901.440000px;}
.yda{bottom:905.760000px;}
.y21{bottom:906.000000px;}
.y8b{bottom:907.560000px;}
.y1fc{bottom:907.920000px;}
.y31{bottom:909.000000px;}
.y1b6{bottom:912.000000px;}
.y6{bottom:917.280000px;}
.yff{bottom:919.440000px;}
.y9f{bottom:922.680000px;}
.y213{bottom:923.040000px;}
.yd0{bottom:924.000000px;}
.y53{bottom:925.560000px;}
.yb8{bottom:928.500000px;}
.y1c9{bottom:930.000000px;}
.y112{bottom:931.320000px;}
.y8a{bottom:937.440000px;}
.y5{bottom:947.160000px;}
.y1fb{bottom:948.960000px;}
.ye8{bottom:949.320000px;}
.y9e{bottom:952.560000px;}
.y52{bottom:955.440000px;}
.y2f{bottom:958.500000px;}
.y1b4{bottom:960.000000px;}
.y111{bottom:961.200000px;}
.y89{bottom:967.320000px;}
.yb5{bottom:978.000000px;}
.y9d{bottom:982.080000px;}
.y51{bottom:985.320000px;}
.y1fa{bottom:990.000000px;}
.y88{bottom:997.200000px;}
.y2d{bottom:1006.500000px;}
.y110{bottom:1009.080000px;}
.y1b3{bottom:1009.500000px;}
.y9c{bottom:1011.960000px;}
.y50{bottom:1015.200000px;}
.y1f9{bottom:1015.920000px;}
.y4{bottom:1019.160000px;}
.y87{bottom:1027.080000px;}
.y1c8{bottom:1027.500000px;}
.y9b{bottom:1041.840000px;}
.y4f{bottom:1045.080000px;}
.y2b{bottom:1056.000000px;}
.y10f{bottom:1056.960000px;}
.yb3{bottom:1057.500000px;}
.y4e{bottom:1074.960000px;}
.y1c6{bottom:1075.500000px;}
.y3{bottom:1080.000000px;}
.y1f8{bottom:1082.880000px;}
.y9a{bottom:1086.480000px;}
.y193{bottom:1086.840000px;}
.y4d{bottom:1104.840000px;}
.y29{bottom:1105.500000px;}
.y1f7{bottom:1108.800000px;}
.y2{bottom:1124.640000px;}
.y4c{bottom:1134.720000px;}
.y23{bottom:1189.440000px;}
.h18{height:26.445234px;}
.hd{height:45.832500px;}
.ha{height:49.500000px;}
.h9{height:50.197500px;}
.hb{height:51.000000px;}
.he{height:52.004531px;}
.hf{height:52.884141px;}
.h17{height:53.929688px;}
.h2{height:54.562500px;}
.h10{height:56.152266px;}
.hc{height:56.801953px;}
.h6{height:59.765625px;}
.h7{height:61.500000px;}
.h5{height:62.050781px;}
.h4{height:62.558438px;}
.h12{height:79.500000px;}
.h11{height:81.000000px;}
.h3{height:81.843750px;}
.h13{height:111.000000px;}
.h15{height:112.500000px;}
.h8{height:167.726953px;}
.h14{height:171.000000px;}
.h16{height:231.000000px;}
.h1a{height:892.500000px;}
.h19{height:892.800000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:22.500000px;}
.wd{width:82.500000px;}
.we{width:90.000000px;}
.w3{width:100.500000px;}
.w9{width:147.000000px;}
.w8{width:154.500000px;}
.w6{width:169.500000px;}
.w10{width:198.000000px;}
.w7{width:228.000000px;}
.w12{width:252.000000px;}
.w11{width:253.500000px;}
.w4{width:264.000000px;}
.wf{width:309.000000px;}
.w5{width:337.500000px;}
.wa{width:699.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.wb{width:1262.880000px;}
.wc{width:1263.000000px;}
.x0{left:0.000000px;}
.x22{left:5.895276px;}
.x9{left:7.635132px;}
.xe{left:21.402828px;}
.x7{left:42.900876px;}
.xd{left:50.740704px;}
.xb{left:53.658684px;}
.xc{left:93.569832px;}
.x1{left:106.275132px;}
.x3{left:108.000000px;}
.x17{left:109.614996px;}
.x15{left:111.854736px;}
.x1b{left:113.055156px;}
.x18{left:114.086412px;}
.x30{left:115.552368px;}
.x40{left:116.656128px;}
.x12{left:117.905256px;}
.x39{left:118.932480px;}
.x16{left:120.882204px;}
.x3a{left:122.460948px;}
.x14{left:123.943716px;}
.x51{left:125.554680px;}
.x46{left:126.952524px;}
.x2{left:128.878056px;}
.x13{left:131.065812px;}
.x3e{left:132.487416px;}
.x1d{left:135.396252px;}
.x49{left:137.265012px;}
.x55{left:145.192752px;}
.x1c{left:146.840688px;}
.x34{left:158.300892px;}
.x35{left:162.000000px;}
.x25{left:184.368168px;}
.x28{left:189.000000px;}
.x4e{left:190.500000px;}
.x31{left:194.189220px;}
.x8{left:207.000000px;}
.x27{left:210.524400px;}
.x2a{left:216.267336px;}
.x26{left:219.928320px;}
.x6{left:224.428320px;}
.x3b{left:234.601308px;}
.x5{left:238.706172px;}
.x54{left:244.853388px;}
.x58{left:266.414436px;}
.x44{left:274.844232px;}
.x21{left:277.500000px;}
.x4f{left:279.000000px;}
.x19{left:290.994156px;}
.xf{left:292.766220px;}
.x4a{left:295.338132px;}
.x2b{left:302.725332px;}
.x1e{left:304.553484px;}
.x41{left:314.088120px;}
.x10{left:322.275132px;}
.x3d{left:324.957276px;}
.x42{left:342.072900px;}
.x36{left:351.298080px;}
.x2c{left:352.792224px;}
.x52{left:353.928204px;}
.x47{left:362.778480px;}
.x29{left:366.360480px;}
.x3c{left:377.603280px;}
.x59{left:388.485720px;}
.x2f{left:400.789440px;}
.x2e{left:403.896240px;}
.x57{left:407.108520px;}
.x1f{left:408.157920px;}
.x2d{left:413.620920px;}
.x20{left:416.446920px;}
.x43{left:421.382160px;}
.x3f{left:424.146240px;}
.x45{left:426.611520px;}
.x48{left:428.035320px;}
.x37{left:446.474880px;}
.xa{left:469.500000px;}
.x23{left:505.500000px;}
.x53{left:532.500000px;}
.x4d{left:540.678960px;}
.x50{left:586.500000px;}
.x4b{left:589.827960px;}
.x24{left:660.000000px;}
.x1a{left:670.717440px;}
.x11{left:684.217440px;}
.x38{left:726.014880px;}
.x56{left:733.214880px;}
.x33{left:768.134880px;}
.x32{left:783.434880px;}
.x4{left:785.054880px;}
.x4c{left:1025.084880px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls61{letter-spacing:-6.092800pt;}
.ls62{letter-spacing:-4.467200pt;}
.ls63{letter-spacing:-1.644800pt;}
.ls64{letter-spacing:-1.024000pt;}
.ls3e{letter-spacing:-0.486400pt;}
.ls3f{letter-spacing:-0.440320pt;}
.ls1d{letter-spacing:-0.424704pt;}
.ls59{letter-spacing:-0.419328pt;}
.ls57{letter-spacing:-0.387072pt;}
.ls18{letter-spacing:-0.354816pt;}
.ls45{letter-spacing:-0.349440pt;}
.ls20{letter-spacing:-0.344064pt;}
.ls33{letter-spacing:-0.337920pt;}
.ls54{letter-spacing:-0.327936pt;}
.ls44{letter-spacing:-0.311808pt;}
.ls41{letter-spacing:-0.306432pt;}
.ls2c{letter-spacing:-0.290304pt;}
.ls47{letter-spacing:-0.284928pt;}
.ls11{letter-spacing:-0.268800pt;}
.ls16{letter-spacing:-0.258048pt;}
.ls48{letter-spacing:-0.252672pt;}
.ls19{letter-spacing:-0.247296pt;}
.ls55{letter-spacing:-0.241920pt;}
.ls37{letter-spacing:-0.231168pt;}
.ls1a{letter-spacing:-0.220416pt;}
.ls3a{letter-spacing:-0.215040pt;}
.ls39{letter-spacing:-0.209664pt;}
.ls50{letter-spacing:-0.206080pt;}
.ls13{letter-spacing:-0.193536pt;}
.ls5f{letter-spacing:-0.189440pt;}
.ls1c{letter-spacing:-0.182784pt;}
.ls27{letter-spacing:-0.170752pt;}
.ls24{letter-spacing:-0.164864pt;}
.ls5e{letter-spacing:-0.158976pt;}
.ls21{letter-spacing:-0.155904pt;}
.ls53{letter-spacing:-0.153088pt;}
.ls14{letter-spacing:-0.150528pt;}
.ls2a{letter-spacing:-0.147200pt;}
.lse{letter-spacing:-0.141312pt;}
.ls12{letter-spacing:-0.139776pt;}
.ls1e{letter-spacing:-0.134400pt;}
.ls25{letter-spacing:-0.129536pt;}
.ls17{letter-spacing:-0.123648pt;}
.ls1b{letter-spacing:-0.118272pt;}
.lsa{letter-spacing:-0.117760pt;}
.lsb{letter-spacing:-0.111872pt;}
.ls1f{letter-spacing:-0.107520pt;}
.ls23{letter-spacing:-0.105984pt;}
.lsc{letter-spacing:-0.100096pt;}
.ls4c{letter-spacing:-0.094208pt;}
.ls2b{letter-spacing:-0.088320pt;}
.lsf{letter-spacing:-0.082432pt;}
.ls26{letter-spacing:-0.076544pt;}
.ls29{letter-spacing:-0.070656pt;}
.ls51{letter-spacing:-0.064768pt;}
.ls28{letter-spacing:-0.058880pt;}
.ls10{letter-spacing:-0.052992pt;}
.ls4{letter-spacing:-0.019200pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:-0.009600pt;}
.ls7{letter-spacing:-0.006400pt;}
.ls3{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.001152pt;}
.ls2f{letter-spacing:0.001280pt;}
.ls56{letter-spacing:0.002560pt;}
.ls34{letter-spacing:0.004224pt;}
.ls38{letter-spacing:0.005120pt;}
.ls5b{letter-spacing:0.006016pt;}
.ls2{letter-spacing:0.006400pt;}
.ls5c{letter-spacing:0.007296pt;}
.ls31{letter-spacing:0.007680pt;}
.ls2d{letter-spacing:0.008960pt;}
.ls2e{letter-spacing:0.009344pt;}
.ls4e{letter-spacing:0.011520pt;}
.ls60{letter-spacing:0.011776pt;}
.ls30{letter-spacing:0.011904pt;}
.ls1{letter-spacing:0.012800pt;}
.ls5d{letter-spacing:0.013056pt;}
.ls4d{letter-spacing:0.013312pt;}
.ls52{letter-spacing:0.014080pt;}
.ls0{letter-spacing:0.019200pt;}
.lsd{letter-spacing:0.035840pt;}
.ls65{letter-spacing:0.051200pt;}
.ls36{letter-spacing:0.125440pt;}
.ls42{letter-spacing:0.156160pt;}
.ls15{letter-spacing:0.184320pt;}
.ls43{letter-spacing:0.336640pt;}
.ls46{letter-spacing:0.346368pt;}
.ls6{letter-spacing:0.408320pt;}
.ls58{letter-spacing:0.639360pt;}
.ls4a{letter-spacing:0.642048pt;}
.ls32{letter-spacing:0.827264pt;}
.ls40{letter-spacing:1.063680pt;}
.ls22{letter-spacing:1.241600pt;}
.ls4f{letter-spacing:48.770560pt;}
.ls3d{letter-spacing:102.707968pt;}
.ls49{letter-spacing:109.832960pt;}
.ls3c{letter-spacing:121.208064pt;}
.ls4b{letter-spacing:128.333056pt;}
.ls3b{letter-spacing:139.708032pt;}
.ls9{letter-spacing:752.000000pt;}
.ls5a{letter-spacing:753.280000pt;}
.ws0{word-spacing:-23.980800pt;}
.ws2{word-spacing:-16.640000pt;}
.ws42{word-spacing:-16.019200pt;}
.ws5{word-spacing:-16.012800pt;}
.ws8{word-spacing:-16.006400pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.993600pt;}
.ws3{word-spacing:-15.987200pt;}
.ws41{word-spacing:-14.976000pt;}
.ws1b{word-spacing:-14.720000pt;}
.ws1c{word-spacing:-14.661120pt;}
.ws1d{word-spacing:-14.649344pt;}
.ws20{word-spacing:-14.643456pt;}
.ws3c{word-spacing:-14.637568pt;}
.ws1f{word-spacing:-14.631680pt;}
.wsc{word-spacing:-14.619904pt;}
.ws17{word-spacing:-14.614016pt;}
.ws34{word-spacing:-14.602240pt;}
.ws19{word-spacing:-14.596352pt;}
.ws1a{word-spacing:-14.590464pt;}
.ws23{word-spacing:-14.549248pt;}
.wsd{word-spacing:-13.440000pt;}
.ws16{word-spacing:-13.332480pt;}
.ws21{word-spacing:-13.321728pt;}
.wsf{word-spacing:-13.316352pt;}
.ws15{word-spacing:-13.305600pt;}
.ws11{word-spacing:-13.289472pt;}
.ws37{word-spacing:-13.284096pt;}
.ws27{word-spacing:-13.257216pt;}
.ws13{word-spacing:-13.246464pt;}
.ws2f{word-spacing:-13.230336pt;}
.ws28{word-spacing:-13.224960pt;}
.ws12{word-spacing:-13.219584pt;}
.ws26{word-spacing:-13.208832pt;}
.ws10{word-spacing:-13.192704pt;}
.ws31{word-spacing:-13.187328pt;}
.ws2d{word-spacing:-13.181952pt;}
.ws2c{word-spacing:-13.128192pt;}
.ws3d{word-spacing:-13.112064pt;}
.ws2e{word-spacing:-13.095936pt;}
.ws3e{word-spacing:-13.085184pt;}
.ws25{word-spacing:-12.800000pt;}
.ws40{word-spacing:-12.610560pt;}
.ws24{word-spacing:-12.462080pt;}
.ws2b{word-spacing:-12.359680pt;}
.ws2a{word-spacing:-12.313600pt;}
.ws32{word-spacing:-0.684288pt;}
.ws3f{word-spacing:-0.673920pt;}
.ws30{word-spacing:-0.388608pt;}
.ws9{word-spacing:-0.076800pt;}
.ws33{word-spacing:-0.070400pt;}
.ws4{word-spacing:-0.064000pt;}
.ws29{word-spacing:-0.058880pt;}
.wse{word-spacing:-0.053760pt;}
.wsa{word-spacing:-0.051200pt;}
.wsb{word-spacing:-0.005888pt;}
.ws7{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.005888pt;}
.ws3b{word-spacing:0.011776pt;}
.ws35{word-spacing:0.017664pt;}
.ws36{word-spacing:0.035328pt;}
.ws1e{word-spacing:0.047104pt;}
.ws22{word-spacing:0.064512pt;}
.ws38{word-spacing:0.102144pt;}
.ws18{word-spacing:0.105984pt;}
.ws39{word-spacing:0.290304pt;}
.ws14{word-spacing:0.370944pt;}
._12{margin-left:-16.945024pt;}
._a{margin-left:-13.209600pt;}
._f{margin-left:-12.134400pt;}
._11{margin-left:-10.295424pt;}
._d{margin-left:-8.972800pt;}
._6{margin-left:-7.244800pt;}
._8{margin-left:-5.862016pt;}
._7{margin-left:-4.467200pt;}
._9{margin-left:-3.498624pt;}
._5{margin-left:-2.163200pt;}
._0{margin-left:-1.039360pt;}
._2{width:0.977536pt;}
._e{width:2.199808pt;}
._10{width:3.300352pt;}
._c{width:4.800000pt;}
._b{width:6.068480pt;}
._4{width:17.624320pt;}
._3{width:388.099072pt;}
._1{width:404.099072pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs5{font-size:42.240000pt;}
.fs8{font-size:51.200000pt;}
.fs6{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.fs1{font-size:96.000000pt;}
.fs3{font-size:218.880000pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:10.026667pt;}
.ybf{bottom:24.906667pt;}
.y1bf{bottom:25.120000pt;}
.y1b7{bottom:25.173333pt;}
.yc5{bottom:25.226667pt;}
.yd7{bottom:25.386667pt;}
.yb4{bottom:25.440000pt;}
.y1b5{bottom:25.706667pt;}
.ybb{bottom:25.813333pt;}
.yc9{bottom:25.866667pt;}
.y1c1{bottom:25.920000pt;}
.y2a{bottom:25.973333pt;}
.y30{bottom:26.080000pt;}
.y36{bottom:26.186667pt;}
.yb7{bottom:26.346667pt;}
.y32{bottom:26.560000pt;}
.y38{bottom:26.666667pt;}
.y2c{bottom:26.773333pt;}
.y3a{bottom:26.826667pt;}
.y34{bottom:27.040000pt;}
.y2e{bottom:27.253333pt;}
.yc4{bottom:51.786667pt;}
.yd6{bottom:51.946667pt;}
.y1c7{bottom:52.000000pt;}
.y1b2{bottom:52.160000pt;}
.yba{bottom:52.373333pt;}
.ybe{bottom:52.426667pt;}
.y1{bottom:52.480000pt;}
.yb6{bottom:52.906667pt;}
.ycc{bottom:53.813333pt;}
.ycd{bottom:54.773333pt;}
.y28{bottom:75.520000pt;}
.yd5{bottom:78.506667pt;}
.yc3{bottom:79.626667pt;}
.ybd{bottom:79.946667pt;}
.ycb{bottom:81.333333pt;}
.y4b{bottom:100.160000pt;}
.y176{bottom:104.000000pt;}
.yd4{bottom:104.746667pt;}
.y20{bottom:105.920000pt;}
.yd9{bottom:106.986667pt;}
.yc2{bottom:107.146667pt;}
.yc8{bottom:107.466667pt;}
.ye7{bottom:108.480000pt;}
.y170{bottom:110.400000pt;}
.y1ee{bottom:111.040000pt;}
.y1e7{bottom:116.480000pt;}
.y4a{bottom:119.360000pt;}
.y6c{bottom:120.320000pt;}
.y139{bottom:120.640000pt;}
.y1db{bottom:121.600000pt;}
.y197{bottom:123.520000pt;}
.y1b0{bottom:124.160000pt;}
.yfe{bottom:126.720000pt;}
.y175{bottom:130.560000pt;}
.y1f6{bottom:132.160000pt;}
.y1f{bottom:132.480000pt;}
.yd3{bottom:132.586667pt;}
.ye6{bottom:132.800000pt;}
.yd8{bottom:133.546667pt;}
.yc1{bottom:133.706667pt;}
.yc7{bottom:134.026667pt;}
.y16f{bottom:134.720000pt;}
.y1a9{bottom:136.000000pt;}
.y99{bottom:137.600000pt;}
.ycf{bottom:138.560000pt;}
.y6b{bottom:139.520000pt;}
.y212{bottom:141.760000pt;}
.yb2{bottom:142.400000pt;}
.y1e6{bottom:143.040000pt;}
.y86{bottom:146.880000pt;}
.y138{bottom:147.200000pt;}
.y196{bottom:147.840000pt;}
.y1da{bottom:148.160000pt;}
.y1a0{bottom:148.480000pt;}
.y155{bottom:151.040000pt;}
.yfd{bottom:153.280000pt;}
.y1dc{bottom:153.600000pt;}
.y1f5{bottom:155.200000pt;}
.y157{bottom:156.480000pt;}
.ye5{bottom:157.120000pt;}
.ye3{bottom:158.080000pt;}
.y1e{bottom:159.040000pt;}
.y6a{bottom:159.680000pt;}
.yd2{bottom:160.106667pt;}
.y1a8{bottom:160.320000pt;}
.y18f{bottom:160.960000pt;}
.y49{bottom:161.600000pt;}
.y1d7{bottom:164.160000pt;}
.y211{bottom:164.800000pt;}
.y1e5{bottom:169.600000pt;}
.y16e{bottom:170.560000pt;}
.y195{bottom:172.160000pt;}
.y174{bottom:172.480000pt;}
.y220{bottom:173.120000pt;}
.y85{bottom:173.440000pt;}
.y137{bottom:173.760000pt;}
.y165{bottom:174.720000pt;}
.y19f{bottom:175.040000pt;}
.ye2{bottom:177.280000pt;}
.y1f4{bottom:178.560000pt;}
.y69{bottom:179.840000pt;}
.y98{bottom:180.160000pt;}
.yce{bottom:180.800000pt;}
.ye4{bottom:181.440000pt;}
.y79{bottom:181.760000pt;}
.y1d9{bottom:182.400000pt;}
.y1a5{bottom:183.680000pt;}
.y1a7{bottom:184.640000pt;}
.y192{bottom:185.280000pt;}
.y1d{bottom:185.600000pt;}
.yd1{bottom:186.666667pt;}
.y18e{bottom:187.520000pt;}
.y210{bottom:187.840000pt;}
.y1d6{bottom:188.480000pt;}
.y1ae{bottom:190.720000pt;}
.y154{bottom:193.600000pt;}
.y1e4{bottom:196.160000pt;}
.ye1{bottom:196.480000pt;}
.y173{bottom:196.800000pt;}
.y84{bottom:200.000000pt;}
.y164{bottom:201.280000pt;}
.y19e{bottom:201.600000pt;}
.y12d{bottom:205.760000pt;}
.yfc{bottom:206.400000pt;}
.y97{bottom:206.720000pt;}
.y194{bottom:207.680000pt;}
.y191{bottom:209.600000pt;}
.y1c{bottom:212.160000pt;}
.y1d5{bottom:212.800000pt;}
.y18d{bottom:214.080000pt;}
.y122{bottom:215.680000pt;}
.y136{bottom:216.320000pt;}
.y1ad{bottom:217.280000pt;}
.y1af{bottom:219.200000pt;}
.y1a6{bottom:220.480000pt;}
.y172{bottom:221.120000pt;}
.y68{bottom:221.760000pt;}
.y1e3{bottom:222.720000pt;}
.y20f{bottom:224.320000pt;}
.y1a4{bottom:226.240000pt;}
.y83{bottom:226.560000pt;}
.y78{bottom:227.520000pt;}
.y163{bottom:227.840000pt;}
.y19d{bottom:228.160000pt;}
.y12c{bottom:232.320000pt;}
.yfb{bottom:232.960000pt;}
.y96{bottom:233.280000pt;}
.y121{bottom:234.880000pt;}
.y153{bottom:236.160000pt;}
.y1f3{bottom:238.080000pt;}
.ye0{bottom:238.400000pt;}
.y1b{bottom:238.720000pt;}
.y18c{bottom:240.640000pt;}
.y1d8{bottom:242.240000pt;}
.y1ac{bottom:243.840000pt;}
.y190{bottom:245.120000pt;}
.y1d4{bottom:248.640000pt;}
.y1e2{bottom:249.280000pt;}
.y77{bottom:251.840000pt;}
.y82{bottom:253.120000pt;}
.y120{bottom:254.080000pt;}
.yca{bottom:254.666667pt;}
.y48{bottom:254.720000pt;}
.y171{bottom:256.640000pt;}
.y12b{bottom:258.880000pt;}
.yfa{bottom:259.200000pt;}
.y95{bottom:259.840000pt;}
.y20e{bottom:260.800000pt;}
.y1f2{bottom:261.120000pt;}
.y1a{bottom:265.280000pt;}
.y18b{bottom:267.200000pt;}
.y1a3{bottom:268.160000pt;}
.y162{bottom:270.400000pt;}
.y11f{bottom:273.280000pt;}
.y10e{bottom:275.520000pt;}
.y67{bottom:275.840000pt;}
.y76{bottom:276.160000pt;}
.y152{bottom:278.720000pt;}
.y47{bottom:281.280000pt;}
.y20d{bottom:283.840000pt;}
.y12a{bottom:285.440000pt;}
.yf9{bottom:285.760000pt;}
.y94{bottom:286.400000pt;}
.y140{bottom:291.520000pt;}
.y19{bottom:291.840000pt;}
.y11e{bottom:292.480000pt;}
.y18a{bottom:293.760000pt;}
.y81{bottom:295.040000pt;}
.y161{bottom:296.960000pt;}
.y19c{bottom:297.280000pt;}
.y75{bottom:300.480000pt;}
.y21f{bottom:301.760000pt;}
.y10d{bottom:302.080000pt;}
.y66{bottom:302.400000pt;}
.y151{bottom:305.280000pt;}
.yb1{bottom:305.920000pt;}
.y20c{bottom:306.880000pt;}
.y16d{bottom:307.520000pt;}
.y46{bottom:307.840000pt;}
.y11d{bottom:312.000000pt;}
.y93{bottom:312.960000pt;}
.y1a2{bottom:316.800000pt;}
.y13f{bottom:318.080000pt;}
.y18{bottom:318.400000pt;}
.y80{bottom:319.360000pt;}
.y1f1{bottom:320.640000pt;}
.y189{bottom:321.280000pt;}
.y180{bottom:323.200000pt;}
.y160{bottom:323.520000pt;}
.y74{bottom:324.800000pt;}
.y129{bottom:328.000000pt;}
.yf8{bottom:328.320000pt;}
.y65{bottom:328.960000pt;}
.y11c{bottom:331.200000pt;}
.y150{bottom:331.840000pt;}
.y45{bottom:334.400000pt;}
.y135{bottom:338.560000pt;}
.y19b{bottom:339.200000pt;}
.y92{bottom:339.520000pt;}
.y1c5{bottom:340.480000pt;}
.y20b{bottom:343.360000pt;}
.y7f{bottom:343.680000pt;}
.y10c{bottom:344.640000pt;}
.y17{bottom:344.960000pt;}
.y188{bottom:347.840000pt;}
.yb0{bottom:348.480000pt;}
.y73{bottom:349.120000pt;}
.y17f{bottom:349.760000pt;}
.y15f{bottom:350.080000pt;}
.y11b{bottom:350.400000pt;}
.y1a1{bottom:352.640000pt;}
.yc6{bottom:353.333333pt;}
.y128{bottom:354.560000pt;}
.y64{bottom:355.520000pt;}
.y1f0{bottom:356.800000pt;}
.y14f{bottom:358.400000pt;}
.y44{bottom:360.640000pt;}
.y19a{bottom:363.520000pt;}
.y134{bottom:365.120000pt;}
.y1ed{bottom:365.760000pt;}
.y91{bottom:366.080000pt;}
.y20a{bottom:366.400000pt;}
.y7e{bottom:368.000000pt;}
.y11a{bottom:369.600000pt;}
.yf7{bottom:370.880000pt;}
.y10b{bottom:371.200000pt;}
.y16{bottom:371.520000pt;}
.y72{bottom:373.440000pt;}
.y187{bottom:374.400000pt;}
.yaf{bottom:375.040000pt;}
.y17e{bottom:376.320000pt;}
.y15e{bottom:376.640000pt;}
.y1ef{bottom:380.160000pt;}
.y1c4{bottom:380.800000pt;}
.y127{bottom:381.120000pt;}
.y63{bottom:382.080000pt;}
.y14e{bottom:384.960000pt;}
.y43{bottom:387.200000pt;}
.y199{bottom:387.840000pt;}
.y119{bottom:388.800000pt;}
.y209{bottom:389.440000pt;}
.y133{bottom:391.360000pt;}
.y7d{bottom:392.320000pt;}
.y90{bottom:392.640000pt;}
.yf6{bottom:397.440000pt;}
.y71{bottom:397.760000pt;}
.y15{bottom:398.080000pt;}
.y186{bottom:400.960000pt;}
.yae{bottom:401.600000pt;}
.y17d{bottom:402.880000pt;}
.y16c{bottom:403.200000pt;}
.y1c3{bottom:405.120000pt;}
.y126{bottom:407.360000pt;}
.y62{bottom:408.640000pt;}
.y42{bottom:413.760000pt;}
.y7c{bottom:416.640000pt;}
.y1ec{bottom:418.880000pt;}
.y8f{bottom:419.200000pt;}
.y1c2{bottom:421.333333pt;}
.y70{bottom:422.080000pt;}
.y198{bottom:422.400000pt;}
.yf5{bottom:424.000000pt;}
.y208{bottom:425.920000pt;}
.y14d{bottom:427.520000pt;}
.yad{bottom:428.160000pt;}
.y17c{bottom:429.440000pt;}
.y16b{bottom:429.760000pt;}
.y21e{bottom:430.400000pt;}
.y118{bottom:431.040000pt;}
.y125{bottom:433.920000pt;}
.y61{bottom:435.200000pt;}
.y1d3{bottom:440.000000pt;}
.y10a{bottom:440.320000pt;}
.y14{bottom:440.640000pt;}
.y7b{bottom:440.960000pt;}
.y41{bottom:441.600000pt;}
.y1eb{bottom:445.440000pt;}
.y15d{bottom:445.760000pt;}
.y6f{bottom:446.400000pt;}
.y207{bottom:448.960000pt;}
.y145{bottom:452.160000pt;}
.y21d{bottom:453.440000pt;}
.y27{bottom:454.080000pt;}
.yac{bottom:454.720000pt;}
.y17b{bottom:456.000000pt;}
.y13e{bottom:456.320000pt;}
.y124{bottom:460.480000pt;}
.y60{bottom:461.760000pt;}
.y1c0{bottom:464.000000pt;}
.y1d2{bottom:464.320000pt;}
.yf4{bottom:466.560000pt;}
.y109{bottom:466.880000pt;}
.y13{bottom:467.200000pt;}
.y40{bottom:469.120000pt;}
.y185{bottom:470.080000pt;}
.y6e{bottom:470.720000pt;}
.y1ea{bottom:472.000000pt;}
.y15c{bottom:472.320000pt;}
.y144{bottom:476.480000pt;}
.y7a{bottom:476.800000pt;}
.y1d1{bottom:480.000000pt;}
.y14c{bottom:480.640000pt;}
.yab{bottom:481.280000pt;}
.y17a{bottom:482.560000pt;}
.y13d{bottom:482.880000pt;}
.y206{bottom:485.440000pt;}
.y123{bottom:487.040000pt;}
.y5f{bottom:488.320000pt;}
.y108{bottom:493.440000pt;}
.y12{bottom:493.760000pt;}
.y3f{bottom:496.640000pt;}
.y26{bottom:496.960000pt;}
.y1e9{bottom:498.560000pt;}
.y15b{bottom:498.880000pt;}
.y21c{bottom:499.840000pt;}
.y143{bottom:500.800000pt;}
.y1e1{bottom:504.320000pt;}
.yc0{bottom:505.333333pt;}
.y6d{bottom:506.560000pt;}
.y14b{bottom:507.200000pt;}
.yaa{bottom:507.840000pt;}
.y1be{bottom:508.000000pt;}
.y205{bottom:508.480000pt;}
.y179{bottom:509.120000pt;}
.y16a{bottom:509.440000pt;}
.y184{bottom:512.000000pt;}
.y132{bottom:513.600000pt;}
.y5e{bottom:514.880000pt;}
.yf3{bottom:520.000000pt;}
.y11{bottom:520.320000pt;}
.y3e{bottom:523.200000pt;}
.y1d0{bottom:524.000000pt;}
.y156{bottom:524.480000pt;}
.y142{bottom:525.120000pt;}
.y13c{bottom:525.440000pt;}
.y1e0{bottom:530.880000pt;}
.y204{bottom:531.520000pt;}
.y14a{bottom:533.760000pt;}
.ya9{bottom:534.400000pt;}
.y169{bottom:536.000000pt;}
.y183{bottom:536.320000pt;}
.y25{bottom:538.880000pt;}
.y131{bottom:540.160000pt;}
.y1e8{bottom:541.120000pt;}
.y5d{bottom:541.440000pt;}
.yf2{bottom:546.560000pt;}
.y10{bottom:546.880000pt;}
.y141{bottom:549.440000pt;}
.y3d{bottom:549.760000pt;}
.y1bd{bottom:550.666667pt;}
.y178{bottom:551.680000pt;}
.y13b{bottom:552.000000pt;}
.y1df{bottom:557.440000pt;}
.y21b{bottom:559.360000pt;}
.y149{bottom:560.320000pt;}
.y182{bottom:560.640000pt;}
.ya8{bottom:560.960000pt;}
.y168{bottom:562.560000pt;}
.y1cf{bottom:566.666667pt;}
.y130{bottom:566.720000pt;}
.y5c{bottom:568.000000pt;}
.yf1{bottom:572.800000pt;}
.yf{bottom:573.440000pt;}
.y24{bottom:574.400000pt;}
.y3c{bottom:576.320000pt;}
.y1ab{bottom:578.560000pt;}
.y21a{bottom:582.400000pt;}
.y1de{bottom:584.000000pt;}
.y148{bottom:586.880000pt;}
.y107{bottom:588.800000pt;}
.y203{bottom:591.040000pt;}
.y12f{bottom:593.280000pt;}
.y177{bottom:594.240000pt;}
.y5b{bottom:594.560000pt;}
.y1bc{bottom:594.666667pt;}
.y181{bottom:596.480000pt;}
.yf0{bottom:599.360000pt;}
.ye{bottom:600.000000pt;}
.ya7{bottom:603.520000pt;}
.y1aa{bottom:604.800000pt;}
.y1dd{bottom:610.560000pt;}
.y1ce{bottom:610.666667pt;}
.y167{bottom:615.360000pt;}
.y3b{bottom:618.240000pt;}
.y219{bottom:618.880000pt;}
.y12e{bottom:619.840000pt;}
.y5a{bottom:620.800000pt;}
.yef{bottom:625.920000pt;}
.yd{bottom:626.240000pt;}
.y202{bottom:627.520000pt;}
.y147{bottom:628.800000pt;}
.ya6{bottom:630.080000pt;}
.y106{bottom:631.360000pt;}
.y39{bottom:633.333333pt;}
.y15a{bottom:636.800000pt;}
.y1bb{bottom:637.333333pt;}
.y166{bottom:641.920000pt;}
.y59{bottom:647.360000pt;}
.y201{bottom:650.560000pt;}
.yee{bottom:652.480000pt;}
.y1cd{bottom:653.333333pt;}
.yc{bottom:654.080000pt;}
.ya5{bottom:656.640000pt;}
.ydf{bottom:656.960000pt;}
.ybc{bottom:657.333333pt;}
.y105{bottom:657.920000pt;}
.y159{bottom:663.360000pt;}
.y146{bottom:664.640000pt;}
.y117{bottom:668.480000pt;}
.y58{bottom:673.920000pt;}
.y37{bottom:677.333333pt;}
.y218{bottom:678.400000pt;}
.yed{bottom:679.040000pt;}
.yb{bottom:680.640000pt;}
.y1ba{bottom:681.333333pt;}
.ya4{bottom:683.200000pt;}
.yde{bottom:683.520000pt;}
.y104{bottom:684.480000pt;}
.y200{bottom:687.040000pt;}
.y158{bottom:689.920000pt;}
.y116{bottom:695.040000pt;}
.y1cc{bottom:697.333333pt;}
.y57{bottom:700.480000pt;}
.y217{bottom:701.440000pt;}
.yec{bottom:705.600000pt;}
.ya{bottom:707.200000pt;}
.ydd{bottom:710.080000pt;}
.ya3{bottom:710.720000pt;}
.y103{bottom:711.040000pt;}
.y13a{bottom:716.480000pt;}
.y35{bottom:721.333333pt;}
.y115{bottom:721.600000pt;}
.y1b9{bottom:724.000000pt;}
.y1ff{bottom:724.480000pt;}
.y8e{bottom:727.040000pt;}
.y1b1{bottom:728.320000pt;}
.yeb{bottom:732.160000pt;}
.y9{bottom:734.720000pt;}
.ydc{bottom:736.640000pt;}
.y102{bottom:737.600000pt;}
.y216{bottom:737.920000pt;}
.ya2{bottom:738.240000pt;}
.y1cb{bottom:740.000000pt;}
.y56{bottom:743.040000pt;}
.y1fe{bottom:747.520000pt;}
.y114{bottom:748.160000pt;}
.y8d{bottom:753.600000pt;}
.yb9{bottom:754.666667pt;}
.yea{bottom:758.720000pt;}
.y215{bottom:760.960000pt;}
.y8{bottom:761.280000pt;}
.ydb{bottom:762.880000pt;}
.y33{bottom:764.000000pt;}
.y101{bottom:764.160000pt;}
.ya1{bottom:765.760000pt;}
.y1b8{bottom:766.666667pt;}
.y55{bottom:769.600000pt;}
.y113{bottom:774.720000pt;}
.y8c{bottom:780.160000pt;}
.y1ca{bottom:782.666667pt;}
.y1fd{bottom:784.000000pt;}
.y7{bottom:788.800000pt;}
.y100{bottom:790.720000pt;}
.ya0{bottom:792.320000pt;}
.y54{bottom:796.160000pt;}
.y214{bottom:797.440000pt;}
.ye9{bottom:801.280000pt;}
.yda{bottom:805.120000pt;}
.y21{bottom:805.333333pt;}
.y8b{bottom:806.720000pt;}
.y1fc{bottom:807.040000pt;}
.y31{bottom:808.000000pt;}
.y1b6{bottom:810.666667pt;}
.y6{bottom:815.360000pt;}
.yff{bottom:817.280000pt;}
.y9f{bottom:820.160000pt;}
.y213{bottom:820.480000pt;}
.yd0{bottom:821.333333pt;}
.y53{bottom:822.720000pt;}
.yb8{bottom:825.333333pt;}
.y1c9{bottom:826.666667pt;}
.y112{bottom:827.840000pt;}
.y8a{bottom:833.280000pt;}
.y5{bottom:841.920000pt;}
.y1fb{bottom:843.520000pt;}
.ye8{bottom:843.840000pt;}
.y9e{bottom:846.720000pt;}
.y52{bottom:849.280000pt;}
.y2f{bottom:852.000000pt;}
.y1b4{bottom:853.333333pt;}
.y111{bottom:854.400000pt;}
.y89{bottom:859.840000pt;}
.yb5{bottom:869.333333pt;}
.y9d{bottom:872.960000pt;}
.y51{bottom:875.840000pt;}
.y1fa{bottom:880.000000pt;}
.y88{bottom:886.400000pt;}
.y2d{bottom:894.666667pt;}
.y110{bottom:896.960000pt;}
.y1b3{bottom:897.333333pt;}
.y9c{bottom:899.520000pt;}
.y50{bottom:902.400000pt;}
.y1f9{bottom:903.040000pt;}
.y4{bottom:905.920000pt;}
.y87{bottom:912.960000pt;}
.y1c8{bottom:913.333333pt;}
.y9b{bottom:926.080000pt;}
.y4f{bottom:928.960000pt;}
.y2b{bottom:938.666667pt;}
.y10f{bottom:939.520000pt;}
.yb3{bottom:940.000000pt;}
.y4e{bottom:955.520000pt;}
.y1c6{bottom:956.000000pt;}
.y3{bottom:960.000000pt;}
.y1f8{bottom:962.560000pt;}
.y9a{bottom:965.760000pt;}
.y193{bottom:966.080000pt;}
.y4d{bottom:982.080000pt;}
.y29{bottom:982.666667pt;}
.y1f7{bottom:985.600000pt;}
.y2{bottom:999.680000pt;}
.y4c{bottom:1008.640000pt;}
.y23{bottom:1057.280000pt;}
.h18{height:23.506875pt;}
.hd{height:40.740000pt;}
.ha{height:44.000000pt;}
.h9{height:44.620000pt;}
.hb{height:45.333333pt;}
.he{height:46.226250pt;}
.hf{height:47.008125pt;}
.h17{height:47.937500pt;}
.h2{height:48.500000pt;}
.h10{height:49.913125pt;}
.hc{height:50.490625pt;}
.h6{height:53.125000pt;}
.h7{height:54.666667pt;}
.h5{height:55.156250pt;}
.h4{height:55.607500pt;}
.h12{height:70.666667pt;}
.h11{height:72.000000pt;}
.h3{height:72.750000pt;}
.h13{height:98.666667pt;}
.h15{height:100.000000pt;}
.h8{height:149.090625pt;}
.h14{height:152.000000pt;}
.h16{height:205.333333pt;}
.h1a{height:793.333333pt;}
.h19{height:793.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:20.000000pt;}
.wd{width:73.333333pt;}
.we{width:80.000000pt;}
.w3{width:89.333333pt;}
.w9{width:130.666667pt;}
.w8{width:137.333333pt;}
.w6{width:150.666667pt;}
.w10{width:176.000000pt;}
.w7{width:202.666667pt;}
.w12{width:224.000000pt;}
.w11{width:225.333333pt;}
.w4{width:234.666667pt;}
.wf{width:274.666667pt;}
.w5{width:300.000000pt;}
.wa{width:621.333333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.wb{width:1122.560000pt;}
.wc{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x22{left:5.240245pt;}
.x9{left:6.786784pt;}
.xe{left:19.024736pt;}
.x7{left:38.134112pt;}
.xd{left:45.102848pt;}
.xb{left:47.696608pt;}
.xc{left:83.173184pt;}
.x1{left:94.466784pt;}
.x3{left:96.000000pt;}
.x17{left:97.435552pt;}
.x15{left:99.426432pt;}
.x1b{left:100.493472pt;}
.x18{left:101.410144pt;}
.x30{left:102.713216pt;}
.x40{left:103.694336pt;}
.x12{left:104.804672pt;}
.x39{left:105.717760pt;}
.x16{left:107.450848pt;}
.x3a{left:108.854176pt;}
.x14{left:110.172192pt;}
.x51{left:111.604160pt;}
.x46{left:112.846688pt;}
.x2{left:114.558272pt;}
.x13{left:116.502944pt;}
.x3e{left:117.766592pt;}
.x1d{left:120.352224pt;}
.x49{left:122.013344pt;}
.x55{left:129.060224pt;}
.x1c{left:130.525056pt;}
.x34{left:140.711904pt;}
.x35{left:144.000000pt;}
.x25{left:163.882816pt;}
.x28{left:168.000000pt;}
.x4e{left:169.333333pt;}
.x31{left:172.612640pt;}
.x8{left:184.000000pt;}
.x27{left:187.132800pt;}
.x2a{left:192.237632pt;}
.x26{left:195.491840pt;}
.x6{left:199.491840pt;}
.x3b{left:208.534496pt;}
.x5{left:212.183264pt;}
.x54{left:217.647456pt;}
.x58{left:236.812832pt;}
.x44{left:244.305984pt;}
.x21{left:246.666667pt;}
.x4f{left:248.000000pt;}
.x19{left:258.661472pt;}
.xf{left:260.236640pt;}
.x4a{left:262.522784pt;}
.x2b{left:269.089184pt;}
.x1e{left:270.714208pt;}
.x41{left:279.189440pt;}
.x10{left:286.466784pt;}
.x3d{left:288.850912pt;}
.x42{left:304.064800pt;}
.x36{left:312.264960pt;}
.x2c{left:313.593088pt;}
.x52{left:314.602848pt;}
.x47{left:322.469760pt;}
.x29{left:325.653760pt;}
.x3c{left:335.647360pt;}
.x59{left:345.320640pt;}
.x2f{left:356.257280pt;}
.x2e{left:359.018880pt;}
.x57{left:361.874240pt;}
.x1f{left:362.807040pt;}
.x2d{left:367.663040pt;}
.x20{left:370.175040pt;}
.x43{left:374.561920pt;}
.x3f{left:377.018880pt;}
.x45{left:379.210240pt;}
.x48{left:380.475840pt;}
.x37{left:396.866560pt;}
.xa{left:417.333333pt;}
.x23{left:449.333333pt;}
.x53{left:473.333333pt;}
.x4d{left:480.603520pt;}
.x50{left:521.333333pt;}
.x4b{left:524.291520pt;}
.x24{left:586.666667pt;}
.x1a{left:596.193280pt;}
.x11{left:608.193280pt;}
.x38{left:645.346560pt;}
.x56{left:651.746560pt;}
.x33{left:682.786560pt;}
.x32{left:696.386560pt;}
.x4{left:697.826560pt;}
.x4c{left:911.186560pt;}
}




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