
    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_38cfaf24f99428f17dc4e6b3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.918000;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_7db7b252728cb3f0e5cf17a0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_57a74a86e90a3cf9e32de803.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_80139c6b8772487f05bfd2ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.001000;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_60630186fe590fa2833d6679.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.159000;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_eca68efe239d99557f2c0c61.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bbd6e528897dff9af52fda41.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.156000;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_b77c2a6eafa3916a39a5baa7.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_ef0017aa0ea72f6a7921b45e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a43b16413f9d3f80bcc4bbf0.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_9a5e6f04615e1e1b740e92a6.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_641bff2de42326df7eac6f3d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_40e801d4ab617f0976de4ef5.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.159000;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_de45b592bbb529daea5f525d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.159000;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_2c4a469bef1523b332842bc5.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fadd67b88f5ebfdd30de4416.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.918000;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_ba2128bea732e1995b6be5d7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.159000;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_7c2d842827daccf9ed84b1b8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.156000;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_f815a4d3221b2dd49edce51a.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.159000;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;}
.me{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245009,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246515,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m3{transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247518,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247769,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m2a{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m10{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254517,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254768,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m1{transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255019,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.700140px;}
.ls3{letter-spacing:-1.506288px;}
.ls1{letter-spacing:-0.000191px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.010904px;}
.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;}
}
.ws3d{word-spacing:-34.370970px;}
.ws62{word-spacing:-30.551309px;}
.ws7{word-spacing:-29.889000px;}
.ws5b{word-spacing:-29.887800px;}
.ws46{word-spacing:-26.234381px;}
.ws0{word-spacing:-26.234052px;}
.wsa{word-spacing:-26.139476px;}
.wsad{word-spacing:-15.183002px;}
.ws9f{word-spacing:-14.645022px;}
.ws63{word-spacing:-14.405920px;}
.ws34{word-spacing:-14.346144px;}
.ws54{word-spacing:-14.107042px;}
.wsf{word-spacing:-14.090051px;}
.ws2{word-spacing:-14.085619px;}
.ws5e{word-spacing:-13.987490px;}
.ws3c{word-spacing:-13.927715px;}
.ws61{word-spacing:-13.801593px;}
.ws5f{word-spacing:-13.748388px;}
.ws35{word-spacing:-13.389734px;}
.ws74{word-spacing:-13.329959px;}
.ws6e{word-spacing:-13.210408px;}
.wsae{word-spacing:-13.150632px;}
.ws14{word-spacing:-13.068483px;}
.ws70{word-spacing:-13.031081px;}
.ws97{word-spacing:-12.971305px;}
.ws48{word-spacing:-12.911530px;}
.ws60{word-spacing:-12.858018px;}
.ws56{word-spacing:-12.851754px;}
.ws2d{word-spacing:-12.567283px;}
.ws58{word-spacing:-12.433325px;}
.ws73{word-spacing:-12.253998px;}
.ws65{word-spacing:-12.134447px;}
.ws6a{word-spacing:-12.074671px;}
.ws52{word-spacing:-11.955120px;}
.ws96{word-spacing:-11.901322px;}
.wsa4{word-spacing:-11.895344px;}
.ws81{word-spacing:-11.835569px;}
.ws90{word-spacing:-11.775793px;}
.ws4b{word-spacing:-11.596466px;}
.ws78{word-spacing:-11.536691px;}
.ws7c{word-spacing:-11.417140px;}
.wsb{word-spacing:-11.403599px;}
.ws94{word-spacing:-11.357364px;}
.ws79{word-spacing:-11.214117px;}
.ws7b{word-spacing:-11.178037px;}
.wsa5{word-spacing:-11.058486px;}
.ws15{word-spacing:-10.806028px;}
.ws3{word-spacing:-10.760250px;}
.ws77{word-spacing:-10.759608px;}
.ws91{word-spacing:-10.699832px;}
.wsb1{word-spacing:-10.640057px;}
.ws93{word-spacing:-10.406932px;}
.ws4c{word-spacing:-10.400954px;}
.ws6f{word-spacing:-10.341179px;}
.ws7a{word-spacing:-10.287381px;}
.ws30{word-spacing:-10.281403px;}
.ws59{word-spacing:-10.221628px;}
.ws3b{word-spacing:-10.161852px;}
.ws4a{word-spacing:-10.102076px;}
.ws31{word-spacing:-10.042301px;}
.ws4{word-spacing:-9.991672px;}
.ws6{word-spacing:-9.991112px;}
.ws33{word-spacing:-9.982525px;}
.wsb2{word-spacing:-9.928727px;}
.ws41{word-spacing:-9.922750px;}
.ws4f{word-spacing:-9.862974px;}
.wsd{word-spacing:-9.841126px;}
.wse{word-spacing:-9.838617px;}
.wsc{word-spacing:-9.838156px;}
.ws39{word-spacing:-9.803198px;}
.ws3a{word-spacing:-9.743423px;}
.ws5a{word-spacing:-9.683647px;}
.ws98{word-spacing:-9.634770px;}
.ws72{word-spacing:-9.623872px;}
.ws1e{word-spacing:-9.574802px;}
.ws32{word-spacing:-9.564096px;}
.ws16{word-spacing:-9.525753px;}
.ws83{word-spacing:-9.504320px;}
.ws3e{word-spacing:-9.444545px;}
.ws84{word-spacing:-9.384769px;}
.ws43{word-spacing:-9.355542px;}
.ws4e{word-spacing:-9.324994px;}
.ws12{word-spacing:-9.249473px;}
.ws2a{word-spacing:-9.247945px;}
.ws17{word-spacing:-9.247073px;}
.ws11{word-spacing:-9.246225px;}
.ws19{word-spacing:-9.243431px;}
.ws13{word-spacing:-9.240241px;}
.ws24{word-spacing:-9.239664px;}
.ws5{word-spacing:-9.216952px;}
.ws8c{word-spacing:-9.211420px;}
.ws5c{word-spacing:-9.205442px;}
.ws2c{word-spacing:-9.194147px;}
.wsbb{word-spacing:-9.151644px;}
.ws71{word-spacing:-9.145667px;}
.ws29{word-spacing:-9.140348px;}
.ws95{word-spacing:-9.091869px;}
.ws10{word-spacing:-9.089733px;}
.ws64{word-spacing:-9.085891px;}
.ws1c{word-spacing:-9.035438px;}
.ws1a{word-spacing:-9.034966px;}
.ws28{word-spacing:-9.032751px;}
.wsbf{word-spacing:-8.912542px;}
.ws50{word-spacing:-8.906564px;}
.ws1b{word-spacing:-8.873815px;}
.ws9b{word-spacing:-8.846789px;}
.ws9{word-spacing:-8.825548px;}
.ws21{word-spacing:-8.825141px;}
.ws99{word-spacing:-8.792991px;}
.ws9a{word-spacing:-8.787013px;}
.ws85{word-spacing:-8.733215px;}
.ws6b{word-spacing:-8.727238px;}
.ws1f{word-spacing:-8.711391px;}
.wsaf{word-spacing:-8.673440px;}
.ws67{word-spacing:-8.607686px;}
.ws92{word-spacing:-8.488135px;}
.ws1{word-spacing:-8.480448px;}
.ws27{word-spacing:-8.478592px;}
.ws25{word-spacing:-8.477376px;}
.ws86{word-spacing:-8.434337px;}
.ws44{word-spacing:-8.387171px;}
.wsbc{word-spacing:-8.069706px;}
.ws68{word-spacing:-8.009930px;}
.ws1d{word-spacing:-7.960662px;}
.ws75{word-spacing:-7.950155px;}
.wsbd{word-spacing:-7.896357px;}
.ws42{word-spacing:-7.890379px;}
.ws47{word-spacing:-7.871271px;}
.ws82{word-spacing:-7.770828px;}
.ws5d{word-spacing:-7.712059px;}
.ws36{word-spacing:-7.651277px;}
.ws3f{word-spacing:-7.531726px;}
.wsaa{word-spacing:-7.471950px;}
.ws2f{word-spacing:-7.352399px;}
.ws6d{word-spacing:-7.292623px;}
.ws2b{word-spacing:-7.273050px;}
.ws18{word-spacing:-7.244183px;}
.wsab{word-spacing:-7.113296px;}
.wsa3{word-spacing:-7.053521px;}
.ws20{word-spacing:-7.051523px;}
.wsa2{word-spacing:-6.993745px;}
.ws51{word-spacing:-6.874194px;}
.ws55{word-spacing:-6.814418px;}
.ws45{word-spacing:-6.665622px;}
.ws6c{word-spacing:-6.515540px;}
.wsac{word-spacing:-6.395989px;}
.wsa0{word-spacing:-6.216662px;}
.ws8f{word-spacing:-6.097111px;}
.ws2e{word-spacing:-5.917784px;}
.ws76{word-spacing:-5.858009px;}
.ws53{word-spacing:-5.798233px;}
.ws23{word-spacing:-5.651522px;}
.ws80{word-spacing:-5.499355px;}
.ws49{word-spacing:-5.439580px;}
.ws7f{word-spacing:-5.086904px;}
.ws9d{word-spacing:-5.021150px;}
.ws9c{word-spacing:-4.901599px;}
.wsb4{word-spacing:-4.847801px;}
.wsa6{word-spacing:-4.423394px;}
.ws88{word-spacing:-4.303843px;}
.ws89{word-spacing:-4.010943px;}
.ws87{word-spacing:-4.004965px;}
.ws4d{word-spacing:-3.945190px;}
.wsc3{word-spacing:-3.885414px;}
.wsc1{word-spacing:-3.825638px;}
.wsa9{word-spacing:-3.765863px;}
.wsc2{word-spacing:-3.592514px;}
.wsa1{word-spacing:-3.407209px;}
.wsb3{word-spacing:-3.347434px;}
.ws22{word-spacing:-3.287593px;}
.wsc0{word-spacing:-3.048556px;}
.wsb9{word-spacing:-2.929004px;}
.wsa7{word-spacing:-2.869229px;}
.wsba{word-spacing:-2.755655px;}
.ws8a{word-spacing:-2.689902px;}
.wsb6{word-spacing:-2.576328px;}
.wsb0{word-spacing:-2.570351px;}
.ws8b{word-spacing:-2.516553px;}
.ws69{word-spacing:-2.510575px;}
.ws8e{word-spacing:-2.151922px;}
.ws66{word-spacing:-2.092146px;}
.ws38{word-spacing:-1.793268px;}
.ws57{word-spacing:-1.613941px;}
.ws8{word-spacing:-1.239971px;}
.ws40{word-spacing:-1.075961px;}
.wsb5{word-spacing:-0.836858px;}
.wsa8{word-spacing:-0.239102px;}
.wsbe{word-spacing:-0.179327px;}
.ws26{word-spacing:0.000000px;}
.ws7d{word-spacing:0.537980px;}
.ws8d{word-spacing:0.777083px;}
.ws37{word-spacing:3.466985px;}
.wsc5{word-spacing:4.118539px;}
.wsb7{word-spacing:4.417417px;}
.ws7e{word-spacing:4.602721px;}
.wsb8{word-spacing:4.841824px;}
.ws9e{word-spacing:6.336214px;}
.wsc4{word-spacing:8.308808px;}
._1c{margin-left:-8.525668px;}
._3{margin-left:-6.967385px;}
._5{margin-left:-5.042760px;}
._0{margin-left:-3.921240px;}
._7{margin-left:-2.749241px;}
._1{margin-left:-1.397082px;}
._12{width:1.023382px;}
._2{width:2.324052px;}
._f{width:15.481880px;}
._19{width:16.796944px;}
._17{width:18.648281px;}
._14{width:20.280785px;}
._a{width:22.345658px;}
._15{width:23.861544px;}
._9{width:25.021260px;}
._b{width:26.450510px;}
._8{width:27.700478px;}
._20{width:29.132088px;}
._10{width:30.246454px;}
._13{width:31.262639px;}
._6{width:32.618001px;}
._e{width:33.989677px;}
._18{width:36.335472px;}
._4{width:37.448141px;}
._1d{width:39.244699px;}
._21{width:41.207632px;}
._1b{width:42.641612px;}
._1f{width:45.554061px;}
._22{width:48.619806px;}
._11{width:51.885221px;}
._23{width:70.184270px;}
._1e{width:71.295496px;}
._d{width:75.272790px;}
._1a{width:100.341902px;}
._16{width:357.544010px;}
._c{width:774.072052px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs4{font-size:35.868000px;}
.fs0{font-size:47.820000px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:53.796000px;}
.fs7{font-size:53.798400px;}
.fs9{font-size:59.775600px;}
.fs3{font-size:59.778000px;}
.fs8{font-size:65.454600px;}
.fs2{font-size:71.730000px;}
.fs1{font-size:86.076000px;}
.y0{bottom:0.000000px;}
.y23{bottom:66.190500px;}
.y22{bottom:100.207500px;}
.y49{bottom:106.384500px;}
.y92{bottom:113.890500px;}
.y21{bottom:116.644500px;}
.ye6{bottom:118.383000px;}
.y109{bottom:118.737000px;}
.y12e{bottom:118.771500px;}
.y6f{bottom:118.884000px;}
.y157{bottom:118.887000px;}
.y48{bottom:122.823000px;}
.y150{bottom:123.013500px;}
.y91{bottom:132.570000px;}
.y20{bottom:133.083000px;}
.yc1{bottom:133.207500px;}
.ye5{bottom:136.558500px;}
.y108{bottom:137.268000px;}
.y12d{bottom:137.337000px;}
.y6e{bottom:137.560500px;}
.y156{bottom:137.566500px;}
.y47{bottom:139.261500px;}
.y14f{bottom:141.570000px;}
.y1f{bottom:149.521500px;}
.y90{bottom:151.249500px;}
.yc0{bottom:151.888500px;}
.ye4{bottom:154.734000px;}
.y1e{bottom:155.233479px;}
.y46{bottom:155.700000px;}
.y12c{bottom:155.902500px;}
.y6d{bottom:156.238500px;}
.y107{bottom:160.050000px;}
.ya6{bottom:160.489500px;}
.y45{bottom:161.413500px;}
.y14e{bottom:164.377500px;}
.y8f{bottom:169.930500px;}
.ybf{bottom:170.568000px;}
.y44{bottom:172.537500px;}
.y12b{bottom:174.468000px;}
.y6c{bottom:174.915000px;}
.ye3{bottom:177.162000px;}
.y106{bottom:178.581000px;}
.ya5{bottom:179.167500px;}
.y14d{bottom:182.932500px;}
.y43{bottom:188.976000px;}
.ybe{bottom:189.247500px;}
.y8e{bottom:192.861000px;}
.y12a{bottom:193.033500px;}
.y6b{bottom:193.593000px;}
.y42{bottom:194.689500px;}
.ye2{bottom:195.337500px;}
.y105{bottom:197.110500px;}
.y14c{bottom:201.487500px;}
.ya4{bottom:202.096500px;}
.y1d{bottom:210.567000px;}
.y8d{bottom:211.542000px;}
.y129{bottom:211.599000px;}
.ybd{bottom:212.179500px;}
.y6a{bottom:212.269500px;}
.y104{bottom:215.641500px;}
.ye1{bottom:217.765500px;}
.ya3{bottom:220.773000px;}
.y14b{bottom:224.295000px;}
.y1c{bottom:227.005500px;}
.y8c{bottom:230.221500px;}
.ybc{bottom:230.859000px;}
.y128{bottom:234.415500px;}
.y69{bottom:235.198500px;}
.ye0{bottom:235.941000px;}
.ya2{bottom:239.451000px;}
.y14a{bottom:242.850000px;}
.y1b{bottom:243.444000px;}
.y8b{bottom:248.901000px;}
.y41{bottom:251.904000px;}
.y127{bottom:252.981000px;}
.y103{bottom:253.222500px;}
.ybb{bottom:253.791000px;}
.y68{bottom:253.876500px;}
.ydf{bottom:254.116500px;}
.ya1{bottom:258.127500px;}
.y1a{bottom:259.882500px;}
.y149{bottom:265.657500px;}
.y8a{bottom:267.582000px;}
.y40{bottom:270.585000px;}
.y126{bottom:271.546500px;}
.yde{bottom:272.293500px;}
.yba{bottom:272.472000px;}
.y67{bottom:272.553000px;}
.y102{bottom:273.546000px;}
.y19{bottom:276.321000px;}
.ya0{bottom:276.805500px;}
.y148{bottom:284.212500px;}
.y89{bottom:286.261500px;}
.y3f{bottom:289.264500px;}
.yb9{bottom:291.151500px;}
.y66{bottom:291.229500px;}
.y18{bottom:292.759500px;}
.y101{bottom:293.871000px;}
.y125{bottom:294.363000px;}
.ydd{bottom:294.720000px;}
.y9f{bottom:295.482000px;}
.y88{bottom:304.941000px;}
.y147{bottom:307.020000px;}
.y3e{bottom:307.944000px;}
.y17{bottom:309.198000px;}
.yb8{bottom:309.831000px;}
.y65{bottom:309.907500px;}
.ydc{bottom:312.897000px;}
.y124{bottom:312.928500px;}
.y9e{bottom:318.411000px;}
.y146{bottom:325.576500px;}
.yb7{bottom:328.512000px;}
.y64{bottom:328.584000px;}
.y3d{bottom:330.876000px;}
.ydb{bottom:331.072500px;}
.y123{bottom:331.494000px;}
.y9d{bottom:337.089000px;}
.y100{bottom:340.902000px;}
.y87{bottom:342.672000px;}
.y145{bottom:348.382500px;}
.yda{bottom:349.248000px;}
.y3c{bottom:349.555500px;}
.y16{bottom:350.718000px;}
.yb6{bottom:351.442500px;}
.y63{bottom:351.513000px;}
.y122{bottom:354.310500px;}
.y9c{bottom:355.765500px;}
.yff{bottom:359.431500px;}
.y86{bottom:362.995500px;}
.y144{bottom:366.939000px;}
.yd9{bottom:367.423500px;}
.y3b{bottom:368.236500px;}
.yb5{bottom:370.123500px;}
.y62{bottom:370.191000px;}
.y121{bottom:372.876000px;}
.y9b{bottom:374.442000px;}
.yfe{bottom:377.962500px;}
.y85{bottom:383.319000px;}
.y143{bottom:385.494000px;}
.yd8{bottom:385.600500px;}
.y3a{bottom:386.916000px;}
.yb4{bottom:388.803000px;}
.y15{bottom:388.812000px;}
.y61{bottom:388.867500px;}
.y120{bottom:391.441500px;}
.y9a{bottom:393.120000px;}
.yfd{bottom:400.744500px;}
.yd7{bottom:403.776000px;}
.y142{bottom:404.049000px;}
.y14{bottom:405.250500px;}
.yb3{bottom:407.482500px;}
.y60{bottom:407.545500px;}
.y39{bottom:409.848000px;}
.y11f{bottom:410.007000px;}
.y99{bottom:411.796500px;}
.yfc{bottom:419.275500px;}
.y13{bottom:421.689000px;}
.yd6{bottom:421.951500px;}
.yb2{bottom:426.163500px;}
.y38{bottom:428.527500px;}
.y11e{bottom:428.572500px;}
.y84{bottom:430.414500px;}
.y5f{bottom:430.474500px;}
.yfb{bottom:437.805000px;}
.y12{bottom:438.127500px;}
.yd5{bottom:440.127000px;}
.y141{bottom:441.655500px;}
.yb1{bottom:444.843000px;}
.y11d{bottom:447.136500px;}
.y36{bottom:447.208500px;}
.y83{bottom:449.095500px;}
.y5e{bottom:449.151000px;}
.y37{bottom:452.631000px;}
.y98{bottom:453.403500px;}
.y10{bottom:454.566000px;}
.yfa{bottom:456.336000px;}
.yd4{bottom:458.302500px;}
.y11{bottom:460.277979px;}
.yb0{bottom:463.522500px;}
.y11c{bottom:465.702000px;}
.y35{bottom:465.888000px;}
.y82{bottom:467.775000px;}
.y5d{bottom:467.829000px;}
.yf{bottom:471.004500px;}
.y97{bottom:472.080000px;}
.yf9{bottom:474.867000px;}
.yd3{bottom:476.479500px;}
.y11b{bottom:484.267500px;}
.y34{bottom:484.567500px;}
.y81{bottom:486.454500px;}
.y5c{bottom:486.505500px;}
.ye{bottom:487.441500px;}
.y140{bottom:488.697000px;}
.y96{bottom:490.758000px;}
.yf8{bottom:493.396500px;}
.yd2{bottom:498.906000px;}
.y11a{bottom:502.833000px;}
.yc{bottom:503.880000px;}
.y80{bottom:505.134000px;}
.y13f{bottom:507.252000px;}
.y33{bottom:507.499500px;}
.y5b{bottom:509.434500px;}
.yd{bottom:509.591979px;}
.yf7{bottom:516.180000px;}
.yd1{bottom:517.083000px;}
.yb{bottom:520.318500px;}
.y119{bottom:521.398500px;}
.yaf{bottom:523.815000px;}
.y13e{bottom:525.808500px;}
.y32{bottom:526.179000px;}
.y7f{bottom:528.066000px;}
.y5a{bottom:528.111000px;}
.yf6{bottom:534.709500px;}
.yd0{bottom:535.258500px;}
.ya{bottom:536.757000px;}
.yae{bottom:542.494500px;}
.y118{bottom:544.215000px;}
.y13d{bottom:544.363500px;}
.y30{bottom:544.860000px;}
.y7e{bottom:546.747000px;}
.y59{bottom:546.789000px;}
.y31{bottom:550.282500px;}
.y9{bottom:553.195500px;}
.yf5{bottom:553.240500px;}
.ycf{bottom:553.434000px;}
.yad{bottom:561.174000px;}
.y117{bottom:562.780500px;}
.y13c{bottom:562.918500px;}
.y7d{bottom:565.426500px;}
.y58{bottom:565.465500px;}
.y2f{bottom:567.792000px;}
.yce{bottom:571.609500px;}
.yf4{bottom:571.771500px;}
.yac{bottom:579.855000px;}
.y116{bottom:581.346000px;}
.y13b{bottom:581.473500px;}
.y7c{bottom:584.106000px;}
.y57{bottom:584.143500px;}
.y2e{bottom:586.471500px;}
.ycd{bottom:589.785000px;}
.yf3{bottom:590.301000px;}
.y8{bottom:594.717000px;}
.yab{bottom:598.534500px;}
.y7b{bottom:602.787000px;}
.y56{bottom:602.820000px;}
.y115{bottom:604.162500px;}
.y13a{bottom:604.281000px;}
.y2d{bottom:605.151000px;}
.ycc{bottom:607.962000px;}
.yf2{bottom:608.832000px;}
.y7{bottom:613.132500px;}
.yaa{bottom:617.214000px;}
.y7a{bottom:621.466500px;}
.y55{bottom:621.498000px;}
.y114{bottom:622.728000px;}
.y139{bottom:622.836000px;}
.y2c{bottom:623.832000px;}
.y95{bottom:625.749000px;}
.yf1{bottom:627.363000px;}
.ycb{bottom:630.388500px;}
.y6{bottom:635.799000px;}
.y79{bottom:640.146000px;}
.y54{bottom:640.174500px;}
.y113{bottom:641.293500px;}
.y138{bottom:641.392500px;}
.y2b{bottom:642.511500px;}
.y94{bottom:644.427000px;}
.yf0{bottom:645.892500px;}
.yca{bottom:648.565500px;}
.y78{bottom:658.827000px;}
.y53{bottom:658.851000px;}
.y112{bottom:659.859000px;}
.y137{bottom:659.947500px;}
.y2a{bottom:661.191000px;}
.y93{bottom:663.103500px;}
.yc9{bottom:666.741000px;}
.yef{bottom:668.676000px;}
.y155{bottom:669.003000px;}
.ya9{bottom:677.506500px;}
.y111{bottom:678.424500px;}
.y136{bottom:678.502500px;}
.y77{bottom:681.757500px;}
.y52{bottom:681.780000px;}
.yc8{bottom:684.916500px;}
.yee{bottom:687.205500px;}
.y154{bottom:687.682500px;}
.ya8{bottom:696.186000px;}
.y29{bottom:698.922000px;}
.y76{bottom:700.438500px;}
.y51{bottom:700.458000px;}
.y110{bottom:701.241000px;}
.y135{bottom:701.310000px;}
.yc7{bottom:703.092000px;}
.yed{bottom:705.736500px;}
.y5{bottom:709.113000px;}
.y153{bottom:710.614500px;}
.ya7{bottom:714.865500px;}
.y75{bottom:719.118000px;}
.y50{bottom:719.134500px;}
.y10f{bottom:719.806500px;}
.y134{bottom:719.865000px;}
.yec{bottom:724.267500px;}
.yc6{bottom:725.520000px;}
.y152{bottom:729.294000px;}
.y4{bottom:735.132000px;}
.y74{bottom:737.797500px;}
.y4f{bottom:737.812500px;}
.y10e{bottom:738.372000px;}
.y133{bottom:738.421500px;}
.yeb{bottom:742.797000px;}
.yc5{bottom:743.695500px;}
.y151{bottom:752.226000px;}
.y73{bottom:756.478500px;}
.y4e{bottom:756.489000px;}
.y132{bottom:756.976500px;}
.y10d{bottom:761.188500px;}
.yea{bottom:761.328000px;}
.yc4{bottom:761.871000px;}
.y3{bottom:762.031500px;}
.y28{bottom:763.950000px;}
.y72{bottom:775.158000px;}
.y4d{bottom:775.167000px;}
.y10c{bottom:779.754000px;}
.y131{bottom:779.784000px;}
.ye9{bottom:779.859000px;}
.yc3{bottom:780.048000px;}
.y71{bottom:793.837500px;}
.y4c{bottom:793.843500px;}
.yc2{bottom:798.223500px;}
.y10b{bottom:798.319500px;}
.y130{bottom:798.339000px;}
.ye8{bottom:798.388500px;}
.y27{bottom:802.573500px;}
.y70{bottom:816.769500px;}
.y4b{bottom:816.772500px;}
.y10a{bottom:816.885000px;}
.y12f{bottom:816.894000px;}
.ye7{bottom:816.919500px;}
.y26{bottom:819.012000px;}
.y25{bottom:835.449000px;}
.y2{bottom:849.939000px;}
.y24{bottom:864.277500px;}
.y1{bottom:864.285000px;}
.y4a{bottom:882.210000px;}
.hc{height:26.899200px;}
.h7{height:26.901000px;}
.h2{height:35.865000px;}
.h8{height:35.865450px;}
.h6{height:40.347000px;}
.h9{height:40.348800px;}
.h4{height:53.797500px;}
.hb{height:54.336020px;}
.h5{height:54.338202px;}
.ha{height:59.498231px;}
.h3{height:64.557000px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x25{left:84.438000px;}
.x13{left:85.584000px;}
.x2f{left:92.718000px;}
.x1b{left:94.665000px;}
.x1c{left:100.891500px;}
.x10{left:103.630500px;}
.x1d{left:105.397500px;}
.x15{left:108.000000px;}
.x26{left:113.095500px;}
.x11{left:114.669000px;}
.x21{left:116.967000px;}
.x30{left:125.469000px;}
.x2b{left:138.451500px;}
.x14{left:145.656000px;}
.x3{left:148.468500px;}
.x2c{left:149.991000px;}
.x8{left:154.623000px;}
.x1f{left:191.586000px;}
.x1{left:199.506000px;}
.x20{left:200.793000px;}
.x6{left:208.531500px;}
.xf{left:220.782000px;}
.x9{left:223.221000px;}
.x7{left:229.447500px;}
.x2{left:232.291500px;}
.xa{left:238.713000px;}
.x29{left:243.379500px;}
.x1e{left:244.792500px;}
.x24{left:253.759500px;}
.x2a{left:255.069000px;}
.x19{left:256.267500px;}
.x2d{left:270.397500px;}
.x2e{left:281.647500px;}
.x16{left:288.094500px;}
.x4{left:290.517000px;}
.xb{left:291.852000px;}
.x12{left:296.181000px;}
.x5{left:297.331500px;}
.xc{left:307.344000px;}
.x1a{left:343.306500px;}
.x31{left:369.496500px;}
.x32{left:380.725500px;}
.x27{left:405.946500px;}
.x28{left:416.755500px;}
.xd{left:450.543000px;}
.xe{left:466.278000px;}
.x22{left:539.389500px;}
.x23{left:551.103000px;}
.x17{left:555.225000px;}
.x18{left:561.451500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.289013pt;}
.ls3{letter-spacing:-1.338923pt;}
.ls1{letter-spacing:-0.000170pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.009692pt;}
.ws3d{word-spacing:-30.551973pt;}
.ws62{word-spacing:-27.156719pt;}
.ws7{word-spacing:-26.568000pt;}
.ws5b{word-spacing:-26.566933pt;}
.ws46{word-spacing:-23.319450pt;}
.ws0{word-spacing:-23.319157pt;}
.wsa{word-spacing:-23.235090pt;}
.wsad{word-spacing:-13.496002pt;}
.ws9f{word-spacing:-13.017797pt;}
.ws63{word-spacing:-12.805262pt;}
.ws34{word-spacing:-12.752128pt;}
.ws54{word-spacing:-12.539593pt;}
.wsf{word-spacing:-12.524490pt;}
.ws2{word-spacing:-12.520550pt;}
.ws5e{word-spacing:-12.433325pt;}
.ws3c{word-spacing:-12.380191pt;}
.ws61{word-spacing:-12.268082pt;}
.ws5f{word-spacing:-12.220789pt;}
.ws35{word-spacing:-11.901986pt;}
.ws74{word-spacing:-11.848852pt;}
.ws6e{word-spacing:-11.742585pt;}
.wsae{word-spacing:-11.689451pt;}
.ws14{word-spacing:-11.616429pt;}
.ws70{word-spacing:-11.583183pt;}
.ws97{word-spacing:-11.530049pt;}
.ws48{word-spacing:-11.476915pt;}
.ws60{word-spacing:-11.429349pt;}
.ws56{word-spacing:-11.423781pt;}
.ws2d{word-spacing:-11.170918pt;}
.ws58{word-spacing:-11.051844pt;}
.ws73{word-spacing:-10.892443pt;}
.ws65{word-spacing:-10.786175pt;}
.ws6a{word-spacing:-10.733041pt;}
.ws52{word-spacing:-10.626773pt;}
.ws96{word-spacing:-10.578953pt;}
.wsa4{word-spacing:-10.573639pt;}
.ws81{word-spacing:-10.520506pt;}
.ws90{word-spacing:-10.467372pt;}
.ws4b{word-spacing:-10.307970pt;}
.ws78{word-spacing:-10.254836pt;}
.ws7c{word-spacing:-10.148569pt;}
.wsb{word-spacing:-10.136532pt;}
.ws94{word-spacing:-10.095435pt;}
.ws79{word-spacing:-9.968104pt;}
.ws7b{word-spacing:-9.936033pt;}
.wsa5{word-spacing:-9.829765pt;}
.ws15{word-spacing:-9.605358pt;}
.ws3{word-spacing:-9.564667pt;}
.ws77{word-spacing:-9.564096pt;}
.ws91{word-spacing:-9.510962pt;}
.wsb1{word-spacing:-9.457828pt;}
.ws93{word-spacing:-9.250606pt;}
.ws4c{word-spacing:-9.245293pt;}
.ws6f{word-spacing:-9.192159pt;}
.ws7a{word-spacing:-9.144338pt;}
.ws30{word-spacing:-9.139025pt;}
.ws59{word-spacing:-9.085891pt;}
.ws3b{word-spacing:-9.032757pt;}
.ws4a{word-spacing:-8.979623pt;}
.ws31{word-spacing:-8.926490pt;}
.ws4{word-spacing:-8.881486pt;}
.ws6{word-spacing:-8.880989pt;}
.ws33{word-spacing:-8.873356pt;}
.wsb2{word-spacing:-8.825535pt;}
.ws41{word-spacing:-8.820222pt;}
.ws4f{word-spacing:-8.767088pt;}
.wsd{word-spacing:-8.747668pt;}
.wse{word-spacing:-8.745437pt;}
.wsc{word-spacing:-8.745028pt;}
.ws39{word-spacing:-8.713954pt;}
.ws3a{word-spacing:-8.660820pt;}
.ws5a{word-spacing:-8.607686pt;}
.ws98{word-spacing:-8.564240pt;}
.ws72{word-spacing:-8.554553pt;}
.ws1e{word-spacing:-8.510936pt;}
.ws32{word-spacing:-8.501419pt;}
.ws16{word-spacing:-8.467336pt;}
.ws83{word-spacing:-8.448285pt;}
.ws3e{word-spacing:-8.395151pt;}
.ws84{word-spacing:-8.342017pt;}
.ws43{word-spacing:-8.316037pt;}
.ws4e{word-spacing:-8.288883pt;}
.ws12{word-spacing:-8.221753pt;}
.ws2a{word-spacing:-8.220396pt;}
.ws17{word-spacing:-8.219620pt;}
.ws11{word-spacing:-8.218866pt;}
.ws19{word-spacing:-8.216383pt;}
.ws13{word-spacing:-8.213548pt;}
.ws24{word-spacing:-8.213035pt;}
.ws5{word-spacing:-8.192846pt;}
.ws8c{word-spacing:-8.187929pt;}
.ws5c{word-spacing:-8.182615pt;}
.ws2c{word-spacing:-8.172575pt;}
.wsbb{word-spacing:-8.134795pt;}
.ws71{word-spacing:-8.129482pt;}
.ws29{word-spacing:-8.124754pt;}
.ws95{word-spacing:-8.081661pt;}
.ws10{word-spacing:-8.079763pt;}
.ws64{word-spacing:-8.076348pt;}
.ws1c{word-spacing:-8.031501pt;}
.ws1a{word-spacing:-8.031081pt;}
.ws28{word-spacing:-8.029112pt;}
.wsbf{word-spacing:-7.922260pt;}
.ws50{word-spacing:-7.916946pt;}
.ws1b{word-spacing:-7.887835pt;}
.ws9b{word-spacing:-7.863812pt;}
.ws9{word-spacing:-7.844932pt;}
.ws21{word-spacing:-7.844570pt;}
.ws99{word-spacing:-7.815992pt;}
.ws9a{word-spacing:-7.810678pt;}
.ws85{word-spacing:-7.762858pt;}
.ws6b{word-spacing:-7.757545pt;}
.ws1f{word-spacing:-7.743459pt;}
.wsaf{word-spacing:-7.709724pt;}
.ws67{word-spacing:-7.651277pt;}
.ws92{word-spacing:-7.545009pt;}
.ws1{word-spacing:-7.538176pt;}
.ws27{word-spacing:-7.536527pt;}
.ws25{word-spacing:-7.535445pt;}
.ws86{word-spacing:-7.497189pt;}
.ws44{word-spacing:-7.455263pt;}
.wsbc{word-spacing:-7.173072pt;}
.ws68{word-spacing:-7.119938pt;}
.ws1d{word-spacing:-7.076144pt;}
.ws75{word-spacing:-7.066804pt;}
.wsbd{word-spacing:-7.018984pt;}
.ws42{word-spacing:-7.013670pt;}
.ws47{word-spacing:-6.996685pt;}
.ws82{word-spacing:-6.907403pt;}
.ws5d{word-spacing:-6.855163pt;}
.ws36{word-spacing:-6.801135pt;}
.ws3f{word-spacing:-6.694867pt;}
.wsaa{word-spacing:-6.641733pt;}
.ws2f{word-spacing:-6.535466pt;}
.ws6d{word-spacing:-6.482332pt;}
.ws2b{word-spacing:-6.464934pt;}
.ws18{word-spacing:-6.439274pt;}
.wsab{word-spacing:-6.322930pt;}
.wsa3{word-spacing:-6.269796pt;}
.ws20{word-spacing:-6.268020pt;}
.wsa2{word-spacing:-6.216662pt;}
.ws51{word-spacing:-6.110395pt;}
.ws55{word-spacing:-6.057261pt;}
.ws45{word-spacing:-5.924997pt;}
.ws6c{word-spacing:-5.791591pt;}
.wsac{word-spacing:-5.685324pt;}
.wsa0{word-spacing:-5.525922pt;}
.ws8f{word-spacing:-5.419654pt;}
.ws2e{word-spacing:-5.260253pt;}
.ws76{word-spacing:-5.207119pt;}
.ws53{word-spacing:-5.153985pt;}
.ws23{word-spacing:-5.023575pt;}
.ws80{word-spacing:-4.888316pt;}
.ws49{word-spacing:-4.835182pt;}
.ws7f{word-spacing:-4.521692pt;}
.ws9d{word-spacing:-4.463245pt;}
.ws9c{word-spacing:-4.356977pt;}
.wsb4{word-spacing:-4.309157pt;}
.wsa6{word-spacing:-3.931906pt;}
.ws88{word-spacing:-3.825638pt;}
.ws89{word-spacing:-3.565282pt;}
.ws87{word-spacing:-3.559969pt;}
.ws4d{word-spacing:-3.506835pt;}
.wsc3{word-spacing:-3.453701pt;}
.wsc1{word-spacing:-3.400567pt;}
.wsa9{word-spacing:-3.347434pt;}
.wsc2{word-spacing:-3.193345pt;}
.wsa1{word-spacing:-3.028630pt;}
.wsb3{word-spacing:-2.975497pt;}
.ws22{word-spacing:-2.922305pt;}
.wsc0{word-spacing:-2.709827pt;}
.wsb9{word-spacing:-2.603559pt;}
.wsa7{word-spacing:-2.550426pt;}
.wsba{word-spacing:-2.449471pt;}
.ws8a{word-spacing:-2.391024pt;}
.wsb6{word-spacing:-2.290070pt;}
.wsb0{word-spacing:-2.284756pt;}
.ws8b{word-spacing:-2.236936pt;}
.ws69{word-spacing:-2.231622pt;}
.ws8e{word-spacing:-1.912819pt;}
.ws66{word-spacing:-1.859685pt;}
.ws38{word-spacing:-1.594016pt;}
.ws57{word-spacing:-1.434614pt;}
.ws8{word-spacing:-1.102197pt;}
.ws40{word-spacing:-0.956410pt;}
.wsb5{word-spacing:-0.743874pt;}
.wsa8{word-spacing:-0.212535pt;}
.wsbe{word-spacing:-0.159402pt;}
.ws26{word-spacing:0.000000pt;}
.ws7d{word-spacing:0.478205pt;}
.ws8d{word-spacing:0.690740pt;}
.ws37{word-spacing:3.081764pt;}
.wsc5{word-spacing:3.660923pt;}
.wsb7{word-spacing:3.926593pt;}
.ws7e{word-spacing:4.091308pt;}
.wsb8{word-spacing:4.303843pt;}
.ws9e{word-spacing:5.632190pt;}
.wsc4{word-spacing:7.385607pt;}
._1c{margin-left:-7.578371pt;}
._3{margin-left:-6.193231pt;}
._5{margin-left:-4.482453pt;}
._0{margin-left:-3.485547pt;}
._7{margin-left:-2.443770pt;}
._1{margin-left:-1.241851pt;}
._12{width:0.909673pt;}
._2{width:2.065824pt;}
._f{width:13.761671pt;}
._19{width:14.930617pt;}
._17{width:16.576250pt;}
._14{width:18.027364pt;}
._a{width:19.862808pt;}
._15{width:21.210261pt;}
._9{width:22.241120pt;}
._b{width:23.511565pt;}
._8{width:24.622647pt;}
._20{width:25.895189pt;}
._10{width:26.885737pt;}
._13{width:27.789012pt;}
._6{width:28.993779pt;}
._e{width:30.213046pt;}
._18{width:32.298197pt;}
._4{width:33.287236pt;}
._1d{width:34.884177pt;}
._21{width:36.629006pt;}
._1b{width:37.903655pt;}
._1f{width:40.492499pt;}
._22{width:43.217605pt;}
._11{width:46.120196pt;}
._23{width:62.386018pt;}
._1e{width:63.373774pt;}
._d{width:66.909147pt;}
._1a{width:89.192802pt;}
._16{width:317.816898pt;}
._c{width:688.064046pt;}
.fsa{font-size:31.880533pt;}
.fs4{font-size:31.882667pt;}
.fs0{font-size:42.506667pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:47.818667pt;}
.fs7{font-size:47.820800pt;}
.fs9{font-size:53.133867pt;}
.fs3{font-size:53.136000pt;}
.fs8{font-size:58.181867pt;}
.fs2{font-size:63.760000pt;}
.fs1{font-size:76.512000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:58.836000pt;}
.y22{bottom:89.073333pt;}
.y49{bottom:94.564000pt;}
.y92{bottom:101.236000pt;}
.y21{bottom:103.684000pt;}
.ye6{bottom:105.229333pt;}
.y109{bottom:105.544000pt;}
.y12e{bottom:105.574667pt;}
.y6f{bottom:105.674667pt;}
.y157{bottom:105.677333pt;}
.y48{bottom:109.176000pt;}
.y150{bottom:109.345333pt;}
.y91{bottom:117.840000pt;}
.y20{bottom:118.296000pt;}
.yc1{bottom:118.406667pt;}
.ye5{bottom:121.385333pt;}
.y108{bottom:122.016000pt;}
.y12d{bottom:122.077333pt;}
.y6e{bottom:122.276000pt;}
.y156{bottom:122.281333pt;}
.y47{bottom:123.788000pt;}
.y14f{bottom:125.840000pt;}
.y1f{bottom:132.908000pt;}
.y90{bottom:134.444000pt;}
.yc0{bottom:135.012000pt;}
.ye4{bottom:137.541333pt;}
.y1e{bottom:137.985315pt;}
.y46{bottom:138.400000pt;}
.y12c{bottom:138.580000pt;}
.y6d{bottom:138.878667pt;}
.y107{bottom:142.266667pt;}
.ya6{bottom:142.657333pt;}
.y45{bottom:143.478667pt;}
.y14e{bottom:146.113333pt;}
.y8f{bottom:151.049333pt;}
.ybf{bottom:151.616000pt;}
.y44{bottom:153.366667pt;}
.y12b{bottom:155.082667pt;}
.y6c{bottom:155.480000pt;}
.ye3{bottom:157.477333pt;}
.y106{bottom:158.738667pt;}
.ya5{bottom:159.260000pt;}
.y14d{bottom:162.606667pt;}
.y43{bottom:167.978667pt;}
.ybe{bottom:168.220000pt;}
.y8e{bottom:171.432000pt;}
.y12a{bottom:171.585333pt;}
.y6b{bottom:172.082667pt;}
.y42{bottom:173.057333pt;}
.ye2{bottom:173.633333pt;}
.y105{bottom:175.209333pt;}
.y14c{bottom:179.100000pt;}
.ya4{bottom:179.641333pt;}
.y1d{bottom:187.170667pt;}
.y8d{bottom:188.037333pt;}
.y129{bottom:188.088000pt;}
.ybd{bottom:188.604000pt;}
.y6a{bottom:188.684000pt;}
.y104{bottom:191.681333pt;}
.ye1{bottom:193.569333pt;}
.ya3{bottom:196.242667pt;}
.y14b{bottom:199.373333pt;}
.y1c{bottom:201.782667pt;}
.y8c{bottom:204.641333pt;}
.ybc{bottom:205.208000pt;}
.y128{bottom:208.369333pt;}
.y69{bottom:209.065333pt;}
.ye0{bottom:209.725333pt;}
.ya2{bottom:212.845333pt;}
.y14a{bottom:215.866667pt;}
.y1b{bottom:216.394667pt;}
.y8b{bottom:221.245333pt;}
.y41{bottom:223.914667pt;}
.y127{bottom:224.872000pt;}
.y103{bottom:225.086667pt;}
.ybb{bottom:225.592000pt;}
.y68{bottom:225.668000pt;}
.ydf{bottom:225.881333pt;}
.ya1{bottom:229.446667pt;}
.y1a{bottom:231.006667pt;}
.y149{bottom:236.140000pt;}
.y8a{bottom:237.850667pt;}
.y40{bottom:240.520000pt;}
.y126{bottom:241.374667pt;}
.yde{bottom:242.038667pt;}
.yba{bottom:242.197333pt;}
.y67{bottom:242.269333pt;}
.y102{bottom:243.152000pt;}
.y19{bottom:245.618667pt;}
.ya0{bottom:246.049333pt;}
.y148{bottom:252.633333pt;}
.y89{bottom:254.454667pt;}
.y3f{bottom:257.124000pt;}
.yb9{bottom:258.801333pt;}
.y66{bottom:258.870667pt;}
.y18{bottom:260.230667pt;}
.y101{bottom:261.218667pt;}
.y125{bottom:261.656000pt;}
.ydd{bottom:261.973333pt;}
.y9f{bottom:262.650667pt;}
.y88{bottom:271.058667pt;}
.y147{bottom:272.906667pt;}
.y3e{bottom:273.728000pt;}
.y17{bottom:274.842667pt;}
.yb8{bottom:275.405333pt;}
.y65{bottom:275.473333pt;}
.ydc{bottom:278.130667pt;}
.y124{bottom:278.158667pt;}
.y9e{bottom:283.032000pt;}
.y146{bottom:289.401333pt;}
.yb7{bottom:292.010667pt;}
.y64{bottom:292.074667pt;}
.y3d{bottom:294.112000pt;}
.ydb{bottom:294.286667pt;}
.y123{bottom:294.661333pt;}
.y9d{bottom:299.634667pt;}
.y100{bottom:303.024000pt;}
.y87{bottom:304.597333pt;}
.y145{bottom:309.673333pt;}
.yda{bottom:310.442667pt;}
.y3c{bottom:310.716000pt;}
.y16{bottom:311.749333pt;}
.yb6{bottom:312.393333pt;}
.y63{bottom:312.456000pt;}
.y122{bottom:314.942667pt;}
.y9c{bottom:316.236000pt;}
.yff{bottom:319.494667pt;}
.y86{bottom:322.662667pt;}
.y144{bottom:326.168000pt;}
.yd9{bottom:326.598667pt;}
.y3b{bottom:327.321333pt;}
.yb5{bottom:328.998667pt;}
.y62{bottom:329.058667pt;}
.y121{bottom:331.445333pt;}
.y9b{bottom:332.837333pt;}
.yfe{bottom:335.966667pt;}
.y85{bottom:340.728000pt;}
.y143{bottom:342.661333pt;}
.yd8{bottom:342.756000pt;}
.y3a{bottom:343.925333pt;}
.yb4{bottom:345.602667pt;}
.y15{bottom:345.610667pt;}
.y61{bottom:345.660000pt;}
.y120{bottom:347.948000pt;}
.y9a{bottom:349.440000pt;}
.yfd{bottom:356.217333pt;}
.yd7{bottom:358.912000pt;}
.y142{bottom:359.154667pt;}
.y14{bottom:360.222667pt;}
.yb3{bottom:362.206667pt;}
.y60{bottom:362.262667pt;}
.y39{bottom:364.309333pt;}
.y11f{bottom:364.450667pt;}
.y99{bottom:366.041333pt;}
.yfc{bottom:372.689333pt;}
.y13{bottom:374.834667pt;}
.yd6{bottom:375.068000pt;}
.yb2{bottom:378.812000pt;}
.y38{bottom:380.913333pt;}
.y11e{bottom:380.953333pt;}
.y84{bottom:382.590667pt;}
.y5f{bottom:382.644000pt;}
.yfb{bottom:389.160000pt;}
.y12{bottom:389.446667pt;}
.yd5{bottom:391.224000pt;}
.y141{bottom:392.582667pt;}
.yb1{bottom:395.416000pt;}
.y11d{bottom:397.454667pt;}
.y36{bottom:397.518667pt;}
.y83{bottom:399.196000pt;}
.y5e{bottom:399.245333pt;}
.y37{bottom:402.338667pt;}
.y98{bottom:403.025333pt;}
.y10{bottom:404.058667pt;}
.yfa{bottom:405.632000pt;}
.yd4{bottom:407.380000pt;}
.y11{bottom:409.135981pt;}
.yb0{bottom:412.020000pt;}
.y11c{bottom:413.957333pt;}
.y35{bottom:414.122667pt;}
.y82{bottom:415.800000pt;}
.y5d{bottom:415.848000pt;}
.yf{bottom:418.670667pt;}
.y97{bottom:419.626667pt;}
.yf9{bottom:422.104000pt;}
.yd3{bottom:423.537333pt;}
.y11b{bottom:430.460000pt;}
.y34{bottom:430.726667pt;}
.y81{bottom:432.404000pt;}
.y5c{bottom:432.449333pt;}
.ye{bottom:433.281333pt;}
.y140{bottom:434.397333pt;}
.y96{bottom:436.229333pt;}
.yf8{bottom:438.574667pt;}
.yd2{bottom:443.472000pt;}
.y11a{bottom:446.962667pt;}
.yc{bottom:447.893333pt;}
.y80{bottom:449.008000pt;}
.y13f{bottom:450.890667pt;}
.y33{bottom:451.110667pt;}
.y5b{bottom:452.830667pt;}
.yd{bottom:452.970648pt;}
.yf7{bottom:458.826667pt;}
.yd1{bottom:459.629333pt;}
.yb{bottom:462.505333pt;}
.y119{bottom:463.465333pt;}
.yaf{bottom:465.613333pt;}
.y13e{bottom:467.385333pt;}
.y32{bottom:467.714667pt;}
.y7f{bottom:469.392000pt;}
.y5a{bottom:469.432000pt;}
.yf6{bottom:475.297333pt;}
.yd0{bottom:475.785333pt;}
.ya{bottom:477.117333pt;}
.yae{bottom:482.217333pt;}
.y118{bottom:483.746667pt;}
.y13d{bottom:483.878667pt;}
.y30{bottom:484.320000pt;}
.y7e{bottom:485.997333pt;}
.y59{bottom:486.034667pt;}
.y31{bottom:489.140000pt;}
.y9{bottom:491.729333pt;}
.yf5{bottom:491.769333pt;}
.ycf{bottom:491.941333pt;}
.yad{bottom:498.821333pt;}
.y117{bottom:500.249333pt;}
.y13c{bottom:500.372000pt;}
.y7d{bottom:502.601333pt;}
.y58{bottom:502.636000pt;}
.y2f{bottom:504.704000pt;}
.yce{bottom:508.097333pt;}
.yf4{bottom:508.241333pt;}
.yac{bottom:515.426667pt;}
.y116{bottom:516.752000pt;}
.y13b{bottom:516.865333pt;}
.y7c{bottom:519.205333pt;}
.y57{bottom:519.238667pt;}
.y2e{bottom:521.308000pt;}
.ycd{bottom:524.253333pt;}
.yf3{bottom:524.712000pt;}
.y8{bottom:528.637333pt;}
.yab{bottom:532.030667pt;}
.y7b{bottom:535.810667pt;}
.y56{bottom:535.840000pt;}
.y115{bottom:537.033333pt;}
.y13a{bottom:537.138667pt;}
.y2d{bottom:537.912000pt;}
.ycc{bottom:540.410667pt;}
.yf2{bottom:541.184000pt;}
.y7{bottom:545.006667pt;}
.yaa{bottom:548.634667pt;}
.y7a{bottom:552.414667pt;}
.y55{bottom:552.442667pt;}
.y114{bottom:553.536000pt;}
.y139{bottom:553.632000pt;}
.y2c{bottom:554.517333pt;}
.y95{bottom:556.221333pt;}
.yf1{bottom:557.656000pt;}
.ycb{bottom:560.345333pt;}
.y6{bottom:565.154667pt;}
.y79{bottom:569.018667pt;}
.y54{bottom:569.044000pt;}
.y113{bottom:570.038667pt;}
.y138{bottom:570.126667pt;}
.y2b{bottom:571.121333pt;}
.y94{bottom:572.824000pt;}
.yf0{bottom:574.126667pt;}
.yca{bottom:576.502667pt;}
.y78{bottom:585.624000pt;}
.y53{bottom:585.645333pt;}
.y112{bottom:586.541333pt;}
.y137{bottom:586.620000pt;}
.y2a{bottom:587.725333pt;}
.y93{bottom:589.425333pt;}
.yc9{bottom:592.658667pt;}
.yef{bottom:594.378667pt;}
.y155{bottom:594.669333pt;}
.ya9{bottom:602.228000pt;}
.y111{bottom:603.044000pt;}
.y136{bottom:603.113333pt;}
.y77{bottom:606.006667pt;}
.y52{bottom:606.026667pt;}
.yc8{bottom:608.814667pt;}
.yee{bottom:610.849333pt;}
.y154{bottom:611.273333pt;}
.ya8{bottom:618.832000pt;}
.y29{bottom:621.264000pt;}
.y76{bottom:622.612000pt;}
.y51{bottom:622.629333pt;}
.y110{bottom:623.325333pt;}
.y135{bottom:623.386667pt;}
.yc7{bottom:624.970667pt;}
.yed{bottom:627.321333pt;}
.y5{bottom:630.322667pt;}
.y153{bottom:631.657333pt;}
.ya7{bottom:635.436000pt;}
.y75{bottom:639.216000pt;}
.y50{bottom:639.230667pt;}
.y10f{bottom:639.828000pt;}
.y134{bottom:639.880000pt;}
.yec{bottom:643.793333pt;}
.yc6{bottom:644.906667pt;}
.y152{bottom:648.261333pt;}
.y4{bottom:653.450667pt;}
.y74{bottom:655.820000pt;}
.y4f{bottom:655.833333pt;}
.y10e{bottom:656.330667pt;}
.y133{bottom:656.374667pt;}
.yeb{bottom:660.264000pt;}
.yc5{bottom:661.062667pt;}
.y151{bottom:668.645333pt;}
.y73{bottom:672.425333pt;}
.y4e{bottom:672.434667pt;}
.y132{bottom:672.868000pt;}
.y10d{bottom:676.612000pt;}
.yea{bottom:676.736000pt;}
.yc4{bottom:677.218667pt;}
.y3{bottom:677.361333pt;}
.y28{bottom:679.066667pt;}
.y72{bottom:689.029333pt;}
.y4d{bottom:689.037333pt;}
.y10c{bottom:693.114667pt;}
.y131{bottom:693.141333pt;}
.ye9{bottom:693.208000pt;}
.yc3{bottom:693.376000pt;}
.y71{bottom:705.633333pt;}
.y4c{bottom:705.638667pt;}
.yc2{bottom:709.532000pt;}
.y10b{bottom:709.617333pt;}
.y130{bottom:709.634667pt;}
.ye8{bottom:709.678667pt;}
.y27{bottom:713.398667pt;}
.y70{bottom:726.017333pt;}
.y4b{bottom:726.020000pt;}
.y10a{bottom:726.120000pt;}
.y12f{bottom:726.128000pt;}
.ye7{bottom:726.150667pt;}
.y26{bottom:728.010667pt;}
.y25{bottom:742.621333pt;}
.y2{bottom:755.501333pt;}
.y24{bottom:768.246667pt;}
.y1{bottom:768.253333pt;}
.y4a{bottom:784.186667pt;}
.hc{height:23.910400pt;}
.h7{height:23.912000pt;}
.h2{height:31.880000pt;}
.h8{height:31.880400pt;}
.h6{height:35.864000pt;}
.h9{height:35.865600pt;}
.h4{height:47.820000pt;}
.hb{height:48.298685pt;}
.h5{height:48.300624pt;}
.ha{height:52.887317pt;}
.h3{height:57.384000pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x25{left:75.056000pt;}
.x13{left:76.074667pt;}
.x2f{left:82.416000pt;}
.x1b{left:84.146667pt;}
.x1c{left:89.681333pt;}
.x10{left:92.116000pt;}
.x1d{left:93.686667pt;}
.x15{left:96.000000pt;}
.x26{left:100.529333pt;}
.x11{left:101.928000pt;}
.x21{left:103.970667pt;}
.x30{left:111.528000pt;}
.x2b{left:123.068000pt;}
.x14{left:129.472000pt;}
.x3{left:131.972000pt;}
.x2c{left:133.325333pt;}
.x8{left:137.442667pt;}
.x1f{left:170.298667pt;}
.x1{left:177.338667pt;}
.x20{left:178.482667pt;}
.x6{left:185.361333pt;}
.xf{left:196.250667pt;}
.x9{left:198.418667pt;}
.x7{left:203.953333pt;}
.x2{left:206.481333pt;}
.xa{left:212.189333pt;}
.x29{left:216.337333pt;}
.x1e{left:217.593333pt;}
.x24{left:225.564000pt;}
.x2a{left:226.728000pt;}
.x19{left:227.793333pt;}
.x2d{left:240.353333pt;}
.x2e{left:250.353333pt;}
.x16{left:256.084000pt;}
.x4{left:258.237333pt;}
.xb{left:259.424000pt;}
.x12{left:263.272000pt;}
.x5{left:264.294667pt;}
.xc{left:273.194667pt;}
.x1a{left:305.161333pt;}
.x31{left:328.441333pt;}
.x32{left:338.422667pt;}
.x27{left:360.841333pt;}
.x28{left:370.449333pt;}
.xd{left:400.482667pt;}
.xe{left:414.469333pt;}
.x22{left:479.457333pt;}
.x23{left:489.869333pt;}
.x17{left:493.533333pt;}
.x18{left:499.068000pt;}
}




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