
    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_6a5e51c06bc5de2cdcf5118f.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_ef86e07e1408b96b1de126d8.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_100936a2cdb670dd9320d9b9.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_89d587498904ea91251a026a.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6757bf33e9dab7529ba747bd.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_19e7211ac7ca3bd8243f1a71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a6eb458e9c25beaa79749db6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7b8bb3ca88fc64dec00b7845.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_bba4e13974fc108ee8d56196.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_13ec15cb02af35250ab242ad.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_9bdb16ae7869eddf19ade2ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7dc4db7d2a4253d4757ce0c3.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0be1d5943792083c0a8489f4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d569063a64a2b61ee60b28c2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;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_7f5bca8bc72683bf026ed320.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_0c91e6842c7d895321369904.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.518000;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_183d8059a8cac1dbe7f5172b.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_a1b60322c4d3c72911cd46d2.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_bba4e13974fc108ee8d56196.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_24612c30e8b1c3f4170bb2ce.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.400000;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;}
.m3{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);}
.m1f{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);}
.m12{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);}
.m22{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);}
.m14{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);}
.m1d{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);}
.m1a{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);}
.m10{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);}
.m9{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);}
.m1e{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);}
.m8{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);}
.m17{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);}
.mc{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);}
.mf{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);}
.m1{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);}
.m13{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);}
.m20{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);}
.m16{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);}
.m6{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);}
.ma{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);}
.m21{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);}
.m11{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);}
.m5{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);}
.md{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);}
.mb{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);}
.m4{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);}
.m1b{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.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);}
.m1c{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);}
.m15{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);}
.m18{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);}
.me{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);}
.m2{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);}
.m7{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:-12.912000px;}
.v3{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:7.356000px;}
.v7{vertical-align:18.912000px;}
.v6{vertical-align:23.754000px;}
.v4{vertical-align:27.024000px;}
.v8{vertical-align:34.464000px;}
.v5{vertical-align:44.280000px;}
.v9{vertical-align:58.206000px;}
.ls3{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000464px;}
.ls28{letter-spacing:0.000511px;}
.ls21{letter-spacing:0.001590px;}
.ls2e{letter-spacing:0.001593px;}
.ls4{letter-spacing:0.002137px;}
.ls1e{letter-spacing:0.002147px;}
.ls29{letter-spacing:0.003764px;}
.ls19{letter-spacing:0.004332px;}
.ls2b{letter-spacing:0.008536px;}
.ls11{letter-spacing:0.011568px;}
.ls15{letter-spacing:0.015567px;}
.ls1b{letter-spacing:0.019529px;}
.ls25{letter-spacing:0.027165px;}
.ls30{letter-spacing:0.027739px;}
.ls7{letter-spacing:0.237686px;}
.ls9{letter-spacing:0.239821px;}
.ls32{letter-spacing:1.767274px;}
.ls33{letter-spacing:2.356366px;}
.ls34{letter-spacing:2.984915px;}
.lsa{letter-spacing:2.988103px;}
.ls23{letter-spacing:2.989289px;}
.lsd{letter-spacing:2.989739px;}
.ls16{letter-spacing:2.991515px;}
.ls8{letter-spacing:2.994103px;}
.ls26{letter-spacing:2.995289px;}
.ls2a{letter-spacing:5.743488px;}
.ls2d{letter-spacing:5.749488px;}
.ls10{letter-spacing:7.003642px;}
.ls12{letter-spacing:10.930918px;}
.ls2f{letter-spacing:12.698192px;}
.lsb{letter-spacing:14.530921px;}
.lsc{letter-spacing:14.596376px;}
.ls1a{letter-spacing:17.533739px;}
.ls1f{letter-spacing:17.536059px;}
.ls14{letter-spacing:18.130924px;}
.ls27{letter-spacing:18.165739px;}
.ls6{letter-spacing:18.196379px;}
.ls31{letter-spacing:20.487290px;}
.ls5{letter-spacing:21.175739px;}
.ls20{letter-spacing:21.730823px;}
.ls17{letter-spacing:21.992746px;}
.ls24{letter-spacing:23.629111px;}
.ls2c{letter-spacing:24.811289px;}
.ls18{letter-spacing:24.811739px;}
.ls2{letter-spacing:33.839194px;}
.ls13{letter-spacing:35.869121px;}
.ls1{letter-spacing:35.883533px;}
.lse{letter-spacing:36.327303px;}
.lsf{letter-spacing:36.392758px;}
.ls1c{letter-spacing:39.347971px;}
.ls1d{letter-spacing:100.703412px;}
.ls0{letter-spacing:341.471589px;}
.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;}
}
.ws5e{word-spacing:-52.756408px;}
.ws64{word-spacing:-47.258221px;}
.ws1a{word-spacing:-42.637126px;}
.ws37{word-spacing:-33.453846px;}
.ws1d{word-spacing:-33.211407px;}
.ws30{word-spacing:-32.727300px;}
.ws43{word-spacing:-31.771663px;}
.ws39{word-spacing:-31.706208px;}
.ws1c{word-spacing:-29.938934px;}
.ws78{word-spacing:-29.887800px;}
.ws1b{word-spacing:-19.307158px;}
.ws42{word-spacing:-18.183288px;}
.ws6b{word-spacing:-17.607287px;}
.ws4f{word-spacing:-16.952741px;}
.ws5f{word-spacing:-16.558630px;}
.ws59{word-spacing:-15.185467px;}
.wsb{word-spacing:-14.943900px;}
.ws53{word-spacing:-14.530921px;}
.ws81{word-spacing:-14.405920px;}
.ws2c{word-spacing:-14.269103px;}
.ws55{word-spacing:-14.138194px;}
.ws56{word-spacing:-14.072739px;}
.ws61{word-spacing:-13.549102px;}
.ws23{word-spacing:-13.352738px;}
.ws5a{word-spacing:-13.287284px;}
.ws41{word-spacing:-13.221829px;}
.ws35{word-spacing:-13.090920px;}
.ws33{word-spacing:-13.025465px;}
.ws62{word-spacing:-12.960011px;}
.ws6a{word-spacing:-12.894556px;}
.ws57{word-spacing:-12.829102px;}
.ws6d{word-spacing:-12.763647px;}
.ws5c{word-spacing:-12.567283px;}
.ws21{word-spacing:-12.501829px;}
.ws69{word-spacing:-12.370919px;}
.ws5b{word-spacing:-11.984737px;}
.ws34{word-spacing:-11.919283px;}
.ws20{word-spacing:-11.716373px;}
.ws4e{word-spacing:-11.585464px;}
.ws75{word-spacing:-11.520010px;}
.ws38{word-spacing:-11.476915px;}
.ws22{word-spacing:-11.461100px;}
.ws26{word-spacing:-11.454555px;}
.ws4b{word-spacing:-11.417140px;}
.ws40{word-spacing:-11.389100px;}
.ws3f{word-spacing:-11.323646px;}
.ws51{word-spacing:-11.258191px;}
.ws1f{word-spacing:-11.192737px;}
.ws24{word-spacing:-11.127282px;}
.ws2b{word-spacing:-11.061827px;}
.ws1e{word-spacing:-10.996373px;}
.ws15{word-spacing:-10.930918px;}
.ws14{word-spacing:-10.865464px;}
.ws13{word-spacing:-10.800009px;}
.ws32{word-spacing:-10.734554px;}
.ws18{word-spacing:-10.669100px;}
.ws80{word-spacing:-10.646034px;}
.ws2e{word-spacing:-10.603645px;}
.ws76{word-spacing:-10.544736px;}
.ws19{word-spacing:-10.538191px;}
.ws2a{word-spacing:-10.472736px;}
.ws47{word-spacing:-10.407281px;}
.ws10{word-spacing:-10.281403px;}
.ws6f{word-spacing:-10.276372px;}
.ws7f{word-spacing:-10.221628px;}
.ws50{word-spacing:-10.210918px;}
.ws87{word-spacing:-10.161852px;}
.ws5d{word-spacing:-10.145463px;}
.wsc{word-spacing:-10.102076px;}
.ws36{word-spacing:-10.021099px;}
.ws4{word-spacing:-9.982525px;}
.ws28{word-spacing:-9.955645px;}
.ws79{word-spacing:-9.922750px;}
.ws7d{word-spacing:-9.862974px;}
.ws31{word-spacing:-9.824735px;}
.ws4d{word-spacing:-9.687281px;}
.ws83{word-spacing:-9.623872px;}
.ws6c{word-spacing:-9.621826px;}
.ws71{word-spacing:-9.562917px;}
.ws45{word-spacing:-9.360008px;}
.ws77{word-spacing:-9.271196px;}
.ws5{word-spacing:-9.247945px;}
.ws82{word-spacing:-9.211420px;}
.ws6{word-spacing:-9.194147px;}
.ws7a{word-spacing:-9.151644px;}
.ws27{word-spacing:-9.098189px;}
.ws7e{word-spacing:-9.032093px;}
.ws66{word-spacing:-8.967280px;}
.ws84{word-spacing:-8.733215px;}
.ws3c{word-spacing:-8.705462px;}
.ws67{word-spacing:-8.378189px;}
.wse{word-spacing:-8.368584px;}
.ws4c{word-spacing:-8.247280px;}
.ws74{word-spacing:-7.985461px;}
.wsd{word-spacing:-7.830604px;}
.ws49{word-spacing:-7.265461px;}
.ws44{word-spacing:-7.252370px;}
.ws29{word-spacing:-7.134551px;}
.wsf{word-spacing:-6.993745px;}
.ws3d{word-spacing:-6.938188px;}
.ws2d{word-spacing:-6.807278px;}
.ws4a{word-spacing:-6.748369px;}
.ws72{word-spacing:-6.545460px;}
.ws73{word-spacing:-6.152732px;}
.ws3e{word-spacing:-6.021823px;}
.ws12{word-spacing:-5.825459px;}
.ws60{word-spacing:-5.644630px;}
.ws70{word-spacing:-5.629096px;}
.ws6e{word-spacing:-5.432732px;}
.ws2f{word-spacing:-5.301823px;}
.ws63{word-spacing:-4.189094px;}
.ws68{word-spacing:-3.927276px;}
.ws52{word-spacing:-3.730912px;}
.wsa{word-spacing:-3.592514px;}
.ws46{word-spacing:-3.338185px;}
.ws25{word-spacing:-3.272730px;}
.ws54{word-spacing:-2.290911px;}
.ws58{word-spacing:-1.636365px;}
.ws7c{word-spacing:-0.783060px;}
.ws7b{word-spacing:-0.777083px;}
.ws86{word-spacing:-0.245080px;}
.ws85{word-spacing:-0.239102px;}
.ws1{word-spacing:-0.086077px;}
.ws7{word-spacing:0.000000px;}
.ws3a{word-spacing:0.013091px;}
.ws11{word-spacing:1.898183px;}
.ws9{word-spacing:3.076366px;}
.ws2{word-spacing:23.384371px;}
.ws3b{word-spacing:24.310718px;}
.ws65{word-spacing:24.765319px;}
.ws3{word-spacing:26.827469px;}
.ws8{word-spacing:26.970931px;}
.ws48{word-spacing:30.691662px;}
.ws0{word-spacing:32.192873px;}
.ws17{word-spacing:34.370970px;}
.ws16{word-spacing:2254.578812px;}
._0{margin-left:-8.091257px;}
._3{margin-left:-5.881958px;}
._7{margin-left:-4.626662px;}
._2{margin-left:-2.668393px;}
._6{margin-left:-1.506355px;}
._5{width:1.560154px;}
._1{width:2.668393px;}
._2c{width:4.440913px;}
._9{width:13.891889px;}
._a{width:15.966062px;}
._33{width:19.800542px;}
._4{width:20.959727px;}
._27{width:22.078908px;}
._c{width:23.314916px;}
._28{width:24.697898px;}
._b{width:26.596595px;}
._8{width:29.129908px;}
._30{width:30.142286px;}
._d{width:31.794620px;}
._31{width:34.480228px;}
._2e{width:36.392758px;}
._34{width:37.788818px;}
._29{width:40.304788px;}
._2f{width:41.448932px;}
._35{width:43.916447px;}
._36{width:45.593273px;}
._2a{width:46.745341px;}
._32{width:65.585509px;}
._2b{width:67.418238px;}
._2d{width:69.094606px;}
._1a{width:889.670066px;}
._1f{width:941.030413px;}
._f{width:953.335878px;}
._1b{width:977.154196px;}
._1c{width:1223.478668px;}
._18{width:1250.041580px;}
._19{width:1301.609048px;}
._10{width:1311.680101px;}
._21{width:1314.056179px;}
._20{width:1333.616347px;}
._23{width:1334.673478px;}
._16{width:1378.665259px;}
._15{width:1491.055274px;}
._1e{width:1495.496330px;}
._11{width:1529.663631px;}
._17{width:1531.018465px;}
._22{width:1560.808364px;}
._13{width:1571.498978px;}
._25{width:1576.855498px;}
._12{width:1762.747462px;}
._1d{width:1791.939314px;}
._24{width:2218.969878px;}
._26{width:2250.113992px;}
._14{width:2251.699878px;}
._e{width:2263.133644px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y65{bottom:158.427000px;}
.y2e{bottom:160.314000px;}
.y64{bottom:169.651500px;}
.y48{bottom:190.800000px;}
.ybd{bottom:190.939500px;}
.y2d{bottom:191.254500px;}
.y11a{bottom:192.403500px;}
.yf{bottom:210.736500px;}
.y119{bottom:219.303000px;}
.y63{bottom:220.083000px;}
.y47{bottom:221.286000px;}
.ybc{bottom:221.425500px;}
.y2c{bottom:222.195000px;}
.y8f{bottom:223.098000px;}
.y8e{bottom:234.322500px;}
.yfc{bottom:237.427500px;}
.ya6{bottom:242.892000px;}
.y118{bottom:246.202500px;}
.ye{bottom:247.348500px;}
.y46{bottom:251.770500px;}
.ye3{bottom:252.543000px;}
.y2b{bottom:253.135500px;}
.y79{bottom:268.276500px;}
.ybb{bottom:268.770000px;}
.y62{bottom:272.997000px;}
.y117{bottom:273.102000px;}
.y8d{bottom:277.846500px;}
.ye2{bottom:283.027500px;}
.y45{bottom:283.422000px;}
.yd{bottom:283.962000px;}
.yfb{bottom:284.055000px;}
.y2a{bottom:284.076000px;}
.y116{bottom:300.000000px;}
.yd0{bottom:305.112000px;}
.ya5{bottom:305.784000px;}
.y8c{bottom:308.332500px;}
.ye1{bottom:313.513500px;}
.y44{bottom:313.906500px;}
.y29{bottom:315.016500px;}
.y78{bottom:315.267000px;}
.yba{bottom:316.114500px;}
.yc{bottom:320.574000px;}
.y61{bottom:322.324500px;}
.y115{bottom:326.899500px;}
.yfa{bottom:330.681000px;}
.ya4{bottom:336.270000px;}
.y8b{bottom:338.818500px;}
.y43{bottom:344.392500px;}
.y77{bottom:345.753000px;}
.y114{bottom:353.799000px;}
.ycf{bottom:354.865500px;}
.yb{bottom:357.187500px;}
.y28{bottom:362.775000px;}
.ye0{bottom:366.030000px;}
.ya3{bottom:366.754500px;}
.yb9{bottom:368.001000px;}
.y8a{bottom:369.303000px;}
.yf9{bottom:377.308500px;}
.y113{bottom:380.698500px;}
.y60{bottom:389.917500px;}
.y27{bottom:393.715500px;}
.y42{bottom:394.810500px;}
.y76{bottom:397.521000px;}
.ya2{bottom:397.587000px;}
.y89{bottom:399.789000px;}
.y112{bottom:407.596500px;}
.yf8{bottom:423.936000px;}
.y26{bottom:424.656000px;}
.yce{bottom:424.894500px;}
.ya1{bottom:428.073000px;}
.ya{bottom:429.651000px;}
.yb8{bottom:429.717000px;}
.ydf{bottom:431.352000px;}
.y5f{bottom:432.876000px;}
.y111{bottom:434.496000px;}
.y41{bottom:445.227000px;}
.y88{bottom:451.534500px;}
.yf7{bottom:454.662000px;}
.ycd{bottom:455.380500px;}
.y25{bottom:455.596500px;}
.ya0{bottom:458.557500px;}
.y75{bottom:458.563500px;}
.yb7{bottom:460.203000px;}
.y110{bottom:461.395500px;}
.yde{bottom:461.838000px;}
.y5e{bottom:463.362000px;}
.y40{bottom:475.713000px;}
.y9{bottom:482.062500px;}
.yf6{bottom:485.146500px;}
.y24{bottom:486.537000px;}
.ycc{bottom:487.461000px;}
.y10f{bottom:488.295000px;}
.yb6{bottom:490.687500px;}
.ydd{bottom:492.322500px;}
.y5d{bottom:493.848000px;}
.y87{bottom:499.693500px;}
.y74{bottom:504.105000px;}
.y3f{bottom:506.199000px;}
.y8{bottom:508.962000px;}
.y9f{bottom:510.649500px;}
.y10e{bottom:515.193000px;}
.yf5{bottom:515.632500px;}
.y23{bottom:517.476000px;}
.ycb{bottom:517.945500px;}
.yb5{bottom:521.314500px;}
.ydc{bottom:523.579500px;}
.y5c{bottom:525.502500px;}
.y7{bottom:535.860000px;}
.y10d{bottom:542.092500px;}
.yf4{bottom:546.118500px;}
.yca{bottom:548.431500px;}
.y73{bottom:549.645000px;}
.ydb{bottom:554.065500px;}
.yb4{bottom:554.758500px;}
.y5b{bottom:555.987000px;}
.y3e{bottom:559.108500px;}
.y86{bottom:560.074500px;}
.y22{bottom:565.236000px;}
.y10c{bottom:568.992000px;}
.yb3{bottom:573.018000px;}
.y9e{bottom:573.541500px;}
.yf3{bottom:576.844500px;}
.yc9{bottom:578.917500px;}
.y5a{bottom:586.473000px;}
.y85{bottom:590.560500px;}
.y72{bottom:595.186500px;}
.y10b{bottom:595.891500px;}
.yda{bottom:603.303000px;}
.y9d{bottom:604.027500px;}
.yf2{bottom:607.329000px;}
.y59{bottom:616.959000px;}
.y21{bottom:617.436000px;}
.yb2{bottom:620.362500px;}
.y84{bottom:621.045000px;}
.y10a{bottom:622.789500px;}
.y71{bottom:625.695000px;}
.y3d{bottom:626.677500px;}
.yc8{bottom:632.257500px;}
.y9c{bottom:634.860000px;}
.yf1{bottom:637.815000px;}
.y58{bottom:648.613500px;}
.y109{bottom:649.689000px;}
.yb1{bottom:650.848500px;}
.y83{bottom:651.531000px;}
.yd9{bottom:652.540500px;}
.y9b{bottom:665.344500px;}
.yf0{bottom:668.301000px;}
.y70{bottom:672.685500px;}
.y3c{bottom:675.855000px;}
.y57{bottom:679.099500px;}
.y20{bottom:680.949000px;}
.y6{bottom:682.690500px;}
.y9a{bottom:695.830500px;}
.yef{bottom:699.025500px;}
.yc7{bottom:702.286500px;}
.yb0{bottom:702.733500px;}
.y82{bottom:703.276500px;}
.yd8{bottom:705.057000px;}
.y56{bottom:709.585500px;}
.y1f{bottom:711.435000px;}
.y6f{bottom:719.676000px;}
.y3b{bottom:725.034000px;}
.yee{bottom:729.511500px;}
.yc6{bottom:732.772500px;}
.y55{bottom:740.070000px;}
.y1e{bottom:741.921000px;}
.y108{bottom:743.836500px;}
.y99{bottom:747.922500px;}
.y6e{bottom:750.162000px;}
.yed{bottom:759.997500px;}
.y81{bottom:763.657500px;}
.yaf{bottom:764.449500px;}
.yc5{bottom:764.853000px;}
.yd7{bottom:770.379000px;}
.y54{bottom:770.556000px;}
.y3a{bottom:774.211500px;}
.y107{bottom:783.288000px;}
.yec{bottom:790.722000px;}
.y80{bottom:794.143500px;}
.yae{bottom:794.935500px;}
.yc4{bottom:795.339000px;}
.y6d{bottom:797.152500px;}
.y1d{bottom:799.759500px;}
.y53{bottom:802.210500px;}
.y39{bottom:805.861500px;}
.y98{bottom:810.814500px;}
.y106{bottom:813.774000px;}
.yd6{bottom:819.615000px;}
.yeb{bottom:821.208000px;}
.yad{bottom:825.421500px;}
.yc3{bottom:825.823500px;}
.y1c{bottom:826.659000px;}
.y52{bottom:832.696500px;}
.y7f{bottom:836.172000px;}
.y5{bottom:836.686500px;}
.y38{bottom:837.511500px;}
.y97{bottom:841.647000px;}
.y6c{bottom:844.144500px;}
.y105{bottom:844.260000px;}
.yea{bottom:851.694000px;}
.y1b{bottom:853.558500px;}
.yac{bottom:856.047000px;}
.y51{bottom:863.182500px;}
.y4{bottom:868.068000px;}
.yd5{bottom:868.852500px;}
.y37{bottom:869.161500px;}
.y96{bottom:872.133000px;}
.y6b{bottom:874.629000px;}
.y104{bottom:874.746000px;}
.yc2{bottom:879.165000px;}
.y1a{bottom:880.456500px;}
.y7e{bottom:880.468500px;}
.ye9{bottom:882.180000px;}
.yab{bottom:886.533000px;}
.y50{bottom:893.667000px;}
.yd4{bottom:900.109500px;}
.y36{bottom:900.811500px;}
.y95{bottom:902.617500px;}
.y6a{bottom:905.115000px;}
.y103{bottom:905.230500px;}
.y19{bottom:907.356000px;}
.yaa{bottom:917.019000px;}
.y4f{bottom:924.153000px;}
.y7d{bottom:924.765000px;}
.yd3{bottom:930.595500px;}
.y35{bottom:932.461500px;}
.y94{bottom:933.103500px;}
.y3{bottom:933.928500px;}
.ye8{bottom:934.165500px;}
.y18{bottom:934.255500px;}
.y102{bottom:935.716500px;}
.ya9{bottom:947.503500px;}
.yc1{bottom:949.194000px;}
.y4e{bottom:955.807500px;}
.y69{bottom:956.883000px;}
.yd2{bottom:961.081500px;}
.y17{bottom:961.155000px;}
.y93{bottom:963.936000px;}
.y101{bottom:966.202500px;}
.y7c{bottom:966.793500px;}
.y2{bottom:974.277000px;}
.yc0{bottom:979.678500px;}
.y34{bottom:981.640500px;}
.y4d{bottom:986.293500px;}
.y16{bottom:988.053000px;}
.y92{bottom:994.420500px;}
.ye7{bottom:996.448500px;}
.y100{bottom:996.688500px;}
.y7b{bottom:997.279500px;}
.ya8{bottom:999.390000px;}
.y33{bottom:1013.290500px;}
.yd1{bottom:1013.598000px;}
.y4c{bottom:1016.779500px;}
.y68{bottom:1017.925500px;}
.y91{bottom:1024.906500px;}
.y15{bottom:1026.759000px;}
.ye6{bottom:1026.934500px;}
.yff{bottom:1027.174500px;}
.y14{bottom:1032.181500px;}
.ybf{bottom:1033.083000px;}
.y1{bottom:1040.139000px;}
.y32{bottom:1044.940500px;}
.y4b{bottom:1047.265500px;}
.ya7{bottom:1047.688500px;}
.y67{bottom:1048.411500px;}
.y7a{bottom:1049.025000px;}
.ye5{bottom:1057.420500px;}
.yfe{bottom:1057.659000px;}
.y12{bottom:1059.342000px;}
.y13{bottom:1065.280500px;}
.y31{bottom:1076.590500px;}
.y90{bottom:1076.998500px;}
.y4a{bottom:1077.750000px;}
.y66{bottom:1078.920000px;}
.ybe{bottom:1086.487500px;}
.ye4{bottom:1087.905000px;}
.yfd{bottom:1088.145000px;}
.y30{bottom:1108.240500px;}
.y11{bottom:1108.509000px;}
.y49{bottom:1109.404500px;}
.y10{bottom:1139.890500px;}
.y2f{bottom:1192.194000px;}
.ha{height:27.783619px;}
.h15{height:33.187496px;}
.h9{height:35.865450px;}
.h7{height:37.927872px;}
.hb{height:41.842920px;}
.h6{height:44.831700px;}
.hf{height:46.865494px;}
.h8{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:53.798400px;}
.h14{height:58.206000px;}
.hc{height:60.211496px;}
.h10{height:60.217496px;}
.h2{height:60.254040px;}
.h11{height:62.889450px;}
.h4{height:67.610040px;}
.h12{height:91.145494px;}
.he{height:91.763494px;}
.h13{height:93.988950px;}
.hd{height:94.765715px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:106.215000px;}
.xd{left:108.018000px;}
.x18{left:113.910000px;}
.x6a{left:115.471500px;}
.x3b{left:117.501000px;}
.x15{left:120.273000px;}
.x3a{left:122.047500px;}
.x14{left:126.636000px;}
.x1b{left:130.416000px;}
.x20{left:132.297000px;}
.x2{left:136.374000px;}
.x6c{left:138.441000px;}
.x6b{left:139.465500px;}
.x5c{left:140.898000px;}
.x16{left:144.042000px;}
.x17{left:145.179000px;}
.x2d{left:153.213000px;}
.x57{left:155.463000px;}
.x1{left:157.878000px;}
.x3f{left:159.615000px;}
.x29{left:161.566500px;}
.x2e{left:167.739000px;}
.x58{left:170.649000px;}
.x12{left:173.754000px;}
.x44{left:175.132500px;}
.x2a{left:182.352000px;}
.x40{left:185.238000px;}
.x50{left:202.074000px;}
.x60{left:205.125000px;}
.x1c{left:212.166000px;}
.x1d{left:220.348500px;}
.x2b{left:222.423000px;}
.x1e{left:230.311500px;}
.x4e{left:236.260500px;}
.x1f{left:238.492500px;}
.x2c{left:241.659000px;}
.x10{left:247.491000px;}
.x61{left:249.843000px;}
.x11{left:254.194500px;}
.x4f{left:268.095000px;}
.x4c{left:272.641500px;}
.x62{left:273.715500px;}
.x4{left:274.819500px;}
.x4d{left:278.437500px;}
.x21{left:281.298000px;}
.x5d{left:283.197000px;}
.x5f{left:285.144000px;}
.x64{left:287.017500px;}
.x3e{left:289.428000px;}
.x3c{left:299.259000px;}
.x59{left:304.086000px;}
.x34{left:305.121000px;}
.x47{left:308.472000px;}
.x28{left:309.474000px;}
.x35{left:315.649500px;}
.x63{left:317.851500px;}
.x3d{left:319.428000px;}
.x36{left:321.937500px;}
.x37{left:327.846000px;}
.x8{left:329.793000px;}
.xc{left:337.426500px;}
.x30{left:339.775500px;}
.x24{left:342.126000px;}
.x25{left:350.307000px;}
.x5{left:353.085000px;}
.x26{left:358.653000px;}
.x22{left:362.593500px;}
.x2f{left:365.478000px;}
.x27{left:366.834000px;}
.x69{left:370.099500px;}
.x1a{left:373.006500px;}
.x7{left:381.384000px;}
.x53{left:383.893500px;}
.xe{left:389.935500px;}
.x9{left:392.640000px;}
.x6{left:394.074000px;}
.x3{left:397.134000px;}
.x56{left:398.482500px;}
.x33{left:406.059000px;}
.x13{left:409.203000px;}
.xa{left:414.060000px;}
.x48{left:432.252000px;}
.x65{left:438.214500px;}
.x23{left:440.896500px;}
.x43{left:451.762500px;}
.x55{left:453.714000px;}
.x49{left:457.875000px;}
.x66{left:464.071500px;}
.x54{left:473.929500px;}
.xf{left:519.187500px;}
.x67{left:534.103500px;}
.x51{left:543.070500px;}
.x68{left:560.154000px;}
.x45{left:589.617000px;}
.x52{left:592.884000px;}
.x46{left:607.617000px;}
.x4a{left:610.984500px;}
.x4b{left:624.963000px;}
.x5a{left:692.823000px;}
.x5b{left:728.631000px;}
.x38{left:741.492000px;}
.x39{left:761.661000px;}
.x41{left:770.806500px;}
.x31{left:779.346000px;}
.x5e{left:791.013000px;}
.x32{left:792.982500px;}
.x42{left:794.262000px;}
.x19{left:799.195500px;}
@media print{
.v2{vertical-align:-11.477333pt;}
.v3{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:6.538667pt;}
.v7{vertical-align:16.810667pt;}
.v6{vertical-align:21.114667pt;}
.v4{vertical-align:24.021333pt;}
.v8{vertical-align:30.634667pt;}
.v5{vertical-align:39.360000pt;}
.v9{vertical-align:51.738667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000412pt;}
.ls28{letter-spacing:0.000455pt;}
.ls21{letter-spacing:0.001414pt;}
.ls2e{letter-spacing:0.001416pt;}
.ls4{letter-spacing:0.001899pt;}
.ls1e{letter-spacing:0.001908pt;}
.ls29{letter-spacing:0.003346pt;}
.ls19{letter-spacing:0.003851pt;}
.ls2b{letter-spacing:0.007587pt;}
.ls11{letter-spacing:0.010282pt;}
.ls15{letter-spacing:0.013837pt;}
.ls1b{letter-spacing:0.017359pt;}
.ls25{letter-spacing:0.024146pt;}
.ls30{letter-spacing:0.024657pt;}
.ls7{letter-spacing:0.211276pt;}
.ls9{letter-spacing:0.213174pt;}
.ls32{letter-spacing:1.570910pt;}
.ls33{letter-spacing:2.094547pt;}
.ls34{letter-spacing:2.653258pt;}
.lsa{letter-spacing:2.656092pt;}
.ls23{letter-spacing:2.657146pt;}
.lsd{letter-spacing:2.657546pt;}
.ls16{letter-spacing:2.659124pt;}
.ls8{letter-spacing:2.661425pt;}
.ls26{letter-spacing:2.662479pt;}
.ls2a{letter-spacing:5.105323pt;}
.ls2d{letter-spacing:5.110656pt;}
.ls10{letter-spacing:6.225460pt;}
.ls12{letter-spacing:9.716372pt;}
.ls2f{letter-spacing:11.287282pt;}
.lsb{letter-spacing:12.916374pt;}
.lsc{letter-spacing:12.974556pt;}
.ls1a{letter-spacing:15.585546pt;}
.ls1f{letter-spacing:15.587608pt;}
.ls14{letter-spacing:16.116377pt;}
.ls27{letter-spacing:16.147324pt;}
.ls6{letter-spacing:16.174559pt;}
.ls31{letter-spacing:18.210924pt;}
.ls5{letter-spacing:18.822879pt;}
.ls20{letter-spacing:19.316287pt;}
.ls17{letter-spacing:19.549107pt;}
.ls24{letter-spacing:21.003654pt;}
.ls2c{letter-spacing:22.054479pt;}
.ls18{letter-spacing:22.054879pt;}
.ls2{letter-spacing:30.079283pt;}
.ls13{letter-spacing:31.883663pt;}
.ls1{letter-spacing:31.896474pt;}
.lse{letter-spacing:32.290936pt;}
.lsf{letter-spacing:32.349118pt;}
.ls1c{letter-spacing:34.975975pt;}
.ls1d{letter-spacing:89.514144pt;}
.ls0{letter-spacing:303.530302pt;}
.ws5e{word-spacing:-46.894585pt;}
.ws64{word-spacing:-42.007308pt;}
.ws1a{word-spacing:-37.899668pt;}
.ws37{word-spacing:-29.736752pt;}
.ws1d{word-spacing:-29.521250pt;}
.ws30{word-spacing:-29.090933pt;}
.ws43{word-spacing:-28.241478pt;}
.ws39{word-spacing:-28.183296pt;}
.ws1c{word-spacing:-26.612386pt;}
.ws78{word-spacing:-26.566933pt;}
.ws1b{word-spacing:-17.161919pt;}
.ws42{word-spacing:-16.162923pt;}
.ws6b{word-spacing:-15.650922pt;}
.ws4f{word-spacing:-15.069103pt;}
.ws5f{word-spacing:-14.718782pt;}
.ws59{word-spacing:-13.498193pt;}
.wsb{word-spacing:-13.283467pt;}
.ws53{word-spacing:-12.916374pt;}
.ws81{word-spacing:-12.805262pt;}
.ws2c{word-spacing:-12.683647pt;}
.ws55{word-spacing:-12.567283pt;}
.ws56{word-spacing:-12.509101pt;}
.ws61{word-spacing:-12.043646pt;}
.ws23{word-spacing:-11.869101pt;}
.ws5a{word-spacing:-11.810919pt;}
.ws41{word-spacing:-11.752737pt;}
.ws35{word-spacing:-11.636373pt;}
.ws33{word-spacing:-11.578191pt;}
.ws62{word-spacing:-11.520010pt;}
.ws6a{word-spacing:-11.461828pt;}
.ws57{word-spacing:-11.403646pt;}
.ws6d{word-spacing:-11.345464pt;}
.ws5c{word-spacing:-11.170918pt;}
.ws21{word-spacing:-11.112737pt;}
.ws69{word-spacing:-10.996373pt;}
.ws5b{word-spacing:-10.653100pt;}
.ws34{word-spacing:-10.594918pt;}
.ws20{word-spacing:-10.414554pt;}
.ws4e{word-spacing:-10.298190pt;}
.ws75{word-spacing:-10.240009pt;}
.ws38{word-spacing:-10.201702pt;}
.ws22{word-spacing:-10.187645pt;}
.ws26{word-spacing:-10.181827pt;}
.ws4b{word-spacing:-10.148569pt;}
.ws40{word-spacing:-10.123645pt;}
.ws3f{word-spacing:-10.065463pt;}
.ws51{word-spacing:-10.007281pt;}
.ws1f{word-spacing:-9.949099pt;}
.ws24{word-spacing:-9.890917pt;}
.ws2b{word-spacing:-9.832735pt;}
.ws1e{word-spacing:-9.774554pt;}
.ws15{word-spacing:-9.716372pt;}
.ws14{word-spacing:-9.658190pt;}
.ws13{word-spacing:-9.600008pt;}
.ws32{word-spacing:-9.541826pt;}
.ws18{word-spacing:-9.483644pt;}
.ws80{word-spacing:-9.463142pt;}
.ws2e{word-spacing:-9.425462pt;}
.ws76{word-spacing:-9.373099pt;}
.ws19{word-spacing:-9.367281pt;}
.ws2a{word-spacing:-9.309099pt;}
.ws47{word-spacing:-9.250917pt;}
.ws10{word-spacing:-9.139025pt;}
.ws6f{word-spacing:-9.134553pt;}
.ws7f{word-spacing:-9.085891pt;}
.ws50{word-spacing:-9.076371pt;}
.ws87{word-spacing:-9.032757pt;}
.ws5d{word-spacing:-9.018189pt;}
.wsc{word-spacing:-8.979623pt;}
.ws36{word-spacing:-8.907644pt;}
.ws4{word-spacing:-8.873356pt;}
.ws28{word-spacing:-8.849462pt;}
.ws79{word-spacing:-8.820222pt;}
.ws7d{word-spacing:-8.767088pt;}
.ws31{word-spacing:-8.733098pt;}
.ws4d{word-spacing:-8.610916pt;}
.ws83{word-spacing:-8.554553pt;}
.ws6c{word-spacing:-8.552734pt;}
.ws71{word-spacing:-8.500371pt;}
.ws45{word-spacing:-8.320007pt;}
.ws77{word-spacing:-8.241063pt;}
.ws5{word-spacing:-8.220396pt;}
.ws82{word-spacing:-8.187929pt;}
.ws6{word-spacing:-8.172575pt;}
.ws7a{word-spacing:-8.134795pt;}
.ws27{word-spacing:-8.087279pt;}
.ws7e{word-spacing:-8.028527pt;}
.ws66{word-spacing:-7.970916pt;}
.ws84{word-spacing:-7.762858pt;}
.ws3c{word-spacing:-7.738188pt;}
.ws67{word-spacing:-7.447279pt;}
.wse{word-spacing:-7.438741pt;}
.ws4c{word-spacing:-7.330915pt;}
.ws74{word-spacing:-7.098188pt;}
.wsd{word-spacing:-6.960537pt;}
.ws49{word-spacing:-6.458187pt;}
.ws44{word-spacing:-6.446551pt;}
.ws29{word-spacing:-6.341823pt;}
.wsf{word-spacing:-6.216662pt;}
.ws3d{word-spacing:-6.167278pt;}
.ws2d{word-spacing:-6.050914pt;}
.ws4a{word-spacing:-5.998550pt;}
.ws72{word-spacing:-5.818187pt;}
.ws73{word-spacing:-5.469095pt;}
.ws3e{word-spacing:-5.352732pt;}
.ws12{word-spacing:-5.178186pt;}
.ws60{word-spacing:-5.017448pt;}
.ws70{word-spacing:-5.003641pt;}
.ws6e{word-spacing:-4.829095pt;}
.ws2f{word-spacing:-4.712731pt;}
.ws63{word-spacing:-3.723639pt;}
.ws68{word-spacing:-3.490912pt;}
.ws52{word-spacing:-3.316366pt;}
.wsa{word-spacing:-3.193345pt;}
.ws46{word-spacing:-2.967275pt;}
.ws25{word-spacing:-2.909093pt;}
.ws54{word-spacing:-2.036365pt;}
.ws58{word-spacing:-1.454547pt;}
.ws7c{word-spacing:-0.696054pt;}
.ws7b{word-spacing:-0.690740pt;}
.ws86{word-spacing:-0.217849pt;}
.ws85{word-spacing:-0.212535pt;}
.ws1{word-spacing:-0.076513pt;}
.ws7{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.011636pt;}
.ws11{word-spacing:1.687274pt;}
.ws9{word-spacing:2.734548pt;}
.ws2{word-spacing:20.786108pt;}
.ws3b{word-spacing:21.609527pt;}
.ws65{word-spacing:22.013617pt;}
.ws3{word-spacing:23.846639pt;}
.ws8{word-spacing:23.974161pt;}
.ws48{word-spacing:27.281477pt;}
.ws0{word-spacing:28.615887pt;}
.ws17{word-spacing:30.551973pt;}
.ws16{word-spacing:2004.070055pt;}
._0{margin-left:-7.192228pt;}
._3{margin-left:-5.228407pt;}
._7{margin-left:-4.112589pt;}
._2{margin-left:-2.371905pt;}
._6{margin-left:-1.338982pt;}
._5{width:1.386803pt;}
._1{width:2.371905pt;}
._2c{width:3.947478pt;}
._9{width:12.348346pt;}
._a{width:14.192055pt;}
._33{width:17.600482pt;}
._4{width:18.630868pt;}
._27{width:19.625696pt;}
._c{width:20.724370pt;}
._28{width:21.953687pt;}
._b{width:23.641418pt;}
._8{width:25.893251pt;}
._30{width:26.793143pt;}
._d{width:28.261885pt;}
._31{width:30.649092pt;}
._2e{width:32.349118pt;}
._34{width:33.590060pt;}
._29{width:35.826478pt;}
._2f{width:36.843495pt;}
._35{width:39.036842pt;}
._36{width:40.527354pt;}
._2a{width:41.551414pt;}
._32{width:58.298230pt;}
._2b{width:59.927323pt;}
._2d{width:61.417427pt;}
._1a{width:790.817836pt;}
._1f{width:836.471478pt;}
._f{width:847.409669pt;}
._1b{width:868.581507pt;}
._1c{width:1087.536594pt;}
._18{width:1111.148071pt;}
._19{width:1156.985820pt;}
._10{width:1165.937867pt;}
._21{width:1168.049937pt;}
._20{width:1185.436753pt;}
._23{width:1186.376425pt;}
._16{width:1225.480230pt;}
._15{width:1325.382466pt;}
._1e{width:1329.330071pt;}
._11{width:1359.701005pt;}
._17{width:1360.905302pt;}
._22{width:1387.385213pt;}
._13{width:1396.887980pt;}
._25{width:1401.649332pt;}
._12{width:1566.886633pt;}
._1d{width:1592.834946pt;}
._24{width:1972.417669pt;}
._26{width:2000.101326pt;}
._14{width:2001.511003pt;}
._e{width:2011.674350pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y65{bottom:140.824000pt;}
.y2e{bottom:142.501333pt;}
.y64{bottom:150.801333pt;}
.y48{bottom:169.600000pt;}
.ybd{bottom:169.724000pt;}
.y2d{bottom:170.004000pt;}
.y11a{bottom:171.025333pt;}
.yf{bottom:187.321333pt;}
.y119{bottom:194.936000pt;}
.y63{bottom:195.629333pt;}
.y47{bottom:196.698667pt;}
.ybc{bottom:196.822667pt;}
.y2c{bottom:197.506667pt;}
.y8f{bottom:198.309333pt;}
.y8e{bottom:208.286667pt;}
.yfc{bottom:211.046667pt;}
.ya6{bottom:215.904000pt;}
.y118{bottom:218.846667pt;}
.ye{bottom:219.865333pt;}
.y46{bottom:223.796000pt;}
.ye3{bottom:224.482667pt;}
.y2b{bottom:225.009333pt;}
.y79{bottom:238.468000pt;}
.ybb{bottom:238.906667pt;}
.y62{bottom:242.664000pt;}
.y117{bottom:242.757333pt;}
.y8d{bottom:246.974667pt;}
.ye2{bottom:251.580000pt;}
.y45{bottom:251.930667pt;}
.yd{bottom:252.410667pt;}
.yfb{bottom:252.493333pt;}
.y2a{bottom:252.512000pt;}
.y116{bottom:266.666667pt;}
.yd0{bottom:271.210667pt;}
.ya5{bottom:271.808000pt;}
.y8c{bottom:274.073333pt;}
.ye1{bottom:278.678667pt;}
.y44{bottom:279.028000pt;}
.y29{bottom:280.014667pt;}
.y78{bottom:280.237333pt;}
.yba{bottom:280.990667pt;}
.yc{bottom:284.954667pt;}
.y61{bottom:286.510667pt;}
.y115{bottom:290.577333pt;}
.yfa{bottom:293.938667pt;}
.ya4{bottom:298.906667pt;}
.y8b{bottom:301.172000pt;}
.y43{bottom:306.126667pt;}
.y77{bottom:307.336000pt;}
.y114{bottom:314.488000pt;}
.ycf{bottom:315.436000pt;}
.yb{bottom:317.500000pt;}
.y28{bottom:322.466667pt;}
.ye0{bottom:325.360000pt;}
.ya3{bottom:326.004000pt;}
.yb9{bottom:327.112000pt;}
.y8a{bottom:328.269333pt;}
.yf9{bottom:335.385333pt;}
.y113{bottom:338.398667pt;}
.y60{bottom:346.593333pt;}
.y27{bottom:349.969333pt;}
.y42{bottom:350.942667pt;}
.y76{bottom:353.352000pt;}
.ya2{bottom:353.410667pt;}
.y89{bottom:355.368000pt;}
.y112{bottom:362.308000pt;}
.yf8{bottom:376.832000pt;}
.y26{bottom:377.472000pt;}
.yce{bottom:377.684000pt;}
.ya1{bottom:380.509333pt;}
.ya{bottom:381.912000pt;}
.yb8{bottom:381.970667pt;}
.ydf{bottom:383.424000pt;}
.y5f{bottom:384.778667pt;}
.y111{bottom:386.218667pt;}
.y41{bottom:395.757333pt;}
.y88{bottom:401.364000pt;}
.yf7{bottom:404.144000pt;}
.ycd{bottom:404.782667pt;}
.y25{bottom:404.974667pt;}
.ya0{bottom:407.606667pt;}
.y75{bottom:407.612000pt;}
.yb7{bottom:409.069333pt;}
.y110{bottom:410.129333pt;}
.yde{bottom:410.522667pt;}
.y5e{bottom:411.877333pt;}
.y40{bottom:422.856000pt;}
.y9{bottom:428.500000pt;}
.yf6{bottom:431.241333pt;}
.y24{bottom:432.477333pt;}
.ycc{bottom:433.298667pt;}
.y10f{bottom:434.040000pt;}
.yb6{bottom:436.166667pt;}
.ydd{bottom:437.620000pt;}
.y5d{bottom:438.976000pt;}
.y87{bottom:444.172000pt;}
.y74{bottom:448.093333pt;}
.y3f{bottom:449.954667pt;}
.y8{bottom:452.410667pt;}
.y9f{bottom:453.910667pt;}
.y10e{bottom:457.949333pt;}
.yf5{bottom:458.340000pt;}
.y23{bottom:459.978667pt;}
.ycb{bottom:460.396000pt;}
.yb5{bottom:463.390667pt;}
.ydc{bottom:465.404000pt;}
.y5c{bottom:467.113333pt;}
.y7{bottom:476.320000pt;}
.y10d{bottom:481.860000pt;}
.yf4{bottom:485.438667pt;}
.yca{bottom:487.494667pt;}
.y73{bottom:488.573333pt;}
.ydb{bottom:492.502667pt;}
.yb4{bottom:493.118667pt;}
.y5b{bottom:494.210667pt;}
.y3e{bottom:496.985333pt;}
.y86{bottom:497.844000pt;}
.y22{bottom:502.432000pt;}
.y10c{bottom:505.770667pt;}
.yb3{bottom:509.349333pt;}
.y9e{bottom:509.814667pt;}
.yf3{bottom:512.750667pt;}
.yc9{bottom:514.593333pt;}
.y5a{bottom:521.309333pt;}
.y85{bottom:524.942667pt;}
.y72{bottom:529.054667pt;}
.y10b{bottom:529.681333pt;}
.yda{bottom:536.269333pt;}
.y9d{bottom:536.913333pt;}
.yf2{bottom:539.848000pt;}
.y59{bottom:548.408000pt;}
.y21{bottom:548.832000pt;}
.yb2{bottom:551.433333pt;}
.y84{bottom:552.040000pt;}
.y10a{bottom:553.590667pt;}
.y71{bottom:556.173333pt;}
.y3d{bottom:557.046667pt;}
.yc8{bottom:562.006667pt;}
.y9c{bottom:564.320000pt;}
.yf1{bottom:566.946667pt;}
.y58{bottom:576.545333pt;}
.y109{bottom:577.501333pt;}
.yb1{bottom:578.532000pt;}
.y83{bottom:579.138667pt;}
.yd9{bottom:580.036000pt;}
.y9b{bottom:591.417333pt;}
.yf0{bottom:594.045333pt;}
.y70{bottom:597.942667pt;}
.y3c{bottom:600.760000pt;}
.y57{bottom:603.644000pt;}
.y20{bottom:605.288000pt;}
.y6{bottom:606.836000pt;}
.y9a{bottom:618.516000pt;}
.yef{bottom:621.356000pt;}
.yc7{bottom:624.254667pt;}
.yb0{bottom:624.652000pt;}
.y82{bottom:625.134667pt;}
.yd8{bottom:626.717333pt;}
.y56{bottom:630.742667pt;}
.y1f{bottom:632.386667pt;}
.y6f{bottom:639.712000pt;}
.y3b{bottom:644.474667pt;}
.yee{bottom:648.454667pt;}
.yc6{bottom:651.353333pt;}
.y55{bottom:657.840000pt;}
.y1e{bottom:659.485333pt;}
.y108{bottom:661.188000pt;}
.y99{bottom:664.820000pt;}
.y6e{bottom:666.810667pt;}
.yed{bottom:675.553333pt;}
.y81{bottom:678.806667pt;}
.yaf{bottom:679.510667pt;}
.yc5{bottom:679.869333pt;}
.yd7{bottom:684.781333pt;}
.y54{bottom:684.938667pt;}
.y3a{bottom:688.188000pt;}
.y107{bottom:696.256000pt;}
.yec{bottom:702.864000pt;}
.y80{bottom:705.905333pt;}
.yae{bottom:706.609333pt;}
.yc4{bottom:706.968000pt;}
.y6d{bottom:708.580000pt;}
.y1d{bottom:710.897333pt;}
.y53{bottom:713.076000pt;}
.y39{bottom:716.321333pt;}
.y98{bottom:720.724000pt;}
.y106{bottom:723.354667pt;}
.yd6{bottom:728.546667pt;}
.yeb{bottom:729.962667pt;}
.yad{bottom:733.708000pt;}
.yc3{bottom:734.065333pt;}
.y1c{bottom:734.808000pt;}
.y52{bottom:740.174667pt;}
.y7f{bottom:743.264000pt;}
.y5{bottom:743.721333pt;}
.y38{bottom:744.454667pt;}
.y97{bottom:748.130667pt;}
.y6c{bottom:750.350667pt;}
.y105{bottom:750.453333pt;}
.yea{bottom:757.061333pt;}
.y1b{bottom:758.718667pt;}
.yac{bottom:760.930667pt;}
.y51{bottom:767.273333pt;}
.y4{bottom:771.616000pt;}
.yd5{bottom:772.313333pt;}
.y37{bottom:772.588000pt;}
.y96{bottom:775.229333pt;}
.y6b{bottom:777.448000pt;}
.y104{bottom:777.552000pt;}
.yc2{bottom:781.480000pt;}
.y1a{bottom:782.628000pt;}
.y7e{bottom:782.638667pt;}
.ye9{bottom:784.160000pt;}
.yab{bottom:788.029333pt;}
.y50{bottom:794.370667pt;}
.yd4{bottom:800.097333pt;}
.y36{bottom:800.721333pt;}
.y95{bottom:802.326667pt;}
.y6a{bottom:804.546667pt;}
.y103{bottom:804.649333pt;}
.y19{bottom:806.538667pt;}
.yaa{bottom:815.128000pt;}
.y4f{bottom:821.469333pt;}
.y7d{bottom:822.013333pt;}
.yd3{bottom:827.196000pt;}
.y35{bottom:828.854667pt;}
.y94{bottom:829.425333pt;}
.y3{bottom:830.158667pt;}
.ye8{bottom:830.369333pt;}
.y18{bottom:830.449333pt;}
.y102{bottom:831.748000pt;}
.ya9{bottom:842.225333pt;}
.yc1{bottom:843.728000pt;}
.y4e{bottom:849.606667pt;}
.y69{bottom:850.562667pt;}
.yd2{bottom:854.294667pt;}
.y17{bottom:854.360000pt;}
.y93{bottom:856.832000pt;}
.y101{bottom:858.846667pt;}
.y7c{bottom:859.372000pt;}
.y2{bottom:866.024000pt;}
.yc0{bottom:870.825333pt;}
.y34{bottom:872.569333pt;}
.y4d{bottom:876.705333pt;}
.y16{bottom:878.269333pt;}
.y92{bottom:883.929333pt;}
.ye7{bottom:885.732000pt;}
.y100{bottom:885.945333pt;}
.y7b{bottom:886.470667pt;}
.ya8{bottom:888.346667pt;}
.y33{bottom:900.702667pt;}
.yd1{bottom:900.976000pt;}
.y4c{bottom:903.804000pt;}
.y68{bottom:904.822667pt;}
.y91{bottom:911.028000pt;}
.y15{bottom:912.674667pt;}
.ye6{bottom:912.830667pt;}
.yff{bottom:913.044000pt;}
.y14{bottom:917.494667pt;}
.ybf{bottom:918.296000pt;}
.y1{bottom:924.568000pt;}
.y32{bottom:928.836000pt;}
.y4b{bottom:930.902667pt;}
.ya7{bottom:931.278667pt;}
.y67{bottom:931.921333pt;}
.y7a{bottom:932.466667pt;}
.ye5{bottom:939.929333pt;}
.yfe{bottom:940.141333pt;}
.y12{bottom:941.637333pt;}
.y13{bottom:946.916000pt;}
.y31{bottom:956.969333pt;}
.y90{bottom:957.332000pt;}
.y4a{bottom:958.000000pt;}
.y66{bottom:959.040000pt;}
.ybe{bottom:965.766667pt;}
.ye4{bottom:967.026667pt;}
.yfd{bottom:967.240000pt;}
.y30{bottom:985.102667pt;}
.y11{bottom:985.341333pt;}
.y49{bottom:986.137333pt;}
.y10{bottom:1013.236000pt;}
.y2f{bottom:1059.728000pt;}
.ha{height:24.696550pt;}
.h15{height:29.499997pt;}
.h9{height:31.880400pt;}
.h7{height:33.713664pt;}
.hb{height:37.193707pt;}
.h6{height:39.850400pt;}
.hf{height:41.658217pt;}
.h8{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:47.820800pt;}
.h14{height:51.738667pt;}
.hc{height:53.521330pt;}
.h10{height:53.526663pt;}
.h2{height:53.559147pt;}
.h11{height:55.901733pt;}
.h4{height:60.097813pt;}
.h12{height:81.018217pt;}
.he{height:81.567550pt;}
.h13{height:83.545733pt;}
.hd{height:84.236191pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:94.413333pt;}
.xd{left:96.016000pt;}
.x18{left:101.253333pt;}
.x6a{left:102.641333pt;}
.x3b{left:104.445333pt;}
.x15{left:106.909333pt;}
.x3a{left:108.486667pt;}
.x14{left:112.565333pt;}
.x1b{left:115.925333pt;}
.x20{left:117.597333pt;}
.x2{left:121.221333pt;}
.x6c{left:123.058667pt;}
.x6b{left:123.969333pt;}
.x5c{left:125.242667pt;}
.x16{left:128.037333pt;}
.x17{left:129.048000pt;}
.x2d{left:136.189333pt;}
.x57{left:138.189333pt;}
.x1{left:140.336000pt;}
.x3f{left:141.880000pt;}
.x29{left:143.614667pt;}
.x2e{left:149.101333pt;}
.x58{left:151.688000pt;}
.x12{left:154.448000pt;}
.x44{left:155.673333pt;}
.x2a{left:162.090667pt;}
.x40{left:164.656000pt;}
.x50{left:179.621333pt;}
.x60{left:182.333333pt;}
.x1c{left:188.592000pt;}
.x1d{left:195.865333pt;}
.x2b{left:197.709333pt;}
.x1e{left:204.721333pt;}
.x4e{left:210.009333pt;}
.x1f{left:211.993333pt;}
.x2c{left:214.808000pt;}
.x10{left:219.992000pt;}
.x61{left:222.082667pt;}
.x11{left:225.950667pt;}
.x4f{left:238.306667pt;}
.x4c{left:242.348000pt;}
.x62{left:243.302667pt;}
.x4{left:244.284000pt;}
.x4d{left:247.500000pt;}
.x21{left:250.042667pt;}
.x5d{left:251.730667pt;}
.x5f{left:253.461333pt;}
.x64{left:255.126667pt;}
.x3e{left:257.269333pt;}
.x3c{left:266.008000pt;}
.x59{left:270.298667pt;}
.x34{left:271.218667pt;}
.x47{left:274.197333pt;}
.x28{left:275.088000pt;}
.x35{left:280.577333pt;}
.x63{left:282.534667pt;}
.x3d{left:283.936000pt;}
.x36{left:286.166667pt;}
.x37{left:291.418667pt;}
.x8{left:293.149333pt;}
.xc{left:299.934667pt;}
.x30{left:302.022667pt;}
.x24{left:304.112000pt;}
.x25{left:311.384000pt;}
.x5{left:313.853333pt;}
.x26{left:318.802667pt;}
.x22{left:322.305333pt;}
.x2f{left:324.869333pt;}
.x27{left:326.074667pt;}
.x69{left:328.977333pt;}
.x1a{left:331.561333pt;}
.x7{left:339.008000pt;}
.x53{left:341.238667pt;}
.xe{left:346.609333pt;}
.x9{left:349.013333pt;}
.x6{left:350.288000pt;}
.x3{left:353.008000pt;}
.x56{left:354.206667pt;}
.x33{left:360.941333pt;}
.x13{left:363.736000pt;}
.xa{left:368.053333pt;}
.x48{left:384.224000pt;}
.x65{left:389.524000pt;}
.x23{left:391.908000pt;}
.x43{left:401.566667pt;}
.x55{left:403.301333pt;}
.x49{left:407.000000pt;}
.x66{left:412.508000pt;}
.x54{left:421.270667pt;}
.xf{left:461.500000pt;}
.x67{left:474.758667pt;}
.x51{left:482.729333pt;}
.x68{left:497.914667pt;}
.x45{left:524.104000pt;}
.x52{left:527.008000pt;}
.x46{left:540.104000pt;}
.x4a{left:543.097333pt;}
.x4b{left:555.522667pt;}
.x5a{left:615.842667pt;}
.x5b{left:647.672000pt;}
.x38{left:659.104000pt;}
.x39{left:677.032000pt;}
.x41{left:685.161333pt;}
.x31{left:692.752000pt;}
.x5e{left:703.122667pt;}
.x32{left:704.873333pt;}
.x42{left:706.010667pt;}
.x19{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; }
  