
    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_f82970fadea4d00a42cd0f99.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_261b769891bcca7cf028ea62.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_61f9c22a193ee4eaed614195.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_1fd4336eadac2f31ecf97efa.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_fb538e5cdb830bf1e078af10.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_69178aa7f9fde5ca4f9e4bf6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_908fa44f33c59a10f69fb66c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_32a5b4f97deb610778291562.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.909000;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_563f232ca7c54252baf5b247.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.475000;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_480b4f846bff18d3abec9f9a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.664000;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_d9bbe321cd4318f1ca985474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_860bb8cd8dfcd947c8f50205.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.999000;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_aa38d3089f68530512398d3c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.431000;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_926fa616a6ac08c3ebf39fcf.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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_854b727d62acc1d66d8380dc.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_0a26f2a90b13b28d9d8f69ae.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.805000;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_e52a76da117d9574ccde2364.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_48c299725a8125567b4fd984.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.900000;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_4a18a19dc0a9a33c40df1551.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7958663af7db4cc5ae35f6ff.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.694000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_7aadaa6062f4683548034b87.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.679000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_60d5ab1d58128e6143915659.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.683000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ce14de1e21c4156fb3b581f8.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.642000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_73fbf17d0b216832a9ef4e51.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_478b2c41b40c0b302d2c348e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.431000;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;}
