
    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_ef15d65f8c830e6f66ab87a3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_da158293591bbbe715927d43.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_87e5ff7ae1ddbd687220a577.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_027b981d95df28798b629b48.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_0f990bb9eb4a6f28086f0e3c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f2aac4bf01ba122dbd6e6632.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a3406f0d9ff4cae8a238e35.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_3fab19b38c973f4c7fa592b1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_51cfbb7699af243c336601f6.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cca1620060b9c1cff541c376.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_49311b4fdce9c4612d7fadeb.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_61323185f37457bf4dced8c4.woff')format("woff");}.ffc{font-family:ffc;line-height:1.364746;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_071cf1d9713228802a3b7e8e.woff')format("woff");}.ffd{font-family:ffd;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;}
.m31{transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189189,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194030,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199275,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206081,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207143,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.213983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213983,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220588,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221429,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222561,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228155,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228261,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230932,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233696,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235714,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239286,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239437,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239726,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239865,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240260,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242958,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246324,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246429,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246479,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246622,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246667,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248016,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m1c{transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253378,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253425,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256757,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256849,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260563,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260870,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261029,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261194,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263889,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264706,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266892,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.267699,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267699,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267699,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268116,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269663,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270548,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270588,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271127,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280899,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287671,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.383803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383803,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.522059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522059,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.544118,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.592391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592391,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630435,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.649457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.649457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.649457,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706522,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.916667,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls34{letter-spacing:-13.647450px;}
.ls27{letter-spacing:-10.500900px;}
.ls3b{letter-spacing:-5.388150px;}
.ls1f{letter-spacing:-5.168850px;}
.ls3f{letter-spacing:-5.037450px;}
.ls14{letter-spacing:-5.028600px;}
.ls21{letter-spacing:-4.973400px;}
.ls13{letter-spacing:-3.949950px;}
.ls15{letter-spacing:-3.748800px;}
.ls3c{letter-spacing:-3.599700px;}
.ls1b{letter-spacing:-3.539400px;}
.ls1d{letter-spacing:-2.919300px;}
.ls33{letter-spacing:-2.875500px;}
.ls37{letter-spacing:-2.278125px;}
.lsd{letter-spacing:-2.252475px;}
.ls31{letter-spacing:-2.156625px;}
.ls3a{letter-spacing:-2.109000px;}
.ls20{letter-spacing:-2.095875px;}
.ls38{letter-spacing:-2.080500px;}
.ls40{letter-spacing:-1.954575px;}
.ls3e{letter-spacing:-1.668000px;}
.ls1c{letter-spacing:-1.565100px;}
.ls2c{letter-spacing:-1.564500px;}
.ls32{letter-spacing:-1.519800px;}
.lse{letter-spacing:-1.501650px;}
.ls26{letter-spacing:-1.501500px;}
.ls17{letter-spacing:-1.497450px;}
.ls22{letter-spacing:-1.481850px;}
.ls2a{letter-spacing:-1.438650px;}
.ls30{letter-spacing:-1.437750px;}
.ls25{letter-spacing:-0.761475px;}
.ls1a{letter-spacing:-0.761400px;}
.ls39{letter-spacing:-0.760350px;}
.ls10{letter-spacing:-0.759900px;}
.lsa{letter-spacing:-0.750825px;}
.ls2b{letter-spacing:-0.739125px;}
.ls16{letter-spacing:-0.718875px;}
.lsb{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.718875px;}
.ls5{letter-spacing:0.749250px;}
.ls0{letter-spacing:0.750825px;}
.ls35{letter-spacing:0.759375px;}
.lsf{letter-spacing:0.772125px;}
.ls1e{letter-spacing:0.779625px;}
.ls12{letter-spacing:1.437750px;}
.ls11{letter-spacing:1.438200px;}
.lsc{letter-spacing:1.461825px;}
.ls1{letter-spacing:1.501650px;}
.ls19{letter-spacing:1.522800px;}
.ls28{letter-spacing:1.522950px;}
.ls18{letter-spacing:1.645650px;}
.ls2e{letter-spacing:2.156625px;}
.ls3{letter-spacing:2.252475px;}
.ls23{letter-spacing:2.714250px;}
.ls2f{letter-spacing:2.875500px;}
.ls6{letter-spacing:2.997975px;}
.ls3d{letter-spacing:3.370200px;}
.ls8{letter-spacing:3.748800px;}
.ls36{letter-spacing:3.962700px;}
.ls2{letter-spacing:4.499625px;}
.ls7{letter-spacing:5.250450px;}
.ls24{letter-spacing:6.763650px;}
.ls4{letter-spacing:14.249700px;}
.ls29{letter-spacing:16.149150px;}
.ls9{letter-spacing:24.192000px;}
.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:0.000000px;}
._b{margin-left:-59.375700px;}
._19{margin-left:-13.717500px;}
._14{margin-left:-12.574500px;}
._8{margin-left:-11.137500px;}
._17{margin-left:-6.740850px;}
._16{margin-left:-3.741600px;}
._7{margin-left:-2.722800px;}
._12{margin-left:-1.627350px;}
._3{width:2.012625px;}
._a{width:3.361125px;}
._c{width:4.458600px;}
._f{width:6.106275px;}
._10{width:7.290300px;}
._4{width:8.908725px;}
._5{width:10.064625px;}
._11{width:11.102250px;}
._2{width:12.811950px;}
._d{width:14.389275px;}
._0{width:15.818100px;}
._1{width:17.148600px;}
._9{width:18.381900px;}
._6{width:19.633275px;}
._e{width:21.678075px;}
._15{width:23.169075px;}
._13{width:24.528150px;}
._1a{width:28.382250px;}
._18{width:33.029700px;}
._1b{width:39.280800px;}
.fc0{color:transparent;}
.fs9{font-size:25.500000px;}
.fs6{font-size:34.500000px;}
.fsb{font-size:50.250000px;}
.fs7{font-size:51.000000px;}
.fsa{font-size:51.750000px;}
.fs5{font-size:52.500000px;}
.fs1{font-size:53.250000px;}
.fsd{font-size:54.000000px;}
.fs2{font-size:54.750000px;}
.fs4{font-size:55.500000px;}
.fs13{font-size:56.250000px;}
.fs10{font-size:57.750000px;}
.fs15{font-size:60.000000px;}
.fs14{font-size:61.500000px;}
.fs12{font-size:63.750000px;}
.fsf{font-size:66.750000px;}
.fsc{font-size:69.000000px;}
.fs8{font-size:77.250000px;}
.fs3{font-size:84.750000px;}
.fse{font-size:87.750000px;}
.fs11{font-size:88.500000px;}
.fs0{font-size:94.500000px;}
.y0{bottom:0.000000px;}
.y3c{bottom:30.549900px;}
.y86{bottom:37.388850px;}
.y3b{bottom:48.909750px;}
.y3a{bottom:48.916088px;}
.y84{bottom:56.464013px;}
.y85{bottom:56.468850px;}
.y39{bottom:61.869150px;}
.y38{bottom:74.836875px;}
.y83{bottom:78.070200px;}
.y37{bottom:87.430500px;}
.y82{bottom:91.029600px;}
.y36{bottom:100.391063px;}
.y81{bottom:103.629900px;}
.y80{bottom:103.636238px;}
.y35{bottom:113.344125px;}
.y7f{bottom:116.589300px;}
.y34{bottom:126.310200px;}
.y7e{bottom:129.556013px;}
.y33{bottom:138.544388px;}
.y7d{bottom:142.149638px;}
.y32{bottom:151.870200px;}
.y31{bottom:151.876688px;}
.y7c{bottom:159.788700px;}
.y30{bottom:164.830012px;}
.y2f{bottom:177.436950px;}
.y2e{bottom:190.390013px;}
.y7a{bottom:197.944463px;}
.y7b{bottom:197.950200px;}
.y2d{bottom:203.356388px;}
.y79{bottom:211.989150px;}
.y2c{bottom:215.950013px;}
.y78{bottom:224.950200px;}
.y2b{bottom:232.870200px;}
.y77{bottom:237.543338px;}
.y2a{bottom:245.829750px;}
.y76{bottom:250.875675px;}
.y28{bottom:258.783975px;}
.y29{bottom:258.789150px;}
.y75{bottom:263.469300px;}
.y74{bottom:263.475787px;}
.y27{bottom:271.750350px;}
.y73{bottom:276.435375px;}
.y26{bottom:285.435300px;}
.y71{bottom:289.023825px;}
.y72{bottom:289.029000px;}
.y25{bottom:297.310050px;}
.y24{bottom:297.312900px;}
.y70{bottom:301.990200px;}
.y6f{bottom:301.995075px;}
.y6e{bottom:314.588700px;}
.y6d{bottom:314.597512px;}
.y23{bottom:316.749150px;}
.y6c{bottom:327.563887px;}
.y6b{bottom:340.889700px;}
.y6a{bottom:353.842762px;}
.y22{bottom:355.270050px;}
.y21{bottom:355.271213px;}
.y69{bottom:366.436387px;}
.y20{bottom:368.224275px;}
.y68{bottom:379.389450px;}
.y67{bottom:379.395787px;}
.y1f{bottom:381.203663px;}
.y66{bottom:392.348850px;}
.y1e{bottom:394.156725px;}
.yaf{bottom:404.230650px;}
.yae{bottom:404.259600px;}
.y1d{bottom:406.750350px;}
.y1c{bottom:406.763175px;}
.y64{bottom:411.423525px;}
.y65{bottom:411.428850px;}
.yad{bottom:417.212663px;}
.y1b{bottom:419.716237px;}
.y63{bottom:424.389900px;}
.yac{bottom:430.165725px;}
.y1a{bottom:432.669300px;}
.y62{bottom:437.349450px;}
.yab{bottom:443.132100px;}
.y19{bottom:445.630350px;}
.y18{bottom:445.650525px;}
.y60{bottom:450.303675px;}
.y61{bottom:450.308850px;}
.yaa{bottom:456.085162px;}
.y17{bottom:458.603588px;}
.y5f{bottom:463.270050px;}
.ya9{bottom:469.410975px;}
.y16{bottom:471.556650px;}
.y5e{bottom:476.229450px;}
.ya8{bottom:482.364038px;}
.y15{bottom:484.150275px;}
.y5d{bottom:489.189000px;}
.y5c{bottom:489.191887px;}
.ya7{bottom:495.317100px;}
.y14{bottom:497.116650px;}
.y5b{bottom:508.268700px;}
.ya6{bottom:508.283475px;}
.y13{bottom:510.429150px;}
.y5a{bottom:521.048700px;}
.ya5{bottom:521.236538px;}
.y12{bottom:523.395525px;}
.ya4{bottom:534.189600px;}
.y11{bottom:535.989150px;}
.ya2{bottom:547.150500px;}
.ya3{bottom:547.150650px;}
.y10{bottom:548.957400px;}
.y58{bottom:559.743788px;}
.y59{bottom:559.749150px;}
.ya1{bottom:560.111025px;}
.yf{bottom:561.923775px;}
.ya0{bottom:573.064088px;}
.y57{bottom:573.077100px;}
.ye{bottom:574.876837px;}
.y56{bottom:586.030162px;}
.y9f{bottom:586.392900px;}
.yd{bottom:587.470462px;}
.y55{bottom:598.996537px;}
.yc{bottom:600.436837px;}
.y9e{bottom:605.829150px;}
.y54{bottom:611.949600px;}
.yb{bottom:613.399762px;}
.y9d{bottom:618.790350px;}
.y53{bottom:624.943537px;}
.ya{bottom:626.352825px;}
.y9c{bottom:632.110650px;}
.y9b{bottom:632.117138px;}
.y52{bottom:637.909912px;}
.y9{bottom:645.070200px;}
.y51{bottom:650.862975px;}
.y8{bottom:658.390500px;}
.y50{bottom:663.816037px;}
.y99{bottom:671.349000px;}
.y9a{bottom:671.350050px;}
.y7{bottom:671.703975px;}
.y4f{bottom:676.422975px;}
.y6{bottom:684.670350px;}
.y4e{bottom:689.376037px;}
.y98{bottom:691.144688px;}
.y5{bottom:697.629750px;}
.y4d{bottom:702.342412px;}
.y97{bottom:704.470500px;}
.y4{bottom:710.587163px;}
.y4c{bottom:715.295475px;}
.y4b{bottom:727.889100px;}
.y3{bottom:728.585663px;}
.y4a{bottom:740.842162px;}
.y2{bottom:742.630350px;}
.y96{bottom:743.350500px;}
.y95{bottom:743.356800px;}
.y49{bottom:753.435787px;}
.y94{bottom:756.669300px;}
.y93{bottom:756.671625px;}
.y48{bottom:766.388850px;}
.y47{bottom:766.390200px;}
.y92{bottom:769.638000px;}
.y46{bottom:779.356575px;}
.y91{bottom:782.591063px;}
.y45{bottom:791.950200px;}
.y90{bottom:795.544125px;}
.y44{bottom:804.905963px;}
.y1{bottom:804.909750px;}
.y8f{bottom:808.510500px;}
.y8e{bottom:808.516650px;}
.y43{bottom:817.512900px;}
.y8d{bottom:821.831288px;}
.y8c{bottom:835.157100px;}
.y41{bottom:836.943825px;}
.y42{bottom:836.949150px;}
.y8b{bottom:847.750725px;}
.y40{bottom:849.910200px;}
.y8a{bottom:860.703788px;}
.y3f{bottom:863.053800px;}
.y89{bottom:874.029600px;}
.y3e{bottom:875.833800px;}
.y88{bottom:886.997138px;}
.y3d{bottom:895.270050px;}
.y87{bottom:899.950200px;}
.h10{height:25.026855px;}
.h26{height:25.699219px;}
.hb{height:35.982422px;}
.h1c{height:49.317627px;}
.hd{height:50.053711px;}
.h13{height:50.642578px;}
.h1e{height:50.789795px;}
.hc{height:51.398438px;}
.ha{height:51.525879px;}
.h4{height:52.261963px;}
.h11{height:52.263163px;}
.h5{height:52.270513px;}
.h1b{height:52.277113px;}
.he{height:52.282663px;}
.h8{height:52.283263px;}
.h23{height:52.283413px;}
.h22{height:52.409180px;}
.h21{height:52.910156px;}
.h1f{height:52.998047px;}
.h20{height:53.191406px;}
.h3{height:53.666016px;}
.h6{height:53.734131px;}
.h12{height:53.973633px;}
.h17{height:54.421875px;}
.h9{height:54.470215px;}
.h27{height:54.755859px;}
.h2b{height:54.849609px;}
.h2a{height:55.538086px;}
.h18{height:55.933594px;}
.h1d{height:56.678467px;}
.h2c{height:56.689453px;}
.h2e{height:58.886719px;}
.h2d{height:61.980469px;}
.h25{height:66.489258px;}
.h1a{height:69.618164px;}
.h14{height:71.964844px;}
.hf{height:75.816650px;}
.h7{height:88.391602px;}
.h19{height:91.520508px;}
.h24{height:92.302734px;}
.h2{height:98.560547px;}
.h1{height:960.000000px;}
.h0{height:960.026550px;}
.h15{height:965.786550px;}
.h16{height:966.000000px;}
.h28{height:971.906550px;}
.h29{height:972.000000px;}
.w0{width:649.281300px;}
.w1{width:649.500000px;}
.w3{width:656.250000px;}
.w2{width:656.481300px;}
.w4{width:662.241300px;}
.w5{width:662.250000px;}
.x0{left:0.000000px;}
.x3{left:54.277612px;}
.x2{left:55.341900px;}
.x8{left:56.417400px;}
.x9{left:57.472800px;}
.xe{left:58.573313px;}
.x1d{left:59.671912px;}
.x2b{left:60.740137px;}
.x3a{left:61.832062px;}
.x47{left:63.261900px;}
.x4d{left:64.700550px;}
.x6{left:79.461300px;}
.x7{left:81.990712px;}
.x15{left:83.062050px;}
.x1a{left:84.141450px;}
.x2c{left:85.168575px;}
.x3c{left:87.001312px;}
.x63{left:88.101450px;}
.x4e{left:89.541750px;}
.x5d{left:93.140850px;}
.x30{left:102.501150px;}
.x38{left:105.741150px;}
.x31{left:117.621150px;}
.x39{left:118.700550px;}
.x60{left:121.942050px;}
.x48{left:123.021450px;}
.x4{left:132.741150px;}
.x16{left:135.621750px;}
.x26{left:137.421300px;}
.x32{left:139.220850px;}
.x49{left:140.301900px;}
.x65{left:141.381300px;}
.x18{left:142.460700px;}
.x64{left:144.261900px;}
.x36{left:145.700550px;}
.x62{left:148.221900px;}
.x17{left:150.021450px;}
.x5{left:152.181900px;}
.x3f{left:155.421750px;}
.x19{left:156.501150px;}
.x28{left:158.300850px;}
.x37{left:159.741150px;}
.x27{left:161.540700px;}
.x34{left:163.341900px;}
.x4b{left:166.220850px;}
.x5e{left:170.180850px;}
.x40{left:176.660550px;}
.x35{left:179.541150px;}
.x4c{left:181.340700px;}
.x61{left:184.221300px;}
.x1{left:226.700550px;}
.x2d{left:238.941450px;}
.x13{left:246.500700px;}
.x4a{left:252.621150px;}
.xa{left:254.420700px;}
.x2e{left:257.660550px;}
.x5f{left:263.421750px;}
.x14{left:265.221300px;}
.x25{left:269.901600px;}
.xb{left:275.301900px;}
.x3b{left:278.901000px;}
.x45{left:288.261300px;}
.x22{left:301.220850px;}
.x50{left:304.821600px;}
.x46{left:310.581150px;}
.x23{left:320.300700px;}
.x51{left:323.540700px;}
.xf{left:324.621750px;}
.x3d{left:334.700550px;}
.x24{left:339.741600px;}
.x10{left:344.421750px;}
.x58{left:347.300700px;}
.x33{left:351.260850px;}
.x3e{left:357.381300px;}
.x11{left:369.981450px;}
.x1e{left:377.540700px;}
.xc{left:381.500700px;}
.x12{left:385.821600px;}
.xd{left:392.660550px;}
.x59{left:394.100850px;}
.x1f{left:397.701600px;}
.x2f{left:411.381300px;}
.x20{left:423.620550px;}
.x43{left:434.421300px;}
.x21{left:439.821600px;}
.x54{left:453.501150px;}
.x44{left:457.461300px;}
.x4f{left:460.341900px;}
.x55{left:463.941000px;}
.x52{left:474.021450px;}
.x41{left:480.501150px;}
.x1b{left:487.341900px;}
.x53{left:493.460700px;}
.x5a{left:499.942050px;}
.x42{left:502.100850px;}
.x29{left:503.541150px;}
.x1c{left:504.981450px;}
.x5b{left:519.381300px;}
.x2a{left:520.460700px;}
.x5c{left:544.220850px;}
.x56{left:560.060850px;}
.x57{left:581.301300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls34{letter-spacing:-12.131067pt;}
.ls27{letter-spacing:-9.334133pt;}
.ls3b{letter-spacing:-4.789467pt;}
.ls1f{letter-spacing:-4.594533pt;}
.ls3f{letter-spacing:-4.477733pt;}
.ls14{letter-spacing:-4.469867pt;}
.ls21{letter-spacing:-4.420800pt;}
.ls13{letter-spacing:-3.511067pt;}
.ls15{letter-spacing:-3.332267pt;}
.ls3c{letter-spacing:-3.199733pt;}
.ls1b{letter-spacing:-3.146133pt;}
.ls1d{letter-spacing:-2.594933pt;}
.ls33{letter-spacing:-2.556000pt;}
.ls37{letter-spacing:-2.025000pt;}
.lsd{letter-spacing:-2.002200pt;}
.ls31{letter-spacing:-1.917000pt;}
.ls3a{letter-spacing:-1.874667pt;}
.ls20{letter-spacing:-1.863000pt;}
.ls38{letter-spacing:-1.849333pt;}
.ls40{letter-spacing:-1.737400pt;}
.ls3e{letter-spacing:-1.482667pt;}
.ls1c{letter-spacing:-1.391200pt;}
.ls2c{letter-spacing:-1.390667pt;}
.ls32{letter-spacing:-1.350933pt;}
.lse{letter-spacing:-1.334800pt;}
.ls26{letter-spacing:-1.334667pt;}
.ls17{letter-spacing:-1.331067pt;}
.ls22{letter-spacing:-1.317200pt;}
.ls2a{letter-spacing:-1.278800pt;}
.ls30{letter-spacing:-1.278000pt;}
.ls25{letter-spacing:-0.676867pt;}
.ls1a{letter-spacing:-0.676800pt;}
.ls39{letter-spacing:-0.675867pt;}
.ls10{letter-spacing:-0.675467pt;}
.lsa{letter-spacing:-0.667400pt;}
.ls2b{letter-spacing:-0.657000pt;}
.ls16{letter-spacing:-0.639000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.639000pt;}
.ls5{letter-spacing:0.666000pt;}
.ls0{letter-spacing:0.667400pt;}
.ls35{letter-spacing:0.675000pt;}
.lsf{letter-spacing:0.686333pt;}
.ls1e{letter-spacing:0.693000pt;}
.ls12{letter-spacing:1.278000pt;}
.ls11{letter-spacing:1.278400pt;}
.lsc{letter-spacing:1.299400pt;}
.ls1{letter-spacing:1.334800pt;}
.ls19{letter-spacing:1.353600pt;}
.ls28{letter-spacing:1.353733pt;}
.ls18{letter-spacing:1.462800pt;}
.ls2e{letter-spacing:1.917000pt;}
.ls3{letter-spacing:2.002200pt;}
.ls23{letter-spacing:2.412667pt;}
.ls2f{letter-spacing:2.556000pt;}
.ls6{letter-spacing:2.664867pt;}
.ls3d{letter-spacing:2.995733pt;}
.ls8{letter-spacing:3.332267pt;}
.ls36{letter-spacing:3.522400pt;}
.ls2{letter-spacing:3.999667pt;}
.ls7{letter-spacing:4.667067pt;}
.ls24{letter-spacing:6.012133pt;}
.ls4{letter-spacing:12.666400pt;}
.ls29{letter-spacing:14.354800pt;}
.ls9{letter-spacing:21.504000pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-52.778400pt;}
._19{margin-left:-12.193333pt;}
._14{margin-left:-11.177333pt;}
._8{margin-left:-9.900000pt;}
._17{margin-left:-5.991867pt;}
._16{margin-left:-3.325867pt;}
._7{margin-left:-2.420267pt;}
._12{margin-left:-1.446533pt;}
._3{width:1.789000pt;}
._a{width:2.987667pt;}
._c{width:3.963200pt;}
._f{width:5.427800pt;}
._10{width:6.480267pt;}
._4{width:7.918867pt;}
._5{width:8.946333pt;}
._11{width:9.868667pt;}
._2{width:11.388400pt;}
._d{width:12.790467pt;}
._0{width:14.060533pt;}
._1{width:15.243200pt;}
._9{width:16.339467pt;}
._6{width:17.451800pt;}
._e{width:19.269400pt;}
._15{width:20.594733pt;}
._13{width:21.802800pt;}
._1a{width:25.228667pt;}
._18{width:29.359733pt;}
._1b{width:34.916267pt;}
.fs9{font-size:22.666667pt;}
.fs6{font-size:30.666667pt;}
.fsb{font-size:44.666667pt;}
.fs7{font-size:45.333333pt;}
.fsa{font-size:46.000000pt;}
.fs5{font-size:46.666667pt;}
.fs1{font-size:47.333333pt;}
.fsd{font-size:48.000000pt;}
.fs2{font-size:48.666667pt;}
.fs4{font-size:49.333333pt;}
.fs13{font-size:50.000000pt;}
.fs10{font-size:51.333333pt;}
.fs15{font-size:53.333333pt;}
.fs14{font-size:54.666667pt;}
.fs12{font-size:56.666667pt;}
.fsf{font-size:59.333333pt;}
.fsc{font-size:61.333333pt;}
.fs8{font-size:68.666667pt;}
.fs3{font-size:75.333333pt;}
.fse{font-size:78.000000pt;}
.fs11{font-size:78.666667pt;}
.fs0{font-size:84.000000pt;}
.y0{bottom:0.000000pt;}
.y3c{bottom:27.155467pt;}
.y86{bottom:33.234533pt;}
.y3b{bottom:43.475333pt;}
.y3a{bottom:43.480967pt;}
.y84{bottom:50.190233pt;}
.y85{bottom:50.194533pt;}
.y39{bottom:54.994800pt;}
.y38{bottom:66.521667pt;}
.y83{bottom:69.395733pt;}
.y37{bottom:77.716000pt;}
.y82{bottom:80.915200pt;}
.y36{bottom:89.236500pt;}
.y81{bottom:92.115467pt;}
.y80{bottom:92.121100pt;}
.y35{bottom:100.750333pt;}
.y7f{bottom:103.634933pt;}
.y34{bottom:112.275733pt;}
.y7e{bottom:115.160900pt;}
.y33{bottom:123.150567pt;}
.y7d{bottom:126.355233pt;}
.y32{bottom:134.995733pt;}
.y31{bottom:135.001500pt;}
.y7c{bottom:142.034400pt;}
.y30{bottom:146.515567pt;}
.y2f{bottom:157.721733pt;}
.y2e{bottom:169.235567pt;}
.y7a{bottom:175.950633pt;}
.y7b{bottom:175.955733pt;}
.y2d{bottom:180.761233pt;}
.y79{bottom:188.434800pt;}
.y2c{bottom:191.955567pt;}
.y78{bottom:199.955733pt;}
.y2b{bottom:206.995733pt;}
.y77{bottom:211.149633pt;}
.y2a{bottom:218.515333pt;}
.y76{bottom:223.000600pt;}
.y28{bottom:230.030200pt;}
.y29{bottom:230.034800pt;}
.y75{bottom:234.194933pt;}
.y74{bottom:234.200700pt;}
.y27{bottom:241.555867pt;}
.y73{bottom:245.720333pt;}
.y26{bottom:253.720267pt;}
.y71{bottom:256.910067pt;}
.y72{bottom:256.914667pt;}
.y25{bottom:264.275600pt;}
.y24{bottom:264.278133pt;}
.y70{bottom:268.435733pt;}
.y6f{bottom:268.440067pt;}
.y6e{bottom:279.634400pt;}
.y6d{bottom:279.642233pt;}
.y23{bottom:281.554800pt;}
.y6c{bottom:291.167900pt;}
.y6b{bottom:303.013067pt;}
.y6a{bottom:314.526900pt;}
.y22{bottom:315.795600pt;}
.y21{bottom:315.796633pt;}
.y69{bottom:325.721233pt;}
.y20{bottom:327.310467pt;}
.y68{bottom:337.235067pt;}
.y67{bottom:337.240700pt;}
.y1f{bottom:338.847700pt;}
.y66{bottom:348.754533pt;}
.y1e{bottom:350.361533pt;}
.yaf{bottom:359.316133pt;}
.yae{bottom:359.341867pt;}
.y1d{bottom:361.555867pt;}
.y1c{bottom:361.567267pt;}
.y64{bottom:365.709800pt;}
.y65{bottom:365.714533pt;}
.yad{bottom:370.855700pt;}
.y1b{bottom:373.081100pt;}
.y63{bottom:377.235467pt;}
.yac{bottom:382.369533pt;}
.y1a{bottom:384.594933pt;}
.y62{bottom:388.755067pt;}
.yab{bottom:393.895200pt;}
.y19{bottom:396.115867pt;}
.y18{bottom:396.133800pt;}
.y60{bottom:400.269933pt;}
.y61{bottom:400.274533pt;}
.yaa{bottom:405.409033pt;}
.y17{bottom:407.647633pt;}
.y5f{bottom:411.795600pt;}
.ya9{bottom:417.254200pt;}
.y16{bottom:419.161467pt;}
.y5e{bottom:423.315067pt;}
.ya8{bottom:428.768033pt;}
.y15{bottom:430.355800pt;}
.y5d{bottom:434.834667pt;}
.y5c{bottom:434.837233pt;}
.ya7{bottom:440.281867pt;}
.y14{bottom:441.881467pt;}
.y5b{bottom:451.794400pt;}
.ya6{bottom:451.807533pt;}
.y13{bottom:453.714800pt;}
.y5a{bottom:463.154400pt;}
.ya5{bottom:463.321367pt;}
.y12{bottom:465.240467pt;}
.ya4{bottom:474.835200pt;}
.y11{bottom:476.434800pt;}
.ya2{bottom:486.356000pt;}
.ya3{bottom:486.356133pt;}
.y10{bottom:487.962133pt;}
.y58{bottom:497.550033pt;}
.y59{bottom:497.554800pt;}
.ya1{bottom:497.876467pt;}
.yf{bottom:499.487800pt;}
.ya0{bottom:509.390300pt;}
.y57{bottom:509.401867pt;}
.ye{bottom:511.001633pt;}
.y56{bottom:520.915700pt;}
.y9f{bottom:521.238133pt;}
.yd{bottom:522.195967pt;}
.y55{bottom:532.441367pt;}
.yc{bottom:533.721633pt;}
.y9e{bottom:538.514800pt;}
.y54{bottom:543.955200pt;}
.yb{bottom:545.244233pt;}
.y9d{bottom:550.035867pt;}
.y53{bottom:555.505367pt;}
.ya{bottom:556.758067pt;}
.y9c{bottom:561.876133pt;}
.y9b{bottom:561.881900pt;}
.y52{bottom:567.031033pt;}
.y9{bottom:573.395733pt;}
.y51{bottom:578.544867pt;}
.y8{bottom:585.236000pt;}
.y50{bottom:590.058700pt;}
.y99{bottom:596.754667pt;}
.y9a{bottom:596.755600pt;}
.y7{bottom:597.070200pt;}
.y4f{bottom:601.264867pt;}
.y6{bottom:608.595867pt;}
.y4e{bottom:612.778700pt;}
.y98{bottom:614.350833pt;}
.y5{bottom:620.115333pt;}
.y4d{bottom:624.304367pt;}
.y97{bottom:626.196000pt;}
.y4{bottom:631.633033pt;}
.y4c{bottom:635.818200pt;}
.y4b{bottom:647.012533pt;}
.y3{bottom:647.631700pt;}
.y4a{bottom:658.526367pt;}
.y2{bottom:660.115867pt;}
.y96{bottom:660.756000pt;}
.y95{bottom:660.761600pt;}
.y49{bottom:669.720700pt;}
.y94{bottom:672.594933pt;}
.y93{bottom:672.597000pt;}
.y48{bottom:681.234533pt;}
.y47{bottom:681.235733pt;}
.y92{bottom:684.122667pt;}
.y46{bottom:692.761400pt;}
.y91{bottom:695.636500pt;}
.y45{bottom:703.955733pt;}
.y90{bottom:707.150333pt;}
.y44{bottom:715.471967pt;}
.y1{bottom:715.475333pt;}
.y8f{bottom:718.676000pt;}
.y8e{bottom:718.681467pt;}
.y43{bottom:726.678133pt;}
.y8d{bottom:730.516700pt;}
.y8c{bottom:742.361867pt;}
.y41{bottom:743.950067pt;}
.y42{bottom:743.954800pt;}
.y8b{bottom:753.556200pt;}
.y40{bottom:755.475733pt;}
.y8a{bottom:765.070033pt;}
.y3f{bottom:767.158933pt;}
.y89{bottom:776.915200pt;}
.y3e{bottom:778.518933pt;}
.y88{bottom:788.441900pt;}
.y3d{bottom:795.795600pt;}
.y87{bottom:799.955733pt;}
.h10{height:22.246094pt;}
.h26{height:22.843750pt;}
.hb{height:31.984375pt;}
.h1c{height:43.837891pt;}
.hd{height:44.492188pt;}
.h13{height:45.015625pt;}
.h1e{height:45.146484pt;}
.hc{height:45.687500pt;}
.ha{height:45.800781pt;}
.h4{height:46.455078pt;}
.h11{height:46.456145pt;}
.h5{height:46.462678pt;}
.h1b{height:46.468545pt;}
.he{height:46.473478pt;}
.h8{height:46.474011pt;}
.h23{height:46.474145pt;}
.h22{height:46.585938pt;}
.h21{height:47.031250pt;}
.h1f{height:47.109375pt;}
.h20{height:47.281250pt;}
.h3{height:47.703125pt;}
.h6{height:47.763672pt;}
.h12{height:47.976562pt;}
.h17{height:48.375000pt;}
.h9{height:48.417969pt;}
.h27{height:48.671875pt;}
.h2b{height:48.755208pt;}
.h2a{height:49.367188pt;}
.h18{height:49.718750pt;}
.h1d{height:50.380859pt;}
.h2c{height:50.390625pt;}
.h2e{height:52.343750pt;}
.h2d{height:55.093750pt;}
.h25{height:59.101562pt;}
.h1a{height:61.882812pt;}
.h14{height:63.968750pt;}
.hf{height:67.392578pt;}
.h7{height:78.570312pt;}
.h19{height:81.351562pt;}
.h24{height:82.046875pt;}
.h2{height:87.609375pt;}
.h1{height:853.333333pt;}
.h0{height:853.356933pt;}
.h15{height:858.476933pt;}
.h16{height:858.666667pt;}
.h28{height:863.916933pt;}
.h29{height:864.000000pt;}
.w0{width:577.138933pt;}
.w1{width:577.333333pt;}
.w3{width:583.333333pt;}
.w2{width:583.538933pt;}
.w4{width:588.658933pt;}
.w5{width:588.666667pt;}
.x0{left:0.000000pt;}
.x3{left:48.246767pt;}
.x2{left:49.192800pt;}
.x8{left:50.148800pt;}
.x9{left:51.086933pt;}
.xe{left:52.065167pt;}
.x1d{left:53.041700pt;}
.x2b{left:53.991233pt;}
.x3a{left:54.961833pt;}
.x47{left:56.232800pt;}
.x4d{left:57.511600pt;}
.x6{left:70.632267pt;}
.x7{left:72.880633pt;}
.x15{left:73.832933pt;}
.x1a{left:74.792400pt;}
.x2c{left:75.705400pt;}
.x3c{left:77.334500pt;}
.x63{left:78.312400pt;}
.x4e{left:79.592667pt;}
.x5d{left:82.791867pt;}
.x30{left:91.112133pt;}
.x38{left:93.992133pt;}
.x31{left:104.552133pt;}
.x39{left:105.511600pt;}
.x60{left:108.392933pt;}
.x48{left:109.352400pt;}
.x4{left:117.992133pt;}
.x16{left:120.552667pt;}
.x26{left:122.152267pt;}
.x32{left:123.751867pt;}
.x49{left:124.712800pt;}
.x65{left:125.672267pt;}
.x18{left:126.631733pt;}
.x64{left:128.232800pt;}
.x36{left:129.511600pt;}
.x62{left:131.752800pt;}
.x17{left:133.352400pt;}
.x5{left:135.272800pt;}
.x3f{left:138.152667pt;}
.x19{left:139.112133pt;}
.x28{left:140.711867pt;}
.x37{left:141.992133pt;}
.x27{left:143.591733pt;}
.x34{left:145.192800pt;}
.x4b{left:147.751867pt;}
.x5e{left:151.271867pt;}
.x40{left:157.031600pt;}
.x35{left:159.592133pt;}
.x4c{left:161.191733pt;}
.x61{left:163.752267pt;}
.x1{left:201.511600pt;}
.x2d{left:212.392400pt;}
.x13{left:219.111733pt;}
.x4a{left:224.552133pt;}
.xa{left:226.151733pt;}
.x2e{left:229.031600pt;}
.x5f{left:234.152667pt;}
.x14{left:235.752267pt;}
.x25{left:239.912533pt;}
.xb{left:244.712800pt;}
.x3b{left:247.912000pt;}
.x45{left:256.232267pt;}
.x22{left:267.751867pt;}
.x50{left:270.952533pt;}
.x46{left:276.072133pt;}
.x23{left:284.711733pt;}
.x51{left:287.591733pt;}
.xf{left:288.552667pt;}
.x3d{left:297.511600pt;}
.x24{left:301.992533pt;}
.x10{left:306.152667pt;}
.x58{left:308.711733pt;}
.x33{left:312.231867pt;}
.x3e{left:317.672267pt;}
.x11{left:328.872400pt;}
.x1e{left:335.591733pt;}
.xc{left:339.111733pt;}
.x12{left:342.952533pt;}
.xd{left:349.031600pt;}
.x59{left:350.311867pt;}
.x1f{left:353.512533pt;}
.x2f{left:365.672267pt;}
.x20{left:376.551600pt;}
.x43{left:386.152267pt;}
.x21{left:390.952533pt;}
.x54{left:403.112133pt;}
.x44{left:406.632267pt;}
.x4f{left:409.192800pt;}
.x55{left:412.392000pt;}
.x52{left:421.352400pt;}
.x41{left:427.112133pt;}
.x1b{left:433.192800pt;}
.x53{left:438.631733pt;}
.x5a{left:444.392933pt;}
.x42{left:446.311867pt;}
.x29{left:447.592133pt;}
.x1c{left:448.872400pt;}
.x5b{left:461.672267pt;}
.x2a{left:462.631733pt;}
.x5c{left:483.751867pt;}
.x56{left:497.831867pt;}
.x57{left:516.712267pt;}
}




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