
    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_ebce8672cbd9b09bb8b08763.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_9e89c5bad3c9b08b8a6c8a08.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.058000;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_d146cfa3a89f114255a315d8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_f32efe484ea677cd54822678.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_210815d58515b5992ea86a79.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.968000;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_a274257ef330b276ac53d07b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.968000;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_75c5309053a701780d732b23.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.058000;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_2c60e59ff723a999c705e72e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.945000;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_59b6da1703a1b673d3c05892.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.018000;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_f827d767727b09b91ac7d3ca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.947000;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_7cbd0b91a38fe0149480e67e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.058000;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_25cadfb1793cb94bc802aaa0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.058000;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_2fa0e2f4f355b88cfd6dc295.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.946000;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_fff5c7e33b5190b8487be7c9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.945000;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_d2c5cf65d35494ce50e60d3e.woff2')format("woff");}.fff{font-family:fff;line-height:0.727000;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_67508275aafb2cbb531f05e6.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.234000;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_60a1360e2f7b1843b52279eb.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.040000;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_fe2ade1386fd952460db078c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.946000;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_57ba9370043895d7abaec783.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.964000;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;}
.ma{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);}
.m13{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);}
.m9{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);}
.m1a{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);}
.m24{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);}
.m22{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);}
.m1c{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);}
.md{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);}
.mf{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);}
.me{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);}
.m16{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);}
.m8{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);}
.m17{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);}
.m3{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);}
.m4{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);}
.m10{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);}
.m1d{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);}
.m25{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);}
.m28{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);}
.m27{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);}
.m1b{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);}
.m26{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);}
.m12{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);}
.m14{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);}
.m15{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);}
.mb{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);}
.m1e{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);}
.m20{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);}
.m1f{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);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m23{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);}
.m19{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);}
.m6{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);}
.m2{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);}
.m21{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);}
.m5{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);}
.mc{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);}
.m1{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);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v4{vertical-align:-11.004000px;}
.v3{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000493px;}
.ls9{letter-spacing:0.012983px;}
.ls2{letter-spacing:2.987674px;}
.ls0{letter-spacing:2.989654px;}
.ls4{letter-spacing:8.966400px;}
.ls3{letter-spacing:13.449600px;}
.ls8{letter-spacing:14.530921px;}
.ls6{letter-spacing:18.196379px;}
.ls1{letter-spacing:35.865600px;}
.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;}
}
.ws73{word-spacing:-21.519300px;}
.ws1{word-spacing:-17.932800px;}
.wsd{word-spacing:-16.363650px;}
.ws50{word-spacing:-11.955150px;}
.ws1e{word-spacing:-7.049647px;}
.ws1d{word-spacing:-6.599670px;}
.ws26{word-spacing:-4.647277px;}
.ws1c{word-spacing:-4.519066px;}
.ws1b{word-spacing:-4.465267px;}
.ws1f{word-spacing:-4.349782px;}
.ws81{word-spacing:-4.254549px;}
.ws83{word-spacing:-3.992731px;}
.ws39{word-spacing:-3.927276px;}
.ws29{word-spacing:-3.730912px;}
.ws23{word-spacing:-3.600003px;}
.ws62{word-spacing:-3.338185px;}
.ws7e{word-spacing:-3.272730px;}
.ws3a{word-spacing:-3.010912px;}
.ws6c{word-spacing:-2.749093px;}
.ws6b{word-spacing:-2.618184px;}
.ws46{word-spacing:-2.487275px;}
.ws28{word-spacing:-2.225456px;}
.ws27{word-spacing:-2.160002px;}
.ws65{word-spacing:-2.094547px;}
.ws21{word-spacing:-1.963638px;}
.ws79{word-spacing:-1.832729px;}
.ws66{word-spacing:-1.701820px;}
.ws5a{word-spacing:-1.570910px;}
.ws52{word-spacing:-1.505456px;}
.ws33{word-spacing:-1.440001px;}
.wsf{word-spacing:-1.344960px;}
.ws34{word-spacing:-1.243637px;}
.ws44{word-spacing:-1.178183px;}
.ws6e{word-spacing:-1.112728px;}
.ws54{word-spacing:-1.047274px;}
.ws15{word-spacing:-0.981819px;}
.ws38{word-spacing:-0.916364px;}
.ws4d{word-spacing:-0.850910px;}
.ws13{word-spacing:-0.654546px;}
.ws55{word-spacing:-0.589091px;}
.ws4e{word-spacing:-0.523637px;}
.ws12{word-spacing:-0.392728px;}
.ws32{word-spacing:-0.327273px;}
.wsa{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.261818px;}
.ws3{word-spacing:-0.215194px;}
.ws30{word-spacing:-0.196364px;}
.wse{word-spacing:-0.161395px;}
.ws24{word-spacing:-0.130909px;}
.ws11{word-spacing:-0.065455px;}
.ws7b{word-spacing:-0.055637px;}
.ws0{word-spacing:0.000000px;}
.wsc{word-spacing:0.053798px;}
.ws1a{word-spacing:0.065455px;}
.ws9{word-spacing:0.107597px;}
.ws14{word-spacing:0.130909px;}
.ws5{word-spacing:0.161395px;}
.ws18{word-spacing:0.196364px;}
.ws19{word-spacing:0.261818px;}
.ws2b{word-spacing:0.327273px;}
.ws67{word-spacing:0.392728px;}
.ws5b{word-spacing:0.523637px;}
.ws48{word-spacing:0.654546px;}
.ws17{word-spacing:0.720001px;}
.ws5d{word-spacing:0.785455px;}
.ws4a{word-spacing:0.981819px;}
.ws2d{word-spacing:1.047274px;}
.ws60{word-spacing:1.112728px;}
.ws80{word-spacing:1.178183px;}
.ws16{word-spacing:1.309092px;}
.ws3b{word-spacing:1.440001px;}
.ws49{word-spacing:1.505456px;}
.ws2{word-spacing:1.560154px;}
.ws20{word-spacing:1.570910px;}
.ws82{word-spacing:1.636365px;}
.ws51{word-spacing:1.701820px;}
.ws8{word-spacing:1.721549px;}
.ws78{word-spacing:1.767274px;}
.ws4{word-spacing:1.775347px;}
.ws25{word-spacing:1.832729px;}
.ws36{word-spacing:2.094547px;}
.ws31{word-spacing:2.225456px;}
.ws3e{word-spacing:2.290911px;}
.ws6{word-spacing:2.420928px;}
.ws57{word-spacing:2.450800px;}
.ws7{word-spacing:2.474726px;}
.ws69{word-spacing:2.487275px;}
.ws56{word-spacing:2.510575px;}
.ws70{word-spacing:2.552729px;}
.ws45{word-spacing:2.618184px;}
.ws5c{word-spacing:2.749093px;}
.ws7f{word-spacing:2.814548px;}
.ws4b{word-spacing:2.880002px;}
.ws4c{word-spacing:3.010912px;}
.ws5f{word-spacing:3.141821px;}
.ws3c{word-spacing:3.272730px;}
.ws2f{word-spacing:3.403639px;}
.ws59{word-spacing:3.600003px;}
.ws68{word-spacing:3.730912px;}
.ws41{word-spacing:3.796367px;}
.wsb{word-spacing:3.819686px;}
.ws61{word-spacing:3.927276px;}
.ws6f{word-spacing:3.992731px;}
.ws3f{word-spacing:4.058185px;}
.ws6d{word-spacing:4.123640px;}
.ws47{word-spacing:4.189094px;}
.ws76{word-spacing:4.254549px;}
.ws35{word-spacing:4.385458px;}
.ws64{word-spacing:4.581822px;}
.ws40{word-spacing:4.712731px;}
.ws7a{word-spacing:4.909095px;}
.ws6a{word-spacing:4.974550px;}
.ws63{word-spacing:5.040004px;}
.ws3d{word-spacing:5.236368px;}
.ws71{word-spacing:5.301823px;}
.ws37{word-spacing:5.367277px;}
.ws4f{word-spacing:5.578801px;}
.ws2e{word-spacing:6.283642px;}
.ws7c{word-spacing:6.349096px;}
.ws7d{word-spacing:6.807278px;}
.ws22{word-spacing:7.003642px;}
.ws43{word-spacing:7.134551px;}
.ws2a{word-spacing:7.200006px;}
.ws42{word-spacing:7.396370px;}
.ws77{word-spacing:7.592734px;}
.ws72{word-spacing:8.509098px;}
.ws5e{word-spacing:12.436374px;}
.ws10{word-spacing:21.519300px;}
.ws74{word-spacing:34.887302px;}
.ws75{word-spacing:46.603675px;}
.ws53{word-spacing:330.738395px;}
.ws58{word-spacing:465.113944px;}
._32{margin-left:-8.426629px;}
._2{margin-left:-6.312346px;}
._a{margin-left:-4.712731px;}
._3{margin-left:-3.658291px;}
._0{margin-left:-2.065848px;}
._7{margin-left:-1.000661px;}
._1{width:1.032924px;}
._c{width:2.420928px;}
._b{width:3.550694px;}
._3a{width:5.562742px;}
._d{width:10.472755px;}
._f{width:13.810921px;}
._4{width:15.321790px;}
._8{width:17.018196px;}
._14{width:18.196379px;}
._9{width:19.570925px;}
._5{width:21.379474px;}
._6{width:23.014961px;}
._e{width:24.254957px;}
._12{width:25.364122px;}
._26{width:27.163659px;}
._24{width:28.669115px;}
._25{width:30.181754px;}
._27{width:32.858209px;}
._28{width:34.167301px;}
._11{width:35.865600px;}
._13{width:38.807411px;}
._29{width:40.843670px;}
._10{width:43.038600px;}
._38{width:45.934681px;}
._37{width:49.803784px;}
._39{width:50.937117px;}
._36{width:54.719117px;}
._33{width:57.411740px;}
._34{width:61.069142px;}
._16{width:71.670944px;}
._35{width:75.375000px;}
._2a{width:189.249550px;}
._19{width:245.079960px;}
._1e{width:259.007675px;}
._2b{width:268.622005px;}
._30{width:281.620702px;}
._2e{width:299.227112px;}
._21{width:300.671268px;}
._2d{width:323.625098px;}
._18{width:427.634642px;}
._1d{width:455.430296px;}
._15{width:479.101434px;}
._20{width:483.225950px;}
._2f{width:520.406374px;}
._2c{width:533.855884px;}
._31{width:547.723823px;}
._22{width:799.558426px;}
._17{width:862.203254px;}
._1b{width:907.453384px;}
._1a{width:914.686231px;}
._1f{width:944.753358px;}
._23{width:948.578996px;}
._1c{width:965.316164px;}
.fc4{color:transparent;}
.fc2{color:rgb(47,79,79);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:17.399130px;}
.fs8{font-size:26.398680px;}
.fs9{font-size:28.198590px;}
.fs3{font-size:35.865600px;}
.fsb{font-size:35.995320px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fsc{font-size:55.636800px;}
.fs7{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.599820px;}
.y36{bottom:9.599520px;}
.y33{bottom:11.099445px;}
.y35{bottom:17.249137px;}
.y32{bottom:21.448927px;}
.y30{bottom:45.570000px;}
.y37{bottom:49.493565px;}
.y31{bottom:58.510426px;}
.y72{bottom:111.472500px;}
.yc3{bottom:112.027500px;}
.y2f{bottom:112.828500px;}
.y100{bottom:113.512500px;}
.y125{bottom:113.649000px;}
.y64{bottom:117.499500px;}
.y18b{bottom:117.952500px;}
.y172{bottom:124.572000px;}
.y1ba{bottom:129.066000px;}
.y2e{bottom:129.870000px;}
.y14c{bottom:131.512500px;}
.y71{bottom:131.796000px;}
.yc2{bottom:132.351000px;}
.yff{bottom:133.836000px;}
.y124{bottom:133.972500px;}
.y63{bottom:137.823000px;}
.y171{bottom:144.895500px;}
.y2d{bottom:146.308500px;}
.y1b9{bottom:149.389500px;}
.y14b{bottom:151.836000px;}
.y70{bottom:152.119500px;}
.yc1{bottom:152.676000px;}
.yfe{bottom:154.159500px;}
.y123{bottom:154.296000px;}
.y18a{bottom:154.498500px;}
.y62{bottom:158.146500px;}
.y2c{bottom:162.747000px;}
.y170{bottom:165.219000px;}
.y1b8{bottom:169.713000px;}
.y14a{bottom:172.159500px;}
.y6f{bottom:172.444500px;}
.yc0{bottom:172.999500px;}
.yfd{bottom:174.483000px;}
.y61{bottom:178.470000px;}
.y2b{bottom:179.230500px;}
.y122{bottom:185.199000px;}
.y16f{bottom:185.542500px;}
.y1b7{bottom:190.036500px;}
.y149{bottom:192.484500px;}
.y9b{bottom:192.768000px;}
.ybf{bottom:193.323000px;}
.yfc{bottom:194.806500px;}
.y2a{bottom:195.931500px;}
.y60{bottom:198.793500px;}
.y16e{bottom:205.867500px;}
.y189{bottom:206.082000px;}
.ye9{bottom:208.989000px;}
.y1b6{bottom:210.361500px;}
.y148{bottom:212.808000px;}
.y9a{bottom:213.091500px;}
.ybe{bottom:213.646500px;}
.yfb{bottom:215.131500px;}
.y6e{bottom:218.748000px;}
.y5f{bottom:219.118500px;}
.y16d{bottom:226.191000px;}
.y188{bottom:226.405500px;}
.y121{bottom:228.444000px;}
.y1b5{bottom:230.685000px;}
.y147{bottom:233.131500px;}
.y99{bottom:233.415000px;}
.ybd{bottom:233.970000px;}
.y5e{bottom:239.442000px;}
.y16c{bottom:246.514500px;}
.y120{bottom:248.767500px;}
.y1b4{bottom:251.008500px;}
.y146{bottom:253.455000px;}
.ybc{bottom:254.295000px;}
.ye8{bottom:259.678500px;}
.yfa{bottom:261.996000px;}
.y187{bottom:262.950000px;}
.y29{bottom:263.842500px;}
.y98{bottom:264.318000px;}
.y16b{bottom:266.838000px;}
.y11f{bottom:269.091000px;}
.y5d{bottom:270.345000px;}
.y1b3{bottom:271.332000px;}
.y145{bottom:273.778500px;}
.ybb{bottom:274.618500px;}
.yf9{bottom:279.928500px;}
.ye7{bottom:280.002000px;}
.y28{bottom:284.166000px;}
.y16a{bottom:287.161500px;}
.y11e{bottom:289.414500px;}
.y5c{bottom:291.265500px;}
.y1b2{bottom:291.655500px;}
.y144{bottom:294.103500px;}
.yba{bottom:294.942000px;}
.ye6{bottom:300.325500px;}
.y27{bottom:304.491000px;}
.y169{bottom:307.486500px;}
.y97{bottom:307.773000px;}
.y11d{bottom:309.739500px;}
.y1b1{bottom:311.979000px;}
.y143{bottom:314.427000px;}
.y186{bottom:314.533500px;}
.yb9{bottom:315.265500px;}
.ye5{bottom:320.649000px;}
.y26{bottom:324.814500px;}
.y168{bottom:327.810000px;}
.y96{bottom:328.096500px;}
.y11c{bottom:330.063000px;}
.y1b0{bottom:332.304000px;}
.y142{bottom:334.750500px;}
.y5b{bottom:335.109000px;}
.yb8{bottom:335.589000px;}
.ye4{bottom:340.972500px;}
.y25{bottom:345.138000px;}
.y167{bottom:348.133500px;}
.y95{bottom:348.420000px;}
.y11b{bottom:350.386500px;}
.y185{bottom:351.079500px;}
.y1af{bottom:352.627500px;}
.y141{bottom:355.074000px;}
.y5a{bottom:355.432500px;}
.yb7{bottom:355.914000px;}
.ye3{bottom:361.297500px;}
.y24{bottom:365.461500px;}
.y166{bottom:368.457000px;}
.y94{bottom:368.743500px;}
.y11a{bottom:370.710000px;}
.y1ae{bottom:372.951000px;}
.y140{bottom:375.397500px;}
.y59{bottom:375.756000px;}
.y23{bottom:385.785000px;}
.yb6{bottom:386.815500px;}
.y165{bottom:388.780500px;}
.y93{bottom:389.067000px;}
.y119{bottom:391.033500px;}
.ye2{bottom:392.200500px;}
.y1ad{bottom:393.274500px;}
.y13f{bottom:395.722500px;}
.y58{bottom:396.081000px;}
.y184{bottom:402.663000px;}
.y22{bottom:406.110000px;}
.y164{bottom:409.105500px;}
.y92{bottom:409.392000px;}
.y118{bottom:411.358500px;}
.y1ac{bottom:413.598000px;}
.y13e{bottom:416.046000px;}
.y57{bottom:416.404500px;}
.yb5{bottom:417.718500px;}
.y183{bottom:422.986500px;}
.y21{bottom:426.433500px;}
.y163{bottom:429.429000px;}
.y91{bottom:429.715500px;}
.y117{bottom:431.682000px;}
.y1ab{bottom:433.923000px;}
.ye1{bottom:434.550000px;}
.y13d{bottom:436.369500px;}
.y56{bottom:436.728000px;}
.y182{bottom:443.310000px;}
.y20{bottom:446.757000px;}
.y162{bottom:449.752500px;}
.y90{bottom:450.039000px;}
.y116{bottom:452.005500px;}
.y1aa{bottom:454.246500px;}
.ye0{bottom:454.873500px;}
.y13c{bottom:456.693000px;}
.y55{bottom:457.051500px;}
.yb4{bottom:461.562000px;}
.y181{bottom:463.633500px;}
.y1f{bottom:467.080500px;}
.y161{bottom:470.076000px;}
.y8f{bottom:470.362500px;}
.y1a9{bottom:474.570000px;}
.ydf{bottom:475.198500px;}
.y13b{bottom:477.016500px;}
.y54{bottom:477.375000px;}
.yb3{bottom:481.885500px;}
.y115{bottom:482.908500px;}
.y1e{bottom:487.404000px;}
.y160{bottom:490.399500px;}
.y8e{bottom:490.686000px;}
.y1a8{bottom:494.893500px;}
.y13a{bottom:497.341500px;}
.y53{bottom:497.700000px;}
.y180{bottom:500.179500px;}
.yde{bottom:500.613000px;}
.y1d{bottom:507.727500px;}
.y15f{bottom:510.723000px;}
.ydc{bottom:511.837500px;}
.y1a7{bottom:515.217000px;}
.yb2{bottom:516.855000px;}
.y139{bottom:517.665000px;}
.y52{bottom:518.023500px;}
.ydd{bottom:523.495500px;}
.y114{bottom:526.153500px;}
.y8d{bottom:527.232000px;}
.y1c{bottom:528.052500px;}
.y1a6{bottom:535.542000px;}
.yb1{bottom:537.178500px;}
.y138{bottom:537.988500px;}
.y1cd{bottom:538.272000px;}
.y51{bottom:538.347000px;}
.y15e{bottom:541.626000px;}
.y113{bottom:546.477000px;}
.y17f{bottom:551.763000px;}
.y1a5{bottom:555.865500px;}
.ydb{bottom:556.495500px;}
.y137{bottom:558.312000px;}
.y1cc{bottom:558.595500px;}
.y50{bottom:558.670500px;}
.yb0{bottom:559.534500px;}
.y1b{bottom:564.597000px;}
.y112{bottom:566.800500px;}
.y17e{bottom:572.086500px;}
.y1a4{bottom:576.189000px;}
.yda{bottom:576.819000px;}
.y8c{bottom:578.427000px;}
.y136{bottom:578.635500px;}
.y1cb{bottom:578.920500px;}
.y4f{bottom:578.994000px;}
.yaf{bottom:579.858000px;}
.y15d{bottom:585.469500px;}
.y111{bottom:587.125500px;}
.y17d{bottom:592.410000px;}
.y1a3{bottom:596.512500px;}
.yd9{bottom:597.142500px;}
.y8b{bottom:598.750500px;}
.y135{bottom:598.960500px;}
.y1ca{bottom:599.244000px;}
.y4e{bottom:599.319000px;}
.yae{bottom:602.214000px;}
.y15c{bottom:605.793000px;}
.y110{bottom:607.449000px;}
.y17c{bottom:612.733500px;}
.y1a2{bottom:616.836000px;}
.yd8{bottom:617.466000px;}
.y8a{bottom:619.074000px;}
.y134{bottom:619.284000px;}
.y1c9{bottom:619.567500px;}
.yad{bottom:622.539000px;}
.y15b{bottom:626.116500px;}
.y10f{bottom:627.772500px;}
.y4d{bottom:630.220500px;}
.y17b{bottom:633.058500px;}
.yf8{bottom:635.724000px;}
.y1a1{bottom:637.161000px;}
.yd7{bottom:637.791000px;}
.y1a{bottom:638.751000px;}
.y89{bottom:639.397500px;}
.y133{bottom:639.607500px;}
.y1c8{bottom:639.891000px;}
.yac{bottom:644.895000px;}
.y15a{bottom:646.441500px;}
.y10e{bottom:648.096000px;}
.y17a{bottom:653.382000px;}
.y19{bottom:655.189500px;}
.yf7{bottom:656.047500px;}
.y1a0{bottom:657.484500px;}
.yd6{bottom:658.114500px;}
.y88{bottom:659.722500px;}
.y132{bottom:659.931000px;}
.y1c7{bottom:660.214500px;}
.y159{bottom:666.765000px;}
.y10d{bottom:668.419500px;}
.y18{bottom:671.628000px;}
.y179{bottom:673.705500px;}
.y4c{bottom:674.064000px;}
.yf6{bottom:676.371000px;}
.y19f{bottom:677.808000px;}
.yd5{bottom:678.438000px;}
.yab{bottom:679.863000px;}
.y87{bottom:680.046000px;}
.y131{bottom:680.254500px;}
.y1c6{bottom:680.539500px;}
.y158{bottom:687.088500px;}
.y10c{bottom:688.744500px;}
.y178{bottom:694.029000px;}
.y4b{bottom:694.387500px;}
.y19e{bottom:698.131500px;}
.yd4{bottom:698.761500px;}
.y17{bottom:699.406500px;}
.yaa{bottom:700.188000px;}
.y86{bottom:700.369500px;}
.y1c5{bottom:700.863000px;}
.yf5{bottom:707.274000px;}
.y157{bottom:707.412000px;}
.y10b{bottom:709.068000px;}
.y130{bottom:711.157500px;}
.y177{bottom:714.352500px;}
.y4a{bottom:714.711000px;}
.y16{bottom:715.843500px;}
.y19d{bottom:718.455000px;}
.ya9{bottom:720.511500px;}
.y1c4{bottom:721.186500px;}
.y156{bottom:727.735500px;}
.y10a{bottom:729.391500px;}
.yd3{bottom:729.664500px;}
.y85{bottom:731.272500px;}
.y15{bottom:732.282000px;}
.y176{bottom:734.677500px;}
.y49{bottom:735.036000px;}
.y19c{bottom:738.780000px;}
.ya8{bottom:740.835000px;}
.y1c3{bottom:741.510000px;}
.y155{bottom:748.060500px;}
.y14{bottom:748.720500px;}
.yf4{bottom:750.519000px;}
.y12f{bottom:755.001000px;}
.y48{bottom:755.359500px;}
.y19b{bottom:759.103500px;}
.y109{bottom:760.294500px;}
.yd2{bottom:760.567500px;}
.y1c2{bottom:761.833500px;}
.y13{bottom:765.159000px;}
.y154{bottom:768.384000px;}
.yf3{bottom:770.842500px;}
.ya7{bottom:771.738000px;}
.y84{bottom:774.726000px;}
.y12e{bottom:775.324500px;}
.y47{bottom:775.683000px;}
.y19a{bottom:779.427000px;}
.y12{bottom:781.597500px;}
.y1c1{bottom:782.158500px;}
.y153{bottom:788.707500px;}
.yf2{bottom:791.167500px;}
.y83{bottom:795.051000px;}
.y12d{bottom:795.648000px;}
.y46{bottom:796.006500px;}
.y11{bottom:798.036000px;}
.y199{bottom:799.750500px;}
.y1c0{bottom:802.482000px;}
.yd1{bottom:803.515500px;}
.y108{bottom:803.539500px;}
.y152{bottom:809.031000px;}
.yf1{bottom:811.491000px;}
.y10{bottom:814.474500px;}
.y82{bottom:815.374500px;}
.ya6{bottom:815.580000px;}
.y12c{bottom:815.971500px;}
.y45{bottom:816.330000px;}
.y198{bottom:820.074000px;}
.y1bf{bottom:822.805500px;}
.yd0{bottom:823.839000px;}
.y107{bottom:823.863000px;}
.y151{bottom:829.354500px;}
.y6d{bottom:829.620000px;}
.yf{bottom:830.913000px;}
.yf0{bottom:831.814500px;}
.y81{bottom:835.698000px;}
.ya5{bottom:835.905000px;}
.y12b{bottom:836.296500px;}
.y44{bottom:836.655000px;}
.y197{bottom:840.399000px;}
.y1be{bottom:843.129000px;}
.y106{bottom:844.186500px;}
.ycf{bottom:844.603500px;}
.ye{bottom:847.351500px;}
.y150{bottom:849.679500px;}
.y6c{bottom:849.943500px;}
.yef{bottom:852.138000px;}
.y80{bottom:856.021500px;}
.ya4{bottom:856.228500px;}
.y12a{bottom:856.620000px;}
.y196{bottom:860.722500px;}
.y1bd{bottom:863.452500px;}
.yd{bottom:863.790000px;}
.y105{bottom:864.511500px;}
.yce{bottom:864.927000px;}
.y6b{bottom:870.267000px;}
.yee{bottom:872.461500px;}
.y43{bottom:873.199500px;}
.ya3{bottom:876.552000px;}
.y129{bottom:876.943500px;}
.yc{bottom:880.227000px;}
.y14f{bottom:880.581000px;}
.y195{bottom:881.046000px;}
.y1bc{bottom:883.777500px;}
.y104{bottom:884.835000px;}
.ycd{bottom:885.691500px;}
.y6a{bottom:890.590500px;}
.yb{bottom:896.665500px;}
.ya2{bottom:896.875500px;}
.y175{bottom:897.267000px;}
.y194{bottom:901.369500px;}
.yed{bottom:903.364500px;}
.y1bb{bottom:904.101000px;}
.ycc{bottom:906.015000px;}
.y7f{bottom:910.207500px;}
.y69{bottom:910.915500px;}
.ya{bottom:913.104000px;}
.y128{bottom:913.488000px;}
.y103{bottom:915.738000px;}
.ya1{bottom:917.199000px;}
.y174{bottom:917.590500px;}
.y193{bottom:921.693000px;}
.y14e{bottom:924.424500px;}
.y42{bottom:924.783000px;}
.ycb{bottom:926.778000px;}
.y7e{bottom:928.141500px;}
.y9{bottom:929.542500px;}
.y68{bottom:931.239000px;}
.y192{bottom:942.018000px;}
.y14d{bottom:944.748000px;}
.y41{bottom:945.106500px;}
.y8{bottom:945.981000px;}
.y7d{bottom:946.074000px;}
.yec{bottom:946.609500px;}
.yca{bottom:947.101500px;}
.ya0{bottom:948.102000px;}
.y173{bottom:954.136500px;}
.y102{bottom:959.580000px;}
.y67{bottom:962.142000px;}
.y191{bottom:962.341500px;}
.y7{bottom:962.419500px;}
.y7c{bottom:964.006500px;}
.y127{bottom:965.071500px;}
.yeb{bottom:966.934500px;}
.y40{bottom:967.462500px;}
.yc9{bottom:973.114500px;}
.y6{bottom:978.858000px;}
.y101{bottom:979.903500px;}
.y7b{bottom:981.939000px;}
.y190{bottom:982.665000px;}
.y126{bottom:985.396500px;}
.y3f{bottom:987.787500px;}
.y9f{bottom:991.945500px;}
.yc8{bottom:993.438000px;}
.y5{bottom:995.296500px;}
.yea{bottom:997.837500px;}
.y7a{bottom:999.871500px;}
.y18f{bottom:1002.988500px;}
.y66{bottom:1005.720000px;}
.y3e{bottom:1008.111000px;}
.y9e{bottom:1012.269000px;}
.yc7{bottom:1013.761500px;}
.y79{bottom:1017.804000px;}
.y18e{bottom:1023.312000px;}
.y65{bottom:1026.043500px;}
.y9d{bottom:1032.592500px;}
.yc6{bottom:1034.085000px;}
.y78{bottom:1035.738000px;}
.y4{bottom:1046.140500px;}
.y3d{bottom:1046.367000px;}
.y77{bottom:1053.670500px;}
.yc5{bottom:1054.408500px;}
.y18d{bottom:1059.858000px;}
.y9c{bottom:1063.495500px;}
.y3c{bottom:1066.690500px;}
.y76{bottom:1071.603000px;}
.y3{bottom:1074.798000px;}
.yc4{bottom:1085.311500px;}
.y3b{bottom:1087.015500px;}
.y75{bottom:1097.751000px;}
.y3a{bottom:1107.339000px;}
.y18c{bottom:1111.441500px;}
.y2{bottom:1113.652500px;}
.y74{bottom:1127.169000px;}
.y39{bottom:1127.662500px;}
.y73{bottom:1145.101500px;}
.y1{bottom:1146.529500px;}
.y38{bottom:1147.986000px;}
.h11{height:13.919304px;}
.hf{height:21.118944px;}
.h10{height:22.558872px;}
.h4{height:25.392845px;}
.h12{height:26.240588px;}
.he{height:26.698665px;}
.hc{height:29.409792px;}
.h9{height:38.089267px;}
.h15{height:40.447954px;}
.hd{height:42.321125px;}
.h6{height:44.114688px;}
.h14{height:46.145493px;}
.hb{height:46.212826px;}
.h5{height:46.341857px;}
.ha{height:47.073600px;}
.h13{height:50.785690px;}
.h8{height:53.672772px;}
.h3{height:59.890985px;}
.h7{height:60.942658px;}
.h2{height:73.131019px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:108.144593px;}
.w3{width:892.383975px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:12.599370px;}
.x12{left:19.497465px;}
.xe{left:20.848958px;}
.x11{left:61.346932px;}
.x10{left:71.246437px;}
.x1{left:107.226000px;}
.xb{left:108.747000px;}
.x1e{left:113.709000px;}
.x49{left:115.609500px;}
.xa{left:124.363500px;}
.x1f{left:128.926500px;}
.x26{left:133.488000px;}
.x13{left:134.983500px;}
.x27{left:137.469000px;}
.x15{left:142.557000px;}
.x17{left:144.352500px;}
.x14{left:148.909500px;}
.x16{left:150.166500px;}
.x18{left:151.960500px;}
.x45{left:159.300000px;}
.x1b{left:165.082500px;}
.xc{left:172.126500px;}
.x2{left:175.122000px;}
.x1c{left:180.361500px;}
.x1d{left:187.969500px;}
.x3{left:195.870000px;}
.x4{left:201.064500px;}
.x5{left:208.672500px;}
.x38{left:209.962500px;}
.x42{left:222.568500px;}
.x46{left:237.235500px;}
.x39{left:239.685000px;}
.x3a{left:277.408500px;}
.x41{left:293.293500px;}
.x3f{left:318.621000px;}
.x40{left:333.840000px;}
.x47{left:360.021000px;}
.x6{left:374.002500px;}
.x32{left:375.228000px;}
.x7{left:381.612000px;}
.x34{left:385.963500px;}
.x33{left:390.445500px;}
.x35{left:418.092000px;}
.x22{left:425.889000px;}
.x36{left:435.019500px;}
.xd{left:439.507500px;}
.x23{left:441.106500px;}
.x43{left:443.443500px;}
.x44{left:458.662500px;}
.x8{left:502.395000px;}
.x20{left:505.138500px;}
.x9{left:510.004500px;}
.x21{left:520.357500px;}
.x4b{left:561.309000px;}
.x3d{left:605.926500px;}
.x28{left:616.756500px;}
.x3e{left:621.144000px;}
.x29{left:631.975500px;}
.x48{left:664.848000px;}
.x19{left:672.474000px;}
.x1a{left:680.083500px;}
.x24{left:681.864000px;}
.x3b{left:684.631500px;}
.x25{left:697.081500px;}
.x2a{left:702.024000px;}
.x2b{left:717.241500px;}
.x2c{left:718.681500px;}
.x2d{left:733.899000px;}
.x2e{left:740.829000px;}
.x3c{left:747.562500px;}
.x2f{left:756.048000px;}
.x30{left:762.978000px;}
.x4a{left:764.439000px;}
.x37{left:768.534000px;}
.x31{left:778.197000px;}
.x4c{left:783.855000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-9.781333pt;}
.v3{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000438pt;}
.ls9{letter-spacing:0.011541pt;}
.ls2{letter-spacing:2.655710pt;}
.ls0{letter-spacing:2.657470pt;}
.ls4{letter-spacing:7.970133pt;}
.ls3{letter-spacing:11.955200pt;}
.ls8{letter-spacing:12.916374pt;}
.ls6{letter-spacing:16.174559pt;}
.ls1{letter-spacing:31.880533pt;}
.ws73{word-spacing:-19.128267pt;}
.ws1{word-spacing:-15.940267pt;}
.wsd{word-spacing:-14.545467pt;}
.ws50{word-spacing:-10.626800pt;}
.ws1e{word-spacing:-6.266353pt;}
.ws1d{word-spacing:-5.866373pt;}
.ws26{word-spacing:-4.130913pt;}
.ws1c{word-spacing:-4.016947pt;}
.ws1b{word-spacing:-3.969126pt;}
.ws1f{word-spacing:-3.866473pt;}
.ws81{word-spacing:-3.781821pt;}
.ws83{word-spacing:-3.549094pt;}
.ws39{word-spacing:-3.490912pt;}
.ws29{word-spacing:-3.316366pt;}
.ws23{word-spacing:-3.200003pt;}
.ws62{word-spacing:-2.967275pt;}
.ws7e{word-spacing:-2.909093pt;}
.ws3a{word-spacing:-2.676366pt;}
.ws6c{word-spacing:-2.443638pt;}
.ws6b{word-spacing:-2.327275pt;}
.ws46{word-spacing:-2.210911pt;}
.ws28{word-spacing:-1.978183pt;}
.ws27{word-spacing:-1.920002pt;}
.ws65{word-spacing:-1.861820pt;}
.ws21{word-spacing:-1.745456pt;}
.ws79{word-spacing:-1.629092pt;}
.ws66{word-spacing:-1.512729pt;}
.ws5a{word-spacing:-1.396365pt;}
.ws52{word-spacing:-1.338183pt;}
.ws33{word-spacing:-1.280001pt;}
.wsf{word-spacing:-1.195520pt;}
.ws34{word-spacing:-1.105455pt;}
.ws44{word-spacing:-1.047274pt;}
.ws6e{word-spacing:-0.989092pt;}
.ws54{word-spacing:-0.930910pt;}
.ws15{word-spacing:-0.872728pt;}
.ws38{word-spacing:-0.814546pt;}
.ws4d{word-spacing:-0.756364pt;}
.ws13{word-spacing:-0.581819pt;}
.ws55{word-spacing:-0.523637pt;}
.ws4e{word-spacing:-0.465455pt;}
.ws12{word-spacing:-0.349091pt;}
.ws32{word-spacing:-0.290909pt;}
.wsa{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.232727pt;}
.ws3{word-spacing:-0.191283pt;}
.ws30{word-spacing:-0.174546pt;}
.wse{word-spacing:-0.143462pt;}
.ws24{word-spacing:-0.116364pt;}
.ws11{word-spacing:-0.058182pt;}
.ws7b{word-spacing:-0.049455pt;}
.ws0{word-spacing:0.000000pt;}
.wsc{word-spacing:0.047821pt;}
.ws1a{word-spacing:0.058182pt;}
.ws9{word-spacing:0.095642pt;}
.ws14{word-spacing:0.116364pt;}
.ws5{word-spacing:0.143462pt;}
.ws18{word-spacing:0.174546pt;}
.ws19{word-spacing:0.232727pt;}
.ws2b{word-spacing:0.290909pt;}
.ws67{word-spacing:0.349091pt;}
.ws5b{word-spacing:0.465455pt;}
.ws48{word-spacing:0.581819pt;}
.ws17{word-spacing:0.640001pt;}
.ws5d{word-spacing:0.698182pt;}
.ws4a{word-spacing:0.872728pt;}
.ws2d{word-spacing:0.930910pt;}
.ws60{word-spacing:0.989092pt;}
.ws80{word-spacing:1.047274pt;}
.ws16{word-spacing:1.163637pt;}
.ws3b{word-spacing:1.280001pt;}
.ws49{word-spacing:1.338183pt;}
.ws2{word-spacing:1.386803pt;}
.ws20{word-spacing:1.396365pt;}
.ws82{word-spacing:1.454547pt;}
.ws51{word-spacing:1.512729pt;}
.ws8{word-spacing:1.530266pt;}
.ws78{word-spacing:1.570910pt;}
.ws4{word-spacing:1.578086pt;}
.ws25{word-spacing:1.629092pt;}
.ws36{word-spacing:1.861820pt;}
.ws31{word-spacing:1.978183pt;}
.ws3e{word-spacing:2.036365pt;}
.ws6{word-spacing:2.151936pt;}
.ws57{word-spacing:2.178489pt;}
.ws7{word-spacing:2.199757pt;}
.ws69{word-spacing:2.210911pt;}
.ws56{word-spacing:2.231622pt;}
.ws70{word-spacing:2.269093pt;}
.ws45{word-spacing:2.327275pt;}
.ws5c{word-spacing:2.443638pt;}
.ws7f{word-spacing:2.501820pt;}
.ws4b{word-spacing:2.560002pt;}
.ws4c{word-spacing:2.676366pt;}
.ws5f{word-spacing:2.792730pt;}
.ws3c{word-spacing:2.909093pt;}
.ws2f{word-spacing:3.025457pt;}
.ws59{word-spacing:3.200003pt;}
.ws68{word-spacing:3.316366pt;}
.ws41{word-spacing:3.374548pt;}
.wsb{word-spacing:3.395277pt;}
.ws61{word-spacing:3.490912pt;}
.ws6f{word-spacing:3.549094pt;}
.ws3f{word-spacing:3.607276pt;}
.ws6d{word-spacing:3.665458pt;}
.ws47{word-spacing:3.723639pt;}
.ws76{word-spacing:3.781821pt;}
.ws35{word-spacing:3.898185pt;}
.ws64{word-spacing:4.072731pt;}
.ws40{word-spacing:4.189094pt;}
.ws7a{word-spacing:4.363640pt;}
.ws6a{word-spacing:4.421822pt;}
.ws63{word-spacing:4.480004pt;}
.ws3d{word-spacing:4.654549pt;}
.ws71{word-spacing:4.712731pt;}
.ws37{word-spacing:4.770913pt;}
.ws4f{word-spacing:4.958934pt;}
.ws2e{word-spacing:5.585459pt;}
.ws7c{word-spacing:5.643641pt;}
.ws7d{word-spacing:6.050914pt;}
.ws22{word-spacing:6.225460pt;}
.ws43{word-spacing:6.341823pt;}
.ws2a{word-spacing:6.400005pt;}
.ws42{word-spacing:6.574551pt;}
.ws77{word-spacing:6.749097pt;}
.ws72{word-spacing:7.563643pt;}
.ws5e{word-spacing:11.054555pt;}
.ws10{word-spacing:19.128267pt;}
.ws74{word-spacing:31.010935pt;}
.ws75{word-spacing:41.425489pt;}
.ws53{word-spacing:293.989684pt;}
.ws58{word-spacing:413.434617pt;}
._32{margin-left:-7.490337pt;}
._2{margin-left:-5.610974pt;}
._a{margin-left:-4.189094pt;}
._3{margin-left:-3.251814pt;}
._0{margin-left:-1.836309pt;}
._7{margin-left:-0.889476pt;}
._1{width:0.918155pt;}
._c{width:2.151936pt;}
._b{width:3.156173pt;}
._3a{width:4.944659pt;}
._d{width:9.309116pt;}
._f{width:12.276374pt;}
._4{width:13.619369pt;}
._8{width:15.127285pt;}
._14{width:16.174559pt;}
._9{width:17.396378pt;}
._5{width:19.003977pt;}
._6{width:20.457743pt;}
._e{width:21.559962pt;}
._12{width:22.545886pt;}
._26{width:24.145475pt;}
._24{width:25.483658pt;}
._25{width:26.828226pt;}
._27{width:29.207297pt;}
._28{width:30.370934pt;}
._11{width:31.880533pt;}
._13{width:34.495477pt;}
._29{width:36.305485pt;}
._10{width:38.256533pt;}
._38{width:40.830828pt;}
._37{width:44.270030pt;}
._39{width:45.277437pt;}
._36{width:48.639215pt;}
._33{width:51.032658pt;}
._34{width:54.283682pt;}
._16{width:63.707506pt;}
._35{width:67.000000pt;}
._2a{width:168.221822pt;}
._19{width:217.848853pt;}
._1e{width:230.229044pt;}
._2b{width:238.775116pt;}
._30{width:250.329513pt;}
._2e{width:265.979655pt;}
._21{width:267.263349pt;}
._2d{width:287.666754pt;}
._18{width:380.119682pt;}
._1d{width:404.826930pt;}
._15{width:425.867941pt;}
._20{width:429.534178pt;}
._2f{width:462.583443pt;}
._2c{width:474.538563pt;}
._31{width:486.865620pt;}
._22{width:710.718601pt;}
._17{width:766.402893pt;}
._1b{width:806.625230pt;}
._1a{width:813.054428pt;}
._1f{width:839.780763pt;}
._23{width:843.181330pt;}
._1c{width:858.058813pt;}
.fsa{font-size:15.465893pt;}
.fs8{font-size:23.465493pt;}
.fs9{font-size:25.065413pt;}
.fs3{font-size:31.880533pt;}
.fsb{font-size:31.995840pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fsc{font-size:49.454933pt;}
.fs7{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:3.199840pt;}
.y36{bottom:8.532907pt;}
.y33{bottom:9.866173pt;}
.y35{bottom:15.332567pt;}
.y32{bottom:19.065713pt;}
.y30{bottom:40.506667pt;}
.y37{bottom:43.994280pt;}
.y31{bottom:52.009267pt;}
.y72{bottom:99.086667pt;}
.yc3{bottom:99.580000pt;}
.y2f{bottom:100.292000pt;}
.y100{bottom:100.900000pt;}
.y125{bottom:101.021333pt;}
.y64{bottom:104.444000pt;}
.y18b{bottom:104.846667pt;}
.y172{bottom:110.730667pt;}
.y1ba{bottom:114.725333pt;}
.y2e{bottom:115.440000pt;}
.y14c{bottom:116.900000pt;}
.y71{bottom:117.152000pt;}
.yc2{bottom:117.645333pt;}
.yff{bottom:118.965333pt;}
.y124{bottom:119.086667pt;}
.y63{bottom:122.509333pt;}
.y171{bottom:128.796000pt;}
.y2d{bottom:130.052000pt;}
.y1b9{bottom:132.790667pt;}
.y14b{bottom:134.965333pt;}
.y70{bottom:135.217333pt;}
.yc1{bottom:135.712000pt;}
.yfe{bottom:137.030667pt;}
.y123{bottom:137.152000pt;}
.y18a{bottom:137.332000pt;}
.y62{bottom:140.574667pt;}
.y2c{bottom:144.664000pt;}
.y170{bottom:146.861333pt;}
.y1b8{bottom:150.856000pt;}
.y14a{bottom:153.030667pt;}
.y6f{bottom:153.284000pt;}
.yc0{bottom:153.777333pt;}
.yfd{bottom:155.096000pt;}
.y61{bottom:158.640000pt;}
.y2b{bottom:159.316000pt;}
.y122{bottom:164.621333pt;}
.y16f{bottom:164.926667pt;}
.y1b7{bottom:168.921333pt;}
.y149{bottom:171.097333pt;}
.y9b{bottom:171.349333pt;}
.ybf{bottom:171.842667pt;}
.yfc{bottom:173.161333pt;}
.y2a{bottom:174.161333pt;}
.y60{bottom:176.705333pt;}
.y16e{bottom:182.993333pt;}
.y189{bottom:183.184000pt;}
.ye9{bottom:185.768000pt;}
.y1b6{bottom:186.988000pt;}
.y148{bottom:189.162667pt;}
.y9a{bottom:189.414667pt;}
.ybe{bottom:189.908000pt;}
.yfb{bottom:191.228000pt;}
.y6e{bottom:194.442667pt;}
.y5f{bottom:194.772000pt;}
.y16d{bottom:201.058667pt;}
.y188{bottom:201.249333pt;}
.y121{bottom:203.061333pt;}
.y1b5{bottom:205.053333pt;}
.y147{bottom:207.228000pt;}
.y99{bottom:207.480000pt;}
.ybd{bottom:207.973333pt;}
.y5e{bottom:212.837333pt;}
.y16c{bottom:219.124000pt;}
.y120{bottom:221.126667pt;}
.y1b4{bottom:223.118667pt;}
.y146{bottom:225.293333pt;}
.ybc{bottom:226.040000pt;}
.ye8{bottom:230.825333pt;}
.yfa{bottom:232.885333pt;}
.y187{bottom:233.733333pt;}
.y29{bottom:234.526667pt;}
.y98{bottom:234.949333pt;}
.y16b{bottom:237.189333pt;}
.y11f{bottom:239.192000pt;}
.y5d{bottom:240.306667pt;}
.y1b3{bottom:241.184000pt;}
.y145{bottom:243.358667pt;}
.ybb{bottom:244.105333pt;}
.yf9{bottom:248.825333pt;}
.ye7{bottom:248.890667pt;}
.y28{bottom:252.592000pt;}
.y16a{bottom:255.254667pt;}
.y11e{bottom:257.257333pt;}
.y5c{bottom:258.902667pt;}
.y1b2{bottom:259.249333pt;}
.y144{bottom:261.425333pt;}
.yba{bottom:262.170667pt;}
.ye6{bottom:266.956000pt;}
.y27{bottom:270.658667pt;}
.y169{bottom:273.321333pt;}
.y97{bottom:273.576000pt;}
.y11d{bottom:275.324000pt;}
.y1b1{bottom:277.314667pt;}
.y143{bottom:279.490667pt;}
.y186{bottom:279.585333pt;}
.yb9{bottom:280.236000pt;}
.ye5{bottom:285.021333pt;}
.y26{bottom:288.724000pt;}
.y168{bottom:291.386667pt;}
.y96{bottom:291.641333pt;}
.y11c{bottom:293.389333pt;}
.y1b0{bottom:295.381333pt;}
.y142{bottom:297.556000pt;}
.y5b{bottom:297.874667pt;}
.yb8{bottom:298.301333pt;}
.ye4{bottom:303.086667pt;}
.y25{bottom:306.789333pt;}
.y167{bottom:309.452000pt;}
.y95{bottom:309.706667pt;}
.y11b{bottom:311.454667pt;}
.y185{bottom:312.070667pt;}
.y1af{bottom:313.446667pt;}
.y141{bottom:315.621333pt;}
.y5a{bottom:315.940000pt;}
.yb7{bottom:316.368000pt;}
.ye3{bottom:321.153333pt;}
.y24{bottom:324.854667pt;}
.y166{bottom:327.517333pt;}
.y94{bottom:327.772000pt;}
.y11a{bottom:329.520000pt;}
.y1ae{bottom:331.512000pt;}
.y140{bottom:333.686667pt;}
.y59{bottom:334.005333pt;}
.y23{bottom:342.920000pt;}
.yb6{bottom:343.836000pt;}
.y165{bottom:345.582667pt;}
.y93{bottom:345.837333pt;}
.y119{bottom:347.585333pt;}
.ye2{bottom:348.622667pt;}
.y1ad{bottom:349.577333pt;}
.y13f{bottom:351.753333pt;}
.y58{bottom:352.072000pt;}
.y184{bottom:357.922667pt;}
.y22{bottom:360.986667pt;}
.y164{bottom:363.649333pt;}
.y92{bottom:363.904000pt;}
.y118{bottom:365.652000pt;}
.y1ac{bottom:367.642667pt;}
.y13e{bottom:369.818667pt;}
.y57{bottom:370.137333pt;}
.yb5{bottom:371.305333pt;}
.y183{bottom:375.988000pt;}
.y21{bottom:379.052000pt;}
.y163{bottom:381.714667pt;}
.y91{bottom:381.969333pt;}
.y117{bottom:383.717333pt;}
.y1ab{bottom:385.709333pt;}
.ye1{bottom:386.266667pt;}
.y13d{bottom:387.884000pt;}
.y56{bottom:388.202667pt;}
.y182{bottom:394.053333pt;}
.y20{bottom:397.117333pt;}
.y162{bottom:399.780000pt;}
.y90{bottom:400.034667pt;}
.y116{bottom:401.782667pt;}
.y1aa{bottom:403.774667pt;}
.ye0{bottom:404.332000pt;}
.y13c{bottom:405.949333pt;}
.y55{bottom:406.268000pt;}
.yb4{bottom:410.277333pt;}
.y181{bottom:412.118667pt;}
.y1f{bottom:415.182667pt;}
.y161{bottom:417.845333pt;}
.y8f{bottom:418.100000pt;}
.y1a9{bottom:421.840000pt;}
.ydf{bottom:422.398667pt;}
.y13b{bottom:424.014667pt;}
.y54{bottom:424.333333pt;}
.yb3{bottom:428.342667pt;}
.y115{bottom:429.252000pt;}
.y1e{bottom:433.248000pt;}
.y160{bottom:435.910667pt;}
.y8e{bottom:436.165333pt;}
.y1a8{bottom:439.905333pt;}
.y13a{bottom:442.081333pt;}
.y53{bottom:442.400000pt;}
.y180{bottom:444.604000pt;}
.yde{bottom:444.989333pt;}
.y1d{bottom:451.313333pt;}
.y15f{bottom:453.976000pt;}
.ydc{bottom:454.966667pt;}
.y1a7{bottom:457.970667pt;}
.yb2{bottom:459.426667pt;}
.y139{bottom:460.146667pt;}
.y52{bottom:460.465333pt;}
.ydd{bottom:465.329333pt;}
.y114{bottom:467.692000pt;}
.y8d{bottom:468.650667pt;}
.y1c{bottom:469.380000pt;}
.y1a6{bottom:476.037333pt;}
.yb1{bottom:477.492000pt;}
.y138{bottom:478.212000pt;}
.y1cd{bottom:478.464000pt;}
.y51{bottom:478.530667pt;}
.y15e{bottom:481.445333pt;}
.y113{bottom:485.757333pt;}
.y17f{bottom:490.456000pt;}
.y1a5{bottom:494.102667pt;}
.ydb{bottom:494.662667pt;}
.y137{bottom:496.277333pt;}
.y1cc{bottom:496.529333pt;}
.y50{bottom:496.596000pt;}
.yb0{bottom:497.364000pt;}
.y1b{bottom:501.864000pt;}
.y112{bottom:503.822667pt;}
.y17e{bottom:508.521333pt;}
.y1a4{bottom:512.168000pt;}
.yda{bottom:512.728000pt;}
.y8c{bottom:514.157333pt;}
.y136{bottom:514.342667pt;}
.y1cb{bottom:514.596000pt;}
.y4f{bottom:514.661333pt;}
.yaf{bottom:515.429333pt;}
.y15d{bottom:520.417333pt;}
.y111{bottom:521.889333pt;}
.y17d{bottom:526.586667pt;}
.y1a3{bottom:530.233333pt;}
.yd9{bottom:530.793333pt;}
.y8b{bottom:532.222667pt;}
.y135{bottom:532.409333pt;}
.y1ca{bottom:532.661333pt;}
.y4e{bottom:532.728000pt;}
.yae{bottom:535.301333pt;}
.y15c{bottom:538.482667pt;}
.y110{bottom:539.954667pt;}
.y17c{bottom:544.652000pt;}
.y1a2{bottom:548.298667pt;}
.yd8{bottom:548.858667pt;}
.y8a{bottom:550.288000pt;}
.y134{bottom:550.474667pt;}
.y1c9{bottom:550.726667pt;}
.yad{bottom:553.368000pt;}
.y15b{bottom:556.548000pt;}
.y10f{bottom:558.020000pt;}
.y4d{bottom:560.196000pt;}
.y17b{bottom:562.718667pt;}
.yf8{bottom:565.088000pt;}
.y1a1{bottom:566.365333pt;}
.yd7{bottom:566.925333pt;}
.y1a{bottom:567.778667pt;}
.y89{bottom:568.353333pt;}
.y133{bottom:568.540000pt;}
.y1c8{bottom:568.792000pt;}
.yac{bottom:573.240000pt;}
.y15a{bottom:574.614667pt;}
.y10e{bottom:576.085333pt;}
.y17a{bottom:580.784000pt;}
.y19{bottom:582.390667pt;}
.yf7{bottom:583.153333pt;}
.y1a0{bottom:584.430667pt;}
.yd6{bottom:584.990667pt;}
.y88{bottom:586.420000pt;}
.y132{bottom:586.605333pt;}
.y1c7{bottom:586.857333pt;}
.y159{bottom:592.680000pt;}
.y10d{bottom:594.150667pt;}
.y18{bottom:597.002667pt;}
.y179{bottom:598.849333pt;}
.y4c{bottom:599.168000pt;}
.yf6{bottom:601.218667pt;}
.y19f{bottom:602.496000pt;}
.yd5{bottom:603.056000pt;}
.yab{bottom:604.322667pt;}
.y87{bottom:604.485333pt;}
.y131{bottom:604.670667pt;}
.y1c6{bottom:604.924000pt;}
.y158{bottom:610.745333pt;}
.y10c{bottom:612.217333pt;}
.y178{bottom:616.914667pt;}
.y4b{bottom:617.233333pt;}
.y19e{bottom:620.561333pt;}
.yd4{bottom:621.121333pt;}
.y17{bottom:621.694667pt;}
.yaa{bottom:622.389333pt;}
.y86{bottom:622.550667pt;}
.y1c5{bottom:622.989333pt;}
.yf5{bottom:628.688000pt;}
.y157{bottom:628.810667pt;}
.y10b{bottom:630.282667pt;}
.y130{bottom:632.140000pt;}
.y177{bottom:634.980000pt;}
.y4a{bottom:635.298667pt;}
.y16{bottom:636.305333pt;}
.y19d{bottom:638.626667pt;}
.ya9{bottom:640.454667pt;}
.y1c4{bottom:641.054667pt;}
.y156{bottom:646.876000pt;}
.y10a{bottom:648.348000pt;}
.yd3{bottom:648.590667pt;}
.y85{bottom:650.020000pt;}
.y15{bottom:650.917333pt;}
.y176{bottom:653.046667pt;}
.y49{bottom:653.365333pt;}
.y19c{bottom:656.693333pt;}
.ya8{bottom:658.520000pt;}
.y1c3{bottom:659.120000pt;}
.y155{bottom:664.942667pt;}
.y14{bottom:665.529333pt;}
.yf4{bottom:667.128000pt;}
.y12f{bottom:671.112000pt;}
.y48{bottom:671.430667pt;}
.y19b{bottom:674.758667pt;}
.y109{bottom:675.817333pt;}
.yd2{bottom:676.060000pt;}
.y1c2{bottom:677.185333pt;}
.y13{bottom:680.141333pt;}
.y154{bottom:683.008000pt;}
.yf3{bottom:685.193333pt;}
.ya7{bottom:685.989333pt;}
.y84{bottom:688.645333pt;}
.y12e{bottom:689.177333pt;}
.y47{bottom:689.496000pt;}
.y19a{bottom:692.824000pt;}
.y12{bottom:694.753333pt;}
.y1c1{bottom:695.252000pt;}
.y153{bottom:701.073333pt;}
.yf2{bottom:703.260000pt;}
.y83{bottom:706.712000pt;}
.y12d{bottom:707.242667pt;}
.y46{bottom:707.561333pt;}
.y11{bottom:709.365333pt;}
.y199{bottom:710.889333pt;}
.y1c0{bottom:713.317333pt;}
.yd1{bottom:714.236000pt;}
.y108{bottom:714.257333pt;}
.y152{bottom:719.138667pt;}
.yf1{bottom:721.325333pt;}
.y10{bottom:723.977333pt;}
.y82{bottom:724.777333pt;}
.ya6{bottom:724.960000pt;}
.y12c{bottom:725.308000pt;}
.y45{bottom:725.626667pt;}
.y198{bottom:728.954667pt;}
.y1bf{bottom:731.382667pt;}
.yd0{bottom:732.301333pt;}
.y107{bottom:732.322667pt;}
.y151{bottom:737.204000pt;}
.y6d{bottom:737.440000pt;}
.yf{bottom:738.589333pt;}
.yf0{bottom:739.390667pt;}
.y81{bottom:742.842667pt;}
.ya5{bottom:743.026667pt;}
.y12b{bottom:743.374667pt;}
.y44{bottom:743.693333pt;}
.y197{bottom:747.021333pt;}
.y1be{bottom:749.448000pt;}
.y106{bottom:750.388000pt;}
.ycf{bottom:750.758667pt;}
.ye{bottom:753.201333pt;}
.y150{bottom:755.270667pt;}
.y6c{bottom:755.505333pt;}
.yef{bottom:757.456000pt;}
.y80{bottom:760.908000pt;}
.ya4{bottom:761.092000pt;}
.y12a{bottom:761.440000pt;}
.y196{bottom:765.086667pt;}
.y1bd{bottom:767.513333pt;}
.yd{bottom:767.813333pt;}
.y105{bottom:768.454667pt;}
.yce{bottom:768.824000pt;}
.y6b{bottom:773.570667pt;}
.yee{bottom:775.521333pt;}
.y43{bottom:776.177333pt;}
.ya3{bottom:779.157333pt;}
.y129{bottom:779.505333pt;}
.yc{bottom:782.424000pt;}
.y14f{bottom:782.738667pt;}
.y195{bottom:783.152000pt;}
.y1bc{bottom:785.580000pt;}
.y104{bottom:786.520000pt;}
.ycd{bottom:787.281333pt;}
.y6a{bottom:791.636000pt;}
.yb{bottom:797.036000pt;}
.ya2{bottom:797.222667pt;}
.y175{bottom:797.570667pt;}
.y194{bottom:801.217333pt;}
.yed{bottom:802.990667pt;}
.y1bb{bottom:803.645333pt;}
.ycc{bottom:805.346667pt;}
.y7f{bottom:809.073333pt;}
.y69{bottom:809.702667pt;}
.ya{bottom:811.648000pt;}
.y128{bottom:811.989333pt;}
.y103{bottom:813.989333pt;}
.ya1{bottom:815.288000pt;}
.y174{bottom:815.636000pt;}
.y193{bottom:819.282667pt;}
.y14e{bottom:821.710667pt;}
.y42{bottom:822.029333pt;}
.ycb{bottom:823.802667pt;}
.y7e{bottom:825.014667pt;}
.y9{bottom:826.260000pt;}
.y68{bottom:827.768000pt;}
.y192{bottom:837.349333pt;}
.y14d{bottom:839.776000pt;}
.y41{bottom:840.094667pt;}
.y8{bottom:840.872000pt;}
.y7d{bottom:840.954667pt;}
.yec{bottom:841.430667pt;}
.yca{bottom:841.868000pt;}
.ya0{bottom:842.757333pt;}
.y173{bottom:848.121333pt;}
.y102{bottom:852.960000pt;}
.y67{bottom:855.237333pt;}
.y191{bottom:855.414667pt;}
.y7{bottom:855.484000pt;}
.y7c{bottom:856.894667pt;}
.y127{bottom:857.841333pt;}
.yeb{bottom:859.497333pt;}
.y40{bottom:859.966667pt;}
.yc9{bottom:864.990667pt;}
.y6{bottom:870.096000pt;}
.y101{bottom:871.025333pt;}
.y7b{bottom:872.834667pt;}
.y190{bottom:873.480000pt;}
.y126{bottom:875.908000pt;}
.y3f{bottom:878.033333pt;}
.y9f{bottom:881.729333pt;}
.yc8{bottom:883.056000pt;}
.y5{bottom:884.708000pt;}
.yea{bottom:886.966667pt;}
.y7a{bottom:888.774667pt;}
.y18f{bottom:891.545333pt;}
.y66{bottom:893.973333pt;}
.y3e{bottom:896.098667pt;}
.y9e{bottom:899.794667pt;}
.yc7{bottom:901.121333pt;}
.y79{bottom:904.714667pt;}
.y18e{bottom:909.610667pt;}
.y65{bottom:912.038667pt;}
.y9d{bottom:917.860000pt;}
.yc6{bottom:919.186667pt;}
.y78{bottom:920.656000pt;}
.y4{bottom:929.902667pt;}
.y3d{bottom:930.104000pt;}
.y77{bottom:936.596000pt;}
.yc5{bottom:937.252000pt;}
.y18d{bottom:942.096000pt;}
.y9c{bottom:945.329333pt;}
.y3c{bottom:948.169333pt;}
.y76{bottom:952.536000pt;}
.y3{bottom:955.376000pt;}
.yc4{bottom:964.721333pt;}
.y3b{bottom:966.236000pt;}
.y75{bottom:975.778667pt;}
.y3a{bottom:984.301333pt;}
.y18c{bottom:987.948000pt;}
.y2{bottom:989.913333pt;}
.y74{bottom:1001.928000pt;}
.y39{bottom:1002.366667pt;}
.y73{bottom:1017.868000pt;}
.y1{bottom:1019.137333pt;}
.y38{bottom:1020.432000pt;}
.h11{height:12.372715pt;}
.hf{height:18.772395pt;}
.h10{height:20.052331pt;}
.h4{height:22.571418pt;}
.h12{height:23.324967pt;}
.he{height:23.732147pt;}
.hc{height:26.142037pt;}
.h9{height:33.857126pt;}
.h15{height:35.953737pt;}
.hd{height:37.618778pt;}
.h6{height:39.213056pt;}
.h14{height:41.018216pt;}
.hb{height:41.078067pt;}
.h5{height:41.192762pt;}
.ha{height:41.843200pt;}
.h13{height:45.142835pt;}
.h8{height:47.709131pt;}
.h3{height:53.236431pt;}
.h7{height:54.171251pt;}
.h2{height:65.005350pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:96.128527pt;}
.w3{width:793.230200pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:11.199440pt;}
.x12{left:17.331080pt;}
.xe{left:18.532407pt;}
.x11{left:54.530607pt;}
.x10{left:63.330167pt;}
.x1{left:95.312000pt;}
.xb{left:96.664000pt;}
.x1e{left:101.074667pt;}
.x49{left:102.764000pt;}
.xa{left:110.545333pt;}
.x1f{left:114.601333pt;}
.x26{left:118.656000pt;}
.x13{left:119.985333pt;}
.x27{left:122.194667pt;}
.x15{left:126.717333pt;}
.x17{left:128.313333pt;}
.x14{left:132.364000pt;}
.x16{left:133.481333pt;}
.x18{left:135.076000pt;}
.x45{left:141.600000pt;}
.x1b{left:146.740000pt;}
.xc{left:153.001333pt;}
.x2{left:155.664000pt;}
.x1c{left:160.321333pt;}
.x1d{left:167.084000pt;}
.x3{left:174.106667pt;}
.x4{left:178.724000pt;}
.x5{left:185.486667pt;}
.x38{left:186.633333pt;}
.x42{left:197.838667pt;}
.x46{left:210.876000pt;}
.x39{left:213.053333pt;}
.x3a{left:246.585333pt;}
.x41{left:260.705333pt;}
.x3f{left:283.218667pt;}
.x40{left:296.746667pt;}
.x47{left:320.018667pt;}
.x6{left:332.446667pt;}
.x32{left:333.536000pt;}
.x7{left:339.210667pt;}
.x34{left:343.078667pt;}
.x33{left:347.062667pt;}
.x35{left:371.637333pt;}
.x22{left:378.568000pt;}
.x36{left:386.684000pt;}
.xd{left:390.673333pt;}
.x23{left:392.094667pt;}
.x43{left:394.172000pt;}
.x44{left:407.700000pt;}
.x8{left:446.573333pt;}
.x20{left:449.012000pt;}
.x9{left:453.337333pt;}
.x21{left:462.540000pt;}
.x4b{left:498.941333pt;}
.x3d{left:538.601333pt;}
.x28{left:548.228000pt;}
.x3e{left:552.128000pt;}
.x29{left:561.756000pt;}
.x48{left:590.976000pt;}
.x19{left:597.754667pt;}
.x1a{left:604.518667pt;}
.x24{left:606.101333pt;}
.x3b{left:608.561333pt;}
.x25{left:619.628000pt;}
.x2a{left:624.021333pt;}
.x2b{left:637.548000pt;}
.x2c{left:638.828000pt;}
.x2d{left:652.354667pt;}
.x2e{left:658.514667pt;}
.x3c{left:664.500000pt;}
.x2f{left:672.042667pt;}
.x30{left:678.202667pt;}
.x4a{left:679.501333pt;}
.x37{left:683.141333pt;}
.x31{left:691.730667pt;}
.x4c{left:696.760000pt;}
}




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