
    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_205dc41c36e5953dac19e948.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_24ec429785c37e8992eefacb.woff2')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_8e84aa0d0154f46aca237a4c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ba1bb05ab86d23970bd99bed.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0689fe437f367ce31ebf610e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_25d02f523bb8946cecf8cca2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3edf34e706844efca6a50263.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_911579f67a06d5b660800633.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7e52b113084a8a0ccd8ca1af.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e7781966fbcf7606cb6fcb91.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_131d42240d284ceb4ec1cf2d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b9cc96ba3310af908aa82a60.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_238c76096f3e8a140c8cdfce.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6df1a932d495013c436f87c9.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3a29227fb524051b00f117dc.woff2')format("woff");}.fff{font-family:fff;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;}
.m22{transform:matrix(0.170886,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170886,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170886,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198529,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207692,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209677,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223684,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.227011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227011,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1c{transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231884,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233766,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239583,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240132,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240741,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241477,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241667,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242647,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244444,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m3{transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253125,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253521,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253571,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255618,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255682,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256944,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260714,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.263423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263423,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270270,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272581,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.276471,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284375,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288194,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.296875,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307143,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1e{letter-spacing:-17.802000px;}
.ls1f{letter-spacing:-4.882500px;}
.ls17{letter-spacing:-4.067250px;}
.lsc{letter-spacing:-3.441000px;}
.ls25{letter-spacing:-3.391500px;}
.ls24{letter-spacing:-2.715750px;}
.ls2f{letter-spacing:-2.187000px;}
.ls22{letter-spacing:-2.033625px;}
.ls1d{letter-spacing:-1.543500px;}
.ls29{letter-spacing:-1.438500px;}
.ls15{letter-spacing:-1.357875px;}
.ls1c{letter-spacing:-0.771750px;}
.ls19{letter-spacing:-0.740175px;}
.ls10{letter-spacing:-0.738000px;}
.ls23{letter-spacing:-0.734250px;}
.ls11{letter-spacing:-0.732000px;}
.ls26{letter-spacing:-0.719250px;}
.lsa{letter-spacing:-0.715200px;}
.ls13{letter-spacing:-0.675750px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.675750px;}
.ls6{letter-spacing:0.740175px;}
.ls21{letter-spacing:0.750375px;}
.ls2b{letter-spacing:0.770625px;}
.ls2e{letter-spacing:0.776250px;}
.ls27{letter-spacing:0.807300px;}
.ls1b{letter-spacing:0.808500px;}
.ls14{letter-spacing:0.821100px;}
.ls2{letter-spacing:1.357875px;}
.ls7{letter-spacing:1.480350px;}
.ls2a{letter-spacing:1.566000px;}
.ls2c{letter-spacing:1.617000px;}
.ls20{letter-spacing:1.675800px;}
.ls18{letter-spacing:1.896000px;}
.ls12{letter-spacing:1.949400px;}
.ls0{letter-spacing:2.033625px;}
.lse{letter-spacing:2.134425px;}
.ls5{letter-spacing:2.220525px;}
.ls8{letter-spacing:2.315250px;}
.ls2d{letter-spacing:2.329800px;}
.ls4{letter-spacing:2.715750px;}
.ls28{letter-spacing:2.835600px;}
.lsf{letter-spacing:2.849625px;}
.ls1a{letter-spacing:2.960700px;}
.ls3{letter-spacing:3.391500px;}
.lsb{letter-spacing:6.403275px;}
.lsd{letter-spacing:8.537700px;}
.ls16{letter-spacing:11.526000px;}
.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;}
._18{margin-left:-35.434738px;}
._15{margin-left:-21.023529px;}
._17{margin-left:-10.901250px;}
._a{margin-left:-8.995125px;}
._7{margin-left:-7.254750px;}
._9{margin-left:-5.328144px;}
._10{margin-left:-3.761250px;}
._b{margin-left:-2.307750px;}
._19{margin-left:-1.281375px;}
._3{width:1.638375px;}
._4{width:3.047250px;}
._6{width:4.080000px;}
._2{width:5.291250px;}
._8{width:6.649125px;}
._e{width:7.650000px;}
._5{width:9.498750px;}
._f{width:10.646250px;}
._c{width:12.042600px;}
._1{width:13.164150px;}
._14{width:14.388375px;}
._0{width:15.421500px;}
._12{width:17.244375px;}
._d{width:18.615000px;}
._11{width:19.724250px;}
._16{width:21.006627px;}
._13{width:23.620950px;}
.fc0{color:transparent;}
.fsb{font-size:48.000000px;}
.fs18{font-size:48.750000px;}
.fs12{font-size:51.000000px;}
.fs13{font-size:51.750000px;}
.fsd{font-size:52.500000px;}
.fsc{font-size:53.250000px;}
.fs5{font-size:54.000000px;}
.fse{font-size:55.500000px;}
.fs14{font-size:56.250000px;}
.fsf{font-size:57.000000px;}
.fs15{font-size:57.750000px;}
.fs16{font-size:59.250000px;}
.fs3{font-size:60.000000px;}
.fs4{font-size:60.750000px;}
.fs6{font-size:63.750000px;}
.fs10{font-size:65.250000px;}
.fs17{font-size:66.000000px;}
.fs11{font-size:66.750000px;}
.fs9{font-size:67.500000px;}
.fs7{font-size:69.000000px;}
.fs8{font-size:69.750000px;}
.fsa{font-size:72.000000px;}
.fs2{font-size:111.000000px;}
.fs0{font-size:111.750000px;}
.fs1{font-size:116.250000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:67.456650px;}
.y26{bottom:71.416650px;}
.y7a{bottom:72.136800px;}
.y5c{bottom:98.775900px;}
.y24{bottom:102.014888px;}
.y25{bottom:102.017400px;}
.y5b{bottom:118.209900px;}
.y23{bottom:118.575637px;}
.y21{bottom:132.616500px;}
.y22{bottom:134.776950px;}
.y5a{bottom:138.004275px;}
.y59{bottom:167.169900px;}
.y58{bottom:186.613650px;}
.y20{bottom:187.333800px;}
.y57{bottom:206.057400px;}
.y56{bottom:206.063175px;}
.y1f{bottom:206.777550px;}
.y55{bottom:225.857550px;}
.y1e{bottom:226.215675px;}
.y53{bottom:245.653050px;}
.y54{bottom:245.655900px;}
.y1d{bottom:245.659425px;}
.y51{bottom:265.092300px;}
.y52{bottom:265.096800px;}
.y1c{bottom:275.175675px;}
.y50{bottom:284.536050px;}
.y1b{bottom:294.619425px;}
.y4f{bottom:303.976950px;}
.y4e{bottom:303.982575px;}
.y1a{bottom:314.413800px;}
.y4d{bottom:323.776950px;}
.y4c{bottom:323.785537px;}
.y18{bottom:333.855825px;}
.y19{bottom:333.857550px;}
.y4b{bottom:342.862725px;}
.y17{bottom:353.299575px;}
.y4a{bottom:362.657100px;}
.y49{bottom:362.662875px;}
.y16{bottom:372.743325px;}
.y47{bottom:382.452600px;}
.y48{bottom:382.457250px;}
.y14{bottom:392.533200px;}
.y15{bottom:392.537700px;}
.y46{bottom:401.902125px;}
.y13{bottom:411.976950px;}
.y45{bottom:421.696500px;}
.y44{bottom:421.697100px;}
.y79{bottom:426.032925px;}
.y12{bottom:431.416050px;}
.y11{bottom:431.421825px;}
.y78{bottom:445.827300px;}
.y43{bottom:450.862725px;}
.y10{bottom:451.216200px;}
.yf{bottom:451.216800px;}
.y77{bottom:465.621675px;}
.y42{bottom:470.657100px;}
.y41{bottom:470.668500px;}
.ye{bottom:480.382425px;}
.y76{bottom:485.433225px;}
.y40{bottom:490.462875px;}
.yc{bottom:500.173800px;}
.yd{bottom:500.176800px;}
.y75{bottom:505.227600px;}
.y3f{bottom:510.257250px;}
.y3e{bottom:510.263025px;}
.yb{bottom:519.617550px;}
.ya{bottom:519.621675px;}
.y74{bottom:525.021975px;}
.y3d{bottom:530.063175px;}
.y9{bottom:539.416050px;}
.y73{bottom:544.816350px;}
.y72{bottom:544.822125px;}
.y3c{bottom:549.857550px;}
.y3b{bottom:549.864450px;}
.y8{bottom:559.227600px;}
.y71{bottom:564.616500px;}
.y70{bottom:564.622275px;}
.y3a{bottom:569.308200px;}
.y7{bottom:579.021975px;}
.y6f{bottom:584.416650px;}
.y6e{bottom:584.417775px;}
.y39{bottom:589.102575px;}
.y6{bottom:598.816350px;}
.y6d{bottom:603.861525px;}
.y38{bottom:608.896950px;}
.y37{bottom:608.902725px;}
.y5{bottom:618.613650px;}
.y6c{bottom:623.655900px;}
.y36{bottom:628.706175px;}
.y4{bottom:638.057400px;}
.y6b{bottom:643.456050px;}
.y6a{bottom:643.456162px;}
.y35{bottom:658.222425px;}
.y69{bottom:663.617100px;}
.y68{bottom:663.621187px;}
.y33{bottom:678.012300px;}
.y34{bottom:678.016800px;}
.y67{bottom:683.415562px;}
.y32{bottom:697.456050px;}
.y31{bottom:697.461825px;}
.y66{bottom:703.593825px;}
.y3{bottom:716.537700px;}
.y30{bottom:717.256200px;}
.y2f{bottom:717.267600px;}
.y65{bottom:723.388200px;}
.y2e{bottom:737.061975px;}
.y64{bottom:743.182575px;}
.y2d{bottom:756.856350px;}
.y2c{bottom:756.867900px;}
.y63{bottom:762.976950px;}
.y62{bottom:762.981037px;}
.y2b{bottom:776.662275px;}
.y2{bottom:777.728700px;}
.y61{bottom:783.141975px;}
.y2a{bottom:796.456650px;}
.y29{bottom:796.462275px;}
.y60{bottom:802.942125px;}
.y1{bottom:810.136200px;}
.y28{bottom:816.256650px;}
.y5f{bottom:822.736500px;}
.y27{bottom:859.096800px;}
.y5e{bottom:865.576500px;}
.h1c{height:50.028809px;}
.h10{height:50.062500px;}
.h1d{height:50.764526px;}
.h29{height:50.789795px;}
.h28{height:50.844727px;}
.h13{height:51.500244px;}
.h15{height:51.525879px;}
.h1f{height:52.235962px;}
.h2a{height:52.971680px;}
.h12{height:52.998047px;}
.h11{height:53.666016px;}
.h1e{height:54.421875px;}
.h22{height:55.206299px;}
.h18{height:55.933594px;}
.h23{height:55.942383px;}
.h8{height:56.320312px;}
.h19{height:57.445312px;}
.h24{height:58.201172px;}
.h25{height:58.555664px;}
.h7{height:58.886719px;}
.h14{height:59.296875px;}
.h6{height:59.622803px;}
.h5{height:60.468750px;}
.h9{height:62.567139px;}
.hf{height:62.571639px;}
.hb{height:62.578539px;}
.h1a{height:64.039307px;}
.h26{height:64.775391px;}
.hd{height:66.247559px;}
.h27{height:66.515625px;}
.h1b{height:67.271484px;}
.ha{height:67.686035px;}
.hc{height:68.455811px;}
.he{height:70.664062px;}
.h4{height:108.940430px;}
.h2{height:109.676514px;}
.h3{height:114.093018px;}
.h21{height:938.250000px;}
.h20{height:938.434050px;}
.h16{height:938.792550px;}
.h17{height:939.000000px;}
.h0{height:939.512550px;}
.h1{height:939.750000px;}
.w3{width:639.750000px;}
.w2{width:639.768090px;}
.w0{width:642.648090px;}
.w1{width:642.750000px;}
.x0{left:0.000000px;}
.x2f{left:57.084240px;}
.x47{left:58.161090px;}
.x53{left:59.244690px;}
.x6{left:64.284090px;}
.x10{left:66.083640px;}
.x1{left:67.164690px;}
.x64{left:70.418415px;}
.x5c{left:71.485590px;}
.x52{left:74.364540px;}
.x3e{left:85.873665px;}
.x51{left:87.320415px;}
.x22{left:94.142490px;}
.xa{left:95.244090px;}
.x24{left:102.790740px;}
.x23{left:103.884240px;}
.x7{left:110.364090px;}
.x1e{left:118.643340px;}
.x54{left:125.483940px;}
.x8{left:129.804840px;}
.x1f{left:133.764840px;}
.x3a{left:135.923640px;}
.x4c{left:146.724390px;}
.x11{left:149.603340px;}
.x55{left:153.924240px;}
.x12{left:162.203640px;}
.x49{left:171.563940px;}
.x3b{left:174.444540px;}
.x5d{left:179.485590px;}
.x4a{left:184.523340px;}
.x56{left:187.044690px;}
.x65{left:200.724390px;}
.x9{left:209.364540px;}
.x66{left:216.564390px;}
.x57{left:218.723340px;}
.x2{left:224.123640px;}
.x3c{left:230.244090px;}
.x4d{left:231.323490px;}
.x32{left:233.844840px;}
.x38{left:237.443940px;}
.x34{left:240.324540px;}
.x58{left:241.403940px;}
.x3d{left:243.564540px;}
.x4e{left:245.004690px;}
.x27{left:246.084240px;}
.x33{left:247.883790px;}
.x39{left:251.123640px;}
.x35{left:255.083640px;}
.x25{left:280.284090px;}
.x3f{left:286.043640px;}
.x3{left:292.164090px;}
.x59{left:304.044240px;}
.xb{left:313.404540px;}
.x26{left:320.604390px;}
.x63{left:326.364090px;}
.x4{left:334.284090px;}
.x31{left:337.884840px;}
.x5a{left:340.043640px;}
.x28{left:341.124690px;}
.xd{left:345.804840px;}
.x60{left:358.044240px;}
.x5b{left:361.284090px;}
.xe{left:362.363490px;}
.x45{left:364.164690px;}
.x5{left:367.043640px;}
.x29{left:374.243490px;}
.xc{left:376.403940px;}
.x46{left:379.284540px;}
.xf{left:387.563940px;}
.x20{left:390.083640px;}
.x19{left:394.404540px;}
.x21{left:404.483490px;}
.x69{left:405.925290px;}
.x1a{left:407.364090px;}
.x6e{left:410.605590px;}
.x36{left:411.683340px;}
.x50{left:422.844840px;}
.x37{left:426.443940px;}
.x2a{left:428.604390px;}
.x67{left:434.004840px;}
.x40{left:435.804390px;}
.x6b{left:436.885440px;}
.x15{left:442.284090px;}
.x30{left:446.244090px;}
.x68{left:447.684390px;}
.x61{left:450.564990px;}
.x41{left:451.644390px;}
.x16{left:456.324540px;}
.x2b{left:459.203640px;}
.x62{left:464.244690px;}
.x6a{left:468.565590px;}
.x6c{left:472.164690px;}
.x48{left:479.723790px;}
.x1b{left:490.163640px;}
.x2c{left:491.603940px;}
.x6f{left:496.644990px;}
.x6d{left:520.044240px;}
.x17{left:526.164690px;}
.x2d{left:527.964240px;}
.x44{left:533.364540px;}
.x13{left:534.443940px;}
.x18{left:540.203640px;}
.x42{left:545.603940px;}
.x14{left:547.403490px;}
.x2e{left:548.843790px;}
.x1c{left:552.803790px;}
.x70{left:553.884840px;}
.x43{left:562.164090px;}
.x4f{left:566.844240px;}
.x4b{left:568.643790px;}
.x5e{left:575.125290px;}
.x1d{left:577.284090px;}
.x5f{left:582.684390px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-15.824000pt;}
.ls1f{letter-spacing:-4.340000pt;}
.ls17{letter-spacing:-3.615333pt;}
.lsc{letter-spacing:-3.058667pt;}
.ls25{letter-spacing:-3.014667pt;}
.ls24{letter-spacing:-2.414000pt;}
.ls2f{letter-spacing:-1.944000pt;}
.ls22{letter-spacing:-1.807667pt;}
.ls1d{letter-spacing:-1.372000pt;}
.ls29{letter-spacing:-1.278667pt;}
.ls15{letter-spacing:-1.207000pt;}
.ls1c{letter-spacing:-0.686000pt;}
.ls19{letter-spacing:-0.657933pt;}
.ls10{letter-spacing:-0.656000pt;}
.ls23{letter-spacing:-0.652667pt;}
.ls11{letter-spacing:-0.650667pt;}
.ls26{letter-spacing:-0.639333pt;}
.lsa{letter-spacing:-0.635733pt;}
.ls13{letter-spacing:-0.600667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.600667pt;}
.ls6{letter-spacing:0.657933pt;}
.ls21{letter-spacing:0.667000pt;}
.ls2b{letter-spacing:0.685000pt;}
.ls2e{letter-spacing:0.690000pt;}
.ls27{letter-spacing:0.717600pt;}
.ls1b{letter-spacing:0.718667pt;}
.ls14{letter-spacing:0.729867pt;}
.ls2{letter-spacing:1.207000pt;}
.ls7{letter-spacing:1.315867pt;}
.ls2a{letter-spacing:1.392000pt;}
.ls2c{letter-spacing:1.437333pt;}
.ls20{letter-spacing:1.489600pt;}
.ls18{letter-spacing:1.685333pt;}
.ls12{letter-spacing:1.732800pt;}
.ls0{letter-spacing:1.807667pt;}
.lse{letter-spacing:1.897267pt;}
.ls5{letter-spacing:1.973800pt;}
.ls8{letter-spacing:2.058000pt;}
.ls2d{letter-spacing:2.070933pt;}
.ls4{letter-spacing:2.414000pt;}
.ls28{letter-spacing:2.520533pt;}
.lsf{letter-spacing:2.533000pt;}
.ls1a{letter-spacing:2.631733pt;}
.ls3{letter-spacing:3.014667pt;}
.lsb{letter-spacing:5.691800pt;}
.lsd{letter-spacing:7.589067pt;}
.ls16{letter-spacing:10.245333pt;}
.ws0{word-spacing:0.000000pt;}
._18{margin-left:-31.497545pt;}
._15{margin-left:-18.687582pt;}
._17{margin-left:-9.690000pt;}
._a{margin-left:-7.995667pt;}
._7{margin-left:-6.448667pt;}
._9{margin-left:-4.736128pt;}
._10{margin-left:-3.343333pt;}
._b{margin-left:-2.051333pt;}
._19{margin-left:-1.139000pt;}
._3{width:1.456333pt;}
._4{width:2.708667pt;}
._6{width:3.626667pt;}
._2{width:4.703333pt;}
._8{width:5.910333pt;}
._e{width:6.800000pt;}
._5{width:8.443333pt;}
._f{width:9.463333pt;}
._c{width:10.704533pt;}
._1{width:11.701467pt;}
._14{width:12.789667pt;}
._0{width:13.708000pt;}
._12{width:15.328333pt;}
._d{width:16.546667pt;}
._11{width:17.532667pt;}
._16{width:18.672557pt;}
._13{width:20.996400pt;}
.fsb{font-size:42.666667pt;}
.fs18{font-size:43.333333pt;}
.fs12{font-size:45.333333pt;}
.fs13{font-size:46.000000pt;}
.fsd{font-size:46.666667pt;}
.fsc{font-size:47.333333pt;}
.fs5{font-size:48.000000pt;}
.fse{font-size:49.333333pt;}
.fs14{font-size:50.000000pt;}
.fsf{font-size:50.666667pt;}
.fs15{font-size:51.333333pt;}
.fs16{font-size:52.666667pt;}
.fs3{font-size:53.333333pt;}
.fs4{font-size:54.000000pt;}
.fs6{font-size:56.666667pt;}
.fs10{font-size:58.000000pt;}
.fs17{font-size:58.666667pt;}
.fs11{font-size:59.333333pt;}
.fs9{font-size:60.000000pt;}
.fs7{font-size:61.333333pt;}
.fs8{font-size:62.000000pt;}
.fsa{font-size:64.000000pt;}
.fs2{font-size:98.666667pt;}
.fs0{font-size:99.333333pt;}
.fs1{font-size:103.333333pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:59.961467pt;}
.y26{bottom:63.481467pt;}
.y7a{bottom:64.121600pt;}
.y5c{bottom:87.800800pt;}
.y24{bottom:90.679900pt;}
.y25{bottom:90.682133pt;}
.y5b{bottom:105.075467pt;}
.y23{bottom:105.400567pt;}
.y21{bottom:117.881333pt;}
.y22{bottom:119.801733pt;}
.y5a{bottom:122.670467pt;}
.y59{bottom:148.595467pt;}
.y58{bottom:165.878800pt;}
.y20{bottom:166.518933pt;}
.y57{bottom:183.162133pt;}
.y56{bottom:183.167267pt;}
.y1f{bottom:183.802267pt;}
.y55{bottom:200.762267pt;}
.y1e{bottom:201.080600pt;}
.y53{bottom:218.358267pt;}
.y54{bottom:218.360800pt;}
.y1d{bottom:218.363933pt;}
.y51{bottom:235.637600pt;}
.y52{bottom:235.641600pt;}
.y1c{bottom:244.600600pt;}
.y50{bottom:252.920933pt;}
.y1b{bottom:261.883933pt;}
.y4f{bottom:270.201733pt;}
.y4e{bottom:270.206733pt;}
.y1a{bottom:279.478933pt;}
.y4d{bottom:287.801733pt;}
.y4c{bottom:287.809367pt;}
.y18{bottom:296.760733pt;}
.y19{bottom:296.762267pt;}
.y4b{bottom:304.766867pt;}
.y17{bottom:314.044067pt;}
.y4a{bottom:322.361867pt;}
.y49{bottom:322.367000pt;}
.y16{bottom:331.327400pt;}
.y47{bottom:339.957867pt;}
.y48{bottom:339.962000pt;}
.y14{bottom:348.918400pt;}
.y15{bottom:348.922400pt;}
.y46{bottom:357.246333pt;}
.y13{bottom:366.201733pt;}
.y45{bottom:374.841333pt;}
.y44{bottom:374.841867pt;}
.y79{bottom:378.695933pt;}
.y12{bottom:383.480933pt;}
.y11{bottom:383.486067pt;}
.y78{bottom:396.290933pt;}
.y43{bottom:400.766867pt;}
.y10{bottom:401.081067pt;}
.yf{bottom:401.081600pt;}
.y77{bottom:413.885933pt;}
.y42{bottom:418.361867pt;}
.y41{bottom:418.372000pt;}
.ye{bottom:427.006600pt;}
.y76{bottom:431.496200pt;}
.y40{bottom:435.967000pt;}
.yc{bottom:444.598933pt;}
.yd{bottom:444.601600pt;}
.y75{bottom:449.091200pt;}
.y3f{bottom:453.562000pt;}
.y3e{bottom:453.567133pt;}
.yb{bottom:461.882267pt;}
.ya{bottom:461.885933pt;}
.y74{bottom:466.686200pt;}
.y3d{bottom:471.167267pt;}
.y9{bottom:479.480933pt;}
.y73{bottom:484.281200pt;}
.y72{bottom:484.286333pt;}
.y3c{bottom:488.762267pt;}
.y3b{bottom:488.768400pt;}
.y8{bottom:497.091200pt;}
.y71{bottom:501.881333pt;}
.y70{bottom:501.886467pt;}
.y3a{bottom:506.051733pt;}
.y7{bottom:514.686200pt;}
.y6f{bottom:519.481467pt;}
.y6e{bottom:519.482467pt;}
.y39{bottom:523.646733pt;}
.y6{bottom:532.281200pt;}
.y6d{bottom:536.765800pt;}
.y38{bottom:541.241733pt;}
.y37{bottom:541.246867pt;}
.y5{bottom:549.878800pt;}
.y6c{bottom:554.360800pt;}
.y36{bottom:558.849933pt;}
.y4{bottom:567.162133pt;}
.y6b{bottom:571.960933pt;}
.y6a{bottom:571.961033pt;}
.y35{bottom:585.086600pt;}
.y69{bottom:589.881867pt;}
.y68{bottom:589.885500pt;}
.y33{bottom:602.677600pt;}
.y34{bottom:602.681600pt;}
.y67{bottom:607.480500pt;}
.y32{bottom:619.960933pt;}
.y31{bottom:619.966067pt;}
.y66{bottom:625.416733pt;}
.y3{bottom:636.922400pt;}
.y30{bottom:637.561067pt;}
.y2f{bottom:637.571200pt;}
.y65{bottom:643.011733pt;}
.y2e{bottom:655.166200pt;}
.y64{bottom:660.606733pt;}
.y2d{bottom:672.761200pt;}
.y2c{bottom:672.771467pt;}
.y63{bottom:678.201733pt;}
.y62{bottom:678.205367pt;}
.y2b{bottom:690.366467pt;}
.y2{bottom:691.314400pt;}
.y61{bottom:696.126200pt;}
.y2a{bottom:707.961467pt;}
.y29{bottom:707.966467pt;}
.y60{bottom:713.726333pt;}
.y1{bottom:720.121067pt;}
.y28{bottom:725.561467pt;}
.y5f{bottom:731.321333pt;}
.y27{bottom:763.641600pt;}
.y5e{bottom:769.401333pt;}
.h1c{height:44.470052pt;}
.h10{height:44.500000pt;}
.h1d{height:45.124023pt;}
.h29{height:45.146484pt;}
.h28{height:45.195312pt;}
.h13{height:45.777995pt;}
.h15{height:45.800781pt;}
.h1f{height:46.431966pt;}
.h2a{height:47.085938pt;}
.h12{height:47.109375pt;}
.h11{height:47.703125pt;}
.h1e{height:48.375000pt;}
.h22{height:49.072266pt;}
.h18{height:49.718750pt;}
.h23{height:49.726562pt;}
.h8{height:50.062500pt;}
.h19{height:51.062500pt;}
.h24{height:51.734375pt;}
.h25{height:52.049479pt;}
.h7{height:52.343750pt;}
.h14{height:52.708333pt;}
.h6{height:52.998047pt;}
.h5{height:53.750000pt;}
.h9{height:55.615234pt;}
.hf{height:55.619234pt;}
.hb{height:55.625368pt;}
.h1a{height:56.923828pt;}
.h26{height:57.578125pt;}
.hd{height:58.886719pt;}
.h27{height:59.125000pt;}
.h1b{height:59.796875pt;}
.ha{height:60.165365pt;}
.hc{height:60.849609pt;}
.he{height:62.812500pt;}
.h4{height:96.835938pt;}
.h2{height:97.490234pt;}
.h3{height:101.416016pt;}
.h21{height:834.000000pt;}
.h20{height:834.163600pt;}
.h16{height:834.482267pt;}
.h17{height:834.666667pt;}
.h0{height:835.122267pt;}
.h1{height:835.333333pt;}
.w3{width:568.666667pt;}
.w2{width:568.682747pt;}
.w0{width:571.242747pt;}
.w1{width:571.333333pt;}
.x0{left:0.000000pt;}
.x2f{left:50.741547pt;}
.x47{left:51.698747pt;}
.x53{left:52.661947pt;}
.x6{left:57.141413pt;}
.x10{left:58.741013pt;}
.x1{left:59.701947pt;}
.x64{left:62.594147pt;}
.x5c{left:63.542747pt;}
.x52{left:66.101813pt;}
.x3e{left:76.332147pt;}
.x51{left:77.618147pt;}
.x22{left:83.682213pt;}
.xa{left:84.661413pt;}
.x24{left:91.369547pt;}
.x23{left:92.341547pt;}
.x7{left:98.101413pt;}
.x1e{left:105.460747pt;}
.x54{left:111.541280pt;}
.x8{left:115.382080pt;}
.x1f{left:118.902080pt;}
.x3a{left:120.821013pt;}
.x4c{left:130.421680pt;}
.x11{left:132.980747pt;}
.x55{left:136.821547pt;}
.x12{left:144.181013pt;}
.x49{left:152.501280pt;}
.x3b{left:155.061813pt;}
.x5d{left:159.542747pt;}
.x4a{left:164.020747pt;}
.x56{left:166.261947pt;}
.x65{left:178.421680pt;}
.x9{left:186.101813pt;}
.x66{left:192.501680pt;}
.x57{left:194.420747pt;}
.x2{left:199.221013pt;}
.x3c{left:204.661413pt;}
.x4d{left:205.620880pt;}
.x32{left:207.862080pt;}
.x38{left:211.061280pt;}
.x34{left:213.621813pt;}
.x58{left:214.581280pt;}
.x3d{left:216.501813pt;}
.x4e{left:217.781947pt;}
.x27{left:218.741547pt;}
.x33{left:220.341147pt;}
.x39{left:223.221013pt;}
.x35{left:226.741013pt;}
.x25{left:249.141413pt;}
.x3f{left:254.261013pt;}
.x3{left:259.701413pt;}
.x59{left:270.261547pt;}
.xb{left:278.581813pt;}
.x26{left:284.981680pt;}
.x63{left:290.101413pt;}
.x4{left:297.141413pt;}
.x31{left:300.342080pt;}
.x5a{left:302.261013pt;}
.x28{left:303.221947pt;}
.xd{left:307.382080pt;}
.x60{left:318.261547pt;}
.x5b{left:321.141413pt;}
.xe{left:322.100880pt;}
.x45{left:323.701947pt;}
.x5{left:326.261013pt;}
.x29{left:332.660880pt;}
.xc{left:334.581280pt;}
.x46{left:337.141813pt;}
.xf{left:344.501280pt;}
.x20{left:346.741013pt;}
.x19{left:350.581813pt;}
.x21{left:359.540880pt;}
.x69{left:360.822480pt;}
.x1a{left:362.101413pt;}
.x6e{left:364.982747pt;}
.x36{left:365.940747pt;}
.x50{left:375.862080pt;}
.x37{left:379.061280pt;}
.x2a{left:380.981680pt;}
.x67{left:385.782080pt;}
.x40{left:387.381680pt;}
.x6b{left:388.342613pt;}
.x15{left:393.141413pt;}
.x30{left:396.661413pt;}
.x68{left:397.941680pt;}
.x61{left:400.502213pt;}
.x41{left:401.461680pt;}
.x16{left:405.621813pt;}
.x2b{left:408.181013pt;}
.x62{left:412.661947pt;}
.x6a{left:416.502747pt;}
.x6c{left:419.701947pt;}
.x48{left:426.421147pt;}
.x1b{left:435.701013pt;}
.x2c{left:436.981280pt;}
.x6f{left:441.462213pt;}
.x6d{left:462.261547pt;}
.x17{left:467.701947pt;}
.x2d{left:469.301547pt;}
.x44{left:474.101813pt;}
.x13{left:475.061280pt;}
.x18{left:480.181013pt;}
.x42{left:484.981280pt;}
.x14{left:486.580880pt;}
.x2e{left:487.861147pt;}
.x1c{left:491.381147pt;}
.x70{left:492.342080pt;}
.x43{left:499.701413pt;}
.x4f{left:503.861547pt;}
.x4b{left:505.461147pt;}
.x5e{left:511.222480pt;}
.x1d{left:513.141413pt;}
.x5f{left:517.941680pt;}
}




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