
    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_d83435912b52ba8e3336b33f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight: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_5f54f03f14ff6d800a4fd693.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;font-style:normal;font-weight: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_3622654e805fce552d9b4d8e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967000;font-style:normal;font-weight: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_85fed21d17c498ce18488551.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.383000;font-style:normal;font-weight: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_b1504a3ee79c27d39264d2fa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.907000;font-style:normal;font-weight: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_fd6de67eea32a10b74454367.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.392000;font-style:normal;font-weight: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_6732f7816077c2ead0cffcb9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.485000;font-style:normal;font-weight: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_d9b7695e1210d467c022fb4c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;font-style:normal;font-weight: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_38dde8b0845d8d68cc2592a0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;font-style:normal;font-weight: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_4a4d83aed7b4750fb4754449.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.071000;font-style:normal;font-weight: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_4c39b181fcb2f5b95d9f9a7c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.969000;font-style:normal;font-weight: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_6ea06087cabbc7c84ee82406.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.515000;font-style:normal;font-weight: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_1061422ab8a0daa1b71fe9b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969000;font-style:normal;font-weight: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_7c29406d3ed8e6566d1124fb.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.579000;font-style:normal;font-weight: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_3be626274657d535d4d8c156.woff2')format("woff");}.fff{font-family:fff;line-height:0.705000;font-style:normal;font-weight: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_b34040e3618c1cdb69a529bf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.211000;font-style:normal;font-weight: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_0ed81ef34dfb5945699adfa1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.514000;font-style:normal;font-weight: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_0ac336c331f43ad1c5529fee.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.106000;font-style:normal;font-weight: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_4c39b181fcb2f5b95d9f9a7c.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.969000;font-style:normal;font-weight: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_3622654e805fce552d9b4d8e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.967000;font-style:normal;font-weight: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_d83435912b52ba8e3336b33f.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight: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_38dde8b0845d8d68cc2592a0.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.938000;font-style:normal;font-weight: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_07215e994b851690bae693ba.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666000;font-style:normal;font-weight: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_702461f1f66aab7817176169.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight: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_d819b13e733be4972082b0e0.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight: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_c7d96e1c5c6fb38303ba8f3f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.432129;font-style:normal;font-weight: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_513bfb36ad524632a8e1221b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.941000;font-style:normal;font-weight: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_bbd0a9b23968bcc71d312cd6.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.959000;font-style:normal;font-weight: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_be43366649f76a102ac9f98b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.068000;font-style:normal;font-weight: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_dfd1da95c9284bd1f9684a7c.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.948000;font-style:normal;font-weight: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_49fccdcd63938dcc0d25fc99.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.926000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{transform:matrix(0.118243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118243,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244880,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255668,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.260917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260917,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.261968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261968,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.265212,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265212,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265212,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.265521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265521,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.265989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265989,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v1{vertical-align:21.692220px;}
