
    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_ae2c6733e5e24564688f6ebc.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fe313e85586c33a67952c145.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c75af887902f72cd73f1329d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;font-style:normal;font-weight: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_aa0b6c8d16b792f8c5590245.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c6cfd81a5f22c1ca1509ee53.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7717d11a1dff32fc42314c3c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_00bf4e1fbc1a7f82a25ff0ee.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f4e0e56462f8b36d3ada34a6.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9a7ca74ddc6686c2ca2f6509.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bf91e051ee02c935fb390922.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_d04cbb367b382e1639745760.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_21bc12bd97118e3001d2a40f.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_aa8beb79f8d77840185183d6.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_ce28c2a05703b6e9433182a1.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_4dc2424b276bbc9a3ca941d7.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_147a0ba3c1611599c8139f19.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_2de006f1e50c8b94eac595fc.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m41{transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027500,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050000,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112500,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127500,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145000,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2e{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);}
.m39{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.352500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.382500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.500000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:9.703359px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._1{margin-left:-95.320578px;}
._0{margin-left:-11.672622px;}
.fc0{color:transparent;}
.fs2{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y19a{bottom:43.198500px;}
.y199{bottom:45.673500px;}
.y10f{bottom:59.098500px;}
.y110{bottom:61.273500px;}
.y166{bottom:77.398500px;}
.y6e{bottom:85.500000px;}
.y10e{bottom:91.875000px;}
.y2c{bottom:92.698500px;}
.yd7{bottom:96.673500px;}
.y165{bottom:99.375000px;}
.y6d{bottom:103.500000px;}
.y10d{bottom:110.173500px;}
.y2b{bottom:111.750000px;}
.y164{bottom:113.400000px;}
.y163{bottom:114.525000px;}
.y162{bottom:116.250000px;}
.yd6{bottom:117.973500px;}
.y6c{bottom:122.173500px;}
.y10c{bottom:127.798500px;}
.y10b{bottom:129.298500px;}
.y2a{bottom:129.750000px;}
.yd3{bottom:133.798500px;}
.y161{bottom:133.875000px;}
.yd4{bottom:134.548500px;}
.yd5{bottom:136.650000px;}
.y6b{bottom:140.548500px;}
.y10a{bottom:147.298500px;}
.y29{bottom:147.750000px;}
.yd0{bottom:151.798500px;}
.y160{bottom:152.250000px;}
.yd1{bottom:152.848500px;}
.y15f{bottom:154.798500px;}
.yd2{bottom:155.025000px;}
.y6a{bottom:158.923500px;}
.y109{bottom:165.598500px;}
.y15e{bottom:169.198500px;}
.y15d{bottom:170.625000px;}
.y15c{bottom:171.375000px;}
.ycd{bottom:171.900000px;}
.yce{bottom:173.775000px;}
.ycf{bottom:174.448500px;}
.y28{bottom:176.923500px;}
.y69{bottom:177.298500px;}
.y108{bottom:183.973500px;}
.y15b{bottom:189.000000px;}
.yc8{bottom:189.223500px;}
.yc9{bottom:191.025000px;}
.yca{bottom:192.073500px;}
.ycb{bottom:192.900000px;}
.ycc{bottom:193.500000px;}
.y27{bottom:195.298500px;}
.y68{bottom:195.673500px;}
.y107{bottom:202.348500px;}
.y15a{bottom:205.948500px;}
.y159{bottom:206.250000px;}
.y158{bottom:206.625000px;}
.y157{bottom:208.048500px;}
.yc6{bottom:209.775000px;}
.yc7{bottom:211.573500px;}
.y196{bottom:219.298500px;}
.y197{bottom:219.673500px;}
.y106{bottom:220.723500px;}
.y26{bottom:223.048500px;}
.y67{bottom:225.150000px;}
.y156{bottom:225.673500px;}
.yc5{bottom:227.400000px;}
.y105{bottom:239.098500px;}
.y25{bottom:240.298500px;}
.y155{bottom:243.375000px;}
.y154{bottom:244.798500px;}
.y66{bottom:244.948500px;}
.y153{bottom:245.173500px;}
.y152{bottom:246.223500px;}
.yc4{bottom:246.823500px;}
.y195{bottom:248.775000px;}
.y104{bottom:259.198500px;}
.y24{bottom:259.348500px;}
.yc1{bottom:262.348500px;}
.y151{bottom:262.423500px;}
.yc2{bottom:262.648500px;}
.y65{bottom:264.750000px;}
.yc3{bottom:265.198500px;}
.y191{bottom:267.898500px;}
.y193{bottom:268.273500px;}
.y192{bottom:268.573500px;}
.y194{bottom:269.323500px;}
.y103{bottom:277.573500px;}
.y23{bottom:278.098500px;}
.y150{bottom:280.798500px;}
.y64{bottom:283.500000px;}
.ybf{bottom:283.573500px;}
.yc0{bottom:286.125000px;}
.y18f{bottom:286.648500px;}
.y190{bottom:286.948500px;}
.y102{bottom:295.948500px;}
.y22{bottom:296.098500px;}
.y14f{bottom:298.798500px;}
.ybe{bottom:300.073500px;}
.y14e{bottom:300.298500px;}
.y14d{bottom:300.898500px;}
.y62{bottom:302.173500px;}
.y63{bottom:302.923500px;}
.y18d{bottom:304.648500px;}
.y18e{bottom:305.023500px;}
.y101{bottom:314.698500px;}
.y21{bottom:315.148500px;}
.y14c{bottom:317.473500px;}
.y60{bottom:320.173500px;}
.y61{bottom:320.548500px;}
.ybd{bottom:320.625000px;}
.y18c{bottom:323.323500px;}
.y20{bottom:332.473500px;}
.y100{bottom:333.000000px;}
.y14b{bottom:334.048500px;}
.y14a{bottom:334.798500px;}
.y149{bottom:336.598500px;}
.ybb{bottom:338.625000px;}
.y5f{bottom:338.923500px;}
.ybc{bottom:341.098500px;}
.y18a{bottom:341.323500px;}
.y18b{bottom:341.698500px;}
.yff{bottom:351.073500px;}
.y1f{bottom:351.148500px;}
.y148{bottom:352.798500px;}
.y147{bottom:354.223500px;}
.y146{bottom:354.898500px;}
.y145{bottom:355.273500px;}
.yb9{bottom:357.000000px;}
.y5e{bottom:357.298500px;}
.yba{bottom:359.473500px;}
.y189{bottom:360.000000px;}
.yfe{bottom:369.448500px;}
.y1e{bottom:369.523500px;}
.y5d{bottom:375.973500px;}
.yb8{bottom:376.048500px;}
.y187{bottom:378.375000px;}
.y188{bottom:378.448500px;}
.y144{bottom:388.048500px;}
.yfd{bottom:388.125000px;}
.y1d{bottom:388.198500px;}
.y143{bottom:389.098500px;}
.y142{bottom:389.848500px;}
.yb5{bottom:392.250000px;}
.yb6{bottom:393.000000px;}
.yb7{bottom:394.798500px;}
.y5c{bottom:396.148500px;}
.y185{bottom:396.750000px;}
.y186{bottom:397.500000px;}
.y141{bottom:405.750000px;}
.y140{bottom:406.048500px;}
.y1c{bottom:406.198500px;}
.yfc{bottom:406.500000px;}
.y13f{bottom:406.798500px;}
.y13e{bottom:408.223500px;}
.y13d{bottom:408.598500px;}
.yb2{bottom:410.323500px;}
.yb3{bottom:411.000000px;}
.yb4{bottom:413.473500px;}
.y5b{bottom:414.523500px;}
.y184{bottom:415.125000px;}
.y1b{bottom:424.273500px;}
.y13c{bottom:424.798500px;}
.yfb{bottom:424.875000px;}
.yac{bottom:429.375000px;}
.yad{bottom:429.750000px;}
.yae{bottom:430.798500px;}
.yaf{bottom:431.548500px;}
.yb0{bottom:432.598500px;}
.y5a{bottom:432.898500px;}
.y59{bottom:433.198500px;}
.yb1{bottom:433.648500px;}
.y183{bottom:433.875000px;}
.y1a{bottom:442.198500px;}
.y13b{bottom:442.798500px;}
.y13a{bottom:443.173500px;}
.yfa{bottom:443.250000px;}
.y19{bottom:443.323500px;}
.y139{bottom:443.923500px;}
.y138{bottom:444.973500px;}
.yab{bottom:448.798500px;}
.y181{bottom:452.173500px;}
.y182{bottom:452.250000px;}
.y58{bottom:453.823500px;}
.yf8{bottom:461.548500px;}
.y18{bottom:461.698500px;}
.yf9{bottom:461.923500px;}
.y137{bottom:462.223500px;}
.yaa{bottom:470.098500px;}
.y180{bottom:470.923500px;}
.y57{bottom:472.500000px;}
.y17{bottom:479.698500px;}
.y136{bottom:479.848500px;}
.yf7{bottom:480.298500px;}
.ya5{bottom:486.598500px;}
.ya6{bottom:488.398500px;}
.y17f{bottom:489.000000px;}
.ya7{bottom:489.073500px;}
.ya8{bottom:489.448500px;}
.ya9{bottom:490.500000px;}
.y56{bottom:490.875000px;}
.y135{bottom:497.473500px;}
.y16{bottom:497.698500px;}
.y134{bottom:497.848500px;}
.y133{bottom:498.223500px;}
.yf6{bottom:498.673500px;}
.y132{bottom:499.648500px;}
.y131{bottom:500.398500px;}
.ya2{bottom:504.898500px;}
.ya3{bottom:506.398500px;}
.y17e{bottom:507.673500px;}
.ya4{bottom:507.823500px;}
.y55{bottom:508.875000px;}
.y54{bottom:509.548500px;}
.y15{bottom:516.073500px;}
.yf5{bottom:517.048500px;}
.y14{bottom:517.125000px;}
.y130{bottom:520.198500px;}
.ya1{bottom:525.448500px;}
.y17d{bottom:526.348500px;}
.y53{bottom:527.923500px;}
.y52{bottom:528.598500px;}
.y13{bottom:534.750000px;}
.yf4{bottom:535.423500px;}
.y12f{bottom:536.398500px;}
.y12e{bottom:536.773500px;}
.y12d{bottom:537.073500px;}
.y12c{bottom:537.823500px;}
.y12b{bottom:538.573500px;}
.y12a{bottom:538.875000px;}
.ya0{bottom:543.823500px;}
.y17c{bottom:544.723500px;}
.y51{bottom:546.598500px;}
.y12{bottom:552.448500px;}
.y11{bottom:553.125000px;}
.y10{bottom:553.500000px;}
.yf3{bottom:553.723500px;}
.yf2{bottom:554.098500px;}
.y129{bottom:556.950000px;}
.y9f{bottom:562.575000px;}
.y50{bottom:564.973500px;}
.yf{bottom:571.798500px;}
.yf1{bottom:572.098500px;}
.yef{bottom:572.473500px;}
.yf0{bottom:572.848500px;}
.y128{bottom:574.575000px;}
.y179{bottom:574.950000px;}
.y17a{bottom:575.325000px;}
.y17b{bottom:575.700000px;}
.y9e{bottom:580.575000px;}
.y4f{bottom:582.598500px;}
.y4e{bottom:582.973500px;}
.y4d{bottom:583.048500px;}
.y4c{bottom:583.723500px;}
.ye{bottom:589.125000px;}
.yd{bottom:589.875000px;}
.yc{bottom:590.250000px;}
.yee{bottom:590.848500px;}
.y127{bottom:592.575000px;}
.y177{bottom:593.700000px;}
.y126{bottom:594.375000px;}
.y178{bottom:594.750000px;}
.y9d{bottom:599.625000px;}
.y4b{bottom:602.098500px;}
.yb{bottom:608.548500px;}
.y125{bottom:611.250000px;}
.y176{bottom:612.075000px;}
.y198{bottom:614.923500px;}
.y9a{bottom:615.450000px;}
.y9b{bottom:616.200000px;}
.y9c{bottom:617.625000px;}
.y4a{bottom:620.473500px;}
.yed{bottom:624.673500px;}
.ya{bottom:627.298500px;}
.y124{bottom:630.375000px;}
.y175{bottom:630.750000px;}
.y99{bottom:636.298500px;}
.y49{bottom:638.848500px;}
.y48{bottom:639.525000px;}
.yec{bottom:643.348500px;}
.y9{bottom:645.298500px;}
.y123{bottom:648.000000px;}
.y174{bottom:648.823500px;}
.y98{bottom:655.048500px;}
.y47{bottom:660.073500px;}
.yeb{bottom:662.098500px;}
.y8{bottom:663.673500px;}
.y122{bottom:666.000000px;}
.y121{bottom:667.423500px;}
.y173{bottom:667.500000px;}
.y96{bottom:673.423500px;}
.y97{bottom:675.973500px;}
.y46{bottom:678.073500px;}
.yea{bottom:680.098500px;}
.y7{bottom:682.048500px;}
.y120{bottom:684.375000px;}
.y172{bottom:685.875000px;}
.y95{bottom:691.423500px;}
.y45{bottom:696.750000px;}
.ye9{bottom:698.775000px;}
.y6{bottom:700.723500px;}
.y171{bottom:704.548500px;}
.y11f{bottom:704.848500px;}
.y11e{bottom:705.973500px;}
.y94{bottom:712.275000px;}
.y44{bottom:715.500000px;}
.ye8{bottom:717.525000px;}
.y5{bottom:719.400000px;}
.y11d{bottom:723.223500px;}
.y170{bottom:723.298500px;}
.y8e{bottom:728.173500px;}
.y8f{bottom:728.848500px;}
.y90{bottom:730.275000px;}
.y91{bottom:731.400000px;}
.y92{bottom:732.823500px;}
.y93{bottom:733.198500px;}
.y43{bottom:733.500000px;}
.y42{bottom:733.798500px;}
.y41{bottom:734.250000px;}
.ye6{bottom:735.525000px;}
.ye7{bottom:735.900000px;}
.y11c{bottom:741.598500px;}
.y16f{bottom:741.673500px;}
.y88{bottom:747.900000px;}
.y89{bottom:749.025000px;}
.y8a{bottom:749.400000px;}
.y8b{bottom:750.073500px;}
.y8c{bottom:751.198500px;}
.y8d{bottom:752.250000px;}
.y40{bottom:752.548500px;}
.y3f{bottom:752.923500px;}
.ye5{bottom:753.900000px;}
.ye4{bottom:754.275000px;}
.y3{bottom:760.125000px;}
.y2{bottom:760.198500px;}
.y11b{bottom:760.275000px;}
.y4{bottom:760.500000px;}
.y16e{bottom:760.723500px;}
.y87{bottom:767.775000px;}
.ye3{bottom:772.573500px;}
.y3e{bottom:773.098500px;}
.y3d{bottom:773.473500px;}
.y11a{bottom:779.025000px;}
.y16d{bottom:779.098500px;}
.y1{bottom:781.800000px;}
.y84{bottom:783.973500px;}
.y85{bottom:785.775000px;}
.y86{bottom:787.198500px;}
.ye0{bottom:790.948500px;}
.ye2{bottom:791.323500px;}
.y3c{bottom:791.473500px;}
.ye1{bottom:793.800000px;}
.y119{bottom:797.698500px;}
.y16c{bottom:797.848500px;}
.y7c{bottom:801.973500px;}
.y7d{bottom:802.723500px;}
.y7e{bottom:803.775000px;}
.y7f{bottom:804.900000px;}
.y80{bottom:805.573500px;}
.y81{bottom:805.948500px;}
.y82{bottom:807.000000px;}
.y83{bottom:807.750000px;}
.ydf{bottom:809.698500px;}
.y3b{bottom:809.848500px;}
.y3a{bottom:810.900000px;}
.y16b{bottom:816.150000px;}
.y118{bottom:816.448500px;}
.y7b{bottom:823.500000px;}
.yde{bottom:828.073500px;}
.y39{bottom:831.000000px;}
.y117{bottom:834.448500px;}
.y16a{bottom:834.900000px;}
.y116{bottom:835.198500px;}
.y7a{bottom:841.948500px;}
.ydd{bottom:846.448500px;}
.y38{bottom:848.698500px;}
.y37{bottom:849.750000px;}
.y36{bottom:849.823500px;}
.y115{bottom:853.500000px;}
.y169{bottom:853.650000px;}
.y78{bottom:857.698500px;}
.y79{bottom:861.000000px;}
.ydc{bottom:865.125000px;}
.y35{bottom:867.448500px;}
.y168{bottom:871.650000px;}
.y114{bottom:872.250000px;}
.y77{bottom:878.625000px;}
.ydb{bottom:884.925000px;}
.y34{bottom:885.073500px;}
.yda{bottom:885.300000px;}
.y33{bottom:886.125000px;}
.y32{bottom:886.500000px;}
.y113{bottom:891.000000px;}
.y112{bottom:891.750000px;}
.y73{bottom:895.875000px;}
.y74{bottom:897.375000px;}
.y75{bottom:898.425000px;}
.y76{bottom:899.848500px;}
.y31{bottom:903.823500px;}
.y30{bottom:904.500000px;}
.y2f{bottom:904.875000px;}
.y2e{bottom:905.175000px;}
.yd9{bottom:905.473500px;}
.y70{bottom:914.250000px;}
.y71{bottom:915.750000px;}
.y72{bottom:917.550000px;}
.y167{bottom:927.375000px;}
.y111{bottom:928.050000px;}
.y2d{bottom:941.550000px;}
.yd8{bottom:945.750000px;}
.y6f{bottom:953.473500px;}
.h5{height:41.220703px;}
.h15{height:43.804688px;}
.h8{height:47.109375px;}
.he{height:48.375000px;}
.h14{height:50.062500px;}
.h9{height:52.998047px;}
.hd{height:56.320312px;}
.h7{height:58.886719px;}
.hc{height:62.578125px;}
.h16{height:64.743164px;}
.h6{height:64.775391px;}
.hb{height:68.835938px;}
.h10{height:70.628906px;}
.h2{height:70.664062px;}
.h4{height:76.530000px;}
.h3{height:76.824000px;}
.h11{height:82.400391px;}
.h1{height:125.156250px;}
.h17{height:675.000000px;}
.h12{height:676.500000px;}
.h13{height:1008.000000px;}
.hf{height:1018.500000px;}
.h0{height:1021.500000px;}
.ha{height:1023.000000px;}
.w4{width:669.000000px;}
.w5{width:672.000000px;}
.w1{width:675.000000px;}
.w2{width:679.500000px;}
.w0{width:682.500000px;}
.w6{width:1008.000000px;}
.w3{width:1024.500000px;}
.x0{left:0.000000px;}
.x93{left:55.425000px;}
.x34{left:56.550000px;}
.x48{left:58.350000px;}
.x51{left:59.775000px;}
.x52{left:60.825000px;}
.x5d{left:61.950000px;}
.x64{left:63.375000px;}
.x65{left:64.425000px;}
.x33{left:66.225000px;}
.x1b{left:67.650000px;}
.xb{left:74.550000px;}
.xc{left:75.975000px;}
.x14{left:78.150000px;}
.x16{left:79.200000px;}
.x19{left:80.250000px;}
.x3b{left:85.350000px;}
.x3a{left:86.400000px;}
.x4d{left:87.825000px;}
.x50{left:89.250000px;}
.x57{left:90.750000px;}
.x60{left:92.175000px;}
.x21{left:93.225000px;}
.x66{left:94.650000px;}
.x23{left:98.250000px;}
.x7e{left:100.800000px;}
.x7a{left:102.975000px;}
.xa{left:104.400000px;}
.xd{left:105.448500px;}
.x1{left:107.250000px;}
.x15{left:108.375000px;}
.x18{left:110.550000px;}
.x75{left:111.600000px;}
.x4e{left:114.150000px;}
.x24{left:117.750000px;}
.x27{left:119.175000px;}
.x9a{left:120.225000px;}
.x9f{left:121.650000px;}
.x7f{left:124.200000px;}
.x80{left:128.550000px;}
.x84{left:131.775000px;}
.x12{left:133.575000px;}
.x8e{left:136.050000px;}
.x5e{left:137.175000px;}
.x3c{left:144.000000px;}
.x6d{left:146.550000px;}
.x76{left:149.775000px;}
.x71{left:151.200000px;}
.x30{left:154.425000px;}
.x29{left:156.600000px;}
.x2f{left:158.025000px;}
.x22{left:163.050000px;}
.x7d{left:167.775000px;}
.x81{left:171.000000px;}
.x58{left:176.400000px;}
.x89{left:178.575000px;}
.x8f{left:179.625000px;}
.x5c{left:181.425000px;}
.x7c{left:183.225000px;}
.x17{left:185.400000px;}
.x88{left:186.825000px;}
.x90{left:197.625000px;}
.x5f{left:198.750000px;}
.x59{left:200.175000px;}
.x35{left:212.773500px;}
.xa5{left:214.950000px;}
.x6c{left:216.000000px;}
.xa6{left:218.850000px;}
.x49{left:221.023500px;}
.x91{left:227.550000px;}
.x42{left:229.648500px;}
.x2{left:231.150000px;}
.x3{left:233.250000px;}
.x4{left:236.550000px;}
.x8a{left:237.600000px;}
.x4f{left:238.650000px;}
.x36{left:240.825000px;}
.x92{left:245.550000px;}
.x25{left:253.800000px;}
.x78{left:259.575000px;}
.x37{left:261.375000px;}
.x5{left:264.975000px;}
.x68{left:271.800000px;}
.x6{left:275.025000px;}
.x6f{left:279.000000px;}
.x26{left:281.175000px;}
.x7{left:283.650000px;}
.x10{left:285.450000px;}
.x43{left:286.950000px;}
.x53{left:289.050000px;}
.x1a{left:294.150000px;}
.x4a{left:295.575000px;}
.x3d{left:298.425000px;}
.x72{left:300.975000px;}
.x69{left:304.950000px;}
.x8{left:307.800000px;}
.x99{left:309.975000px;}
.x9e{left:311.775000px;}
.x44{left:315.375000px;}
.x11{left:316.425000px;}
.x38{left:320.025000px;}
.x8b{left:321.450000px;}
.x9{left:326.175000px;}
.xa2{left:335.175000px;}
.xa7{left:339.450000px;}
.x5a{left:344.850000px;}
.xe{left:346.350000px;}
.x1f{left:351.750000px;}
.x45{left:353.850000px;}
.x1c{left:361.800000px;}
.x28{left:365.400000px;}
.x3e{left:366.825000px;}
.x54{left:369.750000px;}
.x8c{left:372.225000px;}
.x85{left:378.375000px;}
.x79{left:380.550000px;}
.x82{left:383.400000px;}
.x1d{left:387.000000px;}
.xf{left:390.600000px;}
.x39{left:392.025000px;}
.x7b{left:395.625000px;}
.x55{left:397.048500px;}
.x86{left:400.350000px;}
.x87{left:402.150000px;}
.x3f{left:403.200000px;}
.x9c{left:408.225000px;}
.x20{left:410.025000px;}
.x46{left:417.975000px;}
.x13{left:420.150000px;}
.x94{left:421.575000px;}
.x95{left:440.625000px;}
.x97{left:442.423500px;}
.x98{left:445.350000px;}
.x2d{left:446.775000px;}
.x4b{left:450.000000px;}
.x56{left:459.375000px;}
.x2e{left:464.025000px;}
.x83{left:466.200000px;}
.x96{left:469.425000px;}
.x40{left:473.400000px;}
.x2a{left:478.800000px;}
.x1e{left:480.975000px;}
.x6a{left:489.975000px;}
.x77{left:491.775000px;}
.xa3{left:493.200000px;}
.x61{left:496.050000px;}
.x2b{left:502.575000px;}
.x9d{left:505.050000px;}
.x9b{left:506.850000px;}
.xa4{left:511.200000px;}
.x41{left:520.575000px;}
.x4c{left:524.175000px;}
.x67{left:525.600000px;}
.x8d{left:536.025000px;}
.x31{left:542.850000px;}
.x5b{left:543.975000px;}
.x73{left:550.425000px;}
.xa0{left:557.250000px;}
.x32{left:558.375000px;}
.x47{left:561.975000px;}
.x62{left:563.400000px;}
.x63{left:565.575000px;}
.x6e{left:570.975000px;}
.x2c{left:573.825000px;}
.x70{left:574.950000px;}
.x6b{left:579.600000px;}
.x74{left:591.450000px;}
.xa1{left:594.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.333333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:8.625208pt;}
.ws0{word-spacing:0.000000pt;}
._1{margin-left:-84.729402pt;}
._0{margin-left:-10.375664pt;}
.fs2{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y19a{bottom:38.398667pt;}
.y199{bottom:40.598667pt;}
.y10f{bottom:52.532000pt;}
.y110{bottom:54.465333pt;}
.y166{bottom:68.798667pt;}
.y6e{bottom:76.000000pt;}
.y10e{bottom:81.666667pt;}
.y2c{bottom:82.398667pt;}
.yd7{bottom:85.932000pt;}
.y165{bottom:88.333333pt;}
.y6d{bottom:92.000000pt;}
.y10d{bottom:97.932000pt;}
.y2b{bottom:99.333333pt;}
.y164{bottom:100.800000pt;}
.y163{bottom:101.800000pt;}
.y162{bottom:103.333333pt;}
.yd6{bottom:104.865333pt;}
.y6c{bottom:108.598667pt;}
.y10c{bottom:113.598667pt;}
.y10b{bottom:114.932000pt;}
.y2a{bottom:115.333333pt;}
.yd3{bottom:118.932000pt;}
.y161{bottom:119.000000pt;}
.yd4{bottom:119.598667pt;}
.yd5{bottom:121.466667pt;}
.y6b{bottom:124.932000pt;}
.y10a{bottom:130.932000pt;}
.y29{bottom:131.333333pt;}
.yd0{bottom:134.932000pt;}
.y160{bottom:135.333333pt;}
.yd1{bottom:135.865333pt;}
.y15f{bottom:137.598667pt;}
.yd2{bottom:137.800000pt;}
.y6a{bottom:141.265333pt;}
.y109{bottom:147.198667pt;}
.y15e{bottom:150.398667pt;}
.y15d{bottom:151.666667pt;}
.y15c{bottom:152.333333pt;}
.ycd{bottom:152.800000pt;}
.yce{bottom:154.466667pt;}
.ycf{bottom:155.065333pt;}
.y28{bottom:157.265333pt;}
.y69{bottom:157.598667pt;}
.y108{bottom:163.532000pt;}
.y15b{bottom:168.000000pt;}
.yc8{bottom:168.198667pt;}
.yc9{bottom:169.800000pt;}
.yca{bottom:170.732000pt;}
.ycb{bottom:171.466667pt;}
.ycc{bottom:172.000000pt;}
.y27{bottom:173.598667pt;}
.y68{bottom:173.932000pt;}
.y107{bottom:179.865333pt;}
.y15a{bottom:183.065333pt;}
.y159{bottom:183.333333pt;}
.y158{bottom:183.666667pt;}
.y157{bottom:184.932000pt;}
.yc6{bottom:186.466667pt;}
.yc7{bottom:188.065333pt;}
.y196{bottom:194.932000pt;}
.y197{bottom:195.265333pt;}
.y106{bottom:196.198667pt;}
.y26{bottom:198.265333pt;}
.y67{bottom:200.133333pt;}
.y156{bottom:200.598667pt;}
.yc5{bottom:202.133333pt;}
.y105{bottom:212.532000pt;}
.y25{bottom:213.598667pt;}
.y155{bottom:216.333333pt;}
.y154{bottom:217.598667pt;}
.y66{bottom:217.732000pt;}
.y153{bottom:217.932000pt;}
.y152{bottom:218.865333pt;}
.yc4{bottom:219.398667pt;}
.y195{bottom:221.133333pt;}
.y104{bottom:230.398667pt;}
.y24{bottom:230.532000pt;}
.yc1{bottom:233.198667pt;}
.y151{bottom:233.265333pt;}
.yc2{bottom:233.465333pt;}
.y65{bottom:235.333333pt;}
.yc3{bottom:235.732000pt;}
.y191{bottom:238.132000pt;}
.y193{bottom:238.465333pt;}
.y192{bottom:238.732000pt;}
.y194{bottom:239.398667pt;}
.y103{bottom:246.732000pt;}
.y23{bottom:247.198667pt;}
.y150{bottom:249.598667pt;}
.y64{bottom:252.000000pt;}
.ybf{bottom:252.065333pt;}
.yc0{bottom:254.333333pt;}
.y18f{bottom:254.798667pt;}
.y190{bottom:255.065333pt;}
.y102{bottom:263.065333pt;}
.y22{bottom:263.198667pt;}
.y14f{bottom:265.598667pt;}
.ybe{bottom:266.732000pt;}
.y14e{bottom:266.932000pt;}
.y14d{bottom:267.465333pt;}
.y62{bottom:268.598667pt;}
.y63{bottom:269.265333pt;}
.y18d{bottom:270.798667pt;}
.y18e{bottom:271.132000pt;}
.y101{bottom:279.732000pt;}
.y21{bottom:280.132000pt;}
.y14c{bottom:282.198667pt;}
.y60{bottom:284.598667pt;}
.y61{bottom:284.932000pt;}
.ybd{bottom:285.000000pt;}
.y18c{bottom:287.398667pt;}
.y20{bottom:295.532000pt;}
.y100{bottom:296.000000pt;}
.y14b{bottom:296.932000pt;}
.y14a{bottom:297.598667pt;}
.y149{bottom:299.198667pt;}
.ybb{bottom:301.000000pt;}
.y5f{bottom:301.265333pt;}
.ybc{bottom:303.198667pt;}
.y18a{bottom:303.398667pt;}
.y18b{bottom:303.732000pt;}
.yff{bottom:312.065333pt;}
.y1f{bottom:312.132000pt;}
.y148{bottom:313.598667pt;}
.y147{bottom:314.865333pt;}
.y146{bottom:315.465333pt;}
.y145{bottom:315.798667pt;}
.yb9{bottom:317.333333pt;}
.y5e{bottom:317.598667pt;}
.yba{bottom:319.532000pt;}
.y189{bottom:320.000000pt;}
.yfe{bottom:328.398667pt;}
.y1e{bottom:328.465333pt;}
.y5d{bottom:334.198667pt;}
.yb8{bottom:334.265333pt;}
.y187{bottom:336.333333pt;}
.y188{bottom:336.398667pt;}
.y144{bottom:344.932000pt;}
.yfd{bottom:345.000000pt;}
.y1d{bottom:345.065333pt;}
.y143{bottom:345.865333pt;}
.y142{bottom:346.532000pt;}
.yb5{bottom:348.666667pt;}
.yb6{bottom:349.333333pt;}
.yb7{bottom:350.932000pt;}
.y5c{bottom:352.132000pt;}
.y185{bottom:352.666667pt;}
.y186{bottom:353.333333pt;}
.y141{bottom:360.666667pt;}
.y140{bottom:360.932000pt;}
.y1c{bottom:361.065333pt;}
.yfc{bottom:361.333333pt;}
.y13f{bottom:361.598667pt;}
.y13e{bottom:362.865333pt;}
.y13d{bottom:363.198667pt;}
.yb2{bottom:364.732000pt;}
.yb3{bottom:365.333333pt;}
.yb4{bottom:367.532000pt;}
.y5b{bottom:368.465333pt;}
.y184{bottom:369.000000pt;}
.y1b{bottom:377.132000pt;}
.y13c{bottom:377.598667pt;}
.yfb{bottom:377.666667pt;}
.yac{bottom:381.666667pt;}
.yad{bottom:382.000000pt;}
.yae{bottom:382.932000pt;}
.yaf{bottom:383.598667pt;}
.yb0{bottom:384.532000pt;}
.y5a{bottom:384.798667pt;}
.y59{bottom:385.065333pt;}
.yb1{bottom:385.465333pt;}
.y183{bottom:385.666667pt;}
.y1a{bottom:393.065333pt;}
.y13b{bottom:393.598667pt;}
.y13a{bottom:393.932000pt;}
.yfa{bottom:394.000000pt;}
.y19{bottom:394.065333pt;}
.y139{bottom:394.598667pt;}
.y138{bottom:395.532000pt;}
.yab{bottom:398.932000pt;}
.y181{bottom:401.932000pt;}
.y182{bottom:402.000000pt;}
.y58{bottom:403.398667pt;}
.yf8{bottom:410.265333pt;}
.y18{bottom:410.398667pt;}
.yf9{bottom:410.598667pt;}
.y137{bottom:410.865333pt;}
.yaa{bottom:417.865333pt;}
.y180{bottom:418.598667pt;}
.y57{bottom:420.000000pt;}
.y17{bottom:426.398667pt;}
.y136{bottom:426.532000pt;}
.yf7{bottom:426.932000pt;}
.ya5{bottom:432.532000pt;}
.ya6{bottom:434.132000pt;}
.y17f{bottom:434.666667pt;}
.ya7{bottom:434.732000pt;}
.ya8{bottom:435.065333pt;}
.ya9{bottom:436.000000pt;}
.y56{bottom:436.333333pt;}
.y135{bottom:442.198667pt;}
.y16{bottom:442.398667pt;}
.y134{bottom:442.532000pt;}
.y133{bottom:442.865333pt;}
.yf6{bottom:443.265333pt;}
.y132{bottom:444.132000pt;}
.y131{bottom:444.798667pt;}
.ya2{bottom:448.798667pt;}
.ya3{bottom:450.132000pt;}
.y17e{bottom:451.265333pt;}
.ya4{bottom:451.398667pt;}
.y55{bottom:452.333333pt;}
.y54{bottom:452.932000pt;}
.y15{bottom:458.732000pt;}
.yf5{bottom:459.598667pt;}
.y14{bottom:459.666667pt;}
.y130{bottom:462.398667pt;}
.ya1{bottom:467.065333pt;}
.y17d{bottom:467.865333pt;}
.y53{bottom:469.265333pt;}
.y52{bottom:469.865333pt;}
.y13{bottom:475.333333pt;}
.yf4{bottom:475.932000pt;}
.y12f{bottom:476.798667pt;}
.y12e{bottom:477.132000pt;}
.y12d{bottom:477.398667pt;}
.y12c{bottom:478.065333pt;}
.y12b{bottom:478.732000pt;}
.y12a{bottom:479.000000pt;}
.ya0{bottom:483.398667pt;}
.y17c{bottom:484.198667pt;}
.y51{bottom:485.865333pt;}
.y12{bottom:491.065333pt;}
.y11{bottom:491.666667pt;}
.y10{bottom:492.000000pt;}
.yf3{bottom:492.198667pt;}
.yf2{bottom:492.532000pt;}
.y129{bottom:495.066667pt;}
.y9f{bottom:500.066667pt;}
.y50{bottom:502.198667pt;}
.yf{bottom:508.265333pt;}
.yf1{bottom:508.532000pt;}
.yef{bottom:508.865333pt;}
.yf0{bottom:509.198667pt;}
.y128{bottom:510.733333pt;}
.y179{bottom:511.066667pt;}
.y17a{bottom:511.400000pt;}
.y17b{bottom:511.733333pt;}
.y9e{bottom:516.066667pt;}
.y4f{bottom:517.865333pt;}
.y4e{bottom:518.198667pt;}
.y4d{bottom:518.265333pt;}
.y4c{bottom:518.865333pt;}
.ye{bottom:523.666667pt;}
.yd{bottom:524.333333pt;}
.yc{bottom:524.666667pt;}
.yee{bottom:525.198667pt;}
.y127{bottom:526.733333pt;}
.y177{bottom:527.733333pt;}
.y126{bottom:528.333333pt;}
.y178{bottom:528.666667pt;}
.y9d{bottom:533.000000pt;}
.y4b{bottom:535.198667pt;}
.yb{bottom:540.932000pt;}
.y125{bottom:543.333333pt;}
.y176{bottom:544.066667pt;}
.y198{bottom:546.598667pt;}
.y9a{bottom:547.066667pt;}
.y9b{bottom:547.733333pt;}
.y9c{bottom:549.000000pt;}
.y4a{bottom:551.532000pt;}
.yed{bottom:555.265333pt;}
.ya{bottom:557.598667pt;}
.y124{bottom:560.333333pt;}
.y175{bottom:560.666667pt;}
.y99{bottom:565.598667pt;}
.y49{bottom:567.865333pt;}
.y48{bottom:568.466667pt;}
.yec{bottom:571.865333pt;}
.y9{bottom:573.598667pt;}
.y123{bottom:576.000000pt;}
.y174{bottom:576.732000pt;}
.y98{bottom:582.265333pt;}
.y47{bottom:586.732000pt;}
.yeb{bottom:588.532000pt;}
.y8{bottom:589.932000pt;}
.y122{bottom:592.000000pt;}
.y121{bottom:593.265333pt;}
.y173{bottom:593.333333pt;}
.y96{bottom:598.598667pt;}
.y97{bottom:600.865333pt;}
.y46{bottom:602.732000pt;}
.yea{bottom:604.532000pt;}
.y7{bottom:606.265333pt;}
.y120{bottom:608.333333pt;}
.y172{bottom:609.666667pt;}
.y95{bottom:614.598667pt;}
.y45{bottom:619.333333pt;}
.ye9{bottom:621.133333pt;}
.y6{bottom:622.865333pt;}
.y171{bottom:626.265333pt;}
.y11f{bottom:626.532000pt;}
.y11e{bottom:627.532000pt;}
.y94{bottom:633.133333pt;}
.y44{bottom:636.000000pt;}
.ye8{bottom:637.800000pt;}
.y5{bottom:639.466667pt;}
.y11d{bottom:642.865333pt;}
.y170{bottom:642.932000pt;}
.y8e{bottom:647.265333pt;}
.y8f{bottom:647.865333pt;}
.y90{bottom:649.133333pt;}
.y91{bottom:650.133333pt;}
.y92{bottom:651.398667pt;}
.y93{bottom:651.732000pt;}
.y43{bottom:652.000000pt;}
.y42{bottom:652.265333pt;}
.y41{bottom:652.666667pt;}
.ye6{bottom:653.800000pt;}
.ye7{bottom:654.133333pt;}
.y11c{bottom:659.198667pt;}
.y16f{bottom:659.265333pt;}
.y88{bottom:664.800000pt;}
.y89{bottom:665.800000pt;}
.y8a{bottom:666.133333pt;}
.y8b{bottom:666.732000pt;}
.y8c{bottom:667.732000pt;}
.y8d{bottom:668.666667pt;}
.y40{bottom:668.932000pt;}
.y3f{bottom:669.265333pt;}
.ye5{bottom:670.133333pt;}
.ye4{bottom:670.466667pt;}
.y3{bottom:675.666667pt;}
.y2{bottom:675.732000pt;}
.y11b{bottom:675.800000pt;}
.y4{bottom:676.000000pt;}
.y16e{bottom:676.198667pt;}
.y87{bottom:682.466667pt;}
.ye3{bottom:686.732000pt;}
.y3e{bottom:687.198667pt;}
.y3d{bottom:687.532000pt;}
.y11a{bottom:692.466667pt;}
.y16d{bottom:692.532000pt;}
.y1{bottom:694.933333pt;}
.y84{bottom:696.865333pt;}
.y85{bottom:698.466667pt;}
.y86{bottom:699.732000pt;}
.ye0{bottom:703.065333pt;}
.ye2{bottom:703.398667pt;}
.y3c{bottom:703.532000pt;}
.ye1{bottom:705.600000pt;}
.y119{bottom:709.065333pt;}
.y16c{bottom:709.198667pt;}
.y7c{bottom:712.865333pt;}
.y7d{bottom:713.532000pt;}
.y7e{bottom:714.466667pt;}
.y7f{bottom:715.466667pt;}
.y80{bottom:716.065333pt;}
.y81{bottom:716.398667pt;}
.y82{bottom:717.333333pt;}
.y83{bottom:718.000000pt;}
.ydf{bottom:719.732000pt;}
.y3b{bottom:719.865333pt;}
.y3a{bottom:720.800000pt;}
.y16b{bottom:725.466667pt;}
.y118{bottom:725.732000pt;}
.y7b{bottom:732.000000pt;}
.yde{bottom:736.065333pt;}
.y39{bottom:738.666667pt;}
.y117{bottom:741.732000pt;}
.y16a{bottom:742.133333pt;}
.y116{bottom:742.398667pt;}
.y7a{bottom:748.398667pt;}
.ydd{bottom:752.398667pt;}
.y38{bottom:754.398667pt;}
.y37{bottom:755.333333pt;}
.y36{bottom:755.398667pt;}
.y115{bottom:758.666667pt;}
.y169{bottom:758.800000pt;}
.y78{bottom:762.398667pt;}
.y79{bottom:765.333333pt;}
.ydc{bottom:769.000000pt;}
.y35{bottom:771.065333pt;}
.y168{bottom:774.800000pt;}
.y114{bottom:775.333333pt;}
.y77{bottom:781.000000pt;}
.ydb{bottom:786.600000pt;}
.y34{bottom:786.732000pt;}
.yda{bottom:786.933333pt;}
.y33{bottom:787.666667pt;}
.y32{bottom:788.000000pt;}
.y113{bottom:792.000000pt;}
.y112{bottom:792.666667pt;}
.y73{bottom:796.333333pt;}
.y74{bottom:797.666667pt;}
.y75{bottom:798.600000pt;}
.y76{bottom:799.865333pt;}
.y31{bottom:803.398667pt;}
.y30{bottom:804.000000pt;}
.y2f{bottom:804.333333pt;}
.y2e{bottom:804.600000pt;}
.yd9{bottom:804.865333pt;}
.y70{bottom:812.666667pt;}
.y71{bottom:814.000000pt;}
.y72{bottom:815.600000pt;}
.y167{bottom:824.333333pt;}
.y111{bottom:824.933333pt;}
.y2d{bottom:836.933333pt;}
.yd8{bottom:840.666667pt;}
.y6f{bottom:847.532000pt;}
.h5{height:36.640625pt;}
.h15{height:38.937500pt;}
.h8{height:41.875000pt;}
.he{height:43.000000pt;}
.h14{height:44.500000pt;}
.h9{height:47.109375pt;}
.hd{height:50.062500pt;}
.h7{height:52.343750pt;}
.hc{height:55.625000pt;}
.h16{height:57.549479pt;}
.h6{height:57.578125pt;}
.hb{height:61.187500pt;}
.h10{height:62.781250pt;}
.h2{height:62.812500pt;}
.h4{height:68.026667pt;}
.h3{height:68.288000pt;}
.h11{height:73.244792pt;}
.h1{height:111.250000pt;}
.h17{height:600.000000pt;}
.h12{height:601.333333pt;}
.h13{height:896.000000pt;}
.hf{height:905.333333pt;}
.h0{height:908.000000pt;}
.ha{height:909.333333pt;}
.w4{width:594.666667pt;}
.w5{width:597.333333pt;}
.w1{width:600.000000pt;}
.w2{width:604.000000pt;}
.w0{width:606.666667pt;}
.w6{width:896.000000pt;}
.w3{width:910.666667pt;}
.x0{left:0.000000pt;}
.x93{left:49.266667pt;}
.x34{left:50.266667pt;}
.x48{left:51.866667pt;}
.x51{left:53.133333pt;}
.x52{left:54.066667pt;}
.x5d{left:55.066667pt;}
.x64{left:56.333333pt;}
.x65{left:57.266667pt;}
.x33{left:58.866667pt;}
.x1b{left:60.133333pt;}
.xb{left:66.266667pt;}
.xc{left:67.533333pt;}
.x14{left:69.466667pt;}
.x16{left:70.400000pt;}
.x19{left:71.333333pt;}
.x3b{left:75.866667pt;}
.x3a{left:76.800000pt;}
.x4d{left:78.066667pt;}
.x50{left:79.333333pt;}
.x57{left:80.666667pt;}
.x60{left:81.933333pt;}
.x21{left:82.866667pt;}
.x66{left:84.133333pt;}
.x23{left:87.333333pt;}
.x7e{left:89.600000pt;}
.x7a{left:91.533333pt;}
.xa{left:92.800000pt;}
.xd{left:93.732000pt;}
.x1{left:95.333333pt;}
.x15{left:96.333333pt;}
.x18{left:98.266667pt;}
.x75{left:99.200000pt;}
.x4e{left:101.466667pt;}
.x24{left:104.666667pt;}
.x27{left:105.933333pt;}
.x9a{left:106.866667pt;}
.x9f{left:108.133333pt;}
.x7f{left:110.400000pt;}
.x80{left:114.266667pt;}
.x84{left:117.133333pt;}
.x12{left:118.733333pt;}
.x8e{left:120.933333pt;}
.x5e{left:121.933333pt;}
.x3c{left:128.000000pt;}
.x6d{left:130.266667pt;}
.x76{left:133.133333pt;}
.x71{left:134.400000pt;}
.x30{left:137.266667pt;}
.x29{left:139.200000pt;}
.x2f{left:140.466667pt;}
.x22{left:144.933333pt;}
.x7d{left:149.133333pt;}
.x81{left:152.000000pt;}
.x58{left:156.800000pt;}
.x89{left:158.733333pt;}
.x8f{left:159.666667pt;}
.x5c{left:161.266667pt;}
.x7c{left:162.866667pt;}
.x17{left:164.800000pt;}
.x88{left:166.066667pt;}
.x90{left:175.666667pt;}
.x5f{left:176.666667pt;}
.x59{left:177.933333pt;}
.x35{left:189.132000pt;}
.xa5{left:191.066667pt;}
.x6c{left:192.000000pt;}
.xa6{left:194.533333pt;}
.x49{left:196.465333pt;}
.x91{left:202.266667pt;}
.x42{left:204.132000pt;}
.x2{left:205.466667pt;}
.x3{left:207.333333pt;}
.x4{left:210.266667pt;}
.x8a{left:211.200000pt;}
.x4f{left:212.133333pt;}
.x36{left:214.066667pt;}
.x92{left:218.266667pt;}
.x25{left:225.600000pt;}
.x78{left:230.733333pt;}
.x37{left:232.333333pt;}
.x5{left:235.533333pt;}
.x68{left:241.600000pt;}
.x6{left:244.466667pt;}
.x6f{left:248.000000pt;}
.x26{left:249.933333pt;}
.x7{left:252.133333pt;}
.x10{left:253.733333pt;}
.x43{left:255.066667pt;}
.x53{left:256.933333pt;}
.x1a{left:261.466667pt;}
.x4a{left:262.733333pt;}
.x3d{left:265.266667pt;}
.x72{left:267.533333pt;}
.x69{left:271.066667pt;}
.x8{left:273.600000pt;}
.x99{left:275.533333pt;}
.x9e{left:277.133333pt;}
.x44{left:280.333333pt;}
.x11{left:281.266667pt;}
.x38{left:284.466667pt;}
.x8b{left:285.733333pt;}
.x9{left:289.933333pt;}
.xa2{left:297.933333pt;}
.xa7{left:301.733333pt;}
.x5a{left:306.533333pt;}
.xe{left:307.866667pt;}
.x1f{left:312.666667pt;}
.x45{left:314.533333pt;}
.x1c{left:321.600000pt;}
.x28{left:324.800000pt;}
.x3e{left:326.066667pt;}
.x54{left:328.666667pt;}
.x8c{left:330.866667pt;}
.x85{left:336.333333pt;}
.x79{left:338.266667pt;}
.x82{left:340.800000pt;}
.x1d{left:344.000000pt;}
.xf{left:347.200000pt;}
.x39{left:348.466667pt;}
.x7b{left:351.666667pt;}
.x55{left:352.932000pt;}
.x86{left:355.866667pt;}
.x87{left:357.466667pt;}
.x3f{left:358.400000pt;}
.x9c{left:362.866667pt;}
.x20{left:364.466667pt;}
.x46{left:371.533333pt;}
.x13{left:373.466667pt;}
.x94{left:374.733333pt;}
.x95{left:391.666667pt;}
.x97{left:393.265333pt;}
.x98{left:395.866667pt;}
.x2d{left:397.133333pt;}
.x4b{left:400.000000pt;}
.x56{left:408.333333pt;}
.x2e{left:412.466667pt;}
.x83{left:414.400000pt;}
.x96{left:417.266667pt;}
.x40{left:420.800000pt;}
.x2a{left:425.600000pt;}
.x1e{left:427.533333pt;}
.x6a{left:435.533333pt;}
.x77{left:437.133333pt;}
.xa3{left:438.400000pt;}
.x61{left:440.933333pt;}
.x2b{left:446.733333pt;}
.x9d{left:448.933333pt;}
.x9b{left:450.533333pt;}
.xa4{left:454.400000pt;}
.x41{left:462.733333pt;}
.x4c{left:465.933333pt;}
.x67{left:467.200000pt;}
.x8d{left:476.466667pt;}
.x31{left:482.533333pt;}
.x5b{left:483.533333pt;}
.x73{left:489.266667pt;}
.xa0{left:495.333333pt;}
.x32{left:496.333333pt;}
.x47{left:499.533333pt;}
.x62{left:500.800000pt;}
.x63{left:502.733333pt;}
.x6e{left:507.533333pt;}
.x2c{left:510.066667pt;}
.x70{left:511.066667pt;}
.x6b{left:515.200000pt;}
.x74{left:525.733333pt;}
.xa1{left:528.333333pt;}
}




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