
    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_94f9c1561adb6038b6d5b624.woff')format("woff");}.ff1{font-family:ff1;line-height:1.115234;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_bfadc4dbaa7b0c516ae843b7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.960449;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_8c180ae19743fa60d7613407.woff')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_fb033e12dfd8a9613669f32d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_7b6445e0836439a88f13699f.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_98df02fae4485e5581481bc0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_799ddd67ff9f6339e0234254.woff')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_9e6397f8685105513ff90d8b.woff')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_bbf16db64493cc74c2f1f90e.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5733cb1850188e87b9f81c08.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_e28823a456e96d897b6e6a83.woff')format("woff");}.ffc{font-family:ffc;line-height:1.112305;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_f4cfbdef5230a60d399b13a3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.968262;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_da6dc23a08592b6afa08b22f.woff')format("woff");}.ffe{font-family:ffe;line-height:1.112305;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_d77b6566c6a3109bbecb85f4.woff')format("woff");}.fff{font-family:fff;line-height:1.112305;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_04e50c7029f5ddce1dae0679.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_1bd3049ef1f9dec84c71d9c3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a343b0559f7f69da4a70684f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.689941;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_5c52bdc77088e7e5f08531a2.woff')format("woff");}.ff13{font-family:ff13;line-height:1.112305;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_62008b216c5bdef20e0f9bcc.woff')format("woff");}.ff14{font-family:ff14;line-height:1.112305;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff15{font-family:ff15;line-height:1.003906;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_2e71ef031bbd00bcf7b42ba4.woff')format("woff");}.ff16{font-family:ff16;line-height:0.968262;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_0a325023671bdb4ef8badc12.woff')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_bd239177075bd72148443bfd.woff')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_74cbc1916bb65b7f6985efaa.woff')format("woff");}.ff19{font-family:ff19;line-height:1.040039;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_2672cede3d9e3974be3bc979.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.035156;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_f67551c91a36f92148fb58cc.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.112305;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_288e45bde38244f700e01edd.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.112305;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_04e50c7029f5ddce1dae0679.woff')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_4c8111bf35e8c10cf0fc7ece.woff')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_45ba317ff51d9f4a8d1cedff.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_b81cb3913739f6cfb3eaec55.woff')format("woff");}.ff20{font-family:ff20;line-height:0.708008;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_eb1fc5b738f9c130a13b26f9.woff')format("woff");}.ff21{font-family:ff21;line-height:1.112305;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_3bf1fc4842a14380f7ec58e1.woff')format("woff");}.ff22{font-family:ff22;line-height:1.112305;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff23{font-family:ff23;line-height:1.003906;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_bfecd2b8cc49ebb270c7f420.woff')format("woff");}.ff24{font-family:ff24;line-height:1.040039;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_06cd14e347cb33444cd080b6.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_3b87b03f314fe83ca0901646.woff')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_fd695a949b8841ea7da8664f.woff')format("woff");}.ff27{font-family:ff27;line-height:0.968262;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_c94375ece64dc51d2add52ba.woff')format("woff");}.ff28{font-family:ff28;line-height:1.112305;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_283ae9fa519beb571ada9c1d.woff')format("woff");}.ff29{font-family:ff29;line-height:1.112305;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_04e50c7029f5ddce1dae0679.woff')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_7a5e5290cb1f250e74fa7d49.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_3e6178c35a3573cfcecbd909.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.689941;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_e1872b60beaffbf01152acf2.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.112305;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_a7f7c5830d2ee242e372b8ee.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.112305;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_297d65420ff3131a0f8d5eee.woff')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_543d6329cb8e133cab6559d4.woff')format("woff");}.ff31{font-family:ff31;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_087fff43d7002ed290ad1334.woff')format("woff");}.ff32{font-family:ff32;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_942e054198df7256cd3ff03b.woff')format("woff");}.ff33{font-family:ff33;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_b9d07428290b3318546f12b2.woff')format("woff");}.ff34{font-family:ff34;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_a54cf21a9e7e03f01116bad9.woff')format("woff");}.ff35{font-family:ff35;line-height:1.040039;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;}