.ls1a{letter-spacing:-2.457000px;}
.ls22{letter-spacing:-1.909440px;}
.ls15{letter-spacing:-1.193400px;}
.ls1c{letter-spacing:-0.365040px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.047999px;}
.lsf{letter-spacing:0.060001px;}
.ls29{letter-spacing:0.095999px;}
.ls6{letter-spacing:0.120001px;}
.ls2{letter-spacing:0.171000px;}
.ls5{letter-spacing:0.180002px;}
.ls23{letter-spacing:0.191998px;}
.lsb{letter-spacing:0.240002px;}
.ls8{letter-spacing:0.360004px;}
.ls25{letter-spacing:0.379195px;}
.ls24{letter-spacing:0.383995px;}
.ls27{letter-spacing:0.393595px;}
.ls26{letter-spacing:0.412795px;}
.lse{letter-spacing:0.420004px;}
.ls1b{letter-spacing:0.561600px;}
.ls13{letter-spacing:0.745200px;}
.ls18{letter-spacing:0.945300px;}
.ls11{letter-spacing:0.972900px;}
.ls1f{letter-spacing:1.000500px;}
.ls17{letter-spacing:1.104000px;}
.ls19{letter-spacing:1.124700px;}
.ls21{letter-spacing:1.138500px;}
.ls12{letter-spacing:1.269600px;}
.ls1e{letter-spacing:1.317900px;}
.ls1d{letter-spacing:1.324800px;}
.ls16{letter-spacing:1.449000px;}
.ls20{letter-spacing:1.469700px;}
.ls10{letter-spacing:2.640000px;}
.lsa{letter-spacing:2.946762px;}
.ls9{letter-spacing:3.286962px;}
.ls14{letter-spacing:3.510000px;}
.ls3{letter-spacing:10.550268px;}
.ls28{letter-spacing:10.559868px;}
.lsd{letter-spacing:13.098131px;}
.ls7{letter-spacing:13.320133px;}
.lsc{letter-spacing:13.440134px;}
.ls0{letter-spacing:21.119736px;}
.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;}
}
.ws37{word-spacing:-13.158132px;}
.ws17{word-spacing:-10.598268px;}
.ws51{word-spacing:-0.427195px;}
.ws47{word-spacing:-0.071999px;}
.ws29{word-spacing:-0.060001px;}
.ws13{word-spacing:-0.057000px;}
.ws4{word-spacing:-0.054000px;}
.ws8{word-spacing:-0.047999px;}
.ws22{word-spacing:0.000000px;}
.ws4d{word-spacing:9.551881px;}
.ws4c{word-spacing:9.647879px;}
.ws1d{word-spacing:9.695879px;}
.ws1c{word-spacing:9.743878px;}
.ws19{word-spacing:9.791878px;}
.ws20{word-spacing:9.839877px;}
.ws1e{word-spacing:9.887876px;}
.ws1f{word-spacing:9.935876px;}
.wsa{word-spacing:9.983875px;}
.ws21{word-spacing:10.031875px;}
.ws4e{word-spacing:10.051074px;}
.ws16{word-spacing:10.079874px;}
.ws1a{word-spacing:10.127873px;}
.ws18{word-spacing:10.175873px;}
.ws7{word-spacing:10.223872px;}
.ws0{word-spacing:10.271872px;}
.ws52{word-spacing:10.275845px;}
.ws9{word-spacing:10.319871px;}
.ws4f{word-spacing:10.358271px;}
.wsb{word-spacing:10.367870px;}
.ws3a{word-spacing:10.415870px;}
.ws1b{word-spacing:10.463869px;}
.ws33{word-spacing:10.511869px;}
.ws4a{word-spacing:10.559868px;}
.ws4b{word-spacing:10.607867px;}
.ws50{word-spacing:11.183860px;}
.ws5{word-spacing:11.610000px;}
.ws3{word-spacing:11.664000px;}
.wsd{word-spacing:11.913000px;}
.ws6{word-spacing:11.934000px;}
.ws46{word-spacing:12.000120px;}
.ws3c{word-spacing:12.060121px;}
.ws44{word-spacing:12.180122px;}
.ws43{word-spacing:12.240122px;}
.ws45{word-spacing:12.300123px;}
.ws12{word-spacing:12.312000px;}
.ws41{word-spacing:12.360124px;}
.ws40{word-spacing:12.420124px;}
.ws11{word-spacing:12.426000px;}
.ws3e{word-spacing:12.480125px;}
.ws10{word-spacing:12.483000px;}
.wsf{word-spacing:12.540000px;}
.ws3d{word-spacing:12.540125px;}
.wse{word-spacing:12.597000px;}
.ws14{word-spacing:12.654000px;}
.ws3f{word-spacing:12.660127px;}
.wsc{word-spacing:12.711000px;}
.ws34{word-spacing:12.720127px;}
.ws15{word-spacing:12.768000px;}
.ws32{word-spacing:12.780128px;}
.ws42{word-spacing:12.900129px;}
.ws2e{word-spacing:12.960130px;}
.ws26{word-spacing:13.020130px;}
.ws24{word-spacing:13.080131px;}
.ws2a{word-spacing:13.140131px;}
.ws27{word-spacing:13.200132px;}
.ws30{word-spacing:13.260133px;}
.ws2b{word-spacing:13.320133px;}
.ws2c{word-spacing:13.380134px;}
.ws28{word-spacing:13.440134px;}
.ws23{word-spacing:13.500135px;}
.ws2d{word-spacing:13.560136px;}
.ws25{word-spacing:13.620136px;}
.ws3b{word-spacing:13.680137px;}
.ws35{word-spacing:13.740137px;}
.ws38{word-spacing:13.800138px;}
.ws2f{word-spacing:13.860139px;}
.ws39{word-spacing:15.551870px;}
.ws36{word-spacing:15.623870px;}
.ws31{word-spacing:15.695869px;}
.ws1{word-spacing:26.400132px;}
.ws2{word-spacing:26.520133px;}
.ws48{word-spacing:59.807252px;}
.ws49{word-spacing:59.855252px;}
._d{margin-left:-13.029000px;}
._7{margin-left:-10.559868px;}
._8{margin-left:-5.135936px;}
._b{margin-left:-3.695954px;}
._a{margin-left:-2.495969px;}
._0{margin-left:-1.103986px;}
._2{width:1.140000px;}
._9{width:8.975888px;}
._1{width:11.087861px;}
._3{width:13.053000px;}
._4{width:14.079000px;}
._c{width:15.983800px;}
._f{width:20.639742px;}
._5{width:46.847414px;}
._e{width:1656.123298px;}
._6{width:1682.666966px;}
.fc2{color:transparent;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs9{font-size:39.996000px;}
.fs8{font-size:41.999400px;}
.fs0{font-size:47.999400px;}
.fsd{font-size:52.800000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fse{font-size:69.000000px;}
.fsf{font-size:70.200000px;}
.fs6{font-size:71.999400px;}
.fsc{font-size:87.000000px;}
.fs4{font-size:95.999400px;}
.fsb{font-size:106.560000px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y28{bottom:54.000000px;}
.y8a{bottom:119.641725px;}
.y153{bottom:119.647452px;}
.y46{bottom:124.453771px;}
.y195{bottom:124.473113px;}
.y74{bottom:124.506825px;}
.ye0{bottom:124.514385px;}
.y16b{bottom:124.519860px;}
.y111{bottom:124.531171px;}
.yb3{bottom:124.536540px;}
.y124{bottom:126.474091px;}
.y12e{bottom:127.059120px;}
.y194{bottom:138.764935px;}
.y1cf{bottom:140.537682px;}
.y45{bottom:140.953564px;}
.y89{bottom:142.861435px;}
.y152{bottom:142.867162px;}
.y73{bottom:143.977019px;}
.ydf{bottom:143.984580px;}
.y16a{bottom:143.990055px;}
.y110{bottom:144.001365px;}
.yb2{bottom:144.006735px;}
.y123{bottom:145.944285px;}
.y12d{bottom:146.529315px;}
.y193{bottom:152.960757px;}
.y1ce{bottom:154.829503px;}
.y88{bottom:157.153256px;}
.y151{bottom:157.158984px;}
.y44{bottom:157.453358px;}
.y72{bottom:163.537215px;}
.yde{bottom:163.544776px;}
.y169{bottom:163.550250px;}
.y10f{bottom:163.561561px;}
.yb1{bottom:163.566930px;}
.y122{bottom:165.414480px;}
.y12c{bottom:165.999510px;}
.y87{bottom:171.349079px;}
.y150{bottom:171.354806px;}
.y27{bottom:171.954900px;}
.y192{bottom:172.436514px;}
.y43{bottom:173.953152px;}
.y1cd{bottom:174.305260px;}
.y71{bottom:183.007410px;}
.ydd{bottom:183.014970px;}
.y168{bottom:183.020445px;}
.y10e{bottom:183.031756px;}
.yb0{bottom:183.037125px;}
.y121{bottom:184.974676px;}
.y12b{bottom:185.559705px;}
.y86{bottom:185.640900px;}
.y14f{bottom:185.646627px;}
.y191{bottom:186.728335px;}
.y1cc{bottom:188.597081px;}
.y42{bottom:190.452946px;}
.ye1{bottom:190.998300px;}
.y26{bottom:192.959400px;}
.y14e{bottom:199.842450px;}
.y190{bottom:201.020156px;}
.y70{bottom:202.477604px;}
.ydc{bottom:202.485165px;}
.y10d{bottom:202.501950px;}
.yaf{bottom:202.507320px;}
.y120{bottom:204.444870px;}
.y12a{bottom:205.029900px;}
.y41{bottom:206.952740px;}
.y1cb{bottom:208.072838px;}
.y167{bottom:211.505730px;}
.y25{bottom:213.963900px;}
.y18f{bottom:220.495913px;}
.y6f{bottom:222.037800px;}
.ydb{bottom:222.045361px;}
.y10c{bottom:222.062146px;}
.yae{bottom:222.067515px;}
.y1ca{bottom:222.268660px;}
.y40{bottom:223.452533px;}
.y11f{bottom:223.915065px;}
.y166{bottom:230.975925px;}
.y18e{bottom:234.691736px;}
.y24{bottom:234.968400px;}
.yda{bottom:241.515555px;}
.y10b{bottom:241.532341px;}
.yad{bottom:241.537710px;}
.y1c9{bottom:241.828416px;}
.y11e{bottom:243.385260px;}
.y6e{bottom:247.471275px;}
.y3f{bottom:248.964214px;}
.y18d{bottom:248.983557px;}
.y165{bottom:250.536120px;}
.y23{bottom:255.972900px;}
.y1c8{bottom:256.024239px;}
.y132{bottom:259.185498px;}
.yd9{bottom:260.985750px;}
.y10a{bottom:261.002535px;}
.yac{bottom:261.007905px;}
.y11d{bottom:262.945455px;}
.y18c{bottom:263.275378px;}
.y3e{bottom:265.464008px;}
.y164{bottom:270.006315px;}
.y1c7{bottom:270.316060px;}
.y6d{bottom:274.507050px;}
.y22{bottom:276.977400px;}
.y109{bottom:280.472730px;}
.yab{bottom:280.478099px;}
.y3d{bottom:281.963802px;}
.y131{bottom:282.405207px;}
.y11c{bottom:282.415650px;}
.y18b{bottom:282.751135px;}
.yd8{bottom:286.497600px;}
.y163{bottom:289.476510px;}
.y1c6{bottom:289.791816px;}
.y130{bottom:296.697029px;}
.y18a{bottom:296.946957px;}
.y21{bottom:297.981900px;}
.y3c{bottom:298.463596px;}
.y108{bottom:300.032926px;}
.yaa{bottom:300.038295px;}
.y1c5{bottom:304.083638px;}
.y162{bottom:309.036705px;}
.y12f{bottom:310.988850px;}
.y189{bottom:311.238779px;}
.y3b{bottom:314.963389px;}
.y20{bottom:318.986400px;}
.y107{bottom:319.503120px;}
.ya9{bottom:319.508490px;}
.y1c4{bottom:323.559394px;}
.y188{bottom:325.530600px;}
.yd7{bottom:325.825786px;}
.y161{bottom:328.506900px;}
.y6c{bottom:331.736281px;}
.y14d{bottom:333.000000px;}
.y1c3{bottom:337.851216px;}
.y106{bottom:338.973315px;}
.ya8{bottom:338.978684px;}
.y1f{bottom:339.990900px;}
.y3a{bottom:340.475070px;}
.yd6{bottom:345.295980px;}
.y187{bottom:345.769950px;}
.y129{bottom:347.547075px;}
.y6b{bottom:351.206476px;}
.y1c2{bottom:352.047038px;}
.y160{bottom:354.018750px;}
.y1f7{bottom:355.781860px;}
.y39{bottom:356.974864px;}
.y14c{bottom:358.215000px;}
.y105{bottom:358.533511px;}
.ya7{bottom:358.538880px;}
.y1e{bottom:360.995400px;}
.yd5{bottom:364.856176px;}
.y6a{bottom:370.676670px;}
.y128{bottom:370.766785px;}
.y1c1{bottom:371.522795px;}
.y38{bottom:373.474658px;}
.y1f6{bottom:375.341616px;}
.y104{bottom:378.003705px;}
.ya6{bottom:378.009075px;}
.y1d{bottom:381.999900px;}
.y14b{bottom:383.415000px;}
.yd4{bottom:384.326371px;}
.y127{bottom:385.058606px;}
.y1c0{bottom:385.814616px;}
.y186{bottom:386.170215px;}
.y37{bottom:389.974452px;}
.y69{bottom:390.236866px;}
.y1f5{bottom:394.817372px;}
.y103{bottom:397.473900px;}
.ya5{bottom:397.479269px;}
.y101{bottom:397.506375px;}
.y126{bottom:399.254429px;}
.y15f{bottom:402.344400px;}
.y1c{bottom:403.004400px;}
.yd3{bottom:403.796565px;}
.y102{bottom:404.192100px;}
.y1bf{bottom:405.290373px;}
.y185{bottom:405.730411px;}
.y36{bottom:406.474245px;}
.y14a{bottom:408.600000px;}
.y1f4{bottom:409.013195px;}
.y68{bottom:409.707061px;}
.y125{bottom:413.546250px;}
.ya4{bottom:417.039465px;}
.y100{bottom:417.066571px;}
.y1be{bottom:419.582194px;}
.y15e{bottom:421.814595px;}
.y35{bottom:422.974039px;}
.y118{bottom:422.985600px;}
.y1f3{bottom:423.305016px;}
.yd2{bottom:423.356761px;}
.y1b{bottom:423.923400px;}
.y184{bottom:425.200605px;}
.y67{bottom:429.177255px;}
.ya3{bottom:436.509660px;}
.yff{bottom:436.536765px;}
.y1bd{bottom:439.057951px;}
.y15d{bottom:441.284790px;}
.y1f2{bottom:442.780773px;}
.yd1{bottom:442.826956px;}
.y183{bottom:444.670800px;}
.y1a{bottom:444.927900px;}
.y34{bottom:448.485720px;}
.y66{bottom:448.647450px;}
.y1bc{bottom:453.349772px;}
.ya2{bottom:455.979854px;}
.yfe{bottom:456.006960px;}
.y1f1{bottom:457.072594px;}
.y15c{bottom:460.844985px;}
.yd0{bottom:462.297150px;}
.y19{bottom:465.932400px;}
.y117{bottom:466.454926px;}
.y1bb{bottom:467.512295px;}
.y65{bottom:468.207646px;}
.y182{bottom:470.182500px;}
.y33{bottom:473.997401px;}
.ya1{bottom:475.543905px;}
.yfd{bottom:475.567156px;}
.y1f0{bottom:476.548351px;}
.y15b{bottom:480.315180px;}
.ycf{bottom:481.857346px;}
.y116{bottom:485.925120px;}
.y18{bottom:486.936900px;}
.y1ba{bottom:487.072050px;}
.y64{bottom:487.677840px;}
.y1ef{bottom:490.840172px;}
.ya0{bottom:495.033495px;}
.yfc{bottom:495.037350px;}
.y13d{bottom:497.175000px;}
.y32{bottom:499.509082px;}
.y15a{bottom:499.785375px;}
.y149{bottom:500.775000px;}
.y1b9{bottom:501.267873px;}
.yce{bottom:501.327541px;}
.y115{bottom:505.395315px;}
.y63{bottom:507.148035px;}
.y17{bottom:507.941400px;}
.y1ee{bottom:510.291760px;}
.y181{bottom:510.675376px;}
.y9f{bottom:514.503690px;}
.yfb{bottom:514.507545px;}
.y1b8{bottom:515.559694px;}
.y159{bottom:519.345570px;}
.ycd{bottom:520.797735px;}
.y13c{bottom:522.360000px;}
.y1ed{bottom:524.583581px;}
.y114{bottom:524.865510px;}
.y31{bottom:525.020764px;}
.y148{bottom:525.975000px;}
.y62{bottom:526.708231px;}
.y16{bottom:528.945900px;}
.y180{bottom:530.145570px;}
.y9e{bottom:533.973884px;}
.yfa{bottom:533.977740px;}
.y1b7{bottom:535.035451px;}
.y158{bottom:538.815765px;}
.ycc{bottom:540.357931px;}
.y30{bottom:541.520557px;}
.y1ec{bottom:544.059338px;}
.y113{bottom:544.425705px;}
.y61{bottom:546.178425px;}
.y13b{bottom:547.573500px;}
.y1b6{bottom:549.327272px;}
.y17f{bottom:549.615765px;}
.y15{bottom:549.950400px;}
.y147{bottom:551.175000px;}
.y9d{bottom:553.534080px;}
.yf9{bottom:553.537935px;}
.y157{bottom:558.285960px;}
.y1eb{bottom:558.351159px;}
.ycb{bottom:559.828126px;}
.y1b5{bottom:563.523094px;}
.y112{bottom:563.895900px;}
.y60{bottom:565.648620px;}
.y2f{bottom:567.032238px;}
.y17e{bottom:569.175961px;}
.y14{bottom:570.954900px;}
.y1ea{bottom:572.546982px;}
.y13a{bottom:572.775750px;}
.y9c{bottom:573.004275px;}
.yf8{bottom:573.008130px;}
.y146{bottom:576.360000px;}
.y156{bottom:577.756154px;}
.yca{bottom:579.298320px;}
.y1b4{bottom:583.082850px;}
.y2e{bottom:583.532032px;}
.y5f{bottom:585.208816px;}
.y17d{bottom:588.646155px;}
.y13{bottom:591.959400px;}
.y1e9{bottom:592.022738px;}
.y9b{bottom:592.474469px;}
.yf7{bottom:592.478325px;}
.y1b3{bottom:597.278673px;}
.y155{bottom:597.316350px;}
.yc9{bottom:598.768515px;}
.y2d{bottom:600.031826px;}
.y5e{bottom:604.679010px;}
.y1e8{bottom:606.314560px;}
.y17c{bottom:608.116350px;}
.y1b2{bottom:611.570494px;}
.y9a{bottom:612.034665px;}
.yf6{bottom:612.038520px;}
.yf0{bottom:612.676366px;}
.y12{bottom:612.963900px;}
.y2c{bottom:616.531620px;}
.yc8{bottom:618.328711px;}
.y1e7{bottom:620.606381px;}
.y11b{bottom:620.692969px;}
.y154{bottom:622.828200px;}
.y5d{bottom:624.149205px;}
.y1b1{bottom:631.046250px;}
.y99{bottom:631.504860px;}
.yf5{bottom:631.508715px;}
.yef{bottom:632.146560px;}
.y2b{bottom:633.031413px;}
.y17b{bottom:633.628200px;}
.y11{bottom:633.968400px;}
.yc7{bottom:637.798905px;}
.y1e6{bottom:640.082137px;}
.y5c{bottom:643.709401px;}
.y11a{bottom:643.912679px;}
.y1b0{bottom:645.338072px;}
.y2a{bottom:649.531207px;}
.y98{bottom:650.975054px;}
.yf4{bottom:650.978910px;}
.yee{bottom:651.616755px;}
.y139{bottom:652.695000px;}
.y1e5{bottom:654.277960px;}
.yc6{bottom:657.269100px;}
.yc4{bottom:657.292500px;}
.y119{bottom:658.204500px;}
.y1af{bottom:659.533894px;}
.y5b{bottom:663.179595px;}
.yc5{bottom:663.987300px;}
.y10{bottom:666.963600px;}
.y1e4{bottom:668.569781px;}
.y97{bottom:670.535250px;}
.yf3{bottom:670.539105px;}
.yed{bottom:671.176951px;}
.y29{bottom:674.106900px;}
.yc3{bottom:676.852696px;}
.y1ae{bottom:679.009651px;}
.y5a{bottom:682.649790px;}
.y17a{bottom:683.162070px;}
.y1e3{bottom:688.045538px;}
.yf2{bottom:690.009300px;}
.yec{bottom:690.647145px;}
.y1ad{bottom:693.301472px;}
.y96{bottom:695.962050px;}
.yc2{bottom:696.322891px;}
.y59{bottom:702.119985px;}
.y1e2{bottom:702.337359px;}
.y179{bottom:702.632265px;}
.y1ac{bottom:707.593294px;}
.yeb{bottom:710.117340px;}
.y145{bottom:714.975000px;}
.yf1{bottom:715.521000px;}
.yc1{bottom:715.793085px;}
.y1e1{bottom:716.533182px;}
.y58{bottom:721.680180px;}
.y178{bottom:722.102460px;}
.y1ab{bottom:727.069050px;}
.yea{bottom:729.677536px;}
.yf{bottom:729.983438px;}
.yc0{bottom:735.353281px;}
.y1e0{bottom:736.092937px;}
.y95{bottom:739.101346px;}
.y144{bottom:740.175000px;}
.y57{bottom:741.150375px;}
.y1aa{bottom:741.264873px;}
.y177{bottom:741.662655px;}
.ye9{bottom:749.147730px;}
.ybf{bottom:754.823476px;}
.y1a9{bottom:755.556694px;}
.y1df{bottom:755.568694px;}
.y94{bottom:758.571541px;}
.ye{bottom:760.007062px;}
.y56{bottom:760.620570px;}
.y176{bottom:761.132850px;}
.y143{bottom:765.357750px;}
.ye8{bottom:768.617925px;}
.y1de{bottom:769.860515px;}
.ybe{bottom:774.293670px;}
.yd{bottom:774.970875px;}
.y1a8{bottom:775.032451px;}
.y93{bottom:778.041735px;}
.y55{bottom:780.180765px;}
.y175{bottom:780.603045px;}
.y1dd{bottom:784.056338px;}
.ye7{bottom:788.088120px;}
.y1a7{bottom:789.324272px;}
.yc{bottom:789.934688px;}
.y142{bottom:790.560000px;}
.ybd{bottom:793.763865px;}
.y92{bottom:797.601931px;}
.y54{bottom:799.650960px;}
.y1dc{bottom:803.616093px;}
.yb{bottom:804.982500px;}
.ye6{bottom:807.648315px;}
.y1a6{bottom:808.800029px;}
.y174{bottom:809.088330px;}
.ybc{bottom:813.324061px;}
.y91{bottom:817.072126px;}
.y1db{bottom:817.811916px;}
.y53{bottom:819.121155px;}
.y1a5{bottom:823.091850px;}
.ye5{bottom:827.118510px;}
.y173{bottom:828.648525px;}
.ya{bottom:831.939900px;}
.y8{bottom:831.940650px;}
.y1da{bottom:832.103737px;}
.ybb{bottom:832.794255px;}
.y90{bottom:836.542320px;}
.y1a4{bottom:837.287672px;}
.y9{bottom:837.977850px;}
.y52{bottom:838.681350px;}
.ye4{bottom:846.588705px;}
.y172{bottom:848.118720px;}
.y6{bottom:848.437650px;}
.y1d9{bottom:851.579494px;}
.yb8{bottom:852.263204px;}
.yba{bottom:852.264450px;}
.y7{bottom:854.475450px;}
.y8f{bottom:856.102516px;}
.y1a3{bottom:856.847428px;}
.y51{bottom:858.151545px;}
.yb9{bottom:858.982500px;}
.y1d8{bottom:865.871315px;}
.ye3{bottom:866.148900px;}
.y171{bottom:867.588915px;}
.y1a2{bottom:871.043250px;}
.yb6{bottom:871.823400px;}
.y8e{bottom:875.572711px;}
.y50{bottom:877.621740px;}
.yb7{bottom:878.456400px;}
.y1d7{bottom:880.067138px;}
.y1a1{bottom:885.335072px;}
.ye2{bottom:885.619095px;}
.y5{bottom:885.946388px;}
.y170{bottom:887.149110px;}
.y8d{bottom:895.042905px;}
.y4f{bottom:897.091934px;}
.yb5{bottom:897.328875px;}
.y1d6{bottom:899.542894px;}
.y1a0{bottom:904.810828px;}
.y85{bottom:905.089290px;}
.y1d5{bottom:913.834716px;}
.y8c{bottom:914.513100px;}
.y16f{bottom:915.634395px;}
.y4e{bottom:916.652130px;}
.y138{bottom:917.655000px;}
.y19f{bottom:919.102650px;}
.y141{bottom:919.815750px;}
.y4{bottom:923.446575px;}
.yb4{bottom:924.292650px;}
.y84{bottom:924.649485px;}
.y1d4{bottom:928.126537px;}
.y19e{bottom:933.298472px;}
.y16e{bottom:935.104590px;}
.y4d{bottom:936.122325px;}
.y8b{bottom:940.024950px;}
.y137{bottom:942.855000px;}
.y83{bottom:944.119680px;}
.y140{bottom:945.000000px;}
.y1d3{bottom:947.602293px;}
.y19d{bottom:952.858228px;}
.y16d{bottom:954.574785px;}
.y7c{bottom:955.056737px;}
.y4c{bottom:955.592519px;}
.y3{bottom:960.946762px;}
.y1d2{bottom:961.798116px;}
.y82{bottom:963.589875px;}
.y19c{bottom:967.054050px;}
.y136{bottom:968.040750px;}
.y13f{bottom:970.197750px;}
.y7b{bottom:971.556530px;}
.y16c{bottom:974.134980px;}
.y4b{bottom:975.152715px;}
.y19b{bottom:981.345872px;}
.y1d1{bottom:981.357871px;}
.y81{bottom:983.150070px;}
.y135{bottom:993.243000px;}
.y4a{bottom:994.622910px;}
.y13e{bottom:995.400000px;}
.y1d0{bottom:995.553694px;}
.y7a{bottom:997.068212px;}
.y2{bottom:998.446950px;}
.y19a{bottom:1000.821628px;}
.y80{bottom:1002.620265px;}
.y79{bottom:1013.568005px;}
.y49{bottom:1014.093104px;}
.y199{bottom:1015.113450px;}
.y7f{bottom:1022.090460px;}
.y198{bottom:1029.309272px;}
.y78{bottom:1030.067799px;}
.y48{bottom:1033.653300px;}
.y1{bottom:1035.949350px;}
.y7e{bottom:1041.560654px;}
.y77{bottom:1046.567593px;}
.y197{bottom:1048.785029px;}
.y134{bottom:1056.240000px;}
.y47{bottom:1059.079950px;}
.y7d{bottom:1061.120850px;}
.y76{bottom:1063.067386px;}
.y196{bottom:1063.076850px;}
.y75{bottom:1118.692500px;}
.y133{bottom:1120.695000px;}
.h11{height:23.996250px;}
.h4{height:26.996400px;}
.h10{height:28.477152px;}
.h8{height:34.943563px;}
.hd{height:35.999550px;}
.h1{height:37.199535px;}
.h1a{height:37.296210px;}
.h18{height:37.332734px;}
.h3{height:40.500000px;}
.h5{height:41.711479px;}
.ha{height:42.720427px;}
.h17{height:42.840428px;}
.hb{height:42.960430px;}
.h7{height:44.175000px;}
.h19{height:44.591443px;}
.he{height:45.127885px;}
.hf{height:45.190044px;}
.h9{height:53.999550px;}
.h14{height:55.068750px;}
.hc{height:55.799535px;}
.h6{height:69.215567px;}
.h12{height:70.968960px;}
.h15{height:71.964844px;}
.h16{height:73.216406px;}
.h2{height:86.520433px;}
.h13{height:90.738281px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xd{left:54.000000px;}
.xe{left:71.433000px;}
.x1b{left:175.080000px;}
.x1c{left:184.515000px;}
.x1{left:300.018750px;}
.x1f{left:301.095000px;}
.x21{left:302.712000px;}
.x1d{left:304.868250px;}
.x33{left:306.651900px;}
.x22{left:309.732750px;}
.x1e{left:313.320750px;}
.x19{left:314.390400px;}
.xf{left:317.973930px;}
.x1a{left:323.064450px;}
.x23{left:327.615000px;}
.x20{left:330.135000px;}
.x34{left:331.479590px;}
.x17{left:342.368400px;}
.x18{left:352.828200px;}
.x2{left:386.844000px;}
.x3{left:392.456550px;}
.xa{left:427.577850px;}
.xb{left:433.190400px;}
.x4{left:506.834550px;}
.x5{left:512.447100px;}
.x13{left:531.666000px;}
.x10{left:534.642450px;}
.xc{left:536.258100px;}
.x14{left:544.932150px;}
.x2f{left:591.105000px;}
.x31{left:600.600000px;}
.x30{left:607.820250px;}
.x32{left:624.975000px;}
.x6{left:628.951050px;}
.x7{left:634.563600px;}
.x29{left:637.545000px;}
.x2b{left:642.000000px;}
.x2a{left:653.898000px;}
.x2d{left:656.792250px;}
.x2c{left:669.195000px;}
.x25{left:671.552250px;}
.x26{left:679.845000px;}
.x24{left:683.955000px;}
.x2e{left:690.135000px;}
.x28{left:705.248850px;}
.x27{left:724.080000px;}
.x15{left:726.491100px;}
.x11{left:732.018750px;}
.x16{left:735.845550px;}
.x12{left:741.373050px;}
.x8{left:746.305350px;}
.x9{left:751.917900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.281973pt;}
.ls1a{letter-spacing:-2.184000pt;}
.ls22{letter-spacing:-1.697280pt;}
.ls15{letter-spacing:-1.060800pt;}
.ls1c{letter-spacing:-0.324480pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.042666pt;}
.lsf{letter-spacing:0.053334pt;}
.ls29{letter-spacing:0.085332pt;}
.ls6{letter-spacing:0.106668pt;}
.ls2{letter-spacing:0.152000pt;}
.ls5{letter-spacing:0.160002pt;}
.ls23{letter-spacing:0.170665pt;}
.lsb{letter-spacing:0.213335pt;}
.ls8{letter-spacing:0.320003pt;}
.ls25{letter-spacing:0.337062pt;}
.ls24{letter-spacing:0.341329pt;}
.ls27{letter-spacing:0.349862pt;}
.ls26{letter-spacing:0.366929pt;}
.lse{letter-spacing:0.373337pt;}
.ls1b{letter-spacing:0.499200pt;}
.ls13{letter-spacing:0.662400pt;}
.ls18{letter-spacing:0.840267pt;}
.ls11{letter-spacing:0.864800pt;}
.ls1f{letter-spacing:0.889333pt;}
.ls17{letter-spacing:0.981333pt;}
.ls19{letter-spacing:0.999733pt;}
.ls21{letter-spacing:1.012000pt;}
.ls12{letter-spacing:1.128533pt;}
.ls1e{letter-spacing:1.171467pt;}
.ls1d{letter-spacing:1.177600pt;}
.ls16{letter-spacing:1.288000pt;}
.ls20{letter-spacing:1.306400pt;}
.ls10{letter-spacing:2.346667pt;}
.lsa{letter-spacing:2.619344pt;}
.ls9{letter-spacing:2.921744pt;}
.ls14{letter-spacing:3.120000pt;}
.ls3{letter-spacing:9.378016pt;}
.ls28{letter-spacing:9.386549pt;}
.lsd{letter-spacing:11.642783pt;}
.ls7{letter-spacing:11.840118pt;}
.lsc{letter-spacing:11.946786pt;}
.ls0{letter-spacing:18.773099pt;}
.ws37{word-spacing:-11.696117pt;}
.ws17{word-spacing:-9.420682pt;}
.ws51{word-spacing:-0.379729pt;}
.ws47{word-spacing:-0.063999pt;}
.ws29{word-spacing:-0.053334pt;}
.ws13{word-spacing:-0.050667pt;}
.ws4{word-spacing:-0.048000pt;}
.ws8{word-spacing:-0.042666pt;}
.ws22{word-spacing:0.000000pt;}
.ws4d{word-spacing:8.490561pt;}
.ws4c{word-spacing:8.575893pt;}
.ws1d{word-spacing:8.618559pt;}
.ws1c{word-spacing:8.661225pt;}
.ws19{word-spacing:8.703891pt;}
.ws20{word-spacing:8.746557pt;}
.ws1e{word-spacing:8.789223pt;}
.ws1f{word-spacing:8.831890pt;}
.wsa{word-spacing:8.874556pt;}
.ws21{word-spacing:8.917222pt;}
.ws4e{word-spacing:8.934288pt;}
.ws16{word-spacing:8.959888pt;}
.ws1a{word-spacing:9.002554pt;}
.ws18{word-spacing:9.045220pt;}
.ws7{word-spacing:9.087886pt;}
.ws0{word-spacing:9.130553pt;}
.ws52{word-spacing:9.134084pt;}
.ws9{word-spacing:9.173219pt;}
.ws4f{word-spacing:9.207352pt;}
.wsb{word-spacing:9.215885pt;}
.ws3a{word-spacing:9.258551pt;}
.ws1b{word-spacing:9.301217pt;}
.ws33{word-spacing:9.343883pt;}
.ws4a{word-spacing:9.386549pt;}
.ws4b{word-spacing:9.429215pt;}
.ws50{word-spacing:9.941209pt;}
.ws5{word-spacing:10.320000pt;}
.ws3{word-spacing:10.368000pt;}
.wsd{word-spacing:10.589333pt;}
.ws6{word-spacing:10.608000pt;}
.ws46{word-spacing:10.666773pt;}
.ws3c{word-spacing:10.720107pt;}
.ws44{word-spacing:10.826775pt;}
.ws43{word-spacing:10.880109pt;}
.ws45{word-spacing:10.933443pt;}
.ws12{word-spacing:10.944000pt;}
.ws41{word-spacing:10.986777pt;}
.ws40{word-spacing:11.040110pt;}
.ws11{word-spacing:11.045333pt;}
.ws3e{word-spacing:11.093444pt;}
.ws10{word-spacing:11.096000pt;}
.wsf{word-spacing:11.146667pt;}
.ws3d{word-spacing:11.146778pt;}
.wse{word-spacing:11.197333pt;}
.ws14{word-spacing:11.248000pt;}
.ws3f{word-spacing:11.253446pt;}
.wsc{word-spacing:11.298667pt;}
.ws34{word-spacing:11.306780pt;}
.ws15{word-spacing:11.349333pt;}
.ws32{word-spacing:11.360114pt;}
.ws42{word-spacing:11.466781pt;}
.ws2e{word-spacing:11.520115pt;}
.ws26{word-spacing:11.573449pt;}
.ws24{word-spacing:11.626783pt;}
.ws2a{word-spacing:11.680117pt;}
.ws27{word-spacing:11.733451pt;}
.ws30{word-spacing:11.786785pt;}
.ws2b{word-spacing:11.840118pt;}
.ws2c{word-spacing:11.893452pt;}
.ws28{word-spacing:11.946786pt;}
.ws23{word-spacing:12.000120pt;}
.ws2d{word-spacing:12.053454pt;}
.ws25{word-spacing:12.106788pt;}
.ws3b{word-spacing:12.160122pt;}
.ws35{word-spacing:12.213455pt;}
.ws38{word-spacing:12.266789pt;}
.ws2f{word-spacing:12.320123pt;}
.ws39{word-spacing:13.823885pt;}
.ws36{word-spacing:13.887884pt;}
.ws31{word-spacing:13.951884pt;}
.ws1{word-spacing:23.466784pt;}
.ws2{word-spacing:23.573451pt;}
.ws48{word-spacing:53.162002pt;}
.ws49{word-spacing:53.204668pt;}
._d{margin-left:-11.581333pt;}
._7{margin-left:-9.386549pt;}
._8{margin-left:-4.565276pt;}
._b{margin-left:-3.285292pt;}
._a{margin-left:-2.218639pt;}
._0{margin-left:-0.981321pt;}
._2{width:1.013333pt;}
._9{width:7.978567pt;}
._1{width:9.855877pt;}
._3{width:11.602667pt;}
._4{width:12.514667pt;}
._c{width:14.207822pt;}
._f{width:18.346437pt;}
._5{width:41.642146pt;}
._e{width:1472.109598pt;}
._6{width:1495.703970pt;}
.fsa{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs9{font-size:35.552000pt;}
.fs8{font-size:37.332800pt;}
.fs0{font-size:42.666133pt;}
.fsd{font-size:46.933333pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fse{font-size:61.333333pt;}
.fsf{font-size:62.400000pt;}
.fs6{font-size:63.999467pt;}
.fsc{font-size:77.333333pt;}
.fs4{font-size:85.332800pt;}
.fsb{font-size:94.720000pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:48.000000pt;}
.y8a{bottom:106.348200pt;}
.y153{bottom:106.353291pt;}
.y46{bottom:110.625574pt;}
.y195{bottom:110.642767pt;}
.y74{bottom:110.672733pt;}
.ye0{bottom:110.679454pt;}
.y16b{bottom:110.684320pt;}
.y111{bottom:110.694374pt;}
.yb3{bottom:110.699147pt;}
.y124{bottom:112.421414pt;}
.y12e{bottom:112.941440pt;}
.y194{bottom:123.346609pt;}
.y1cf{bottom:124.922384pt;}
.y45{bottom:125.292057pt;}
.y89{bottom:126.987942pt;}
.y152{bottom:126.993033pt;}
.y73{bottom:127.979573pt;}
.ydf{bottom:127.986293pt;}
.y16a{bottom:127.991160pt;}
.y110{bottom:128.001214pt;}
.yb2{bottom:128.005986pt;}
.y123{bottom:129.728254pt;}
.y12d{bottom:130.248280pt;}
.y193{bottom:135.965117pt;}
.y1ce{bottom:137.626225pt;}
.y88{bottom:139.691783pt;}
.y151{bottom:139.696874pt;}
.y44{bottom:139.958541pt;}
.y72{bottom:145.366413pt;}
.yde{bottom:145.373134pt;}
.y169{bottom:145.378000pt;}
.y10f{bottom:145.388054pt;}
.yb1{bottom:145.392827pt;}
.y122{bottom:147.035093pt;}
.y12c{bottom:147.555120pt;}
.y87{bottom:152.310292pt;}
.y150{bottom:152.315383pt;}
.y27{bottom:152.848800pt;}
.y192{bottom:153.276901pt;}
.y43{bottom:154.625024pt;}
.y1cd{bottom:154.938009pt;}
.y71{bottom:162.673253pt;}
.ydd{bottom:162.679974pt;}
.y168{bottom:162.684840pt;}
.y10e{bottom:162.694894pt;}
.yb0{bottom:162.699667pt;}
.y121{bottom:164.421934pt;}
.y12b{bottom:164.941960pt;}
.y86{bottom:165.014133pt;}
.y14f{bottom:165.019224pt;}
.y191{bottom:165.980742pt;}
.y1cc{bottom:167.641850pt;}
.y42{bottom:169.291507pt;}
.ye1{bottom:169.776267pt;}
.y26{bottom:171.519467pt;}
.y14e{bottom:177.637733pt;}
.y190{bottom:178.684583pt;}
.y70{bottom:179.980093pt;}
.ydc{bottom:179.986813pt;}
.y10d{bottom:180.001734pt;}
.yaf{bottom:180.006506pt;}
.y120{bottom:181.728774pt;}
.y12a{bottom:182.248800pt;}
.y41{bottom:183.957991pt;}
.y1cb{bottom:184.953634pt;}
.y167{bottom:188.005093pt;}
.y25{bottom:190.190133pt;}
.y18f{bottom:195.996367pt;}
.y6f{bottom:197.366933pt;}
.ydb{bottom:197.373654pt;}
.y10c{bottom:197.388574pt;}
.yae{bottom:197.393347pt;}
.y1ca{bottom:197.572143pt;}
.y40{bottom:198.624474pt;}
.y11f{bottom:199.035613pt;}
.y166{bottom:205.311933pt;}
.y18e{bottom:208.614876pt;}
.y24{bottom:208.860800pt;}
.yda{bottom:214.680494pt;}
.y10b{bottom:214.695414pt;}
.yad{bottom:214.700187pt;}
.y1c9{bottom:214.958592pt;}
.y11e{bottom:216.342453pt;}
.y6e{bottom:219.974467pt;}
.y3f{bottom:221.301524pt;}
.y18d{bottom:221.318717pt;}
.y165{bottom:222.698774pt;}
.y23{bottom:227.531467pt;}
.y1c8{bottom:227.577101pt;}
.y132{bottom:230.387109pt;}
.yd9{bottom:231.987333pt;}
.y10a{bottom:232.002254pt;}
.yac{bottom:232.007026pt;}
.y11d{bottom:233.729294pt;}
.y18c{bottom:234.022558pt;}
.y3e{bottom:235.968007pt;}
.y164{bottom:240.005613pt;}
.y1c7{bottom:240.280942pt;}
.y6d{bottom:244.006267pt;}
.y22{bottom:246.202133pt;}
.y109{bottom:249.309093pt;}
.yab{bottom:249.313866pt;}
.y3d{bottom:250.634491pt;}
.y131{bottom:251.026851pt;}
.y11c{bottom:251.036133pt;}
.y18b{bottom:251.334342pt;}
.yd8{bottom:254.664533pt;}
.y163{bottom:257.312453pt;}
.y1c6{bottom:257.592726pt;}
.y130{bottom:263.730692pt;}
.y18a{bottom:263.952851pt;}
.y21{bottom:264.872800pt;}
.y3c{bottom:265.300974pt;}
.y108{bottom:266.695934pt;}
.yaa{bottom:266.700707pt;}
.y1c5{bottom:270.296567pt;}
.y162{bottom:274.699294pt;}
.y12f{bottom:276.434533pt;}
.y189{bottom:276.656692pt;}
.y3b{bottom:279.967457pt;}
.y20{bottom:283.543467pt;}
.y107{bottom:284.002774pt;}
.ya9{bottom:284.007546pt;}
.y1c4{bottom:287.608351pt;}
.y188{bottom:289.360533pt;}
.yd7{bottom:289.622921pt;}
.y161{bottom:292.006133pt;}
.y6c{bottom:294.876694pt;}
.y14d{bottom:296.000000pt;}
.y1c3{bottom:300.312192pt;}
.y106{bottom:301.309613pt;}
.ya8{bottom:301.314386pt;}
.y1f{bottom:302.214133pt;}
.y3a{bottom:302.644507pt;}
.yd6{bottom:306.929760pt;}
.y187{bottom:307.351067pt;}
.y129{bottom:308.930733pt;}
.y6b{bottom:312.183534pt;}
.y1c2{bottom:312.930701pt;}
.y160{bottom:314.683333pt;}
.y1f7{bottom:316.250543pt;}
.y39{bottom:317.310990pt;}
.y14c{bottom:318.413333pt;}
.y105{bottom:318.696454pt;}
.ya7{bottom:318.701227pt;}
.y1e{bottom:320.884800pt;}
.yd5{bottom:324.316601pt;}
.y6a{bottom:329.490374pt;}
.y128{bottom:329.570475pt;}
.y1c1{bottom:330.242484pt;}
.y38{bottom:331.977474pt;}
.y1f6{bottom:333.636992pt;}
.y104{bottom:336.003294pt;}
.ya6{bottom:336.008066pt;}
.y1d{bottom:339.555467pt;}
.y14b{bottom:340.813333pt;}
.yd4{bottom:341.623441pt;}
.y127{bottom:342.274317pt;}
.y1c0{bottom:342.946325pt;}
.y186{bottom:343.262413pt;}
.y37{bottom:346.643957pt;}
.y69{bottom:346.877214pt;}
.y1f5{bottom:350.948775pt;}
.y103{bottom:353.310133pt;}
.ya5{bottom:353.314906pt;}
.y101{bottom:353.339000pt;}
.y126{bottom:354.892825pt;}
.y15f{bottom:357.639467pt;}
.y1c{bottom:358.226133pt;}
.yd3{bottom:358.930280pt;}
.y102{bottom:359.281867pt;}
.y1bf{bottom:360.258109pt;}
.y185{bottom:360.649254pt;}
.y36{bottom:361.310440pt;}
.y14a{bottom:363.200000pt;}
.y1f4{bottom:363.567284pt;}
.y68{bottom:364.184054pt;}
.y125{bottom:367.596667pt;}
.ya4{bottom:370.701747pt;}
.y100{bottom:370.725841pt;}
.y1be{bottom:372.961950pt;}
.y15e{bottom:374.946307pt;}
.y35{bottom:375.976924pt;}
.y118{bottom:375.987200pt;}
.y1f3{bottom:376.271126pt;}
.yd2{bottom:376.317121pt;}
.y1b{bottom:376.820800pt;}
.y184{bottom:377.956094pt;}
.y67{bottom:381.490894pt;}
.ya3{bottom:388.008586pt;}
.yff{bottom:388.032680pt;}
.y1bd{bottom:390.273734pt;}
.y15d{bottom:392.253146pt;}
.y1f2{bottom:393.582909pt;}
.yd1{bottom:393.623961pt;}
.y183{bottom:395.262933pt;}
.y1a{bottom:395.491467pt;}
.y34{bottom:398.653974pt;}
.y66{bottom:398.797733pt;}
.y1bc{bottom:402.977575pt;}
.ya2{bottom:405.315426pt;}
.yfe{bottom:405.339520pt;}
.y1f1{bottom:406.286750pt;}
.y15c{bottom:409.639987pt;}
.yd0{bottom:410.930800pt;}
.y19{bottom:414.162133pt;}
.y117{bottom:414.626601pt;}
.y1bb{bottom:415.566484pt;}
.y65{bottom:416.184574pt;}
.y182{bottom:417.940000pt;}
.y33{bottom:421.331023pt;}
.ya1{bottom:422.705694pt;}
.yfd{bottom:422.726361pt;}
.y1f0{bottom:423.598534pt;}
.y15b{bottom:426.946827pt;}
.ycf{bottom:428.317641pt;}
.y116{bottom:431.933440pt;}
.y18{bottom:432.832800pt;}
.y1ba{bottom:432.952933pt;}
.y64{bottom:433.491414pt;}
.y1ef{bottom:436.302375pt;}
.ya0{bottom:440.029773pt;}
.yfc{bottom:440.033200pt;}
.y13d{bottom:441.933333pt;}
.y32{bottom:444.008073pt;}
.y15a{bottom:444.253666pt;}
.y149{bottom:445.133333pt;}
.y1b9{bottom:445.571442pt;}
.yce{bottom:445.624481pt;}
.y115{bottom:449.240280pt;}
.y63{bottom:450.798253pt;}
.y17{bottom:451.503467pt;}
.y1ee{bottom:453.592675pt;}
.y181{bottom:453.933667pt;}
.y9f{bottom:457.336613pt;}
.yfb{bottom:457.340040pt;}
.y1b8{bottom:458.275284pt;}
.y159{bottom:461.640507pt;}
.ycd{bottom:462.931320pt;}
.y13c{bottom:464.320000pt;}
.y1ed{bottom:466.296517pt;}
.y114{bottom:466.547120pt;}
.y31{bottom:466.685123pt;}
.y148{bottom:467.533333pt;}
.y62{bottom:468.185094pt;}
.y16{bottom:470.174133pt;}
.y180{bottom:471.240507pt;}
.y9e{bottom:474.643453pt;}
.yfa{bottom:474.646880pt;}
.y1b7{bottom:475.587067pt;}
.y158{bottom:478.947347pt;}
.ycc{bottom:480.318161pt;}
.y30{bottom:481.351607pt;}
.y1ec{bottom:483.608300pt;}
.y113{bottom:483.933960pt;}
.y61{bottom:485.491934pt;}
.y13b{bottom:486.732000pt;}
.y1b6{bottom:488.290908pt;}
.y17f{bottom:488.547347pt;}
.y15{bottom:488.844800pt;}
.y147{bottom:489.933333pt;}
.y9d{bottom:492.030293pt;}
.yf9{bottom:492.033720pt;}
.y157{bottom:496.254186pt;}
.y1eb{bottom:496.312141pt;}
.ycb{bottom:497.625001pt;}
.y1b5{bottom:500.909417pt;}
.y112{bottom:501.240800pt;}
.y60{bottom:502.798773pt;}
.y2f{bottom:504.028656pt;}
.y17e{bottom:505.934187pt;}
.y14{bottom:507.515467pt;}
.y1ea{bottom:508.930650pt;}
.y13a{bottom:509.134000pt;}
.y9c{bottom:509.337133pt;}
.yf8{bottom:509.340560pt;}
.y146{bottom:512.320000pt;}
.y156{bottom:513.561026pt;}
.yca{bottom:514.931840pt;}
.y1b4{bottom:518.295867pt;}
.y2e{bottom:518.695140pt;}
.y5f{bottom:520.185614pt;}
.y17d{bottom:523.241027pt;}
.y13{bottom:526.186133pt;}
.y1e9{bottom:526.242434pt;}
.y9b{bottom:526.643973pt;}
.yf7{bottom:526.647400pt;}
.y1b3{bottom:530.914376pt;}
.y155{bottom:530.947867pt;}
.yc9{bottom:532.238680pt;}
.y2d{bottom:533.361623pt;}
.y5e{bottom:537.492454pt;}
.y1e8{bottom:538.946275pt;}
.y17c{bottom:540.547867pt;}
.y1b2{bottom:543.618217pt;}
.y9a{bottom:544.030813pt;}
.yf6{bottom:544.034240pt;}
.yf0{bottom:544.601214pt;}
.y12{bottom:544.856800pt;}
.y2c{bottom:548.028106pt;}
.yc8{bottom:549.625521pt;}
.y1e7{bottom:551.650116pt;}
.y11b{bottom:551.727083pt;}
.y154{bottom:553.625067pt;}
.y5d{bottom:554.799293pt;}
.y1b1{bottom:560.930000pt;}
.y99{bottom:561.337653pt;}
.yf5{bottom:561.341080pt;}
.yef{bottom:561.908054pt;}
.y2b{bottom:562.694590pt;}
.y17b{bottom:563.225067pt;}
.y11{bottom:563.527467pt;}
.yc7{bottom:566.932360pt;}
.y1e6{bottom:568.961900pt;}
.y5c{bottom:572.186134pt;}
.y11a{bottom:572.366825pt;}
.y1b0{bottom:573.633842pt;}
.y2a{bottom:577.361073pt;}
.y98{bottom:578.644493pt;}
.yf4{bottom:578.647920pt;}
.yee{bottom:579.214893pt;}
.y139{bottom:580.173333pt;}
.y1e5{bottom:581.580409pt;}
.yc6{bottom:584.239200pt;}
.yc4{bottom:584.260000pt;}
.y119{bottom:585.070667pt;}
.y1af{bottom:586.252351pt;}
.y5b{bottom:589.492974pt;}
.yc5{bottom:590.210933pt;}
.y10{bottom:592.856533pt;}
.y1e4{bottom:594.284250pt;}
.y97{bottom:596.031333pt;}
.yf3{bottom:596.034760pt;}
.yed{bottom:596.601734pt;}
.y29{bottom:599.206133pt;}
.yc3{bottom:601.646841pt;}
.y1ae{bottom:603.564134pt;}
.y5a{bottom:606.799813pt;}
.y17a{bottom:607.255174pt;}
.y1e3{bottom:611.596034pt;}
.yf2{bottom:613.341600pt;}
.yec{bottom:613.908574pt;}
.y1ad{bottom:616.267975pt;}
.y96{bottom:618.632933pt;}
.yc2{bottom:618.953681pt;}
.y59{bottom:624.106653pt;}
.y1e2{bottom:624.299875pt;}
.y179{bottom:624.562013pt;}
.y1ac{bottom:628.971817pt;}
.yeb{bottom:631.215413pt;}
.y145{bottom:635.533333pt;}
.yf1{bottom:636.018667pt;}
.yc1{bottom:636.260520pt;}
.y1e1{bottom:636.918384pt;}
.y58{bottom:641.493494pt;}
.y178{bottom:641.868853pt;}
.y1ab{bottom:646.283600pt;}
.yea{bottom:648.602254pt;}
.yf{bottom:648.874167pt;}
.yc0{bottom:653.647361pt;}
.y1e0{bottom:654.304833pt;}
.y95{bottom:656.978974pt;}
.y144{bottom:657.933333pt;}
.y57{bottom:658.800333pt;}
.y1aa{bottom:658.902109pt;}
.y177{bottom:659.255694pt;}
.ye9{bottom:665.909094pt;}
.ybf{bottom:670.954201pt;}
.y1a9{bottom:671.605950pt;}
.y1df{bottom:671.616617pt;}
.y94{bottom:674.285814pt;}
.ye{bottom:675.561833pt;}
.y56{bottom:676.107173pt;}
.y176{bottom:676.562533pt;}
.y143{bottom:680.318000pt;}
.ye8{bottom:683.215933pt;}
.y1de{bottom:684.320458pt;}
.ybe{bottom:688.261040pt;}
.yd{bottom:688.863000pt;}
.y1a8{bottom:688.917734pt;}
.y93{bottom:691.592654pt;}
.y55{bottom:693.494014pt;}
.y175{bottom:693.869373pt;}
.y1dd{bottom:696.938967pt;}
.ye7{bottom:700.522773pt;}
.y1a7{bottom:701.621575pt;}
.yc{bottom:702.164167pt;}
.y142{bottom:702.720000pt;}
.ybd{bottom:705.567880pt;}
.y92{bottom:708.979494pt;}
.y54{bottom:710.800853pt;}
.y1dc{bottom:714.325416pt;}
.yb{bottom:715.540000pt;}
.ye6{bottom:717.909614pt;}
.y1a6{bottom:718.933359pt;}
.y174{bottom:719.189626pt;}
.ybc{bottom:722.954721pt;}
.y91{bottom:726.286334pt;}
.y1db{bottom:726.943925pt;}
.y53{bottom:728.107693pt;}
.y1a5{bottom:731.637200pt;}
.ye5{bottom:735.216453pt;}
.y173{bottom:736.576467pt;}
.ya{bottom:739.502133pt;}
.y8{bottom:739.502800pt;}
.y1da{bottom:739.647766pt;}
.ybb{bottom:740.261560pt;}
.y90{bottom:743.593174pt;}
.y1a4{bottom:744.255709pt;}
.y9{bottom:744.869200pt;}
.y52{bottom:745.494534pt;}
.ye4{bottom:752.523293pt;}
.y172{bottom:753.883307pt;}
.y6{bottom:754.166800pt;}
.y1d9{bottom:756.959550pt;}
.yb8{bottom:757.567293pt;}
.yba{bottom:757.568400pt;}
.y7{bottom:759.533733pt;}
.y8f{bottom:760.980014pt;}
.y1a3{bottom:761.642158pt;}
.y51{bottom:762.801373pt;}
.yb9{bottom:763.540000pt;}
.y1d8{bottom:769.663391pt;}
.ye3{bottom:769.910134pt;}
.y171{bottom:771.190146pt;}
.y1a2{bottom:774.260667pt;}
.yb6{bottom:774.954133pt;}
.y8e{bottom:778.286854pt;}
.y50{bottom:780.108213pt;}
.yb7{bottom:780.850133pt;}
.y1d7{bottom:782.281900pt;}
.y1a1{bottom:786.964508pt;}
.ye2{bottom:787.216973pt;}
.y5{bottom:787.507900pt;}
.y170{bottom:788.576987pt;}
.y8d{bottom:795.593694pt;}
.y4f{bottom:797.415053pt;}
.yb5{bottom:797.625666pt;}
.y1d6{bottom:799.593684pt;}
.y1a0{bottom:804.276292pt;}
.y85{bottom:804.523813pt;}
.y1d5{bottom:812.297525pt;}
.y8c{bottom:812.900533pt;}
.y16f{bottom:813.897240pt;}
.y4e{bottom:814.801893pt;}
.y138{bottom:815.693333pt;}
.y19f{bottom:816.980133pt;}
.y141{bottom:817.614000pt;}
.y4{bottom:820.841400pt;}
.yb4{bottom:821.593467pt;}
.y84{bottom:821.910654pt;}
.y1d4{bottom:825.001366pt;}
.y19e{bottom:829.598642pt;}
.y16e{bottom:831.204080pt;}
.y4d{bottom:832.108733pt;}
.y8b{bottom:835.577733pt;}
.y137{bottom:838.093333pt;}
.y83{bottom:839.217493pt;}
.y140{bottom:840.000000pt;}
.y1d3{bottom:842.313150pt;}
.y19d{bottom:846.985091pt;}
.y16d{bottom:848.510920pt;}
.y7c{bottom:848.939321pt;}
.y4c{bottom:849.415573pt;}
.y3{bottom:854.174900pt;}
.y1d2{bottom:854.931659pt;}
.y82{bottom:856.524333pt;}
.y19c{bottom:859.603600pt;}
.y136{bottom:860.480667pt;}
.y13f{bottom:862.398000pt;}
.y7b{bottom:863.605805pt;}
.y16c{bottom:865.897760pt;}
.y4b{bottom:866.802413pt;}
.y19b{bottom:872.307441pt;}
.y1d1{bottom:872.318108pt;}
.y81{bottom:873.911174pt;}
.y135{bottom:882.882667pt;}
.y4a{bottom:884.109253pt;}
.y13e{bottom:884.800000pt;}
.y1d0{bottom:884.936617pt;}
.y7a{bottom:886.282855pt;}
.y2{bottom:887.508400pt;}
.y19a{bottom:889.619225pt;}
.y80{bottom:891.218013pt;}
.y79{bottom:900.949338pt;}
.y49{bottom:901.416093pt;}
.y199{bottom:902.323066pt;}
.y7f{bottom:908.524853pt;}
.y198{bottom:914.941575pt;}
.y78{bottom:915.615821pt;}
.y48{bottom:918.802933pt;}
.y1{bottom:920.843867pt;}
.y7e{bottom:925.831693pt;}
.y77{bottom:930.282305pt;}
.y197{bottom:932.253359pt;}
.y134{bottom:938.880000pt;}
.y47{bottom:941.404400pt;}
.y7d{bottom:943.218533pt;}
.y76{bottom:944.948788pt;}
.y196{bottom:944.957200pt;}
.y75{bottom:994.393333pt;}
.y133{bottom:996.173333pt;}
.h11{height:21.330000pt;}
.h4{height:23.996800pt;}
.h10{height:25.313024pt;}
.h8{height:31.060945pt;}
.hd{height:31.999600pt;}
.h1{height:33.066253pt;}
.h1a{height:33.152187pt;}
.h18{height:33.184653pt;}
.h3{height:36.000000pt;}
.h5{height:37.076870pt;}
.ha{height:37.973713pt;}
.h17{height:38.080381pt;}
.hb{height:38.187049pt;}
.h7{height:39.266667pt;}
.h19{height:39.636838pt;}
.he{height:40.113676pt;}
.hf{height:40.168928pt;}
.h9{height:47.999600pt;}
.h14{height:48.950000pt;}
.hc{height:49.599587pt;}
.h6{height:61.524949pt;}
.h12{height:63.083520pt;}
.h15{height:63.968750pt;}
.h16{height:65.081250pt;}
.h2{height:76.907051pt;}
.h13{height:80.656250pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xd{left:48.000000pt;}
.xe{left:63.496000pt;}
.x1b{left:155.626667pt;}
.x1c{left:164.013333pt;}
.x1{left:266.683333pt;}
.x1f{left:267.640000pt;}
.x21{left:269.077333pt;}
.x1d{left:270.994000pt;}
.x33{left:272.579467pt;}
.x22{left:275.318000pt;}
.x1e{left:278.507333pt;}
.x19{left:279.458133pt;}
.xf{left:282.643493pt;}
.x1a{left:287.168400pt;}
.x23{left:291.213333pt;}
.x20{left:293.453333pt;}
.x34{left:294.648524pt;}
.x17{left:304.327467pt;}
.x18{left:313.625067pt;}
.x2{left:343.861333pt;}
.x3{left:348.850267pt;}
.xa{left:380.069200pt;}
.xb{left:385.058133pt;}
.x4{left:450.519600pt;}
.x5{left:455.508533pt;}
.x13{left:472.592000pt;}
.x10{left:475.237733pt;}
.xc{left:476.673867pt;}
.x14{left:484.384133pt;}
.x2f{left:525.426667pt;}
.x31{left:533.866667pt;}
.x30{left:540.284667pt;}
.x32{left:555.533333pt;}
.x6{left:559.067600pt;}
.x7{left:564.056533pt;}
.x29{left:566.706667pt;}
.x2b{left:570.666667pt;}
.x2a{left:581.242667pt;}
.x2d{left:583.815333pt;}
.x2c{left:594.840000pt;}
.x25{left:596.935333pt;}
.x26{left:604.306667pt;}
.x24{left:607.960000pt;}
.x2e{left:613.453333pt;}
.x28{left:626.887867pt;}
.x27{left:643.626667pt;}
.x15{left:645.769867pt;}
.x11{left:650.683333pt;}
.x16{left:654.084933pt;}
.x12{left:658.998267pt;}
.x8{left:663.382533pt;}
.x9{left:668.371467pt;}
}




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