
    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_baa0a747196e026412461b37.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_d3861692a306da5e7a12cde2.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_0c0321e326e09af83f8c8f3b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c16e54bdfc2bb90e4b65f40b.woff2')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_3158bb3de7b502c97acdf39f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_527206a271c01887b79edf60.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c2f5af6113403155b872082.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6e26bfd2000ab5408b7330c2.woff2')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_b10de443883c405f778efa16.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_dc16ed5e5bc97d0b34ec982f.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_5d45fb95c9783a5a0f79c57c.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_4c6ef9bd76fa6206704111cc.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_891c4d7f5fff2b475630bed3.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5420c901c87f31cefecbbf31.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6a76fb6d2ab9036e1c4fe4f8.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_64b7fb71d7994cea409508d2.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_78578bea402addb15de2a686.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_39a0b9e674e08944a5cd1a75.woff2')format("woff");}.ff12{font-family:ff12;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;}
.m6{transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197368,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.198565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198565,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.204268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204268,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205128,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.206989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206989,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207895,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210843,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211310,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214286,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214844,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214912,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218310,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224359,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225806,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228916,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229412,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230769,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231061,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234568,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234940,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235294,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237179,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237654,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238095,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239011,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m30{transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240854,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.240862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240862,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241803,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243289,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243590,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243827,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244565,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244792,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246032,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246094,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246835,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246875,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246914,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246988,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m4{transform:matrix(0.255137,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255137,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255137,0.000000,0.000000,0.250000,0,0);}
.ma{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);}
.m32{transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258929,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260204,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261538,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261719,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262346,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266447,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267857,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268519,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268987,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271875,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275974,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls38{letter-spacing:-7.994700px;}
.ls26{letter-spacing:-6.110400px;}
.ls19{letter-spacing:-6.075000px;}
.ls46{letter-spacing:-5.595075px;}
.ls43{letter-spacing:-4.793175px;}
.ls2b{letter-spacing:-4.065075px;}
.ls3d{letter-spacing:-3.997350px;}
.ls48{letter-spacing:-3.892950px;}
.ls1a{letter-spacing:-3.796875px;}
.ls42{letter-spacing:-3.195450px;}
.ls2c{letter-spacing:-3.091725px;}
.ls1c{letter-spacing:-2.981925px;}
.lsb{letter-spacing:-2.877525px;}
.ls25{letter-spacing:-2.865600px;}
.ls4a{letter-spacing:-2.853900px;}
.ls3f{letter-spacing:-2.399625px;}
.ls14{letter-spacing:-2.278125px;}
.lsd{letter-spacing:-2.253300px;}
.ls1d{letter-spacing:-2.196000px;}
.ls2d{letter-spacing:-2.070000px;}
.ls40{letter-spacing:-2.038575px;}
.ls3b{letter-spacing:-1.597725px;}
.lsf{letter-spacing:-1.542150px;}
.ls18{letter-spacing:-1.518750px;}
.lsc{letter-spacing:-1.498500px;}
.ls21{letter-spacing:-1.433250px;}
.ls1e{letter-spacing:-1.427625px;}
.ls20{letter-spacing:-0.811800px;}
.ls41{letter-spacing:-0.801900px;}
.ls15{letter-spacing:-0.789750px;}
.ls12{letter-spacing:-0.763200px;}
.ls16{letter-spacing:-0.759375px;}
.lse{letter-spacing:-0.754800px;}
.ls17{letter-spacing:-0.753225px;}
.ls2e{letter-spacing:-0.750300px;}
.ls27{letter-spacing:-0.748725px;}
.ls1f{letter-spacing:-0.716625px;}
.ls49{letter-spacing:-0.698625px;}
.ls10{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.716625px;}
.ls23{letter-spacing:0.748650px;}
.ls8{letter-spacing:0.748800px;}
.ls1{letter-spacing:0.759375px;}
.ls3a{letter-spacing:0.762000px;}
.ls4c{letter-spacing:0.765900px;}
.lsa{letter-spacing:0.766800px;}
.ls24{letter-spacing:0.777750px;}
.ls22{letter-spacing:0.789075px;}
.ls3c{letter-spacing:0.796800px;}
.ls30{letter-spacing:0.801900px;}
.ls45{letter-spacing:1.500000px;}
.ls9{letter-spacing:1.502400px;}
.ls2a{letter-spacing:1.502550px;}
.ls3{letter-spacing:1.518750px;}
.ls2f{letter-spacing:1.597725px;}
.ls4{letter-spacing:2.278125px;}
.ls44{letter-spacing:2.370000px;}
.ls32{letter-spacing:2.399625px;}
.ls7{letter-spacing:3.037500px;}
.ls39{letter-spacing:3.039525px;}
.ls31{letter-spacing:3.195450px;}
.ls28{letter-spacing:3.620025px;}
.ls2{letter-spacing:3.796875px;}
.ls0{letter-spacing:3.830400px;}
.ls3e{letter-spacing:3.990225px;}
.ls33{letter-spacing:3.997350px;}
.ls6{letter-spacing:4.556250px;}
.ls35{letter-spacing:4.793175px;}
.ls4b{letter-spacing:5.323500px;}
.ls36{letter-spacing:5.595075px;}
.ls47{letter-spacing:6.426750px;}
.ls1b{letter-spacing:6.834375px;}
.ls37{letter-spacing:7.192800px;}
.ls5{letter-spacing:7.593750px;}
.ls11{letter-spacing:8.495850px;}
.ls13{letter-spacing:8.548575px;}
.ls34{letter-spacing:11.190150px;}
.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;}
._1c{margin-left:-39.227239px;}
._1d{margin-left:-34.842870px;}
._11{margin-left:-17.747400px;}
._d{margin-left:-14.848515px;}
._14{margin-left:-12.907423px;}
._1b{margin-left:-10.930843px;}
._18{margin-left:-9.900971px;}
._10{margin-left:-8.505000px;}
._13{margin-left:-7.079198px;}
._b{margin-left:-5.929200px;}
._4{margin-left:-4.346055px;}
._5{margin-left:-2.673000px;}
._a{margin-left:-1.458000px;}
._c{width:1.093500px;}
._2{width:2.551500px;}
._8{width:4.312035px;}
._3{width:5.346000px;}
._9{width:7.171501px;}
._6{width:8.993430px;}
._1{width:10.501889px;}
._7{width:11.815838px;}
._f{width:13.561034px;}
._0{width:15.048000px;}
._12{width:16.994309px;}
._e{width:18.225000px;}
._15{width:20.623986px;}
._16{width:21.795697px;}
._19{width:25.333394px;}
._17{width:46.480464px;}
._1a{width:78.581340px;}
.fc0{color:transparent;}
.fs12{font-size:42.750000px;}
.fs15{font-size:45.750000px;}
.fs14{font-size:46.500000px;}
.fs13{font-size:47.250000px;}
.fse{font-size:48.000000px;}
.fs10{font-size:48.750000px;}
.fs11{font-size:49.500000px;}
.fs16{font-size:50.250000px;}
.fsf{font-size:51.000000px;}
.fs1f{font-size:53.250000px;}
.fs20{font-size:57.000000px;}
.fs1d{font-size:57.750000px;}
.fs18{font-size:58.500000px;}
.fs1e{font-size:59.250000px;}
.fsc{font-size:60.000000px;}
.fs9{font-size:60.750000px;}
.fs1c{font-size:61.500000px;}
.fsa{font-size:62.250000px;}
.fs19{font-size:63.000000px;}
.fs1b{font-size:63.750000px;}
.fsb{font-size:65.250000px;}
.fs1a{font-size:68.250000px;}
.fs21{font-size:69.000000px;}
.fs17{font-size:69.750000px;}
.fsd{font-size:71.250000px;}
.fs6{font-size:72.000000px;}
.fs7{font-size:99.750000px;}
.fs0{font-size:108.000000px;}
.fs4{font-size:109.500000px;}
.fs1{font-size:110.250000px;}
.fs2{font-size:111.000000px;}
.fs3{font-size:111.750000px;}
.fs5{font-size:156.750000px;}
.fs8{font-size:287.250000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:49.138500px;}
.y51{bottom:84.778800px;}
.y50{bottom:88.559100px;}
.y1c{bottom:96.658800px;}
.ya9{bottom:96.660450px;}
.y7c{bottom:99.900300px;}
.y4f{bottom:106.380000px;}
.ya8{bottom:114.482625px;}
.y1b{bottom:117.719550px;}
.y7b{bottom:117.724012px;}
.y4e{bottom:124.739850px;}
.y4d{bottom:124.744162px;}
.y1a{bottom:133.918950px;}
.y7a{bottom:135.538950px;}
.ya7{bottom:140.939250px;}
.y4b{bottom:142.557262px;}
.y4c{bottom:142.559100px;}
.y79{bottom:153.900300px;}
.ya6{bottom:159.305062px;}
.y4a{bottom:160.918950px;}
.y78{bottom:171.719550px;}
.ya5{bottom:177.120000px;}
.ya4{bottom:177.124312px;}
.y49{bottom:178.742775px;}
.y19{bottom:190.620000px;}
.ya3{bottom:194.939250px;}
.y77{bottom:198.177113px;}
.y48{bottom:205.199400px;}
.y18{bottom:208.979700px;}
.ya2{bottom:213.298950px;}
.y76{bottom:216.538800px;}
.y47{bottom:223.559100px;}
.y17{bottom:226.797112px;}
.ya1{bottom:231.664762px;}
.y75{bottom:234.904612px;}
.y46{bottom:241.380000px;}
.y16{bottom:245.158800px;}
.ya0{bottom:249.479700px;}
.y74{bottom:252.720262px;}
.y45{bottom:259.739850px;}
.y44{bottom:259.744163px;}
.y15{bottom:262.979700px;}
.y9f{bottom:267.298950px;}
.y73{bottom:270.899700px;}
.y43{bottom:277.557262px;}
.y14{bottom:281.343863px;}
.y72{bottom:288.898462px;}
.y9e{bottom:294.298950px;}
.y42{bottom:295.918950px;}
.y41{bottom:295.924913px;}
.y12{bottom:299.158613px;}
.y13{bottom:299.158800px;}
.y71{bottom:307.264462px;}
.y9c{bottom:312.118012px;}
.y9d{bottom:312.120000px;}
.y40{bottom:313.738012px;}
.y11{bottom:317.520300px;}
.y70{bottom:325.077562px;}
.y9b{bottom:330.484013px;}
.y3f{bottom:332.099700px;}
.y3e{bottom:332.104012px;}
.y10{bottom:335.337712px;}
.y6f{bottom:343.445213px;}
.y9a{bottom:348.298950px;}
.y3d{bottom:349.918950px;}
.yf{bottom:353.699400px;}
.y6e{bottom:361.260150px;}
.y99{bottom:366.660450px;}
.y98{bottom:366.664763px;}
.ye{bottom:371.520300px;}
.y3c{bottom:376.924913px;}
.y6d{bottom:379.620000px;}
.y97{bottom:384.479700px;}
.yd{bottom:389.884463px;}
.y3b{bottom:394.739850px;}
.y6c{bottom:397.439250px;}
.y96{bottom:402.845512px;}
.yc{bottom:407.697412px;}
.y3a{bottom:413.099700px;}
.y6b{bottom:415.798950px;}
.y95{bottom:420.660450px;}
.yb{bottom:426.065062px;}
.y39{bottom:430.918950px;}
.y38{bottom:430.924913px;}
.y6a{bottom:433.618013px;}
.y94{bottom:439.024613px;}
.ya{bottom:443.878163px;}
.y6{bottom:443.880000px;}
.y36{bottom:448.738013px;}
.y37{bottom:448.739850px;}
.y69{bottom:451.984013px;}
.y93{bottom:456.839550px;}
.y9{bottom:462.239850px;}
.y8{bottom:462.244163px;}
.y35{bottom:467.099700px;}
.y68{bottom:469.798950px;}
.y92{bottom:475.199400px;}
.y91{bottom:475.205363px;}
.y7{bottom:480.059100px;}
.y34{bottom:484.918950px;}
.y67{bottom:487.620000px;}
.y90{bottom:493.024613px;}
.y33{bottom:503.284763px;}
.y66{bottom:505.979700px;}
.y8f{bottom:510.837712px;}
.y32{bottom:521.104012px;}
.y64{bottom:523.797112px;}
.y65{bottom:523.798950px;}
.y8e{bottom:529.199400px;}
.y31{bottom:538.918950px;}
.y63{bottom:542.158800px;}
.y8d{bottom:547.018312px;}
.y30{bottom:557.278800px;}
.y8c{bottom:565.380000px;}
.y8b{bottom:565.384463px;}
.y62{bottom:568.620000px;}
.y2e{bottom:575.097863px;}
.y2f{bottom:575.099700px;}
.y8a{bottom:583.205363px;}
.y61{bottom:586.439250px;}
.y2d{bottom:593.459550px;}
.y2c{bottom:593.462325px;}
.y89{bottom:601.018312px;}
.y60{bottom:604.260150px;}
.y88{bottom:619.384463px;}
.y2b{bottom:619.918950px;}
.y2a{bottom:619.924913px;}
.y5{bottom:621.000000px;}
.y5f{bottom:622.624312px;}
.y87{bottom:637.199400px;}
.y29{bottom:637.739850px;}
.y5e{bottom:640.437262px;}
.y28{bottom:655.559100px;}
.y5d{bottom:658.805062px;}
.y86{bottom:673.380000px;}
.y27{bottom:673.924913px;}
.y5c{bottom:676.624312px;}
.y3{bottom:689.027250px;}
.y4{bottom:689.038950px;}
.y85{bottom:691.199400px;}
.y25{bottom:691.738012px;}
.y26{bottom:691.739850px;}
.y5b{bottom:694.437262px;}
.y24{bottom:710.099700px;}
.y23{bottom:710.104012px;}
.y5a{bottom:712.798950px;}
.y84{bottom:717.658613px;}
.y2{bottom:721.439250px;}
.y22{bottom:727.924913px;}
.y59{bottom:730.624312px;}
.y83{bottom:736.020300px;}
.y82{bottom:736.024613px;}
.y21{bottom:745.739850px;}
.y57{bottom:748.437262px;}
.y58{bottom:748.439250px;}
.y81{bottom:753.839550px;}
.y20{bottom:763.559100px;}
.y56{bottom:766.798950px;}
.yae{bottom:770.579400px;}
.y80{bottom:771.660450px;}
.y1f{bottom:781.918950px;}
.y55{bottom:784.620000px;}
.y54{bottom:784.624312px;}
.y1{bottom:785.158800px;}
.yac{bottom:788.937263px;}
.yad{bottom:788.939250px;}
.y7f{bottom:790.020300px;}
.y1e{bottom:799.739850px;}
.y53{bottom:802.437263px;}
.yab{bottom:807.298950px;}
.y7e{bottom:807.839550px;}
.y1d{bottom:818.099700px;}
.y52{bottom:820.798950px;}
.yaa{bottom:825.120000px;}
.y7d{bottom:826.199400px;}
.h17{height:44.586914px;}
.h1a{height:44.901123px;}
.h1f{height:45.614502px;}
.h1e{height:46.350220px;}
.h19{height:46.863281px;}
.h13{height:47.109375px;}
.h18{height:47.619141px;}
.h15{height:47.845459px;}
.h1c{height:49.317627px;}
.h16{height:49.886719px;}
.h14{height:50.053711px;}
.h1b{height:50.062500px;}
.h2b{height:55.538086px;}
.h2c{height:56.678467px;}
.h20{height:57.414551px;}
.h2f{height:57.445312px;}
.h28{height:58.150635px;}
.h29{height:58.857422px;}
.h11{height:58.886719px;}
.h30{height:58.957031px;}
.h21{height:59.593140px;}
.hf{height:59.593890px;}
.hb{height:59.622803px;}
.hd{height:59.630153px;}
.he{height:59.630753px;}
.h27{height:60.231445px;}
.h31{height:60.328857px;}
.h26{height:60.358887px;}
.h2a{height:61.064575px;}
.hc{height:61.094971px;}
.h22{height:61.831055px;}
.h24{height:62.567139px;}
.h25{height:62.578125px;}
.h32{height:65.707031px;}
.h10{height:68.053711px;}
.h8{height:70.628906px;}
.h23{height:71.182617px;}
.h35{height:71.964844px;}
.h1d{height:72.747070px;}
.h12{height:74.311523px;}
.h9{height:104.036133px;}
.h2{height:105.996094px;}
.h3{height:108.204346px;}
.h5{height:109.621948px;}
.h6{height:110.355469px;}
.h4{height:111.867188px;}
.h7{height:163.485352px;}
.ha{height:289.494141px;}
.h1{height:875.250000px;}
.h0{height:875.340000px;}
.h33{height:879.658500px;}
.h34{height:879.750000px;}
.h2e{height:882.000000px;}
.h2d{height:882.360000px;}
.w1{width:637.500000px;}
.w0{width:637.740000px;}
.w4{width:643.500000px;}
.w3{width:643.681185px;}
.w2{width:648.000000px;}
.x0{left:0.000000px;}
.x42{left:64.260150px;}
.x2e{left:65.339550px;}
.x24{left:66.420600px;}
.x5d{left:68.040600px;}
.x31{left:80.459550px;}
.x32{left:92.339550px;}
.x6e{left:93.420600px;}
.xe{left:105.299850px;}
.x7{left:106.380000px;}
.x1{left:108.000000px;}
.x62{left:110.160450px;}
.x13{left:111.780450px;}
.x78{left:112.859835px;}
.x5b{left:116.640150px;}
.x57{left:117.719550px;}
.x52{left:118.803000px;}
.x48{left:119.880000px;}
.x3a{left:122.040450px;}
.x14{left:125.819250px;}
.x77{left:130.680750px;}
.x74{left:136.079400px;}
.x69{left:140.400300px;}
.x1d{left:141.479700px;}
.x12{left:143.099700px;}
.x75{left:147.420600px;}
.x6f{left:152.819250px;}
.x33{left:153.900300px;}
.x1e{left:154.979700px;}
.x6a{left:156.599700px;}
.x58{left:159.300600px;}
.x4f{left:160.380000px;}
.x9{left:162.540450px;}
.x34{left:165.780450px;}
.x20{left:170.099700px;}
.x1f{left:176.040450px;}
.x6b{left:177.120000px;}
.x2a{left:178.199400px;}
.x67{left:179.280450px;}
.x3{left:182.520300px;}
.xa{left:185.219550px;}
.x21{left:186.300600px;}
.x76{left:187.920600px;}
.x2b{left:191.699400px;}
.x68{left:194.400300px;}
.x70{left:200.339550px;}
.x79{left:203.040585px;}
.xb{left:204.120000px;}
.x2{left:212.760150px;}
.xc{left:214.380000px;}
.x7a{left:215.999985px;}
.x22{left:218.699400px;}
.x50{left:221.939250px;}
.x15{left:224.099700px;}
.x23{left:229.500000px;}
.x51{left:235.439250px;}
.xd{left:238.680750px;}
.x16{left:239.760150px;}
.x60{left:250.020300px;}
.x4{left:252.719550px;}
.x43{left:257.040450px;}
.x61{left:264.060750px;}
.x27{left:265.680750px;}
.x44{left:271.079400px;}
.x71{left:272.699400px;}
.x5{left:278.099700px;}
.x17{left:283.500000px;}
.x3b{left:291.060750px;}
.x10{left:294.300600px;}
.x3c{left:303.479700px;}
.x18{left:309.420600px;}
.x11{left:312.660450px;}
.x8{left:315.359850px;}
.x49{left:324.000000px;}
.x72{left:325.620000px;}
.x28{left:327.780450px;}
.x4a{left:339.120000px;}
.x29{left:340.739850px;}
.x7b{left:350.999985px;}
.x3d{left:352.079400px;}
.x73{left:353.699400px;}
.x59{left:365.579400px;}
.x25{left:366.660450px;}
.x2c{left:369.359850px;}
.x3e{left:372.599700px;}
.x26{left:381.780450px;}
.x4b{left:383.400300px;}
.x6{left:385.020300px;}
.x2d{left:389.339550px;}
.x5a{left:390.420600px;}
.x54{left:396.359850px;}
.xf{left:402.300600px;}
.x53{left:405.000000px;}
.x55{left:411.479700px;}
.x5c{left:414.719550px;}
.x6c{left:421.739850px;}
.x4c{left:422.819250px;}
.x66{left:429.300600px;}
.x19{left:433.620000px;}
.x4d{left:434.699400px;}
.x35{left:438.479700px;}
.x6d{left:449.280450px;}
.x36{left:453.060750px;}
.x1a{left:454.680750px;}
.x2f{left:461.699400px;}
.x1b{left:474.120000px;}
.x30{left:477.900300px;}
.x45{left:484.380000px;}
.x4e{left:495.180750px;}
.x46{left:500.040450px;}
.x38{left:502.199400px;}
.x3f{left:511.920600px;}
.x64{left:513.540450px;}
.x39{left:517.859850px;}
.x65{left:529.199400px;}
.x5e{left:534.599700px;}
.x40{left:538.380000px;}
.x5f{left:550.260150px;}
.x41{left:552.420600px;}
.x1c{left:561.599700px;}
.x37{left:563.219550px;}
.x63{left:568.620000px;}
.x56{left:608.579400px;}
.x47{left:631.800600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls38{letter-spacing:-7.106400pt;}
.ls26{letter-spacing:-5.431467pt;}
.ls19{letter-spacing:-5.400000pt;}
.ls46{letter-spacing:-4.973400pt;}
.ls43{letter-spacing:-4.260600pt;}
.ls2b{letter-spacing:-3.613400pt;}
.ls3d{letter-spacing:-3.553200pt;}
.ls48{letter-spacing:-3.460400pt;}
.ls1a{letter-spacing:-3.375000pt;}
.ls42{letter-spacing:-2.840400pt;}
.ls2c{letter-spacing:-2.748200pt;}
.ls1c{letter-spacing:-2.650600pt;}
.lsb{letter-spacing:-2.557800pt;}
.ls25{letter-spacing:-2.547200pt;}
.ls4a{letter-spacing:-2.536800pt;}
.ls3f{letter-spacing:-2.133000pt;}
.ls14{letter-spacing:-2.025000pt;}
.lsd{letter-spacing:-2.002933pt;}
.ls1d{letter-spacing:-1.952000pt;}
.ls2d{letter-spacing:-1.840000pt;}
.ls40{letter-spacing:-1.812067pt;}
.ls3b{letter-spacing:-1.420200pt;}
.lsf{letter-spacing:-1.370800pt;}
.ls18{letter-spacing:-1.350000pt;}
.lsc{letter-spacing:-1.332000pt;}
.ls21{letter-spacing:-1.274000pt;}
.ls1e{letter-spacing:-1.269000pt;}
.ls20{letter-spacing:-0.721600pt;}
.ls41{letter-spacing:-0.712800pt;}
.ls15{letter-spacing:-0.702000pt;}
.ls12{letter-spacing:-0.678400pt;}
.ls16{letter-spacing:-0.675000pt;}
.lse{letter-spacing:-0.670933pt;}
.ls17{letter-spacing:-0.669533pt;}
.ls2e{letter-spacing:-0.666933pt;}
.ls27{letter-spacing:-0.665533pt;}
.ls1f{letter-spacing:-0.637000pt;}
.ls49{letter-spacing:-0.621000pt;}
.ls10{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.637000pt;}
.ls23{letter-spacing:0.665467pt;}
.ls8{letter-spacing:0.665600pt;}
.ls1{letter-spacing:0.675000pt;}
.ls3a{letter-spacing:0.677333pt;}
.ls4c{letter-spacing:0.680800pt;}
.lsa{letter-spacing:0.681600pt;}
.ls24{letter-spacing:0.691333pt;}
.ls22{letter-spacing:0.701400pt;}
.ls3c{letter-spacing:0.708267pt;}
.ls30{letter-spacing:0.712800pt;}
.ls45{letter-spacing:1.333333pt;}
.ls9{letter-spacing:1.335467pt;}
.ls2a{letter-spacing:1.335600pt;}
.ls3{letter-spacing:1.350000pt;}
.ls2f{letter-spacing:1.420200pt;}
.ls4{letter-spacing:2.025000pt;}
.ls44{letter-spacing:2.106667pt;}
.ls32{letter-spacing:2.133000pt;}
.ls7{letter-spacing:2.700000pt;}
.ls39{letter-spacing:2.701800pt;}
.ls31{letter-spacing:2.840400pt;}
.ls28{letter-spacing:3.217800pt;}
.ls2{letter-spacing:3.375000pt;}
.ls0{letter-spacing:3.404800pt;}
.ls3e{letter-spacing:3.546867pt;}
.ls33{letter-spacing:3.553200pt;}
.ls6{letter-spacing:4.050000pt;}
.ls35{letter-spacing:4.260600pt;}
.ls4b{letter-spacing:4.732000pt;}
.ls36{letter-spacing:4.973400pt;}
.ls47{letter-spacing:5.712667pt;}
.ls1b{letter-spacing:6.075000pt;}
.ls37{letter-spacing:6.393600pt;}
.ls5{letter-spacing:6.750000pt;}
.ls11{letter-spacing:7.551867pt;}
.ls13{letter-spacing:7.598733pt;}
.ls34{letter-spacing:9.946800pt;}
.ws0{word-spacing:0.000000pt;}
._1c{margin-left:-34.868657pt;}
._1d{margin-left:-30.971440pt;}
._11{margin-left:-15.775467pt;}
._d{margin-left:-13.198680pt;}
._14{margin-left:-11.473265pt;}
._1b{margin-left:-9.716305pt;}
._18{margin-left:-8.800863pt;}
._10{margin-left:-7.560000pt;}
._13{margin-left:-6.292620pt;}
._b{margin-left:-5.270400pt;}
._4{margin-left:-3.863160pt;}
._5{margin-left:-2.376000pt;}
._a{margin-left:-1.296000pt;}
._c{width:0.972000pt;}
._2{width:2.268000pt;}
._8{width:3.832920pt;}
._3{width:4.752000pt;}
._9{width:6.374667pt;}
._6{width:7.994160pt;}
._1{width:9.335013pt;}
._7{width:10.502967pt;}
._f{width:12.054253pt;}
._0{width:13.376000pt;}
._12{width:15.106053pt;}
._e{width:16.200000pt;}
._15{width:18.332432pt;}
._16{width:19.373953pt;}
._19{width:22.518573pt;}
._17{width:41.315968pt;}
._1a{width:69.850080pt;}
.fs12{font-size:38.000000pt;}
.fs15{font-size:40.666667pt;}
.fs14{font-size:41.333333pt;}
.fs13{font-size:42.000000pt;}
.fse{font-size:42.666667pt;}
.fs10{font-size:43.333333pt;}
.fs11{font-size:44.000000pt;}
.fs16{font-size:44.666667pt;}
.fsf{font-size:45.333333pt;}
.fs1f{font-size:47.333333pt;}
.fs20{font-size:50.666667pt;}
.fs1d{font-size:51.333333pt;}
.fs18{font-size:52.000000pt;}
.fs1e{font-size:52.666667pt;}
.fsc{font-size:53.333333pt;}
.fs9{font-size:54.000000pt;}
.fs1c{font-size:54.666667pt;}
.fsa{font-size:55.333333pt;}
.fs19{font-size:56.000000pt;}
.fs1b{font-size:56.666667pt;}
.fsb{font-size:58.000000pt;}
.fs1a{font-size:60.666667pt;}
.fs21{font-size:61.333333pt;}
.fs17{font-size:62.000000pt;}
.fsd{font-size:63.333333pt;}
.fs6{font-size:64.000000pt;}
.fs7{font-size:88.666667pt;}
.fs0{font-size:96.000000pt;}
.fs4{font-size:97.333333pt;}
.fs1{font-size:98.000000pt;}
.fs2{font-size:98.666667pt;}
.fs3{font-size:99.333333pt;}
.fs5{font-size:139.333333pt;}
.fs8{font-size:255.333333pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:43.678667pt;}
.y51{bottom:75.358933pt;}
.y50{bottom:78.719200pt;}
.y1c{bottom:85.918933pt;}
.ya9{bottom:85.920400pt;}
.y7c{bottom:88.800267pt;}
.y4f{bottom:94.560000pt;}
.ya8{bottom:101.762333pt;}
.y1b{bottom:104.639600pt;}
.y7b{bottom:104.643567pt;}
.y4e{bottom:110.879867pt;}
.y4d{bottom:110.883700pt;}
.y1a{bottom:119.039067pt;}
.y7a{bottom:120.479067pt;}
.ya7{bottom:125.279333pt;}
.y4b{bottom:126.717567pt;}
.y4c{bottom:126.719200pt;}
.y79{bottom:136.800267pt;}
.ya6{bottom:141.604500pt;}
.y4a{bottom:143.039067pt;}
.y78{bottom:152.639600pt;}
.ya5{bottom:157.440000pt;}
.ya4{bottom:157.443833pt;}
.y49{bottom:158.882467pt;}
.y19{bottom:169.440000pt;}
.ya3{bottom:173.279333pt;}
.y77{bottom:176.157433pt;}
.y48{bottom:182.399467pt;}
.y18{bottom:185.759733pt;}
.ya2{bottom:189.599067pt;}
.y76{bottom:192.478933pt;}
.y47{bottom:198.719200pt;}
.y17{bottom:201.597433pt;}
.ya1{bottom:205.924233pt;}
.y75{bottom:208.804100pt;}
.y46{bottom:214.560000pt;}
.y16{bottom:217.918933pt;}
.ya0{bottom:221.759733pt;}
.y74{bottom:224.640233pt;}
.y45{bottom:230.879867pt;}
.y44{bottom:230.883700pt;}
.y15{bottom:233.759733pt;}
.y9f{bottom:237.599067pt;}
.y73{bottom:240.799733pt;}
.y43{bottom:246.717567pt;}
.y14{bottom:250.083433pt;}
.y72{bottom:256.798633pt;}
.y9e{bottom:261.599067pt;}
.y42{bottom:263.039067pt;}
.y41{bottom:263.044367pt;}
.y12{bottom:265.918767pt;}
.y13{bottom:265.918933pt;}
.y71{bottom:273.123967pt;}
.y9c{bottom:277.438233pt;}
.y9d{bottom:277.440000pt;}
.y40{bottom:278.878233pt;}
.y11{bottom:282.240267pt;}
.y70{bottom:288.957833pt;}
.y9b{bottom:293.763567pt;}
.y3f{bottom:295.199733pt;}
.y3e{bottom:295.203567pt;}
.y10{bottom:298.077967pt;}
.y6f{bottom:305.284633pt;}
.y9a{bottom:309.599067pt;}
.y3d{bottom:311.039067pt;}
.yf{bottom:314.399467pt;}
.y6e{bottom:321.120133pt;}
.y99{bottom:325.920400pt;}
.y98{bottom:325.924233pt;}
.ye{bottom:330.240267pt;}
.y3c{bottom:335.044367pt;}
.y6d{bottom:337.440000pt;}
.y97{bottom:341.759733pt;}
.yd{bottom:346.563967pt;}
.y3b{bottom:350.879867pt;}
.y6c{bottom:353.279333pt;}
.y96{bottom:358.084900pt;}
.yc{bottom:362.397700pt;}
.y3a{bottom:367.199733pt;}
.y6b{bottom:369.599067pt;}
.y95{bottom:373.920400pt;}
.yb{bottom:378.724500pt;}
.y39{bottom:383.039067pt;}
.y38{bottom:383.044367pt;}
.y6a{bottom:385.438233pt;}
.y94{bottom:390.244100pt;}
.ya{bottom:394.558367pt;}
.y6{bottom:394.560000pt;}
.y36{bottom:398.878233pt;}
.y37{bottom:398.879867pt;}
.y69{bottom:401.763567pt;}
.y93{bottom:406.079600pt;}
.y9{bottom:410.879867pt;}
.y8{bottom:410.883700pt;}
.y35{bottom:415.199733pt;}
.y68{bottom:417.599067pt;}
.y92{bottom:422.399467pt;}
.y91{bottom:422.404767pt;}
.y7{bottom:426.719200pt;}
.y34{bottom:431.039067pt;}
.y67{bottom:433.440000pt;}
.y90{bottom:438.244100pt;}
.y33{bottom:447.364233pt;}
.y66{bottom:449.759733pt;}
.y8f{bottom:454.077967pt;}
.y32{bottom:463.203567pt;}
.y64{bottom:465.597433pt;}
.y65{bottom:465.599067pt;}
.y8e{bottom:470.399467pt;}
.y31{bottom:479.039067pt;}
.y63{bottom:481.918933pt;}
.y8d{bottom:486.238500pt;}
.y30{bottom:495.358933pt;}
.y8c{bottom:502.560000pt;}
.y8b{bottom:502.563967pt;}
.y62{bottom:505.440000pt;}
.y2e{bottom:511.198100pt;}
.y2f{bottom:511.199733pt;}
.y8a{bottom:518.404767pt;}
.y61{bottom:521.279333pt;}
.y2d{bottom:527.519600pt;}
.y2c{bottom:527.522067pt;}
.y89{bottom:534.238500pt;}
.y60{bottom:537.120133pt;}
.y88{bottom:550.563967pt;}
.y2b{bottom:551.039067pt;}
.y2a{bottom:551.044367pt;}
.y5{bottom:552.000000pt;}
.y5f{bottom:553.443833pt;}
.y87{bottom:566.399467pt;}
.y29{bottom:566.879867pt;}
.y5e{bottom:569.277567pt;}
.y28{bottom:582.719200pt;}
.y5d{bottom:585.604500pt;}
.y86{bottom:598.560000pt;}
.y27{bottom:599.044367pt;}
.y5c{bottom:601.443833pt;}
.y3{bottom:612.468667pt;}
.y4{bottom:612.479067pt;}
.y85{bottom:614.399467pt;}
.y25{bottom:614.878233pt;}
.y26{bottom:614.879867pt;}
.y5b{bottom:617.277567pt;}
.y24{bottom:631.199733pt;}
.y23{bottom:631.203567pt;}
.y5a{bottom:633.599067pt;}
.y84{bottom:637.918767pt;}
.y2{bottom:641.279333pt;}
.y22{bottom:647.044367pt;}
.y59{bottom:649.443833pt;}
.y83{bottom:654.240267pt;}
.y82{bottom:654.244100pt;}
.y21{bottom:662.879867pt;}
.y57{bottom:665.277567pt;}
.y58{bottom:665.279333pt;}
.y81{bottom:670.079600pt;}
.y20{bottom:678.719200pt;}
.y56{bottom:681.599067pt;}
.yae{bottom:684.959467pt;}
.y80{bottom:685.920400pt;}
.y1f{bottom:695.039067pt;}
.y55{bottom:697.440000pt;}
.y54{bottom:697.443833pt;}
.y1{bottom:697.918933pt;}
.yac{bottom:701.277567pt;}
.yad{bottom:701.279333pt;}
.y7f{bottom:702.240267pt;}
.y1e{bottom:710.879867pt;}
.y53{bottom:713.277567pt;}
.yab{bottom:717.599067pt;}
.y7e{bottom:718.079600pt;}
.y1d{bottom:727.199733pt;}
.y52{bottom:729.599067pt;}
.yaa{bottom:733.440000pt;}
.y7d{bottom:734.399467pt;}
.h17{height:39.632812pt;}
.h1a{height:39.912109pt;}
.h1f{height:40.546224pt;}
.h1e{height:41.200195pt;}
.h19{height:41.656250pt;}
.h13{height:41.875000pt;}
.h18{height:42.328125pt;}
.h15{height:42.529297pt;}
.h1c{height:43.837891pt;}
.h16{height:44.343750pt;}
.h14{height:44.492188pt;}
.h1b{height:44.500000pt;}
.h2b{height:49.367188pt;}
.h2c{height:50.380859pt;}
.h20{height:51.035156pt;}
.h2f{height:51.062500pt;}
.h28{height:51.689453pt;}
.h29{height:52.317708pt;}
.h11{height:52.343750pt;}
.h30{height:52.406250pt;}
.h21{height:52.971680pt;}
.hf{height:52.972346pt;}
.hb{height:52.998047pt;}
.hd{height:53.004580pt;}
.he{height:53.005114pt;}
.h27{height:53.539062pt;}
.h31{height:53.625651pt;}
.h26{height:53.652344pt;}
.h2a{height:54.279622pt;}
.hc{height:54.306641pt;}
.h22{height:54.960938pt;}
.h24{height:55.615234pt;}
.h25{height:55.625000pt;}
.h32{height:58.406250pt;}
.h10{height:60.492188pt;}
.h8{height:62.781250pt;}
.h23{height:63.273438pt;}
.h35{height:63.968750pt;}
.h1d{height:64.664062pt;}
.h12{height:66.054688pt;}
.h9{height:92.476562pt;}
.h2{height:94.218750pt;}
.h3{height:96.181641pt;}
.h5{height:97.441732pt;}
.h6{height:98.093750pt;}
.h4{height:99.437500pt;}
.h7{height:145.320312pt;}
.ha{height:257.328125pt;}
.h1{height:778.000000pt;}
.h0{height:778.080000pt;}
.h33{height:781.918667pt;}
.h34{height:782.000000pt;}
.h2e{height:784.000000pt;}
.h2d{height:784.320000pt;}
.w1{width:566.666667pt;}
.w0{width:566.880000pt;}
.w4{width:572.000000pt;}
.w3{width:572.161053pt;}
.w2{width:576.000000pt;}
.x0{left:0.000000pt;}
.x42{left:57.120133pt;}
.x2e{left:58.079600pt;}
.x24{left:59.040533pt;}
.x5d{left:60.480533pt;}
.x31{left:71.519600pt;}
.x32{left:82.079600pt;}
.x6e{left:83.040533pt;}
.xe{left:93.599867pt;}
.x7{left:94.560000pt;}
.x1{left:96.000000pt;}
.x62{left:97.920400pt;}
.x13{left:99.360400pt;}
.x78{left:100.319853pt;}
.x5b{left:103.680133pt;}
.x57{left:104.639600pt;}
.x52{left:105.602667pt;}
.x48{left:106.560000pt;}
.x3a{left:108.480400pt;}
.x14{left:111.839333pt;}
.x77{left:116.160667pt;}
.x74{left:120.959467pt;}
.x69{left:124.800267pt;}
.x1d{left:125.759733pt;}
.x12{left:127.199733pt;}
.x75{left:131.040533pt;}
.x6f{left:135.839333pt;}
.x33{left:136.800267pt;}
.x1e{left:137.759733pt;}
.x6a{left:139.199733pt;}
.x58{left:141.600533pt;}
.x4f{left:142.560000pt;}
.x9{left:144.480400pt;}
.x34{left:147.360400pt;}
.x20{left:151.199733pt;}
.x1f{left:156.480400pt;}
.x6b{left:157.440000pt;}
.x2a{left:158.399467pt;}
.x67{left:159.360400pt;}
.x3{left:162.240267pt;}
.xa{left:164.639600pt;}
.x21{left:165.600533pt;}
.x76{left:167.040533pt;}
.x2b{left:170.399467pt;}
.x68{left:172.800267pt;}
.x70{left:178.079600pt;}
.x79{left:180.480520pt;}
.xb{left:181.440000pt;}
.x2{left:189.120133pt;}
.xc{left:190.560000pt;}
.x7a{left:191.999987pt;}
.x22{left:194.399467pt;}
.x50{left:197.279333pt;}
.x15{left:199.199733pt;}
.x23{left:204.000000pt;}
.x51{left:209.279333pt;}
.xd{left:212.160667pt;}
.x16{left:213.120133pt;}
.x60{left:222.240267pt;}
.x4{left:224.639600pt;}
.x43{left:228.480400pt;}
.x61{left:234.720667pt;}
.x27{left:236.160667pt;}
.x44{left:240.959467pt;}
.x71{left:242.399467pt;}
.x5{left:247.199733pt;}
.x17{left:252.000000pt;}
.x3b{left:258.720667pt;}
.x10{left:261.600533pt;}
.x3c{left:269.759733pt;}
.x18{left:275.040533pt;}
.x11{left:277.920400pt;}
.x8{left:280.319867pt;}
.x49{left:288.000000pt;}
.x72{left:289.440000pt;}
.x28{left:291.360400pt;}
.x4a{left:301.440000pt;}
.x29{left:302.879867pt;}
.x7b{left:311.999987pt;}
.x3d{left:312.959467pt;}
.x73{left:314.399467pt;}
.x59{left:324.959467pt;}
.x25{left:325.920400pt;}
.x2c{left:328.319867pt;}
.x3e{left:331.199733pt;}
.x26{left:339.360400pt;}
.x4b{left:340.800267pt;}
.x6{left:342.240267pt;}
.x2d{left:346.079600pt;}
.x5a{left:347.040533pt;}
.x54{left:352.319867pt;}
.xf{left:357.600533pt;}
.x53{left:360.000000pt;}
.x55{left:365.759733pt;}
.x5c{left:368.639600pt;}
.x6c{left:374.879867pt;}
.x4c{left:375.839333pt;}
.x66{left:381.600533pt;}
.x19{left:385.440000pt;}
.x4d{left:386.399467pt;}
.x35{left:389.759733pt;}
.x6d{left:399.360400pt;}
.x36{left:402.720667pt;}
.x1a{left:404.160667pt;}
.x2f{left:410.399467pt;}
.x1b{left:421.440000pt;}
.x30{left:424.800267pt;}
.x45{left:430.560000pt;}
.x4e{left:440.160667pt;}
.x46{left:444.480400pt;}
.x38{left:446.399467pt;}
.x3f{left:455.040533pt;}
.x64{left:456.480400pt;}
.x39{left:460.319867pt;}
.x65{left:470.399467pt;}
.x5e{left:475.199733pt;}
.x40{left:478.560000pt;}
.x5f{left:489.120133pt;}
.x41{left:491.040533pt;}
.x1c{left:499.199733pt;}
.x37{left:500.639600pt;}
.x63{left:505.440000pt;}
.x56{left:540.959467pt;}
.x47{left:561.600533pt;}
}




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