
    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_c9e86944e0b35fe76bafdbc3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_2b9074cf0aa60c39d31f648a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_49183f70734ab901c3def186.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_d3259f34e4769a7937d51a30.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_d048c0e50301fe6317c68853.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_3d83282fa6574bf32a6bcbfc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882324;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_c0b4d32c98f001fc8cb3ee96.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.209473;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_fda2001ed0b7911bec1d4b25.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_0d51ac74652a7ee7189dae44.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.114258;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_ce2c5b5b144a2da22a0d3978.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.674805;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_97d6f8539b4fa9e266c27807.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_8a279322ce4a820af9a5b94f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_d69b4e745817e9ea5c00de91.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910645;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_0d620e4ba412e9362a2ab8c1.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;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_73704a555101c013764e1a81.woff2')format("woff");}.fff{font-family:fff;line-height:0.893555;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_8c2b165970b954ebfe052076.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.706055;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_835706d8d96b50f3d851b79a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.882324;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_8cba5fd73137ce7951c7c502.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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;}
.m1b{transform:matrix(0.000000,-0.246958,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246958,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246958,0.250000,0.000000,0,0);}
.m25{transform:matrix(0.000000,-0.247749,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.247749,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.247749,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249737,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249737,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249737,0.250000,0.000000,0,0);}
.m24{transform:matrix(0.000000,-0.249949,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249949,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249949,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250040,0.250000,0.000000,0,0);}
.m1d{transform:matrix(0.000000,-0.250042,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250042,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250042,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.000000,-0.250056,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250056,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250056,0.250000,0.000000,0,0);}
.m23{transform:matrix(0.000000,-0.250204,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250204,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250204,0.250000,0.000000,0,0);}
.m8{transform:matrix(0.000000,-0.250512,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250512,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250512,0.250000,0.000000,0,0);}
.m10{transform:matrix(0.240569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240569,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247255,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247519,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247568,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248035,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248090,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249091,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249209,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m27{transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249784,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249814,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249830,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249930,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,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);}
.m9{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250507,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252746,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252853,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255125,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.255345,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255345,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255345,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.255385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255385,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.257534,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257534,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257534,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.257604,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257604,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257604,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.257633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257633,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.259693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259693,0.000000,0.000000,0.250000,0,0);}
.m1{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:-24.480000px;}
.v4{vertical-align:-14.400000px;}
.v5{vertical-align:-12.960000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls38{letter-spacing:-2.839680px;}
.ls36{letter-spacing:-2.756160px;}
.ls35{letter-spacing:-2.722752px;}
.ls37{letter-spacing:-2.555712px;}
.ls25{letter-spacing:-1.742400px;}
.ls3a{letter-spacing:-0.328032px;}
.ls9{letter-spacing:-0.318384px;}
.lsa{letter-spacing:-0.241200px;}
.lsb{letter-spacing:-0.231552px;}
.ls39{letter-spacing:-0.173664px;}
.lsc{letter-spacing:-0.154368px;}
.ls24{letter-spacing:-0.021600px;}
.lsf{letter-spacing:-0.014400px;}
.ls8{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000576px;}
.ls30{letter-spacing:0.001728px;}
.ls29{letter-spacing:0.002880px;}
.ls1d{letter-spacing:0.007200px;}
.ls1e{letter-spacing:0.010080px;}
.ls33{letter-spacing:0.012384px;}
.ls12{letter-spacing:0.014400px;}
.ls20{letter-spacing:0.028800px;}
.ls11{letter-spacing:0.083520px;}
.lsd{letter-spacing:0.118800px;}
.ls5{letter-spacing:0.120960px;}
.ls4{letter-spacing:0.125280px;}
.ls7{letter-spacing:0.125424px;}
.ls34{letter-spacing:0.160128px;}
.ls2{letter-spacing:0.160272px;}
.ls3b{letter-spacing:0.204336px;}
.ls2c{letter-spacing:0.204480px;}
.ls0{letter-spacing:0.205776px;}
.ls1{letter-spacing:0.205920px;}
.ls31{letter-spacing:0.237600px;}
.ls3{letter-spacing:0.239040px;}
.ls6{letter-spacing:0.240048px;}
.ls10{letter-spacing:0.240480px;}
.ls3c{letter-spacing:0.240624px;}
.ls15{letter-spacing:0.242352px;}
.ls1b{letter-spacing:0.274032px;}
.ls3d{letter-spacing:0.274320px;}
.ls19{letter-spacing:0.275040px;}
.ls1a{letter-spacing:0.285120px;}
.ls32{letter-spacing:0.361440px;}
.ls16{letter-spacing:0.365904px;}
.ls13{letter-spacing:0.455328px;}
.ls21{letter-spacing:0.739728px;}
.ls22{letter-spacing:0.741168px;}
.ls27{letter-spacing:1.881504px;}
.ls1f{letter-spacing:2.196000px;}
.ls2b{letter-spacing:2.197008px;}
.ls26{letter-spacing:2.197152px;}
.ls23{letter-spacing:2.197440px;}
.ls14{letter-spacing:2.279232px;}
.ls18{letter-spacing:2.279520px;}
.ls28{letter-spacing:2.863728px;}
.ls2e{letter-spacing:3.524400px;}
.ls17{letter-spacing:3.748896px;}
.ls2d{letter-spacing:5.122800px;}
.ls1c{letter-spacing:5.176800px;}
.ls2f{letter-spacing:7.143840px;}
.lse{letter-spacing:198.000000px;}
.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;}
}
.ws0{word-spacing:-24.120000px;}
.ws2{word-spacing:-23.965632px;}
.ws1{word-spacing:-23.878800px;}
.ws1b{word-spacing:-18.324288px;}
.ws19{word-spacing:-18.157248px;}
.ws1a{word-spacing:-18.123840px;}
.ws1c{word-spacing:-18.040320px;}
.wsa{word-spacing:-18.014400px;}
.ws4{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.985600px;}
.ws10{word-spacing:-14.368211px;}
.wsb{word-spacing:-12.245904px;}
.ws8{word-spacing:-12.122352px;}
.ws18{word-spacing:-12.117600px;}
.ws1d{word-spacing:-12.084336px;}
.ws5{word-spacing:-11.998800px;}
.ws3{word-spacing:-11.880000px;}
.ws17{word-spacing:-0.100800px;}
.ws9{word-spacing:-0.072000px;}
.ws13{word-spacing:-0.050400px;}
.ws6{word-spacing:0.000000px;}
.ws16{word-spacing:15.933600px;}
.ws12{word-spacing:19.884960px;}
.ws15{word-spacing:19.932480px;}
.ws14{word-spacing:20.414880px;}
.ws11{word-spacing:29.964620px;}
.wsd{word-spacing:109.280504px;}
.wsc{word-spacing:155.645297px;}
.wse{word-spacing:410.742309px;}
.wsf{word-spacing:434.559055px;}
._1f{margin-left:-380.772988px;}
._1c{margin-left:-216.056834px;}
._1d{margin-left:-201.154947px;}
._1e{margin-left:-172.911150px;}
._12{margin-left:-4.773600px;}
._b{margin-left:-3.456000px;}
._7{margin-left:-2.246400px;}
._1{margin-left:-1.008432px;}
._0{width:1.061280px;}
._d{width:2.221920px;}
._2{width:3.312000px;}
._6{width:4.420800px;}
._f{width:5.436000px;}
._3{width:6.451200px;}
._a{width:7.689600px;}
._8{width:9.338400px;}
._4{width:11.116800px;}
._10{width:12.448800px;}
._1b{width:13.492800px;}
._18{width:14.493600px;}
._17{width:15.825600px;}
._11{width:16.920000px;}
._16{width:19.699200px;}
._14{width:20.772000px;}
._1a{width:22.068576px;}
._23{width:23.853024px;}
._13{width:25.164000px;}
._19{width:26.284320px;}
._e{width:27.309600px;}
._22{width:29.130624px;}
._24{width:30.257856px;}
._15{width:32.032800px;}
._21{width:38.613600px;}
._25{width:39.663360px;}
._28{width:41.371200px;}
._c{width:46.281600px;}
._27{width:48.542400px;}
._9{width:55.195200px;}
._26{width:56.314080px;}
._29{width:186.062400px;}
._20{width:198.000000px;}
._5{width:846.000000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs11{font-size:40.024793px;}
.fs10{font-size:40.025729px;}
.fsc{font-size:41.462550px;}
.fs9{font-size:44.798028px;}
.fs6{font-size:46.182454px;}
.fsb{font-size:46.645369px;}
.fs2{font-size:47.520000px;}
.fs3{font-size:49.262436px;}
.fs7{font-size:53.367639px;}
.fsf{font-size:57.471498px;}
.fse{font-size:57.472842px;}
.fs8{font-size:63.712751px;}
.fsd{font-size:64.369583px;}
.fs5{font-size:65.681712px;}
.fs4{font-size:65.683248px;}
.fsa{font-size:66.340080px;}
.fs0{font-size:72.000000px;}
.fs12{font-size:83.520000px;}
.fs13{font-size:90.720000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y4{bottom:4.860000px;}
.y142{bottom:7.260000px;}
.yc5{bottom:12.828759px;}
.yb7{bottom:13.854957px;}
.yc4{bottom:16.164237px;}
.yb6{bottom:17.190435px;}
.yb1{bottom:19.109720px;}
.yc3{bottom:32.205318px;}
.yb5{bottom:33.354672px;}
.yb0{bottom:34.380972px;}
.yae{bottom:48.749286px;}
.yb3{bottom:50.545312px;}
.ybf{bottom:50.801887px;}
.y141{bottom:52.500000px;}
.yca{bottom:57.447184px;}
.yc9{bottom:59.499786px;}
.y140{bottom:59.760000px;}
.ybe{bottom:76.069412px;}
.yc0{bottom:76.202831px;}
.y2{bottom:78.480000px;}
.yb4{bottom:88.261865px;}
.yad{bottom:89.801316px;}
.y3{bottom:94.500000px;}
.yaf{bottom:96.862265px;}
.y1{bottom:99.360000px;}
.ybd{bottom:101.347199px;}
.y15c{bottom:115.560000px;}
.ye2{bottom:121.320000px;}
.yb2{bottom:124.059132px;}
.ybc{bottom:126.491567px;}
.y161{bottom:127.800000px;}
.yac{bottom:130.853346px;}
.y4f{bottom:135.360000px;}
.y115{bottom:138.960000px;}
.y67{bottom:139.680000px;}
.yc1{bottom:139.710321px;}
.yc8{bottom:139.833477px;}
.yfa{bottom:140.040000px;}
.y79{bottom:142.920000px;}
.y102{bottom:143.640000px;}
.y3a{bottom:144.360000px;}
.y13b{bottom:145.080000px;}
.y103{bottom:146.880000px;}
.y74{bottom:147.600000px;}
.yc2{bottom:148.043883px;}
.y11a{bottom:148.680000px;}
.ybb{bottom:151.769355px;}
.yc7{bottom:154.078532px;}
.yb9{bottom:155.361408px;}
.y122{bottom:156.600000px;}
.y15b{bottom:156.960000px;}
.ye1{bottom:162.720000px;}
.yc6{bottom:168.313323px;}
.yb8{bottom:169.596199px;}
.y160{bottom:170.640000px;}
.yab{bottom:171.905376px;}
.yba{bottom:177.036879px;}
.y4e{bottom:177.480000px;}
.y114{bottom:180.360000px;}
.y66{bottom:181.080000px;}
.yf9{bottom:181.440000px;}
.ycf{bottom:183.240000px;}
.y78{bottom:184.320000px;}
.y39{bottom:185.760000px;}
.y13a{bottom:187.920000px;}
.y73{bottom:189.000000px;}
.y119{bottom:190.080000px;}
.ya6{bottom:193.724530px;}
.ya5{bottom:197.611644px;}
.y121{bottom:198.000000px;}
.ye0{bottom:204.120000px;}
.y15f{bottom:213.480000px;}
.y98{bottom:214.117125px;}
.y15a{bottom:218.880000px;}
.y4d{bottom:219.240000px;}
.y113{bottom:221.760000px;}
.y65{bottom:222.480000px;}
.yf8{bottom:222.840000px;}
.yce{bottom:224.640000px;}
.y77{bottom:225.720000px;}
.y124{bottom:226.440000px;}
.y38{bottom:227.160000px;}
.y139{bottom:229.320000px;}
.y72{bottom:230.400000px;}
.y118{bottom:231.480000px;}
.ya1{bottom:232.836749px;}
.y21{bottom:236.520000px;}
.y120{bottom:239.400000px;}
.yaa{bottom:241.155019px;}
.ydf{bottom:245.520000px;}
.y159{bottom:249.840000px;}
.y15e{bottom:250.920000px;}
.ya2{bottom:258.114639px;}
.y4c{bottom:260.640000px;}
.y112{bottom:263.160000px;}
.y64{bottom:263.880000px;}
.yf7{bottom:264.240000px;}
.ycd{bottom:266.040000px;}
.y20{bottom:267.120000px;}
.y123{bottom:268.200000px;}
.y37{bottom:268.560000px;}
.y138{bottom:270.720000px;}
.y71{bottom:271.800000px;}
.y117{bottom:272.880000px;}
.ya0{bottom:280.559836px;}
.y11f{bottom:280.800000px;}
.y158{bottom:281.160000px;}
.yde{bottom:287.280000px;}
.y1f{bottom:298.440000px;}
.y4b{bottom:302.040000px;}
.y9e{bottom:303.148613px;}
.y9a{bottom:303.538607px;}
.y9c{bottom:304.051758px;}
.y111{bottom:304.560000px;}
.y63{bottom:305.280000px;}
.yf6{bottom:305.640000px;}
.ycc{bottom:307.440000px;}
.y76{bottom:308.520000px;}
.ya4{bottom:309.049842px;}
.y36{bottom:309.960000px;}
.y116{bottom:310.320000px;}
.y137{bottom:312.120000px;}
.y70{bottom:313.200000px;}
.y9d{bottom:317.383507px;}
.y99{bottom:317.773399px;}
.y9b{bottom:318.286549px;}
.y11e{bottom:322.200000px;}
.ya3{bottom:323.284736px;}
.y9f{bottom:328.282821px;}
.y1e{bottom:329.400000px;}
.ydd{bottom:329.760000px;}
.y157{bottom:343.080000px;}
.y4a{bottom:343.440000px;}
.y93{bottom:343.554073px;}
.ycb{bottom:344.880000px;}
.y75{bottom:345.960000px;}
.y7a{bottom:346.155000px;}
.y62{bottom:346.680000px;}
.yf5{bottom:347.040000px;}
.y101{bottom:347.400000px;}
.y35{bottom:351.360000px;}
.y136{bottom:353.520000px;}
.y6f{bottom:354.600000px;}
.y1d{bottom:360.360000px;}
.y11d{bottom:363.600000px;}
.y91{bottom:365.362964px;}
.ya9{bottom:369.442612px;}
.ydc{bottom:373.320000px;}
.y156{bottom:380.160000px;}
.y49{bottom:384.840000px;}
.y110{bottom:387.360000px;}
.y61{bottom:388.080000px;}
.yf4{bottom:388.440000px;}
.y92{bottom:389.994182px;}
.y1c{bottom:391.320000px;}
.y34{bottom:392.760000px;}
.y135{bottom:394.920000px;}
.y6e{bottom:396.000000px;}
.y11c{bottom:405.000000px;}
.y90{bottom:408.334279px;}
.y155{bottom:411.480000px;}
.ydb{bottom:417.240000px;}
.y48{bottom:426.240000px;}
.y168{bottom:428.040000px;}
.y1b{bottom:428.760000px;}
.y60{bottom:429.480000px;}
.yf3{bottom:429.840000px;}
.y33{bottom:434.160000px;}
.y134{bottom:436.320000px;}
.y96{bottom:436.444554px;}
.y6d{bottom:437.400000px;}
.y11b{bottom:442.440000px;}
.y94{bottom:449.776201px;}
.y97{bottom:450.545927px;}
.y95{bottom:450.679346px;}
.y8f{bottom:451.315652px;}
.yda{bottom:459.360000px;}
.y1a{bottom:459.720000px;}
.y47{bottom:467.640000px;}
.y167{bottom:469.440000px;}
.y10f{bottom:470.160000px;}
.y5f{bottom:470.880000px;}
.y8d{bottom:471.128491px;}
.yf2{bottom:471.240000px;}
.y154{bottom:473.400000px;}
.y32{bottom:475.560000px;}
.y133{bottom:477.720000px;}
.y6c{bottom:478.800000px;}
.y8e{bottom:481.581364px;}
.y19{bottom:484.560000px;}
.y83{bottom:487.236281px;}
.y153{bottom:498.240000px;}
.yd9{bottom:501.480000px;}
.y46{bottom:509.040000px;}
.y166{bottom:510.840000px;}
.y10e{bottom:511.560000px;}
.y5e{bottom:512.280000px;}
.yf1{bottom:512.640000px;}
.y85{bottom:513.283691px;}
.y31{bottom:516.960000px;}
.y132{bottom:519.120000px;}
.y6b{bottom:520.200000px;}
.y18{bottom:521.640000px;}
.y8a{bottom:534.959163px;}
.y152{bottom:535.680000px;}
.y86{bottom:541.630118px;}
.yd8{bottom:543.240000px;}
.y17{bottom:546.840000px;}
.y45{bottom:550.440000px;}
.y165{bottom:552.240000px;}
.y10d{bottom:552.960000px;}
.y5d{bottom:553.680000px;}
.yf0{bottom:554.040000px;}
.y30{bottom:558.360000px;}
.y8b{bottom:560.493526px;}
.y131{bottom:560.520000px;}
.y6a{bottom:561.600000px;}
.y8c{bottom:566.897745px;}
.y87{bottom:569.976545px;}
.y16{bottom:583.920000px;}
.yd7{bottom:584.640000px;}
.y44{bottom:591.840000px;}
.y164{bottom:593.640000px;}
.y10c{bottom:594.360000px;}
.y5c{bottom:595.080000px;}
.yef{bottom:595.440000px;}
.y151{bottom:597.600000px;}
.y88{bottom:598.333235px;}
.y2f{bottom:599.760000px;}
.y130{bottom:601.920000px;}
.y69{bottom:603.000000px;}
.y15{bottom:608.760000px;}
.y150{bottom:622.440000px;}
.y84{bottom:624.760479px;}
.yd6{bottom:626.040000px;}
.y89{bottom:626.689924px;}
.ya8{bottom:628.070401px;}
.y16d{bottom:631.080000px;}
.y43{bottom:634.320000px;}
.y163{bottom:635.040000px;}
.y10b{bottom:635.760000px;}
.y5b{bottom:636.480000px;}
.yee{bottom:636.840000px;}
.y68{bottom:640.440000px;}
.y2e{bottom:641.160000px;}
.y12f{bottom:643.320000px;}
.y14{bottom:645.840000px;}
.y14f{bottom:659.880000px;}
.yd5{bottom:667.440000px;}
.y13{bottom:671.040000px;}
.y162{bottom:672.480000px;}
.y42{bottom:677.160000px;}
.y5a{bottom:677.880000px;}
.yed{bottom:678.240000px;}
.y2d{bottom:682.560000px;}
.y12e{bottom:684.720000px;}
.y7d{bottom:691.213555px;}
.y7f{bottom:697.114784px;}
.y12{bottom:708.120000px;}
.yd4{bottom:708.840000px;}
.y16c{bottom:713.880000px;}
.y41{bottom:718.560000px;}
.y59{bottom:719.280000px;}
.yec{bottom:719.640000px;}
.y14e{bottom:721.800000px;}
.y80{bottom:722.649147px;}
.y2c{bottom:723.960000px;}
.y12d{bottom:726.120000px;}
.y81{bottom:729.053264px;}
.y11{bottom:732.960000px;}
.y14d{bottom:746.640000px;}
.yd3{bottom:750.960000px;}
.y7e{bottom:750.995574px;}
.y16b{bottom:755.280000px;}
.y40{bottom:759.960000px;}
.y58{bottom:760.680000px;}
.yeb{bottom:761.040000px;}
.y2b{bottom:765.360000px;}
.y12c{bottom:767.520000px;}
.y82{bottom:767.549805px;}
.y7c{bottom:768.319530px;}
.y7b{bottom:768.442687px;}
.y10{bottom:770.040000px;}
.ya7{bottom:771.752506px;}
.y14c{bottom:784.080000px;}
.yf{bottom:794.880000px;}
.yd2{bottom:796.320000px;}
.y16a{bottom:796.680000px;}
.y3f{bottom:801.360000px;}
.y57{bottom:802.080000px;}
.yea{bottom:802.440000px;}
.y2a{bottom:806.760000px;}
.y12b{bottom:808.920000px;}
.y169{bottom:820.080000px;}
.ye{bottom:832.320000px;}
.yd1{bottom:842.040000px;}
.y10a{bottom:842.760000px;}
.y56{bottom:843.480000px;}
.ye9{bottom:843.840000px;}
.y3e{bottom:844.200000px;}
.y15d{bottom:845.640000px;}
.y14b{bottom:846.000000px;}
.y29{bottom:848.160000px;}
.y12a{bottom:850.320000px;}
.yd{bottom:857.160000px;}
.y14a{bottom:881.280000px;}
.y109{bottom:884.160000px;}
.y55{bottom:884.880000px;}
.ye8{bottom:885.240000px;}
.yd0{bottom:885.600000px;}
.y3d{bottom:887.040000px;}
.y28{bottom:889.560000px;}
.y129{bottom:891.720000px;}
.yc{bottom:894.240000px;}
.y149{bottom:922.680000px;}
.y108{bottom:925.560000px;}
.y54{bottom:925.920000px;}
.ye7{bottom:926.640000px;}
.y3c{bottom:928.440000px;}
.yb{bottom:929.520000px;}
.y100{bottom:930.240000px;}
.y27{bottom:930.960000px;}
.y128{bottom:933.120000px;}
.y148{bottom:964.080000px;}
.y107{bottom:966.960000px;}
.y53{bottom:967.320000px;}
.ye6{bottom:968.040000px;}
.y3b{bottom:969.840000px;}
.ya{bottom:970.920000px;}
.yff{bottom:971.640000px;}
.y26{bottom:972.360000px;}
.y127{bottom:974.520000px;}
.y147{bottom:1005.480000px;}
.y106{bottom:1008.360000px;}
.y52{bottom:1008.720000px;}
.ye5{bottom:1009.440000px;}
.y13f{bottom:1011.240000px;}
.y9{bottom:1012.320000px;}
.yfe{bottom:1013.040000px;}
.y25{bottom:1013.760000px;}
.y146{bottom:1026.720000px;}
.y105{bottom:1050.120000px;}
.y51{bottom:1050.840000px;}
.y13e{bottom:1052.280000px;}
.y8{bottom:1053.720000px;}
.yfd{bottom:1054.440000px;}
.y24{bottom:1055.160000px;}
.y126{bottom:1062.360000px;}
.y7{bottom:1074.960000px;}
.y145{bottom:1083.960000px;}
.ye4{bottom:1092.240000px;}
.y50{bottom:1092.960000px;}
.y13d{bottom:1093.680000px;}
.yfc{bottom:1095.840000px;}
.y23{bottom:1096.560000px;}
.y6{bottom:1100.520000px;}
.y125{bottom:1103.760000px;}
.y144{bottom:1111.320000px;}
.y5{bottom:1132.200000px;}
.ye3{bottom:1134.000000px;}
.y143{bottom:1135.440000px;}
.y104{bottom:1136.160000px;}
.y13c{bottom:1136.520000px;}
.yfb{bottom:1137.600000px;}
.y22{bottom:1137.960000px;}
.h3{height:22.500000px;}
.h19{height:28.500000px;}
.h1d{height:32.994844px;}
.h17{height:35.842515px;}
.h16{height:35.843353px;}
.h12{height:37.130038px;}
.h5{height:38.555156px;}
.hf{height:40.116984px;}
.hc{height:41.356748px;}
.h11{height:41.771292px;}
.h9{height:44.114896px;}
.hd{height:47.791138px;}
.h6{height:48.796875px;}
.h1b{height:50.027344px;}
.h15{height:51.466175px;}
.h14{height:51.467379px;}
.he{height:57.055266px;}
.h1c{height:57.474844px;}
.h13{height:57.643464px;}
.h1a{height:57.990938px;}
.hb{height:58.818486px;}
.ha{height:58.819862px;}
.h10{height:59.408060px;}
.h1e{height:60.465234px;}
.h2{height:63.035156px;}
.h7{height:64.160156px;}
.h18{height:64.304297px;}
.h4{height:65.387813px;}
.h8{height:808.725000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:10.500000px;}
.w3{width:19.500000px;}
.w5{width:207.300000px;}
.w6{width:343.800000px;}
.w4{width:622.950000px;}
.w7{width:892.440000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x5a{left:-2.580000px;}
.x0{left:0.000000px;}
.x3{left:1.080000px;}
.x43{left:38.485378px;}
.x12{left:40.281362px;}
.x10{left:41.687362px;}
.x13{left:44.129900px;}
.x18{left:45.156177px;}
.x11{left:47.208731px;}
.x41{left:48.235007px;}
.x22{left:52.596683px;}
.x36{left:53.622960px;}
.x42{left:55.418945px;}
.x35{left:58.374622px;}
.x21{left:59.524052px;}
.x37{left:68.503973px;}
.x3b{left:71.839373px;}
.x3f{left:72.865649px;}
.x19{left:94.540614px;}
.x24{left:100.965107px;}
.x61{left:108.000000px;}
.x38{left:115.835857px;}
.x25{left:120.844087px;}
.x14{left:123.276363px;}
.x1{left:135.000000px;}
.x5f{left:136.440000px;}
.x64{left:142.799184px;}
.x65{left:145.065312px;}
.x7{left:151.913808px;}
.x23{left:166.000264px;}
.x6{left:167.624244px;}
.x8{left:169.890408px;}
.x44{left:186.659215px;}
.xa{left:189.000000px;}
.x4{left:192.488508px;}
.xb{left:196.200000px;}
.x32{left:197.814844px;}
.x40{left:202.176520px;}
.x3c{left:203.264373px;}
.x63{left:204.284556px;}
.x1a{left:223.851485px;}
.x5{left:229.109616px;}
.x2c{left:230.275977px;}
.x1b{left:233.734530px;}
.xe{left:234.760807px;}
.x34{left:235.787083px;}
.x45{left:237.069929px;}
.x46{left:240.918467px;}
.x55{left:249.385250px;}
.x33{left:252.464081px;}
.x9{left:258.459228px;}
.x47{left:267.468247px;}
.x4c{left:285.438352px;}
.x49{left:287.234337px;}
.x2b{left:295.311135px;}
.x39{left:303.777918px;}
.x1e{left:306.918325px;}
.x4a{left:309.555856px;}
.x4b{left:315.066962px;}
.x30{left:328.151991px;}
.x2a{left:329.947975px;}
.x3d{left:332.513667px;}
.x1f{left:336.260809px;}
.x3a{left:338.281342px;}
.x20{left:345.780860px;}
.x16{left:354.188632px;}
.x17{left:355.994879px;}
.xf{left:357.400878px;}
.x29{left:360.613124px;}
.x48{left:361.885708px;}
.x31{left:382.801228px;}
.x62{left:397.050120px;}
.x4f{left:399.991363px;}
.x4e{left:409.484423px;}
.x4d{left:416.032069px;}
.x28{left:425.648282px;}
.xd{left:436.500000px;}
.x2{left:441.000000px;}
.x5e{left:446.474880px;}
.x56{left:448.544516px;}
.x2d{left:458.489138px;}
.x3e{left:462.912391px;}
.x54{left:483.119780px;}
.x1c{left:484.525779px;}
.x27{left:490.950272px;}
.x51{left:494.029102px;}
.x2e{left:513.138375px;}
.x52{left:516.350621px;}
.x53{left:521.861727px;}
.x2f{left:524.807142px;}
.x5c{left:543.960000px;}
.x5d{left:549.000000px;}
.x50{left:552.906599px;}
.x26{left:555.985429px;}
.x15{left:561.629951px;}
.x1d{left:562.912797px;}
.x68{left:677.849760px;}
.x58{left:681.120000px;}
.x59{left:685.500000px;}
.x5b{left:689.873760px;}
.x57{left:699.120000px;}
.x66{left:717.750000px;}
.xc{left:757.874880px;}
.x60{left:772.200000px;}
.x67{left:784.440000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v4{vertical-align:-12.800000pt;}
.v5{vertical-align:-11.520000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls38{letter-spacing:-2.524160pt;}
.ls36{letter-spacing:-2.449920pt;}
.ls35{letter-spacing:-2.420224pt;}
.ls37{letter-spacing:-2.271744pt;}
.ls25{letter-spacing:-1.548800pt;}
.ls3a{letter-spacing:-0.291584pt;}
.ls9{letter-spacing:-0.283008pt;}
.lsa{letter-spacing:-0.214400pt;}
.lsb{letter-spacing:-0.205824pt;}
.ls39{letter-spacing:-0.154368pt;}
.lsc{letter-spacing:-0.137216pt;}
.ls24{letter-spacing:-0.019200pt;}
.lsf{letter-spacing:-0.012800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000512pt;}
.ls30{letter-spacing:0.001536pt;}
.ls29{letter-spacing:0.002560pt;}
.ls1d{letter-spacing:0.006400pt;}
.ls1e{letter-spacing:0.008960pt;}
.ls33{letter-spacing:0.011008pt;}
.ls12{letter-spacing:0.012800pt;}
.ls20{letter-spacing:0.025600pt;}
.ls11{letter-spacing:0.074240pt;}
.lsd{letter-spacing:0.105600pt;}
.ls5{letter-spacing:0.107520pt;}
.ls4{letter-spacing:0.111360pt;}
.ls7{letter-spacing:0.111488pt;}
.ls34{letter-spacing:0.142336pt;}
.ls2{letter-spacing:0.142464pt;}
.ls3b{letter-spacing:0.181632pt;}
.ls2c{letter-spacing:0.181760pt;}
.ls0{letter-spacing:0.182912pt;}
.ls1{letter-spacing:0.183040pt;}
.ls31{letter-spacing:0.211200pt;}
.ls3{letter-spacing:0.212480pt;}
.ls6{letter-spacing:0.213376pt;}
.ls10{letter-spacing:0.213760pt;}
.ls3c{letter-spacing:0.213888pt;}
.ls15{letter-spacing:0.215424pt;}
.ls1b{letter-spacing:0.243584pt;}
.ls3d{letter-spacing:0.243840pt;}
.ls19{letter-spacing:0.244480pt;}
.ls1a{letter-spacing:0.253440pt;}
.ls32{letter-spacing:0.321280pt;}
.ls16{letter-spacing:0.325248pt;}
.ls13{letter-spacing:0.404736pt;}
.ls21{letter-spacing:0.657536pt;}
.ls22{letter-spacing:0.658816pt;}
.ls27{letter-spacing:1.672448pt;}
.ls1f{letter-spacing:1.952000pt;}
.ls2b{letter-spacing:1.952896pt;}
.ls26{letter-spacing:1.953024pt;}
.ls23{letter-spacing:1.953280pt;}
.ls14{letter-spacing:2.025984pt;}
.ls18{letter-spacing:2.026240pt;}
.ls28{letter-spacing:2.545536pt;}
.ls2e{letter-spacing:3.132800pt;}
.ls17{letter-spacing:3.332352pt;}
.ls2d{letter-spacing:4.553600pt;}
.ls1c{letter-spacing:4.601600pt;}
.ls2f{letter-spacing:6.350080pt;}
.lse{letter-spacing:176.000000pt;}
.ws0{word-spacing:-21.440000pt;}
.ws2{word-spacing:-21.302784pt;}
.ws1{word-spacing:-21.225600pt;}
.ws1b{word-spacing:-16.288256pt;}
.ws19{word-spacing:-16.139776pt;}
.ws1a{word-spacing:-16.110080pt;}
.ws1c{word-spacing:-16.035840pt;}
.wsa{word-spacing:-16.012800pt;}
.ws4{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.987200pt;}
.ws10{word-spacing:-12.771743pt;}
.wsb{word-spacing:-10.885248pt;}
.ws8{word-spacing:-10.775424pt;}
.ws18{word-spacing:-10.771200pt;}
.ws1d{word-spacing:-10.741632pt;}
.ws5{word-spacing:-10.665600pt;}
.ws3{word-spacing:-10.560000pt;}
.ws17{word-spacing:-0.089600pt;}
.ws9{word-spacing:-0.064000pt;}
.ws13{word-spacing:-0.044800pt;}
.ws6{word-spacing:0.000000pt;}
.ws16{word-spacing:14.163200pt;}
.ws12{word-spacing:17.675520pt;}
.ws15{word-spacing:17.717760pt;}
.ws14{word-spacing:18.146560pt;}
.ws11{word-spacing:26.635218pt;}
.wsd{word-spacing:97.138226pt;}
.wsc{word-spacing:138.351375pt;}
.wse{word-spacing:365.104275pt;}
.wsf{word-spacing:386.274716pt;}
._1f{margin-left:-338.464879pt;}
._1c{margin-left:-192.050519pt;}
._1d{margin-left:-178.804397pt;}
._1e{margin-left:-153.698800pt;}
._12{margin-left:-4.243200pt;}
._b{margin-left:-3.072000pt;}
._7{margin-left:-1.996800pt;}
._1{margin-left:-0.896384pt;}
._0{width:0.943360pt;}
._d{width:1.975040pt;}
._2{width:2.944000pt;}
._6{width:3.929600pt;}
._f{width:4.832000pt;}
._3{width:5.734400pt;}
._a{width:6.835200pt;}
._8{width:8.300800pt;}
._4{width:9.881600pt;}
._10{width:11.065600pt;}
._1b{width:11.993600pt;}
._18{width:12.883200pt;}
._17{width:14.067200pt;}
._11{width:15.040000pt;}
._16{width:17.510400pt;}
._14{width:18.464000pt;}
._1a{width:19.616512pt;}
._23{width:21.202688pt;}
._13{width:22.368000pt;}
._19{width:23.363840pt;}
._e{width:24.275200pt;}
._22{width:25.893888pt;}
._24{width:26.895872pt;}
._15{width:28.473600pt;}
._21{width:34.323200pt;}
._25{width:35.256320pt;}
._28{width:36.774400pt;}
._c{width:41.139200pt;}
._27{width:43.148800pt;}
._9{width:49.062400pt;}
._26{width:50.056960pt;}
._29{width:165.388800pt;}
._20{width:176.000000pt;}
._5{width:752.000000pt;}
.fs11{font-size:35.577594pt;}
.fs10{font-size:35.578426pt;}
.fsc{font-size:36.855600pt;}
.fs9{font-size:39.820469pt;}
.fs6{font-size:41.051070pt;}
.fsb{font-size:41.462550pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:43.788832pt;}
.fs7{font-size:47.437901pt;}
.fsf{font-size:51.085776pt;}
.fse{font-size:51.086971pt;}
.fs8{font-size:56.633556pt;}
.fsd{font-size:57.217407pt;}
.fs5{font-size:58.383744pt;}
.fs4{font-size:58.385109pt;}
.fsa{font-size:58.968960pt;}
.fs0{font-size:64.000000pt;}
.fs12{font-size:74.240000pt;}
.fs13{font-size:80.640000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.320000pt;}
.y142{bottom:6.453333pt;}
.yc5{bottom:11.403342pt;}
.yb7{bottom:12.315518pt;}
.yc4{bottom:14.368211pt;}
.yb6{bottom:15.280387pt;}
.yb1{bottom:16.986418pt;}
.yc3{bottom:28.626949pt;}
.yb5{bottom:29.648597pt;}
.yb0{bottom:30.560864pt;}
.yae{bottom:43.332698pt;}
.yb3{bottom:44.929166pt;}
.ybf{bottom:45.157233pt;}
.y141{bottom:46.666667pt;}
.yca{bottom:51.064164pt;}
.yc9{bottom:52.888699pt;}
.y140{bottom:53.120000pt;}
.ybe{bottom:67.617255pt;}
.yc0{bottom:67.735850pt;}
.y2{bottom:69.760000pt;}
.yb4{bottom:78.454991pt;}
.yad{bottom:79.823392pt;}
.y3{bottom:84.000000pt;}
.yaf{bottom:86.099791pt;}
.y1{bottom:88.320000pt;}
.ybd{bottom:90.086399pt;}
.y15c{bottom:102.720000pt;}
.ye2{bottom:107.840000pt;}
.yb2{bottom:110.274784pt;}
.ybc{bottom:112.436949pt;}
.y161{bottom:113.600000pt;}
.yac{bottom:116.314085pt;}
.y4f{bottom:120.320000pt;}
.y115{bottom:123.520000pt;}
.y67{bottom:124.160000pt;}
.yc1{bottom:124.186952pt;}
.yc8{bottom:124.296424pt;}
.yfa{bottom:124.480000pt;}
.y79{bottom:127.040000pt;}
.y102{bottom:127.680000pt;}
.y3a{bottom:128.320000pt;}
.y13b{bottom:128.960000pt;}
.y103{bottom:130.560000pt;}
.y74{bottom:131.200000pt;}
.yc2{bottom:131.594563pt;}
.y11a{bottom:132.160000pt;}
.ybb{bottom:134.906093pt;}
.yc7{bottom:136.958695pt;}
.yb9{bottom:138.099029pt;}
.y122{bottom:139.200000pt;}
.y15b{bottom:139.520000pt;}
.ye1{bottom:144.640000pt;}
.yc6{bottom:149.611843pt;}
.yb8{bottom:150.752177pt;}
.y160{bottom:151.680000pt;}
.yab{bottom:152.804778pt;}
.yba{bottom:157.366115pt;}
.y4e{bottom:157.760000pt;}
.y114{bottom:160.320000pt;}
.y66{bottom:160.960000pt;}
.yf9{bottom:161.280000pt;}
.ycf{bottom:162.880000pt;}
.y78{bottom:163.840000pt;}
.y39{bottom:165.120000pt;}
.y13a{bottom:167.040000pt;}
.y73{bottom:168.000000pt;}
.y119{bottom:168.960000pt;}
.ya6{bottom:172.199582pt;}
.ya5{bottom:175.654794pt;}
.y121{bottom:176.000000pt;}
.ye0{bottom:181.440000pt;}
.y15f{bottom:189.760000pt;}
.y98{bottom:190.326334pt;}
.y15a{bottom:194.560000pt;}
.y4d{bottom:194.880000pt;}
.y113{bottom:197.120000pt;}
.y65{bottom:197.760000pt;}
.yf8{bottom:198.080000pt;}
.yce{bottom:199.680000pt;}
.y77{bottom:200.640000pt;}
.y124{bottom:201.280000pt;}
.y38{bottom:201.920000pt;}
.y139{bottom:203.840000pt;}
.y72{bottom:204.800000pt;}
.y118{bottom:205.760000pt;}
.ya1{bottom:206.965999pt;}
.y21{bottom:210.240000pt;}
.y120{bottom:212.800000pt;}
.yaa{bottom:214.360017pt;}
.ydf{bottom:218.240000pt;}
.y159{bottom:222.080000pt;}
.y15e{bottom:223.040000pt;}
.ya2{bottom:229.435234pt;}
.y4c{bottom:231.680000pt;}
.y112{bottom:233.920000pt;}
.y64{bottom:234.560000pt;}
.yf7{bottom:234.880000pt;}
.ycd{bottom:236.480000pt;}
.y20{bottom:237.440000pt;}
.y123{bottom:238.400000pt;}
.y37{bottom:238.720000pt;}
.y138{bottom:240.640000pt;}
.y71{bottom:241.600000pt;}
.y117{bottom:242.560000pt;}
.ya0{bottom:249.386521pt;}
.y11f{bottom:249.600000pt;}
.y158{bottom:249.920000pt;}
.yde{bottom:255.360000pt;}
.y1f{bottom:265.280000pt;}
.y4b{bottom:268.480000pt;}
.y9e{bottom:269.465434pt;}
.y9a{bottom:269.812095pt;}
.y9c{bottom:270.268229pt;}
.y111{bottom:270.720000pt;}
.y63{bottom:271.360000pt;}
.yf6{bottom:271.680000pt;}
.ycc{bottom:273.280000pt;}
.y76{bottom:274.240000pt;}
.ya4{bottom:274.710971pt;}
.y36{bottom:275.520000pt;}
.y116{bottom:275.840000pt;}
.y137{bottom:277.440000pt;}
.y70{bottom:278.400000pt;}
.y9d{bottom:282.118673pt;}
.y99{bottom:282.465243pt;}
.y9b{bottom:282.921377pt;}
.y11e{bottom:286.400000pt;}
.ya3{bottom:287.364210pt;}
.y9f{bottom:291.806952pt;}
.y1e{bottom:292.800000pt;}
.ydd{bottom:293.120000pt;}
.y157{bottom:304.960000pt;}
.y4a{bottom:305.280000pt;}
.y93{bottom:305.381399pt;}
.ycb{bottom:306.560000pt;}
.y75{bottom:307.520000pt;}
.y7a{bottom:307.693333pt;}
.y62{bottom:308.160000pt;}
.yf5{bottom:308.480000pt;}
.y101{bottom:308.800000pt;}
.y35{bottom:312.320000pt;}
.y136{bottom:314.240000pt;}
.y6f{bottom:315.200000pt;}
.y1d{bottom:320.320000pt;}
.y11d{bottom:323.200000pt;}
.y91{bottom:324.767079pt;}
.ya9{bottom:328.393433pt;}
.ydc{bottom:331.840000pt;}
.y156{bottom:337.920000pt;}
.y49{bottom:342.080000pt;}
.y110{bottom:344.320000pt;}
.y61{bottom:344.960000pt;}
.yf4{bottom:345.280000pt;}
.y92{bottom:346.661495pt;}
.y1c{bottom:347.840000pt;}
.y34{bottom:349.120000pt;}
.y135{bottom:351.040000pt;}
.y6e{bottom:352.000000pt;}
.y11c{bottom:360.000000pt;}
.y90{bottom:362.963804pt;}
.y155{bottom:365.760000pt;}
.ydb{bottom:370.880000pt;}
.y48{bottom:378.880000pt;}
.y168{bottom:380.480000pt;}
.y1b{bottom:381.120000pt;}
.y60{bottom:381.760000pt;}
.yf3{bottom:382.080000pt;}
.y33{bottom:385.920000pt;}
.y134{bottom:387.840000pt;}
.y96{bottom:387.950715pt;}
.y6d{bottom:388.800000pt;}
.y11b{bottom:393.280000pt;}
.y94{bottom:399.801068pt;}
.y97{bottom:400.485268pt;}
.y95{bottom:400.603863pt;}
.y8f{bottom:401.169469pt;}
.yda{bottom:408.320000pt;}
.y1a{bottom:408.640000pt;}
.y47{bottom:415.680000pt;}
.y167{bottom:417.280000pt;}
.y10f{bottom:417.920000pt;}
.y5f{bottom:418.560000pt;}
.y8d{bottom:418.780881pt;}
.yf2{bottom:418.880000pt;}
.y154{bottom:420.800000pt;}
.y32{bottom:422.720000pt;}
.y133{bottom:424.640000pt;}
.y6c{bottom:425.600000pt;}
.y8e{bottom:428.072323pt;}
.y19{bottom:430.720000pt;}
.y83{bottom:433.098916pt;}
.y153{bottom:442.880000pt;}
.yd9{bottom:445.760000pt;}
.y46{bottom:452.480000pt;}
.y166{bottom:454.080000pt;}
.y10e{bottom:454.720000pt;}
.y5e{bottom:455.360000pt;}
.yf1{bottom:455.680000pt;}
.y85{bottom:456.252170pt;}
.y31{bottom:459.520000pt;}
.y132{bottom:461.440000pt;}
.y6b{bottom:462.400000pt;}
.y18{bottom:463.680000pt;}
.y8a{bottom:475.519256pt;}
.y152{bottom:476.160000pt;}
.y86{bottom:481.448994pt;}
.yd8{bottom:482.880000pt;}
.y17{bottom:486.080000pt;}
.y45{bottom:489.280000pt;}
.y165{bottom:490.880000pt;}
.y10d{bottom:491.520000pt;}
.y5d{bottom:492.160000pt;}
.yf0{bottom:492.480000pt;}
.y30{bottom:496.320000pt;}
.y8b{bottom:498.216468pt;}
.y131{bottom:498.240000pt;}
.y6a{bottom:499.200000pt;}
.y8c{bottom:503.909107pt;}
.y87{bottom:506.645818pt;}
.y16{bottom:519.040000pt;}
.yd7{bottom:519.680000pt;}
.y44{bottom:526.080000pt;}
.y164{bottom:527.680000pt;}
.y10c{bottom:528.320000pt;}
.y5c{bottom:528.960000pt;}
.yef{bottom:529.280000pt;}
.y151{bottom:531.200000pt;}
.y88{bottom:531.851764pt;}
.y2f{bottom:533.120000pt;}
.y130{bottom:535.040000pt;}
.y69{bottom:536.000000pt;}
.y15{bottom:541.120000pt;}
.y150{bottom:553.280000pt;}
.y84{bottom:555.342648pt;}
.yd6{bottom:556.480000pt;}
.y89{bottom:557.057711pt;}
.ya8{bottom:558.284801pt;}
.y16d{bottom:560.960000pt;}
.y43{bottom:563.840000pt;}
.y163{bottom:564.480000pt;}
.y10b{bottom:565.120000pt;}
.y5b{bottom:565.760000pt;}
.yee{bottom:566.080000pt;}
.y68{bottom:569.280000pt;}
.y2e{bottom:569.920000pt;}
.y12f{bottom:571.840000pt;}
.y14{bottom:574.080000pt;}
.y14f{bottom:586.560000pt;}
.yd5{bottom:593.280000pt;}
.y13{bottom:596.480000pt;}
.y162{bottom:597.760000pt;}
.y42{bottom:601.920000pt;}
.y5a{bottom:602.560000pt;}
.yed{bottom:602.880000pt;}
.y2d{bottom:606.720000pt;}
.y12e{bottom:608.640000pt;}
.y7d{bottom:614.412049pt;}
.y7f{bottom:619.657586pt;}
.y12{bottom:629.440000pt;}
.yd4{bottom:630.080000pt;}
.y16c{bottom:634.560000pt;}
.y41{bottom:638.720000pt;}
.y59{bottom:639.360000pt;}
.yec{bottom:639.680000pt;}
.y14e{bottom:641.600000pt;}
.y80{bottom:642.354797pt;}
.y2c{bottom:643.520000pt;}
.y12d{bottom:645.440000pt;}
.y81{bottom:648.047346pt;}
.y11{bottom:651.520000pt;}
.y14d{bottom:663.680000pt;}
.yd3{bottom:667.520000pt;}
.y7e{bottom:667.551621pt;}
.y16b{bottom:671.360000pt;}
.y40{bottom:675.520000pt;}
.y58{bottom:676.160000pt;}
.yeb{bottom:676.480000pt;}
.y2b{bottom:680.320000pt;}
.y12c{bottom:682.240000pt;}
.y82{bottom:682.266493pt;}
.y7c{bottom:682.950694pt;}
.y7b{bottom:683.060166pt;}
.y10{bottom:684.480000pt;}
.ya7{bottom:686.002228pt;}
.y14c{bottom:696.960000pt;}
.yf{bottom:706.560000pt;}
.yd2{bottom:707.840000pt;}
.y16a{bottom:708.160000pt;}
.y3f{bottom:712.320000pt;}
.y57{bottom:712.960000pt;}
.yea{bottom:713.280000pt;}
.y2a{bottom:717.120000pt;}
.y12b{bottom:719.040000pt;}
.y169{bottom:728.960000pt;}
.ye{bottom:739.840000pt;}
.yd1{bottom:748.480000pt;}
.y10a{bottom:749.120000pt;}
.y56{bottom:749.760000pt;}
.ye9{bottom:750.080000pt;}
.y3e{bottom:750.400000pt;}
.y15d{bottom:751.680000pt;}
.y14b{bottom:752.000000pt;}
.y29{bottom:753.920000pt;}
.y12a{bottom:755.840000pt;}
.yd{bottom:761.920000pt;}
.y14a{bottom:783.360000pt;}
.y109{bottom:785.920000pt;}
.y55{bottom:786.560000pt;}
.ye8{bottom:786.880000pt;}
.yd0{bottom:787.200000pt;}
.y3d{bottom:788.480000pt;}
.y28{bottom:790.720000pt;}
.y129{bottom:792.640000pt;}
.yc{bottom:794.880000pt;}
.y149{bottom:820.160000pt;}
.y108{bottom:822.720000pt;}
.y54{bottom:823.040000pt;}
.ye7{bottom:823.680000pt;}
.y3c{bottom:825.280000pt;}
.yb{bottom:826.240000pt;}
.y100{bottom:826.880000pt;}
.y27{bottom:827.520000pt;}
.y128{bottom:829.440000pt;}
.y148{bottom:856.960000pt;}
.y107{bottom:859.520000pt;}
.y53{bottom:859.840000pt;}
.ye6{bottom:860.480000pt;}
.y3b{bottom:862.080000pt;}
.ya{bottom:863.040000pt;}
.yff{bottom:863.680000pt;}
.y26{bottom:864.320000pt;}
.y127{bottom:866.240000pt;}
.y147{bottom:893.760000pt;}
.y106{bottom:896.320000pt;}
.y52{bottom:896.640000pt;}
.ye5{bottom:897.280000pt;}
.y13f{bottom:898.880000pt;}
.y9{bottom:899.840000pt;}
.yfe{bottom:900.480000pt;}
.y25{bottom:901.120000pt;}
.y146{bottom:912.640000pt;}
.y105{bottom:933.440000pt;}
.y51{bottom:934.080000pt;}
.y13e{bottom:935.360000pt;}
.y8{bottom:936.640000pt;}
.yfd{bottom:937.280000pt;}
.y24{bottom:937.920000pt;}
.y126{bottom:944.320000pt;}
.y7{bottom:955.520000pt;}
.y145{bottom:963.520000pt;}
.ye4{bottom:970.880000pt;}
.y50{bottom:971.520000pt;}
.y13d{bottom:972.160000pt;}
.yfc{bottom:974.080000pt;}
.y23{bottom:974.720000pt;}
.y6{bottom:978.240000pt;}
.y125{bottom:981.120000pt;}
.y144{bottom:987.840000pt;}
.y5{bottom:1006.400000pt;}
.ye3{bottom:1008.000000pt;}
.y143{bottom:1009.280000pt;}
.y104{bottom:1009.920000pt;}
.y13c{bottom:1010.240000pt;}
.yfb{bottom:1011.200000pt;}
.y22{bottom:1011.520000pt;}
.h3{height:20.000000pt;}
.h19{height:25.333333pt;}
.h1d{height:29.328750pt;}
.h17{height:31.860013pt;}
.h16{height:31.860758pt;}
.h12{height:33.004478pt;}
.h5{height:34.271250pt;}
.hf{height:35.659541pt;}
.hc{height:36.761554pt;}
.h11{height:37.130038pt;}
.h9{height:39.213241pt;}
.hd{height:42.481011pt;}
.h6{height:43.375000pt;}
.h1b{height:44.468750pt;}
.h15{height:45.747712pt;}
.h14{height:45.748781pt;}
.he{height:50.715792pt;}
.h1c{height:51.088750pt;}
.h13{height:51.238635pt;}
.h1a{height:51.547500pt;}
.hb{height:52.283099pt;}
.ha{height:52.284322pt;}
.h10{height:52.807165pt;}
.h1e{height:53.746875pt;}
.h2{height:56.031250pt;}
.h7{height:57.031250pt;}
.h18{height:57.159375pt;}
.h4{height:58.122500pt;}
.h8{height:718.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:9.333333pt;}
.w3{width:17.333333pt;}
.w5{width:184.266667pt;}
.w6{width:305.600000pt;}
.w4{width:553.733333pt;}
.w7{width:793.280000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x5a{left:-2.293333pt;}
.x0{left:0.000000pt;}
.x3{left:0.960000pt;}
.x43{left:34.209225pt;}
.x12{left:35.805656pt;}
.x10{left:37.055433pt;}
.x13{left:39.226578pt;}
.x18{left:40.138824pt;}
.x11{left:41.963316pt;}
.x41{left:42.875562pt;}
.x22{left:46.752608pt;}
.x36{left:47.664854pt;}
.x42{left:49.261284pt;}
.x35{left:51.888552pt;}
.x21{left:52.910268pt;}
.x37{left:60.892420pt;}
.x3b{left:63.857220pt;}
.x3f{left:64.769466pt;}
.x19{left:84.036102pt;}
.x24{left:89.746761pt;}
.x61{left:96.000000pt;}
.x38{left:102.965206pt;}
.x25{left:107.416966pt;}
.x14{left:109.578990pt;}
.x1{left:120.000000pt;}
.x5f{left:121.280000pt;}
.x64{left:126.932608pt;}
.x65{left:128.946944pt;}
.x7{left:135.034496pt;}
.x23{left:147.555791pt;}
.x6{left:148.999328pt;}
.x8{left:151.013696pt;}
.x44{left:165.919302pt;}
.xa{left:168.000000pt;}
.x4{left:171.100896pt;}
.xb{left:174.400000pt;}
.x32{left:175.835417pt;}
.x40{left:179.712462pt;}
.x3c{left:180.679443pt;}
.x63{left:181.586272pt;}
.x1a{left:198.979098pt;}
.x5{left:203.652992pt;}
.x2c{left:204.689757pt;}
.x1b{left:207.764026pt;}
.xe{left:208.676273pt;}
.x34{left:209.588519pt;}
.x45{left:210.728826pt;}
.x46{left:214.149748pt;}
.x55{left:221.675778pt;}
.x33{left:224.412516pt;}
.x9{left:229.741536pt;}
.x47{left:237.749553pt;}
.x4c{left:253.722980pt;}
.x49{left:255.319410pt;}
.x2b{left:262.498786pt;}
.x39{left:270.024816pt;}
.x1e{left:272.816289pt;}
.x4a{left:275.160761pt;}
.x4b{left:280.059522pt;}
.x30{left:291.690658pt;}
.x2a{left:293.287089pt;}
.x3d{left:295.567704pt;}
.x1f{left:298.898497pt;}
.x3a{left:300.694527pt;}
.x20{left:307.360764pt;}
.x16{left:314.834340pt;}
.x17{left:316.439892pt;}
.xf{left:317.689670pt;}
.x29{left:320.544999pt;}
.x48{left:321.676185pt;}
.x31{left:340.267758pt;}
.x62{left:352.933440pt;}
.x4f{left:355.547878pt;}
.x4e{left:363.986154pt;}
.x4d{left:369.806283pt;}
.x28{left:378.354028pt;}
.xd{left:388.000000pt;}
.x2{left:392.000000pt;}
.x5e{left:396.866560pt;}
.x56{left:398.706237pt;}
.x2d{left:407.545901pt;}
.x3e{left:411.477681pt;}
.x54{left:429.439804pt;}
.x1c{left:430.689582pt;}
.x27{left:436.400241pt;}
.x51{left:439.136979pt;}
.x2e{left:456.123000pt;}
.x52{left:458.978330pt;}
.x53{left:463.877091pt;}
.x2f{left:466.495237pt;}
.x5c{left:483.520000pt;}
.x5d{left:488.000000pt;}
.x50{left:491.472532pt;}
.x26{left:494.209271pt;}
.x15{left:499.226624pt;}
.x1d{left:500.366931pt;}
.x68{left:602.533120pt;}
.x58{left:605.440000pt;}
.x59{left:609.333333pt;}
.x5b{left:613.221120pt;}
.x57{left:621.440000pt;}
.x66{left:638.000000pt;}
.xc{left:673.666560pt;}
.x60{left:686.400000pt;}
.x67{left:697.280000pt;}
}




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