
    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_a3256c12632e720155365bb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f6d2c17f0f368624dd8799fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.592000;font-style:normal;font-weight: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_990f9504a903094c8de0fedf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight: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_1f81d0ee988c946d2703f3e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight: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_6f9b8e78ec30066a0609bd81.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;font-style:normal;font-weight: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_75997b42c20e2e8dde4221e9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;font-style:normal;font-weight: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_58985701b4c755d552b4c977.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_84c75a949614596af0377258.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight: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_3aee6960827a45146e60958b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.762207;font-style:normal;font-weight: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_5274708dacbc89987117cc56.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;font-style:normal;font-weight: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_5579698c5682b050b445ea94.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight: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_a559592ebdb8fc92b1b1f306.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284668;font-style:normal;font-weight: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_d5ac5210454c219564d744a0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1e6b08a2e0e65652774e9a1e.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight: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_525198572c8914af04fae153.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight: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_0cd2e56ae35e2017f9252232.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.172852;font-style:normal;font-weight: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_f0637855232543147c388d75.woff2')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_86b5a191d31da5b7c2f08424.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.311035;font-style:normal;font-weight: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_5579698c5682b050b445ea94.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284180;font-style:normal;font-weight: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_63a4ad81fc1a02d4c5c56a97.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284668;font-style:normal;font-weight: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_4d0e6a4b4b1490a8ec09d344.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.949219;font-style:normal;font-weight: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_2f2274f46a1d342fec1ac555.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.762207;font-style:normal;font-weight: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_58985701b4c755d552b4c977.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_7576ea97ee47ea6ed52877e0.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.402354;font-style:normal;font-weight: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_ec52de8f940d24ca45def41c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284180;font-style:normal;font-weight: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_78fa6280db9f805b983e99e2.woff2')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_32ea229a39576e751c479d0a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.078125;font-style:normal;font-weight: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_fc667c03cdf7251522bff2a5.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.435059;font-style:normal;font-weight: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_3667aa668d798ee7d1ecc985.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.942383;font-style:normal;font-weight: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_77d6674a26510efa8414381c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.372070;font-style:normal;font-weight: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_3a5a7e6736f57c769e0c376d.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.063477;font-style:normal;font-weight: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_2aec64095822e2f2a9c43f5b.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.769531;font-style:normal;font-weight: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_19741534929444259c84f791.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.769531;font-style:normal;font-weight: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_af98b571d59229de013a821a.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.063477;font-style:normal;font-weight: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_435fc56ecb3dbc42ffdcfcf5.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.769531;font-style:normal;font-weight: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_7b9526850411304f5df61383.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.921387;font-style:normal;font-weight: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_ac81e05c9df3d6cfa1b12966.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_866dd452b666021dcc3d782a.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_62dc84984201224bc3deeb10.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.172852;font-style:normal;font-weight: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_4d879c28c8cc38bb8d1ac3dd.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.785645;font-style:normal;font-weight: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_8c5d93691e8636a1a495652a.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.762207;font-style:normal;font-weight: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_535927f8d9b40be6b41cd924.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_081eacc69f0f774161f9cab4.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_756665841bb055a41df320dd.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_be12de811703bc82c02d906f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_413d810b98aa40568ee13297.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_c7b171b883b75d76b6e0f487.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_45ffcea2af9551ca96c382bd.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.682617;font-style:normal;font-weight: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_bc058d0a1f83bfc3feca95dc.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_4b202f37a356bd1e9e732823.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_45ffcea2af9551ca96c382bd.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.682617;font-style:normal;font-weight: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_fce5cd421321ea3a2cb6715d.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_2b54a9314dfa4293502750b7.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_45ffcea2af9551ca96c382bd.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.682617;font-style:normal;font-weight: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_760cc20935da262ad5a0e5ae.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_953bcb9db5ea974d649c6fc7.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_45ffcea2af9551ca96c382bd.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.682617;font-style:normal;font-weight: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_a4d9189c8f975fd0d1c5d56d.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_45ffcea2af9551ca96c382bd.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.682617;font-style:normal;font-weight: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_1d1d088cdcb612ff3e9471ec.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_7bb545bf10e622909cdb1286.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-ms-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);-webkit-transform:matrix(0.000000,1.500000,-1.500000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-75.780000px;}
