
    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_fa944200529d0adc6f56f517.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_909cabc921dcec5a363155af.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a80cf2bd84358ecb94da9714.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_1313cc86b9c7ed78c4152415.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a6c9a5e2b8e58e4a5a50237c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_504a387592bf2453e5e73729.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916992;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_37e0006cf058bec3ef35cb6d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.142090;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_cdfe4ed575a28f031f8bd95b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.944824;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_37e932e477bf540d36cd69db.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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;}
.m1f{transform:matrix(0.236706,0.000000,-0.078894,0.237225,0,0);-ms-transform:matrix(0.236706,0.000000,-0.078894,0.237225,0,0);-webkit-transform:matrix(0.236706,0.000000,-0.078894,0.237225,0,0);}
.m20{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m19{transform:matrix(0.237622,0.000000,-0.079199,0.237123,0,0);-ms-transform:matrix(0.237622,0.000000,-0.079199,0.237123,0,0);-webkit-transform:matrix(0.237622,0.000000,-0.079199,0.237123,0,0);}
.ma{transform:matrix(0.238142,0.000000,-0.079373,0.237065,0,0);-ms-transform:matrix(0.238142,0.000000,-0.079373,0.237065,0,0);-webkit-transform:matrix(0.238142,0.000000,-0.079373,0.237065,0,0);}
.mc{transform:matrix(0.238253,0.000000,-0.079410,0.237053,0,0);-ms-transform:matrix(0.238253,0.000000,-0.079410,0.237053,0,0);-webkit-transform:matrix(0.238253,0.000000,-0.079410,0.237053,0,0);}
.m1d{transform:matrix(0.238337,0.000000,-0.079438,0.237044,0,0);-ms-transform:matrix(0.238337,0.000000,-0.079438,0.237044,0,0);-webkit-transform:matrix(0.238337,0.000000,-0.079438,0.237044,0,0);}
.m13{transform:matrix(0.238895,0.000000,-0.079624,0.236981,0,0);-ms-transform:matrix(0.238895,0.000000,-0.079624,0.236981,0,0);-webkit-transform:matrix(0.238895,0.000000,-0.079624,0.236981,0,0);}
.mf{transform:matrix(0.239505,0.000000,-0.079827,0.236913,0,0);-ms-transform:matrix(0.239505,0.000000,-0.079827,0.236913,0,0);-webkit-transform:matrix(0.239505,0.000000,-0.079827,0.236913,0,0);}
.m5{transform:matrix(0.239754,0.000000,-0.079910,0.236885,0,0);-ms-transform:matrix(0.239754,0.000000,-0.079910,0.236885,0,0);-webkit-transform:matrix(0.239754,0.000000,-0.079910,0.236885,0,0);}
.m4{transform:matrix(0.239832,0.000000,-0.079936,0.236876,0,0);-ms-transform:matrix(0.239832,0.000000,-0.079936,0.236876,0,0);-webkit-transform:matrix(0.239832,0.000000,-0.079936,0.236876,0,0);}
.m11{transform:matrix(0.239956,0.000000,-0.079977,0.236862,0,0);-ms-transform:matrix(0.239956,0.000000,-0.079977,0.236862,0,0);-webkit-transform:matrix(0.239956,0.000000,-0.079977,0.236862,0,0);}
.m8{transform:matrix(0.240030,0.000000,-0.080002,0.236854,0,0);-ms-transform:matrix(0.240030,0.000000,-0.080002,0.236854,0,0);-webkit-transform:matrix(0.240030,0.000000,-0.080002,0.236854,0,0);}
.m1b{transform:matrix(0.241536,0.000000,-0.080504,0.236684,0,0);-ms-transform:matrix(0.241536,0.000000,-0.080504,0.236684,0,0);-webkit-transform:matrix(0.241536,0.000000,-0.080504,0.236684,0,0);}
.m15{transform:matrix(0.242247,0.000000,-0.080741,0.236603,0,0);-ms-transform:matrix(0.242247,0.000000,-0.080741,0.236603,0,0);-webkit-transform:matrix(0.242247,0.000000,-0.080741,0.236603,0,0);}
.m2{transform:matrix(0.243295,0.000000,-0.081090,0.236483,0,0);-ms-transform:matrix(0.243295,0.000000,-0.081090,0.236483,0,0);-webkit-transform:matrix(0.243295,0.000000,-0.081090,0.236483,0,0);}
.m1e{transform:matrix(0.249453,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249453,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249453,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);}
.m17{transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250016,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250814,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251136,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251364,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252019,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253028,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253120,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253265,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253353,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.255126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255126,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.255964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255964,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257201,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257201,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257201,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.262737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262737,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.v11{vertical-align:-78.092935px;}
.v12{vertical-align:-61.977107px;}
.v5{vertical-align:-56.909681px;}
.vd{vertical-align:-31.456546px;}
.vc{vertical-align:-27.360000px;}
.v15{vertical-align:-22.571415px;}
.v3{vertical-align:-17.455081px;}
.v10{vertical-align:-16.303876px;}
.v9{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:5.760000px;}
.v1{vertical-align:17.810071px;}
.v16{vertical-align:24.480000px;}
.vb{vertical-align:27.360000px;}
.v4{vertical-align:32.772231px;}
.v7{vertical-align:44.072216px;}
.ve{vertical-align:49.633322px;}
.v13{vertical-align:51.421715px;}
.v8{vertical-align:62.110542px;}
.vf{vertical-align:67.094246px;}
.v14{vertical-align:69.590590px;}
.v6{vertical-align:76.367883px;}
.v2{vertical-align:77.675734px;}
.ls21{letter-spacing:-1.584000px;}
.ls20{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.828605px;}
.ls22{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.144000px;}
.ls1f{letter-spacing:0.504000px;}
.lsc{letter-spacing:0.720000px;}
.ls1{letter-spacing:1.440000px;}
.ls3{letter-spacing:1.702298px;}
.ls8{letter-spacing:1.969356px;}
.lse{letter-spacing:2.182571px;}
.ls4{letter-spacing:2.250446px;}
.lsa{letter-spacing:2.253873px;}
.ls7{letter-spacing:2.459094px;}
.ls10{letter-spacing:2.632165px;}
.lsf{letter-spacing:2.728694px;}
.ls23{letter-spacing:17.424000px;}
.ls1e{letter-spacing:19.440000px;}
.ls1d{letter-spacing:53.424000px;}
.ls14{letter-spacing:70.203422px;}
.ls1a{letter-spacing:71.311674px;}
.ls19{letter-spacing:73.183768px;}
.ls16{letter-spacing:153.434419px;}
.ls2{letter-spacing:157.812500px;}
.ls5{letter-spacing:169.407133px;}
.lsb{letter-spacing:243.985165px;}
.ls1c{letter-spacing:271.740845px;}
.ls1b{letter-spacing:286.351117px;}
.ls13{letter-spacing:317.905458px;}
.ls18{letter-spacing:345.010791px;}
.ls6{letter-spacing:357.827097px;}
.lsd{letter-spacing:375.264741px;}
.ls12{letter-spacing:534.945936px;}
.ls17{letter-spacing:620.788446px;}
.ls15{letter-spacing:816.403458px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws30{word-spacing:-42.199898px;}
.ws2c{word-spacing:-40.623526px;}
.ws2e{word-spacing:-40.012865px;}
.ws26{word-spacing:-39.528000px;}
.ws1b{word-spacing:-39.486440px;}
.ws15{word-spacing:-39.469706px;}
.ws6{word-spacing:-39.409698px;}
.wsa{word-spacing:-38.957450px;}
.ws23{word-spacing:-38.293173px;}
.ws12{word-spacing:-37.810012px;}
.ws33{word-spacing:-27.086400px;}
.ws2b{word-spacing:-22.976333px;}
.ws25{word-spacing:-20.549307px;}
.ws21{word-spacing:-20.166386px;}
.ws1d{word-spacing:-20.163646px;}
.ws1{word-spacing:-19.440000px;}
.ws10{word-spacing:-19.187030px;}
.ws28{word-spacing:-18.220795px;}
.wsd{word-spacing:-18.194780px;}
.ws2d{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws1c{word-spacing:-17.981075px;}
.ws18{word-spacing:-17.946128px;}
.ws24{word-spacing:-17.917142px;}
.ws32{word-spacing:-17.902184px;}
.ws3{word-spacing:-17.755829px;}
.ws8{word-spacing:-17.740187px;}
.ws36{word-spacing:-17.712000px;}
.ws34{word-spacing:-16.560000px;}
.ws35{word-spacing:-16.416000px;}
.ws1e{word-spacing:-12.600000px;}
.ws27{word-spacing:-11.880000px;}
.ws2f{word-spacing:-10.625855px;}
.wse{word-spacing:-10.610684px;}
.ws31{word-spacing:-10.448630px;}
.ws7{word-spacing:-10.354080px;}
.ws20{word-spacing:-10.154180px;}
.ws2{word-spacing:0.000000px;}
.ws1f{word-spacing:12.703293px;}
.wsb{word-spacing:16.794745px;}
.wsc{word-spacing:17.756316px;}
.ws19{word-spacing:188.775038px;}
.ws16{word-spacing:190.662408px;}
.ws2a{word-spacing:195.443918px;}
.ws4{word-spacing:197.476370px;}
.ws13{word-spacing:197.777061px;}
.ws9{word-spacing:217.642009px;}
.ws11{word-spacing:239.987646px;}
.ws17{word-spacing:269.216199px;}
.wsf{word-spacing:272.559683px;}
.ws1a{word-spacing:287.961354px;}
.ws5{word-spacing:304.888949px;}
.ws14{word-spacing:305.353193px;}
.ws29{word-spacing:313.881722px;}
.ws22{word-spacing:384.169016px;}
._55{margin-left:-507.061883px;}
._5b{margin-left:-496.299662px;}
._54{margin-left:-463.295486px;}
._5a{margin-left:-370.992572px;}
._5d{margin-left:-368.730391px;}
._5c{margin-left:-357.358837px;}
._32{margin-left:-342.846337px;}
._1e{margin-left:-341.764775px;}
._3a{margin-left:-328.715723px;}
._35{margin-left:-325.234012px;}
._2d{margin-left:-313.987209px;}
._58{margin-left:-296.523060px;}
._44{margin-left:-284.645143px;}
._3d{margin-left:-274.334653px;}
._2a{margin-left:-259.727685px;}
._23{margin-left:-253.569290px;}
._43{margin-left:-250.281180px;}
._3c{margin-left:-239.975422px;}
._4a{margin-left:-234.770767px;}
._18{margin-left:-230.962093px;}
._1c{margin-left:-227.474314px;}
._49{margin-left:-226.369822px;}
._40{margin-left:-222.616351px;}
._36{margin-left:-218.767091px;}
._2c{margin-left:-215.697687px;}
._34{margin-left:-213.719111px;}
._21{margin-left:-211.748807px;}
._22{margin-left:-203.553802px;}
._2e{margin-left:-200.426582px;}
._27{margin-left:-193.958798px;}
._25{margin-left:-192.370645px;}
._42{margin-left:-191.244107px;}
._3e{margin-left:-186.074548px;}
._17{margin-left:-181.245635px;}
._4f{margin-left:-176.614282px;}
._53{margin-left:-165.466328px;}
._59{margin-left:-161.173114px;}
._20{margin-left:-160.017600px;}
._29{margin-left:-150.414702px;}
._1d{margin-left:-141.069030px;}
._39{margin-left:-138.753780px;}
._19{margin-left:-136.507248px;}
._26{margin-left:-132.359877px;}
._37{margin-left:-131.065739px;}
._52{margin-left:-129.892163px;}
._57{margin-left:-124.637374px;}
._47{margin-left:-116.297232px;}
._4d{margin-left:-111.188094px;}
._41{margin-left:-94.051667px;}
._2f{margin-left:-91.453673px;}
._48{margin-left:-81.869663px;}
._4e{margin-left:-76.821407px;}
._4c{margin-left:-71.838772px;}
._46{margin-left:-67.238390px;}
._3f{margin-left:-53.724375px;}
._2b{margin-left:-30.099229px;}
._38{margin-left:-9.360000px;}
._28{margin-left:-7.920000px;}
._8{margin-left:-4.893120px;}
._7{margin-left:-3.568320px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.246400px;}
._9{width:3.931200px;}
._a{width:5.865600px;}
._6{width:6.900480px;}
._5{width:8.305920px;}
._4{width:9.550560px;}
._12{width:11.488320px;}
._16{width:12.516480px;}
._c{width:13.769280px;}
._d{width:14.886720px;}
._b{width:15.972480px;}
._e{width:19.978560px;}
._f{width:21.764160px;}
._10{width:23.123040px;}
._11{width:24.321600px;}
._51{width:28.080000px;}
._31{width:29.664000px;}
._15{width:32.420160px;}
._13{width:33.693120px;}
._14{width:35.930880px;}
._1f{width:66.960000px;}
._50{width:69.840000px;}
._60{width:72.224160px;}
._45{width:75.600000px;}
._5f{width:88.560000px;}
._3b{width:92.880000px;}
._30{width:102.960000px;}
._33{width:114.480000px;}
._56{width:149.160000px;}
._24{width:162.120000px;}
._5e{width:177.264000px;}
._4b{width:182.098560px;}
._1a{width:194.431680px;}
._1b{width:195.928320px;}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs22{font-size:29.836749px;}
.fs1f{font-size:40.616720px;}
.fsf{font-size:40.852019px;}
.fsb{font-size:41.416320px;}
.fs5{font-size:41.476623px;}
.fs2c{font-size:41.794520px;}
.fs23{font-size:41.829440px;}
.fs8{font-size:41.909549px;}
.fs1b{font-size:41.931984px;}
.fs16{font-size:41.973363px;}
.fs12{font-size:42.442735px;}
.fs26{font-size:42.503419px;}
.fs1c{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs14{font-size:68.870696px;}
.fs1e{font-size:69.750770px;}
.fsd{font-size:70.054072px;}
.fsc{font-size:70.960746px;}
.fs4{font-size:71.023314px;}
.fs2d{font-size:71.608736px;}
.fs21{font-size:71.668566px;}
.fs7{font-size:71.784514px;}
.fs15{font-size:71.893818px;}
.fs1a{font-size:71.924299px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:72.779120px;}
.fs24{font-size:72.883179px;}
.fs1d{font-size:73.700280px;}
.fse{font-size:73.942335px;}
.fs28{font-size:73.995493px;}
.fsa{font-size:74.889499px;}
.fs6{font-size:75.082778px;}
.fs2e{font-size:75.464989px;}
.fs19{font-size:75.728058px;}
.fs9{font-size:75.761702px;}
.fs18{font-size:75.766136px;}
.fs17{font-size:75.865274px;}
.fs2f{font-size:75.893905px;}
.fs11{font-size:76.750048px;}
.fs13{font-size:76.754054px;}
.fs25{font-size:76.840995px;}
.fs2a{font-size:76.866845px;}
.fs3{font-size:96.480000px;}
.fs27{font-size:105.005140px;}
.fs2b{font-size:107.264686px;}
.fs20{font-size:107.496908px;}
.fs29{font-size:109.250598px;}
.y0{bottom:0.000000px;}
.ye0{bottom:3.577850px;}
.yb7{bottom:3.890168px;}
.y45{bottom:4.120908px;}
.y79{bottom:4.127189px;}
.y4f{bottom:4.140339px;}
.yec{bottom:4.164462px;}
.y83{bottom:4.375421px;}
.yd7{bottom:4.671322px;}
.yda{bottom:4.671325px;}
.y42{bottom:4.737725px;}
.y97{bottom:5.782563px;}
.y9e{bottom:6.001549px;}
.yb9{bottom:6.530948px;}
.y65{bottom:6.718160px;}
.yb0{bottom:6.846951px;}
.ye3{bottom:6.910937px;}
.ycc{bottom:6.947577px;}
.y5c{bottom:7.010869px;}
.yc7{bottom:7.560000px;}
.y57{bottom:7.737475px;}
.y6f{bottom:7.864660px;}
.yc4{bottom:7.920000px;}
.y4c{bottom:8.606985px;}
.y51{bottom:8.607001px;}
.y41{bottom:9.190243px;}
.yc5{bottom:9.360000px;}
.y9c{bottom:10.528862px;}
.y9a{bottom:10.528870px;}
.ya0{bottom:10.528878px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.yad{bottom:11.237786px;}
.y47{bottom:13.648631px;}
.y85{bottom:13.648662px;}
.y90{bottom:13.648689px;}
.y7b{bottom:13.669442px;}
.y4e{bottom:16.595956px;}
.yea{bottom:17.173451px;}
.y46{bottom:18.158212px;}
.y82{bottom:18.158216px;}
.y86{bottom:18.158233px;}
.y87{bottom:18.158236px;}
.y84{bottom:18.158242px;}
.y91{bottom:18.158245px;}
.y92{bottom:18.158252px;}
.y8f{bottom:18.158265px;}
.y7d{bottom:18.185877px;}
.y7e{bottom:18.185880px;}
.y7a{bottom:18.185887px;}
.yae{bottom:19.048380px;}
.yb4{bottom:19.513969px;}
.yaf{bottom:20.342760px;}
.y6a{bottom:20.945618px;}
.y62{bottom:20.945621px;}
.y5e{bottom:20.945630px;}
.yce{bottom:20.975498px;}
.y98{bottom:21.043556px;}
.yf0{bottom:21.314315px;}
.y59{bottom:21.444856px;}
.ydb{bottom:21.444869px;}
.y4d{bottom:22.842273px;}
.y53{bottom:22.842284px;}
.yb5{bottom:26.006741px;}
.y61{bottom:27.565515px;}
.yd0{bottom:27.824428px;}
.y68{bottom:28.516512px;}
.ye1{bottom:29.180270px;}
.yd6{bottom:29.308994px;}
.yd8{bottom:29.309029px;}
.y48{bottom:29.503229px;}
.y7c{bottom:29.548161px;}
.y5f{bottom:32.101216px;}
.y60{bottom:32.101222px;}
.y5d{bottom:32.101255px;}
.ye4{bottom:32.293959px;}
.ycd{bottom:32.403732px;}
.y69{bottom:33.052211px;}
.y67{bottom:33.052237px;}
.y66{bottom:33.052252px;}
.y9f{bottom:33.092036px;}
.y58{bottom:33.095699px;}
.y52{bottom:34.064068px;}
.y99{bottom:36.305289px;}
.y9d{bottom:37.582819px;}
.y9b{bottom:37.582828px;}
.ya1{bottom:37.582836px;}
.yd9{bottom:39.263736px;}
.ye5{bottom:39.546379px;}
.ye2{bottom:40.498732px;}
.ycf{bottom:40.571419px;}
.y50{bottom:42.053173px;}
.yee{bottom:45.171030px;}
.yb6{bottom:45.335032px;}
.yb8{bottom:47.205177px;}
.yed{bottom:51.913662px;}
.y8{bottom:57.240000px;}
.yf3{bottom:64.557395px;}
.yeb{bottom:64.886883px;}
.yf1{bottom:69.064851px;}
.y5{bottom:73.476000px;}
.yf2{bottom:77.089814px;}
.yef{bottom:87.277228px;}
.y34{bottom:107.676000px;}
.y101{bottom:109.116000px;}
.ybd{bottom:111.636000px;}
.y8d{bottom:114.156000px;}
.ye9{bottom:115.050000px;}
.y11b{bottom:120.636000px;}
.y33{bottom:131.436000px;}
.y100{bottom:132.876000px;}
.y8c{bottom:134.316000px;}
.ybc{bottom:135.396000px;}
.y4a{bottom:144.036000px;}
.y11a{bottom:144.396000px;}
.y32{bottom:155.190000px;}
.yff{bottom:156.270000px;}
.ybb{bottom:159.150000px;}
.yf4{bottom:159.870000px;}
.y44{bottom:163.650000px;}
.y119{bottom:168.150000px;}
.yfe{bottom:176.070000px;}
.yb3{bottom:179.100000px;}
.y31{bottom:179.310000px;}
.y49{bottom:181.470000px;}
.y118{bottom:191.910000px;}
.y30{bottom:203.115000px;}
.yba{bottom:204.555000px;}
.y117{bottom:215.715000px;}
.y40{bottom:216.150000px;}
.ye8{bottom:221.835000px;}
.y43{bottom:225.075000px;}
.y2f{bottom:226.875000px;}
.y116{bottom:239.835000px;}
.ye7{bottom:245.595000px;}
.yb2{bottom:248.115000px;}
.y2e{bottom:250.635000px;}
.y115{bottom:263.595000px;}
.ydf{bottom:265.125000px;}
.yac{bottom:267.300000px;}
.y2d{bottom:274.395000px;}
.yb1{bottom:277.635000px;}
.ye6{bottom:285.915000px;}
.y114{bottom:287.355000px;}
.y2c{bottom:298.155000px;}
.yab{bottom:311.115000px;}
.y2b{bottom:321.945000px;}
.yde{bottom:325.185000px;}
.yaa{bottom:334.905000px;}
.y2a{bottom:345.705000px;}
.ydd{bottom:348.945000px;}
.ya9{bottom:358.665000px;}
.yd5{bottom:368.849959px;}
.y29{bottom:369.825000px;}
.ya8{bottom:382.425000px;}
.ydc{bottom:389.625000px;}
.y28{bottom:393.585000px;}
.ya7{bottom:405.825000px;}
.y113{bottom:406.185000px;}
.y27{bottom:417.345000px;}
.ya6{bottom:425.625000px;}
.yd4{bottom:426.705000px;}
.y112{bottom:430.305000px;}
.y26{bottom:441.105000px;}
.yd3{bottom:450.510000px;}
.y111{bottom:453.750000px;}
.y25{bottom:464.910000px;}
.yd2{bottom:474.270000px;}
.y110{bottom:477.510000px;}
.y24{bottom:488.670000px;}
.y8b{bottom:490.470000px;}
.ycb{bottom:494.100000px;}
.y10f{bottom:501.630000px;}
.y23{bottom:512.430000px;}
.y8a{bottom:514.230000px;}
.yd1{bottom:514.950000px;}
.y10e{bottom:525.390000px;}
.y3f{bottom:535.830000px;}
.y22{bottom:536.190000px;}
.y89{bottom:537.990000px;}
.y10d{bottom:549.150000px;}
.yca{bottom:554.190000px;}
.y81{bottom:557.474959px;}
.y21{bottom:559.950000px;}
.yfd{bottom:561.750000px;}
.y10c{bottom:572.940000px;}
.y88{bottom:575.460000px;}
.yc9{bottom:577.980000px;}
.y20{bottom:584.100000px;}
.yfc{bottom:587.340000px;}
.y10b{bottom:596.700000px;}
.yc8{bottom:601.740000px;}
.y1f{bottom:607.860000px;}
.yfb{bottom:612.540000px;}
.y80{bottom:614.340000px;}
.yc6{bottom:618.660000px;}
.y10a{bottom:620.460000px;}
.y1e{bottom:631.620000px;}
.y78{bottom:633.749959px;}
.yfa{bottom:636.300000px;}
.yc3{bottom:643.140000px;}
.y109{bottom:644.580000px;}
.y7f{bottom:651.780000px;}
.y1d{bottom:655.380000px;}
.yf9{bottom:660.060000px;}
.y108{bottom:668.340000px;}
.yc2{bottom:676.980000px;}
.y1c{bottom:679.140000px;}
.yf8{bottom:683.460000px;}
.y77{bottom:690.660000px;}
.y107{bottom:692.100000px;}
.yc1{bottom:700.770000px;}
.y1b{bottom:702.930000px;}
.yf7{bottom:703.290000px;}
.y76{bottom:714.450000px;}
.y106{bottom:715.890000px;}
.yc0{bottom:724.530000px;}
.y1a{bottom:726.330000px;}
.y3e{bottom:726.690000px;}
.y75{bottom:738.570000px;}
.y105{bottom:739.290000px;}
.ybf{bottom:747.930000px;}
.y19{bottom:750.090000px;}
.y3d{bottom:750.450000px;}
.y74{bottom:762.330000px;}
.y104{bottom:763.410000px;}
.ybe{bottom:767.730000px;}
.y18{bottom:774.570000px;}
.y73{bottom:786.090000px;}
.y103{bottom:788.610000px;}
.y17{bottom:798.330000px;}
.y72{bottom:809.490000px;}
.y102{bottom:813.810000px;}
.y16{bottom:822.090000px;}
.y71{bottom:833.655000px;}
.y15{bottom:845.895000px;}
.ya5{bottom:851.655000px;}
.y6e{bottom:853.049919px;}
.y70{bottom:860.655000px;}
.y14{bottom:869.655000px;}
.ya4{bottom:875.415000px;}
.y6d{bottom:884.775000px;}
.y13{bottom:893.415000px;}
.ya3{bottom:899.535000px;}
.y6c{bottom:908.535000px;}
.y12{bottom:917.175000px;}
.y96{bottom:918.899919px;}
.y64{bottom:928.274919px;}
.y11{bottom:940.935000px;}
.ya2{bottom:943.095000px;}
.y6b{bottom:949.215000px;}
.y10{bottom:964.725000px;}
.y3c{bottom:965.085000px;}
.y95{bottom:983.805000px;}
.y5b{bottom:984.074919px;}
.yf{bottom:988.485000px;}
.y3b{bottom:988.845000px;}
.y63{bottom:1005.045000px;}
.y94{bottom:1007.565000px;}
.ye{bottom:1012.605000px;}
.y8e{bottom:1026.899919px;}
.yd{bottom:1036.005000px;}
.y3a{bottom:1036.365000px;}
.y56{bottom:1040.250000px;}
.y93{bottom:1045.005000px;}
.yc{bottom:1059.765000px;}
.y39{bottom:1060.125000px;}
.y5a{bottom:1061.205000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y55{bottom:1098.330000px;}
.yf6{bottom:1104.810000px;}
.y37{bottom:1107.690000px;}
.y4b{bottom:1117.274919px;}
.ya{bottom:1117.410000px;}
.yf5{bottom:1130.010000px;}
.y36{bottom:1131.450000px;}
.y54{bottom:1140.090000px;}
.y9{bottom:1149.090000px;}
.y35{bottom:1155.210000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h27{height:23.699036px;}
.h49{height:23.760000px;}
.h47{height:25.560000px;}
.h5{height:27.000000px;}
.hb{height:27.000169px;}
.h44{height:29.268569px;}
.h42{height:29.283138px;}
.h3a{height:35.999222px;}
.h54{height:37.839981px;}
.h5d{height:38.712990px;}
.h3d{height:39.863089px;}
.h52{height:40.074075px;}
.h51{height:40.094023px;}
.h18{height:40.647853px;}
.h60{height:40.998628px;}
.h63{height:41.019036px;}
.h45{height:41.032883px;}
.h13{height:41.131930px;}
.h38{height:41.153949px;}
.h2c{height:41.194561px;}
.h24{height:41.655223px;}
.h58{height:41.694028px;}
.h4e{height:41.714782px;}
.h10{height:49.649728px;}
.h2f{height:49.649769px;}
.h33{height:49.649810px;}
.h29{height:49.725369px;}
.h7{height:50.229844px;}
.ha{height:50.484375px;}
.h1b{height:50.698333px;}
.h50{height:50.698374px;}
.h20{height:52.876485px;}
.h4a{height:52.952006px;}
.h16{height:54.000138px;}
.h4{height:55.147500px;}
.h35{height:57.226034px;}
.h3f{height:61.949460px;}
.h1f{height:64.888952px;}
.hf{height:65.786732px;}
.h5e{height:66.328990px;}
.h41{height:66.384409px;}
.h36{height:66.621286px;}
.h3{height:66.757500px;}
.h25{height:67.413081px;}
.h4f{height:67.509468px;}
.h28{height:67.592822px;}
.h3b{height:68.266324px;}
.h3c{height:68.456567px;}
.h1d{height:68.490532px;}
.h55{height:68.539771px;}
.h1c{height:68.720034px;}
.h1e{height:68.754240px;}
.h17{height:69.367861px;}
.he{height:69.546890px;}
.h1a{height:69.609443px;}
.h19{height:69.644092px;}
.hc{height:69.705499px;}
.h65{height:69.900920px;}
.h34{height:70.144593px;}
.h15{height:70.175756px;}
.h32{height:70.179863px;}
.h62{height:70.245093px;}
.h2e{height:70.271692px;}
.h64{height:70.280058px;}
.h66{height:70.298212px;}
.h46{height:70.303784px;}
.h43{height:70.338778px;}
.h14{height:70.417524px;}
.h11{height:70.452575px;}
.h2d{height:70.524746px;}
.h39{height:70.554646px;}
.h2a{height:70.559850px;}
.h37{height:70.589766px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h22{height:71.091231px;}
.h26{height:71.094941px;}
.h4c{height:71.175472px;}
.h5a{height:71.199416px;}
.h21{height:71.393189px;}
.h4b{height:71.495267px;}
.h4d{height:71.530855px;}
.h2{height:72.562500px;}
.h56{height:73.975078px;}
.h48{height:73.998281px;}
.h67{height:74.004654px;}
.h23{height:74.427454px;}
.h3e{height:85.985849px;}
.hd{height:87.480890px;}
.h61{height:91.573559px;}
.h5f{height:91.716634px;}
.h57{height:93.115743px;}
.h8{height:97.233750px;}
.h5b{height:99.005222px;}
.h5c{height:99.356010px;}
.h40{height:99.571110px;}
.h30{height:117.499813px;}
.h12{height:118.807664px;}
.h2b{height:118.988569px;}
.h31{height:132.528066px;}
.h59{height:141.085857px;}
.h53{height:148.053433px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:84.225825px;}
.w14{width:94.649045px;}
.w8{width:95.777341px;}
.w5{width:99.000790px;}
.w13{width:101.556000px;}
.w12{width:101.916000px;}
.wa{width:102.220825px;}
.w9{width:103.728875px;}
.w4{width:104.076000px;}
.wb{width:129.221532px;}
.we{width:131.694285px;}
.w17{width:132.829513px;}
.wf{width:136.048026px;}
.wc{width:138.229960px;}
.w6{width:138.229970px;}
.wd{width:157.723513px;}
.w7{width:167.776035px;}
.w15{width:170.988458px;}
.w10{width:206.997226px;}
.w16{width:262.057990px;}
.w3{width:298.905000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x25{left:2.186581px;}
.x5b{left:3.928491px;}
.x50{left:7.920000px;}
.x27{left:12.937471px;}
.x4c{left:14.224425px;}
.x14{left:16.330450px;}
.x60{left:17.716435px;}
.x42{left:19.026207px;}
.x5a{left:24.818699px;}
.x53{left:27.114365px;}
.x4b{left:29.107221px;}
.x4d{left:31.629619px;}
.x22{left:33.087806px;}
.x37{left:35.625436px;}
.x2a{left:37.397096px;}
.x8{left:38.550000px;}
.x18{left:40.597551px;}
.x57{left:42.753837px;}
.x36{left:44.182282px;}
.x2c{left:45.236022px;}
.x58{left:46.791126px;}
.x49{left:48.749563px;}
.x17{left:50.176927px;}
.x2f{left:51.490053px;}
.x5d{left:54.006035px;}
.x1c{left:55.035189px;}
.x24{left:56.158821px;}
.x5c{left:58.118123px;}
.x29{left:59.704114px;}
.x61{left:61.534335px;}
.x2e{left:64.536392px;}
.x39{left:66.659858px;}
.x3e{left:68.269431px;}
.x13{left:73.469911px;}
.x54{left:76.769017px;}
.x38{left:78.191832px;}
.x26{left:79.228158px;}
.x30{left:83.299691px;}
.x1a{left:84.608409px;}
.x2b{left:87.138853px;}
.x12{left:90.713119px;}
.x40{left:92.718752px;}
.x5{left:95.796000px;}
.xb{left:97.595987px;}
.x48{left:102.715098px;}
.x1e{left:104.392991px;}
.x19{left:110.118122px;}
.x21{left:112.123091px;}
.x20{left:115.421758px;}
.x16{left:117.350384px;}
.x32{left:119.327863px;}
.x41{left:123.868285px;}
.x69{left:127.835987px;}
.x1f{left:130.847731px;}
.xa{left:133.235987px;}
.x10{left:137.195987px;}
.x1d{left:140.850888px;}
.x35{left:145.439547px;}
.xf{left:149.111987px;}
.x56{left:163.936608px;}
.x47{left:166.418606px;}
.x46{left:188.745055px;}
.x3{left:190.154987px;}
.x65{left:192.674987px;}
.x5e{left:207.722343px;}
.x3d{left:245.729980px;}
.x11{left:250.004980px;}
.x34{left:275.504987px;}
.x3c{left:281.264987px;}
.x6{left:290.634000px;}
.xc{left:294.224987px;}
.x45{left:298.605000px;}
.x3a{left:306.464987px;}
.x67{left:317.624987px;}
.xe{left:322.664987px;}
.x4e{left:329.909987px;}
.x2{left:333.509987px;}
.x63{left:336.749987px;}
.x55{left:340.349987px;}
.x4{left:342.869987px;}
.x28{left:345.749987px;}
.x15{left:348.989987px;}
.x31{left:352.229987px;}
.x2d{left:353.669987px;}
.x68{left:370.589987px;}
.x3f{left:377.429987px;}
.x33{left:379.229987px;}
.x43{left:381.749987px;}
.xd{left:384.269987px;}
.x1b{left:388.229987px;}
.x7{left:394.710000px;}
.x51{left:395.790000px;}
.x59{left:416.669987px;}
.x23{left:417.749987px;}
.x9{left:498.780000px;}
.x4a{left:505.619987px;}
.x5f{left:507.779987px;}
.x52{left:600.690000px;}
.x3b{left:708.044987px;}
.x66{left:745.844987px;}
.x4f{left:755.924987px;}
.x44{left:766.364987px;}
.x64{left:778.604987px;}
.x62{left:785.444987px;}
.x1{left:797.684987px;}
@media print{
.v11{vertical-align:-69.415942pt;}
.v12{vertical-align:-55.090762pt;}
.v5{vertical-align:-50.586383pt;}
.vd{vertical-align:-27.961374pt;}
.vc{vertical-align:-24.320000pt;}
.v15{vertical-align:-20.063480pt;}
.v3{vertical-align:-15.515628pt;}
.v10{vertical-align:-14.492334pt;}
.v9{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:5.120000pt;}
.v1{vertical-align:15.831174pt;}
.v16{vertical-align:21.760000pt;}
.vb{vertical-align:24.320000pt;}
.v4{vertical-align:29.130872pt;}
.v7{vertical-align:39.175303pt;}
.ve{vertical-align:44.118508pt;}
.v13{vertical-align:45.708191pt;}
.v8{vertical-align:55.209371pt;}
.vf{vertical-align:59.639330pt;}
.v14{vertical-align:61.858302pt;}
.v6{vertical-align:67.882563pt;}
.v2{vertical-align:69.045097pt;}
.ls21{letter-spacing:-1.408000pt;}
.ls20{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.736538pt;}
.ls22{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.128000pt;}
.ls1f{letter-spacing:0.448000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls1{letter-spacing:1.280000pt;}
.ls3{letter-spacing:1.513153pt;}
.ls8{letter-spacing:1.750538pt;}
.lse{letter-spacing:1.940063pt;}
.ls4{letter-spacing:2.000396pt;}
.lsa{letter-spacing:2.003442pt;}
.ls7{letter-spacing:2.185861pt;}
.ls10{letter-spacing:2.339702pt;}
.lsf{letter-spacing:2.425505pt;}
.ls23{letter-spacing:15.488000pt;}
.ls1e{letter-spacing:17.280000pt;}
.ls1d{letter-spacing:47.488000pt;}
.ls14{letter-spacing:62.403042pt;}
.ls1a{letter-spacing:63.388155pt;}
.ls19{letter-spacing:65.052238pt;}
.ls16{letter-spacing:136.386150pt;}
.ls2{letter-spacing:140.277777pt;}
.ls5{letter-spacing:150.584118pt;}
.lsb{letter-spacing:216.875702pt;}
.ls1c{letter-spacing:241.547418pt;}
.ls1b{letter-spacing:254.534326pt;}
.ls13{letter-spacing:282.582629pt;}
.ls18{letter-spacing:306.676259pt;}
.ls6{letter-spacing:318.068531pt;}
.lsd{letter-spacing:333.568659pt;}
.ls12{letter-spacing:475.507499pt;}
.ls17{letter-spacing:551.811952pt;}
.ls15{letter-spacing:725.691962pt;}
.ws30{word-spacing:-37.511020pt;}
.ws2c{word-spacing:-36.109801pt;}
.ws2e{word-spacing:-35.566991pt;}
.ws26{word-spacing:-35.136000pt;}
.ws1b{word-spacing:-35.099058pt;}
.ws15{word-spacing:-35.084183pt;}
.ws6{word-spacing:-35.030843pt;}
.wsa{word-spacing:-34.628844pt;}
.ws23{word-spacing:-34.038376pt;}
.ws12{word-spacing:-33.608900pt;}
.ws33{word-spacing:-24.076800pt;}
.ws2b{word-spacing:-20.423407pt;}
.ws25{word-spacing:-18.266050pt;}
.ws21{word-spacing:-17.925677pt;}
.ws1d{word-spacing:-17.923241pt;}
.ws1{word-spacing:-17.280000pt;}
.ws10{word-spacing:-17.055138pt;}
.ws28{word-spacing:-16.196262pt;}
.wsd{word-spacing:-16.173138pt;}
.ws2d{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1c{word-spacing:-15.983177pt;}
.ws18{word-spacing:-15.952114pt;}
.ws24{word-spacing:-15.926348pt;}
.ws32{word-spacing:-15.913052pt;}
.ws3{word-spacing:-15.782959pt;}
.ws8{word-spacing:-15.769055pt;}
.ws36{word-spacing:-15.744000pt;}
.ws34{word-spacing:-14.720000pt;}
.ws35{word-spacing:-14.592000pt;}
.ws1e{word-spacing:-11.200000pt;}
.ws27{word-spacing:-10.560000pt;}
.ws2f{word-spacing:-9.445204pt;}
.wse{word-spacing:-9.431719pt;}
.ws31{word-spacing:-9.287671pt;}
.ws7{word-spacing:-9.203627pt;}
.ws20{word-spacing:-9.025938pt;}
.ws2{word-spacing:0.000000pt;}
.ws1f{word-spacing:11.291816pt;}
.wsb{word-spacing:14.928662pt;}
.wsc{word-spacing:15.783392pt;}
.ws19{word-spacing:167.800034pt;}
.ws16{word-spacing:169.477696pt;}
.ws2a{word-spacing:173.727927pt;}
.ws4{word-spacing:175.534551pt;}
.ws13{word-spacing:175.801832pt;}
.ws9{word-spacing:193.459563pt;}
.ws11{word-spacing:213.322352pt;}
.ws17{word-spacing:239.303288pt;}
.wsf{word-spacing:242.275274pt;}
.ws1a{word-spacing:255.965648pt;}
.ws5{word-spacing:271.012399pt;}
.ws14{word-spacing:271.425061pt;}
.ws29{word-spacing:279.005975pt;}
.ws22{word-spacing:341.483570pt;}
._55{margin-left:-450.721674pt;}
._5b{margin-left:-441.155255pt;}
._54{margin-left:-411.818210pt;}
._5a{margin-left:-329.771175pt;}
._5d{margin-left:-327.760348pt;}
._5c{margin-left:-317.652300pt;}
._32{margin-left:-304.752299pt;}
._1e{margin-left:-303.790911pt;}
._3a{margin-left:-292.191754pt;}
._35{margin-left:-289.096899pt;}
._2d{margin-left:-279.099741pt;}
._58{margin-left:-263.576053pt;}
._44{margin-left:-253.017905pt;}
._3d{margin-left:-243.853025pt;}
._2a{margin-left:-230.869053pt;}
._23{margin-left:-225.394924pt;}
._43{margin-left:-222.472160pt;}
._3c{margin-left:-213.311486pt;}
._4a{margin-left:-208.685126pt;}
._18{margin-left:-205.299638pt;}
._1c{margin-left:-202.199390pt;}
._49{margin-left:-201.217619pt;}
._40{margin-left:-197.881201pt;}
._36{margin-left:-194.459637pt;}
._2c{margin-left:-191.731277pt;}
._34{margin-left:-189.972543pt;}
._21{margin-left:-188.221162pt;}
._22{margin-left:-180.936713pt;}
._2e{margin-left:-178.156961pt;}
._27{margin-left:-172.407821pt;}
._25{margin-left:-170.996129pt;}
._42{margin-left:-169.994762pt;}
._3e{margin-left:-165.399598pt;}
._17{margin-left:-161.107231pt;}
._4f{margin-left:-156.990473pt;}
._53{margin-left:-147.081180pt;}
._59{margin-left:-143.264990pt;}
._20{margin-left:-142.237867pt;}
._29{margin-left:-133.701958pt;}
._1d{margin-left:-125.394693pt;}
._39{margin-left:-123.336694pt;}
._19{margin-left:-121.339776pt;}
._26{margin-left:-117.653224pt;}
._37{margin-left:-116.502879pt;}
._52{margin-left:-115.459700pt;}
._57{margin-left:-110.788777pt;}
._47{margin-left:-103.375318pt;}
._4d{margin-left:-98.833862pt;}
._41{margin-left:-83.601482pt;}
._2f{margin-left:-81.292154pt;}
._48{margin-left:-72.773034pt;}
._4e{margin-left:-68.285695pt;}
._4c{margin-left:-63.856686pt;}
._46{margin-left:-59.767458pt;}
._3f{margin-left:-47.755000pt;}
._2b{margin-left:-26.754870pt;}
._38{margin-left:-8.320000pt;}
._28{margin-left:-7.040000pt;}
._8{margin-left:-4.349440pt;}
._7{margin-left:-3.171840pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:1.996800pt;}
._9{width:3.494400pt;}
._a{width:5.213867pt;}
._6{width:6.133760pt;}
._5{width:7.383040pt;}
._4{width:8.489387pt;}
._12{width:10.211840pt;}
._16{width:11.125760pt;}
._c{width:12.239360pt;}
._d{width:13.232640pt;}
._b{width:14.197760pt;}
._e{width:17.758720pt;}
._f{width:19.345920pt;}
._10{width:20.553813pt;}
._11{width:21.619200pt;}
._51{width:24.960000pt;}
._31{width:26.368000pt;}
._15{width:28.817920pt;}
._13{width:29.949440pt;}
._14{width:31.938560pt;}
._1f{width:59.520000pt;}
._50{width:62.080000pt;}
._60{width:64.199253pt;}
._45{width:67.200000pt;}
._5f{width:78.720000pt;}
._3b{width:82.560000pt;}
._30{width:91.520000pt;}
._33{width:101.760000pt;}
._56{width:132.586667pt;}
._24{width:144.106667pt;}
._5e{width:157.568000pt;}
._4b{width:161.865387pt;}
._1a{width:172.828160pt;}
._1b{width:174.158507pt;}
.fs22{font-size:26.521555pt;}
.fs1f{font-size:36.103751pt;}
.fsf{font-size:36.312906pt;}
.fsb{font-size:36.814507pt;}
.fs5{font-size:36.868109pt;}
.fs2c{font-size:37.150684pt;}
.fs23{font-size:37.181724pt;}
.fs8{font-size:37.252932pt;}
.fs1b{font-size:37.272875pt;}
.fs16{font-size:37.309656pt;}
.fs12{font-size:37.726876pt;}
.fs26{font-size:37.780817pt;}
.fs1c{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs14{font-size:61.218397pt;}
.fs1e{font-size:62.000685pt;}
.fsd{font-size:62.270286pt;}
.fsc{font-size:63.076219pt;}
.fs4{font-size:63.131835pt;}
.fs2d{font-size:63.652210pt;}
.fs21{font-size:63.705392pt;}
.fs7{font-size:63.808457pt;}
.fs15{font-size:63.905616pt;}
.fs1a{font-size:63.932710pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:64.692551pt;}
.fs24{font-size:64.785048pt;}
.fs1d{font-size:65.511360pt;}
.fse{font-size:65.726520pt;}
.fs28{font-size:65.773772pt;}
.fsa{font-size:66.568444pt;}
.fs6{font-size:66.740247pt;}
.fs2e{font-size:67.079990pt;}
.fs19{font-size:67.313829pt;}
.fs9{font-size:67.343735pt;}
.fs18{font-size:67.347676pt;}
.fs17{font-size:67.435799pt;}
.fs2f{font-size:67.461249pt;}
.fs11{font-size:68.222265pt;}
.fs13{font-size:68.225825pt;}
.fs25{font-size:68.303106pt;}
.fs2a{font-size:68.326084pt;}
.fs3{font-size:85.760000pt;}
.fs27{font-size:93.337902pt;}
.fs2b{font-size:95.346387pt;}
.fs20{font-size:95.552807pt;}
.fs29{font-size:97.111643pt;}
.y0{bottom:0.000000pt;}
.ye0{bottom:3.180311pt;}
.yb7{bottom:3.457927pt;}
.y45{bottom:3.663030pt;}
.y79{bottom:3.668613pt;}
.y4f{bottom:3.680301pt;}
.yec{bottom:3.701744pt;}
.y83{bottom:3.889263pt;}
.yd7{bottom:4.152287pt;}
.yda{bottom:4.152289pt;}
.y42{bottom:4.211311pt;}
.y97{bottom:5.140056pt;}
.y9e{bottom:5.334711pt;}
.yb9{bottom:5.805287pt;}
.y65{bottom:5.971697pt;}
.yb0{bottom:6.086179pt;}
.ye3{bottom:6.143055pt;}
.ycc{bottom:6.175624pt;}
.y5c{bottom:6.231883pt;}
.yc7{bottom:6.720000pt;}
.y57{bottom:6.877755pt;}
.y6f{bottom:6.990808pt;}
.yc4{bottom:7.040000pt;}
.y4c{bottom:7.650653pt;}
.y51{bottom:7.650668pt;}
.y41{bottom:8.169105pt;}
.yc5{bottom:8.320000pt;}
.y9c{bottom:9.358988pt;}
.y9a{bottom:9.358996pt;}
.ya0{bottom:9.359003pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.yad{bottom:9.989143pt;}
.y47{bottom:12.132116pt;}
.y85{bottom:12.132144pt;}
.y90{bottom:12.132168pt;}
.y7b{bottom:12.150615pt;}
.y4e{bottom:14.751961pt;}
.yea{bottom:15.265290pt;}
.y46{bottom:16.140633pt;}
.y82{bottom:16.140636pt;}
.y86{bottom:16.140651pt;}
.y87{bottom:16.140654pt;}
.y84{bottom:16.140659pt;}
.y91{bottom:16.140662pt;}
.y92{bottom:16.140668pt;}
.y8f{bottom:16.140680pt;}
.y7d{bottom:16.165224pt;}
.y7e{bottom:16.165227pt;}
.y7a{bottom:16.165233pt;}
.yae{bottom:16.931893pt;}
.yb4{bottom:17.345750pt;}
.yaf{bottom:18.082453pt;}
.y6a{bottom:18.618327pt;}
.y62{bottom:18.618330pt;}
.y5e{bottom:18.618337pt;}
.yce{bottom:18.644887pt;}
.y98{bottom:18.705383pt;}
.yf0{bottom:18.946057pt;}
.y59{bottom:19.062094pt;}
.ydb{bottom:19.062106pt;}
.y4d{bottom:20.304243pt;}
.y53{bottom:20.304252pt;}
.yb5{bottom:23.117103pt;}
.y61{bottom:24.502680pt;}
.yd0{bottom:24.732825pt;}
.y68{bottom:25.348010pt;}
.ye1{bottom:25.938018pt;}
.yd6{bottom:26.052439pt;}
.yd8{bottom:26.052470pt;}
.y48{bottom:26.225092pt;}
.y7c{bottom:26.265032pt;}
.y5f{bottom:28.534414pt;}
.y60{bottom:28.534420pt;}
.y5d{bottom:28.534449pt;}
.ye4{bottom:28.705742pt;}
.ycd{bottom:28.803317pt;}
.y69{bottom:29.379743pt;}
.y67{bottom:29.379766pt;}
.y66{bottom:29.379779pt;}
.y9f{bottom:29.415143pt;}
.y58{bottom:29.418399pt;}
.y52{bottom:30.279171pt;}
.y99{bottom:32.271368pt;}
.y9d{bottom:33.406950pt;}
.y9b{bottom:33.406958pt;}
.ya1{bottom:33.406965pt;}
.yd9{bottom:34.901099pt;}
.ye5{bottom:35.152337pt;}
.ye2{bottom:35.998872pt;}
.ycf{bottom:36.063483pt;}
.y50{bottom:37.380598pt;}
.yee{bottom:40.152027pt;}
.yb6{bottom:40.297807pt;}
.yb8{bottom:41.960157pt;}
.yed{bottom:46.145477pt;}
.y8{bottom:50.880000pt;}
.yf3{bottom:57.384351pt;}
.yeb{bottom:57.677229pt;}
.yf1{bottom:61.390978pt;}
.y5{bottom:65.312000pt;}
.yf2{bottom:68.524279pt;}
.yef{bottom:77.579758pt;}
.y34{bottom:95.712000pt;}
.y101{bottom:96.992000pt;}
.ybd{bottom:99.232000pt;}
.y8d{bottom:101.472000pt;}
.ye9{bottom:102.266667pt;}
.y11b{bottom:107.232000pt;}
.y33{bottom:116.832000pt;}
.y100{bottom:118.112000pt;}
.y8c{bottom:119.392000pt;}
.ybc{bottom:120.352000pt;}
.y4a{bottom:128.032000pt;}
.y11a{bottom:128.352000pt;}
.y32{bottom:137.946667pt;}
.yff{bottom:138.906667pt;}
.ybb{bottom:141.466667pt;}
.yf4{bottom:142.106667pt;}
.y44{bottom:145.466667pt;}
.y119{bottom:149.466667pt;}
.yfe{bottom:156.506667pt;}
.yb3{bottom:159.200000pt;}
.y31{bottom:159.386667pt;}
.y49{bottom:161.306667pt;}
.y118{bottom:170.586667pt;}
.y30{bottom:180.546667pt;}
.yba{bottom:181.826667pt;}
.y117{bottom:191.746667pt;}
.y40{bottom:192.133333pt;}
.ye8{bottom:197.186667pt;}
.y43{bottom:200.066667pt;}
.y2f{bottom:201.666667pt;}
.y116{bottom:213.186667pt;}
.ye7{bottom:218.306667pt;}
.yb2{bottom:220.546667pt;}
.y2e{bottom:222.786667pt;}
.y115{bottom:234.306667pt;}
.ydf{bottom:235.666667pt;}
.yac{bottom:237.600000pt;}
.y2d{bottom:243.906667pt;}
.yb1{bottom:246.786667pt;}
.ye6{bottom:254.146667pt;}
.y114{bottom:255.426667pt;}
.y2c{bottom:265.026667pt;}
.yab{bottom:276.546667pt;}
.y2b{bottom:286.173333pt;}
.yde{bottom:289.053333pt;}
.yaa{bottom:297.693333pt;}
.y2a{bottom:307.293333pt;}
.ydd{bottom:310.173333pt;}
.ya9{bottom:318.813333pt;}
.yd5{bottom:327.866630pt;}
.y29{bottom:328.733333pt;}
.ya8{bottom:339.933333pt;}
.ydc{bottom:346.333333pt;}
.y28{bottom:349.853333pt;}
.ya7{bottom:360.733333pt;}
.y113{bottom:361.053333pt;}
.y27{bottom:370.973333pt;}
.ya6{bottom:378.333333pt;}
.yd4{bottom:379.293333pt;}
.y112{bottom:382.493333pt;}
.y26{bottom:392.093333pt;}
.yd3{bottom:400.453333pt;}
.y111{bottom:403.333333pt;}
.y25{bottom:413.253333pt;}
.yd2{bottom:421.573333pt;}
.y110{bottom:424.453333pt;}
.y24{bottom:434.373333pt;}
.y8b{bottom:435.973333pt;}
.ycb{bottom:439.200000pt;}
.y10f{bottom:445.893333pt;}
.y23{bottom:455.493333pt;}
.y8a{bottom:457.093333pt;}
.yd1{bottom:457.733333pt;}
.y10e{bottom:467.013333pt;}
.y3f{bottom:476.293333pt;}
.y22{bottom:476.613333pt;}
.y89{bottom:478.213333pt;}
.y10d{bottom:488.133333pt;}
.yca{bottom:492.613333pt;}
.y81{bottom:495.533297pt;}
.y21{bottom:497.733333pt;}
.yfd{bottom:499.333333pt;}
.y10c{bottom:509.280000pt;}
.y88{bottom:511.520000pt;}
.yc9{bottom:513.760000pt;}
.y20{bottom:519.200000pt;}
.yfc{bottom:522.080000pt;}
.y10b{bottom:530.400000pt;}
.yc8{bottom:534.880000pt;}
.y1f{bottom:540.320000pt;}
.yfb{bottom:544.480000pt;}
.y80{bottom:546.080000pt;}
.yc6{bottom:549.920000pt;}
.y10a{bottom:551.520000pt;}
.y1e{bottom:561.440000pt;}
.y78{bottom:563.333297pt;}
.yfa{bottom:565.600000pt;}
.yc3{bottom:571.680000pt;}
.y109{bottom:572.960000pt;}
.y7f{bottom:579.360000pt;}
.y1d{bottom:582.560000pt;}
.yf9{bottom:586.720000pt;}
.y108{bottom:594.080000pt;}
.yc2{bottom:601.760000pt;}
.y1c{bottom:603.680000pt;}
.yf8{bottom:607.520000pt;}
.y77{bottom:613.920000pt;}
.y107{bottom:615.200000pt;}
.yc1{bottom:622.906667pt;}
.y1b{bottom:624.826667pt;}
.yf7{bottom:625.146667pt;}
.y76{bottom:635.066667pt;}
.y106{bottom:636.346667pt;}
.yc0{bottom:644.026667pt;}
.y1a{bottom:645.626667pt;}
.y3e{bottom:645.946667pt;}
.y75{bottom:656.506667pt;}
.y105{bottom:657.146667pt;}
.ybf{bottom:664.826667pt;}
.y19{bottom:666.746667pt;}
.y3d{bottom:667.066667pt;}
.y74{bottom:677.626667pt;}
.y104{bottom:678.586667pt;}
.ybe{bottom:682.426667pt;}
.y18{bottom:688.506667pt;}
.y73{bottom:698.746667pt;}
.y103{bottom:700.986667pt;}
.y17{bottom:709.626667pt;}
.y72{bottom:719.546667pt;}
.y102{bottom:723.386667pt;}
.y16{bottom:730.746667pt;}
.y71{bottom:741.026667pt;}
.y15{bottom:751.906667pt;}
.ya5{bottom:757.026667pt;}
.y6e{bottom:758.266594pt;}
.y70{bottom:765.026667pt;}
.y14{bottom:773.026667pt;}
.ya4{bottom:778.146667pt;}
.y6d{bottom:786.466667pt;}
.y13{bottom:794.146667pt;}
.ya3{bottom:799.586667pt;}
.y6c{bottom:807.586667pt;}
.y12{bottom:815.266667pt;}
.y96{bottom:816.799928pt;}
.y64{bottom:825.133261pt;}
.y11{bottom:836.386667pt;}
.ya2{bottom:838.306667pt;}
.y6b{bottom:843.746667pt;}
.y10{bottom:857.533333pt;}
.y3c{bottom:857.853333pt;}
.y95{bottom:874.493333pt;}
.y5b{bottom:874.733261pt;}
.yf{bottom:878.653333pt;}
.y3b{bottom:878.973333pt;}
.y63{bottom:893.373333pt;}
.y94{bottom:895.613333pt;}
.ye{bottom:900.093333pt;}
.y8e{bottom:912.799928pt;}
.yd{bottom:920.893333pt;}
.y3a{bottom:921.213333pt;}
.y56{bottom:924.666667pt;}
.y93{bottom:928.893333pt;}
.yc{bottom:942.013333pt;}
.y39{bottom:942.333333pt;}
.y5a{bottom:943.293333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y55{bottom:976.293333pt;}
.yf6{bottom:982.053333pt;}
.y37{bottom:984.613333pt;}
.y4b{bottom:993.133261pt;}
.ya{bottom:993.253333pt;}
.yf5{bottom:1004.453333pt;}
.y36{bottom:1005.733333pt;}
.y54{bottom:1013.413333pt;}
.y9{bottom:1021.413333pt;}
.y35{bottom:1026.853333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h27{height:21.065810pt;}
.h49{height:21.120000pt;}
.h47{height:22.720000pt;}
.h5{height:24.000000pt;}
.hb{height:24.000151pt;}
.h44{height:26.016506pt;}
.h42{height:26.029456pt;}
.h3a{height:31.999308pt;}
.h54{height:33.635538pt;}
.h5d{height:34.411547pt;}
.h3d{height:35.433857pt;}
.h52{height:35.621400pt;}
.h51{height:35.639131pt;}
.h18{height:36.131425pt;}
.h60{height:36.443225pt;}
.h63{height:36.461365pt;}
.h45{height:36.473674pt;}
.h13{height:36.561716pt;}
.h38{height:36.581288pt;}
.h2c{height:36.617387pt;}
.h24{height:37.026865pt;}
.h58{height:37.061358pt;}
.h4e{height:37.079806pt;}
.h10{height:44.133092pt;}
.h2f{height:44.133128pt;}
.h33{height:44.133164pt;}
.h29{height:44.200328pt;}
.h7{height:44.648750pt;}
.ha{height:44.875000pt;}
.h1b{height:45.065185pt;}
.h50{height:45.065221pt;}
.h20{height:47.001320pt;}
.h4a{height:47.068450pt;}
.h16{height:48.000123pt;}
.h4{height:49.020000pt;}
.h35{height:50.867586pt;}
.h3f{height:55.066187pt;}
.h1f{height:57.679069pt;}
.hf{height:58.477095pt;}
.h5e{height:58.959102pt;}
.h41{height:59.008364pt;}
.h36{height:59.218921pt;}
.h3{height:59.340000pt;}
.h25{height:59.922739pt;}
.h4f{height:60.008416pt;}
.h28{height:60.082509pt;}
.h3b{height:60.681177pt;}
.h3c{height:60.850281pt;}
.h1d{height:60.880473pt;}
.h55{height:60.924241pt;}
.h1c{height:61.084475pt;}
.h1e{height:61.114880pt;}
.h17{height:61.660321pt;}
.he{height:61.819458pt;}
.h1a{height:61.875060pt;}
.h19{height:61.905859pt;}
.hc{height:61.960443pt;}
.h65{height:62.134151pt;}
.h34{height:62.350749pt;}
.h15{height:62.378450pt;}
.h32{height:62.382101pt;}
.h62{height:62.440083pt;}
.h2e{height:62.463726pt;}
.h64{height:62.471163pt;}
.h66{height:62.487299pt;}
.h46{height:62.492252pt;}
.h43{height:62.523358pt;}
.h14{height:62.593354pt;}
.h11{height:62.624511pt;}
.h2d{height:62.688663pt;}
.h39{height:62.715241pt;}
.h2a{height:62.719867pt;}
.h37{height:62.746458pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h22{height:63.192205pt;}
.h26{height:63.195503pt;}
.h4c{height:63.267086pt;}
.h5a{height:63.288370pt;}
.h21{height:63.460613pt;}
.h4b{height:63.551349pt;}
.h4d{height:63.582982pt;}
.h2{height:64.500000pt;}
.h56{height:65.755625pt;}
.h48{height:65.776250pt;}
.h67{height:65.781915pt;}
.h23{height:66.157737pt;}
.h3e{height:76.431866pt;}
.hd{height:77.760792pt;}
.h61{height:81.398720pt;}
.h5f{height:81.525897pt;}
.h57{height:82.769549pt;}
.h8{height:86.430000pt;}
.h5b{height:88.004642pt;}
.h5c{height:88.316453pt;}
.h40{height:88.507653pt;}
.h30{height:104.444279pt;}
.h12{height:105.606813pt;}
.h2b{height:105.767616pt;}
.h31{height:117.802725pt;}
.h59{height:125.409651pt;}
.h53{height:131.603051pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:74.867400pt;}
.w14{width:84.132484pt;}
.w8{width:85.135415pt;}
.w5{width:88.000702pt;}
.w13{width:90.272000pt;}
.w12{width:90.592000pt;}
.wa{width:90.862955pt;}
.w9{width:92.203445pt;}
.w4{width:92.512000pt;}
.wb{width:114.863584pt;}
.we{width:117.061587pt;}
.w17{width:118.070678pt;}
.wf{width:120.931579pt;}
.wc{width:122.871076pt;}
.w6{width:122.871085pt;}
.wd{width:140.198678pt;}
.w7{width:149.134253pt;}
.w15{width:151.989741pt;}
.w10{width:183.997534pt;}
.w16{width:232.940436pt;}
.w3{width:265.693333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x25{left:1.943627pt;}
.x5b{left:3.491992pt;}
.x50{left:7.040000pt;}
.x27{left:11.499974pt;}
.x4c{left:12.643933pt;}
.x14{left:14.515956pt;}
.x60{left:15.747942pt;}
.x42{left:16.912184pt;}
.x5a{left:22.061066pt;}
.x53{left:24.101657pt;}
.x4b{left:25.873085pt;}
.x4d{left:28.115217pt;}
.x22{left:29.411383pt;}
.x37{left:31.667054pt;}
.x2a{left:33.241863pt;}
.x8{left:34.266667pt;}
.x18{left:36.086712pt;}
.x57{left:38.003411pt;}
.x36{left:39.273140pt;}
.x2c{left:40.209798pt;}
.x58{left:41.592112pt;}
.x49{left:43.332945pt;}
.x17{left:44.601713pt;}
.x2f{left:45.768936pt;}
.x5d{left:48.005364pt;}
.x1c{left:48.920168pt;}
.x24{left:49.918952pt;}
.x5c{left:51.660554pt;}
.x29{left:53.070324pt;}
.x61{left:54.697187pt;}
.x2e{left:57.365681pt;}
.x39{left:59.253207pt;}
.x3e{left:60.683939pt;}
.x13{left:65.306588pt;}
.x54{left:68.239126pt;}
.x38{left:69.503851pt;}
.x26{left:70.425030pt;}
.x30{left:74.044169pt;}
.x1a{left:75.207475pt;}
.x2b{left:77.456758pt;}
.x12{left:80.633884pt;}
.x40{left:82.416668pt;}
.x5{left:85.152000pt;}
.xb{left:86.751988pt;}
.x48{left:91.302309pt;}
.x1e{left:92.793770pt;}
.x19{left:97.882775pt;}
.x21{left:99.664970pt;}
.x20{left:102.597118pt;}
.x16{left:104.311452pt;}
.x32{left:106.069212pt;}
.x41{left:110.105142pt;}
.x69{left:113.631988pt;}
.x1f{left:116.309094pt;}
.xa{left:118.431988pt;}
.x10{left:121.951988pt;}
.x1d{left:125.200790pt;}
.x35{left:129.279598pt;}
.xf{left:132.543988pt;}
.x56{left:145.721430pt;}
.x47{left:147.927650pt;}
.x46{left:167.773383pt;}
.x3{left:169.026655pt;}
.x65{left:171.266655pt;}
.x5e{left:184.642082pt;}
.x3d{left:218.426649pt;}
.x11{left:222.226649pt;}
.x34{left:244.893322pt;}
.x3c{left:250.013322pt;}
.x6{left:258.341333pt;}
.xc{left:261.533322pt;}
.x45{left:265.426667pt;}
.x3a{left:272.413322pt;}
.x67{left:282.333322pt;}
.xe{left:286.813322pt;}
.x4e{left:293.253322pt;}
.x2{left:296.453322pt;}
.x63{left:299.333322pt;}
.x55{left:302.533322pt;}
.x4{left:304.773322pt;}
.x28{left:307.333322pt;}
.x15{left:310.213322pt;}
.x31{left:313.093322pt;}
.x2d{left:314.373322pt;}
.x68{left:329.413322pt;}
.x3f{left:335.493322pt;}
.x33{left:337.093322pt;}
.x43{left:339.333322pt;}
.xd{left:341.573322pt;}
.x1b{left:345.093322pt;}
.x7{left:350.853333pt;}
.x51{left:351.813333pt;}
.x59{left:370.373322pt;}
.x23{left:371.333322pt;}
.x9{left:443.360000pt;}
.x4a{left:449.439988pt;}
.x5f{left:451.359988pt;}
.x52{left:533.946667pt;}
.x3b{left:629.373322pt;}
.x66{left:662.973322pt;}
.x4f{left:671.933322pt;}
.x44{left:681.213322pt;}
.x64{left:692.093322pt;}
.x62{left:698.173322pt;}
.x1{left:709.053322pt;}
}




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