.m1{transform:matrix(0.236773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236773,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260425,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261375,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v4{vertical-align:-8.290067px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v2{vertical-align:27.360000px;}
.ls4f{letter-spacing:-2.880000px;}
.ls14{letter-spacing:-0.864000px;}
.ls37{letter-spacing:-0.776880px;}
.ls2d{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.576000px;}
.ls23{letter-spacing:-0.540000px;}
.ls44{letter-spacing:-0.537840px;}
.ls15{letter-spacing:-0.432000px;}
.ls2c{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.350400px;}
.ls26{letter-spacing:-0.288000px;}
.ls48{letter-spacing:-0.259800px;}
.ls45{letter-spacing:-0.239040px;}
.ls31{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.187800px;}
.ls39{letter-spacing:-0.179280px;}
.lsf{letter-spacing:-0.144000px;}
.ls56{letter-spacing:-0.106800px;}
.ls46{letter-spacing:-0.088310px;}
.lse{letter-spacing:-0.087600px;}
.ls11{letter-spacing:-0.072000px;}
.ls38{letter-spacing:-0.059760px;}
.ls24{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.037440px;}
.ls30{letter-spacing:0.072000px;}
.ls22{letter-spacing:0.106800px;}
.ls43{letter-spacing:0.119520px;}
.ls29{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.127300px;}
.ls13{letter-spacing:0.128400px;}
.ls7{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.153600px;}
.ls34{letter-spacing:0.179280px;}
.ls1e{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.216000px;}
.ls32{letter-spacing:0.239040px;}
.ls2f{letter-spacing:0.252000px;}
.ls21{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.357000px;}
.ls17{letter-spacing:0.360000px;}
.ls52{letter-spacing:0.504000px;}
.ls53{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.642000px;}
.ls28{letter-spacing:0.720000px;}
.ls27{letter-spacing:0.792000px;}
.ls2e{letter-spacing:0.864000px;}
.ls1c{letter-spacing:0.900000px;}
.lsd{letter-spacing:0.936000px;}
.ls54{letter-spacing:1.080000px;}
.ls4e{letter-spacing:1.440000px;}
.ls3b{letter-spacing:2.880000px;}
.ls3a{letter-spacing:3.600000px;}
.ls6{letter-spacing:3.744000px;}
.ls4{letter-spacing:3.941280px;}
.ls50{letter-spacing:4.320000px;}
.ls59{letter-spacing:5.016000px;}
.ls4c{letter-spacing:5.040000px;}
.ls8{letter-spacing:5.184000px;}
.ls35{letter-spacing:5.916240px;}
.ls36{letter-spacing:6.095520px;}
.ls2a{letter-spacing:6.480000px;}
.ls1d{letter-spacing:6.660000px;}
.ls49{letter-spacing:7.920000px;}
.ls3e{letter-spacing:8.640000px;}
.ls5{letter-spacing:8.907960px;}
.ls1a{letter-spacing:9.540000px;}
.ls33{letter-spacing:9.561600px;}
.ls4d{letter-spacing:10.800000px;}
.ls42{letter-spacing:12.430080px;}
.ls2b{letter-spacing:12.960000px;}
.ls40{letter-spacing:13.129272px;}
.ls41{letter-spacing:13.147200px;}
.ls19{letter-spacing:15.300000px;}
.ls3c{letter-spacing:15.840000px;}
.ls5a{letter-spacing:16.560000px;}
.ls4a{letter-spacing:17.280000px;}
.ls4b{letter-spacing:19.440000px;}
.ls3d{letter-spacing:20.880000px;}
.ls51{letter-spacing:21.600000px;}
.ls55{letter-spacing:27.549360px;}
.ls47{letter-spacing:30.240000px;}
.ls57{letter-spacing:33.960000px;}
.ls58{letter-spacing:35.280000px;}
.ls3f{letter-spacing:849.185760px;}
.ls0{letter-spacing:1957.866240px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(68,114,196),0 0.015em rgb(68,114,196),0.015em 0 rgb(68,114,196),0 -0.015em  rgb(68,114,196);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(68,114,196);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4e{word-spacing:-95.760000px;}
.ws0{word-spacing:-79.905360px;}
.ws2d{word-spacing:-72.000000px;}
.ws11{word-spacing:-27.216000px;}
.ws12{word-spacing:-27.000000px;}
.ws1{word-spacing:-26.658720px;}
.ws44{word-spacing:-24.300000px;}
.ws4{word-spacing:-23.418720px;}
.ws3{word-spacing:-23.068320px;}
.ws45{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.952000px;}
.ws5{word-spacing:-20.616000px;}
.ws10{word-spacing:-20.373000px;}
.wsc{word-spacing:-20.304000px;}
.wsd{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.944000px;}
.ws7{word-spacing:-19.928400px;}
.ws8{word-spacing:-19.872000px;}
.ws9{word-spacing:-19.828200px;}
.wsf{word-spacing:-19.584000px;}
.wsb{word-spacing:-19.440000px;}
.wse{word-spacing:-19.152000px;}
.ws20{word-spacing:-18.720000px;}
.ws49{word-spacing:-18.576000px;}
.ws1e{word-spacing:-18.288000px;}
.ws2e{word-spacing:-18.216000px;}
.ws43{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.000000px;}
.ws42{word-spacing:-17.928000px;}
.ws46{word-spacing:-17.856000px;}
.ws1f{word-spacing:-17.784000px;}
.ws19{word-spacing:-17.712000px;}
.ws47{word-spacing:-17.568000px;}
.ws4d{word-spacing:-15.300000px;}
.ws31{word-spacing:-15.238800px;}
.ws16{word-spacing:-15.199800px;}
.ws2f{word-spacing:-15.179040px;}
.ws48{word-spacing:-15.120000px;}
.ws1a{word-spacing:-15.093600px;}
.ws17{word-spacing:-15.046800px;}
.ws14{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.886720px;}
.ws4c{word-spacing:-14.833200px;}
.ws15{word-spacing:-14.733600px;}
.ws30{word-spacing:-14.700960px;}
.ws41{word-spacing:-14.680200px;}
.ws1b{word-spacing:-14.580000px;}
.ws1d{word-spacing:-13.500000px;}
.ws4a{word-spacing:-13.140000px;}
.ws1c{word-spacing:-12.060000px;}
.ws25{word-spacing:-0.298800px;}
.ws3f{word-spacing:-0.239040px;}
.ws2b{word-spacing:-0.179280px;}
.ws34{word-spacing:-0.119520px;}
.ws2{word-spacing:0.000000px;}
.ws28{word-spacing:0.059760px;}
.ws40{word-spacing:0.088310px;}
.ws3e{word-spacing:0.119520px;}
.ws2c{word-spacing:0.298800px;}
.ws39{word-spacing:0.537840px;}
.ws26{word-spacing:5.557680px;}
.ws2a{word-spacing:5.796720px;}
.ws29{word-spacing:5.856480px;}
.ws27{word-spacing:6.035760px;}
.ws37{word-spacing:6.991920px;}
.ws35{word-spacing:7.709040px;}
.ws36{word-spacing:8.007840px;}
.ws33{word-spacing:8.067600px;}
.ws22{word-spacing:9.561600px;}
.ws23{word-spacing:9.920160px;}
.ws21{word-spacing:10.218960px;}
.ws24{word-spacing:10.995840px;}
.ws3a{word-spacing:11.593440px;}
.ws3b{word-spacing:12.071520px;}
.ws38{word-spacing:12.370320px;}
.ws3c{word-spacing:13.087440px;}
.ws3d{word-spacing:13.266720px;}
.ws4b{word-spacing:27.489600px;}
.ws32{word-spacing:1210.790714px;}
._d{margin-left:-8.208000px;}
._5{margin-left:-6.402240px;}
._7{margin-left:-4.679312px;}
._0{margin-left:-3.082560px;}
._4{margin-left:-1.139040px;}
._1{width:1.044720px;}
._25{width:2.047139px;}
._2{width:3.058660px;}
._6{width:4.858359px;}
._10{width:6.261861px;}
._f{width:7.495790px;}
._c{width:8.753441px;}
._b{width:10.293693px;}
._a{width:11.563317px;}
._11{width:12.956160px;}
._18{width:14.743680px;}
._17{width:16.080240px;}
._e{width:17.339040px;}
._14{width:18.478560px;}
._15{width:19.512720px;}
._16{width:21.517680px;}
._12{width:22.659600px;}
._13{width:24.284640px;}
._8{width:26.132578px;}
._3{width:27.167919px;}
._19{width:28.287503px;}
._1a{width:30.168000px;}
._21{width:31.210080px;}
._29{width:32.904960px;}
._28{width:34.019040px;}
._20{width:35.208000px;}
._1c{width:36.601920px;}
._1b{width:37.643040px;}
._1d{width:38.688000px;}
._1e{width:40.296000px;}
._9{width:41.499337px;}
._22{width:51.096000px;}
._2a{width:52.704000px;}
._2b{width:53.712000px;}
._23{width:63.720000px;}
._24{width:65.003040px;}
._26{width:93.888000px;}
._27{width:94.968000px;}
._1f{width:846.259440px;}
.fc8{color:rgb(0,112,192);}
.fc7{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(0,0,128);}
.fc3{color:rgb(8,82,149);}
.fc1{color:rgb(68,114,196);}
.fc6{color:rgb(35,31,32);}
.fc2{color:rgb(189,52,5);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fsf{font-size:36.000000px;}
.fs13{font-size:38.880000px;}
.fsd{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsb{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:77.760000px;}
.fs5{font-size:81.360000px;}
.fs7{font-size:84.240000px;}
.fs12{font-size:88.192200px;}
.fs11{font-size:88.309800px;}
.fs0{font-size:95.760000px;}
.fs14{font-size:102.600000px;}
.fsc{font-size:108.000000px;}
.fsa{font-size:120.240000px;}
.fs10{font-size:131.685000px;}
.fs6{font-size:141.120000px;}
.fs3{font-size:285.120000px;}
.y0{bottom:0.000000px;}
.y1f3{bottom:7.726500px;}
.y17e{bottom:34.834975px;}
.y17f{bottom:37.370501px;}
.y12c{bottom:37.572750px;}
.y10b{bottom:57.397350px;}
.y38{bottom:57.420000px;}
.y10a{bottom:77.017350px;}
.y71{bottom:77.040000px;}
.y9{bottom:77.580000px;}
.y19a{bottom:109.476000px;}
.y1ac{bottom:110.916000px;}
.y1d3{bottom:111.636000px;}
.y12b{bottom:112.142190px;}
.y200{bottom:115.236000px;}
.y177{bottom:117.904830px;}
.ya3{bottom:118.836000px;}
.y6e{bottom:119.736000px;}
.y107{bottom:119.916000px;}
.y37{bottom:120.636000px;}
.y1f2{bottom:122.033670px;}
.y8{bottom:122.796000px;}
.y145{bottom:125.496000px;}
.y199{bottom:126.576000px;}
.y1ab{bottom:128.196000px;}
.yd5{bottom:128.916000px;}
.y12a{bottom:129.427770px;}
.y198{bottom:131.796000px;}
.y1d2{bottom:132.336000px;}
.y176{bottom:135.190410px;}
.y1ff{bottom:135.936000px;}
.y6d{bottom:137.016000px;}
.ya2{bottom:138.816000px;}
.y1f1{bottom:139.319250px;}
.y36{bottom:139.896000px;}
.y106{bottom:140.616000px;}
.y197{bottom:145.116000px;}
.y1aa{bottom:145.476000px;}
.y144{bottom:146.196000px;}
.y129{bottom:146.713350px;}
.yd4{bottom:149.616000px;}
.y175{bottom:152.281770px;}
.y1d1{bottom:153.030000px;}
.y6c{bottom:154.110000px;}
.ya1{bottom:155.910000px;}
.y1f0{bottom:156.589890px;}
.y1fe{bottom:156.630000px;}
.y35{bottom:160.590000px;}
.y105{bottom:161.310000px;}
.y7{bottom:161.850000px;}
.y1a9{bottom:164.010000px;}
.y143{bottom:166.890000px;}
.y174{bottom:169.567350px;}
.yd3{bottom:170.310000px;}
.y6b{bottom:171.390000px;}
.ya0{bottom:173.190000px;}
.y1ef{bottom:173.696190px;}
.y1d0{bottom:173.730000px;}
.y12e{bottom:176.549295px;}
.y1fd{bottom:177.330000px;}
.y12f{bottom:177.471090px;}
.y128{bottom:178.195350px;}
.y104{bottom:182.010000px;}
.y34{bottom:184.710000px;}
.y173{bottom:187.555350px;}
.y142{bottom:187.590000px;}
.y1a8{bottom:188.130000px;}
.y6{bottom:188.490000px;}
.y6a{bottom:188.670000px;}
.y1ee{bottom:190.981770px;}
.yd2{bottom:191.010000px;}
.y9f{bottom:191.190000px;}
.y178{bottom:192.844500px;}
.y1cf{bottom:194.430000px;}
.y1fc{bottom:198.030000px;}
.y103{bottom:202.710000px;}
.y69{bottom:205.950000px;}
.y172{bottom:208.255350px;}
.y1ed{bottom:208.267350px;}
.y141{bottom:208.290000px;}
.y5{bottom:211.710000px;}
.y127{bottom:212.575350px;}
.y33{bottom:212.970000px;}
.y9e{bottom:213.150000px;}
.y1ce{bottom:215.130000px;}
.y1fb{bottom:218.730000px;}
.y68{bottom:223.230000px;}
.y102{bottom:223.410000px;}
.y171{bottom:228.955350px;}
.y140{bottom:228.990000px;}
.y4{bottom:230.610000px;}
.yd1{bottom:232.410000px;}
.y32{bottom:233.670000px;}
.y1cd{bottom:235.830000px;}
.y1a7{bottom:239.430000px;}
.y1ec{bottom:239.917350px;}
.y67{bottom:240.510000px;}
.y9d{bottom:240.870000px;}
.y101{bottom:244.110000px;}
.y126{bottom:246.955350px;}
.y170{bottom:249.655350px;}
.y13f{bottom:249.690000px;}
.yd0{bottom:253.110000px;}
.y31{bottom:254.370000px;}
.y1cc{bottom:256.530000px;}
.y66{bottom:257.610000px;}
.y1a6{bottom:260.130000px;}
.y100{bottom:264.810000px;}
.y9c{bottom:268.410000px;}
.y16f{bottom:270.355350px;}
.y13e{bottom:270.390000px;}
.ycf{bottom:273.810000px;}
.y1eb{bottom:274.117350px;}
.y65{bottom:274.890000px;}
.y1cb{bottom:277.230000px;}
.y30{bottom:278.490000px;}
.y1a5{bottom:280.650000px;}
.y1fa{bottom:280.830000px;}
.y125{bottom:281.335350px;}
.y181{bottom:281.656950px;}
.yff{bottom:285.510000px;}
.y16e{bottom:291.055350px;}
.y13d{bottom:291.090000px;}
.y64{bottom:292.170000px;}
.yce{bottom:294.510000px;}
.y9b{bottom:294.690000px;}
.y1ca{bottom:297.930000px;}
.y2f{bottom:299.190000px;}
.y1f9{bottom:300.810000px;}
.y1a4{bottom:301.350000px;}
.yfe{bottom:306.210000px;}
.y1ea{bottom:308.497350px;}
.y63{bottom:309.450000px;}
.y16d{bottom:311.755350px;}
.y13c{bottom:311.790000px;}
.y1f8{bottom:314.850000px;}
.ycd{bottom:315.210000px;}
.y9a{bottom:315.390000px;}
.y124{bottom:315.535350px;}
.y1c9{bottom:318.630000px;}
.y2e{bottom:319.890000px;}
.y1a3{bottom:322.050000px;}
.y62{bottom:326.730000px;}
.yfd{bottom:326.910000px;}
.y16c{bottom:332.455350px;}
.y13b{bottom:332.490000px;}
.ycc{bottom:335.910000px;}
.y99{bottom:336.090000px;}
.y1c8{bottom:339.330000px;}
.y2d{bottom:340.590000px;}
.y1a2{bottom:342.750000px;}
.y1e9{bottom:342.877350px;}
.y61{bottom:344.010000px;}
.y184{bottom:345.794727px;}
.y180{bottom:347.123556px;}
.yfc{bottom:347.610000px;}
.y123{bottom:349.915350px;}
.y16b{bottom:353.155350px;}
.y13a{bottom:353.190000px;}
.ycb{bottom:356.610000px;}
.y98{bottom:356.790000px;}
.y17d{bottom:359.360223px;}
.y1c7{bottom:360.075000px;}
.y60{bottom:361.155000px;}
.y2c{bottom:361.335000px;}
.y1a1{bottom:363.495000px;}
.yfb{bottom:368.355000px;}
.y16a{bottom:373.891350px;}
.y139{bottom:373.935000px;}
.y1e8{bottom:377.311350px;}
.yca{bottom:377.355000px;}
.y97{bottom:377.535000px;}
.y5f{bottom:378.435000px;}
.y1c6{bottom:380.775000px;}
.y2b{bottom:382.035000px;}
.y1a0{bottom:384.195000px;}
.y122{bottom:384.331350px;}
.yfa{bottom:389.055000px;}
.y1f7{bottom:390.750150px;}
.y1f4{bottom:393.289500px;}
.y169{bottom:394.591350px;}
.y138{bottom:394.635000px;}
.y5e{bottom:395.715000px;}
.yc9{bottom:398.055000px;}
.y96{bottom:398.235000px;}
.y1c5{bottom:401.475000px;}
.y2a{bottom:402.195000px;}
.y19f{bottom:404.175000px;}
.yf9{bottom:409.035000px;}
.y183{bottom:410.638042px;}
.y1e7{bottom:411.511350px;}
.y5d{bottom:413.715000px;}
.y168{bottom:415.291350px;}
.y137{bottom:415.335000px;}
.y121{bottom:418.711350px;}
.yc8{bottom:418.755000px;}
.y95{bottom:418.935000px;}
.y29{bottom:421.635000px;}
.y19e{bottom:422.175000px;}
.yf8{bottom:426.315000px;}
.y5c{bottom:434.955000px;}
.y167{bottom:435.991350px;}
.y136{bottom:436.035000px;}
.yc7{bottom:439.455000px;}
.y94{bottom:439.635000px;}
.y19d{bottom:442.875000px;}
.yf7{bottom:443.595000px;}
.y28{bottom:443.955000px;}
.y1e6{bottom:445.891350px;}
.y120{bottom:452.911350px;}
.y166{bottom:456.691350px;}
.y135{bottom:456.735000px;}
.y5b{bottom:459.075000px;}
.yc6{bottom:460.155000px;}
.y93{bottom:460.335000px;}
.yf6{bottom:460.875000px;}
.y1c4{bottom:463.575000px;}
.y19c{bottom:465.015000px;}
.y27{bottom:465.375000px;}
.y165{bottom:477.391350px;}
.y134{bottom:477.435000px;}
.yf5{bottom:477.975000px;}
.y1e5{bottom:480.271350px;}
.yc5{bottom:480.855000px;}
.y92{bottom:481.035000px;}
.y5a{bottom:482.655000px;}
.y1c3{bottom:484.275000px;}
.y11f{bottom:487.291350px;}
.y26{bottom:488.775000px;}
.y19b{bottom:492.555000px;}
.yf4{bottom:495.255000px;}
.y164{bottom:498.091350px;}
.y133{bottom:498.135000px;}
.yc4{bottom:501.555000px;}
.y91{bottom:501.735000px;}
.y59{bottom:504.975000px;}
.y25{bottom:509.475000px;}
.yf3{bottom:512.535000px;}
.y1e4{bottom:514.651350px;}
.y163{bottom:518.791350px;}
.y132{bottom:518.835000px;}
.y11e{bottom:521.671350px;}
.yc3{bottom:522.255000px;}
.y90{bottom:522.435000px;}
.y58{bottom:524.955000px;}
.y1c2{bottom:525.675000px;}
.y24{bottom:530.175000px;}
.yf2{bottom:530.535000px;}
.y162{bottom:539.491350px;}
.y131{bottom:539.535000px;}
.y17b{bottom:541.544025px;}
.y57{bottom:542.235000px;}
.yc2{bottom:542.955000px;}
.y8f{bottom:543.135000px;}
.y1c1{bottom:546.375000px;}
.y1e3{bottom:548.851350px;}
.y17a{bottom:549.172650px;}
.y23{bottom:552.495000px;}
.y11d{bottom:556.051350px;}
.y56{bottom:559.515000px;}
.y161{bottom:560.191350px;}
.yf1{bottom:560.235000px;}
.yc1{bottom:563.655000px;}
.y8e{bottom:563.835000px;}
.y21b{bottom:564.915000px;}
.y202{bottom:566.355000px;}
.y1c0{bottom:567.075000px;}
.y55{bottom:576.795000px;}
.y22{bottom:579.495000px;}
.y160{bottom:580.891350px;}
.yf0{bottom:580.935000px;}
.y1e2{bottom:583.231350px;}
.y196{bottom:584.175000px;}
.yc0{bottom:584.355000px;}
.y8d{bottom:584.535000px;}
.y1bf{bottom:587.775000px;}
.y11c{bottom:590.251350px;}
.y21a{bottom:592.635000px;}
.y54{bottom:594.075000px;}
.y15f{bottom:601.591350px;}
.yef{bottom:601.635000px;}
.y21{bottom:603.615000px;}
.y194{bottom:604.875000px;}
.ybf{bottom:605.055000px;}
.y8c{bottom:605.235000px;}
.y1be{bottom:608.475000px;}
.y195{bottom:610.815000px;}
.y53{bottom:611.175000px;}
.y1e1{bottom:617.647350px;}
.y219{bottom:618.945000px;}
.y15e{bottom:622.327350px;}
.yee{bottom:622.365000px;}
.y11b{bottom:624.667350px;}
.y193{bottom:625.605000px;}
.ybe{bottom:625.785000px;}
.y8b{bottom:625.965000px;}
.y52{bottom:628.485000px;}
.y1bd{bottom:629.205000px;}
.y218{bottom:639.645000px;}
.y20{bottom:640.725000px;}
.y15d{bottom:643.027350px;}
.yed{bottom:643.065000px;}
.y51{bottom:645.765000px;}
.y192{bottom:646.305000px;}
.ybd{bottom:646.485000px;}
.y8a{bottom:646.665000px;}
.y1bc{bottom:649.905000px;}
.y1e0{bottom:652.027350px;}
.y11a{bottom:659.047350px;}
.y217{bottom:660.345000px;}
.y12d{bottom:662.862000px;}
.y50{bottom:663.045000px;}
.y15c{bottom:663.727350px;}
.yec{bottom:663.765000px;}
.y130{bottom:665.594464px;}
.y191{bottom:667.005000px;}
.ybc{bottom:667.185000px;}
.y89{bottom:667.365000px;}
.y1bb{bottom:670.605000px;}
.y1f{bottom:674.565000px;}
.y4f{bottom:680.325000px;}
.y216{bottom:681.045000px;}
.y15b{bottom:684.427350px;}
.yeb{bottom:684.465000px;}
.y1df{bottom:686.227350px;}
.y190{bottom:687.705000px;}
.ybb{bottom:687.885000px;}
.y88{bottom:688.065000px;}
.y1ba{bottom:691.305000px;}
.y119{bottom:693.427350px;}
.y1e{bottom:695.265000px;}
.y4e{bottom:697.425000px;}
.y215{bottom:701.745000px;}
.y15a{bottom:705.127350px;}
.yea{bottom:705.165000px;}
.y18f{bottom:708.405000px;}
.yba{bottom:708.585000px;}
.y87{bottom:708.765000px;}
.y1b9{bottom:712.005000px;}
.y4d{bottom:714.705000px;}
.y1de{bottom:720.607350px;}
.y214{bottom:722.445000px;}
.y159{bottom:725.827350px;}
.ye9{bottom:725.865000px;}
.y118{bottom:727.627350px;}
.y1d{bottom:729.105000px;}
.yb9{bottom:729.285000px;}
.y86{bottom:729.465000px;}
.y4c{bottom:731.985000px;}
.y1b8{bottom:732.705000px;}
.y213{bottom:743.145000px;}
.y158{bottom:746.527350px;}
.ye8{bottom:746.565000px;}
.y4b{bottom:749.265000px;}
.y18e{bottom:749.805000px;}
.yb8{bottom:749.985000px;}
.y85{bottom:750.165000px;}
.y1b7{bottom:753.405000px;}
.y1c{bottom:753.945000px;}
.y1dd{bottom:754.987350px;}
.y117{bottom:762.007350px;}
.y212{bottom:763.845000px;}
.y4a{bottom:766.545000px;}
.y157{bottom:767.227350px;}
.ye7{bottom:767.265000px;}
.y18d{bottom:770.505000px;}
.yb7{bottom:770.685000px;}
.y84{bottom:770.865000px;}
.y1b6{bottom:774.105000px;}
.y49{bottom:783.825000px;}
.y211{bottom:784.545000px;}
.y156{bottom:787.927350px;}
.ye6{bottom:787.965000px;}
.y1dc{bottom:789.367350px;}
.y18c{bottom:791.205000px;}
.yb6{bottom:791.385000px;}
.y83{bottom:791.565000px;}
.y1b{bottom:793.365000px;}
.y1b5{bottom:794.805000px;}
.y116{bottom:796.387350px;}
.y48{bottom:800.925000px;}
.y210{bottom:805.245000px;}
.y155{bottom:808.627350px;}
.ye5{bottom:808.665000px;}
.y18b{bottom:811.905000px;}
.yb5{bottom:812.085000px;}
.y82{bottom:812.265000px;}
.y1b4{bottom:815.505000px;}
.y47{bottom:818.205000px;}
.y1db{bottom:823.747350px;}
.y20f{bottom:825.945000px;}
.y17c{bottom:828.851400px;}
.y154{bottom:829.327350px;}
.ye4{bottom:829.365000px;}
.y182{bottom:829.595089px;}
.y179{bottom:830.235450px;}
.y115{bottom:830.767350px;}
.y18a{bottom:832.605000px;}
.yb4{bottom:832.785000px;}
.y81{bottom:832.965000px;}
.y46{bottom:835.485000px;}
.y1b3{bottom:836.205000px;}
.y1a{bottom:836.385000px;}
.y20e{bottom:846.645000px;}
.y153{bottom:850.027350px;}
.ye3{bottom:850.065000px;}
.y189{bottom:852.585000px;}
.y45{bottom:852.765000px;}
.yb3{bottom:853.485000px;}
.y80{bottom:853.665000px;}
.y1b2{bottom:856.905000px;}
.y1da{bottom:857.947350px;}
.y19{bottom:858.705000px;}
.y114{bottom:864.967350px;}
.y20d{bottom:867.345000px;}
.y188{bottom:869.865000px;}
.y44{bottom:870.045000px;}
.y152{bottom:870.727350px;}
.ye2{bottom:870.765000px;}
.yb2{bottom:874.185000px;}
.y7f{bottom:874.365000px;}
.y1b1{bottom:877.650000px;}
.y18{bottom:881.070000px;}
.y1f5{bottom:883.409700px;}
.y1f6{bottom:885.872100px;}
.y187{bottom:887.190000px;}
.y43{bottom:887.370000px;}
.y20c{bottom:888.090000px;}
.y151{bottom:891.481350px;}
.ye1{bottom:891.510000px;}
.y1d9{bottom:892.381350px;}
.yb1{bottom:894.930000px;}
.y7e{bottom:895.110000px;}
.y1b0{bottom:898.350000px;}
.y113{bottom:899.401350px;}
.y17{bottom:904.470000px;}
.y186{bottom:905.190000px;}
.y20b{bottom:908.790000px;}
.y150{bottom:912.181350px;}
.ye0{bottom:912.210000px;}
.yb0{bottom:915.630000px;}
.y7d{bottom:915.810000px;}
.y1af{bottom:919.050000px;}
.y185{bottom:921.930000px;}
.y42{bottom:922.470000px;}
.y1d8{bottom:926.761350px;}
.y20a{bottom:929.490000px;}
.y14f{bottom:932.881350px;}
.ydf{bottom:932.910000px;}
.y112{bottom:933.781350px;}
.yaf{bottom:936.330000px;}
.y7c{bottom:936.510000px;}
.y16{bottom:936.870000px;}
.y1ae{bottom:939.030000px;}
.y41{bottom:943.170000px;}
.y209{bottom:950.190000px;}
.y14e{bottom:953.581350px;}
.yde{bottom:953.610000px;}
.y1ad{bottom:956.310000px;}
.y15{bottom:956.670000px;}
.yae{bottom:957.030000px;}
.y7b{bottom:957.210000px;}
.y1d7{bottom:961.141350px;}
.y40{bottom:963.870000px;}
.y111{bottom:968.161350px;}
.y208{bottom:970.890000px;}
.y14d{bottom:974.281350px;}
.ydd{bottom:974.310000px;}
.y14{bottom:976.290000px;}
.y201{bottom:977.010000px;}
.yad{bottom:977.730000px;}
.y7a{bottom:977.910000px;}
.y3f{bottom:984.570000px;}
.y207{bottom:990.690000px;}
.y14c{bottom:994.981350px;}
.ydc{bottom:995.010000px;}
.y1d6{bottom:995.341350px;}
.y13{bottom:995.910000px;}
.yac{bottom:998.430000px;}
.y79{bottom:998.610000px;}
.y110{bottom:1002.541350px;}
.y3e{bottom:1005.270000px;}
.y206{bottom:1007.970000px;}
.y12{bottom:1015.530000px;}
.y14b{bottom:1015.681350px;}
.ydb{bottom:1015.710000px;}
.yab{bottom:1018.410000px;}
.y78{bottom:1019.310000px;}
.y205{bottom:1025.250000px;}
.y3d{bottom:1025.970000px;}
.y1d5{bottom:1029.721350px;}
.y11{bottom:1035.330000px;}
.yaa{bottom:1035.690000px;}
.y14a{bottom:1036.381350px;}
.yda{bottom:1036.410000px;}
.y10f{bottom:1036.741350px;}
.y204{bottom:1042.530000px;}
.y3c{bottom:1046.670000px;}
.ya9{bottom:1052.790000px;}
.y77{bottom:1053.510000px;}
.y10{bottom:1054.950000px;}
.y149{bottom:1057.081350px;}
.yd9{bottom:1057.110000px;}
.y203{bottom:1059.810000px;}
.y1d4{bottom:1064.101350px;}
.y3b{bottom:1069.350000px;}
.ya8{bottom:1070.070000px;}
.y10e{bottom:1071.121350px;}
.y76{bottom:1073.490000px;}
.y148{bottom:1077.781350px;}
.yd8{bottom:1077.810000px;}
.yf{bottom:1083.030000px;}
.ya7{bottom:1087.350000px;}
.y75{bottom:1090.770000px;}
.y3{bottom:1091.850000px;}
.y147{bottom:1098.481350px;}
.yd7{bottom:1098.510000px;}
.y3a{bottom:1100.310000px;}
.ye{bottom:1102.830000px;}
.ya6{bottom:1104.630000px;}
.y10d{bottom:1105.501350px;}
.y74{bottom:1108.050000px;}
.y146{bottom:1119.181350px;}
.yd6{bottom:1119.210000px;}
.yd{bottom:1120.110000px;}
.ya5{bottom:1121.910000px;}
.y73{bottom:1125.330000px;}
.y39{bottom:1131.450000px;}
.yc{bottom:1137.240000px;}
.y10c{bottom:1139.917350px;}
.ya4{bottom:1139.940000px;}
.y72{bottom:1142.640000px;}
.yb{bottom:1155.060000px;}
.y2{bottom:1167.660000px;}
.y109{bottom:1169.977350px;}
.y70{bottom:1170.000000px;}
.y1{bottom:1183.320000px;}
.y108{bottom:1190.137350px;}
.y6f{bottom:1190.160000px;}
.ya{bottom:1192.320000px;}
.h3{height:27.360703px;}
.h21{height:34.855313px;}
.h20{height:42.845977px;}
.h18{height:44.149219px;}
.h22{height:51.996094px;}
.hb{height:53.573906px;}
.h5{height:54.069961px;}
.h23{height:59.343750px;}
.h10{height:59.383125px;}
.h1f{height:61.235014px;}
.h1e{height:61.316668px;}
.hc{height:61.965000px;}
.h14{height:63.949219px;}
.ha{height:64.546875px;}
.h1c{height:64.580955px;}
.hd{height:65.144531px;}
.h11{height:65.884219px;}
.h1b{height:67.824844px;}
.h25{height:69.335156px;}
.h16{height:70.606406px;}
.h6{height:72.937969px;}
.h13{height:74.820586px;}
.hf{height:75.519844px;}
.h9{height:76.219102px;}
.h15{height:85.052461px;}
.h7{height:85.847344px;}
.h2{height:86.642227px;}
.h1a{height:88.990254px;}
.h12{height:95.923828px;}
.he{height:107.793281px;}
.h8{height:126.511875px;}
.h4{height:257.972344px;}
.h1d{height:997.536000px;}
.h19{height:1157.880750px;}
.h24{height:1202.736000px;}
.h17{height:1262.835000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:688.246950px;}
.w4{width:819.449400px;}
.w7{width:851.160300px;}
.w3{width:892.914000px;}
.w6{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:20.876700px;}
.x20{left:26.526029px;}
.x1a{left:36.675600px;}
.x24{left:43.419247px;}
.x2{left:44.999987px;}
.x1{left:58.139987px;}
.x5{left:95.975987px;}
.x2f{left:102.709200px;}
.x1b{left:104.412000px;}
.xf{left:106.235987px;}
.x2c{left:111.095987px;}
.x1e{left:117.535950px;}
.x18{left:127.475987px;}
.x32{left:133.235987px;}
.x17{left:148.715987px;}
.x19{left:159.329987px;}
.x13{left:208.109987px;}
.x26{left:210.036352px;}
.x28{left:212.660070px;}
.x14{left:239.609987px;}
.x7{left:244.469987px;}
.x11{left:262.694987px;}
.x12{left:270.074987px;}
.x31{left:274.574987px;}
.x1f{left:282.944850px;}
.x23{left:286.454902px;}
.x34{left:288.974987px;}
.x8{left:307.514987px;}
.xe{left:321.554987px;}
.x2a{left:332.894973px;}
.x2b{left:339.014987px;}
.x33{left:344.594987px;}
.xb{left:346.574987px;}
.xa{left:369.614987px;}
.x10{left:370.694987px;}
.x1d{left:419.698811px;}
.xc{left:424.694987px;}
.x2d{left:437.504987px;}
.x16{left:442.004987px;}
.x15{left:446.504987px;}
.x1c{left:454.134439px;}
.x22{left:472.628637px;}
.x21{left:482.087250px;}
.xd{left:490.064987px;}
.x25{left:512.513550px;}
.x27{left:575.526877px;}
.x9{left:584.924987px;}
.x6{left:653.909987px;}
.x30{left:721.409987px;}
.x4{left:763.349987px;}
.x29{left:786.779987px;}
.x3{left:834.839987px;}
@media print{
.v4{vertical-align:-7.368948pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls4f{letter-spacing:-2.560000pt;}
.ls14{letter-spacing:-0.768000pt;}
.ls37{letter-spacing:-0.690560pt;}
.ls2d{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.512000pt;}
.ls23{letter-spacing:-0.480000pt;}
.ls44{letter-spacing:-0.478080pt;}
.ls15{letter-spacing:-0.384000pt;}
.ls2c{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.311467pt;}
.ls26{letter-spacing:-0.256000pt;}
.ls48{letter-spacing:-0.230933pt;}
.ls45{letter-spacing:-0.212480pt;}
.ls31{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.166933pt;}
.ls39{letter-spacing:-0.159360pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls56{letter-spacing:-0.094933pt;}
.ls46{letter-spacing:-0.078498pt;}
.lse{letter-spacing:-0.077867pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls38{letter-spacing:-0.053120pt;}
.ls24{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.033280pt;}
.ls30{letter-spacing:0.064000pt;}
.ls22{letter-spacing:0.094933pt;}
.ls43{letter-spacing:0.106240pt;}
.ls29{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.113155pt;}
.ls13{letter-spacing:0.114133pt;}
.ls7{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.136533pt;}
.ls34{letter-spacing:0.159360pt;}
.ls1e{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.192000pt;}
.ls32{letter-spacing:0.212480pt;}
.ls2f{letter-spacing:0.224000pt;}
.ls21{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.317333pt;}
.ls17{letter-spacing:0.320000pt;}
.ls52{letter-spacing:0.448000pt;}
.ls53{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.570667pt;}
.ls28{letter-spacing:0.640000pt;}
.ls27{letter-spacing:0.704000pt;}
.ls2e{letter-spacing:0.768000pt;}
.ls1c{letter-spacing:0.800000pt;}
.lsd{letter-spacing:0.832000pt;}
.ls54{letter-spacing:0.960000pt;}
.ls4e{letter-spacing:1.280000pt;}
.ls3b{letter-spacing:2.560000pt;}
.ls3a{letter-spacing:3.200000pt;}
.ls6{letter-spacing:3.328000pt;}
.ls4{letter-spacing:3.503360pt;}
.ls50{letter-spacing:3.840000pt;}
.ls59{letter-spacing:4.458667pt;}
.ls4c{letter-spacing:4.480000pt;}
.ls8{letter-spacing:4.608000pt;}
.ls35{letter-spacing:5.258880pt;}
.ls36{letter-spacing:5.418240pt;}
.ls2a{letter-spacing:5.760000pt;}
.ls1d{letter-spacing:5.920000pt;}
.ls49{letter-spacing:7.040000pt;}
.ls3e{letter-spacing:7.680000pt;}
.ls5{letter-spacing:7.918187pt;}
.ls1a{letter-spacing:8.480000pt;}
.ls33{letter-spacing:8.499200pt;}
.ls4d{letter-spacing:9.600000pt;}
.ls42{letter-spacing:11.048960pt;}
.ls2b{letter-spacing:11.520000pt;}
.ls40{letter-spacing:11.670464pt;}
.ls41{letter-spacing:11.686400pt;}
.ls19{letter-spacing:13.600000pt;}
.ls3c{letter-spacing:14.080000pt;}
.ls5a{letter-spacing:14.720000pt;}
.ls4a{letter-spacing:15.360000pt;}
.ls4b{letter-spacing:17.280000pt;}
.ls3d{letter-spacing:18.560000pt;}
.ls51{letter-spacing:19.200000pt;}
.ls55{letter-spacing:24.488320pt;}
.ls47{letter-spacing:26.880000pt;}
.ls57{letter-spacing:30.186667pt;}
.ls58{letter-spacing:31.360000pt;}
.ls3f{letter-spacing:754.831787pt;}
.ls0{letter-spacing:1740.325547pt;}
.ws4e{word-spacing:-85.120000pt;}
.ws0{word-spacing:-71.026987pt;}
.ws2d{word-spacing:-64.000000pt;}
.ws11{word-spacing:-24.192000pt;}
.ws12{word-spacing:-24.000000pt;}
.ws1{word-spacing:-23.696640pt;}
.ws44{word-spacing:-21.600000pt;}
.ws4{word-spacing:-20.816640pt;}
.ws3{word-spacing:-20.505173pt;}
.ws45{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.624000pt;}
.ws5{word-spacing:-18.325333pt;}
.ws10{word-spacing:-18.109333pt;}
.wsc{word-spacing:-18.048000pt;}
.wsd{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.728000pt;}
.ws7{word-spacing:-17.714133pt;}
.ws8{word-spacing:-17.664000pt;}
.ws9{word-spacing:-17.625067pt;}
.wsf{word-spacing:-17.408000pt;}
.wsb{word-spacing:-17.280000pt;}
.wse{word-spacing:-17.024000pt;}
.ws20{word-spacing:-16.640000pt;}
.ws49{word-spacing:-16.512000pt;}
.ws1e{word-spacing:-16.256000pt;}
.ws2e{word-spacing:-16.192000pt;}
.ws43{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws42{word-spacing:-15.936000pt;}
.ws46{word-spacing:-15.872000pt;}
.ws1f{word-spacing:-15.808000pt;}
.ws19{word-spacing:-15.744000pt;}
.ws47{word-spacing:-15.616000pt;}
.ws4d{word-spacing:-13.600000pt;}
.ws31{word-spacing:-13.545600pt;}
.ws16{word-spacing:-13.510933pt;}
.ws2f{word-spacing:-13.492480pt;}
.ws48{word-spacing:-13.440000pt;}
.ws1a{word-spacing:-13.416533pt;}
.ws17{word-spacing:-13.374933pt;}
.ws14{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.232640pt;}
.ws4c{word-spacing:-13.185067pt;}
.ws15{word-spacing:-13.096533pt;}
.ws30{word-spacing:-13.067520pt;}
.ws41{word-spacing:-13.049067pt;}
.ws1b{word-spacing:-12.960000pt;}
.ws1d{word-spacing:-12.000000pt;}
.ws4a{word-spacing:-11.680000pt;}
.ws1c{word-spacing:-10.720000pt;}
.ws25{word-spacing:-0.265600pt;}
.ws3f{word-spacing:-0.212480pt;}
.ws2b{word-spacing:-0.159360pt;}
.ws34{word-spacing:-0.106240pt;}
.ws2{word-spacing:0.000000pt;}
.ws28{word-spacing:0.053120pt;}
.ws40{word-spacing:0.078498pt;}
.ws3e{word-spacing:0.106240pt;}
.ws2c{word-spacing:0.265600pt;}
.ws39{word-spacing:0.478080pt;}
.ws26{word-spacing:4.940160pt;}
.ws2a{word-spacing:5.152640pt;}
.ws29{word-spacing:5.205760pt;}
.ws27{word-spacing:5.365120pt;}
.ws37{word-spacing:6.215040pt;}
.ws35{word-spacing:6.852480pt;}
.ws36{word-spacing:7.118080pt;}
.ws33{word-spacing:7.171200pt;}
.ws22{word-spacing:8.499200pt;}
.ws23{word-spacing:8.817920pt;}
.ws21{word-spacing:9.083520pt;}
.ws24{word-spacing:9.774080pt;}
.ws3a{word-spacing:10.305280pt;}
.ws3b{word-spacing:10.730240pt;}
.ws38{word-spacing:10.995840pt;}
.ws3c{word-spacing:11.633280pt;}
.ws3d{word-spacing:11.792640pt;}
.ws4b{word-spacing:24.435200pt;}
.ws32{word-spacing:1076.258412pt;}
._d{margin-left:-7.296000pt;}
._5{margin-left:-5.690880pt;}
._7{margin-left:-4.159388pt;}
._0{margin-left:-2.740053pt;}
._4{margin-left:-1.012480pt;}
._1{width:0.928640pt;}
._25{width:1.819679pt;}
._2{width:2.718809pt;}
._6{width:4.318542pt;}
._10{width:5.566099pt;}
._f{width:6.662924pt;}
._c{width:7.780837pt;}
._b{width:9.149949pt;}
._a{width:10.278504pt;}
._11{width:11.516587pt;}
._18{width:13.105493pt;}
._17{width:14.293547pt;}
._e{width:15.412480pt;}
._14{width:16.425387pt;}
._15{width:17.344640pt;}
._16{width:19.126827pt;}
._12{width:20.141867pt;}
._13{width:21.586347pt;}
._8{width:23.228959pt;}
._3{width:24.149261pt;}
._19{width:25.144447pt;}
._1a{width:26.816000pt;}
._21{width:27.742293pt;}
._29{width:29.248853pt;}
._28{width:30.239147pt;}
._20{width:31.296000pt;}
._1c{width:32.535040pt;}
._1b{width:33.460480pt;}
._1d{width:34.389333pt;}
._1e{width:35.818667pt;}
._9{width:36.888300pt;}
._22{width:45.418667pt;}
._2a{width:46.848000pt;}
._2b{width:47.744000pt;}
._23{width:56.640000pt;}
._24{width:57.780480pt;}
._26{width:83.456000pt;}
._27{width:84.416000pt;}
._1f{width:752.230613pt;}
.fs2{font-size:26.880000pt;}
.fsf{font-size:32.000000pt;}
.fs13{font-size:34.560000pt;}
.fsd{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsb{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:69.120000pt;}
.fs5{font-size:72.320000pt;}
.fs7{font-size:74.880000pt;}
.fs12{font-size:78.393067pt;}
.fs11{font-size:78.497600pt;}
.fs0{font-size:85.120000pt;}
.fs14{font-size:91.200000pt;}
.fsc{font-size:96.000000pt;}
.fsa{font-size:106.880000pt;}
.fs10{font-size:117.053333pt;}
.fs6{font-size:125.440000pt;}
.fs3{font-size:253.440000pt;}
.y0{bottom:0.000000pt;}
.y1f3{bottom:6.868000pt;}
.y17e{bottom:30.964423pt;}
.y17f{bottom:33.218223pt;}
.y12c{bottom:33.398000pt;}
.y10b{bottom:51.019867pt;}
.y38{bottom:51.040000pt;}
.y10a{bottom:68.459867pt;}
.y71{bottom:68.480000pt;}
.y9{bottom:68.960000pt;}
.y19a{bottom:97.312000pt;}
.y1ac{bottom:98.592000pt;}
.y1d3{bottom:99.232000pt;}
.y12b{bottom:99.681947pt;}
.y200{bottom:102.432000pt;}
.y177{bottom:104.804293pt;}
.ya3{bottom:105.632000pt;}
.y6e{bottom:106.432000pt;}
.y107{bottom:106.592000pt;}
.y37{bottom:107.232000pt;}
.y1f2{bottom:108.474373pt;}
.y8{bottom:109.152000pt;}
.y145{bottom:111.552000pt;}
.y199{bottom:112.512000pt;}
.y1ab{bottom:113.952000pt;}
.yd5{bottom:114.592000pt;}
.y12a{bottom:115.046907pt;}
.y198{bottom:117.152000pt;}
.y1d2{bottom:117.632000pt;}
.y176{bottom:120.169253pt;}
.y1ff{bottom:120.832000pt;}
.y6d{bottom:121.792000pt;}
.ya2{bottom:123.392000pt;}
.y1f1{bottom:123.839333pt;}
.y36{bottom:124.352000pt;}
.y106{bottom:124.992000pt;}
.y197{bottom:128.992000pt;}
.y1aa{bottom:129.312000pt;}
.y144{bottom:129.952000pt;}
.y129{bottom:130.411867pt;}
.yd4{bottom:132.992000pt;}
.y175{bottom:135.361573pt;}
.y1d1{bottom:136.026667pt;}
.y6c{bottom:136.986667pt;}
.ya1{bottom:138.586667pt;}
.y1f0{bottom:139.191013pt;}
.y1fe{bottom:139.226667pt;}
.y35{bottom:142.746667pt;}
.y105{bottom:143.386667pt;}
.y7{bottom:143.866667pt;}
.y1a9{bottom:145.786667pt;}
.y143{bottom:148.346667pt;}
.y174{bottom:150.726533pt;}
.yd3{bottom:151.386667pt;}
.y6b{bottom:152.346667pt;}
.ya0{bottom:153.946667pt;}
.y1ef{bottom:154.396613pt;}
.y1d0{bottom:154.426667pt;}
.y12e{bottom:156.932707pt;}
.y1fd{bottom:157.626667pt;}
.y12f{bottom:157.752080pt;}
.y128{bottom:158.395867pt;}
.y104{bottom:161.786667pt;}
.y34{bottom:164.186667pt;}
.y173{bottom:166.715867pt;}
.y142{bottom:166.746667pt;}
.y1a8{bottom:167.226667pt;}
.y6{bottom:167.546667pt;}
.y6a{bottom:167.706667pt;}
.y1ee{bottom:169.761573pt;}
.yd2{bottom:169.786667pt;}
.y9f{bottom:169.946667pt;}
.y178{bottom:171.417333pt;}
.y1cf{bottom:172.826667pt;}
.y1fc{bottom:176.026667pt;}
.y103{bottom:180.186667pt;}
.y69{bottom:183.066667pt;}
.y172{bottom:185.115867pt;}
.y1ed{bottom:185.126533pt;}
.y141{bottom:185.146667pt;}
.y5{bottom:188.186667pt;}
.y127{bottom:188.955867pt;}
.y33{bottom:189.306667pt;}
.y9e{bottom:189.466667pt;}
.y1ce{bottom:191.226667pt;}
.y1fb{bottom:194.426667pt;}
.y68{bottom:198.426667pt;}
.y102{bottom:198.586667pt;}
.y171{bottom:203.515867pt;}
.y140{bottom:203.546667pt;}
.y4{bottom:204.986667pt;}
.yd1{bottom:206.586667pt;}
.y32{bottom:207.706667pt;}
.y1cd{bottom:209.626667pt;}
.y1a7{bottom:212.826667pt;}
.y1ec{bottom:213.259867pt;}
.y67{bottom:213.786667pt;}
.y9d{bottom:214.106667pt;}
.y101{bottom:216.986667pt;}
.y126{bottom:219.515867pt;}
.y170{bottom:221.915867pt;}
.y13f{bottom:221.946667pt;}
.yd0{bottom:224.986667pt;}
.y31{bottom:226.106667pt;}
.y1cc{bottom:228.026667pt;}
.y66{bottom:228.986667pt;}
.y1a6{bottom:231.226667pt;}
.y100{bottom:235.386667pt;}
.y9c{bottom:238.586667pt;}
.y16f{bottom:240.315867pt;}
.y13e{bottom:240.346667pt;}
.ycf{bottom:243.386667pt;}
.y1eb{bottom:243.659867pt;}
.y65{bottom:244.346667pt;}
.y1cb{bottom:246.426667pt;}
.y30{bottom:247.546667pt;}
.y1a5{bottom:249.466667pt;}
.y1fa{bottom:249.626667pt;}
.y125{bottom:250.075867pt;}
.y181{bottom:250.361733pt;}
.yff{bottom:253.786667pt;}
.y16e{bottom:258.715867pt;}
.y13d{bottom:258.746667pt;}
.y64{bottom:259.706667pt;}
.yce{bottom:261.786667pt;}
.y9b{bottom:261.946667pt;}
.y1ca{bottom:264.826667pt;}
.y2f{bottom:265.946667pt;}
.y1f9{bottom:267.386667pt;}
.y1a4{bottom:267.866667pt;}
.yfe{bottom:272.186667pt;}
.y1ea{bottom:274.219867pt;}
.y63{bottom:275.066667pt;}
.y16d{bottom:277.115867pt;}
.y13c{bottom:277.146667pt;}
.y1f8{bottom:279.866667pt;}
.ycd{bottom:280.186667pt;}
.y9a{bottom:280.346667pt;}
.y124{bottom:280.475867pt;}
.y1c9{bottom:283.226667pt;}
.y2e{bottom:284.346667pt;}
.y1a3{bottom:286.266667pt;}
.y62{bottom:290.426667pt;}
.yfd{bottom:290.586667pt;}
.y16c{bottom:295.515867pt;}
.y13b{bottom:295.546667pt;}
.ycc{bottom:298.586667pt;}
.y99{bottom:298.746667pt;}
.y1c8{bottom:301.626667pt;}
.y2d{bottom:302.746667pt;}
.y1a2{bottom:304.666667pt;}
.y1e9{bottom:304.779867pt;}
.y61{bottom:305.786667pt;}
.y184{bottom:307.373091pt;}
.y180{bottom:308.554272pt;}
.yfc{bottom:308.986667pt;}
.y123{bottom:311.035867pt;}
.y16b{bottom:313.915867pt;}
.y13a{bottom:313.946667pt;}
.ycb{bottom:316.986667pt;}
.y98{bottom:317.146667pt;}
.y17d{bottom:319.431310pt;}
.y1c7{bottom:320.066667pt;}
.y60{bottom:321.026667pt;}
.y2c{bottom:321.186667pt;}
.y1a1{bottom:323.106667pt;}
.yfb{bottom:327.426667pt;}
.y16a{bottom:332.347867pt;}
.y139{bottom:332.386667pt;}
.y1e8{bottom:335.387867pt;}
.yca{bottom:335.426667pt;}
.y97{bottom:335.586667pt;}
.y5f{bottom:336.386667pt;}
.y1c6{bottom:338.466667pt;}
.y2b{bottom:339.586667pt;}
.y1a0{bottom:341.506667pt;}
.y122{bottom:341.627867pt;}
.yfa{bottom:345.826667pt;}
.y1f7{bottom:347.333467pt;}
.y1f4{bottom:349.590667pt;}
.y169{bottom:350.747867pt;}
.y138{bottom:350.786667pt;}
.y5e{bottom:351.746667pt;}
.yc9{bottom:353.826667pt;}
.y96{bottom:353.986667pt;}
.y1c5{bottom:356.866667pt;}
.y2a{bottom:357.506667pt;}
.y19f{bottom:359.266667pt;}
.yf9{bottom:363.586667pt;}
.y183{bottom:365.011593pt;}
.y1e7{bottom:365.787867pt;}
.y5d{bottom:367.746667pt;}
.y168{bottom:369.147867pt;}
.y137{bottom:369.186667pt;}
.y121{bottom:372.187867pt;}
.yc8{bottom:372.226667pt;}
.y95{bottom:372.386667pt;}
.y29{bottom:374.786667pt;}
.y19e{bottom:375.266667pt;}
.yf8{bottom:378.946667pt;}
.y5c{bottom:386.626667pt;}
.y167{bottom:387.547867pt;}
.y136{bottom:387.586667pt;}
.yc7{bottom:390.626667pt;}
.y94{bottom:390.786667pt;}
.y19d{bottom:393.666667pt;}
.yf7{bottom:394.306667pt;}
.y28{bottom:394.626667pt;}
.y1e6{bottom:396.347867pt;}
.y120{bottom:402.587867pt;}
.y166{bottom:405.947867pt;}
.y135{bottom:405.986667pt;}
.y5b{bottom:408.066667pt;}
.yc6{bottom:409.026667pt;}
.y93{bottom:409.186667pt;}
.yf6{bottom:409.666667pt;}
.y1c4{bottom:412.066667pt;}
.y19c{bottom:413.346667pt;}
.y27{bottom:413.666667pt;}
.y165{bottom:424.347867pt;}
.y134{bottom:424.386667pt;}
.yf5{bottom:424.866667pt;}
.y1e5{bottom:426.907867pt;}
.yc5{bottom:427.426667pt;}
.y92{bottom:427.586667pt;}
.y5a{bottom:429.026667pt;}
.y1c3{bottom:430.466667pt;}
.y11f{bottom:433.147867pt;}
.y26{bottom:434.466667pt;}
.y19b{bottom:437.826667pt;}
.yf4{bottom:440.226667pt;}
.y164{bottom:442.747867pt;}
.y133{bottom:442.786667pt;}
.yc4{bottom:445.826667pt;}
.y91{bottom:445.986667pt;}
.y59{bottom:448.866667pt;}
.y25{bottom:452.866667pt;}
.yf3{bottom:455.586667pt;}
.y1e4{bottom:457.467867pt;}
.y163{bottom:461.147867pt;}
.y132{bottom:461.186667pt;}
.y11e{bottom:463.707867pt;}
.yc3{bottom:464.226667pt;}
.y90{bottom:464.386667pt;}
.y58{bottom:466.626667pt;}
.y1c2{bottom:467.266667pt;}
.y24{bottom:471.266667pt;}
.yf2{bottom:471.586667pt;}
.y162{bottom:479.547867pt;}
.y131{bottom:479.586667pt;}
.y17b{bottom:481.372466pt;}
.y57{bottom:481.986667pt;}
.yc2{bottom:482.626667pt;}
.y8f{bottom:482.786667pt;}
.y1c1{bottom:485.666667pt;}
.y1e3{bottom:487.867867pt;}
.y17a{bottom:488.153467pt;}
.y23{bottom:491.106667pt;}
.y11d{bottom:494.267867pt;}
.y56{bottom:497.346667pt;}
.y161{bottom:497.947867pt;}
.yf1{bottom:497.986667pt;}
.yc1{bottom:501.026667pt;}
.y8e{bottom:501.186667pt;}
.y21b{bottom:502.146667pt;}
.y202{bottom:503.426667pt;}
.y1c0{bottom:504.066667pt;}
.y55{bottom:512.706667pt;}
.y22{bottom:515.106667pt;}
.y160{bottom:516.347867pt;}
.yf0{bottom:516.386667pt;}
.y1e2{bottom:518.427867pt;}
.y196{bottom:519.266667pt;}
.yc0{bottom:519.426667pt;}
.y8d{bottom:519.586667pt;}
.y1bf{bottom:522.466667pt;}
.y11c{bottom:524.667867pt;}
.y21a{bottom:526.786667pt;}
.y54{bottom:528.066667pt;}
.y15f{bottom:534.747867pt;}
.yef{bottom:534.786667pt;}
.y21{bottom:536.546667pt;}
.y194{bottom:537.666667pt;}
.ybf{bottom:537.826667pt;}
.y8c{bottom:537.986667pt;}
.y1be{bottom:540.866667pt;}
.y195{bottom:542.946667pt;}
.y53{bottom:543.266667pt;}
.y1e1{bottom:549.019867pt;}
.y219{bottom:550.173333pt;}
.y15e{bottom:553.179867pt;}
.yee{bottom:553.213333pt;}
.y11b{bottom:555.259867pt;}
.y193{bottom:556.093333pt;}
.ybe{bottom:556.253333pt;}
.y8b{bottom:556.413333pt;}
.y52{bottom:558.653333pt;}
.y1bd{bottom:559.293333pt;}
.y218{bottom:568.573333pt;}
.y20{bottom:569.533333pt;}
.y15d{bottom:571.579867pt;}
.yed{bottom:571.613333pt;}
.y51{bottom:574.013333pt;}
.y192{bottom:574.493333pt;}
.ybd{bottom:574.653333pt;}
.y8a{bottom:574.813333pt;}
.y1bc{bottom:577.693333pt;}
.y1e0{bottom:579.579867pt;}
.y11a{bottom:585.819867pt;}
.y217{bottom:586.973333pt;}
.y12d{bottom:589.210667pt;}
.y50{bottom:589.373333pt;}
.y15c{bottom:589.979867pt;}
.yec{bottom:590.013333pt;}
.y130{bottom:591.639523pt;}
.y191{bottom:592.893333pt;}
.ybc{bottom:593.053333pt;}
.y89{bottom:593.213333pt;}
.y1bb{bottom:596.093333pt;}
.y1f{bottom:599.613333pt;}
.y4f{bottom:604.733333pt;}
.y216{bottom:605.373333pt;}
.y15b{bottom:608.379867pt;}
.yeb{bottom:608.413333pt;}
.y1df{bottom:609.979867pt;}
.y190{bottom:611.293333pt;}
.ybb{bottom:611.453333pt;}
.y88{bottom:611.613333pt;}
.y1ba{bottom:614.493333pt;}
.y119{bottom:616.379867pt;}
.y1e{bottom:618.013333pt;}
.y4e{bottom:619.933333pt;}
.y215{bottom:623.773333pt;}
.y15a{bottom:626.779867pt;}
.yea{bottom:626.813333pt;}
.y18f{bottom:629.693333pt;}
.yba{bottom:629.853333pt;}
.y87{bottom:630.013333pt;}
.y1b9{bottom:632.893333pt;}
.y4d{bottom:635.293333pt;}
.y1de{bottom:640.539867pt;}
.y214{bottom:642.173333pt;}
.y159{bottom:645.179867pt;}
.ye9{bottom:645.213333pt;}
.y118{bottom:646.779867pt;}
.y1d{bottom:648.093333pt;}
.yb9{bottom:648.253333pt;}
.y86{bottom:648.413333pt;}
.y4c{bottom:650.653333pt;}
.y1b8{bottom:651.293333pt;}
.y213{bottom:660.573333pt;}
.y158{bottom:663.579867pt;}
.ye8{bottom:663.613333pt;}
.y4b{bottom:666.013333pt;}
.y18e{bottom:666.493333pt;}
.yb8{bottom:666.653333pt;}
.y85{bottom:666.813333pt;}
.y1b7{bottom:669.693333pt;}
.y1c{bottom:670.173333pt;}
.y1dd{bottom:671.099867pt;}
.y117{bottom:677.339867pt;}
.y212{bottom:678.973333pt;}
.y4a{bottom:681.373333pt;}
.y157{bottom:681.979867pt;}
.ye7{bottom:682.013333pt;}
.y18d{bottom:684.893333pt;}
.yb7{bottom:685.053333pt;}
.y84{bottom:685.213333pt;}
.y1b6{bottom:688.093333pt;}
.y49{bottom:696.733333pt;}
.y211{bottom:697.373333pt;}
.y156{bottom:700.379867pt;}
.ye6{bottom:700.413333pt;}
.y1dc{bottom:701.659867pt;}
.y18c{bottom:703.293333pt;}
.yb6{bottom:703.453333pt;}
.y83{bottom:703.613333pt;}
.y1b{bottom:705.213333pt;}
.y1b5{bottom:706.493333pt;}
.y116{bottom:707.899867pt;}
.y48{bottom:711.933333pt;}
.y210{bottom:715.773333pt;}
.y155{bottom:718.779867pt;}
.ye5{bottom:718.813333pt;}
.y18b{bottom:721.693333pt;}
.yb5{bottom:721.853333pt;}
.y82{bottom:722.013333pt;}
.y1b4{bottom:724.893333pt;}
.y47{bottom:727.293333pt;}
.y1db{bottom:732.219867pt;}
.y20f{bottom:734.173333pt;}
.y17c{bottom:736.756800pt;}
.y154{bottom:737.179867pt;}
.ye4{bottom:737.213333pt;}
.y182{bottom:737.417857pt;}
.y179{bottom:737.987067pt;}
.y115{bottom:738.459867pt;}
.y18a{bottom:740.093333pt;}
.yb4{bottom:740.253333pt;}
.y81{bottom:740.413333pt;}
.y46{bottom:742.653333pt;}
.y1b3{bottom:743.293333pt;}
.y1a{bottom:743.453333pt;}
.y20e{bottom:752.573333pt;}
.y153{bottom:755.579867pt;}
.ye3{bottom:755.613333pt;}
.y189{bottom:757.853333pt;}
.y45{bottom:758.013333pt;}
.yb3{bottom:758.653333pt;}
.y80{bottom:758.813333pt;}
.y1b2{bottom:761.693333pt;}
.y1da{bottom:762.619867pt;}
.y19{bottom:763.293333pt;}
.y114{bottom:768.859867pt;}
.y20d{bottom:770.973333pt;}
.y188{bottom:773.213333pt;}
.y44{bottom:773.373333pt;}
.y152{bottom:773.979867pt;}
.ye2{bottom:774.013333pt;}
.yb2{bottom:777.053333pt;}
.y7f{bottom:777.213333pt;}
.y1b1{bottom:780.133333pt;}
.y18{bottom:783.173333pt;}
.y1f5{bottom:785.253067pt;}
.y1f6{bottom:787.441867pt;}
.y187{bottom:788.613333pt;}
.y43{bottom:788.773333pt;}
.y20c{bottom:789.413333pt;}
.y151{bottom:792.427867pt;}
.ye1{bottom:792.453333pt;}
.y1d9{bottom:793.227867pt;}
.yb1{bottom:795.493333pt;}
.y7e{bottom:795.653333pt;}
.y1b0{bottom:798.533333pt;}
.y113{bottom:799.467867pt;}
.y17{bottom:803.973333pt;}
.y186{bottom:804.613333pt;}
.y20b{bottom:807.813333pt;}
.y150{bottom:810.827867pt;}
.ye0{bottom:810.853333pt;}
.yb0{bottom:813.893333pt;}
.y7d{bottom:814.053333pt;}
.y1af{bottom:816.933333pt;}
.y185{bottom:819.493333pt;}
.y42{bottom:819.973333pt;}
.y1d8{bottom:823.787867pt;}
.y20a{bottom:826.213333pt;}
.y14f{bottom:829.227867pt;}
.ydf{bottom:829.253333pt;}
.y112{bottom:830.027867pt;}
.yaf{bottom:832.293333pt;}
.y7c{bottom:832.453333pt;}
.y16{bottom:832.773333pt;}
.y1ae{bottom:834.693333pt;}
.y41{bottom:838.373333pt;}
.y209{bottom:844.613333pt;}
.y14e{bottom:847.627867pt;}
.yde{bottom:847.653333pt;}
.y1ad{bottom:850.053333pt;}
.y15{bottom:850.373333pt;}
.yae{bottom:850.693333pt;}
.y7b{bottom:850.853333pt;}
.y1d7{bottom:854.347867pt;}
.y40{bottom:856.773333pt;}
.y111{bottom:860.587867pt;}
.y208{bottom:863.013333pt;}
.y14d{bottom:866.027867pt;}
.ydd{bottom:866.053333pt;}
.y14{bottom:867.813333pt;}
.y201{bottom:868.453333pt;}
.yad{bottom:869.093333pt;}
.y7a{bottom:869.253333pt;}
.y3f{bottom:875.173333pt;}
.y207{bottom:880.613333pt;}
.y14c{bottom:884.427867pt;}
.ydc{bottom:884.453333pt;}
.y1d6{bottom:884.747867pt;}
.y13{bottom:885.253333pt;}
.yac{bottom:887.493333pt;}
.y79{bottom:887.653333pt;}
.y110{bottom:891.147867pt;}
.y3e{bottom:893.573333pt;}
.y206{bottom:895.973333pt;}
.y12{bottom:902.693333pt;}
.y14b{bottom:902.827867pt;}
.ydb{bottom:902.853333pt;}
.yab{bottom:905.253333pt;}
.y78{bottom:906.053333pt;}
.y205{bottom:911.333333pt;}
.y3d{bottom:911.973333pt;}
.y1d5{bottom:915.307867pt;}
.y11{bottom:920.293333pt;}
.yaa{bottom:920.613333pt;}
.y14a{bottom:921.227867pt;}
.yda{bottom:921.253333pt;}
.y10f{bottom:921.547867pt;}
.y204{bottom:926.693333pt;}
.y3c{bottom:930.373333pt;}
.ya9{bottom:935.813333pt;}
.y77{bottom:936.453333pt;}
.y10{bottom:937.733333pt;}
.y149{bottom:939.627867pt;}
.yd9{bottom:939.653333pt;}
.y203{bottom:942.053333pt;}
.y1d4{bottom:945.867867pt;}
.y3b{bottom:950.533333pt;}
.ya8{bottom:951.173333pt;}
.y10e{bottom:952.107867pt;}
.y76{bottom:954.213333pt;}
.y148{bottom:958.027867pt;}
.yd8{bottom:958.053333pt;}
.yf{bottom:962.693333pt;}
.ya7{bottom:966.533333pt;}
.y75{bottom:969.573333pt;}
.y3{bottom:970.533333pt;}
.y147{bottom:976.427867pt;}
.yd7{bottom:976.453333pt;}
.y3a{bottom:978.053333pt;}
.ye{bottom:980.293333pt;}
.ya6{bottom:981.893333pt;}
.y10d{bottom:982.667867pt;}
.y74{bottom:984.933333pt;}
.y146{bottom:994.827867pt;}
.yd6{bottom:994.853333pt;}
.yd{bottom:995.653333pt;}
.ya5{bottom:997.253333pt;}
.y73{bottom:1000.293333pt;}
.y39{bottom:1005.733333pt;}
.yc{bottom:1010.880000pt;}
.y10c{bottom:1013.259867pt;}
.ya4{bottom:1013.280000pt;}
.y72{bottom:1015.680000pt;}
.yb{bottom:1026.720000pt;}
.y2{bottom:1037.920000pt;}
.y109{bottom:1039.979867pt;}
.y70{bottom:1040.000000pt;}
.y1{bottom:1051.840000pt;}
.y108{bottom:1057.899867pt;}
.y6f{bottom:1057.920000pt;}
.ya{bottom:1059.840000pt;}
.h3{height:24.320625pt;}
.h21{height:30.982500pt;}
.h20{height:38.085312pt;}
.h18{height:39.243750pt;}
.h22{height:46.218750pt;}
.hb{height:47.621250pt;}
.h5{height:48.062188pt;}
.h23{height:52.750000pt;}
.h10{height:52.785000pt;}
.h1f{height:54.431123pt;}
.h1e{height:54.503705pt;}
.hc{height:55.080000pt;}
.h14{height:56.843750pt;}
.ha{height:57.375000pt;}
.h1c{height:57.405293pt;}
.hd{height:57.906250pt;}
.h11{height:58.563750pt;}
.h1b{height:60.288750pt;}
.h25{height:61.631250pt;}
.h16{height:62.761250pt;}
.h6{height:64.833750pt;}
.h13{height:66.507188pt;}
.hf{height:67.128750pt;}
.h9{height:67.750312pt;}
.h15{height:75.602187pt;}
.h7{height:76.308750pt;}
.h2{height:77.015312pt;}
.h1a{height:79.102448pt;}
.h12{height:85.265625pt;}
.he{height:95.816250pt;}
.h8{height:112.455000pt;}
.h4{height:229.308750pt;}
.h1d{height:886.698667pt;}
.h19{height:1029.227333pt;}
.h24{height:1069.098667pt;}
.h17{height:1122.520000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:611.775067pt;}
.w4{width:728.399467pt;}
.w7{width:756.586933pt;}
.w3{width:793.701333pt;}
.w6{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:18.557067pt;}
.x20{left:23.578692pt;}
.x1a{left:32.600533pt;}
.x24{left:38.594886pt;}
.x2{left:39.999988pt;}
.x1{left:51.679988pt;}
.x5{left:85.311988pt;}
.x2f{left:91.297067pt;}
.x1b{left:92.810667pt;}
.xf{left:94.431988pt;}
.x2c{left:98.751988pt;}
.x1e{left:104.476400pt;}
.x18{left:113.311988pt;}
.x32{left:118.431988pt;}
.x17{left:132.191988pt;}
.x19{left:141.626655pt;}
.x13{left:184.986655pt;}
.x26{left:186.698980pt;}
.x28{left:189.031173pt;}
.x14{left:212.986655pt;}
.x7{left:217.306655pt;}
.x11{left:233.506655pt;}
.x12{left:240.066655pt;}
.x31{left:244.066655pt;}
.x1f{left:251.506533pt;}
.x23{left:254.626580pt;}
.x34{left:256.866655pt;}
.x8{left:273.346655pt;}
.xe{left:285.826655pt;}
.x2a{left:295.906643pt;}
.x2b{left:301.346655pt;}
.x33{left:306.306655pt;}
.xb{left:308.066655pt;}
.xa{left:328.546655pt;}
.x10{left:329.506655pt;}
.x1d{left:373.065610pt;}
.xc{left:377.506655pt;}
.x2d{left:388.893322pt;}
.x16{left:392.893322pt;}
.x15{left:396.893322pt;}
.x1c{left:403.675057pt;}
.x22{left:420.114344pt;}
.x21{left:428.522000pt;}
.xd{left:435.613322pt;}
.x25{left:455.567600pt;}
.x27{left:511.579446pt;}
.x9{left:519.933322pt;}
.x6{left:581.253322pt;}
.x30{left:641.253322pt;}
.x4{left:678.533322pt;}
.x29{left:699.359988pt;}
.x3{left:742.079988pt;}
}




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