.v7{vertical-align:-71.280000px;}
.v4{vertical-align:-23.760000px;}
.v2{vertical-align:-20.880000px;}
.v8{vertical-align:-13.680000px;}
.vc{vertical-align:-10.080000px;}
.v5{vertical-align:-5.760000px;}
.ve{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.160000px;}
.v6{vertical-align:5.760000px;}
.vb{vertical-align:10.080000px;}
.v9{vertical-align:13.680000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.vd{vertical-align:43.200000px;}
.ls11{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.612000px;}
.ls18{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.463800px;}
.ls1e{letter-spacing:-0.457800px;}
.ls2f{letter-spacing:-0.414600px;}
.ls16{letter-spacing:-0.305400px;}
.ls26{letter-spacing:-0.272400px;}
.ls1b{letter-spacing:-0.262200px;}
.ls2d{letter-spacing:-0.259800px;}
.ls28{letter-spacing:-0.152400px;}
.ls2c{letter-spacing:-0.144000px;}
.ls34{letter-spacing:-0.112200px;}
.ls27{letter-spacing:-0.109200px;}
.ls36{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.082200px;}
.ls9{letter-spacing:-0.064800px;}
.ls7{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.024286px;}
.lsa{letter-spacing:0.036000px;}
.ls2b{letter-spacing:0.053280px;}
.ls5{letter-spacing:0.060480px;}
.ls2e{letter-spacing:0.066240px;}
.ls2{letter-spacing:0.096480px;}
.ls10{letter-spacing:0.109200px;}
.ls31{letter-spacing:0.136609px;}
.ls13{letter-spacing:0.149760px;}
.ls1d{letter-spacing:0.152400px;}
.ls1c{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.220320px;}
.lse{letter-spacing:0.256200px;}
.lsd{letter-spacing:0.256320px;}
.ls15{letter-spacing:0.262080px;}
.ls14{letter-spacing:0.262200px;}
.ls1{letter-spacing:0.276480px;}
.ls2a{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.305400px;}
.ls32{letter-spacing:0.311040px;}
.ls24{letter-spacing:0.325440px;}
.ls4{letter-spacing:0.334800px;}
.ls29{letter-spacing:0.360000px;}
.ls35{letter-spacing:0.428400px;}
.ls23{letter-spacing:0.567360px;}
.ls22{letter-spacing:1.980000px;}
.ls1f{letter-spacing:18.174720px;}
.ls20{letter-spacing:44.133120px;}
.lsb{letter-spacing:59.321280px;}
.ls17{letter-spacing:62.064000px;}
.ls6{letter-spacing:64.002720px;}
.ls12{letter-spacing:73.584000px;}
.ls30{letter-spacing:93.029760px;}
.ls1a{letter-spacing:93.173760px;}
.ls21{letter-spacing:202.667760px;}
.ls37{letter-spacing:309.149760px;}
.ls25{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,51,153),0 0.015em rgb(0,51,153),0.015em 0 rgb(0,51,153),0 -0.015em  rgb(0,51,153);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.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);}
.sc0{text-shadow:-0.015em 0 rgb(51,54,102),0 0.015em rgb(51,54,102),0.015em 0 rgb(51,54,102),0 -0.015em  rgb(51,54,102);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(0,51,153);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(51,54,102);text-shadow:none;}
}
.wsc{word-spacing:-66.240000px;}
.ws9{word-spacing:-59.760000px;}
.ws19{word-spacing:-51.816960px;}
.ws1a{word-spacing:-48.240000px;}
.ws26{word-spacing:-42.592320px;}
.ws1b{word-spacing:-38.880000px;}
.ws1c{word-spacing:-38.607600px;}
.ws18{word-spacing:-26.273520px;}
.wsf{word-spacing:-16.865400px;}
.ws12{word-spacing:-16.822200px;}
.ws28{word-spacing:-16.712400px;}
.ws13{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.450800px;}
.ws1e{word-spacing:-16.407600px;}
.ws17{word-spacing:-16.297800px;}
.ws11{word-spacing:-16.272000px;}
.ws14{word-spacing:-16.254600px;}
.ws24{word-spacing:-16.145400px;}
.ws25{word-spacing:-16.102200px;}
.ws15{word-spacing:-15.984000px;}
.wsd{word-spacing:-15.948000px;}
.ws10{word-spacing:-15.840000px;}
.ws1f{word-spacing:-15.300000px;}
.ws23{word-spacing:-14.993280px;}
.ws21{word-spacing:-14.940000px;}
.ws27{word-spacing:-14.833200px;}
.ws20{word-spacing:-14.796000px;}
.ws22{word-spacing:-14.680200px;}
.ws8{word-spacing:-13.840560px;}
.ws6{word-spacing:-13.505760px;}
.ws3{word-spacing:-13.447440px;}
.ws7{word-spacing:-13.440960px;}
.wsa{word-spacing:-10.440000px;}
.ws5{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.704680px;}
.wse{word-spacing:-0.322440px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:0.397560px;}
.ws0{word-spacing:770.178000px;}
.ws1{word-spacing:809.274000px;}
._12{margin-left:-23.192640px;}
._10{margin-left:-3.960000px;}
._f{margin-left:-2.116320px;}
._b{margin-left:-1.108320px;}
._5{width:1.266480px;}
._8{width:3.194160px;}
._9{width:9.322560px;}
._a{width:10.458000px;}
._c{width:12.065520px;}
._6{width:104.844240px;}
._7{width:199.074240px;}
._1{width:494.076000px;}
._4{width:497.100000px;}
._3{width:623.298000px;}
._0{width:737.292000px;}
._2{width:743.340000px;}
._d{width:846.156000px;}
._11{width:847.181520px;}
._e{width:2154.900000px;}
._13{width:3008.340000px;}
.fca{color:rgb(255,192,0);}
.fc8{color:rgb(255,0,0);}
.fc7{color:transparent;}
.fc6{color:rgb(0,51,153);}
.fc9{color:rgb(47,84,150);}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(70,120,134);}
.fc3{color:rgb(0,0,255);}
.fcb{color:rgb(237,125,49);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(100,100,100);}
.fc0{color:rgb(51,54,102);}
.fs1{font-size:30.000000px;}
.fs8{font-size:38.880000px;}
.fsb{font-size:41.760000px;}
.fs5{font-size:48.000000px;}
.fsc{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs9{font-size:60.000000px;}
.fse{font-size:63.360000px;}
.fs6{font-size:66.240000px;}
.fsd{font-size:69.822393px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fsa{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y187{bottom:4.680000px;}
.y15b{bottom:4.860000px;}
.y171{bottom:8.640000px;}
.y172{bottom:8.820000px;}
.y287{bottom:9.540000px;}
.y18a{bottom:11.520000px;}
.y15f{bottom:11.700000px;}
.y189{bottom:11.880000px;}
.y15e{bottom:12.060000px;}
.y158{bottom:14.040000px;}
.y159{bottom:14.400000px;}
.y16a{bottom:15.480000px;}
.y166{bottom:17.640000px;}
.y16c{bottom:17.670000px;}
.y163{bottom:17.820000px;}
.y167{bottom:18.000000px;}
.y16d{bottom:18.030000px;}
.y164{bottom:18.180000px;}
.y15d{bottom:18.900000px;}
.y186{bottom:23.220000px;}
.y15a{bottom:23.400000px;}
.y170{bottom:27.360000px;}
.y161{bottom:29.160000px;}
.y286{bottom:29.745000px;}
.y33{bottom:30.000000px;}
.y285{bottom:49.905000px;}
.y6b{bottom:57.420000px;}
.y155{bottom:57.456000px;}
.y284{bottom:70.065000px;}
.y6a{bottom:77.616000px;}
.y100{bottom:111.996000px;}
.y152{bottom:114.876000px;}
.y1c5{bottom:119.736000px;}
.y21e{bottom:120.636000px;}
.y1ad{bottom:122.256000px;}
.yab{bottom:125.676000px;}
.y1f5{bottom:128.016000px;}
.yc4{bottom:131.616000px;}
.ye2{bottom:136.656000px;}
.yf1{bottom:137.736000px;}
.y260{bottom:138.096000px;}
.y176{bottom:139.176000px;}
.y21d{bottom:140.976000px;}
.y1bc{bottom:141.876000px;}
.y1e1{bottom:143.496000px;}
.y122{bottom:145.656000px;}
.y140{bottom:147.456000px;}
.y1f4{bottom:148.536000px;}
.y23d{bottom:148.716000px;}
.yff{bottom:149.976000px;}
.y12c{bottom:151.590000px;}
.y151{bottom:152.850000px;}
.y1c4{bottom:157.530000px;}
.y92{bottom:157.890000px;}
.y25f{bottom:158.430000px;}
.y32{bottom:159.000000px;}
.y1ac{bottom:160.050000px;}
.y21c{bottom:161.490000px;}
.yaa{bottom:163.650000px;}
.y27a{bottom:163.830000px;}
.y23c{bottom:167.610000px;}
.y1f3{bottom:169.050000px;}
.yc3{bottom:169.590000px;}
.ycc{bottom:169.770000px;}
.y175{bottom:171.570000px;}
.ye1{bottom:174.630000px;}
.y31{bottom:175.500000px;}
.yf0{bottom:175.530000px;}
.y25e{bottom:178.950000px;}
.y1bb{bottom:179.850000px;}
.y1e0{bottom:181.470000px;}
.y21b{bottom:182.010000px;}
.y279{bottom:182.730000px;}
.y121{bottom:183.630000px;}
.y23b{bottom:186.690000px;}
.yfe{bottom:187.950000px;}
.y1f2{bottom:189.390000px;}
.y12b{bottom:189.570000px;}
.y174{bottom:191.910000px;}
.y1c3{bottom:195.510000px;}
.y1ab{bottom:198.030000px;}
.y13f{bottom:199.290000px;}
.y25d{bottom:199.470000px;}
.ya9{bottom:201.630000px;}
.y194{bottom:201.990000px;}
.y30{bottom:202.500000px;}
.y21a{bottom:202.530000px;}
.y150{bottom:202.890000px;}
.y23a{bottom:205.590000px;}
.yc2{bottom:207.570000px;}
.y91{bottom:209.550000px;}
.y1f1{bottom:209.910000px;}
.ye0{bottom:212.430000px;}
.yef{bottom:213.510000px;}
.y1ba{bottom:217.830000px;}
.y2f{bottom:219.000000px;}
.y1df{bottom:219.450000px;}
.ycb{bottom:219.810000px;}
.y25c{bottom:219.990000px;}
.y278{bottom:220.710000px;}
.y120{bottom:221.610000px;}
.y193{bottom:222.330000px;}
.y219{bottom:222.870000px;}
.y239{bottom:224.670000px;}
.yfd{bottom:225.930000px;}
.y12a{bottom:227.550000px;}
.y173{bottom:232.950000px;}
.y1c2{bottom:233.490000px;}
.y1aa{bottom:236.010000px;}
.y13e{bottom:237.090000px;}
.ya8{bottom:239.430000px;}
.y277{bottom:239.610000px;}
.y25b{bottom:240.330000px;}
.y14f{bottom:240.690000px;}
.y192{bottom:242.895000px;}
.y218{bottom:243.390000px;}
.y238{bottom:243.570000px;}
.y2e{bottom:246.000000px;}
.ydf{bottom:250.410000px;}
.yee{bottom:251.490000px;}
.y1f0{bottom:252.030000px;}
.y1b9{bottom:255.630000px;}
.y169{bottom:255.675000px;}
.y1de{bottom:257.250000px;}
.yca{bottom:257.430000px;}
.yc1{bottom:257.610000px;}
.y276{bottom:258.690000px;}
.y11f{bottom:259.590000px;}
.y25a{bottom:260.850000px;}
.y90{bottom:261.210000px;}
.y237{bottom:262.470000px;}
.y2d{bottom:262.500000px;}
.yfc{bottom:263.910000px;}
.y129{bottom:265.530000px;}
.y18f{bottom:265.575000px;}
.y1c1{bottom:271.470000px;}
.y10f{bottom:271.650000px;}
.y1a9{bottom:273.990000px;}
.y13d{bottom:275.070000px;}
.y184{bottom:276.015000px;}
.ya7{bottom:277.410000px;}
.y275{bottom:277.590000px;}
.y14e{bottom:278.670000px;}
.y259{bottom:281.370000px;}
.y236{bottom:281.550000px;}
.y1ca{bottom:283.710000px;}
.y217{bottom:284.430000px;}
.yde{bottom:288.390000px;}
.yed{bottom:289.470000px;}
.y2c{bottom:289.500000px;}
.y1b8{bottom:293.610000px;}
.y1dd{bottom:295.230000px;}
.yc0{bottom:295.410000px;}
.y274{bottom:296.490000px;}
.y11e{bottom:297.570000px;}
.y235{bottom:300.450000px;}
.yfb{bottom:301.710000px;}
.y258{bottom:301.890000px;}
.y128{bottom:303.330000px;}
.y216{bottom:304.770000px;}
.y2b{bottom:306.000000px;}
.y10e{bottom:309.495000px;}
.y183{bottom:310.035000px;}
.y16f{bottom:311.115000px;}
.y8f{bottom:311.295000px;}
.y1a8{bottom:311.835000px;}
.y13c{bottom:313.095000px;}
.ya6{bottom:315.435000px;}
.y273{bottom:315.615000px;}
.y14d{bottom:316.695000px;}
.y234{bottom:319.575000px;}
.y191{bottom:321.015000px;}
.y1c9{bottom:321.375000px;}
.y257{bottom:322.275000px;}
.y2a{bottom:322.500000px;}
.y215{bottom:325.335000px;}
.ydd{bottom:326.415000px;}
.y17d{bottom:327.495000px;}
.yec{bottom:331.455000px;}
.y1b7{bottom:331.635000px;}
.y182{bottom:332.175000px;}
.ybf{bottom:333.435000px;}
.y272{bottom:334.515000px;}
.y11d{bottom:335.415000px;}
.y233{bottom:338.475000px;}
.y29{bottom:339.000000px;}
.yfa{bottom:339.735000px;}
.y127{bottom:341.355000px;}
.y256{bottom:342.795000px;}
.y1dc{bottom:345.135000px;}
.y214{bottom:345.855000px;}
.y10d{bottom:347.295000px;}
.y8e{bottom:349.095000px;}
.y1a7{bottom:349.815000px;}
.y13b{bottom:351.075000px;}
.y271{bottom:353.595000px;}
.y181{bottom:354.495000px;}
.y14c{bottom:354.675000px;}
.y53{bottom:355.035000px;}
.y28{bottom:355.500000px;}
.y232{bottom:357.555000px;}
.y1c8{bottom:359.355000px;}
.y1ef{bottom:360.075000px;}
.y255{bottom:363.315000px;}
.ydc{bottom:364.395000px;}
.y17c{bottom:365.295000px;}
.ya5{bottom:365.475000px;}
.y16e{bottom:366.375000px;}
.y1b6{bottom:369.615000px;}
.ybe{bottom:371.415000px;}
.y27{bottom:372.000000px;}
.y270{bottom:372.495000px;}
.y11c{bottom:373.395000px;}
.y180{bottom:376.275000px;}
.y231{bottom:376.455000px;}
.yf9{bottom:377.715000px;}
.y126{bottom:383.295000px;}
.yeb{bottom:383.475000px;}
.y254{bottom:383.835000px;}
.y10c{bottom:385.275000px;}
.y213{bottom:386.715000px;}
.y52{bottom:386.895000px;}
.y8d{bottom:387.075000px;}
.y1a6{bottom:387.795000px;}
.y26{bottom:388.500000px;}
.y14b{bottom:392.475000px;}
.y26f{bottom:392.835000px;}
.y17f{bottom:394.275000px;}
.y1db{bottom:395.355000px;}
.y1c7{bottom:397.335000px;}
.y1c0{bottom:397.515000px;}
.y1ee{bottom:397.695000px;}
.y13a{bottom:401.115000px;}
.ydb{bottom:402.195000px;}
.ya4{bottom:403.275000px;}
.y253{bottom:404.175000px;}
.y25{bottom:405.000000px;}
.y212{bottom:407.235000px;}
.y1b5{bottom:407.595000px;}
.ybd{bottom:409.395000px;}
.y11b{bottom:411.375000px;}
.y26e{bottom:413.175000px;}
.yf8{bottom:415.695000px;}
.y51{bottom:418.575000px;}
.yea{bottom:421.275000px;}
.y24{bottom:421.500000px;}
.y16b{bottom:421.815000px;}
.y10b{bottom:423.255000px;}
.y252{bottom:424.695000px;}
.y8c{bottom:424.875000px;}
.y1a5{bottom:425.775000px;}
.y211{bottom:427.755000px;}
.y190{bottom:431.715000px;}
.y26d{bottom:432.435000px;}
.y14a{bottom:434.595000px;}
.y1bf{bottom:435.315000px;}
.y125{bottom:435.495000px;}
.y1ed{bottom:435.675000px;}
.y230{bottom:436.215000px;}
.y23{bottom:438.000000px;}
.y139{bottom:438.915000px;}
.yda{bottom:440.175000px;}
.ya3{bottom:441.255000px;}
.y251{bottom:445.215000px;}
.y1da{bottom:445.395000px;}
.y1b4{bottom:445.575000px;}
.ybc{bottom:447.195000px;}
.y210{bottom:448.275000px;}
.y50{bottom:450.435000px;}
.y26c{bottom:451.335000px;}
.y22{bottom:454.500000px;}
.y22f{bottom:456.735000px;}
.ye9{bottom:459.255000px;}
.y11a{bottom:461.595000px;}
.y8b{bottom:462.855000px;}
.y1a4{bottom:463.755000px;}
.yf7{bottom:465.735000px;}
.y20f{bottom:468.615000px;}
.y149{bottom:469.875000px;}
.y26b{bottom:470.415000px;}
.y21{bottom:471.000000px;}
.y1be{bottom:473.295000px;}
.y10a{bottom:473.475000px;}
.y1ec{bottom:475.455000px;}
.y138{bottom:476.895000px;}
.y22e{bottom:477.075000px;}
.ya2{bottom:479.235000px;}
.y160{bottom:479.445000px;}
.y4f{bottom:482.115000px;}
.y1d9{bottom:483.195000px;}
.y1b3{bottom:483.375000px;}
.y250{bottom:484.815000px;}
.ybb{bottom:485.175000px;}
.y124{bottom:485.355000px;}
.y20{bottom:487.500000px;}
.y20e{bottom:489.135000px;}
.y26a{bottom:489.315000px;}
.y18b{bottom:489.345000px;}
.ye8{bottom:497.235000px;}
.y22d{bottom:497.595000px;}
.y119{bottom:499.215000px;}
.yf6{bottom:499.575000px;}
.y8a{bottom:500.835000px;}
.y1a3{bottom:501.555000px;}
.y24f{bottom:503.715000px;}
.y1f{bottom:504.000000px;}
.y269{bottom:508.395000px;}
.y20d{bottom:509.655000px;}
.y109{bottom:511.095000px;}
.y77{bottom:514.875000px;}
.y4e{bottom:515.055000px;}
.ya1{bottom:517.215000px;}
.y22c{bottom:518.115000px;}
.y148{bottom:520.275000px;}
.y1e{bottom:520.500000px;}
.y1d8{bottom:520.995000px;}
.yf5{bottom:521.355000px;}
.y24e{bottom:522.795000px;}
.yba{bottom:523.155000px;}
.y1eb{bottom:527.295000px;}
.y20c{bottom:530.175000px;}
.yd9{bottom:534.315000px;}
.y168{bottom:534.705000px;}
.ye7{bottom:535.215000px;}
.y4d{bottom:536.115000px;}
.y1d{bottom:537.000000px;}
.y118{bottom:537.195000px;}
.y22b{bottom:538.635000px;}
.y89{bottom:538.815000px;}
.y1a2{bottom:539.535000px;}
.y24d{bottom:543.135000px;}
.yf4{bottom:543.315000px;}
.y18e{bottom:544.785000px;}
.y268{bottom:546.195000px;}
.y108{bottom:549.075000px;}
.y20b{bottom:550.515000px;}
.y1c{bottom:553.500000px;}
.ya0{bottom:555.195000px;}
.y22a{bottom:557.715000px;}
.y147{bottom:558.075000px;}
.y1b2{bottom:559.335000px;}
.y28b{bottom:559.500000px;}
.yb9{bottom:561.165000px;}
.y24c{bottom:563.505000px;}
.y137{bottom:563.865000px;}
.y267{bottom:565.305000px;}
.y5f{bottom:566.385000px;}
.y17b{bottom:567.285000px;}
.y4c{bottom:569.235000px;}
.y1b{bottom:570.000000px;}
.y1d7{bottom:570.885000px;}
.y20a{bottom:571.065000px;}
.y135{bottom:572.145000px;}
.ye6{bottom:573.225000px;}
.yf3{bottom:573.405000px;}
.y117{bottom:575.205000px;}
.y229{bottom:576.645000px;}
.y88{bottom:576.825000px;}
.y1ea{bottom:577.185000px;}
.y1a1{bottom:577.545000px;}
.y136{bottom:579.345000px;}
.y24b{bottom:584.025000px;}
.yd8{bottom:584.205000px;}
.y1a{bottom:586.500000px;}
.y107{bottom:587.085000px;}
.y28a{bottom:589.500000px;}
.y165{bottom:590.145000px;}
.y4b{bottom:590.295000px;}
.y209{bottom:591.585000px;}
.y9f{bottom:593.025000px;}
.y1cc{bottom:593.205000px;}
.y228{bottom:595.725000px;}
.y146{bottom:596.085000px;}
.y1b1{bottom:597.345000px;}
.yb8{bottom:599.145000px;}
.y1c6{bottom:599.325000px;}
.y18d{bottom:600.045000px;}
.y19{bottom:603.000000px;}
.y266{bottom:603.285000px;}
.y24a{bottom:604.545000px;}
.y17a{bottom:605.085000px;}
.ye5{bottom:611.025000px;}
.y208{bottom:612.105000px;}
.y116{bottom:613.185000px;}
.y87{bottom:614.625000px;}
.y1e9{bottom:614.985000px;}
.y1a0{bottom:615.525000px;}
.y227{bottom:616.065000px;}
.y76{bottom:616.605000px;}
.y5e{bottom:616.785000px;}
.y18{bottom:619.500000px;}
.y1d6{bottom:621.105000px;}
.y4a{bottom:621.645000px;}
.yd7{bottom:622.005000px;}
.y265{bottom:622.185000px;}
.y106{bottom:625.065000px;}
.y134{bottom:625.245000px;}
.y9e{bottom:631.005000px;}
.y207{bottom:631.185000px;}
.y145{bottom:634.065000px;}
.y17{bottom:636.000000px;}
.y226{bottom:636.405000px;}
.yb7{bottom:637.125000px;}
.y154{bottom:637.305000px;}
.y1b0{bottom:639.285000px;}
.y264{bottom:641.085000px;}
.y179{bottom:643.065000px;}
.y1cb{bottom:643.245000px;}
.y249{bottom:645.405000px;}
.y162{bottom:645.450000px;}
.ye4{bottom:649.005000px;}
.y206{bottom:650.085000px;}
.y115{bottom:651.165000px;}
.y16{bottom:652.500000px;}
.y86{bottom:652.605000px;}
.y1e8{bottom:652.965000px;}
.y19f{bottom:653.505000px;}
.y75{bottom:654.405000px;}
.y49{bottom:654.585000px;}
.y18c{bottom:655.530000px;}
.y225{bottom:656.925000px;}
.yd6{bottom:659.985000px;}
.y263{bottom:660.165000px;}
.y74{bottom:660.345000px;}
.y5d{bottom:660.525000px;}
.y105{bottom:663.045000px;}
.y248{bottom:665.925000px;}
.y15{bottom:669.000000px;}
.y205{bottom:669.165000px;}
.y1d5{bottom:671.145000px;}
.y144{bottom:672.045000px;}
.y1af{bottom:674.565000px;}
.yb6{bottom:674.925000px;}
.y48{bottom:676.545000px;}
.y224{bottom:677.445000px;}
.y262{bottom:679.065000px;}
.y178{bottom:681.045000px;}
.y9d{bottom:681.225000px;}
.y14{bottom:685.500000px;}
.y247{bottom:686.445000px;}
.ye3{bottom:686.985000px;}
.yc9{bottom:687.165000px;}
.y204{bottom:688.065000px;}
.y85{bottom:690.585000px;}
.y1e7{bottom:690.945000px;}
.y19e{bottom:691.485000px;}
.y114{bottom:693.105000px;}
.yd5{bottom:697.965000px;}
.y261{bottom:698.145000px;}
.y47{bottom:698.325000px;}
.y133{bottom:700.845000px;}
.y7d{bottom:701.565000px;}
.y15c{bottom:703.050000px;}
.y69{bottom:703.905000px;}
.y73{bottom:704.625000px;}
.y246{bottom:706.965000px;}
.y203{bottom:707.145000px;}
.y143{bottom:710.025000px;}
.y5c{bottom:710.565000px;}
.y13{bottom:712.500000px;}
.yb5{bottom:712.905000px;}
.y104{bottom:713.085000px;}
.y188{bottom:713.130000px;}
.y223{bottom:718.305000px;}
.y9c{bottom:719.025000px;}
.y46{bottom:720.105000px;}
.y1d4{bottom:720.645000px;}
.yc8{bottom:724.965000px;}
.y1ae{bottom:725.145000px;}
.y202{bottom:726.045000px;}
.y245{bottom:727.305000px;}
.y84{bottom:728.565000px;}
.yd4{bottom:735.945000px;}
.y132{bottom:738.825000px;}
.y12{bottom:739.500000px;}
.y1e6{bottom:740.625000px;}
.y45{bottom:742.065000px;}
.y72{bottom:742.245000px;}
.y5b{bottom:742.425000px;}
.y201{bottom:744.945000px;}
.y113{bottom:745.125000px;}
.y157{bottom:746.250000px;}
.y19d{bottom:747.465000px;}
.y142{bottom:747.825000px;}
.yb4{bottom:750.885000px;}
.y185{bottom:750.930000px;}
.y7c{bottom:753.225000px;}
.y68{bottom:755.745000px;}
.y9b{bottom:756.825000px;}
.y222{bottom:759.345000px;}
.yc7{bottom:762.945000px;}
.y200{bottom:764.025000px;}
.y11{bottom:766.500000px;}
.y83{bottom:766.545000px;}
.y244{bottom:768.345000px;}
.y1d3{bottom:771.045000px;}
.y44{bottom:775.905000px;}
.y131{bottom:776.805000px;}
.y112{bottom:778.965000px;}
.y221{bottom:779.865000px;}
.y71{bottom:780.225000px;}
.y1ff{bottom:782.925000px;}
.y288{bottom:784.185000px;}
.y19c{bottom:785.265000px;}
.y141{bottom:785.805000px;}
.yd3{bottom:785.985000px;}
.y70{bottom:786.165000px;}
.y5a{bottom:786.345000px;}
.y243{bottom:787.425000px;}
.yb3{bottom:788.865000px;}
.y1e5{bottom:791.025000px;}
.y10{bottom:793.500000px;}
.y9a{bottom:794.805000px;}
.y156{bottom:796.470000px;}
.y220{bottom:800.205000px;}
.yc6{bottom:800.745000px;}
.y123{bottom:800.925000px;}
.y283{bottom:801.285000px;}
.y1fe{bottom:802.005000px;}
.y82{bottom:804.525000px;}
.y7b{bottom:805.065000px;}
.y67{bottom:805.245000px;}
.y242{bottom:806.505000px;}
.y43{bottom:808.845000px;}
.y130{bottom:814.830000px;}
.yf{bottom:820.500000px;}
.y21f{bottom:820.770000px;}
.y1d2{bottom:820.950000px;}
.y111{bottom:822.750000px;}
.y19b{bottom:823.290000px;}
.yd2{bottom:823.830000px;}
.y241{bottom:825.450000px;}
.y103{bottom:826.890000px;}
.y42{bottom:829.905000px;}
.y59{bottom:830.490000px;}
.y99{bottom:832.830000px;}
.yc5{bottom:838.770000px;}
.yb2{bottom:838.950000px;}
.y110{bottom:840.570000px;}
.y1e4{bottom:840.930000px;}
.y1fd{bottom:841.290000px;}
.y81{bottom:842.370000px;}
.y240{bottom:844.530000px;}
.ye{bottom:847.500000px;}
.y66{bottom:855.510000px;}
.y1d1{bottom:858.750000px;}
.y19a{bottom:861.270000px;}
.yd1{bottom:861.810000px;}
.y41{bottom:863.070000px;}
.y23f{bottom:863.430000px;}
.y102{bottom:864.690000px;}
.y12f{bottom:864.870000px;}
.y98{bottom:870.810000px;}
.yd{bottom:874.500000px;}
.yb1{bottom:876.750000px;}
.y17e{bottom:876.930000px;}
.y6f{bottom:880.350000px;}
.y58{bottom:880.530000px;}
.y1fc{bottom:882.150000px;}
.y23e{bottom:882.330000px;}
.y1e3{bottom:890.610000px;}
.yc{bottom:891.000000px;}
.y40{bottom:893.490000px;}
.y7a{bottom:894.570000px;}
.y65{bottom:894.750000px;}
.y1d0{bottom:896.730000px;}
.y199{bottom:899.250000px;}
.yd0{bottom:899.790000px;}
.y289{bottom:900.000000px;}
.y101{bottom:902.670000px;}
.yb{bottom:907.500000px;}
.y97{bottom:908.790000px;}
.y282{bottom:909.870000px;}
.y3f{bottom:914.370000px;}
.yb0{bottom:914.730000px;}
.y153{bottom:914.910000px;}
.y80{bottom:918.330000px;}
.y1fb{bottom:923.190000px;}
.y281{bottom:930.030000px;}
.y6e{bottom:932.190000px;}
.y57{bottom:932.370000px;}
.y64{bottom:933.810000px;}
.ya{bottom:934.500000px;}
.y1cf{bottom:934.710000px;}
.y198{bottom:937.050000px;}
.ycf{bottom:937.590000px;}
.y3e{bottom:940.650000px;}
.y1e2{bottom:940.830000px;}
.y1fa{bottom:943.710000px;}
.y96{bottom:946.590000px;}
.y280{bottom:950.190000px;}
.y9{bottom:951.000000px;}
.yaf{bottom:952.710000px;}
.y1bd{bottom:952.890000px;}
.y7f{bottom:956.310000px;}
.y3d{bottom:961.710000px;}
.y1f9{bottom:964.050000px;}
.y27f{bottom:970.350000px;}
.y1ce{bottom:972.690000px;}
.y79{bottom:972.870000px;}
.y63{bottom:973.050000px;}
.yce{bottom:975.570000px;}
.y8{bottom:978.000000px;}
.y12e{bottom:978.630000px;}
.y197{bottom:978.990000px;}
.y95{bottom:984.570000px;}
.y3c{bottom:988.530000px;}
.y27e{bottom:990.330000px;}
.yae{bottom:990.690000px;}
.yf2{bottom:990.870000px;}
.y6d{bottom:994.290000px;}
.y56{bottom:994.470000px;}
.y7{bottom:1005.000000px;}
.y1f8{bottom:1005.090000px;}
.y27d{bottom:1010.490000px;}
.y62{bottom:1012.110000px;}
.ycd{bottom:1017.510000px;}
.y3b{bottom:1018.770000px;}
.y1cd{bottom:1022.370000px;}
.y94{bottom:1022.550000px;}
.y6{bottom:1024.500000px;}
.y1f7{bottom:1025.610000px;}
.y196{bottom:1026.150000px;}
.yad{bottom:1028.490000px;}
.y12d{bottom:1028.670000px;}
.y27c{bottom:1030.650000px;}
.y7e{bottom:1032.090000px;}
.y5{bottom:1042.500000px;}
.y1f6{bottom:1045.950000px;}
.y3a{bottom:1049.010000px;}
.y27b{bottom:1050.810000px;}
.y6c{bottom:1056.390000px;}
.y55{bottom:1056.570000px;}
.y4{bottom:1060.500000px;}
.y177{bottom:1064.520000px;}
.y93{bottom:1064.700000px;}
.y78{bottom:1064.880000px;}
.y61{bottom:1065.060000px;}
.yac{bottom:1066.500000px;}
.y195{bottom:1066.680000px;}
.y39{bottom:1067.190000px;}
.y3{bottom:1081.500000px;}
.y38{bottom:1085.550000px;}
.y2{bottom:1102.500000px;}
.y37{bottom:1103.910000px;}
.y1{bottom:1110.000000px;}
.y36{bottom:1122.270000px;}
.y35{bottom:1140.480000px;}
.y60{bottom:1170.000000px;}
.y34{bottom:1194.120000px;}
.y54{bottom:1244.880000px;}
.h2{height:22.500000px;}
.h21{height:32.400000px;}
.h29{height:37.080000px;}
.h1e{height:37.260000px;}
.hd{height:38.671172px;}
.h5{height:40.500000px;}
.h12{height:41.250938px;}
.h2e{height:42.229687px;}
.h26{height:44.460000px;}
.h25{height:44.496000px;}
.h24{height:44.640000px;}
.h2a{height:44.676000px;}
.hf{height:45.000000px;}
.h1a{height:50.735391px;}
.h6{height:52.032000px;}
.h4{height:54.000000px;}
.h20{height:58.651172px;}
.h28{height:58.844458px;}
.h19{height:59.383125px;}
.ha{height:59.439023px;}
.hb{height:59.551172px;}
.h1f{height:60.226875px;}
.h23{height:60.226921px;}
.h27{height:60.226927px;}
.hc{height:61.189805px;}
.he{height:61.423863px;}
.h3{height:63.000000px;}
.h18{height:64.978594px;}
.h11{height:65.010937px;}
.h9{height:65.884219px;}
.h13{height:66.757500px;}
.h2b{height:67.824844px;}
.h15{height:68.084282px;}
.h1c{height:68.554688px;}
.h2d{height:71.613281px;}
.h17{height:71.824219px;}
.h1{height:72.000000px;}
.h14{height:72.562500px;}
.h16{height:74.953125px;}
.h2f{height:81.000000px;}
.h2c{height:90.576000px;}
.h1b{height:98.130937px;}
.h10{height:108.843750px;}
.h22{height:210.630000px;}
.h1d{height:918.000000px;}
.h0{height:1188.000000px;}
.h7{height:1262.880000px;}
.h8{height:1263.000000px;}
.w9{width:55.980000px;}
.w13{width:96.120000px;}
.w14{width:96.156000px;}
.w15{width:96.300000px;}
.w16{width:96.336000px;}
.we{width:103.860000px;}
.wd{width:103.896000px;}
.wf{width:104.040000px;}
.wa{width:165.630000px;}
.wb{width:207.750000px;}
.wc{width:207.900000px;}
.w10{width:221.610000px;}
.w11{width:288.570000px;}
.w12{width:288.615000px;}
.w17{width:702.105000px;}
.w3{width:892.979987px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w5{width:917.999973px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.w8{width:1187.999965px;}
.w7{width:1187.999982px;}
.w6{width:1188.000000px;}
.x0{left:0.000000px;}
.x2f{left:1.800000px;}
.x28{left:4.860000px;}
.x11{left:7.500000px;}
.x35{left:9.360000px;}
.x20{left:10.836000px;}
.x2e{left:14.040000px;}
.x33{left:16.200000px;}
.x34{left:17.640000px;}
.x31{left:18.720000px;}
.x32{left:23.400000px;}
.x49{left:24.480000px;}
.x4f{left:27.000000px;}
.x2a{left:28.260000px;}
.x4e{left:31.185000px;}
.x37{left:34.920000px;}
.x30{left:38.700000px;}
.x46{left:41.220000px;}
.x36{left:44.460000px;}
.x3f{left:50.400000px;}
.x18{left:53.999973px;}
.x23{left:61.020000px;}
.x17{left:62.459973px;}
.x1e{left:67.680000px;}
.x7{left:69.150000px;}
.x15{left:70.919973px;}
.x26{left:72.180000px;}
.x3{left:75.180000px;}
.x16{left:79.379986px;}
.x22{left:85.860000px;}
.x42{left:101.340000px;}
.x12{left:106.235986px;}
.xa{left:108.035987px;}
.x44{left:112.530000px;}
.x1f{left:123.660000px;}
.x41{left:126.405000px;}
.x13{left:133.235986px;}
.x10{left:135.035987px;}
.x50{left:160.409986px;}
.x1b{left:178.409986px;}
.x3d{left:182.369982px;}
.x9{left:184.890000px;}
.x4{left:194.760000px;}
.x3e{left:204.149982px;}
.x1c{left:224.129986px;}
.x52{left:252.780000px;}
.x53{left:258.045000px;}
.x54{left:259.530000px;}
.x40{left:272.010000px;}
.x21{left:289.290000px;}
.x51{left:317.250000px;}
.x8{left:328.425000px;}
.x1{left:358.350000px;}
.x47{left:368.130000px;}
.x5{left:381.030000px;}
.x29{left:393.195000px;}
.x1a{left:413.714986px;}
.x14{left:417.854986px;}
.x6{left:456.510000px;}
.x2{left:457.965000px;}
.x48{left:464.295000px;}
.x24{left:497.055000px;}
.x39{left:524.054982px;}
.xc{left:530.204987px;}
.x1d{left:548.714982px;}
.x43{left:560.595000px;}
.x3a{left:579.314982px;}
.x2b{left:600.915000px;}
.x4a{left:656.745000px;}
.xb{left:679.829987px;}
.xf{left:684.149987px;}
.xe{left:691.529987px;}
.xd{left:700.529987px;}
.x25{left:704.805000px;}
.x4b{left:752.865000px;}
.x2c{left:808.665000px;}
.x19{left:811.769986px;}
.x3b{left:828.464982px;}
.x45{left:849.165000px;}
.x3c{left:850.424982px;}
.x27{left:912.570000px;}
.x4c{left:945.330000px;}
.x2d{left:1016.430000px;}
.x4d{left:1041.450000px;}
.x38{left:1081.769982px;}
@media print{
.vf{vertical-align:-67.360000pt;}
.v7{vertical-align:-63.360000pt;}
.v4{vertical-align:-21.120000pt;}
.v2{vertical-align:-18.560000pt;}
.v8{vertical-align:-12.160000pt;}
.vc{vertical-align:-8.960000pt;}
.v5{vertical-align:-5.120000pt;}
.ve{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.920000pt;}
.v6{vertical-align:5.120000pt;}
.vb{vertical-align:8.960000pt;}
.v9{vertical-align:12.160000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.vd{vertical-align:38.400000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls18{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.412267pt;}
.ls1e{letter-spacing:-0.406933pt;}
.ls2f{letter-spacing:-0.368533pt;}
.ls16{letter-spacing:-0.271467pt;}
.ls26{letter-spacing:-0.242133pt;}
.ls1b{letter-spacing:-0.233067pt;}
.ls2d{letter-spacing:-0.230933pt;}
.ls28{letter-spacing:-0.135467pt;}
.ls2c{letter-spacing:-0.128000pt;}
.ls34{letter-spacing:-0.099733pt;}
.ls27{letter-spacing:-0.097067pt;}
.ls36{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.073067pt;}
.ls9{letter-spacing:-0.057600pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.021588pt;}
.lsa{letter-spacing:0.032000pt;}
.ls2b{letter-spacing:0.047360pt;}
.ls5{letter-spacing:0.053760pt;}
.ls2e{letter-spacing:0.058880pt;}
.ls2{letter-spacing:0.085760pt;}
.ls10{letter-spacing:0.097067pt;}
.ls31{letter-spacing:0.121430pt;}
.ls13{letter-spacing:0.133120pt;}
.ls1d{letter-spacing:0.135467pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.195840pt;}
.lse{letter-spacing:0.227733pt;}
.lsd{letter-spacing:0.227840pt;}
.ls15{letter-spacing:0.232960pt;}
.ls14{letter-spacing:0.233067pt;}
.ls1{letter-spacing:0.245760pt;}
.ls2a{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.271467pt;}
.ls32{letter-spacing:0.276480pt;}
.ls24{letter-spacing:0.289280pt;}
.ls4{letter-spacing:0.297600pt;}
.ls29{letter-spacing:0.320000pt;}
.ls35{letter-spacing:0.380800pt;}
.ls23{letter-spacing:0.504320pt;}
.ls22{letter-spacing:1.760000pt;}
.ls1f{letter-spacing:16.155307pt;}
.ls20{letter-spacing:39.229440pt;}
.lsb{letter-spacing:52.730027pt;}
.ls17{letter-spacing:55.168000pt;}
.ls6{letter-spacing:56.891307pt;}
.ls12{letter-spacing:65.408000pt;}
.ls30{letter-spacing:82.693120pt;}
.ls1a{letter-spacing:82.821120pt;}
.ls21{letter-spacing:180.149120pt;}
.ls37{letter-spacing:274.799787pt;}
.ls25{letter-spacing:754.831787pt;}
.wsc{word-spacing:-58.880000pt;}
.ws9{word-spacing:-53.120000pt;}
.ws19{word-spacing:-46.059520pt;}
.ws1a{word-spacing:-42.880000pt;}
.ws26{word-spacing:-37.859840pt;}
.ws1b{word-spacing:-34.560000pt;}
.ws1c{word-spacing:-34.317867pt;}
.ws18{word-spacing:-23.354240pt;}
.wsf{word-spacing:-14.991467pt;}
.ws12{word-spacing:-14.953067pt;}
.ws28{word-spacing:-14.855467pt;}
.ws13{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.622933pt;}
.ws1e{word-spacing:-14.584533pt;}
.ws17{word-spacing:-14.486933pt;}
.ws11{word-spacing:-14.464000pt;}
.ws14{word-spacing:-14.448533pt;}
.ws24{word-spacing:-14.351467pt;}
.ws25{word-spacing:-14.313067pt;}
.ws15{word-spacing:-14.208000pt;}
.wsd{word-spacing:-14.176000pt;}
.ws10{word-spacing:-14.080000pt;}
.ws1f{word-spacing:-13.600000pt;}
.ws23{word-spacing:-13.327360pt;}
.ws21{word-spacing:-13.280000pt;}
.ws27{word-spacing:-13.185067pt;}
.ws20{word-spacing:-13.152000pt;}
.ws22{word-spacing:-13.049067pt;}
.ws8{word-spacing:-12.302720pt;}
.ws6{word-spacing:-12.005120pt;}
.ws3{word-spacing:-11.953280pt;}
.ws7{word-spacing:-11.947520pt;}
.wsa{word-spacing:-9.280000pt;}
.ws5{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.737493pt;}
.wse{word-spacing:-0.286613pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:0.353387pt;}
.ws0{word-spacing:684.602667pt;}
.ws1{word-spacing:719.354667pt;}
._12{margin-left:-20.615680pt;}
._10{margin-left:-3.520000pt;}
._f{margin-left:-1.881173pt;}
._b{margin-left:-0.985173pt;}
._5{width:1.125760pt;}
._8{width:2.839253pt;}
._9{width:8.286720pt;}
._a{width:9.296000pt;}
._c{width:10.724907pt;}
._6{width:93.194880pt;}
._7{width:176.954880pt;}
._1{width:439.178667pt;}
._4{width:441.866667pt;}
._3{width:554.042667pt;}
._0{width:655.370667pt;}
._2{width:660.746667pt;}
._d{width:752.138667pt;}
._11{width:753.050240pt;}
._e{width:1915.466667pt;}
._13{width:2674.080000pt;}
.fs1{font-size:26.666667pt;}
.fs8{font-size:34.560000pt;}
.fsb{font-size:37.120000pt;}
.fs5{font-size:42.666667pt;}
.fsc{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs9{font-size:53.333333pt;}
.fse{font-size:56.320000pt;}
.fs6{font-size:58.880000pt;}
.fsd{font-size:62.064349pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fsa{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y187{bottom:4.160000pt;}
.y15b{bottom:4.320000pt;}
.y171{bottom:7.680000pt;}
.y172{bottom:7.840000pt;}
.y287{bottom:8.480000pt;}
.y18a{bottom:10.240000pt;}
.y15f{bottom:10.400000pt;}
.y189{bottom:10.560000pt;}
.y15e{bottom:10.720000pt;}
.y158{bottom:12.480000pt;}
.y159{bottom:12.800000pt;}
.y16a{bottom:13.760000pt;}
.y166{bottom:15.680000pt;}
.y16c{bottom:15.706667pt;}
.y163{bottom:15.840000pt;}
.y167{bottom:16.000000pt;}
.y16d{bottom:16.026667pt;}
.y164{bottom:16.160000pt;}
.y15d{bottom:16.800000pt;}
.y186{bottom:20.640000pt;}
.y15a{bottom:20.800000pt;}
.y170{bottom:24.320000pt;}
.y161{bottom:25.920000pt;}
.y286{bottom:26.440000pt;}
.y33{bottom:26.666667pt;}
.y285{bottom:44.360000pt;}
.y6b{bottom:51.040000pt;}
.y155{bottom:51.072000pt;}
.y284{bottom:62.280000pt;}
.y6a{bottom:68.992000pt;}
.y100{bottom:99.552000pt;}
.y152{bottom:102.112000pt;}
.y1c5{bottom:106.432000pt;}
.y21e{bottom:107.232000pt;}
.y1ad{bottom:108.672000pt;}
.yab{bottom:111.712000pt;}
.y1f5{bottom:113.792000pt;}
.yc4{bottom:116.992000pt;}
.ye2{bottom:121.472000pt;}
.yf1{bottom:122.432000pt;}
.y260{bottom:122.752000pt;}
.y176{bottom:123.712000pt;}
.y21d{bottom:125.312000pt;}
.y1bc{bottom:126.112000pt;}
.y1e1{bottom:127.552000pt;}
.y122{bottom:129.472000pt;}
.y140{bottom:131.072000pt;}
.y1f4{bottom:132.032000pt;}
.y23d{bottom:132.192000pt;}
.yff{bottom:133.312000pt;}
.y12c{bottom:134.746667pt;}
.y151{bottom:135.866667pt;}
.y1c4{bottom:140.026667pt;}
.y92{bottom:140.346667pt;}
.y25f{bottom:140.826667pt;}
.y32{bottom:141.333333pt;}
.y1ac{bottom:142.266667pt;}
.y21c{bottom:143.546667pt;}
.yaa{bottom:145.466667pt;}
.y27a{bottom:145.626667pt;}
.y23c{bottom:148.986667pt;}
.y1f3{bottom:150.266667pt;}
.yc3{bottom:150.746667pt;}
.ycc{bottom:150.906667pt;}
.y175{bottom:152.506667pt;}
.ye1{bottom:155.226667pt;}
.y31{bottom:156.000000pt;}
.yf0{bottom:156.026667pt;}
.y25e{bottom:159.066667pt;}
.y1bb{bottom:159.866667pt;}
.y1e0{bottom:161.306667pt;}
.y21b{bottom:161.786667pt;}
.y279{bottom:162.426667pt;}
.y121{bottom:163.226667pt;}
.y23b{bottom:165.946667pt;}
.yfe{bottom:167.066667pt;}
.y1f2{bottom:168.346667pt;}
.y12b{bottom:168.506667pt;}
.y174{bottom:170.586667pt;}
.y1c3{bottom:173.786667pt;}
.y1ab{bottom:176.026667pt;}
.y13f{bottom:177.146667pt;}
.y25d{bottom:177.306667pt;}
.ya9{bottom:179.226667pt;}
.y194{bottom:179.546667pt;}
.y30{bottom:180.000000pt;}
.y21a{bottom:180.026667pt;}
.y150{bottom:180.346667pt;}
.y23a{bottom:182.746667pt;}
.yc2{bottom:184.506667pt;}
.y91{bottom:186.266667pt;}
.y1f1{bottom:186.586667pt;}
.ye0{bottom:188.826667pt;}
.yef{bottom:189.786667pt;}
.y1ba{bottom:193.626667pt;}
.y2f{bottom:194.666667pt;}
.y1df{bottom:195.066667pt;}
.ycb{bottom:195.386667pt;}
.y25c{bottom:195.546667pt;}
.y278{bottom:196.186667pt;}
.y120{bottom:196.986667pt;}
.y193{bottom:197.626667pt;}
.y219{bottom:198.106667pt;}
.y239{bottom:199.706667pt;}
.yfd{bottom:200.826667pt;}
.y12a{bottom:202.266667pt;}
.y173{bottom:207.066667pt;}
.y1c2{bottom:207.546667pt;}
.y1aa{bottom:209.786667pt;}
.y13e{bottom:210.746667pt;}
.ya8{bottom:212.826667pt;}
.y277{bottom:212.986667pt;}
.y25b{bottom:213.626667pt;}
.y14f{bottom:213.946667pt;}
.y192{bottom:215.906667pt;}
.y218{bottom:216.346667pt;}
.y238{bottom:216.506667pt;}
.y2e{bottom:218.666667pt;}
.ydf{bottom:222.586667pt;}
.yee{bottom:223.546667pt;}
.y1f0{bottom:224.026667pt;}
.y1b9{bottom:227.226667pt;}
.y169{bottom:227.266667pt;}
.y1de{bottom:228.666667pt;}
.yca{bottom:228.826667pt;}
.yc1{bottom:228.986667pt;}
.y276{bottom:229.946667pt;}
.y11f{bottom:230.746667pt;}
.y25a{bottom:231.866667pt;}
.y90{bottom:232.186667pt;}
.y237{bottom:233.306667pt;}
.y2d{bottom:233.333333pt;}
.yfc{bottom:234.586667pt;}
.y129{bottom:236.026667pt;}
.y18f{bottom:236.066667pt;}
.y1c1{bottom:241.306667pt;}
.y10f{bottom:241.466667pt;}
.y1a9{bottom:243.546667pt;}
.y13d{bottom:244.506667pt;}
.y184{bottom:245.346667pt;}
.ya7{bottom:246.586667pt;}
.y275{bottom:246.746667pt;}
.y14e{bottom:247.706667pt;}
.y259{bottom:250.106667pt;}
.y236{bottom:250.266667pt;}
.y1ca{bottom:252.186667pt;}
.y217{bottom:252.826667pt;}
.yde{bottom:256.346667pt;}
.yed{bottom:257.306667pt;}
.y2c{bottom:257.333333pt;}
.y1b8{bottom:260.986667pt;}
.y1dd{bottom:262.426667pt;}
.yc0{bottom:262.586667pt;}
.y274{bottom:263.546667pt;}
.y11e{bottom:264.506667pt;}
.y235{bottom:267.066667pt;}
.yfb{bottom:268.186667pt;}
.y258{bottom:268.346667pt;}
.y128{bottom:269.626667pt;}
.y216{bottom:270.906667pt;}
.y2b{bottom:272.000000pt;}
.y10e{bottom:275.106667pt;}
.y183{bottom:275.586667pt;}
.y16f{bottom:276.546667pt;}
.y8f{bottom:276.706667pt;}
.y1a8{bottom:277.186667pt;}
.y13c{bottom:278.306667pt;}
.ya6{bottom:280.386667pt;}
.y273{bottom:280.546667pt;}
.y14d{bottom:281.506667pt;}
.y234{bottom:284.066667pt;}
.y191{bottom:285.346667pt;}
.y1c9{bottom:285.666667pt;}
.y257{bottom:286.466667pt;}
.y2a{bottom:286.666667pt;}
.y215{bottom:289.186667pt;}
.ydd{bottom:290.146667pt;}
.y17d{bottom:291.106667pt;}
.yec{bottom:294.626667pt;}
.y1b7{bottom:294.786667pt;}
.y182{bottom:295.266667pt;}
.ybf{bottom:296.386667pt;}
.y272{bottom:297.346667pt;}
.y11d{bottom:298.146667pt;}
.y233{bottom:300.866667pt;}
.y29{bottom:301.333333pt;}
.yfa{bottom:301.986667pt;}
.y127{bottom:303.426667pt;}
.y256{bottom:304.706667pt;}
.y1dc{bottom:306.786667pt;}
.y214{bottom:307.426667pt;}
.y10d{bottom:308.706667pt;}
.y8e{bottom:310.306667pt;}
.y1a7{bottom:310.946667pt;}
.y13b{bottom:312.066667pt;}
.y271{bottom:314.306667pt;}
.y181{bottom:315.106667pt;}
.y14c{bottom:315.266667pt;}
.y53{bottom:315.586667pt;}
.y28{bottom:316.000000pt;}
.y232{bottom:317.826667pt;}
.y1c8{bottom:319.426667pt;}
.y1ef{bottom:320.066667pt;}
.y255{bottom:322.946667pt;}
.ydc{bottom:323.906667pt;}
.y17c{bottom:324.706667pt;}
.ya5{bottom:324.866667pt;}
.y16e{bottom:325.666667pt;}
.y1b6{bottom:328.546667pt;}
.ybe{bottom:330.146667pt;}
.y27{bottom:330.666667pt;}
.y270{bottom:331.106667pt;}
.y11c{bottom:331.906667pt;}
.y180{bottom:334.466667pt;}
.y231{bottom:334.626667pt;}
.yf9{bottom:335.746667pt;}
.y126{bottom:340.706667pt;}
.yeb{bottom:340.866667pt;}
.y254{bottom:341.186667pt;}
.y10c{bottom:342.466667pt;}
.y213{bottom:343.746667pt;}
.y52{bottom:343.906667pt;}
.y8d{bottom:344.066667pt;}
.y1a6{bottom:344.706667pt;}
.y26{bottom:345.333333pt;}
.y14b{bottom:348.866667pt;}
.y26f{bottom:349.186667pt;}
.y17f{bottom:350.466667pt;}
.y1db{bottom:351.426667pt;}
.y1c7{bottom:353.186667pt;}
.y1c0{bottom:353.346667pt;}
.y1ee{bottom:353.506667pt;}
.y13a{bottom:356.546667pt;}
.ydb{bottom:357.506667pt;}
.ya4{bottom:358.466667pt;}
.y253{bottom:359.266667pt;}
.y25{bottom:360.000000pt;}
.y212{bottom:361.986667pt;}
.y1b5{bottom:362.306667pt;}
.ybd{bottom:363.906667pt;}
.y11b{bottom:365.666667pt;}
.y26e{bottom:367.266667pt;}
.yf8{bottom:369.506667pt;}
.y51{bottom:372.066667pt;}
.yea{bottom:374.466667pt;}
.y24{bottom:374.666667pt;}
.y16b{bottom:374.946667pt;}
.y10b{bottom:376.226667pt;}
.y252{bottom:377.506667pt;}
.y8c{bottom:377.666667pt;}
.y1a5{bottom:378.466667pt;}
.y211{bottom:380.226667pt;}
.y190{bottom:383.746667pt;}
.y26d{bottom:384.386667pt;}
.y14a{bottom:386.306667pt;}
.y1bf{bottom:386.946667pt;}
.y125{bottom:387.106667pt;}
.y1ed{bottom:387.266667pt;}
.y230{bottom:387.746667pt;}
.y23{bottom:389.333333pt;}
.y139{bottom:390.146667pt;}
.yda{bottom:391.266667pt;}
.ya3{bottom:392.226667pt;}
.y251{bottom:395.746667pt;}
.y1da{bottom:395.906667pt;}
.y1b4{bottom:396.066667pt;}
.ybc{bottom:397.506667pt;}
.y210{bottom:398.466667pt;}
.y50{bottom:400.386667pt;}
.y26c{bottom:401.186667pt;}
.y22{bottom:404.000000pt;}
.y22f{bottom:405.986667pt;}
.ye9{bottom:408.226667pt;}
.y11a{bottom:410.306667pt;}
.y8b{bottom:411.426667pt;}
.y1a4{bottom:412.226667pt;}
.yf7{bottom:413.986667pt;}
.y20f{bottom:416.546667pt;}
.y149{bottom:417.666667pt;}
.y26b{bottom:418.146667pt;}
.y21{bottom:418.666667pt;}
.y1be{bottom:420.706667pt;}
.y10a{bottom:420.866667pt;}
.y1ec{bottom:422.626667pt;}
.y138{bottom:423.906667pt;}
.y22e{bottom:424.066667pt;}
.ya2{bottom:425.986667pt;}
.y160{bottom:426.173333pt;}
.y4f{bottom:428.546667pt;}
.y1d9{bottom:429.506667pt;}
.y1b3{bottom:429.666667pt;}
.y250{bottom:430.946667pt;}
.ybb{bottom:431.266667pt;}
.y124{bottom:431.426667pt;}
.y20{bottom:433.333333pt;}
.y20e{bottom:434.786667pt;}
.y26a{bottom:434.946667pt;}
.y18b{bottom:434.973333pt;}
.ye8{bottom:441.986667pt;}
.y22d{bottom:442.306667pt;}
.y119{bottom:443.746667pt;}
.yf6{bottom:444.066667pt;}
.y8a{bottom:445.186667pt;}
.y1a3{bottom:445.826667pt;}
.y24f{bottom:447.746667pt;}
.y1f{bottom:448.000000pt;}
.y269{bottom:451.906667pt;}
.y20d{bottom:453.026667pt;}
.y109{bottom:454.306667pt;}
.y77{bottom:457.666667pt;}
.y4e{bottom:457.826667pt;}
.ya1{bottom:459.746667pt;}
.y22c{bottom:460.546667pt;}
.y148{bottom:462.466667pt;}
.y1e{bottom:462.666667pt;}
.y1d8{bottom:463.106667pt;}
.yf5{bottom:463.426667pt;}
.y24e{bottom:464.706667pt;}
.yba{bottom:465.026667pt;}
.y1eb{bottom:468.706667pt;}
.y20c{bottom:471.266667pt;}
.yd9{bottom:474.946667pt;}
.y168{bottom:475.293333pt;}
.ye7{bottom:475.746667pt;}
.y4d{bottom:476.546667pt;}
.y1d{bottom:477.333333pt;}
.y118{bottom:477.506667pt;}
.y22b{bottom:478.786667pt;}
.y89{bottom:478.946667pt;}
.y1a2{bottom:479.586667pt;}
.y24d{bottom:482.786667pt;}
.yf4{bottom:482.946667pt;}
.y18e{bottom:484.253333pt;}
.y268{bottom:485.506667pt;}
.y108{bottom:488.066667pt;}
.y20b{bottom:489.346667pt;}
.y1c{bottom:492.000000pt;}
.ya0{bottom:493.506667pt;}
.y22a{bottom:495.746667pt;}
.y147{bottom:496.066667pt;}
.y1b2{bottom:497.186667pt;}
.y28b{bottom:497.333333pt;}
.yb9{bottom:498.813333pt;}
.y24c{bottom:500.893333pt;}
.y137{bottom:501.213333pt;}
.y267{bottom:502.493333pt;}
.y5f{bottom:503.453333pt;}
.y17b{bottom:504.253333pt;}
.y4c{bottom:505.986667pt;}
.y1b{bottom:506.666667pt;}
.y1d7{bottom:507.453333pt;}
.y20a{bottom:507.613333pt;}
.y135{bottom:508.573333pt;}
.ye6{bottom:509.533333pt;}
.yf3{bottom:509.693333pt;}
.y117{bottom:511.293333pt;}
.y229{bottom:512.573333pt;}
.y88{bottom:512.733333pt;}
.y1ea{bottom:513.053333pt;}
.y1a1{bottom:513.373333pt;}
.y136{bottom:514.973333pt;}
.y24b{bottom:519.133333pt;}
.yd8{bottom:519.293333pt;}
.y1a{bottom:521.333333pt;}
.y107{bottom:521.853333pt;}
.y28a{bottom:524.000000pt;}
.y165{bottom:524.573333pt;}
.y4b{bottom:524.706667pt;}
.y209{bottom:525.853333pt;}
.y9f{bottom:527.133333pt;}
.y1cc{bottom:527.293333pt;}
.y228{bottom:529.533333pt;}
.y146{bottom:529.853333pt;}
.y1b1{bottom:530.973333pt;}
.yb8{bottom:532.573333pt;}
.y1c6{bottom:532.733333pt;}
.y18d{bottom:533.373333pt;}
.y19{bottom:536.000000pt;}
.y266{bottom:536.253333pt;}
.y24a{bottom:537.373333pt;}
.y17a{bottom:537.853333pt;}
.ye5{bottom:543.133333pt;}
.y208{bottom:544.093333pt;}
.y116{bottom:545.053333pt;}
.y87{bottom:546.333333pt;}
.y1e9{bottom:546.653333pt;}
.y1a0{bottom:547.133333pt;}
.y227{bottom:547.613333pt;}
.y76{bottom:548.093333pt;}
.y5e{bottom:548.253333pt;}
.y18{bottom:550.666667pt;}
.y1d6{bottom:552.093333pt;}
.y4a{bottom:552.573333pt;}
.yd7{bottom:552.893333pt;}
.y265{bottom:553.053333pt;}
.y106{bottom:555.613333pt;}
.y134{bottom:555.773333pt;}
.y9e{bottom:560.893333pt;}
.y207{bottom:561.053333pt;}
.y145{bottom:563.613333pt;}
.y17{bottom:565.333333pt;}
.y226{bottom:565.693333pt;}
.yb7{bottom:566.333333pt;}
.y154{bottom:566.493333pt;}
.y1b0{bottom:568.253333pt;}
.y264{bottom:569.853333pt;}
.y179{bottom:571.613333pt;}
.y1cb{bottom:571.773333pt;}
.y249{bottom:573.693333pt;}
.y162{bottom:573.733333pt;}
.ye4{bottom:576.893333pt;}
.y206{bottom:577.853333pt;}
.y115{bottom:578.813333pt;}
.y16{bottom:580.000000pt;}
.y86{bottom:580.093333pt;}
.y1e8{bottom:580.413333pt;}
.y19f{bottom:580.893333pt;}
.y75{bottom:581.693333pt;}
.y49{bottom:581.853333pt;}
.y18c{bottom:582.693333pt;}
.y225{bottom:583.933333pt;}
.yd6{bottom:586.653333pt;}
.y263{bottom:586.813333pt;}
.y74{bottom:586.973333pt;}
.y5d{bottom:587.133333pt;}
.y105{bottom:589.373333pt;}
.y248{bottom:591.933333pt;}
.y15{bottom:594.666667pt;}
.y205{bottom:594.813333pt;}
.y1d5{bottom:596.573333pt;}
.y144{bottom:597.373333pt;}
.y1af{bottom:599.613333pt;}
.yb6{bottom:599.933333pt;}
.y48{bottom:601.373333pt;}
.y224{bottom:602.173333pt;}
.y262{bottom:603.613333pt;}
.y178{bottom:605.373333pt;}
.y9d{bottom:605.533333pt;}
.y14{bottom:609.333333pt;}
.y247{bottom:610.173333pt;}
.ye3{bottom:610.653333pt;}
.yc9{bottom:610.813333pt;}
.y204{bottom:611.613333pt;}
.y85{bottom:613.853333pt;}
.y1e7{bottom:614.173333pt;}
.y19e{bottom:614.653333pt;}
.y114{bottom:616.093333pt;}
.yd5{bottom:620.413333pt;}
.y261{bottom:620.573333pt;}
.y47{bottom:620.733333pt;}
.y133{bottom:622.973333pt;}
.y7d{bottom:623.613333pt;}
.y15c{bottom:624.933333pt;}
.y69{bottom:625.693333pt;}
.y73{bottom:626.333333pt;}
.y246{bottom:628.413333pt;}
.y203{bottom:628.573333pt;}
.y143{bottom:631.133333pt;}
.y5c{bottom:631.613333pt;}
.y13{bottom:633.333333pt;}
.yb5{bottom:633.693333pt;}
.y104{bottom:633.853333pt;}
.y188{bottom:633.893333pt;}
.y223{bottom:638.493333pt;}
.y9c{bottom:639.133333pt;}
.y46{bottom:640.093333pt;}
.y1d4{bottom:640.573333pt;}
.yc8{bottom:644.413333pt;}
.y1ae{bottom:644.573333pt;}
.y202{bottom:645.373333pt;}
.y245{bottom:646.493333pt;}
.y84{bottom:647.613333pt;}
.yd4{bottom:654.173333pt;}
.y132{bottom:656.733333pt;}
.y12{bottom:657.333333pt;}
.y1e6{bottom:658.333333pt;}
.y45{bottom:659.613333pt;}
.y72{bottom:659.773333pt;}
.y5b{bottom:659.933333pt;}
.y201{bottom:662.173333pt;}
.y113{bottom:662.333333pt;}
.y157{bottom:663.333333pt;}
.y19d{bottom:664.413333pt;}
.y142{bottom:664.733333pt;}
.yb4{bottom:667.453333pt;}
.y185{bottom:667.493333pt;}
.y7c{bottom:669.533333pt;}
.y68{bottom:671.773333pt;}
.y9b{bottom:672.733333pt;}
.y222{bottom:674.973333pt;}
.yc7{bottom:678.173333pt;}
.y200{bottom:679.133333pt;}
.y11{bottom:681.333333pt;}
.y83{bottom:681.373333pt;}
.y244{bottom:682.973333pt;}
.y1d3{bottom:685.373333pt;}
.y44{bottom:689.693333pt;}
.y131{bottom:690.493333pt;}
.y112{bottom:692.413333pt;}
.y221{bottom:693.213333pt;}
.y71{bottom:693.533333pt;}
.y1ff{bottom:695.933333pt;}
.y288{bottom:697.053333pt;}
.y19c{bottom:698.013333pt;}
.y141{bottom:698.493333pt;}
.yd3{bottom:698.653333pt;}
.y70{bottom:698.813333pt;}
.y5a{bottom:698.973333pt;}
.y243{bottom:699.933333pt;}
.yb3{bottom:701.213333pt;}
.y1e5{bottom:703.133333pt;}
.y10{bottom:705.333333pt;}
.y9a{bottom:706.493333pt;}
.y156{bottom:707.973333pt;}
.y220{bottom:711.293333pt;}
.yc6{bottom:711.773333pt;}
.y123{bottom:711.933333pt;}
.y283{bottom:712.253333pt;}
.y1fe{bottom:712.893333pt;}
.y82{bottom:715.133333pt;}
.y7b{bottom:715.613333pt;}
.y67{bottom:715.773333pt;}
.y242{bottom:716.893333pt;}
.y43{bottom:718.973333pt;}
.y130{bottom:724.293333pt;}
.yf{bottom:729.333333pt;}
.y21f{bottom:729.573333pt;}
.y1d2{bottom:729.733333pt;}
.y111{bottom:731.333333pt;}
.y19b{bottom:731.813333pt;}
.yd2{bottom:732.293333pt;}
.y241{bottom:733.733333pt;}
.y103{bottom:735.013333pt;}
.y42{bottom:737.693333pt;}
.y59{bottom:738.213333pt;}
.y99{bottom:740.293333pt;}
.yc5{bottom:745.573333pt;}
.yb2{bottom:745.733333pt;}
.y110{bottom:747.173333pt;}
.y1e4{bottom:747.493333pt;}
.y1fd{bottom:747.813333pt;}
.y81{bottom:748.773333pt;}
.y240{bottom:750.693333pt;}
.ye{bottom:753.333333pt;}
.y66{bottom:760.453333pt;}
.y1d1{bottom:763.333333pt;}
.y19a{bottom:765.573333pt;}
.yd1{bottom:766.053333pt;}
.y41{bottom:767.173333pt;}
.y23f{bottom:767.493333pt;}
.y102{bottom:768.613333pt;}
.y12f{bottom:768.773333pt;}
.y98{bottom:774.053333pt;}
.yd{bottom:777.333333pt;}
.yb1{bottom:779.333333pt;}
.y17e{bottom:779.493333pt;}
.y6f{bottom:782.533333pt;}
.y58{bottom:782.693333pt;}
.y1fc{bottom:784.133333pt;}
.y23e{bottom:784.293333pt;}
.y1e3{bottom:791.653333pt;}
.yc{bottom:792.000000pt;}
.y40{bottom:794.213333pt;}
.y7a{bottom:795.173333pt;}
.y65{bottom:795.333333pt;}
.y1d0{bottom:797.093333pt;}
.y199{bottom:799.333333pt;}
.yd0{bottom:799.813333pt;}
.y289{bottom:800.000000pt;}
.y101{bottom:802.373333pt;}
.yb{bottom:806.666667pt;}
.y97{bottom:807.813333pt;}
.y282{bottom:808.773333pt;}
.y3f{bottom:812.773333pt;}
.yb0{bottom:813.093333pt;}
.y153{bottom:813.253333pt;}
.y80{bottom:816.293333pt;}
.y1fb{bottom:820.613333pt;}
.y281{bottom:826.693333pt;}
.y6e{bottom:828.613333pt;}
.y57{bottom:828.773333pt;}
.y64{bottom:830.053333pt;}
.ya{bottom:830.666667pt;}
.y1cf{bottom:830.853333pt;}
.y198{bottom:832.933333pt;}
.ycf{bottom:833.413333pt;}
.y3e{bottom:836.133333pt;}
.y1e2{bottom:836.293333pt;}
.y1fa{bottom:838.853333pt;}
.y96{bottom:841.413333pt;}
.y280{bottom:844.613333pt;}
.y9{bottom:845.333333pt;}
.yaf{bottom:846.853333pt;}
.y1bd{bottom:847.013333pt;}
.y7f{bottom:850.053333pt;}
.y3d{bottom:854.853333pt;}
.y1f9{bottom:856.933333pt;}
.y27f{bottom:862.533333pt;}
.y1ce{bottom:864.613333pt;}
.y79{bottom:864.773333pt;}
.y63{bottom:864.933333pt;}
.yce{bottom:867.173333pt;}
.y8{bottom:869.333333pt;}
.y12e{bottom:869.893333pt;}
.y197{bottom:870.213333pt;}
.y95{bottom:875.173333pt;}
.y3c{bottom:878.693333pt;}
.y27e{bottom:880.293333pt;}
.yae{bottom:880.613333pt;}
.yf2{bottom:880.773333pt;}
.y6d{bottom:883.813333pt;}
.y56{bottom:883.973333pt;}
.y7{bottom:893.333333pt;}
.y1f8{bottom:893.413333pt;}
.y27d{bottom:898.213333pt;}
.y62{bottom:899.653333pt;}
.ycd{bottom:904.453333pt;}
.y3b{bottom:905.573333pt;}
.y1cd{bottom:908.773333pt;}
.y94{bottom:908.933333pt;}
.y6{bottom:910.666667pt;}
.y1f7{bottom:911.653333pt;}
.y196{bottom:912.133333pt;}
.yad{bottom:914.213333pt;}
.y12d{bottom:914.373333pt;}
.y27c{bottom:916.133333pt;}
.y7e{bottom:917.413333pt;}
.y5{bottom:926.666667pt;}
.y1f6{bottom:929.733333pt;}
.y3a{bottom:932.453333pt;}
.y27b{bottom:934.053333pt;}
.y6c{bottom:939.013333pt;}
.y55{bottom:939.173333pt;}
.y4{bottom:942.666667pt;}
.y177{bottom:946.240000pt;}
.y93{bottom:946.400000pt;}
.y78{bottom:946.560000pt;}
.y61{bottom:946.720000pt;}
.yac{bottom:948.000000pt;}
.y195{bottom:948.160000pt;}
.y39{bottom:948.613333pt;}
.y3{bottom:961.333333pt;}
.y38{bottom:964.933333pt;}
.y2{bottom:980.000000pt;}
.y37{bottom:981.253333pt;}
.y1{bottom:986.666667pt;}
.y36{bottom:997.573333pt;}
.y35{bottom:1013.760000pt;}
.y60{bottom:1040.000000pt;}
.y34{bottom:1061.440000pt;}
.y54{bottom:1106.560000pt;}
.h2{height:20.000000pt;}
.h21{height:28.800000pt;}
.h29{height:32.960000pt;}
.h1e{height:33.120000pt;}
.hd{height:34.374375pt;}
.h5{height:36.000000pt;}
.h12{height:36.667500pt;}
.h2e{height:37.537500pt;}
.h26{height:39.520000pt;}
.h25{height:39.552000pt;}
.h24{height:39.680000pt;}
.h2a{height:39.712000pt;}
.hf{height:40.000000pt;}
.h1a{height:45.098125pt;}
.h6{height:46.250667pt;}
.h4{height:48.000000pt;}
.h20{height:52.134375pt;}
.h28{height:52.306185pt;}
.h19{height:52.785000pt;}
.ha{height:52.834688pt;}
.hb{height:52.934375pt;}
.h1f{height:53.535000pt;}
.h23{height:53.535041pt;}
.h27{height:53.535047pt;}
.hc{height:54.390938pt;}
.he{height:54.598989pt;}
.h3{height:56.000000pt;}
.h18{height:57.758750pt;}
.h11{height:57.787500pt;}
.h9{height:58.563750pt;}
.h13{height:59.340000pt;}
.h2b{height:60.288750pt;}
.h15{height:60.519362pt;}
.h1c{height:60.937500pt;}
.h2d{height:63.656250pt;}
.h17{height:63.843750pt;}
.h1{height:64.000000pt;}
.h14{height:64.500000pt;}
.h16{height:66.625000pt;}
.h2f{height:72.000000pt;}
.h2c{height:80.512000pt;}
.h1b{height:87.227500pt;}
.h10{height:96.750000pt;}
.h22{height:187.226667pt;}
.h1d{height:816.000000pt;}
.h0{height:1056.000000pt;}
.h7{height:1122.560000pt;}
.h8{height:1122.666667pt;}
.w9{width:49.760000pt;}
.w13{width:85.440000pt;}
.w14{width:85.472000pt;}
.w15{width:85.600000pt;}
.w16{width:85.632000pt;}
.we{width:92.320000pt;}
.wd{width:92.352000pt;}
.wf{width:92.480000pt;}
.wa{width:147.226667pt;}
.wb{width:184.666667pt;}
.wc{width:184.800000pt;}
.w10{width:196.986667pt;}
.w11{width:256.506667pt;}
.w12{width:256.546667pt;}
.w17{width:624.093333pt;}
.w3{width:793.759988pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w5{width:815.999976pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.w8{width:1055.999969pt;}
.w7{width:1055.999984pt;}
.w6{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:1.600000pt;}
.x28{left:4.320000pt;}
.x11{left:6.666667pt;}
.x35{left:8.320000pt;}
.x20{left:9.632000pt;}
.x2e{left:12.480000pt;}
.x33{left:14.400000pt;}
.x34{left:15.680000pt;}
.x31{left:16.640000pt;}
.x32{left:20.800000pt;}
.x49{left:21.760000pt;}
.x4f{left:24.000000pt;}
.x2a{left:25.120000pt;}
.x4e{left:27.720000pt;}
.x37{left:31.040000pt;}
.x30{left:34.400000pt;}
.x46{left:36.640000pt;}
.x36{left:39.520000pt;}
.x3f{left:44.800000pt;}
.x18{left:47.999976pt;}
.x23{left:54.240000pt;}
.x17{left:55.519976pt;}
.x1e{left:60.160000pt;}
.x7{left:61.466667pt;}
.x15{left:63.039976pt;}
.x26{left:64.160000pt;}
.x3{left:66.826667pt;}
.x16{left:70.559988pt;}
.x22{left:76.320000pt;}
.x42{left:90.080000pt;}
.x12{left:94.431988pt;}
.xa{left:96.031988pt;}
.x44{left:100.026667pt;}
.x1f{left:109.920000pt;}
.x41{left:112.360000pt;}
.x13{left:118.431988pt;}
.x10{left:120.031988pt;}
.x50{left:142.586655pt;}
.x1b{left:158.586655pt;}
.x3d{left:162.106651pt;}
.x9{left:164.346667pt;}
.x4{left:173.120000pt;}
.x3e{left:181.466651pt;}
.x1c{left:199.226655pt;}
.x52{left:224.693333pt;}
.x53{left:229.373333pt;}
.x54{left:230.693333pt;}
.x40{left:241.786667pt;}
.x21{left:257.146667pt;}
.x51{left:282.000000pt;}
.x8{left:291.933333pt;}
.x1{left:318.533333pt;}
.x47{left:327.226667pt;}
.x5{left:338.693333pt;}
.x29{left:349.506667pt;}
.x1a{left:367.746655pt;}
.x14{left:371.426655pt;}
.x6{left:405.786667pt;}
.x2{left:407.080000pt;}
.x48{left:412.706667pt;}
.x24{left:441.826667pt;}
.x39{left:465.826651pt;}
.xc{left:471.293322pt;}
.x1d{left:487.746651pt;}
.x43{left:498.306667pt;}
.x3a{left:514.946651pt;}
.x2b{left:534.146667pt;}
.x4a{left:583.773333pt;}
.xb{left:604.293322pt;}
.xf{left:608.133322pt;}
.xe{left:614.693322pt;}
.xd{left:622.693322pt;}
.x25{left:626.493333pt;}
.x4b{left:669.213333pt;}
.x2c{left:718.813333pt;}
.x19{left:721.573321pt;}
.x3b{left:736.413318pt;}
.x45{left:754.813333pt;}
.x3c{left:755.933318pt;}
.x27{left:811.173333pt;}
.x4c{left:840.293333pt;}
.x2d{left:903.493333pt;}
.x4d{left:925.733333pt;}
.x38{left:961.573318pt;}
}




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