.m2{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);}
.m4{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);}
.me{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);}
.mc{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);}
.m18{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);}
.m21{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);}
.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);}
.m20{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);}
.m12{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);}
.m11{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);}
.m16{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);}
.m5{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);}
.m1a{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);}
.m1e{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);}
.m1f{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);}
.m14{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);}
.m6{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);}
.md{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);}
.m1c{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);}
.m8{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);}
.m15{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);}
.m1b{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);}
.m1{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);}
.m7{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);}
.m1d{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);}
.mb{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);}
.m10{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);}
.ma{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);}
.m13{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);}
.m3{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);}
.m9{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);}
.va{vertical-align:-45.672000px;}
.v1{vertical-align:-25.104000px;}
.v2{vertical-align:-22.854000px;}
.v4{vertical-align:-10.134000px;}
.v6{vertical-align:-8.040000px;}
.vb{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:16.182000px;}
.v5{vertical-align:18.990000px;}
.vc{vertical-align:23.754000px;}
.v3{vertical-align:27.024000px;}
.v7{vertical-align:44.280000px;}
.v8{vertical-align:68.034000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000502px;}
.ls26{letter-spacing:0.000535px;}
.ls12{letter-spacing:0.002137px;}
.ls14{letter-spacing:0.002706px;}
.ls25{letter-spacing:0.002793px;}
.ls23{letter-spacing:0.004332px;}
.ls18{letter-spacing:0.004338px;}
.ls1a{letter-spacing:0.005429px;}
.ls1b{letter-spacing:0.005781px;}
.ls10{letter-spacing:0.014628px;}
.ls2b{letter-spacing:0.015730px;}
.ls2e{letter-spacing:0.024683px;}
.ls5{letter-spacing:0.589091px;}
.ls13{letter-spacing:1.832729px;}
.lsb{letter-spacing:2.984915px;}
.ls2d{letter-spacing:2.989739px;}
.ls7{letter-spacing:2.992612px;}
.ls22{letter-spacing:3.632153px;}
.ls6{letter-spacing:4.699821px;}
.ls8{letter-spacing:7.134551px;}
.lsc{letter-spacing:10.043429px;}
.lsa{letter-spacing:10.049429px;}
.ls4{letter-spacing:10.930918px;}
.ls17{letter-spacing:11.792160px;}
.ls9{letter-spacing:14.530921px;}
.lse{letter-spacing:14.596376px;}
.lsf{letter-spacing:17.528915px;}
.ls16{letter-spacing:18.196379px;}
.ls15{letter-spacing:21.169739px;}
.ls1f{letter-spacing:21.338200px;}
.ls3{letter-spacing:21.419468px;}
.ls30{letter-spacing:21.665473px;}
.ls20{letter-spacing:21.796382px;}
.ls28{letter-spacing:21.861836px;}
.lsd{letter-spacing:22.627860px;}
.ls21{letter-spacing:25.355412px;}
.ls24{letter-spacing:27.874059px;}
.ls1{letter-spacing:33.892992px;}
.ls29{letter-spacing:35.869121px;}
.ls1e{letter-spacing:77.768056px;}
.ls2a{letter-spacing:194.689129px;}
.ls2f{letter-spacing:278.911409px;}
.ls0{letter-spacing:349.381819px;}
.ls1d{letter-spacing:609.026891px;}
.ls1c{letter-spacing:748.222454px;}
.ls2c{letter-spacing:782.706107px;}
.ls19{letter-spacing:921.273495px;}
.ls27{letter-spacing:931.353503px;}
.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;}
}
.ws3a{word-spacing:-50.923679px;}
.ws3d{word-spacing:-42.637126px;}
.ws42{word-spacing:-32.727300px;}
.ws3c{word-spacing:-31.771663px;}
.ws38{word-spacing:-31.706208px;}
.ws46{word-spacing:-29.887800px;}
.ws19{word-spacing:-27.646998px;}
.ws62{word-spacing:-18.183288px;}
.ws29{word-spacing:-16.494559px;}
.ws59{word-spacing:-15.970922px;}
.ws6e{word-spacing:-15.185467px;}
.ws64{word-spacing:-15.054558px;}
.ws61{word-spacing:-14.989103px;}
.wsb{word-spacing:-14.724622px;}
.ws6b{word-spacing:-14.400012px;}
.ws5d{word-spacing:-14.111859px;}
.ws6a{word-spacing:-14.007284px;}
.ws35{word-spacing:-13.810921px;}
.ws3b{word-spacing:-13.575284px;}
.ws70{word-spacing:-13.549102px;}
.ws44{word-spacing:-13.025465px;}
.ws71{word-spacing:-12.960011px;}
.wsa{word-spacing:-12.798639px;}
.ws73{word-spacing:-12.763647px;}
.wsc{word-spacing:-12.744841px;}
.ws49{word-spacing:-12.698192px;}
.ws7a{word-spacing:-12.672427px;}
.wse{word-spacing:-12.626484px;}
.ws6f{word-spacing:-12.567283px;}
.ws4b{word-spacing:-12.240010px;}
.ws7b{word-spacing:-11.602444px;}
.ws3f{word-spacing:-11.585464px;}
.ws3e{word-spacing:-11.520010px;}
.ws37{word-spacing:-11.476915px;}
.ws48{word-spacing:-11.454555px;}
.ws40{word-spacing:-11.417140px;}
.ws47{word-spacing:-11.389100px;}
.ws23{word-spacing:-11.323646px;}
.ws22{word-spacing:-11.258191px;}
.ws54{word-spacing:-11.192737px;}
.ws33{word-spacing:-11.127282px;}
.ws13{word-spacing:-11.118262px;}
.ws4a{word-spacing:-11.061827px;}
.ws9{word-spacing:-11.012532px;}
.ws27{word-spacing:-10.996373px;}
.wsd{word-spacing:-10.969494px;}
.ws1b{word-spacing:-10.930918px;}
.ws1c{word-spacing:-10.865464px;}
.ws4c{word-spacing:-10.800009px;}
.ws28{word-spacing:-10.669100px;}
.ws89{word-spacing:-10.646034px;}
.ws6{word-spacing:-10.635944px;}
.ws57{word-spacing:-10.610191px;}
.ws55{word-spacing:-10.603645px;}
.ws56{word-spacing:-10.538191px;}
.ws25{word-spacing:-10.472736px;}
.ws2f{word-spacing:-10.407281px;}
.ws72{word-spacing:-10.341827px;}
.ws7e{word-spacing:-10.281403px;}
.ws30{word-spacing:-10.276372px;}
.ws17{word-spacing:-10.221628px;}
.ws79{word-spacing:-10.167830px;}
.ws67{word-spacing:-10.145463px;}
.ws16{word-spacing:-10.102076px;}
.ws6c{word-spacing:-10.080008px;}
.ws4{word-spacing:-9.982525px;}
.ws4e{word-spacing:-9.955645px;}
.ws45{word-spacing:-9.949099px;}
.ws53{word-spacing:-9.922750px;}
.ws15{word-spacing:-9.862974px;}
.ws80{word-spacing:-9.803198px;}
.ws6d{word-spacing:-9.752735px;}
.ws66{word-spacing:-9.687281px;}
.ws14{word-spacing:-9.564096px;}
.ws31{word-spacing:-9.562917px;}
.ws43{word-spacing:-9.556372px;}
.ws8{word-spacing:-9.516937px;}
.ws7f{word-spacing:-9.510298px;}
.ws58{word-spacing:-9.497462px;}
.ws7{word-spacing:-9.247945px;}
.ws5{word-spacing:-9.194147px;}
.ws85{word-spacing:-9.151644px;}
.ws88{word-spacing:-9.032093px;}
.ws81{word-spacing:-8.972318px;}
.ws51{word-spacing:-8.901826px;}
.ws82{word-spacing:-8.733215px;}
.ws32{word-spacing:-8.640007px;}
.ws77{word-spacing:-8.368584px;}
.ws2c{word-spacing:-8.312734px;}
.ws75{word-spacing:-8.247280px;}
.ws18{word-spacing:-8.069706px;}
.ws2e{word-spacing:-8.050916px;}
.ws74{word-spacing:-7.854552px;}
.ws78{word-spacing:-7.776806px;}
.ws24{word-spacing:-7.723643px;}
.ws2b{word-spacing:-7.265461px;}
.ws50{word-spacing:-7.200006px;}
.ws2a{word-spacing:-6.748369px;}
.ws68{word-spacing:-6.349096px;}
.ws87{word-spacing:-6.162864px;}
.ws65{word-spacing:-6.087278px;}
.ws1a{word-spacing:-5.825459px;}
.ws86{word-spacing:-5.499355px;}
.ws21{word-spacing:-5.367277px;}
.ws12{word-spacing:-5.027128px;}
.ws34{word-spacing:-4.909095px;}
.ws52{word-spacing:-4.522913px;}
.ws36{word-spacing:-4.320004px;}
.ws26{word-spacing:-3.730912px;}
.ws83{word-spacing:-3.526760px;}
.ws84{word-spacing:-3.293636px;}
.ws20{word-spacing:-3.272730px;}
.ws76{word-spacing:-3.010912px;}
.ws2d{word-spacing:-2.814548px;}
.ws4f{word-spacing:-2.749093px;}
.ws69{word-spacing:-1.047274px;}
.ws7d{word-spacing:-0.783060px;}
.ws7c{word-spacing:-0.777083px;}
.ws63{word-spacing:-0.445091px;}
.ws2{word-spacing:-0.167372px;}
.ws39{word-spacing:-0.052364px;}
.ws41{word-spacing:-0.047821px;}
.wsf{word-spacing:0.000000px;}
.ws10{word-spacing:2.683639px;}
.ws5b{word-spacing:3.420979px;}
.ws5c{word-spacing:3.971101px;}
.ws5a{word-spacing:7.042708px;}
.ws4d{word-spacing:10.552046px;}
.ws5e{word-spacing:10.698979px;}
.ws60{word-spacing:11.228912px;}
.ws5f{word-spacing:11.249101px;}
.ws11{word-spacing:11.429123px;}
.ws1{word-spacing:23.384371px;}
.ws3{word-spacing:26.827469px;}
.ws0{word-spacing:32.192873px;}
.ws1f{word-spacing:34.370970px;}
.ws1d{word-spacing:2252.023881px;}
.ws1e{word-spacing:2278.218812px;}
._0{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._b{margin-left:-4.864560px;}
._9{margin-left:-3.830468px;}
._1{margin-left:-2.668393px;}
._6{margin-left:-1.484828px;}
._5{width:1.452557px;}
._2{width:2.668393px;}
._3a{width:4.030069px;}
._8{width:16.602179px;}
._7{width:18.452851px;}
._4e{width:19.805851px;}
._4{width:20.959727px;}
._12{width:22.858345px;}
._35{width:25.122011px;}
._a{width:26.600221px;}
._40{width:28.064778px;}
._30{width:29.415124px;}
._2f{width:31.634288px;}
._55{width:33.235691px;}
._3b{width:34.773419px;}
._36{width:36.361381px;}
._46{width:37.749013px;}
._34{width:38.805622px;}
._3c{width:41.548426px;}
._4c{width:43.461854px;}
._31{width:46.758785px;}
._37{width:48.578959px;}
._38{width:49.967880px;}
._32{width:52.131443px;}
._41{width:54.130954px;}
._4d{width:60.333896px;}
._33{width:64.117766px;}
._39{width:69.202202px;}
._52{width:74.659724px;}
._3f{width:107.191980px;}
._44{width:125.827638px;}
._4a{width:155.039964px;}
._48{width:156.994616px;}
._4f{width:198.335441px;}
._47{width:211.229028px;}
._43{width:214.337359px;}
._4b{width:219.238958px;}
._42{width:240.960238px;}
._3d{width:243.199412px;}
._45{width:264.010883px;}
._50{width:271.321448px;}
._3e{width:298.758449px;}
._51{width:319.592629px;}
._54{width:387.204828px;}
._53{width:391.530180px;}
._49{width:415.840907px;}
._2d{width:889.270124px;}
._e{width:894.914465px;}
._22{width:1215.138995px;}
._10{width:1216.771759px;}
._13{width:1243.035753px;}
._14{width:1287.753799px;}
._15{width:1324.766495px;}
._1a{width:1381.622315px;}
._29{width:1413.715696px;}
._1e{width:1435.226942px;}
._2e{width:1461.563009px;}
._17{width:1473.226483px;}
._23{width:1503.707699px;}
._24{width:1510.506022px;}
._d{width:1580.169434px;}
._25{width:1605.480647px;}
._18{width:1610.455196px;}
._f{width:1637.287982px;}
._1c{width:1662.485314px;}
._26{width:1694.201213px;}
._27{width:1768.295820px;}
._1b{width:1790.029437px;}
._2b{width:1819.612226px;}
._1d{width:1832.274546px;}
._16{width:1864.091771px;}
._1f{width:1919.626855px;}
._20{width:1928.528681px;}
._2a{width:1936.317778px;}
._11{width:1961.255981px;}
._21{width:2164.694354px;}
._28{width:2265.428984px;}
._2c{width:2283.611719px;}
._c{width:2286.767644px;}
._19{width:2298.158984px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:117.160200px;}
.fs2{font-size:167.372400px;}
.y0{bottom:0.000000px;}
.y3e{bottom:160.314000px;}
.y91{bottom:160.899000px;}
.y95{bottom:167.248500px;}
.y8f{bottom:172.123500px;}
.y20{bottom:173.425500px;}
.y94{bottom:176.214000px;}
.y90{bottom:179.148000px;}
.y93{bottom:185.181000px;}
.yfc{bottom:185.877000px;}
.yae{bottom:187.506000px;}
.y63{bottom:190.800000px;}
.y3d{bottom:191.065500px;}
.y92{bottom:194.148000px;}
.yfb{bottom:221.277000px;}
.y62{bottom:221.286000px;}
.y3c{bottom:221.817000px;}
.y8e{bottom:222.094500px;}
.yad{bottom:222.907500px;}
.yc1{bottom:224.467500px;}
.y10{bottom:236.310000px;}
.ye5{bottom:243.790500px;}
.yfa{bottom:248.176500px;}
.yac{bottom:249.805500px;}
.y61{bottom:251.770500px;}
.y3b{bottom:252.568500px;}
.y8d{bottom:252.579000px;}
.yc0{bottom:254.953500px;}
.yf{bottom:260.967000px;}
.yd4{bottom:273.493500px;}
.yf9{bottom:275.076000px;}
.yab{bottom:276.705000px;}
.y60{bottom:282.256500px;}
.y3a{bottom:283.320000px;}
.y112{bottom:284.818500px;}
.ybf{bottom:285.439500px;}
.ye{bottom:288.613500px;}
.yf8{bottom:301.975500px;}
.yaa{bottom:303.604500px;}
.y8c{bottom:305.340000px;}
.ye4{bottom:311.817000px;}
.y5f{bottom:312.742500px;}
.yd{bottom:313.272000px;}
.y39{bottom:314.073000px;}
.y111{bottom:315.303000px;}
.ybe{bottom:315.925500px;}
.yd3{bottom:322.114500px;}
.yf7{bottom:328.873500px;}
.ya9{bottom:330.504000px;}
.y75{bottom:334.030500px;}
.yc{bottom:340.918500px;}
.ye3{bottom:342.303000px;}
.y5e{bottom:343.228500px;}
.y38{bottom:344.824500px;}
.y110{bottom:345.789000px;}
.yf6{bottom:356.371500px;}
.ya8{bottom:358.000500px;}
.yb{bottom:365.575500px;}
.ybd{bottom:370.854000px;}
.y8b{bottom:372.058500px;}
.ye2{bottom:372.789000px;}
.y5d{bottom:373.714500px;}
.y10f{bottom:376.275000px;}
.y74{bottom:382.216500px;}
.yd2{bottom:385.668000px;}
.y37{bottom:392.205000px;}
.ya{bottom:393.222000px;}
.y8a{bottom:402.543000px;}
.ye1{bottom:403.273500px;}
.y5c{bottom:404.199000px;}
.y10e{bottom:406.761000px;}
.yd1{bottom:416.154000px;}
.yf5{bottom:419.632500px;}
.y36{bottom:422.956500px;}
.ya7{bottom:423.016500px;}
.y89{bottom:433.029000px;}
.y13c{bottom:434.536500px;}
.y5b{bottom:441.976500px;}
.y73{bottom:443.290500px;}
.yd0{bottom:446.640000px;}
.ybc{bottom:449.956500px;}
.y35{bottom:453.708000px;}
.ye0{bottom:456.264000px;}
.y10d{bottom:461.067000px;}
.y13b{bottom:461.434500px;}
.y88{bottom:464.530500px;}
.y5a{bottom:472.462500px;}
.y72{bottom:473.776500px;}
.ycf{bottom:477.126000px;}
.yf4{bottom:480.252000px;}
.y34{bottom:484.461000px;}
.ya6{bottom:484.647000px;}
.y13a{bottom:488.334000px;}
.y9{bottom:491.260500px;}
.y87{bottom:495.016500px;}
.y59{bottom:502.947000px;}
.y71{bottom:504.262500px;}
.yf3{bottom:510.736500px;}
.ybb{bottom:511.299000px;}
.ya5{bottom:515.133000px;}
.y33{bottom:515.212500px;}
.y139{bottom:515.233500px;}
.ydf{bottom:524.290500px;}
.y86{bottom:525.502500px;}
.yce{bottom:529.333500px;}
.y58{bottom:533.433000px;}
.y70{bottom:534.748500px;}
.y10c{bottom:536.617500px;}
.yf2{bottom:541.222500px;}
.yba{bottom:541.785000px;}
.y138{bottom:542.133000px;}
.y8{bottom:543.672000px;}
.y32{bottom:545.964000px;}
.yde{bottom:554.776500px;}
.y85{bottom:555.987000px;}
.ya4{bottom:561.190500px;}
.y57{bottom:563.919000px;}
.y10b{bottom:567.103500px;}
.y137{bottom:569.031000px;}
.y7{bottom:570.570000px;}
.yf1{bottom:571.708500px;}
.y31{bottom:576.715500px;}
.ydd{bottom:585.262500px;}
.y6f{bottom:586.521000px;}
.ycd{bottom:592.887000px;}
.y136{bottom:595.930500px;}
.y6{bottom:597.469500px;}
.y10a{bottom:597.589500px;}
.y56{bottom:601.696500px;}
.yb9{bottom:603.129000px;}
.ya3{bottom:607.246500px;}
.y30{bottom:607.467000px;}
.y84{bottom:608.748000px;}
.ydc{bottom:615.748500px;}
.y135{bottom:622.830000px;}
.ycc{bottom:623.373000px;}
.yf0{bottom:623.454000px;}
.y109{bottom:628.075500px;}
.y55{bottom:632.181000px;}
.yb8{bottom:633.615000px;}
.ydb{bottom:646.234500px;}
.y6e{bottom:647.595000px;}
.y134{bottom:649.729500px;}
.ya2{bottom:653.304000px;}
.ycb{bottom:653.859000px;}
.y2f{bottom:654.847500px;}
.y108{bottom:661.122000px;}
.y54{bottom:662.667000px;}
.y83{bottom:675.466500px;}
.y133{bottom:676.627500px;}
.y6d{bottom:678.081000px;}
.yef{bottom:684.073500px;}
.yca{bottom:684.345000px;}
.y2e{bottom:685.600500px;}
.y107{bottom:691.606500px;}
.y53{bottom:693.153000px;}
.yb7{bottom:694.957500px;}
.yda{bottom:699.223500px;}
.ya1{bottom:699.360000px;}
.y132{bottom:703.527000px;}
.y82{bottom:705.951000px;}
.y6c{bottom:708.567000px;}
.y125{bottom:713.926500px;}
.yee{bottom:714.559500px;}
.y2d{bottom:716.352000px;}
.y106{bottom:722.092500px;}
.yb6{bottom:725.443500px;}
.y131{bottom:730.426500px;}
.y52{bottom:730.929000px;}
.y81{bottom:736.437000px;}
.yc9{bottom:736.552500px;}
.y5{bottom:741.493500px;}
.y124{bottom:744.411000px;}
.y2c{bottom:747.103500px;}
.ya0{bottom:751.231500px;}
.y105{bottom:752.578500px;}
.y6b{bottom:755.574000px;}
.y1f{bottom:756.250500px;}
.y130{bottom:757.326000px;}
.yed{bottom:758.109000px;}
.y51{bottom:761.415000px;}
.yd9{bottom:767.251500px;}
.y80{bottom:767.938500px;}
.y123{bottom:774.897000px;}
.y2b{bottom:777.855000px;}
.yb5{bottom:780.372000px;}
.y104{bottom:783.064500px;}
.y12f{bottom:784.224000px;}
.y11a{bottom:785.082000px;}
.y1e{bottom:786.736500px;}
.y50{bottom:791.901000px;}
.yd8{bottom:797.737500px;}
.y7f{bottom:798.424500px;}
.yc8{bottom:800.106000px;}
.y6a{bottom:802.582500px;}
.yec{bottom:802.912500px;}
.y122{bottom:805.383000px;}
.y2a{bottom:808.606500px;}
.y12e{bottom:811.123500px;}
.y9f{bottom:812.863500px;}
.y103{bottom:813.550500px;}
.y46{bottom:814.186500px;}
.y119{bottom:815.568000px;}
.y4f{bottom:822.387000px;}
.y1d{bottom:827.113500px;}
.yd7{bottom:828.222000px;}
.y7e{bottom:828.910500px;}
.yeb{bottom:833.398500px;}
.y12d{bottom:838.023000px;}
.y29{bottom:839.358000px;}
.y9e{bottom:843.348000px;}
.yc7{bottom:847.846500px;}
.y1c{bottom:854.013000px;}
.y69{bottom:854.355000px;}
.y121{bottom:857.128500px;}
.yd6{bottom:858.708000px;}
.y7d{bottom:859.395000px;}
.yb4{bottom:859.474500px;}
.y4e{bottom:860.163000px;}
.y118{bottom:860.997000px;}
.y45{bottom:861.036000px;}
.y12c{bottom:864.922500px;}
.y102{bottom:867.856500px;}
.y28{bottom:870.109500px;}
.y9d{bottom:873.834000px;}
.yea{bottom:878.200500px;}
.y1b{bottom:880.912500px;}
.yb3{bottom:889.960500px;}
.y4d{bottom:890.649000px;}
.y12b{bottom:891.820500px;}
.yc6{bottom:895.585500px;}
.y4{bottom:902.547000px;}
.y9c{bottom:904.320000px;}
.y117{bottom:906.426000px;}
.y1a{bottom:907.810500px;}
.y44{bottom:907.885500px;}
.yd5{bottom:911.698500px;}
.y7c{bottom:912.156000px;}
.y68{bottom:915.429000px;}
.y27{bottom:917.491500px;}
.y120{bottom:918.043500px;}
.y101{bottom:918.576000px;}
.y12a{bottom:918.720000px;}
.yb2{bottom:920.445000px;}
.y4c{bottom:921.135000px;}
.ye9{bottom:923.004000px;}
.y3{bottom:933.928500px;}
.y19{bottom:934.710000px;}
.yc5{bottom:943.324500px;}
.y129{bottom:945.619500px;}
.y67{bottom:945.915000px;}
.y26{bottom:948.243000px;}
.y11f{bottom:948.529500px;}
.y4b{bottom:951.621000px;}
.y116{bottom:951.856500px;}
.y43{bottom:954.735000px;}
.y9b{bottom:956.191500px;}
.y18{bottom:961.609500px;}
.y7b{bottom:964.914000px;}
.ye8{bottom:966.553500px;}
.y128{bottom:972.519000px;}
.yb1{bottom:975.373500px;}
.y25{bottom:978.994500px;}
.y11e{bottom:979.015500px;}
.y17{bottom:988.509000px;}
.y4a{bottom:989.397000px;}
.yc4{bottom:991.063500px;}
.y66{bottom:992.923500px;}
.y100{bottom:994.126500px;}
.ye7{bottom:997.039500px;}
.y115{bottom:997.285500px;}
.y127{bottom:999.417000px;}
.y2{bottom:999.790500px;}
.y7a{bottom:1000.314000px;}
.y42{bottom:1001.584500px;}
.y11d{bottom:1009.500000px;}
.y24{bottom:1009.746000px;}
.y9a{bottom:1017.822000px;}
.y49{bottom:1019.883000px;}
.yff{bottom:1024.612500px;}
.y126{bottom:1026.316500px;}
.y16{bottom:1027.213500px;}
.y41{bottom:1032.070500px;}
.y15{bottom:1032.636000px;}
.yc3{bottom:1039.374000px;}
.y65{bottom:1039.930500px;}
.y11c{bottom:1039.986000px;}
.y1{bottom:1040.139000px;}
.y23{bottom:1040.497500px;}
.y114{bottom:1042.716000px;}
.y99{bottom:1048.308000px;}
.ye6{bottom:1048.785000px;}
.y48{bottom:1050.369000px;}
.y79{bottom:1054.113000px;}
.yb0{bottom:1054.477500px;}
.yfe{bottom:1055.098500px;}
.y13{bottom:1059.342000px;}
.y40{bottom:1062.555000px;}
.y14{bottom:1065.280500px;}
.y98{bottom:1078.794000px;}
.y47{bottom:1080.853500px;}
.y78{bottom:1081.011000px;}
.yaf{bottom:1084.962000px;}
.yfd{bottom:1085.584500px;}
.yc2{bottom:1087.683000px;}
.y22{bottom:1087.879500px;}
.y113{bottom:1088.145000px;}
.y64{bottom:1091.704500px;}
.y11b{bottom:1091.731500px;}
.y3f{bottom:1093.041000px;}
.y77{bottom:1107.910500px;}
.y12{bottom:1108.509000px;}
.y97{bottom:1109.404500px;}
.y76{bottom:1135.407000px;}
.y96{bottom:1135.845000px;}
.y11{bottom:1139.890500px;}
.y21{bottom:1192.194000px;}
.h13{height:1.255288px;}
.hc{height:16.677504px;}
.ha{height:27.783619px;}
.h15{height:32.661470px;}
.h9{height:33.665702px;}
.h7{height:37.927872px;}
.hb{height:42.799330px;}
.h6{height:44.831700px;}
.he{height:47.258221px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h12{height:52.571702px;}
.h3{height:53.798400px;}
.h14{height:57.419702px;}
.hf{height:59.691470px;}
.h2{height:60.254040px;}
.hd{height:60.689702px;}
.h11{height:65.272950px;}
.h10{height:101.699702px;}
.h4{height:118.812914px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x14{left:108.000000px;}
.x15{left:110.739000px;}
.x19{left:114.363000px;}
.x83{left:115.471500px;}
.x18{left:120.727500px;}
.xb{left:125.932500px;}
.x1d{left:130.416000px;}
.x56{left:135.052500px;}
.x1a{left:138.474000px;}
.x1b{left:139.609500px;}
.x49{left:143.868000px;}
.x63{left:151.828500px;}
.x25{left:153.624000px;}
.x30{left:154.942500px;}
.xd{left:157.446000px;}
.x13{left:158.809500px;}
.x52{left:163.339500px;}
.x12{left:173.754000px;}
.x3c{left:176.745000px;}
.x53{left:178.014000px;}
.x7b{left:179.406000px;}
.x6e{left:180.820500px;}
.x26{left:182.427000px;}
.x54{left:184.251000px;}
.x78{left:188.055000px;}
.x55{left:191.922000px;}
.x61{left:197.592000px;}
.x4a{left:204.801000px;}
.x1{left:210.669000px;}
.x10{left:214.422000px;}
.x24{left:217.213500px;}
.x11{left:221.125500px;}
.x23{left:222.280500px;}
.x22{left:241.366500px;}
.x27{left:242.736000px;}
.x3e{left:247.665000px;}
.x60{left:251.503500px;}
.xc{left:255.936000px;}
.x33{left:265.848000px;}
.x4b{left:269.058000px;}
.x6d{left:273.712500px;}
.x3{left:274.819500px;}
.x47{left:279.189000px;}
.x4c{left:283.539000px;}
.x48{left:287.518500px;}
.x3d{left:289.236000px;}
.x5f{left:295.225500px;}
.x5a{left:298.408500px;}
.x6f{left:307.288500px;}
.x74{left:308.583000px;}
.x2{left:310.828500px;}
.x5d{left:317.859000px;}
.x2e{left:320.230500px;}
.x64{left:323.526000px;}
.x34{left:328.716000px;}
.x7{left:329.793000px;}
.x76{left:331.519500px;}
.x7c{left:336.546000px;}
.x62{left:339.880500px;}
.x35{left:340.936500px;}
.x77{left:342.951000px;}
.x66{left:345.396000px;}
.x75{left:348.105000px;}
.x4d{left:350.464500px;}
.x4{left:356.499000px;}
.x36{left:358.419000px;}
.x3b{left:362.989500px;}
.x5e{left:364.171500px;}
.x1c{left:373.006500px;}
.x2f{left:374.128500px;}
.x5{left:375.504000px;}
.x6{left:381.384000px;}
.xe{left:382.602000px;}
.x45{left:384.087000px;}
.x7d{left:387.000000px;}
.x8{left:392.640000px;}
.x67{left:394.729500px;}
.x46{left:397.197000px;}
.x7a{left:400.602000px;}
.x9{left:405.966000px;}
.x17{left:409.203000px;}
.x79{left:410.403000px;}
.x68{left:411.594000px;}
.x69{left:417.831000px;}
.x6a{left:427.603500px;}
.x6b{left:433.840500px;}
.x70{left:442.257000px;}
.x7e{left:445.153500px;}
.x3f{left:446.464500px;}
.x4f{left:449.346000px;}
.x71{left:450.439500px;}
.x4e{left:457.111500px;}
.x72{left:460.452000px;}
.x6c{left:462.190500px;}
.x40{left:465.577500px;}
.x73{left:468.633000px;}
.x41{left:472.069500px;}
.x42{left:479.739000px;}
.x57{left:491.011500px;}
.x50{left:493.978500px;}
.x58{left:506.860500px;}
.x43{left:510.544500px;}
.xf{left:511.759500px;}
.x51{left:527.809500px;}
.x28{left:531.775500px;}
.x44{left:536.148000px;}
.x81{left:538.029000px;}
.x29{left:539.956500px;}
.x59{left:542.791500px;}
.x2a{left:549.598500px;}
.x2b{left:565.962000px;}
.x82{left:567.793500px;}
.x2c{left:575.604000px;}
.x2d{left:591.967500px;}
.x37{left:630.786000px;}
.x1e{left:633.892500px;}
.x1f{left:642.073500px;}
.x5b{left:644.958000px;}
.x38{left:647.149500px;}
.x20{left:650.296500px;}
.x39{left:655.176000px;}
.x21{left:658.477500px;}
.x5c{left:669.055500px;}
.x3a{left:671.539500px;}
.x31{left:740.362500px;}
.x7f{left:764.145000px;}
.x32{left:769.918500px;}
.x80{left:782.395500px;}
.x65{left:791.013000px;}
.x16{left:799.195500px;}
@media print{
.va{vertical-align:-40.597333pt;}
.v1{vertical-align:-22.314667pt;}
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-9.008000pt;}
.v6{vertical-align:-7.146667pt;}
.vb{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:14.384000pt;}
.v5{vertical-align:16.880000pt;}
.vc{vertical-align:21.114667pt;}
.v3{vertical-align:24.021333pt;}
.v7{vertical-align:39.360000pt;}
.v8{vertical-align:60.474667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000446pt;}
.ls26{letter-spacing:0.000475pt;}
.ls12{letter-spacing:0.001899pt;}
.ls14{letter-spacing:0.002405pt;}
.ls25{letter-spacing:0.002482pt;}
.ls23{letter-spacing:0.003851pt;}
.ls18{letter-spacing:0.003856pt;}
.ls1a{letter-spacing:0.004826pt;}
.ls1b{letter-spacing:0.005138pt;}
.ls10{letter-spacing:0.013002pt;}
.ls2b{letter-spacing:0.013982pt;}
.ls2e{letter-spacing:0.021941pt;}
.ls5{letter-spacing:0.523637pt;}
.ls13{letter-spacing:1.629092pt;}
.lsb{letter-spacing:2.653258pt;}
.ls2d{letter-spacing:2.657546pt;}
.ls7{letter-spacing:2.660100pt;}
.ls22{letter-spacing:3.228580pt;}
.ls6{letter-spacing:4.177619pt;}
.ls8{letter-spacing:6.341823pt;}
.lsc{letter-spacing:8.927492pt;}
.lsa{letter-spacing:8.932825pt;}
.ls4{letter-spacing:9.716372pt;}
.ls17{letter-spacing:10.481920pt;}
.ls9{letter-spacing:12.916374pt;}
.lse{letter-spacing:12.974556pt;}
.lsf{letter-spacing:15.581258pt;}
.ls16{letter-spacing:16.174559pt;}
.ls15{letter-spacing:18.817546pt;}
.ls1f{letter-spacing:18.967289pt;}
.ls3{letter-spacing:19.039527pt;}
.ls30{letter-spacing:19.258198pt;}
.ls20{letter-spacing:19.374562pt;}
.ls28{letter-spacing:19.432743pt;}
.lsd{letter-spacing:20.113653pt;}
.ls21{letter-spacing:22.538144pt;}
.ls24{letter-spacing:24.776941pt;}
.ls1{letter-spacing:30.127104pt;}
.ls29{letter-spacing:31.883663pt;}
.ls1e{letter-spacing:69.127161pt;}
.ls2a{letter-spacing:173.057004pt;}
.ls2f{letter-spacing:247.921253pt;}
.ls0{letter-spacing:310.561617pt;}
.ls1d{letter-spacing:541.357237pt;}
.ls1c{letter-spacing:665.086625pt;}
.ls2c{letter-spacing:695.738762pt;}
.ls19{letter-spacing:818.909773pt;}
.ls27{letter-spacing:827.869781pt;}
.ws3a{word-spacing:-45.265492pt;}
.ws3d{word-spacing:-37.899668pt;}
.ws42{word-spacing:-29.090933pt;}
.ws3c{word-spacing:-28.241478pt;}
.ws38{word-spacing:-28.183296pt;}
.ws46{word-spacing:-26.566933pt;}
.ws19{word-spacing:-24.575109pt;}
.ws62{word-spacing:-16.162923pt;}
.ws29{word-spacing:-14.661830pt;}
.ws59{word-spacing:-14.196375pt;}
.ws6e{word-spacing:-13.498193pt;}
.ws64{word-spacing:-13.381829pt;}
.ws61{word-spacing:-13.323647pt;}
.wsb{word-spacing:-13.088553pt;}
.ws6b{word-spacing:-12.800011pt;}
.ws5d{word-spacing:-12.543875pt;}
.ws6a{word-spacing:-12.450919pt;}
.ws35{word-spacing:-12.276374pt;}
.ws3b{word-spacing:-12.066919pt;}
.ws70{word-spacing:-12.043646pt;}
.ws44{word-spacing:-11.578191pt;}
.ws71{word-spacing:-11.520010pt;}
.wsa{word-spacing:-11.376568pt;}
.ws73{word-spacing:-11.345464pt;}
.wsc{word-spacing:-11.328748pt;}
.ws49{word-spacing:-11.287282pt;}
.ws7a{word-spacing:-11.264380pt;}
.wse{word-spacing:-11.223542pt;}
.ws6f{word-spacing:-11.170918pt;}
.ws4b{word-spacing:-10.880009pt;}
.ws7b{word-spacing:-10.313284pt;}
.ws3f{word-spacing:-10.298190pt;}
.ws3e{word-spacing:-10.240009pt;}
.ws37{word-spacing:-10.201702pt;}
.ws48{word-spacing:-10.181827pt;}
.ws40{word-spacing:-10.148569pt;}
.ws47{word-spacing:-10.123645pt;}
.ws23{word-spacing:-10.065463pt;}
.ws22{word-spacing:-10.007281pt;}
.ws54{word-spacing:-9.949099pt;}
.ws33{word-spacing:-9.890917pt;}
.ws13{word-spacing:-9.882899pt;}
.ws4a{word-spacing:-9.832735pt;}
.ws9{word-spacing:-9.788918pt;}
.ws27{word-spacing:-9.774554pt;}
.wsd{word-spacing:-9.750661pt;}
.ws1b{word-spacing:-9.716372pt;}
.ws1c{word-spacing:-9.658190pt;}
.ws4c{word-spacing:-9.600008pt;}
.ws28{word-spacing:-9.483644pt;}
.ws89{word-spacing:-9.463142pt;}
.ws6{word-spacing:-9.454172pt;}
.ws57{word-spacing:-9.431281pt;}
.ws55{word-spacing:-9.425462pt;}
.ws56{word-spacing:-9.367281pt;}
.ws25{word-spacing:-9.309099pt;}
.ws2f{word-spacing:-9.250917pt;}
.ws72{word-spacing:-9.192735pt;}
.ws7e{word-spacing:-9.139025pt;}
.ws30{word-spacing:-9.134553pt;}
.ws17{word-spacing:-9.085891pt;}
.ws79{word-spacing:-9.038071pt;}
.ws67{word-spacing:-9.018189pt;}
.ws16{word-spacing:-8.979623pt;}
.ws6c{word-spacing:-8.960007pt;}
.ws4{word-spacing:-8.873356pt;}
.ws4e{word-spacing:-8.849462pt;}
.ws45{word-spacing:-8.843644pt;}
.ws53{word-spacing:-8.820222pt;}
.ws15{word-spacing:-8.767088pt;}
.ws80{word-spacing:-8.713954pt;}
.ws6d{word-spacing:-8.669098pt;}
.ws66{word-spacing:-8.610916pt;}
.ws14{word-spacing:-8.501419pt;}
.ws31{word-spacing:-8.500371pt;}
.ws43{word-spacing:-8.494553pt;}
.ws8{word-spacing:-8.459500pt;}
.ws7f{word-spacing:-8.453598pt;}
.ws58{word-spacing:-8.442189pt;}
.ws7{word-spacing:-8.220396pt;}
.ws5{word-spacing:-8.172575pt;}
.ws85{word-spacing:-8.134795pt;}
.ws88{word-spacing:-8.028527pt;}
.ws81{word-spacing:-7.975393pt;}
.ws51{word-spacing:-7.912734pt;}
.ws82{word-spacing:-7.762858pt;}
.ws32{word-spacing:-7.680006pt;}
.ws77{word-spacing:-7.438741pt;}
.ws2c{word-spacing:-7.389097pt;}
.ws75{word-spacing:-7.330915pt;}
.ws18{word-spacing:-7.173072pt;}
.ws2e{word-spacing:-7.156370pt;}
.ws74{word-spacing:-6.981824pt;}
.ws78{word-spacing:-6.912716pt;}
.ws24{word-spacing:-6.865460pt;}
.ws2b{word-spacing:-6.458187pt;}
.ws50{word-spacing:-6.400005pt;}
.ws2a{word-spacing:-5.998550pt;}
.ws68{word-spacing:-5.643641pt;}
.ws87{word-spacing:-5.478102pt;}
.ws65{word-spacing:-5.410914pt;}
.ws1a{word-spacing:-5.178186pt;}
.ws86{word-spacing:-4.888316pt;}
.ws21{word-spacing:-4.770913pt;}
.ws12{word-spacing:-4.468558pt;}
.ws34{word-spacing:-4.363640pt;}
.ws52{word-spacing:-4.020367pt;}
.ws36{word-spacing:-3.840003pt;}
.ws26{word-spacing:-3.316366pt;}
.ws83{word-spacing:-3.134898pt;}
.ws84{word-spacing:-2.927676pt;}
.ws20{word-spacing:-2.909093pt;}
.ws76{word-spacing:-2.676366pt;}
.ws2d{word-spacing:-2.501820pt;}
.ws4f{word-spacing:-2.443638pt;}
.ws69{word-spacing:-0.930910pt;}
.ws7d{word-spacing:-0.696054pt;}
.ws7c{word-spacing:-0.690740pt;}
.ws63{word-spacing:-0.395637pt;}
.ws2{word-spacing:-0.148775pt;}
.ws39{word-spacing:-0.046545pt;}
.ws41{word-spacing:-0.042507pt;}
.wsf{word-spacing:0.000000pt;}
.ws10{word-spacing:2.385457pt;}
.ws5b{word-spacing:3.040870pt;}
.ws5c{word-spacing:3.529868pt;}
.ws5a{word-spacing:6.260185pt;}
.ws4d{word-spacing:9.379596pt;}
.ws5e{word-spacing:9.510204pt;}
.ws60{word-spacing:9.981255pt;}
.ws5f{word-spacing:9.999201pt;}
.ws11{word-spacing:10.159221pt;}
.ws1{word-spacing:20.786108pt;}
.ws3{word-spacing:23.846639pt;}
.ws0{word-spacing:28.615887pt;}
.ws1f{word-spacing:30.551973pt;}
.ws1d{word-spacing:2001.799006pt;}
.ws1e{word-spacing:2025.083389pt;}
._0{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._b{margin-left:-4.324053pt;}
._9{margin-left:-3.404861pt;}
._1{margin-left:-2.371905pt;}
._6{margin-left:-1.319847pt;}
._5{width:1.291162pt;}
._2{width:2.371905pt;}
._3a{width:3.582283pt;}
._8{width:14.757492pt;}
._7{width:16.402534pt;}
._4e{width:17.605201pt;}
._4{width:18.630868pt;}
._12{width:20.318529pt;}
._35{width:22.330676pt;}
._a{width:23.644641pt;}
._40{width:24.946469pt;}
._30{width:26.146777pt;}
._2f{width:28.119367pt;}
._55{width:29.542837pt;}
._3b{width:30.909706pt;}
._36{width:32.321227pt;}
._46{width:33.554678pt;}
._34{width:34.493886pt;}
._3c{width:36.931934pt;}
._4c{width:38.632759pt;}
._31{width:41.563365pt;}
._37{width:43.181297pt;}
._38{width:44.415893pt;}
._32{width:46.339061pt;}
._41{width:48.116404pt;}
._4d{width:53.630130pt;}
._33{width:56.993570pt;}
._39{width:61.513069pt;}
._52{width:66.364199pt;}
._3f{width:95.281760pt;}
._44{width:111.846789pt;}
._4a{width:137.813301pt;}
._48{width:139.550770pt;}
._4f{width:176.298170pt;}
._47{width:187.759136pt;}
._43{width:190.522097pt;}
._4b{width:194.879074pt;}
._42{width:214.186878pt;}
._3d{width:216.177255pt;}
._45{width:234.676340pt;}
._50{width:241.174621pt;}
._3e{width:265.563066pt;}
._51{width:284.082337pt;}
._54{width:344.182069pt;}
._53{width:348.026827pt;}
._49{width:369.636362pt;}
._2d{width:790.462332pt;}
._e{width:795.479524pt;}
._22{width:1080.123551pt;}
._10{width:1081.574897pt;}
._13{width:1104.920669pt;}
._14{width:1144.670044pt;}
._15{width:1177.570218pt;}
._1a{width:1228.108724pt;}
._29{width:1256.636174pt;}
._1e{width:1275.757282pt;}
._2e{width:1299.167119pt;}
._17{width:1309.534652pt;}
._23{width:1336.629066pt;}
._24{width:1342.672020pt;}
._d{width:1404.595052pt;}
._25{width:1427.093908pt;}
._18{width:1431.515730pt;}
._f{width:1455.367095pt;}
._1c{width:1477.764723pt;}
._26{width:1505.956634pt;}
._27{width:1571.818507pt;}
._1b{width:1591.137277pt;}
._2b{width:1617.433090pt;}
._1d{width:1628.688485pt;}
._16{width:1656.970463pt;}
._1f{width:1706.334982pt;}
._20{width:1714.247716pt;}
._2a{width:1721.171358pt;}
._11{width:1743.338650pt;}
._21{width:1924.172759pt;}
._28{width:2013.714652pt;}
._2c{width:2029.877084pt;}
._c{width:2032.682350pt;}
._19{width:2042.807985pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:104.142400pt;}
.fs2{font-size:148.775467pt;}
.y0{bottom:0.000000pt;}
.y3e{bottom:142.501333pt;}
.y91{bottom:143.021333pt;}
.y95{bottom:148.665333pt;}
.y8f{bottom:152.998667pt;}
.y20{bottom:154.156000pt;}
.y94{bottom:156.634667pt;}
.y90{bottom:159.242667pt;}
.y93{bottom:164.605333pt;}
.yfc{bottom:165.224000pt;}
.yae{bottom:166.672000pt;}
.y63{bottom:169.600000pt;}
.y3d{bottom:169.836000pt;}
.y92{bottom:172.576000pt;}
.yfb{bottom:196.690667pt;}
.y62{bottom:196.698667pt;}
.y3c{bottom:197.170667pt;}
.y8e{bottom:197.417333pt;}
.yad{bottom:198.140000pt;}
.yc1{bottom:199.526667pt;}
.y10{bottom:210.053333pt;}
.ye5{bottom:216.702667pt;}
.yfa{bottom:220.601333pt;}
.yac{bottom:222.049333pt;}
.y61{bottom:223.796000pt;}
.y3b{bottom:224.505333pt;}
.y8d{bottom:224.514667pt;}
.yc0{bottom:226.625333pt;}
.yf{bottom:231.970667pt;}
.yd4{bottom:243.105333pt;}
.yf9{bottom:244.512000pt;}
.yab{bottom:245.960000pt;}
.y60{bottom:250.894667pt;}
.y3a{bottom:251.840000pt;}
.y112{bottom:253.172000pt;}
.ybf{bottom:253.724000pt;}
.ye{bottom:256.545333pt;}
.yf8{bottom:268.422667pt;}
.yaa{bottom:269.870667pt;}
.y8c{bottom:271.413333pt;}
.ye4{bottom:277.170667pt;}
.y5f{bottom:277.993333pt;}
.yd{bottom:278.464000pt;}
.y39{bottom:279.176000pt;}
.y111{bottom:280.269333pt;}
.ybe{bottom:280.822667pt;}
.yd3{bottom:286.324000pt;}
.yf7{bottom:292.332000pt;}
.ya9{bottom:293.781333pt;}
.y75{bottom:296.916000pt;}
.yc{bottom:303.038667pt;}
.ye3{bottom:304.269333pt;}
.y5e{bottom:305.092000pt;}
.y38{bottom:306.510667pt;}
.y110{bottom:307.368000pt;}
.yf6{bottom:316.774667pt;}
.ya8{bottom:318.222667pt;}
.yb{bottom:324.956000pt;}
.ybd{bottom:329.648000pt;}
.y8b{bottom:330.718667pt;}
.ye2{bottom:331.368000pt;}
.y5d{bottom:332.190667pt;}
.y10f{bottom:334.466667pt;}
.y74{bottom:339.748000pt;}
.yd2{bottom:342.816000pt;}
.y37{bottom:348.626667pt;}
.ya{bottom:349.530667pt;}
.y8a{bottom:357.816000pt;}
.ye1{bottom:358.465333pt;}
.y5c{bottom:359.288000pt;}
.y10e{bottom:361.565333pt;}
.yd1{bottom:369.914667pt;}
.yf5{bottom:373.006667pt;}
.y36{bottom:375.961333pt;}
.ya7{bottom:376.014667pt;}
.y89{bottom:384.914667pt;}
.y13c{bottom:386.254667pt;}
.y5b{bottom:392.868000pt;}
.y73{bottom:394.036000pt;}
.yd0{bottom:397.013333pt;}
.ybc{bottom:399.961333pt;}
.y35{bottom:403.296000pt;}
.ye0{bottom:405.568000pt;}
.y10d{bottom:409.837333pt;}
.y13b{bottom:410.164000pt;}
.y88{bottom:412.916000pt;}
.y5a{bottom:419.966667pt;}
.y72{bottom:421.134667pt;}
.ycf{bottom:424.112000pt;}
.yf4{bottom:426.890667pt;}
.y34{bottom:430.632000pt;}
.ya6{bottom:430.797333pt;}
.y13a{bottom:434.074667pt;}
.y9{bottom:436.676000pt;}
.y87{bottom:440.014667pt;}
.y59{bottom:447.064000pt;}
.y71{bottom:448.233333pt;}
.yf3{bottom:453.988000pt;}
.ybb{bottom:454.488000pt;}
.ya5{bottom:457.896000pt;}
.y33{bottom:457.966667pt;}
.y139{bottom:457.985333pt;}
.ydf{bottom:466.036000pt;}
.y86{bottom:467.113333pt;}
.yce{bottom:470.518667pt;}
.y58{bottom:474.162667pt;}
.y70{bottom:475.332000pt;}
.y10c{bottom:476.993333pt;}
.yf2{bottom:481.086667pt;}
.yba{bottom:481.586667pt;}
.y138{bottom:481.896000pt;}
.y8{bottom:483.264000pt;}
.y32{bottom:485.301333pt;}
.yde{bottom:493.134667pt;}
.y85{bottom:494.210667pt;}
.ya4{bottom:498.836000pt;}
.y57{bottom:501.261333pt;}
.y10b{bottom:504.092000pt;}
.y137{bottom:505.805333pt;}
.y7{bottom:507.173333pt;}
.yf1{bottom:508.185333pt;}
.y31{bottom:512.636000pt;}
.ydd{bottom:520.233333pt;}
.y6f{bottom:521.352000pt;}
.ycd{bottom:527.010667pt;}
.y136{bottom:529.716000pt;}
.y6{bottom:531.084000pt;}
.y10a{bottom:531.190667pt;}
.y56{bottom:534.841333pt;}
.yb9{bottom:536.114667pt;}
.ya3{bottom:539.774667pt;}
.y30{bottom:539.970667pt;}
.y84{bottom:541.109333pt;}
.ydc{bottom:547.332000pt;}
.y135{bottom:553.626667pt;}
.ycc{bottom:554.109333pt;}
.yf0{bottom:554.181333pt;}
.y109{bottom:558.289333pt;}
.y55{bottom:561.938667pt;}
.yb8{bottom:563.213333pt;}
.ydb{bottom:574.430667pt;}
.y6e{bottom:575.640000pt;}
.y134{bottom:577.537333pt;}
.ya2{bottom:580.714667pt;}
.ycb{bottom:581.208000pt;}
.y2f{bottom:582.086667pt;}
.y108{bottom:587.664000pt;}
.y54{bottom:589.037333pt;}
.y83{bottom:600.414667pt;}
.y133{bottom:601.446667pt;}
.y6d{bottom:602.738667pt;}
.yef{bottom:608.065333pt;}
.yca{bottom:608.306667pt;}
.y2e{bottom:609.422667pt;}
.y107{bottom:614.761333pt;}
.y53{bottom:616.136000pt;}
.yb7{bottom:617.740000pt;}
.yda{bottom:621.532000pt;}
.ya1{bottom:621.653333pt;}
.y132{bottom:625.357333pt;}
.y82{bottom:627.512000pt;}
.y6c{bottom:629.837333pt;}
.y125{bottom:634.601333pt;}
.yee{bottom:635.164000pt;}
.y2d{bottom:636.757333pt;}
.y106{bottom:641.860000pt;}
.yb6{bottom:644.838667pt;}
.y131{bottom:649.268000pt;}
.y52{bottom:649.714667pt;}
.y81{bottom:654.610667pt;}
.yc9{bottom:654.713333pt;}
.y5{bottom:659.105333pt;}
.y124{bottom:661.698667pt;}
.y2c{bottom:664.092000pt;}
.ya0{bottom:667.761333pt;}
.y105{bottom:668.958667pt;}
.y6b{bottom:671.621333pt;}
.y1f{bottom:672.222667pt;}
.y130{bottom:673.178667pt;}
.yed{bottom:673.874667pt;}
.y51{bottom:676.813333pt;}
.yd9{bottom:682.001333pt;}
.y80{bottom:682.612000pt;}
.y123{bottom:688.797333pt;}
.y2b{bottom:691.426667pt;}
.yb5{bottom:693.664000pt;}
.y104{bottom:696.057333pt;}
.y12f{bottom:697.088000pt;}
.y11a{bottom:697.850667pt;}
.y1e{bottom:699.321333pt;}
.y50{bottom:703.912000pt;}
.yd8{bottom:709.100000pt;}
.y7f{bottom:709.710667pt;}
.yc8{bottom:711.205333pt;}
.y6a{bottom:713.406667pt;}
.yec{bottom:713.700000pt;}
.y122{bottom:715.896000pt;}
.y2a{bottom:718.761333pt;}
.y12e{bottom:720.998667pt;}
.y9f{bottom:722.545333pt;}
.y103{bottom:723.156000pt;}
.y46{bottom:723.721333pt;}
.y119{bottom:724.949333pt;}
.y4f{bottom:731.010667pt;}
.y1d{bottom:735.212000pt;}
.yd7{bottom:736.197333pt;}
.y7e{bottom:736.809333pt;}
.yeb{bottom:740.798667pt;}
.y12d{bottom:744.909333pt;}
.y29{bottom:746.096000pt;}
.y9e{bottom:749.642667pt;}
.yc7{bottom:753.641333pt;}
.y1c{bottom:759.122667pt;}
.y69{bottom:759.426667pt;}
.y121{bottom:761.892000pt;}
.yd6{bottom:763.296000pt;}
.y7d{bottom:763.906667pt;}
.yb4{bottom:763.977333pt;}
.y4e{bottom:764.589333pt;}
.y118{bottom:765.330667pt;}
.y45{bottom:765.365333pt;}
.y12c{bottom:768.820000pt;}
.y102{bottom:771.428000pt;}
.y28{bottom:773.430667pt;}
.y9d{bottom:776.741333pt;}
.yea{bottom:780.622667pt;}
.y1b{bottom:783.033333pt;}
.yb3{bottom:791.076000pt;}
.y4d{bottom:791.688000pt;}
.y12b{bottom:792.729333pt;}
.yc6{bottom:796.076000pt;}
.y4{bottom:802.264000pt;}
.y9c{bottom:803.840000pt;}
.y117{bottom:805.712000pt;}
.y1a{bottom:806.942667pt;}
.y44{bottom:807.009333pt;}
.yd5{bottom:810.398667pt;}
.y7c{bottom:810.805333pt;}
.y68{bottom:813.714667pt;}
.y27{bottom:815.548000pt;}
.y120{bottom:816.038667pt;}
.y101{bottom:816.512000pt;}
.y12a{bottom:816.640000pt;}
.yb2{bottom:818.173333pt;}
.y4c{bottom:818.786667pt;}
.ye9{bottom:820.448000pt;}
.y3{bottom:830.158667pt;}
.y19{bottom:830.853333pt;}
.yc5{bottom:838.510667pt;}
.y129{bottom:840.550667pt;}
.y67{bottom:840.813333pt;}
.y26{bottom:842.882667pt;}
.y11f{bottom:843.137333pt;}
.y4b{bottom:845.885333pt;}
.y116{bottom:846.094667pt;}
.y43{bottom:848.653333pt;}
.y9b{bottom:849.948000pt;}
.y18{bottom:854.764000pt;}
.y7b{bottom:857.701333pt;}
.ye8{bottom:859.158667pt;}
.y128{bottom:864.461333pt;}
.yb1{bottom:866.998667pt;}
.y25{bottom:870.217333pt;}
.y11e{bottom:870.236000pt;}
.y17{bottom:878.674667pt;}
.y4a{bottom:879.464000pt;}
.yc4{bottom:880.945333pt;}
.y66{bottom:882.598667pt;}
.y100{bottom:883.668000pt;}
.ye7{bottom:886.257333pt;}
.y115{bottom:886.476000pt;}
.y127{bottom:888.370667pt;}
.y2{bottom:888.702667pt;}
.y7a{bottom:889.168000pt;}
.y42{bottom:890.297333pt;}
.y11d{bottom:897.333333pt;}
.y24{bottom:897.552000pt;}
.y9a{bottom:904.730667pt;}
.y49{bottom:906.562667pt;}
.yff{bottom:910.766667pt;}
.y126{bottom:912.281333pt;}
.y16{bottom:913.078667pt;}
.y41{bottom:917.396000pt;}
.y15{bottom:917.898667pt;}
.yc3{bottom:923.888000pt;}
.y65{bottom:924.382667pt;}
.y11c{bottom:924.432000pt;}
.y1{bottom:924.568000pt;}
.y23{bottom:924.886667pt;}
.y114{bottom:926.858667pt;}
.y99{bottom:931.829333pt;}
.ye6{bottom:932.253333pt;}
.y48{bottom:933.661333pt;}
.y79{bottom:936.989333pt;}
.yb0{bottom:937.313333pt;}
.yfe{bottom:937.865333pt;}
.y13{bottom:941.637333pt;}
.y40{bottom:944.493333pt;}
.y14{bottom:946.916000pt;}
.y98{bottom:958.928000pt;}
.y47{bottom:960.758667pt;}
.y78{bottom:960.898667pt;}
.yaf{bottom:964.410667pt;}
.yfd{bottom:964.964000pt;}
.yc2{bottom:966.829333pt;}
.y22{bottom:967.004000pt;}
.y113{bottom:967.240000pt;}
.y64{bottom:970.404000pt;}
.y11b{bottom:970.428000pt;}
.y3f{bottom:971.592000pt;}
.y77{bottom:984.809333pt;}
.y12{bottom:985.341333pt;}
.y97{bottom:986.137333pt;}
.y76{bottom:1009.250667pt;}
.y96{bottom:1009.640000pt;}
.y11{bottom:1013.236000pt;}
.y21{bottom:1059.728000pt;}
.h13{height:1.115811pt;}
.hc{height:14.824448pt;}
.ha{height:24.696550pt;}
.h15{height:29.032418pt;}
.h9{height:29.925069pt;}
.h7{height:33.713664pt;}
.hb{height:38.043849pt;}
.h6{height:39.850400pt;}
.he{height:42.007308pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h12{height:46.730402pt;}
.h3{height:47.820800pt;}
.h14{height:51.039735pt;}
.hf{height:53.059084pt;}
.h2{height:53.559147pt;}
.hd{height:53.946402pt;}
.h11{height:58.020400pt;}
.h10{height:90.399735pt;}
.h4{height:105.611479pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x14{left:96.000000pt;}
.x15{left:98.434667pt;}
.x19{left:101.656000pt;}
.x83{left:102.641333pt;}
.x18{left:107.313333pt;}
.xb{left:111.940000pt;}
.x1d{left:115.925333pt;}
.x56{left:120.046667pt;}
.x1a{left:123.088000pt;}
.x1b{left:124.097333pt;}
.x49{left:127.882667pt;}
.x63{left:134.958667pt;}
.x25{left:136.554667pt;}
.x30{left:137.726667pt;}
.xd{left:139.952000pt;}
.x13{left:141.164000pt;}
.x52{left:145.190667pt;}
.x12{left:154.448000pt;}
.x3c{left:157.106667pt;}
.x53{left:158.234667pt;}
.x7b{left:159.472000pt;}
.x6e{left:160.729333pt;}
.x26{left:162.157333pt;}
.x54{left:163.778667pt;}
.x78{left:167.160000pt;}
.x55{left:170.597333pt;}
.x61{left:175.637333pt;}
.x4a{left:182.045333pt;}
.x1{left:187.261333pt;}
.x10{left:190.597333pt;}
.x24{left:193.078667pt;}
.x11{left:196.556000pt;}
.x23{left:197.582667pt;}
.x22{left:214.548000pt;}
.x27{left:215.765333pt;}
.x3e{left:220.146667pt;}
.x60{left:223.558667pt;}
.xc{left:227.498667pt;}
.x33{left:236.309333pt;}
.x4b{left:239.162667pt;}
.x6d{left:243.300000pt;}
.x3{left:244.284000pt;}
.x47{left:248.168000pt;}
.x4c{left:252.034667pt;}
.x48{left:255.572000pt;}
.x3d{left:257.098667pt;}
.x5f{left:262.422667pt;}
.x5a{left:265.252000pt;}
.x6f{left:273.145333pt;}
.x74{left:274.296000pt;}
.x2{left:276.292000pt;}
.x5d{left:282.541333pt;}
.x2e{left:284.649333pt;}
.x64{left:287.578667pt;}
.x34{left:292.192000pt;}
.x7{left:293.149333pt;}
.x76{left:294.684000pt;}
.x7c{left:299.152000pt;}
.x62{left:302.116000pt;}
.x35{left:303.054667pt;}
.x77{left:304.845333pt;}
.x66{left:307.018667pt;}
.x75{left:309.426667pt;}
.x4d{left:311.524000pt;}
.x4{left:316.888000pt;}
.x36{left:318.594667pt;}
.x3b{left:322.657333pt;}
.x5e{left:323.708000pt;}
.x1c{left:331.561333pt;}
.x2f{left:332.558667pt;}
.x5{left:333.781333pt;}
.x6{left:339.008000pt;}
.xe{left:340.090667pt;}
.x45{left:341.410667pt;}
.x7d{left:344.000000pt;}
.x8{left:349.013333pt;}
.x67{left:350.870667pt;}
.x46{left:353.064000pt;}
.x7a{left:356.090667pt;}
.x9{left:360.858667pt;}
.x17{left:363.736000pt;}
.x79{left:364.802667pt;}
.x68{left:365.861333pt;}
.x69{left:371.405333pt;}
.x6a{left:380.092000pt;}
.x6b{left:385.636000pt;}
.x70{left:393.117333pt;}
.x7e{left:395.692000pt;}
.x3f{left:396.857333pt;}
.x4f{left:399.418667pt;}
.x71{left:400.390667pt;}
.x4e{left:406.321333pt;}
.x72{left:409.290667pt;}
.x6c{left:410.836000pt;}
.x40{left:413.846667pt;}
.x73{left:416.562667pt;}
.x41{left:419.617333pt;}
.x42{left:426.434667pt;}
.x57{left:436.454667pt;}
.x50{left:439.092000pt;}
.x58{left:450.542667pt;}
.x43{left:453.817333pt;}
.xf{left:454.897333pt;}
.x51{left:469.164000pt;}
.x28{left:472.689333pt;}
.x44{left:476.576000pt;}
.x81{left:478.248000pt;}
.x29{left:479.961333pt;}
.x59{left:482.481333pt;}
.x2a{left:488.532000pt;}
.x2b{left:503.077333pt;}
.x82{left:504.705333pt;}
.x2c{left:511.648000pt;}
.x2d{left:526.193333pt;}
.x37{left:560.698667pt;}
.x1e{left:563.460000pt;}
.x1f{left:570.732000pt;}
.x5b{left:573.296000pt;}
.x38{left:575.244000pt;}
.x20{left:578.041333pt;}
.x39{left:582.378667pt;}
.x21{left:585.313333pt;}
.x5c{left:594.716000pt;}
.x3a{left:596.924000pt;}
.x31{left:658.100000pt;}
.x7f{left:679.240000pt;}
.x32{left:684.372000pt;}
.x80{left:695.462667pt;}
.x65{left:703.122667pt;}
.x16{left:710.396000pt;}
}




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