
    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_fa39dc582398176794f7cf65.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000286;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_de82040e3807dc164ccfbce2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.937500;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_8db4f8598574545192a1db59.woff')format("woff");}.ff3{font-family:ff3;line-height:1.062500;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_4e502332a3998b5841d5059a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.886719;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_3e90e51022dbf9d048aa4655.woff')format("woff");}.ff5{font-family:ff5;line-height:0.937500;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.935547;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_5af286b631bbec12af7424d6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.062500;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.935547;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_92744d71fbccb01aab59918b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.062500;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_ef942b86215597f10431cf4a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.892578;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.935547;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_558b0f53d62e29fa07a850fc.woff')format("woff");}.ffc{font-family:ffc;line-height:1.062500;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.935547;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_5198adb37b29a3c2830a09b9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.937500;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_557a95af5001d670e71b1791.woff')format("woff");}.fff{font-family:fff;line-height:0.900391;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.935547;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_1ee0d545c40e751a1c9ae21b.woff')format("woff");}.ff11{font-family:ff11;line-height:1.062500;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_d427e5caa58c39e14f274502.woff')format("woff");}.ff12{font-family:ff12;line-height:0.900391;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.935547;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_9e5ba5580d9ac9ddf9d3c971.woff')format("woff");}.ff14{font-family:ff14;line-height:1.048828;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_67a8929ff33d5133271521ba.woff')format("woff");}.ff15{font-family:ff15;line-height:0.900391;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff16{font-family:ff16;line-height:0.935547;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_c0747f1487883e076a20b32b.woff')format("woff");}.ff17{font-family:ff17;line-height:0.937500;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_d427e5caa58c39e14f274502.woff')format("woff");}.ff18{font-family:ff18;line-height:0.900391;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_1b6d6e5b304f555689321e1f.woff')format("woff");}.ff19{font-family:ff19;line-height:0.904297;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_c8484a21516e466d3c77b929.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.903320;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.935547;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_7747203530a37964827c4249.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.937500;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_8a54af8daa4afcc1ff4edc5c.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.906250;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_c8484a21516e466d3c77b929.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.903320;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_d427e5caa58c39e14f274502.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.900391;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff20{font-family:ff20;line-height:0.935547;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_29e7d0d1129a998ad8239cc0.woff')format("woff");}.ff21{font-family:ff21;line-height:0.937500;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_d427e5caa58c39e14f274502.woff')format("woff");}.ff22{font-family:ff22;line-height:0.900391;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_9d4b962f86d374abec4e1890.woff')format("woff");}.ff23{font-family:ff23;line-height:0.904297;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_c8484a21516e466d3c77b929.woff')format("woff");}.ff24{font-family:ff24;line-height:0.903320;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff25{font-family:ff25;line-height:0.935547;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_aa86639681447d7d3eb234bd.woff')format("woff");}.ff26{font-family:ff26;line-height:0.937500;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_5aec2980f926a24827998d89.woff')format("woff");}.ff27{font-family:ff27;line-height:0.904297;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_c8484a21516e466d3c77b929.woff')format("woff");}.ff28{font-family:ff28;line-height:0.903320;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_d427e5caa58c39e14f274502.woff')format("woff");}.ff29{font-family:ff29;line-height:0.900391;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.935547;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_1a6dce965c0d82b8cac974ca.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.062500;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_67a8929ff33d5133271521ba.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.900391;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.935547;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_87e21d30a4e1bca2c7b7c3b8.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.937500;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_d427e5caa58c39e14f274502.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.900391;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_f93f33ebe9cb675ed2bf2ea3.woff')format("woff");}.ff30{font-family:ff30;line-height:0.906250;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_c8484a21516e466d3c77b929.woff')format("woff");}.ff31{font-family:ff31;line-height:0.903320;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff32{font-family:ff32;line-height:0.935547;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_e4678154f712af66d6027ffc.woff')format("woff");}.ff33{font-family:ff33;line-height:0.937500;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_d427e5caa58c39e14f274502.woff')format("woff");}.ff34{font-family:ff34;line-height:0.900391;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_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff35{font-family:ff35;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_3d92b137b0d3d565233e3b45.woff')format("woff");}.ff36{font-family:ff36;line-height:1.062500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_a3d2e3aeca8b423fd4952479.woff')format("woff");}.ff37{font-family:ff37;line-height:0.886719;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff38{font-family:ff38;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_73f6dceb3b2652ceba34138c.woff')format("woff");}.ff39{font-family:ff39;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_5967d536b37d397c0feca6b4.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_1c4da8bb708bf3f276efca28.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_d8c2faa159fef1aef5dd1aca.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.906250;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_c8484a21516e466d3c77b929.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.903320;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_1cd8b85b4d67fc6640175e40.woff')format("woff");}.ff40{font-family:ff40;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_d427e5caa58c39e14f274502.woff')format("woff");}.ff41{font-family:ff41;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff42{font-family:ff42;line-height:0.935547;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_4ac942aac23d8064b0eb0ef0.woff')format("woff");}.ff43{font-family:ff43;line-height:0.937500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_c9d5fb0444edbcb44f287487.woff')format("woff");}.ff44{font-family:ff44;line-height:0.895508;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_47402dbfef08f9cae2e22049.woff')format("woff");}.ff45{font-family:ff45;line-height:0.896484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff46{font-family:ff46;line-height:0.935547;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:ff47;src:url('chunks/assets/font_7374ecedadae733e8d4bfd61.woff')format("woff");}.ff47{font-family:ff47;line-height:0.937500;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:ff48;src:url('chunks/assets/font_0274396ca46f74428fdd31af.woff')format("woff");}.ff48{font-family:ff48;line-height:0.904297;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:ff49;src:url('chunks/assets/font_40838be1387ce621d08dc1e2.woff')format("woff");}.ff49{font-family:ff49;line-height:0.904297;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:ff4a;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.935547;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:ff4b;src:url('chunks/assets/font_f34b63f37c8119eca0b4e6c3.woff')format("woff");}.ff4b{font-family:ff4b;line-height:1.062500;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:ff4c;src:url('chunks/assets/font_d427e5caa58c39e14f274502.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.900391;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:ff4d;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.935547;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:ff4e;src:url('chunks/assets/font_5d3abade1b4d68dca31d6a37.woff')format("woff");}.ff4e{font-family:ff4e;line-height:1.062500;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:ff4f;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.935547;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:ff50;src:url('chunks/assets/font_41c1c3c84b8c518c54e9252c.woff')format("woff");}.ff50{font-family:ff50;line-height:1.062500;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:ff51;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff51{font-family:ff51;line-height:0.935547;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:ff52;src:url('chunks/assets/font_dca8a5f7d83c7091f8a1791c.woff')format("woff");}.ff52{font-family:ff52;line-height:1.062500;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:ff53;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff53{font-family:ff53;line-height:0.935547;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:ff54;src:url('chunks/assets/font_d257fbf808c9f30802fe0539.woff')format("woff");}.ff54{font-family:ff54;line-height:0.937500;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:ff55;src:url('chunks/assets/font_1d4a5647b4c44772abfe3ac0.woff')format("woff");}.ff55{font-family:ff55;line-height:0.935547;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:ff56;src:url('chunks/assets/font_7d96adbbad4fe661eb58c9c8.woff')format("woff");}.ff56{font-family:ff56;line-height:1.060547;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:ff57;src:url('chunks/assets/font_113a5e00dd25a3923ec0bf72.woff')format("woff");}.ff57{font-family:ff57;line-height:0.937500;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:ff58;src:url('chunks/assets/font_d427e5caa58c39e14f274502.woff')format("woff");}.ff58{font-family:ff58;line-height:0.900391;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:ff59;src:url('chunks/assets/font_d427e5caa58c39e14f274502.woff')format("woff");}.ff59{font-family:ff59;line-height:0.900391;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.031234px;}
.ls2{letter-spacing:0.037632px;}
.ls4{letter-spacing:3.623164px;}
.ls3{letter-spacing:3.707371px;}
.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:-55.591833px;}
.ws1{word-spacing:-22.482984px;}
.ws8{word-spacing:-14.610817px;}
.ws6{word-spacing:-13.839462px;}
.ws2{word-spacing:-13.488207px;}
.ws5{word-spacing:-12.374037px;}
.ws3{word-spacing:-11.241492px;}
.ws7{word-spacing:-11.234546px;}
.ws4{word-spacing:0.000000px;}
._1a{margin-left:-1.026345px;}
._0{width:1.208045px;}
._4{width:2.852366px;}
._11{width:4.389981px;}
._a{width:5.793957px;}
._3{width:6.946318px;}
._8{width:8.097747px;}
._6{width:9.202911px;}
._9{width:10.704091px;}
._d{width:11.954704px;}
._1e{width:13.021476px;}
._1{width:14.564522px;}
._5{width:15.948386px;}
._f{width:16.990518px;}
._17{width:18.545681px;}
._2{width:19.728876px;}
._b{width:21.489677px;}
._15{width:23.060364px;}
._18{width:24.606259px;}
._24{width:25.615851px;}
._e{width:26.697661px;}
._14{width:27.896580px;}
._1c{width:29.407033px;}
._19{width:30.870495px;}
._10{width:31.907118px;}
._1d{width:32.962805px;}
._7{width:34.057752px;}
._16{width:35.463617px;}
._23{width:37.474457px;}
._1b{width:38.703333px;}
._21{width:40.685591px;}
._c{width:42.495800px;}
._1f{width:44.258824px;}
._25{width:45.282265px;}
._22{width:46.326504px;}
._12{width:48.350625px;}
._13{width:49.364365px;}
._20{width:55.631092px;}
._28{width:56.930566px;}
._26{width:59.433613px;}
._27{width:60.479080px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(33,35,77);}
.fc0{color:rgb(7,0,89);}
.fs9{font-size:28.785504px;}
.fs5{font-size:47.945707px;}
.fs6{font-size:47.975692px;}
.fsb{font-size:59.917577px;}
.fs1{font-size:59.954623px;}
.fs2{font-size:59.962591px;}
.fs8{font-size:60.007609px;}
.fsc{font-size:65.936591px;}
.fs7{font-size:65.994864px;}
.fs4{font-size:71.937102px;}
.fsa{font-size:77.924356px;}
.fs3{font-size:119.909246px;}
.fs0{font-size:179.908846px;}
.y0{bottom:0.000000px;}
.y134{bottom:2.275881px;}
.y158{bottom:3.025950px;}
.y128{bottom:3.205274px;}
.y14c{bottom:3.274878px;}
.y1ee{bottom:3.304552px;}
.yad{bottom:3.332959px;}
.y32{bottom:3.345081px;}
.yd4{bottom:3.351876px;}
.ya6{bottom:3.357190px;}
.y2f{bottom:3.447445px;}
.y34{bottom:3.464696px;}
.y2e{bottom:3.601704px;}
.y3{bottom:3.608100px;}
.y5{bottom:3.703602px;}
.y262{bottom:4.856126px;}
.yd{bottom:6.857813px;}
.y54{bottom:11.327973px;}
.y157{bottom:17.018860px;}
.y2d{bottom:17.094868px;}
.y127{bottom:17.198184px;}
.y14b{bottom:17.267789px;}
.y1ed{bottom:17.297463px;}
.yac{bottom:17.325869px;}
.y31{bottom:17.337991px;}
.yd3{bottom:17.344786px;}
.ya5{bottom:17.350100px;}
.y261{bottom:25.095871px;}
.y6{bottom:25.335020px;}
.y2c{bottom:30.588031px;}
.y2a{bottom:31.182189px;}
.y126{bottom:31.191095px;}
.yab{bottom:31.318780px;}
.yd2{bottom:31.337696px;}
.ya4{bottom:31.343010px;}
.y104{bottom:32.192160px;}
.y2{bottom:36.216578px;}
.y53{bottom:37.212725px;}
.y16a{bottom:38.106427px;}
.y1a5{bottom:39.009166px;}
.y1e9{bottom:41.741992px;}
.yc{bottom:42.839582px;}
.y125{bottom:45.184005px;}
.yaa{bottom:45.311690px;}
.yd1{bottom:45.330607px;}
.y9b{bottom:46.247195px;}
.y193{bottom:46.727056px;}
.y147{bottom:46.727105px;}
.y224{bottom:52.356802px;}
.y103{bottom:56.951489px;}
.ycf{bottom:57.015018px;}
.y244{bottom:57.155190px;}
.y29{bottom:58.192365px;}
.y124{bottom:59.176915px;}
.ya9{bottom:59.304600px;}
.yd0{bottom:59.323517px;}
.y169{bottom:62.865756px;}
.y20f{bottom:62.964706px;}
.y52{bottom:63.097478px;}
.y1a4{bottom:64.893918px;}
.y110{bottom:67.914205px;}
.y10a{bottom:70.165053px;}
.y192{bottom:71.486384px;}
.y146{bottom:71.486433px;}
.y9a{bottom:72.131947px;}
.ya8{bottom:73.297510px;}
.y223{bottom:77.116130px;}
.yb{bottom:78.821351px;}
.y122{bottom:79.168446px;}
.y227{bottom:80.293870px;}
.y102{bottom:81.710817px;}
.y243{bottom:83.039942px;}
.y28{bottom:85.202542px;}
.y168{bottom:87.625084px;}
.y20e{bottom:88.849459px;}
.y51{bottom:88.982231px;}
.y1a3{bottom:90.778671px;}
.y1e8{bottom:91.260649px;}
.y109{bottom:91.548110px;}
.y10f{bottom:93.798958px;}
.y191{bottom:96.245713px;}
.y145{bottom:96.245762px;}
.y99{bottom:98.016700px;}
.y121{bottom:100.551502px;}
.y222{bottom:101.875459px;}
.y226{bottom:106.178622px;}
.y101{bottom:106.470146px;}
.y27{bottom:112.212719px;}
.y167{bottom:112.384413px;}
.y20d{bottom:114.734212px;}
.ya{bottom:114.803120px;}
.y50{bottom:114.866984px;}
.y1c6{bottom:115.182015px;}
.y1e7{bottom:116.019978px;}
.y1a2{bottom:116.663424px;}
.y114{bottom:119.683711px;}
.y190{bottom:121.005042px;}
.y144{bottom:121.005091px;}
.y98{bottom:123.901453px;}
.y221{bottom:126.634788px;}
.y100{bottom:131.229475px;}
.y242{bottom:134.809448px;}
.y166{bottom:137.143742px;}
.y26{bottom:139.222896px;}
.y4f{bottom:140.751736px;}
.y1c5{bottom:141.066767px;}
.y10e{bottom:143.317615px;}
.y113{bottom:145.568464px;}
.y143{bottom:145.764419px;}
.y17c{bottom:146.629131px;}
.y97{bottom:149.786206px;}
.y9{bottom:150.784890px;}
.y215{bottom:151.276008px;}
.y220{bottom:151.394116px;}
.yff{bottom:155.988804px;}
.y1bb{bottom:157.144242px;}
.y225{bottom:157.948128px;}
.y241{bottom:160.694201px;}
.y165{bottom:161.903070px;}
.y10d{bottom:164.700672px;}
.y1e6{bottom:165.538635px;}
.y25{bottom:166.233073px;}
.y4e{bottom:166.636489px;}
.y1c4{bottom:166.951520px;}
.y142{bottom:170.523748px;}
.y17b{bottom:172.513884px;}
.y96{bottom:175.670958px;}
.y214{bottom:176.035336px;}
.yfe{bottom:180.748132px;}
.y1ba{bottom:181.903571px;}
.y216{bottom:183.832881px;}
.y164{bottom:186.662399px;}
.y1e5{bottom:190.297964px;}
.y4d{bottom:192.521242px;}
.y1c3{bottom:192.836273px;}
.y24{bottom:193.243249px;}
.y112{bottom:195.087121px;}
.y141{bottom:195.283077px;}
.y213{bottom:200.794665px;}
.y95{bottom:201.555711px;}
.yfd{bottom:205.507461px;}
.y1b9{bottom:206.662900px;}
.y78{bottom:208.274853px;}
.y149{bottom:209.717633px;}
.y163{bottom:211.421728px;}
.y240{bottom:212.463706px;}
.y111{bottom:216.470178px;}
.y4c{bottom:218.405995px;}
.y1c2{bottom:218.721026px;}
.y140{bottom:220.042406px;}
.y23{bottom:220.253426px;}
.y17a{bottom:224.283389px;}
.y212{bottom:225.553994px;}
.y94{bottom:227.440464px;}
.yfc{bottom:230.266790px;}
.y1b8{bottom:231.422228px;}
.y77{bottom:233.034182px;}
.y148{bottom:235.602386px;}
.y162{bottom:236.181057px;}
.y23f{bottom:238.348459px;}
.y1e4{bottom:239.816622px;}
.y4b{bottom:244.290748px;}
.y1c1{bottom:244.605778px;}
.y22{bottom:247.263603px;}
.y179{bottom:250.168142px;}
.y211{bottom:250.313323px;}
.y93{bottom:253.325217px;}
.y1b7{bottom:256.181557px;}
.y76{bottom:257.793510px;}
.y161{bottom:260.940385px;}
.y12d{bottom:261.487139px;}
.y1e3{bottom:264.575950px;}
.y4a{bottom:270.175500px;}
.y1c0{bottom:270.490531px;}
.y21{bottom:274.273780px;}
.y210{bottom:275.072651px;}
.y178{bottom:276.052895px;}
.y155{bottom:277.915915px;}
.y92{bottom:279.209970px;}
.yfb{bottom:279.785447px;}
.y1b6{bottom:280.940886px;}
.y75{bottom:282.552839px;}
.y160{bottom:285.699714px;}
.y156{bottom:287.055009px;}
.y12c{bottom:287.371892px;}
.y260{bottom:288.855009px;}
.y1e2{bottom:289.335279px;}
.y23e{bottom:290.117964px;}
.y49{bottom:296.060253px;}
.y1bf{bottom:296.375284px;}
.y20{bottom:301.283956px;}
.y177{bottom:301.937647px;}
.y154{bottom:302.675244px;}
.y91{bottom:305.094722px;}
.y1b5{bottom:305.700215px;}
.y15f{bottom:310.459043px;}
.yf4{bottom:313.256644px;}
.y1e1{bottom:314.094608px;}
.y23d{bottom:316.002717px;}
.y18f{bottom:317.049637px;}
.y20c{bottom:321.812234px;}
.y48{bottom:321.945006px;}
.y1be{bottom:322.260037px;}
.y1f{bottom:328.294133px;}
.y1b4{bottom:330.459543px;}
.y90{bottom:330.979475px;}
.y15e{bottom:335.218372px;}
.y1e0{bottom:338.853937px;}
.yf3{bottom:339.141397px;}
.y18e{bottom:341.808966px;}
.y20b{bottom:347.696987px;}
.y47{bottom:347.829759px;}
.y1bd{bottom:348.144789px;}
.y153{bottom:352.193902px;}
.y120{bottom:352.646486px;}
.y1b3{bottom:355.218872px;}
.y1e{bottom:355.304310px;}
.y8f{bottom:356.864228px;}
.y30{bottom:359.415006px;}
.y15d{bottom:359.977700px;}
.y263{bottom:361.526964px;}
.y1df{bottom:363.613265px;}
.yf2{bottom:365.026150px;}
.y18d{bottom:366.568295px;}
.y23c{bottom:367.772223px;}
.y20a{bottom:373.581739px;}
.y46{bottom:373.714511px;}
.y152{bottom:376.953230px;}
.y1d{bottom:382.314487px;}
.y8e{bottom:382.748981px;}
.ya7{bottom:383.535005px;}
.y15c{bottom:384.737029px;}
.y123{bottom:384.975005px;}
.y1de{bottom:388.372594px;}
.yf1{bottom:390.910903px;}
.y18c{bottom:391.327624px;}
.y23b{bottom:393.656975px;}
.y1bc{bottom:397.663447px;}
.y209{bottom:399.466492px;}
.y45{bottom:399.599264px;}
.y25e{bottom:399.793771px;}
.y1a1{bottom:401.395704px;}
.y151{bottom:401.712559px;}
.y11f{bottom:404.415991px;}
.y8d{bottom:408.633733px;}
.y1c{bottom:409.324664px;}
.y15b{bottom:409.496358px;}
.y18b{bottom:416.086952px;}
.yf0{bottom:416.795656px;}
.y25d{bottom:421.176828px;}
.y208{bottom:425.351245px;}
.y44{bottom:425.484017px;}
.y150{bottom:426.471888px;}
.y1a0{bottom:427.280457px;}
.y11e{bottom:430.300744px;}
.y8c{bottom:434.518486px;}
.y1b{bottom:436.334840px;}
.y1dd{bottom:437.891251px;}
.y18a{bottom:440.846281px;}
.y25c{bottom:442.559885px;}
.yef{bottom:442.680408px;}
.y23a{bottom:445.426481px;}
.y14f{bottom:451.231216px;}
.y207{bottom:451.235998px;}
.y43{bottom:451.368770px;}
.y19f{bottom:453.165210px;}
.y11d{bottom:456.185497px;}
.y21f{bottom:460.034755px;}
.y8b{bottom:460.403239px;}
.y1dc{bottom:462.650580px;}
.y1a{bottom:463.345017px;}
.y25b{bottom:463.942941px;}
.y189{bottom:465.605610px;}
.y74{bottom:467.797591px;}
.yee{bottom:468.565161px;}
.yc0{bottom:468.923004px;}
.y239{bottom:471.311234px;}
.y14e{bottom:475.990545px;}
.y206{bottom:477.120750px;}
.y42{bottom:477.253522px;}
.y19e{bottom:479.049963px;}
.y11c{bottom:482.070249px;}
.y21e{bottom:484.794083px;}
.y25a{bottom:485.325998px;}
.y13f{bottom:486.119431px;}
.y8a{bottom:486.287992px;}
.y1db{bottom:487.409909px;}
.y19{bottom:490.355194px;}
.y188{bottom:490.364939px;}
.y73{bottom:492.556919px;}
.ybf{bottom:493.682333px;}
.yed{bottom:494.449914px;}
.y238{bottom:497.195986px;}
.y14d{bottom:500.749874px;}
.y205{bottom:503.005503px;}
.y41{bottom:503.138275px;}
.y19d{bottom:504.934715px;}
.y259{bottom:506.709054px;}
.y11b{bottom:507.955002px;}
.y21d{bottom:509.553412px;}
.y13e{bottom:510.878760px;}
.y1da{bottom:512.169238px;}
.y89{bottom:512.172744px;}
.y187{bottom:515.124267px;}
.y72{bottom:517.316248px;}
.y18{bottom:517.365371px;}
.ybe{bottom:518.441661px;}
.yec{bottom:520.334667px;}
.y258{bottom:528.092111px;}
.y204{bottom:528.890256px;}
.y40{bottom:529.023028px;}
.y19c{bottom:530.819468px;}
.y11a{bottom:533.839755px;}
.y21c{bottom:534.312741px;}
.y13d{bottom:535.638089px;}
.y1d9{bottom:536.928566px;}
.y88{bottom:538.057497px;}
.y186{bottom:539.883596px;}
.y71{bottom:542.075577px;}
.ybd{bottom:543.200990px;}
.y17{bottom:544.375548px;}
.yeb{bottom:546.219419px;}
.y237{bottom:548.965492px;}
.y257{bottom:549.475168px;}
.y203{bottom:554.775009px;}
.y3f{bottom:554.907781px;}
.y19b{bottom:556.704221px;}
.y15a{bottom:557.473660px;}
.y21b{bottom:559.072070px;}
.y119{bottom:559.724508px;}
.y13c{bottom:560.397418px;}
.ya3{bottom:560.654997px;}
.y87{bottom:563.942250px;}
.y185{bottom:564.642925px;}
.y70{bottom:566.834906px;}
.ybc{bottom:567.960319px;}
.y256{bottom:570.858224px;}
.y16{bottom:571.385724px;}
.yea{bottom:572.104172px;}
.y236{bottom:574.850245px;}
.y159{bottom:578.856716px;}
.y202{bottom:580.659761px;}
.y3e{bottom:580.792533px;}
.y19a{bottom:582.588974px;}
.y21a{bottom:583.831398px;}
.y13b{bottom:585.156746px;}
.y118{bottom:585.609260px;}
.y1d8{bottom:586.447224px;}
.y184{bottom:589.402253px;}
.y86{bottom:589.827003px;}
.y6f{bottom:591.594234px;}
.y255{bottom:592.241281px;}
.ybb{bottom:592.719648px;}
.ye9{bottom:597.988925px;}
.y15{bottom:598.395901px;}
.ydc{bottom:602.847794px;}
.y201{bottom:606.544514px;}
.y3d{bottom:606.677286px;}
.y199{bottom:608.473726px;}
.y219{bottom:608.590727px;}
.y13a{bottom:609.916075px;}
.y1d7{bottom:611.206553px;}
.y117{bottom:611.494013px;}
.y6e{bottom:616.353563px;}
.yba{bottom:617.478976px;}
.ye8{bottom:623.873678px;}
.y14{bottom:625.406078px;}
.y235{bottom:626.619750px;}
.ydb{bottom:627.607123px;}
.y267{bottom:632.081758px;}
.y200{bottom:632.429267px;}
.y3c{bottom:632.562039px;}
.y218{bottom:633.350056px;}
.ya2{bottom:633.918463px;}
.y139{bottom:634.675404px;}
.y1d6{bottom:635.965881px;}
.y176{bottom:638.439433px;}
.y6d{bottom:641.112892px;}
.yb9{bottom:642.238305px;}
.ye7{bottom:649.758430px;}
.y1b2{bottom:651.286603px;}
.yda{bottom:652.366452px;}
.y13{bottom:652.416255px;}
.y234{bottom:652.504503px;}
.y266{bottom:653.464815px;}
.y217{bottom:658.109385px;}
.y1ff{bottom:658.314020px;}
.y3b{bottom:658.446792px;}
.ya1{bottom:658.677792px;}
.y138{bottom:659.434732px;}
.y116{bottom:661.012671px;}
.y175{bottom:664.324186px;}
.y6c{bottom:665.872220px;}
.yb8{bottom:666.997634px;}
.y265{bottom:674.847871px;}
.ye6{bottom:675.643183px;}
.y1b1{bottom:676.045932px;}
.yd9{bottom:677.125780px;}
.y233{bottom:678.389256px;}
.y12{bottom:679.426432px;}
.y115{bottom:682.395727px;}
.ya0{bottom:683.437121px;}
.y137{bottom:684.194061px;}
.y1fe{bottom:684.198772px;}
.y3a{bottom:684.331544px;}
.y1d5{bottom:685.484539px;}
.y174{bottom:690.208939px;}
.y6b{bottom:690.631549px;}
.yb7{bottom:691.756962px;}
.y264{bottom:696.230928px;}
.y133{bottom:698.534992px;}
.y1b0{bottom:700.805260px;}
.ye5{bottom:701.527936px;}
.yd8{bottom:701.885109px;}
.y11{bottom:706.436608px;}
.y9f{bottom:708.196450px;}
.y136{bottom:708.953390px;}
.y1fd{bottom:710.083525px;}
.y39{bottom:710.216297px;}
.y1d4{bottom:710.243867px;}
.y173{bottom:716.093692px;}
.yb6{bottom:716.516291px;}
.y1af{bottom:725.564589px;}
.ye4{bottom:727.412689px;}
.y232{bottom:730.158761px;}
.y9e{bottom:732.955778px;}
.y10{bottom:733.446785px;}
.y135{bottom:733.712719px;}
.y1d3{bottom:735.003196px;}
.y1fc{bottom:735.968278px;}
.y38{bottom:736.101050px;}
.yb5{bottom:741.275620px;}
.y172{bottom:741.978444px;}
.yd7{bottom:745.135519px;}
.y1ae{bottom:750.323918px;}
.ye3{bottom:753.297441px;}
.yce{bottom:755.729112px;}
.y231{bottom:756.043514px;}
.y9d{bottom:757.715107px;}
.y1d2{bottom:759.762525px;}
.yf{bottom:760.456962px;}
.y1fb{bottom:761.853031px;}
.y63{bottom:761.985803px;}
.y171{bottom:767.863197px;}
.y25f{bottom:770.962683px;}
.yd6{bottom:771.020272px;}
.y1ad{bottom:775.083247px;}
.ye2{bottom:779.182194px;}
.ycd{bottom:780.488441px;}
.y230{bottom:781.928267px;}
.y5f{bottom:782.341615px;}
.y9c{bottom:782.474436px;}
.y1d1{bottom:784.521854px;}
.y1fa{bottom:787.737784px;}
.y62{bottom:787.870555px;}
.yd5{bottom:796.905025px;}
.y1ac{bottom:799.842575px;}
.y12b{bottom:805.066947px;}
.ycc{bottom:805.247770px;}
.y5e{bottom:807.100943px;}
.y183{bottom:810.372334px;}
.y254{bottom:811.477927px;}
.y1f9{bottom:813.622536px;}
.y61{bottom:813.755308px;}
.ye{bottom:814.477316px;}
.y85{bottom:822.789778px;}
.yfa{bottom:823.746728px;}
.y1ab{bottom:824.601904px;}
.ycb{bottom:830.007099px;}
.y12a{bottom:830.951700px;}
.y5d{bottom:831.860272px;}
.y22f{bottom:833.697772px;}
.y253{bottom:833.986408px;}
.y1d0{bottom:834.040511px;}
.y182{bottom:835.131662px;}
.y1f8{bottom:839.507289px;}
.y60{bottom:839.640061px;}
.y2b{bottom:842.894986px;}
.yf9{bottom:848.506056px;}
.y84{bottom:848.674530px;}
.y7{bottom:853.766178px;}
.yca{bottom:854.766427px;}
.y252{bottom:856.494889px;}
.y5c{bottom:856.619601px;}
.y129{bottom:856.836452px;}
.y1cf{bottom:858.799840px;}
.y247{bottom:859.582525px;}
.y181{bottom:859.890991px;}
.yaf{bottom:865.524814px;}
.y198{bottom:867.321254px;}
.yf8{bottom:873.265385px;}
.y83{bottom:874.559283px;}
.y251{bottom:879.003369px;}
.yc9{bottom:879.525756px;}
.y5b{bottom:881.378929px;}
.y108{bottom:882.721205px;}
.y1ce{bottom:883.559169px;}
.y180{bottom:884.650320px;}
.y22e{bottom:885.467278px;}
.y6a{bottom:888.139516px;}
.y1f7{bottom:891.276795px;}
.yae{bottom:891.409567px;}
.y197{bottom:893.206007px;}
.y132{bottom:893.522910px;}
.yf7{bottom:898.024714px;}
.y82{bottom:900.444036px;}
.y250{bottom:901.511850px;}
.yc8{bottom:904.285085px;}
.y5a{bottom:906.138258px;}
.y1cd{bottom:908.318497px;}
.y107{bottom:908.605958px;}
.y17f{bottom:909.409649px;}
.y22d{bottom:911.352031px;}
.y69{bottom:912.898845px;}
.y1f6{bottom:917.161547px;}
.y131{bottom:918.282238px;}
.y196{bottom:919.090760px;}
.yf6{bottom:922.784043px;}
.y24f{bottom:924.020331px;}
.y81{bottom:926.328789px;}
.yc7{bottom:929.044414px;}
.y59{bottom:930.897587px;}
.y1cc{bottom:933.077826px;}
.y17e{bottom:934.168977px;}
.y10c{bottom:934.490711px;}
.yb4{bottom:934.967444px;}
.y8{bottom:936.134982px;}
.y22c{bottom:937.236783px;}
.y68{bottom:937.658173px;}
.y130{bottom:943.041567px;}
.y1f5{bottom:943.046300px;}
.y195{bottom:944.975512px;}
.y24e{bottom:946.528811px;}
.yf5{bottom:947.543371px;}
.y80{bottom:952.213541px;}
.yc6{bottom:953.803742px;}
.y58{bottom:955.656916px;}
.y17d{bottom:958.928306px;}
.yb3{bottom:959.726772px;}
.y106{bottom:960.375464px;}
.y67{bottom:962.417502px;}
.y246{bottom:963.121536px;}
.y12f{bottom:967.800896px;}
.y1f4{bottom:968.931053px;}
.y24d{bottom:969.037292px;}
.y194{bottom:970.860265px;}
.y7f{bottom:978.098294px;}
.yc5{bottom:978.563071px;}
.y57{bottom:980.416244px;}
.y1cb{bottom:982.596483px;}
.yb2{bottom:984.486101px;}
.ye1{bottom:986.260216px;}
.y66{bottom:987.176831px;}
.y22b{bottom:989.006289px;}
.y24c{bottom:991.545773px;}
.y12e{bottom:992.560225px;}
.y1f3{bottom:994.815806px;}
.y170{bottom:1000.825972px;}
.yc4{bottom:1003.322400px;}
.y7e{bottom:1003.983047px;}
.y56{bottom:1005.175573px;}
.y1ca{bottom:1007.355812px;}
.yb1{bottom:1009.245430px;}
.y65{bottom:1011.936160px;}
.ye0{bottom:1012.144969px;}
.y24b{bottom:1014.054253px;}
.y22a{bottom:1014.891042px;}
.y1f2{bottom:1020.700558px;}
.y16f{bottom:1026.710725px;}
.y1aa{bottom:1028.034198px;}
.yc3{bottom:1028.081728px;}
.y7d{bottom:1029.867800px;}
.y55{bottom:1029.934902px;}
.yb0{bottom:1034.004759px;}
.y64{bottom:1036.695488px;}
.y105{bottom:1038.029722px;}
.y245{bottom:1040.775794px;}
.y1eb{bottom:1042.308714px;}
.y1f1{bottom:1046.585311px;}
.y14a{bottom:1047.734977px;}
.y16e{bottom:1052.595477px;}
.y1a9{bottom:1052.793527px;}
.yc2{bottom:1052.841057px;}
.y7c{bottom:1055.752552px;}
.y1c9{bottom:1056.874470px;}
.ydf{bottom:1063.914475px;}
.y1ec{bottom:1065.734976px;}
.y229{bottom:1066.660547px;}
.y24a{bottom:1070.773705px;}
.y37{bottom:1072.602836px;}
.y1a8{bottom:1077.552855px;}
.yc1{bottom:1077.600386px;}
.y16d{bottom:1078.480230px;}
.y1c8{bottom:1081.633798px;}
.y7b{bottom:1081.637305px;}
.yde{bottom:1089.799227px;}
.y1ea{bottom:1091.827371px;}
.y249{bottom:1092.156761px;}
.y228{bottom:1092.545300px;}
.y1f0{bottom:1096.103969px;}
.y36{bottom:1098.487589px;}
.y1a7{bottom:1102.312184px;}
.y16c{bottom:1104.364983px;}
.y7a{bottom:1107.522058px;}
.y248{bottom:1113.539818px;}
.ydd{bottom:1115.683980px;}
.y10b{bottom:1116.586700px;}
.y1ef{bottom:1117.487025px;}
.y4{bottom:1120.454974px;}
.y35{bottom:1124.372341px;}
.y1a6{bottom:1127.071513px;}
.y16b{bottom:1130.249736px;}
.y1c7{bottom:1131.152456px;}
.y79{bottom:1133.406811px;}
.y1{bottom:1153.214973px;}
.y33{bottom:1201.454971px;}
.h1f{height:8.280000px;}
.h5{height:17.279999px;}
.h20{height:24.090993px;}
.h21{height:28.079999px;}
.hf{height:28.439999px;}
.h18{height:34.154570px;}
.h27{height:38.879998px;}
.he{height:40.126436px;}
.h10{height:40.151532px;}
.hd{height:41.039998px;}
.h15{height:42.479998px;}
.h4{height:42.682539px;}
.h1d{height:42.720261px;}
.h22{height:44.920333px;}
.h13{height:46.982672px;}
.hb{height:48.332740px;}
.h1c{height:49.035251px;}
.h19{height:49.357175px;}
.h26{height:50.145863px;}
.h6{height:50.176867px;}
.h8{height:50.183536px;}
.h23{height:50.221212px;}
.h12{height:51.213034px;}
.h1b{height:54.329757px;}
.h28{height:55.183260px;}
.h14{height:55.232030px;}
.h25{height:55.475445px;}
.h1a{height:59.221657px;}
.hc{height:60.205172px;}
.h1e{height:70.199997px;}
.h17{height:70.559997px;}
.h2{height:77.039997px;}
.h16{height:84.599996px;}
.ha{height:85.365078px;}
.h3{height:130.485316px;}
.h9{height:177.839993px;}
.h24{height:1149.839952px;}
.h11{height:1193.399950px;}
.h7{height:1204.919950px;}
.h1{height:1263.000000px;}
.h0{height:1263.374968px;}
.w12{width:3.240000px;}
.wf{width:10.440000px;}
.w10{width:12.599999px;}
.w6{width:14.039999px;}
.w14{width:14.759999px;}
.w13{width:15.119999px;}
.wb{width:16.199999px;}
.wc{width:17.279999px;}
.w5{width:200.519992px;}
.wd{width:221.039991px;}
.w8{width:221.399991px;}
.we{width:222.119991px;}
.w16{width:234.359990px;}
.w2{width:343.079986px;}
.w1{width:362.519985px;}
.w4{width:406.439983px;}
.w7{width:505.079979px;}
.w9{width:777.239968px;}
.wa{width:849.959965px;}
.w15{width:850.769965px;}
.w11{width:855.719964px;}
.w3{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:1.059631px;}
.x23{left:13.006703px;}
.xe{left:24.119999px;}
.xc{left:26.279999px;}
.x2{left:35.074960px;}
.x18{left:36.719998px;}
.x3{left:42.479998px;}
.x15{left:51.839998px;}
.x8{left:55.634279px;}
.x7{left:70.427565px;}
.x6{left:203.637416px;}
.x13{left:230.034850px;}
.x16{left:237.317642px;}
.xf{left:238.865966px;}
.x21{left:240.199532px;}
.x19{left:244.625966px;}
.x11{left:248.587218px;}
.x1c{left:258.155737px;}
.x9{left:259.208875px;}
.xb{left:282.210655px;}
.x14{left:355.276612px;}
.x1b{left:360.851338px;}
.x17{left:362.559405px;}
.x10{left:364.107729px;}
.x1a{left:369.867729px;}
.x12{left:373.828960px;}
.x5{left:401.399983px;}
.x1e{left:475.664402px;}
.x20{left:480.763980px;}
.x1{left:487.079980px;}
.x25{left:512.292984px;}
.x1f{left:514.421192px;}
.x26{left:537.298499px;}
.x27{left:560.686217px;}
.x22{left:600.479975px;}
.x4{left:625.781174px;}
.x28{left:637.144712px;}
.xd{left:817.559966px;}
.x1d{left:823.319966px;}
.xa{left:844.148943px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.027763pt;}
.ls2{letter-spacing:0.033451pt;}
.ls4{letter-spacing:3.220590pt;}
.ls3{letter-spacing:3.295441pt;}
.ws0{word-spacing:-49.414963pt;}
.ws1{word-spacing:-19.984874pt;}
.ws8{word-spacing:-12.987393pt;}
.ws6{word-spacing:-12.301744pt;}
.ws2{word-spacing:-11.989517pt;}
.ws5{word-spacing:-10.999144pt;}
.ws3{word-spacing:-9.992437pt;}
.ws7{word-spacing:-9.986263pt;}
.ws4{word-spacing:0.000000pt;}
._1a{margin-left:-0.912307pt;}
._0{width:1.073818pt;}
._4{width:2.535437pt;}
._11{width:3.902206pt;}
._a{width:5.150184pt;}
._3{width:6.174505pt;}
._8{width:7.197997pt;}
._6{width:8.180366pt;}
._9{width:9.514748pt;}
._d{width:10.626404pt;}
._1e{width:11.574646pt;}
._1{width:12.946241pt;}
._5{width:14.176343pt;}
._f{width:15.102683pt;}
._17{width:16.485050pt;}
._2{width:17.536778pt;}
._b{width:19.101935pt;}
._15{width:20.498102pt;}
._18{width:21.872230pt;}
._24{width:22.769645pt;}
._e{width:23.731254pt;}
._14{width:24.796960pt;}
._1c{width:26.139585pt;}
._19{width:27.440440pt;}
._10{width:28.361883pt;}
._1d{width:29.300271pt;}
._7{width:30.273557pt;}
._16{width:31.523215pt;}
._23{width:33.310629pt;}
._1b{width:34.402963pt;}
._21{width:36.164969pt;}
._c{width:37.774045pt;}
._1f{width:39.341177pt;}
._25{width:40.250903pt;}
._22{width:41.179115pt;}
._12{width:42.978333pt;}
._13{width:43.879435pt;}
._20{width:49.449860pt;}
._28{width:50.604947pt;}
._26{width:52.829878pt;}
._27{width:53.759182pt;}
.fs9{font-size:25.587114pt;}
.fs5{font-size:42.618406pt;}
.fs6{font-size:42.645060pt;}
.fsb{font-size:53.260069pt;}
.fs1{font-size:53.292998pt;}
.fs2{font-size:53.300081pt;}
.fs8{font-size:53.340097pt;}
.fsc{font-size:58.610303pt;}
.fs7{font-size:58.662102pt;}
.fs4{font-size:63.944091pt;}
.fsa{font-size:69.266094pt;}
.fs3{font-size:106.585996pt;}
.fs0{font-size:159.918974pt;}
.y0{bottom:0.000000pt;}
.y134{bottom:2.023005pt;}
.y158{bottom:2.689733pt;}
.y128{bottom:2.849133pt;}
.y14c{bottom:2.911003pt;}
.y1ee{bottom:2.937380pt;}
.yad{bottom:2.962630pt;}
.y32{bottom:2.973405pt;}
.yd4{bottom:2.979445pt;}
.ya6{bottom:2.984169pt;}
.y2f{bottom:3.064395pt;}
.y34{bottom:3.079730pt;}
.y2e{bottom:3.201515pt;}
.y3{bottom:3.207200pt;}
.y5{bottom:3.292090pt;}
.y262{bottom:4.316557pt;}
.yd{bottom:6.095833pt;}
.y54{bottom:10.069309pt;}
.y157{bottom:15.127876pt;}
.y2d{bottom:15.195438pt;}
.y127{bottom:15.287275pt;}
.y14b{bottom:15.349145pt;}
.y1ed{bottom:15.375522pt;}
.yac{bottom:15.400773pt;}
.y31{bottom:15.411548pt;}
.yd3{bottom:15.417588pt;}
.ya5{bottom:15.422311pt;}
.y261{bottom:22.307441pt;}
.y6{bottom:22.520017pt;}
.y2c{bottom:27.189361pt;}
.y2a{bottom:27.717501pt;}
.y126{bottom:27.725418pt;}
.yab{bottom:27.838915pt;}
.yd2{bottom:27.855730pt;}
.ya4{bottom:27.860453pt;}
.y104{bottom:28.615253pt;}
.y2{bottom:32.192514pt;}
.y53{bottom:33.077978pt;}
.y16a{bottom:33.872379pt;}
.y1a5{bottom:34.674814pt;}
.y1e9{bottom:37.103993pt;}
.yc{bottom:38.079628pt;}
.y125{bottom:40.163560pt;}
.yaa{bottom:40.277058pt;}
.yd1{bottom:40.293872pt;}
.y9b{bottom:41.108617pt;}
.y193{bottom:41.535161pt;}
.y147{bottom:41.535204pt;}
.y224{bottom:46.539379pt;}
.y103{bottom:50.623545pt;}
.ycf{bottom:50.680016pt;}
.y244{bottom:50.804613pt;}
.y29{bottom:51.726547pt;}
.y124{bottom:52.601702pt;}
.ya9{bottom:52.715200pt;}
.yd0{bottom:52.732015pt;}
.y169{bottom:55.880672pt;}
.y20f{bottom:55.968628pt;}
.y52{bottom:56.086647pt;}
.y1a4{bottom:57.683483pt;}
.y110{bottom:60.368182pt;}
.y10a{bottom:62.368936pt;}
.y192{bottom:63.543453pt;}
.y146{bottom:63.543496pt;}
.y9a{bottom:64.117287pt;}
.ya8{bottom:65.153343pt;}
.y223{bottom:68.547671pt;}
.yb{bottom:70.063423pt;}
.y122{bottom:70.371952pt;}
.y227{bottom:71.372329pt;}
.y102{bottom:72.631838pt;}
.y243{bottom:73.813282pt;}
.y28{bottom:75.735593pt;}
.y168{bottom:77.888964pt;}
.y20e{bottom:78.977297pt;}
.y51{bottom:79.095316pt;}
.y1a3{bottom:80.692152pt;}
.y1e8{bottom:81.120577pt;}
.y109{bottom:81.376098pt;}
.y10f{bottom:83.376852pt;}
.y191{bottom:85.551745pt;}
.y145{bottom:85.551788pt;}
.y99{bottom:87.125956pt;}
.y121{bottom:89.379113pt;}
.y222{bottom:90.555964pt;}
.y226{bottom:94.380998pt;}
.y101{bottom:94.640130pt;}
.y27{bottom:99.744639pt;}
.y167{bottom:99.897256pt;}
.y20d{bottom:101.985966pt;}
.ya{bottom:102.047218pt;}
.y50{bottom:102.103986pt;}
.y1c6{bottom:102.384013pt;}
.y1e7{bottom:103.128869pt;}
.y1a2{bottom:103.700821pt;}
.y114{bottom:106.385521pt;}
.y190{bottom:107.560037pt;}
.y144{bottom:107.560081pt;}
.y98{bottom:110.134625pt;}
.y221{bottom:112.564256pt;}
.y100{bottom:116.648422pt;}
.y242{bottom:119.830620pt;}
.y166{bottom:121.905548pt;}
.y26{bottom:123.753685pt;}
.y4f{bottom:125.112655pt;}
.y1c5{bottom:125.392682pt;}
.y10e{bottom:127.393436pt;}
.y113{bottom:129.394190pt;}
.y143{bottom:129.568373pt;}
.y17c{bottom:130.337005pt;}
.y97{bottom:133.143294pt;}
.y9{bottom:134.031013pt;}
.y215{bottom:134.467562pt;}
.y220{bottom:134.572548pt;}
.yff{bottom:138.656714pt;}
.y1bb{bottom:139.683771pt;}
.y225{bottom:140.398336pt;}
.y241{bottom:142.839289pt;}
.y165{bottom:143.913840pt;}
.y10d{bottom:146.400597pt;}
.y1e6{bottom:147.145454pt;}
.y25{bottom:147.762731pt;}
.y4e{bottom:148.121324pt;}
.y1c4{bottom:148.401351pt;}
.y142{bottom:151.576665pt;}
.y17b{bottom:153.345674pt;}
.y96{bottom:156.151963pt;}
.y214{bottom:156.475855pt;}
.yfe{bottom:160.665006pt;}
.y1ba{bottom:161.692063pt;}
.y216{bottom:163.407005pt;}
.y164{bottom:165.922133pt;}
.y1e5{bottom:169.153746pt;}
.y4d{bottom:171.129993pt;}
.y1c3{bottom:171.410020pt;}
.y24{bottom:171.771777pt;}
.y112{bottom:173.410774pt;}
.y141{bottom:173.584957pt;}
.y213{bottom:178.484147pt;}
.y95{bottom:179.160632pt;}
.yfd{bottom:182.673299pt;}
.y1b9{bottom:183.700355pt;}
.y78{bottom:185.133203pt;}
.y149{bottom:186.415674pt;}
.y163{bottom:187.930425pt;}
.y240{bottom:188.856628pt;}
.y111{bottom:192.417936pt;}
.y4c{bottom:194.138662pt;}
.y1c2{bottom:194.418689pt;}
.y140{bottom:195.593249pt;}
.y23{bottom:195.780823pt;}
.y17a{bottom:199.363012pt;}
.y212{bottom:200.492439pt;}
.y94{bottom:202.169301pt;}
.yfc{bottom:204.681591pt;}
.y1b8{bottom:205.708647pt;}
.y77{bottom:207.141495pt;}
.y148{bottom:209.424343pt;}
.y162{bottom:209.938717pt;}
.y23f{bottom:211.865297pt;}
.y1e4{bottom:213.170330pt;}
.y4b{bottom:217.147331pt;}
.y1c1{bottom:217.427359pt;}
.y22{bottom:219.789869pt;}
.y179{bottom:222.371682pt;}
.y211{bottom:222.500731pt;}
.y93{bottom:225.177970pt;}
.y1b7{bottom:227.716940pt;}
.y76{bottom:229.149787pt;}
.y161{bottom:231.947009pt;}
.y12d{bottom:232.433012pt;}
.y1e3{bottom:235.178623pt;}
.y4a{bottom:240.156000pt;}
.y1c0{bottom:240.436028pt;}
.y21{bottom:243.798915pt;}
.y210{bottom:244.509023pt;}
.y178{bottom:245.380351pt;}
.y155{bottom:247.036369pt;}
.y92{bottom:248.186640pt;}
.yfb{bottom:248.698175pt;}
.y1b6{bottom:249.725232pt;}
.y75{bottom:251.158079pt;}
.y160{bottom:253.955301pt;}
.y156{bottom:255.160008pt;}
.y12c{bottom:255.441682pt;}
.y260{bottom:256.760008pt;}
.y1e2{bottom:257.186915pt;}
.y23e{bottom:257.882635pt;}
.y49{bottom:263.164669pt;}
.y1bf{bottom:263.444697pt;}
.y20{bottom:267.807961pt;}
.y177{bottom:268.389020pt;}
.y154{bottom:269.044661pt;}
.y91{bottom:271.195309pt;}
.y1b5{bottom:271.733524pt;}
.y15f{bottom:275.963594pt;}
.yf4{bottom:278.450351pt;}
.y1e1{bottom:279.195207pt;}
.y23d{bottom:280.891304pt;}
.y18f{bottom:281.821900pt;}
.y20c{bottom:286.055319pt;}
.y48{bottom:286.173338pt;}
.y1be{bottom:286.453366pt;}
.y1f{bottom:291.817007pt;}
.y1b4{bottom:293.741816pt;}
.y90{bottom:294.203978pt;}
.y15e{bottom:297.971886pt;}
.y1e0{bottom:301.203499pt;}
.yf3{bottom:301.459020pt;}
.y18e{bottom:303.830192pt;}
.y20b{bottom:309.063988pt;}
.y47{bottom:309.182008pt;}
.y1bd{bottom:309.462035pt;}
.y153{bottom:313.061246pt;}
.y120{bottom:313.463543pt;}
.y1b3{bottom:315.750108pt;}
.y1e{bottom:315.826053pt;}
.y8f{bottom:317.212647pt;}
.y30{bottom:319.480005pt;}
.y15d{bottom:319.980178pt;}
.y263{bottom:321.357301pt;}
.y1df{bottom:323.211791pt;}
.yf2{bottom:324.467689pt;}
.y18d{bottom:325.838484pt;}
.y23c{bottom:326.908642pt;}
.y20a{bottom:332.072657pt;}
.y46{bottom:332.190677pt;}
.y152{bottom:335.069538pt;}
.y1d{bottom:339.835099pt;}
.y8e{bottom:340.221316pt;}
.ya7{bottom:340.920004pt;}
.y15c{bottom:341.988470pt;}
.y123{bottom:342.200004pt;}
.y1de{bottom:345.220084pt;}
.yf1{bottom:347.476358pt;}
.y18c{bottom:347.846777pt;}
.y23b{bottom:349.917312pt;}
.y1bc{bottom:353.478620pt;}
.y209{bottom:355.081326pt;}
.y45{bottom:355.199346pt;}
.y25e{bottom:355.372241pt;}
.y1a1{bottom:356.796182pt;}
.y151{bottom:357.077830pt;}
.y11f{bottom:359.480881pt;}
.y8d{bottom:363.229985pt;}
.y1c{bottom:363.844145pt;}
.y15b{bottom:363.996762pt;}
.y18b{bottom:369.855069pt;}
.yf0{bottom:370.485027pt;}
.y25d{bottom:374.379403pt;}
.y208{bottom:378.089995pt;}
.y44{bottom:378.208015pt;}
.y150{bottom:379.086122pt;}
.y1a0{bottom:379.804851pt;}
.y11e{bottom:382.489550pt;}
.y8c{bottom:386.238654pt;}
.y1b{bottom:387.853192pt;}
.y1dd{bottom:389.236668pt;}
.y18a{bottom:391.863361pt;}
.y25c{bottom:393.386564pt;}
.yef{bottom:393.493696pt;}
.y23a{bottom:395.934650pt;}
.y14f{bottom:401.094415pt;}
.y207{bottom:401.098665pt;}
.y43{bottom:401.216684pt;}
.y19f{bottom:402.813520pt;}
.y11d{bottom:405.498219pt;}
.y21f{bottom:408.919782pt;}
.y8b{bottom:409.247323pt;}
.y1dc{bottom:411.244960pt;}
.y1a{bottom:411.862238pt;}
.y25b{bottom:412.393726pt;}
.y189{bottom:413.871653pt;}
.y74{bottom:415.820081pt;}
.yee{bottom:416.502365pt;}
.yc0{bottom:416.820448pt;}
.y239{bottom:418.943319pt;}
.y14e{bottom:423.102707pt;}
.y206{bottom:424.107334pt;}
.y42{bottom:424.225353pt;}
.y19e{bottom:425.822189pt;}
.y11c{bottom:428.506888pt;}
.y21e{bottom:430.928074pt;}
.y25a{bottom:431.400887pt;}
.y13f{bottom:432.106161pt;}
.y8a{bottom:432.255993pt;}
.y1db{bottom:433.253252pt;}
.y19{bottom:435.871284pt;}
.y188{bottom:435.879945pt;}
.y73{bottom:437.828373pt;}
.ybf{bottom:438.828740pt;}
.yed{bottom:439.511034pt;}
.y238{bottom:441.951988pt;}
.y14d{bottom:445.110999pt;}
.y205{bottom:447.116003pt;}
.y41{bottom:447.234022pt;}
.y19d{bottom:448.830858pt;}
.y259{bottom:450.408048pt;}
.y11b{bottom:451.515558pt;}
.y21d{bottom:452.936366pt;}
.y13e{bottom:454.114453pt;}
.y1da{bottom:455.261545pt;}
.y89{bottom:455.264662pt;}
.y187{bottom:457.888238pt;}
.y72{bottom:459.836665pt;}
.y18{bottom:459.880330pt;}
.ybe{bottom:460.837032pt;}
.yec{bottom:462.519704pt;}
.y258{bottom:469.415210pt;}
.y204{bottom:470.124672pt;}
.y40{bottom:470.242691pt;}
.y19c{bottom:471.839527pt;}
.y11a{bottom:474.524227pt;}
.y21c{bottom:474.944659pt;}
.y13d{bottom:476.122746pt;}
.y1d9{bottom:477.269837pt;}
.y88{bottom:478.273331pt;}
.y186{bottom:479.896530pt;}
.y71{bottom:481.844957pt;}
.ybd{bottom:482.845325pt;}
.y17{bottom:483.889376pt;}
.yeb{bottom:485.528373pt;}
.y237{bottom:487.969326pt;}
.y257{bottom:488.422371pt;}
.y203{bottom:493.133341pt;}
.y3f{bottom:493.251361pt;}
.y19b{bottom:494.848196pt;}
.y15a{bottom:495.532142pt;}
.y21b{bottom:496.952951pt;}
.y119{bottom:497.532896pt;}
.y13c{bottom:498.131038pt;}
.ya3{bottom:498.359998pt;}
.y87{bottom:501.282000pt;}
.y185{bottom:501.904822pt;}
.y70{bottom:503.853249pt;}
.ybc{bottom:504.853617pt;}
.y256{bottom:507.429533pt;}
.y16{bottom:507.898422pt;}
.yea{bottom:508.537042pt;}
.y236{bottom:510.977995pt;}
.y159{bottom:514.539303pt;}
.y202{bottom:516.142010pt;}
.y3e{bottom:516.260030pt;}
.y19a{bottom:517.856865pt;}
.y21a{bottom:518.961243pt;}
.y13b{bottom:520.139330pt;}
.y118{bottom:520.541565pt;}
.y1d8{bottom:521.286421pt;}
.y184{bottom:523.913114pt;}
.y86{bottom:524.290669pt;}
.y6f{bottom:525.861542pt;}
.y255{bottom:526.436694pt;}
.ybb{bottom:526.861909pt;}
.ye9{bottom:531.545711pt;}
.y15{bottom:531.907468pt;}
.ydc{bottom:535.864706pt;}
.y201{bottom:539.150679pt;}
.y3d{bottom:539.268699pt;}
.y199{bottom:540.865535pt;}
.y219{bottom:540.969535pt;}
.y13a{bottom:542.147622pt;}
.y1d7{bottom:543.294713pt;}
.y117{bottom:543.550234pt;}
.y6e{bottom:547.869834pt;}
.yba{bottom:548.870201pt;}
.ye8{bottom:554.554380pt;}
.y14{bottom:555.916514pt;}
.y235{bottom:556.995334pt;}
.ydb{bottom:557.872998pt;}
.y267{bottom:561.850451pt;}
.y200{bottom:562.159348pt;}
.y3c{bottom:562.277368pt;}
.y218{bottom:562.977827pt;}
.ya2{bottom:563.483079pt;}
.y139{bottom:564.155914pt;}
.y1d6{bottom:565.303006pt;}
.y176{bottom:567.501718pt;}
.y6d{bottom:569.878126pt;}
.yb9{bottom:570.878493pt;}
.ye7{bottom:577.563049pt;}
.y1b2{bottom:578.921425pt;}
.yda{bottom:579.881290pt;}
.y13{bottom:579.925560pt;}
.y234{bottom:580.004003pt;}
.y266{bottom:580.857613pt;}
.y217{bottom:584.986120pt;}
.y1ff{bottom:585.168018pt;}
.y3b{bottom:585.286037pt;}
.ya1{bottom:585.491371pt;}
.y138{bottom:586.164207pt;}
.y116{bottom:587.566818pt;}
.y175{bottom:590.510388pt;}
.y6c{bottom:591.886418pt;}
.yb8{bottom:592.886786pt;}
.y265{bottom:599.864774pt;}
.ye6{bottom:600.571718pt;}
.y1b1{bottom:600.929717pt;}
.yd9{bottom:601.889583pt;}
.y233{bottom:603.012672pt;}
.y12{bottom:603.934606pt;}
.y115{bottom:606.573980pt;}
.ya0{bottom:607.499663pt;}
.y137{bottom:608.172499pt;}
.y1fe{bottom:608.176687pt;}
.y3a{bottom:608.294706pt;}
.y1d5{bottom:609.319590pt;}
.y174{bottom:613.519057pt;}
.y6b{bottom:613.894710pt;}
.yb7{bottom:614.895078pt;}
.y264{bottom:618.871936pt;}
.y133{bottom:620.919993pt;}
.y1b0{bottom:622.938009pt;}
.ye5{bottom:623.580387pt;}
.yd8{bottom:623.897875pt;}
.y11{bottom:627.943652pt;}
.y9f{bottom:629.507955pt;}
.y136{bottom:630.180791pt;}
.y1fd{bottom:631.185356pt;}
.y39{bottom:631.303375pt;}
.y1d4{bottom:631.327882pt;}
.y173{bottom:636.527726pt;}
.yb6{bottom:636.903370pt;}
.y1af{bottom:644.946301pt;}
.ye4{bottom:646.589057pt;}
.y232{bottom:649.030010pt;}
.y9e{bottom:651.516247pt;}
.y10{bottom:651.952698pt;}
.y135{bottom:652.189083pt;}
.y1d3{bottom:653.336174pt;}
.y1fc{bottom:654.194025pt;}
.y38{bottom:654.312044pt;}
.yb5{bottom:658.911662pt;}
.y172{bottom:659.536395pt;}
.yd7{bottom:662.342684pt;}
.y1ae{bottom:666.954594pt;}
.ye3{bottom:669.597726pt;}
.yce{bottom:671.759211pt;}
.y231{bottom:672.038679pt;}
.y9d{bottom:673.524540pt;}
.y1d2{bottom:675.344467pt;}
.yf{bottom:675.961744pt;}
.y1fb{bottom:677.202694pt;}
.y63{bottom:677.320714pt;}
.y171{bottom:682.545064pt;}
.y25f{bottom:685.300163pt;}
.yd6{bottom:685.351353pt;}
.y1ad{bottom:688.962886pt;}
.ye2{bottom:692.606395pt;}
.ycd{bottom:693.767503pt;}
.y230{bottom:695.047348pt;}
.y5f{bottom:695.414768pt;}
.y9c{bottom:695.532832pt;}
.y1d1{bottom:697.352759pt;}
.y1fa{bottom:700.211363pt;}
.y62{bottom:700.329383pt;}
.yd5{bottom:708.360022pt;}
.y1ac{bottom:710.971178pt;}
.y12b{bottom:715.615064pt;}
.ycc{bottom:715.775795pt;}
.y5e{bottom:717.423061pt;}
.y183{bottom:720.330963pt;}
.y254{bottom:721.313713pt;}
.y1f9{bottom:723.220032pt;}
.y61{bottom:723.338052pt;}
.ye{bottom:723.979836pt;}
.y85{bottom:731.368691pt;}
.yfa{bottom:732.219313pt;}
.y1ab{bottom:732.979470pt;}
.ycb{bottom:737.784088pt;}
.y12a{bottom:738.623733pt;}
.y5d{bottom:739.431353pt;}
.y22f{bottom:741.064687pt;}
.y253{bottom:741.321252pt;}
.y1d0{bottom:741.369343pt;}
.y182{bottom:742.339255pt;}
.y1f8{bottom:746.228701pt;}
.y60{bottom:746.346721pt;}
.y2b{bottom:749.239987pt;}
.yf9{bottom:754.227606pt;}
.y84{bottom:754.377360pt;}
.y7{bottom:758.903269pt;}
.yca{bottom:759.792380pt;}
.y252{bottom:761.328790pt;}
.y5c{bottom:761.439645pt;}
.y129{bottom:761.632402pt;}
.y1cf{bottom:763.377635pt;}
.y247{bottom:764.073356pt;}
.y181{bottom:764.347548pt;}
.yaf{bottom:769.355390pt;}
.y198{bottom:770.952226pt;}
.yf8{bottom:776.235898pt;}
.y83{bottom:777.386029pt;}
.y251{bottom:781.336328pt;}
.yc9{bottom:781.800672pt;}
.y5b{bottom:783.447937pt;}
.y108{bottom:784.641071pt;}
.y1ce{bottom:785.385928pt;}
.y180{bottom:786.355840pt;}
.y22e{bottom:787.082025pt;}
.y6a{bottom:789.457348pt;}
.y1f7{bottom:792.246040pt;}
.yae{bottom:792.364059pt;}
.y197{bottom:793.960895pt;}
.y132{bottom:794.242586pt;}
.yf7{bottom:798.244190pt;}
.y82{bottom:800.394698pt;}
.y250{bottom:801.343867pt;}
.yc8{bottom:803.808964pt;}
.y5a{bottom:805.456229pt;}
.y1cd{bottom:807.394220pt;}
.y107{bottom:807.649740pt;}
.y17f{bottom:808.364132pt;}
.y22d{bottom:810.090694pt;}
.y69{bottom:811.465640pt;}
.y1f6{bottom:815.254709pt;}
.y131{bottom:816.250879pt;}
.y196{bottom:816.969564pt;}
.yf6{bottom:820.252482pt;}
.y24f{bottom:821.351405pt;}
.y81{bottom:823.403368pt;}
.yc7{bottom:825.817256pt;}
.y59{bottom:827.464522pt;}
.y1cc{bottom:829.402512pt;}
.y17e{bottom:830.372424pt;}
.y10c{bottom:830.658410pt;}
.yb4{bottom:831.082172pt;}
.y8{bottom:832.119984pt;}
.y22c{bottom:833.099363pt;}
.y68{bottom:833.473932pt;}
.y130{bottom:838.259171pt;}
.y1f5{bottom:838.263378pt;}
.y195{bottom:839.978233pt;}
.y24e{bottom:841.358944pt;}
.yf5{bottom:842.260775pt;}
.y80{bottom:846.412037pt;}
.yc6{bottom:847.825549pt;}
.y58{bottom:849.472814pt;}
.y17d{bottom:852.380716pt;}
.yb3{bottom:853.090464pt;}
.y106{bottom:853.667079pt;}
.y67{bottom:855.482224pt;}
.y246{bottom:856.108032pt;}
.y12f{bottom:860.267463pt;}
.y1f4{bottom:861.272047pt;}
.y24d{bottom:861.366482pt;}
.y194{bottom:862.986902pt;}
.y7f{bottom:869.420706pt;}
.yc5{bottom:869.833841pt;}
.y57{bottom:871.481106pt;}
.y1cb{bottom:873.419096pt;}
.yb2{bottom:875.098756pt;}
.ye1{bottom:876.675748pt;}
.y66{bottom:877.490516pt;}
.y22b{bottom:879.116701pt;}
.y24c{bottom:881.374020pt;}
.y12e{bottom:882.275755pt;}
.y1f3{bottom:884.280716pt;}
.y170{bottom:889.623086pt;}
.yc4{bottom:891.842133pt;}
.y7e{bottom:892.429375pt;}
.y56{bottom:893.489398pt;}
.y1ca{bottom:895.427389pt;}
.yb1{bottom:897.107049pt;}
.y65{bottom:899.498809pt;}
.ye0{bottom:899.684417pt;}
.y24b{bottom:901.381559pt;}
.y22a{bottom:902.125370pt;}
.y1f2{bottom:907.289385pt;}
.y16f{bottom:912.631755pt;}
.y1aa{bottom:913.808176pt;}
.yc3{bottom:913.850425pt;}
.y7d{bottom:915.438044pt;}
.y55{bottom:915.497690pt;}
.yb0{bottom:919.115341pt;}
.y64{bottom:921.507101pt;}
.y105{bottom:922.693086pt;}
.y245{bottom:925.134040pt;}
.y1eb{bottom:926.496635pt;}
.y1f1{bottom:930.298054pt;}
.y14a{bottom:931.319980pt;}
.y16e{bottom:935.640424pt;}
.y1a9{bottom:935.816468pt;}
.yc2{bottom:935.858717pt;}
.y7c{bottom:938.446713pt;}
.y1c9{bottom:939.443973pt;}
.ydf{bottom:945.701755pt;}
.y1ec{bottom:947.319979pt;}
.y229{bottom:948.142709pt;}
.y24a{bottom:951.798849pt;}
.y37{bottom:953.424743pt;}
.y1a8{bottom:957.824760pt;}
.yc1{bottom:957.867010pt;}
.y16d{bottom:958.649093pt;}
.y1c8{bottom:961.452265pt;}
.y7b{bottom:961.455382pt;}
.yde{bottom:968.710424pt;}
.y1ea{bottom:970.513219pt;}
.y249{bottom:970.806010pt;}
.y228{bottom:971.151378pt;}
.y1f0{bottom:974.314639pt;}
.y36{bottom:976.433412pt;}
.y1a7{bottom:979.833053pt;}
.y16c{bottom:981.657763pt;}
.y7a{bottom:984.464051pt;}
.y248{bottom:989.813172pt;}
.ydd{bottom:991.719093pt;}
.y10b{bottom:992.521511pt;}
.y1ef{bottom:993.321800pt;}
.y4{bottom:995.959977pt;}
.y35{bottom:999.442081pt;}
.y1a6{bottom:1001.841345pt;}
.y16b{bottom:1004.666432pt;}
.y1c7{bottom:1005.468850pt;}
.y79{bottom:1007.472721pt;}
.y1{bottom:1025.079976pt;}
.y33{bottom:1067.959974pt;}
.h1f{height:7.360000pt;}
.h5{height:15.359999pt;}
.h20{height:21.414216pt;}
.h21{height:24.959999pt;}
.hf{height:25.279999pt;}
.h18{height:30.359618pt;}
.h27{height:34.559999pt;}
.he{height:35.667943pt;}
.h10{height:35.690250pt;}
.hd{height:36.479998pt;}
.h15{height:37.759998pt;}
.h4{height:37.940035pt;}
.h1d{height:37.973565pt;}
.h22{height:39.929184pt;}
.h13{height:41.762375pt;}
.hb{height:42.962436pt;}
.h1c{height:43.586890pt;}
.h19{height:43.873044pt;}
.h26{height:44.574100pt;}
.h6{height:44.601659pt;}
.h8{height:44.607587pt;}
.h23{height:44.641077pt;}
.h12{height:45.522697pt;}
.h1b{height:48.293117pt;}
.h28{height:49.051787pt;}
.h14{height:49.095138pt;}
.h25{height:49.311506pt;}
.h1a{height:52.641473pt;}
.hc{height:53.515709pt;}
.h1e{height:62.399997pt;}
.h17{height:62.719997pt;}
.h2{height:68.479997pt;}
.h16{height:75.199997pt;}
.ha{height:75.880070pt;}
.h3{height:115.986948pt;}
.h9{height:158.079993pt;}
.h24{height:1022.079957pt;}
.h11{height:1060.799956pt;}
.h7{height:1071.039955pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.999972pt;}
.w12{width:2.880000pt;}
.wf{width:9.280000pt;}
.w10{width:11.200000pt;}
.w6{width:12.479999pt;}
.w14{width:13.119999pt;}
.w13{width:13.439999pt;}
.wb{width:14.399999pt;}
.wc{width:15.359999pt;}
.w5{width:178.239993pt;}
.wd{width:196.479992pt;}
.w8{width:196.799992pt;}
.we{width:197.439992pt;}
.w16{width:208.319991pt;}
.w2{width:304.959987pt;}
.w1{width:322.239987pt;}
.w4{width:361.279985pt;}
.w7{width:448.959981pt;}
.w9{width:690.879971pt;}
.wa{width:755.519969pt;}
.w15{width:756.239968pt;}
.w11{width:760.639968pt;}
.w3{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:0.941894pt;}
.x23{left:11.561514pt;}
.xe{left:21.439999pt;}
.xc{left:23.359999pt;}
.x2{left:31.177742pt;}
.x18{left:32.639999pt;}
.x3{left:37.759998pt;}
.x15{left:46.079998pt;}
.x8{left:49.452693pt;}
.x7{left:62.602280pt;}
.x6{left:181.011036pt;}
.x13{left:204.475422pt;}
.x16{left:210.949015pt;}
.xf{left:212.325303pt;}
.x21{left:213.510695pt;}
.x19{left:217.445303pt;}
.x11{left:220.966416pt;}
.x1c{left:229.471766pt;}
.x9{left:230.407889pt;}
.xb{left:250.853916pt;}
.x14{left:315.801433pt;}
.x1b{left:320.756745pt;}
.x17{left:322.275027pt;}
.x10{left:323.651315pt;}
.x1a{left:328.771314pt;}
.x12{left:332.292409pt;}
.x5{left:356.799985pt;}
.x1e{left:422.812802pt;}
.x20{left:427.345760pt;}
.x1{left:432.959982pt;}
.x25{left:455.371541pt;}
.x1f{left:457.263282pt;}
.x26{left:477.598666pt;}
.x27{left:498.387749pt;}
.x22{left:533.759978pt;}
.x4{left:556.249933pt;}
.x28{left:566.350856pt;}
.xd{left:726.719970pt;}
.x1d{left:731.839970pt;}
.xa{left:750.354616pt;}
}




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