
    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_bbb55d450c1603a2fd8cee4d.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_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d4621661639e6487bb0b4eff.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d4a04f94b0ef4f2134a08b72.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b337886f6c75e14e8f8bbdab.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_ccdb16e6c07ab285e33fb679.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.575000;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_b337886f6c75e14e8f8bbdab.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8a964b6a55f2163c09704403.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0d33a767cb60a1034e0e9b93.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_79ecde3b25f42778ca66472d.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m3d{transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055000,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m23{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.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.390000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425000,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.497500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.675000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
._0{margin-left:-7.534981px;}
.fc0{color:transparent;}
.fs2{font-size:30.000000px;}
.fs9{font-size:42.000000px;}
.fs7{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:78.000000px;}
.fs0{font-size:120.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y3f{bottom:88.500000px;}
.y3e{bottom:88.875000px;}
.y7b{bottom:93.750000px;}
.y7a{bottom:94.125000px;}
.y79{bottom:94.423500px;}
.ybc{bottom:94.500000px;}
.y78{bottom:94.798500px;}
.ybb{bottom:95.548500px;}
.yba{bottom:97.798500px;}
.y10b{bottom:105.223500px;}
.y10a{bottom:105.523500px;}
.y3c{bottom:105.750000px;}
.y3d{bottom:105.823500px;}
.y109{bottom:105.898500px;}
.y77{bottom:111.750000px;}
.yb9{bottom:114.298500px;}
.y107{bottom:122.473500px;}
.y108{bottom:123.150000px;}
.y76{bottom:125.775000px;}
.y75{bottom:126.900000px;}
.yb8{bottom:130.875000px;}
.y106{bottom:139.348500px;}
.y73{bottom:142.650000px;}
.y74{bottom:142.723500px;}
.y72{bottom:144.150000px;}
.yb7{bottom:147.448500px;}
.yb6{bottom:149.548500px;}
.y3b{bottom:150.750000px;}
.y105{bottom:155.923500px;}
.y104{bottom:156.298500px;}
.y71{bottom:160.723500px;}
.y70{bottom:162.073500px;}
.yb5{bottom:166.875000px;}
.y3a{bottom:170.848500px;}
.y39{bottom:170.923500px;}
.y102{bottom:172.798500px;}
.y103{bottom:172.875000px;}
.yb4{bottom:178.348500px;}
.y6f{bottom:178.650000px;}
.yb3{bottom:178.723500px;}
.yb2{bottom:181.650000px;}
.yb1{bottom:184.500000px;}
.y100{bottom:189.750000px;}
.y101{bottom:189.823500px;}
.y38{bottom:191.098500px;}
.y6e{bottom:194.173500px;}
.y6d{bottom:195.598500px;}
.yb0{bottom:200.400000px;}
.yff{bottom:206.698500px;}
.y37{bottom:211.198500px;}
.yaf{bottom:215.473500px;}
.yfe{bottom:223.275000px;}
.y36{bottom:231.750000px;}
.yae{bottom:232.348500px;}
.yad{bottom:234.525000px;}
.yfd{bottom:240.525000px;}
.y6c{bottom:241.275000px;}
.y6b{bottom:241.650000px;}
.y6a{bottom:242.775000px;}
.yac{bottom:250.423500px;}
.yab{bottom:251.400000px;}
.y34{bottom:251.548500px;}
.y35{bottom:251.625000px;}
.yfb{bottom:256.723500px;}
.yfc{bottom:257.098500px;}
.y69{bottom:262.198500px;}
.yaa{bottom:266.625000px;}
.y33{bottom:272.098500px;}
.yfa{bottom:274.048500px;}
.y68{bottom:281.698500px;}
.ya9{bottom:282.448500px;}
.ya8{bottom:285.298500px;}
.yf9{bottom:290.923500px;}
.y32{bottom:291.898500px;}
.y31{bottom:292.273500px;}
.y67{bottom:300.750000px;}
.ya7{bottom:300.823500px;}
.y66{bottom:301.423500px;}
.ya6{bottom:301.798500px;}
.y65{bottom:302.548500px;}
.y30{bottom:311.698500px;}
.y2f{bottom:312.000000px;}
.y64{bottom:321.598500px;}
.y2e{bottom:331.798500px;}
.y2d{bottom:331.875000px;}
.y63{bottom:341.398500px;}
.y62{bottom:343.198500px;}
.yf7{bottom:346.723500px;}
.yf8{bottom:347.098500px;}
.ya5{bottom:347.923500px;}
.y2c{bottom:351.673500px;}
.y2b{bottom:351.973500px;}
.y2a{bottom:352.048500px;}
.y61{bottom:361.500000px;}
.ya4{bottom:368.098500px;}
.y29{bottom:372.148500px;}
.yf5{bottom:376.273500px;}
.yf6{bottom:377.023500px;}
.y60{bottom:382.423500px;}
.ya3{bottom:387.898500px;}
.y28{bottom:392.023500px;}
.yf4{bottom:397.125000px;}
.y5f{bottom:401.548500px;}
.ya2{bottom:408.448500px;}
.y27{bottom:411.823500px;}
.y26{bottom:412.125000px;}
.y25{bottom:412.500000px;}
.yf1{bottom:416.923500px;}
.yf2{bottom:417.298500px;}
.yf3{bottom:417.673500px;}
.y5e{bottom:421.648500px;}
.ya1{bottom:427.875000px;}
.y24{bottom:431.923500px;}
.y23{bottom:432.000000px;}
.yf0{bottom:436.798500px;}
.y5d{bottom:441.823500px;}
.ya0{bottom:447.673500px;}
.y22{bottom:452.098500px;}
.y21{bottom:452.398500px;}
.y20{bottom:452.473500px;}
.yed{bottom:456.898500px;}
.yee{bottom:457.573500px;}
.yef{bottom:457.648500px;}
.y5c{bottom:462.000000px;}
.y5b{bottom:463.048500px;}
.y5a{bottom:463.125000px;}
.y9f{bottom:465.673500px;}
.y9e{bottom:466.348500px;}
.y9d{bottom:468.523500px;}
.y1f{bottom:472.273500px;}
.y1e{bottom:473.323500px;}
.yec{bottom:477.073500px;}
.y59{bottom:481.798500px;}
.y1d{bottom:485.173500px;}
.y9c{bottom:488.023500px;}
.y1c{bottom:492.375000px;}
.y1b{bottom:492.448500px;}
.ye8{bottom:496.500000px;}
.ye9{bottom:496.798500px;}
.yea{bottom:497.548500px;}
.yeb{bottom:497.923500px;}
.y58{bottom:501.898500px;}
.y9b{bottom:507.750000px;}
.y17{bottom:511.875000px;}
.y18{bottom:512.173500px;}
.y19{bottom:512.250000px;}
.y1a{bottom:512.548500px;}
.y16{bottom:512.625000px;}
.y15{bottom:512.923500px;}
.y14{bottom:513.298500px;}
.ye6{bottom:516.298500px;}
.ye7{bottom:516.973500px;}
.y57{bottom:522.448500px;}
.y9a{bottom:528.298500px;}
.y13{bottom:532.348500px;}
.ye5{bottom:537.148500px;}
.y56{bottom:542.250000px;}
.y99{bottom:548.098500px;}
.y12{bottom:552.523500px;}
.ye4{bottom:556.948500px;}
.y55{bottom:562.423500px;}
.y98{bottom:570.075000px;}
.y11{bottom:573.000000px;}
.ye1{bottom:576.375000px;}
.ye2{bottom:576.750000px;}
.ye3{bottom:577.200000px;}
.y54{bottom:582.598500px;}
.y97{bottom:588.450000px;}
.y10{bottom:592.500000px;}
.yf{bottom:592.875000px;}
.ye{bottom:593.923500px;}
.ydf{bottom:596.548500px;}
.ye0{bottom:597.598500px;}
.y53{bottom:602.398500px;}
.y96{bottom:606.450000px;}
.y95{bottom:608.548500px;}
.y94{bottom:610.048500px;}
.yd{bottom:612.673500px;}
.ydb{bottom:617.098500px;}
.ydc{bottom:617.773500px;}
.ydd{bottom:618.148500px;}
.yde{bottom:618.523500px;}
.y52{bottom:623.325000px;}
.y93{bottom:627.673500px;}
.yc{bottom:632.773500px;}
.yda{bottom:636.598500px;}
.y51{bottom:642.000000px;}
.y92{bottom:644.923500px;}
.y91{bottom:646.048500px;}
.y90{bottom:648.900000px;}
.yb{bottom:652.275000px;}
.ya{bottom:652.650000px;}
.y9{bottom:652.948500px;}
.y8{bottom:653.323500px;}
.y7{bottom:653.698500px;}
.yd9{bottom:658.125000px;}
.y50{bottom:662.848500px;}
.y8f{bottom:667.650000px;}
.y6{bottom:672.375000px;}
.yd6{bottom:676.875000px;}
.yd7{bottom:677.923500px;}
.yd8{bottom:678.298500px;}
.y4f{bottom:682.650000px;}
.y4e{bottom:683.098500px;}
.y8e{bottom:684.900000px;}
.y8d{bottom:685.198500px;}
.y8c{bottom:687.823500px;}
.y8b{bottom:691.048500px;}
.y8a{bottom:691.348500px;}
.yd4{bottom:696.598500px;}
.yd5{bottom:697.798500px;}
.y4d{bottom:702.823500px;}
.y89{bottom:708.000000px;}
.yd2{bottom:717.900000px;}
.yd3{bottom:718.573500px;}
.y5{bottom:720.598500px;}
.y4c{bottom:723.000000px;}
.y88{bottom:727.798500px;}
.yd0{bottom:735.900000px;}
.yd1{bottom:736.573500px;}
.y4b{bottom:743.098500px;}
.y87{bottom:748.275000px;}
.ycd{bottom:757.125000px;}
.yce{bottom:757.500000px;}
.ycf{bottom:758.173500px;}
.y4a{bottom:762.973500px;}
.y86{bottom:768.375000px;}
.ycc{bottom:777.598500px;}
.y49{bottom:782.775000px;}
.y4{bottom:787.650000px;}
.y85{bottom:788.250000px;}
.y3{bottom:788.323500px;}
.yca{bottom:796.348500px;}
.ycb{bottom:797.775000px;}
.y48{bottom:802.573500px;}
.y47{bottom:803.250000px;}
.y84{bottom:808.348500px;}
.yc7{bottom:816.525000px;}
.yc8{bottom:816.598500px;}
.yc9{bottom:817.650000px;}
.y2{bottom:821.098500px;}
.y1{bottom:821.848500px;}
.y46{bottom:823.050000px;}
.y83{bottom:828.525000px;}
.yc6{bottom:837.750000px;}
.y45{bottom:842.848500px;}
.y82{bottom:848.323500px;}
.yc4{bottom:856.875000px;}
.yc5{bottom:858.300000px;}
.y44{bottom:863.025000px;}
.y81{bottom:867.750000px;}
.y80{bottom:871.723500px;}
.yc3{bottom:878.098500px;}
.y43{bottom:883.198500px;}
.y7f{bottom:888.300000px;}
.yc2{bottom:896.775000px;}
.y42{bottom:902.625000px;}
.y41{bottom:903.375000px;}
.y7e{bottom:907.800000px;}
.y7d{bottom:912.823500px;}
.ybf{bottom:916.948500px;}
.ybe{bottom:917.025000px;}
.yc0{bottom:918.073500px;}
.yc1{bottom:918.750000px;}
.y40{bottom:940.425000px;}
.y7c{bottom:945.525000px;}
.ybd{bottom:955.500000px;}
.h3{height:29.443359px;}
.h12{height:41.200195px;}
.h9{height:47.085938px;}
.h6{height:52.998047px;}
.h7{height:58.886719px;}
.h5{height:64.775391px;}
.hb{height:66.515625px;}
.h8{height:69.164062px;}
.he{height:70.422000px;}
.h10{height:70.628906px;}
.h4{height:70.664062px;}
.h11{height:72.562500px;}
.hc{height:76.552734px;}
.h1{height:117.773438px;}
.h2{height:123.662109px;}
.ha{height:1020.000000px;}
.hd{height:1021.500000px;}
.h0{height:1024.500000px;}
.hf{height:1027.500000px;}
.w3{width:669.000000px;}
.w2{width:676.500000px;}
.w1{width:682.500000px;}
.w0{width:687.000000px;}
.x0{left:0.000000px;}
.x66{left:40.350000px;}
.x68{left:46.425000px;}
.x60{left:50.400000px;}
.x5d{left:52.575000px;}
.x56{left:54.000000px;}
.x54{left:55.050000px;}
.x50{left:56.550000px;}
.x10{left:62.625000px;}
.x27{left:64.800000px;}
.x1{left:65.850000px;}
.x65{left:67.650000px;}
.x63{left:69.825000px;}
.x4{left:78.150000px;}
.x5f{left:80.250000px;}
.x5c{left:81.375000px;}
.x55{left:82.425000px;}
.x51{left:83.550000px;}
.x52{left:84.600000px;}
.x35{left:86.400000px;}
.x67{left:87.825000px;}
.x64{left:88.950000px;}
.x57{left:91.800000px;}
.x7{left:93.225000px;}
.x32{left:94.350000px;}
.x70{left:95.775000px;}
.x73{left:96.823500px;}
.x83{left:98.250000px;}
.x4a{left:100.050000px;}
.x3d{left:102.600000px;}
.x3b{left:103.650000px;}
.x1a{left:104.775000px;}
.x8d{left:114.150000px;}
.x58{left:118.425000px;}
.x8b{left:119.550000px;}
.x49{left:120.600000px;}
.x47{left:122.025000px;}
.x71{left:124.575000px;}
.x7c{left:125.625000px;}
.x85{left:126.750000px;}
.x6c{left:128.175000px;}
.x3f{left:130.350000px;}
.x3c{left:131.400000px;}
.x79{left:133.575000px;}
.x8c{left:138.600000px;}
.x48{left:140.775000px;}
.x74{left:146.550000px;}
.x53{left:155.175000px;}
.x38{left:159.150000px;}
.x76{left:166.350000px;}
.xc{left:170.250000px;}
.x33{left:173.550000px;}
.x84{left:186.825000px;}
.x41{left:190.050000px;}
.x28{left:191.175000px;}
.x40{left:193.350000px;}
.x30{left:195.450000px;}
.x4e{left:199.800000px;}
.x75{left:201.975000px;}
.x8{left:206.250000px;}
.x1b{left:212.023500px;}
.x3e{left:213.825000px;}
.x42{left:214.950000px;}
.x22{left:220.648500px;}
.x9{left:222.825000px;}
.x86{left:223.950000px;}
.xd{left:228.975000px;}
.x6d{left:230.400000px;}
.x82{left:231.450000px;}
.x36{left:232.950000px;}
.x23{left:236.550000px;}
.x90{left:238.350000px;}
.x11{left:239.775000px;}
.x24{left:242.250000px;}
.x12{left:245.850000px;}
.x34{left:247.650000px;}
.x29{left:249.450000px;}
.x5e{left:250.575000px;}
.x7d{left:252.375000px;}
.xe{left:253.425000px;}
.x31{left:255.975000px;}
.x1c{left:275.775000px;}
.x4f{left:279.000000px;}
.x5{left:282.600000px;}
.xa{left:286.200000px;}
.x2a{left:302.775000px;}
.x20{left:314.250000px;}
.x6b{left:320.400000px;}
.x37{left:325.800000px;}
.x91{left:336.600000px;}
.xf{left:341.250000px;}
.x39{left:342.750000px;}
.xb{left:348.825000px;}
.x89{left:350.250000px;}
.x77{left:353.550000px;}
.x92{left:359.250000px;}
.x3a{left:370.050000px;}
.x2f{left:376.950000px;}
.x7e{left:379.050000px;}
.x7a{left:385.575000px;}
.x7b{left:388.048500px;}
.x1d{left:389.548500px;}
.x88{left:395.625000px;}
.x19{left:397.048500px;}
.x6a{left:402.825000px;}
.x25{left:405.375000px;}
.x1e{left:408.975000px;}
.x87{left:425.173500px;}
.x5a{left:427.650000px;}
.x61{left:429.825000px;}
.x62{left:433.048500px;}
.x8a{left:434.548500px;}
.x26{left:442.798500px;}
.x13{left:449.625000px;}
.x21{left:455.400000px;}
.x17{left:457.950000px;}
.x14{left:465.150000px;}
.x2{left:468.000000px;}
.x15{left:471.225000px;}
.x5b{left:474.150000px;}
.x2b{left:479.850000px;}
.x16{left:483.825000px;}
.x1f{left:484.950000px;}
.x18{left:489.225000px;}
.x72{left:496.800000px;}
.x7f{left:501.450000px;}
.x45{left:512.250000px;}
.x59{left:513.375000px;}
.x46{left:514.800000px;}
.x2c{left:525.225000px;}
.x69{left:526.350000px;}
.x2e{left:529.200000px;}
.x43{left:530.250000px;}
.x6e{left:533.175000px;}
.x6{left:536.775000px;}
.x4b{left:540.000000px;}
.x2d{left:548.625000px;}
.x4c{left:551.550000px;}
.x6f{left:556.575000px;}
.x78{left:559.800000px;}
.x80{left:569.850000px;}
.x3{left:573.825000px;}
.x81{left:589.650000px;}
.x8e{left:601.575000px;}
.x44{left:608.775000px;}
.x8f{left:613.425000px;}
.x4d{left:616.650000px;}
@media print{
.v1{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-6.697761pt;}
.fs2{font-size:26.666667pt;}
.fs9{font-size:37.333333pt;}
.fs7{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:69.333333pt;}
.fs0{font-size:106.666667pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y3f{bottom:78.666667pt;}
.y3e{bottom:79.000000pt;}
.y7b{bottom:83.333333pt;}
.y7a{bottom:83.666667pt;}
.y79{bottom:83.932000pt;}
.ybc{bottom:84.000000pt;}
.y78{bottom:84.265333pt;}
.ybb{bottom:84.932000pt;}
.yba{bottom:86.932000pt;}
.y10b{bottom:93.532000pt;}
.y10a{bottom:93.798667pt;}
.y3c{bottom:94.000000pt;}
.y3d{bottom:94.065333pt;}
.y109{bottom:94.132000pt;}
.y77{bottom:99.333333pt;}
.yb9{bottom:101.598667pt;}
.y107{bottom:108.865333pt;}
.y108{bottom:109.466667pt;}
.y76{bottom:111.800000pt;}
.y75{bottom:112.800000pt;}
.yb8{bottom:116.333333pt;}
.y106{bottom:123.865333pt;}
.y73{bottom:126.800000pt;}
.y74{bottom:126.865333pt;}
.y72{bottom:128.133333pt;}
.yb7{bottom:131.065333pt;}
.yb6{bottom:132.932000pt;}
.y3b{bottom:134.000000pt;}
.y105{bottom:138.598667pt;}
.y104{bottom:138.932000pt;}
.y71{bottom:142.865333pt;}
.y70{bottom:144.065333pt;}
.yb5{bottom:148.333333pt;}
.y3a{bottom:151.865333pt;}
.y39{bottom:151.932000pt;}
.y102{bottom:153.598667pt;}
.y103{bottom:153.666667pt;}
.yb4{bottom:158.532000pt;}
.y6f{bottom:158.800000pt;}
.yb3{bottom:158.865333pt;}
.yb2{bottom:161.466667pt;}
.yb1{bottom:164.000000pt;}
.y100{bottom:168.666667pt;}
.y101{bottom:168.732000pt;}
.y38{bottom:169.865333pt;}
.y6e{bottom:172.598667pt;}
.y6d{bottom:173.865333pt;}
.yb0{bottom:178.133333pt;}
.yff{bottom:183.732000pt;}
.y37{bottom:187.732000pt;}
.yaf{bottom:191.532000pt;}
.yfe{bottom:198.466667pt;}
.y36{bottom:206.000000pt;}
.yae{bottom:206.532000pt;}
.yad{bottom:208.466667pt;}
.yfd{bottom:213.800000pt;}
.y6c{bottom:214.466667pt;}
.y6b{bottom:214.800000pt;}
.y6a{bottom:215.800000pt;}
.yac{bottom:222.598667pt;}
.yab{bottom:223.466667pt;}
.y34{bottom:223.598667pt;}
.y35{bottom:223.666667pt;}
.yfb{bottom:228.198667pt;}
.yfc{bottom:228.532000pt;}
.y69{bottom:233.065333pt;}
.yaa{bottom:237.000000pt;}
.y33{bottom:241.865333pt;}
.yfa{bottom:243.598667pt;}
.y68{bottom:250.398667pt;}
.ya9{bottom:251.065333pt;}
.ya8{bottom:253.598667pt;}
.yf9{bottom:258.598667pt;}
.y32{bottom:259.465333pt;}
.y31{bottom:259.798667pt;}
.y67{bottom:267.333333pt;}
.ya7{bottom:267.398667pt;}
.y66{bottom:267.932000pt;}
.ya6{bottom:268.265333pt;}
.y65{bottom:268.932000pt;}
.y30{bottom:277.065333pt;}
.y2f{bottom:277.333333pt;}
.y64{bottom:285.865333pt;}
.y2e{bottom:294.932000pt;}
.y2d{bottom:295.000000pt;}
.y63{bottom:303.465333pt;}
.y62{bottom:305.065333pt;}
.yf7{bottom:308.198667pt;}
.yf8{bottom:308.532000pt;}
.ya5{bottom:309.265333pt;}
.y2c{bottom:312.598667pt;}
.y2b{bottom:312.865333pt;}
.y2a{bottom:312.932000pt;}
.y61{bottom:321.333333pt;}
.ya4{bottom:327.198667pt;}
.y29{bottom:330.798667pt;}
.yf5{bottom:334.465333pt;}
.yf6{bottom:335.132000pt;}
.y60{bottom:339.932000pt;}
.ya3{bottom:344.798667pt;}
.y28{bottom:348.465333pt;}
.yf4{bottom:353.000000pt;}
.y5f{bottom:356.932000pt;}
.ya2{bottom:363.065333pt;}
.y27{bottom:366.065333pt;}
.y26{bottom:366.333333pt;}
.y25{bottom:366.666667pt;}
.yf1{bottom:370.598667pt;}
.yf2{bottom:370.932000pt;}
.yf3{bottom:371.265333pt;}
.y5e{bottom:374.798667pt;}
.ya1{bottom:380.333333pt;}
.y24{bottom:383.932000pt;}
.y23{bottom:384.000000pt;}
.yf0{bottom:388.265333pt;}
.y5d{bottom:392.732000pt;}
.ya0{bottom:397.932000pt;}
.y22{bottom:401.865333pt;}
.y21{bottom:402.132000pt;}
.y20{bottom:402.198667pt;}
.yed{bottom:406.132000pt;}
.yee{bottom:406.732000pt;}
.yef{bottom:406.798667pt;}
.y5c{bottom:410.666667pt;}
.y5b{bottom:411.598667pt;}
.y5a{bottom:411.666667pt;}
.y9f{bottom:413.932000pt;}
.y9e{bottom:414.532000pt;}
.y9d{bottom:416.465333pt;}
.y1f{bottom:419.798667pt;}
.y1e{bottom:420.732000pt;}
.yec{bottom:424.065333pt;}
.y59{bottom:428.265333pt;}
.y1d{bottom:431.265333pt;}
.y9c{bottom:433.798667pt;}
.y1c{bottom:437.666667pt;}
.y1b{bottom:437.732000pt;}
.ye8{bottom:441.333333pt;}
.ye9{bottom:441.598667pt;}
.yea{bottom:442.265333pt;}
.yeb{bottom:442.598667pt;}
.y58{bottom:446.132000pt;}
.y9b{bottom:451.333333pt;}
.y17{bottom:455.000000pt;}
.y18{bottom:455.265333pt;}
.y19{bottom:455.333333pt;}
.y1a{bottom:455.598667pt;}
.y16{bottom:455.666667pt;}
.y15{bottom:455.932000pt;}
.y14{bottom:456.265333pt;}
.ye6{bottom:458.932000pt;}
.ye7{bottom:459.532000pt;}
.y57{bottom:464.398667pt;}
.y9a{bottom:469.598667pt;}
.y13{bottom:473.198667pt;}
.ye5{bottom:477.465333pt;}
.y56{bottom:482.000000pt;}
.y99{bottom:487.198667pt;}
.y12{bottom:491.132000pt;}
.ye4{bottom:495.065333pt;}
.y55{bottom:499.932000pt;}
.y98{bottom:506.733333pt;}
.y11{bottom:509.333333pt;}
.ye1{bottom:512.333333pt;}
.ye2{bottom:512.666667pt;}
.ye3{bottom:513.066667pt;}
.y54{bottom:517.865333pt;}
.y97{bottom:523.066667pt;}
.y10{bottom:526.666667pt;}
.yf{bottom:527.000000pt;}
.ye{bottom:527.932000pt;}
.ydf{bottom:530.265333pt;}
.ye0{bottom:531.198667pt;}
.y53{bottom:535.465333pt;}
.y96{bottom:539.066667pt;}
.y95{bottom:540.932000pt;}
.y94{bottom:542.265333pt;}
.yd{bottom:544.598667pt;}
.ydb{bottom:548.532000pt;}
.ydc{bottom:549.132000pt;}
.ydd{bottom:549.465333pt;}
.yde{bottom:549.798667pt;}
.y52{bottom:554.066667pt;}
.y93{bottom:557.932000pt;}
.yc{bottom:562.465333pt;}
.yda{bottom:565.865333pt;}
.y51{bottom:570.666667pt;}
.y92{bottom:573.265333pt;}
.y91{bottom:574.265333pt;}
.y90{bottom:576.800000pt;}
.yb{bottom:579.800000pt;}
.ya{bottom:580.133333pt;}
.y9{bottom:580.398667pt;}
.y8{bottom:580.732000pt;}
.y7{bottom:581.065333pt;}
.yd9{bottom:585.000000pt;}
.y50{bottom:589.198667pt;}
.y8f{bottom:593.466667pt;}
.y6{bottom:597.666667pt;}
.yd6{bottom:601.666667pt;}
.yd7{bottom:602.598667pt;}
.yd8{bottom:602.932000pt;}
.y4f{bottom:606.800000pt;}
.y4e{bottom:607.198667pt;}
.y8e{bottom:608.800000pt;}
.y8d{bottom:609.065333pt;}
.y8c{bottom:611.398667pt;}
.y8b{bottom:614.265333pt;}
.y8a{bottom:614.532000pt;}
.yd4{bottom:619.198667pt;}
.yd5{bottom:620.265333pt;}
.y4d{bottom:624.732000pt;}
.y89{bottom:629.333333pt;}
.yd2{bottom:638.133333pt;}
.yd3{bottom:638.732000pt;}
.y5{bottom:640.532000pt;}
.y4c{bottom:642.666667pt;}
.y88{bottom:646.932000pt;}
.yd0{bottom:654.133333pt;}
.yd1{bottom:654.732000pt;}
.y4b{bottom:660.532000pt;}
.y87{bottom:665.133333pt;}
.ycd{bottom:673.000000pt;}
.yce{bottom:673.333333pt;}
.ycf{bottom:673.932000pt;}
.y4a{bottom:678.198667pt;}
.y86{bottom:683.000000pt;}
.ycc{bottom:691.198667pt;}
.y49{bottom:695.800000pt;}
.y4{bottom:700.133333pt;}
.y85{bottom:700.666667pt;}
.y3{bottom:700.732000pt;}
.yca{bottom:707.865333pt;}
.ycb{bottom:709.133333pt;}
.y48{bottom:713.398667pt;}
.y47{bottom:714.000000pt;}
.y84{bottom:718.532000pt;}
.yc7{bottom:725.800000pt;}
.yc8{bottom:725.865333pt;}
.yc9{bottom:726.800000pt;}
.y2{bottom:729.865333pt;}
.y1{bottom:730.532000pt;}
.y46{bottom:731.600000pt;}
.y83{bottom:736.466667pt;}
.yc6{bottom:744.666667pt;}
.y45{bottom:749.198667pt;}
.y82{bottom:754.065333pt;}
.yc4{bottom:761.666667pt;}
.yc5{bottom:762.933333pt;}
.y44{bottom:767.133333pt;}
.y81{bottom:771.333333pt;}
.y80{bottom:774.865333pt;}
.yc3{bottom:780.532000pt;}
.y43{bottom:785.065333pt;}
.y7f{bottom:789.600000pt;}
.yc2{bottom:797.133333pt;}
.y42{bottom:802.333333pt;}
.y41{bottom:803.000000pt;}
.y7e{bottom:806.933333pt;}
.y7d{bottom:811.398667pt;}
.ybf{bottom:815.065333pt;}
.ybe{bottom:815.133333pt;}
.yc0{bottom:816.065333pt;}
.yc1{bottom:816.666667pt;}
.y40{bottom:835.933333pt;}
.y7c{bottom:840.466667pt;}
.ybd{bottom:849.333333pt;}
.h3{height:26.171875pt;}
.h12{height:36.622396pt;}
.h9{height:41.854167pt;}
.h6{height:47.109375pt;}
.h7{height:52.343750pt;}
.h5{height:57.578125pt;}
.hb{height:59.125000pt;}
.h8{height:61.479167pt;}
.he{height:62.597333pt;}
.h10{height:62.781250pt;}
.h4{height:62.812500pt;}
.h11{height:64.500000pt;}
.hc{height:68.046875pt;}
.h1{height:104.687500pt;}
.h2{height:109.921875pt;}
.ha{height:906.666667pt;}
.hd{height:908.000000pt;}
.h0{height:910.666667pt;}
.hf{height:913.333333pt;}
.w3{width:594.666667pt;}
.w2{width:601.333333pt;}
.w1{width:606.666667pt;}
.w0{width:610.666667pt;}
.x0{left:0.000000pt;}
.x66{left:35.866667pt;}
.x68{left:41.266667pt;}
.x60{left:44.800000pt;}
.x5d{left:46.733333pt;}
.x56{left:48.000000pt;}
.x54{left:48.933333pt;}
.x50{left:50.266667pt;}
.x10{left:55.666667pt;}
.x27{left:57.600000pt;}
.x1{left:58.533333pt;}
.x65{left:60.133333pt;}
.x63{left:62.066667pt;}
.x4{left:69.466667pt;}
.x5f{left:71.333333pt;}
.x5c{left:72.333333pt;}
.x55{left:73.266667pt;}
.x51{left:74.266667pt;}
.x52{left:75.200000pt;}
.x35{left:76.800000pt;}
.x67{left:78.066667pt;}
.x64{left:79.066667pt;}
.x57{left:81.600000pt;}
.x7{left:82.866667pt;}
.x32{left:83.866667pt;}
.x70{left:85.133333pt;}
.x73{left:86.065333pt;}
.x83{left:87.333333pt;}
.x4a{left:88.933333pt;}
.x3d{left:91.200000pt;}
.x3b{left:92.133333pt;}
.x1a{left:93.133333pt;}
.x8d{left:101.466667pt;}
.x58{left:105.266667pt;}
.x8b{left:106.266667pt;}
.x49{left:107.200000pt;}
.x47{left:108.466667pt;}
.x71{left:110.733333pt;}
.x7c{left:111.666667pt;}
.x85{left:112.666667pt;}
.x6c{left:113.933333pt;}
.x3f{left:115.866667pt;}
.x3c{left:116.800000pt;}
.x79{left:118.733333pt;}
.x8c{left:123.200000pt;}
.x48{left:125.133333pt;}
.x74{left:130.266667pt;}
.x53{left:137.933333pt;}
.x38{left:141.466667pt;}
.x76{left:147.866667pt;}
.xc{left:151.333333pt;}
.x33{left:154.266667pt;}
.x84{left:166.066667pt;}
.x41{left:168.933333pt;}
.x28{left:169.933333pt;}
.x40{left:171.866667pt;}
.x30{left:173.733333pt;}
.x4e{left:177.600000pt;}
.x75{left:179.533333pt;}
.x8{left:183.333333pt;}
.x1b{left:188.465333pt;}
.x3e{left:190.066667pt;}
.x42{left:191.066667pt;}
.x22{left:196.132000pt;}
.x9{left:198.066667pt;}
.x86{left:199.066667pt;}
.xd{left:203.533333pt;}
.x6d{left:204.800000pt;}
.x82{left:205.733333pt;}
.x36{left:207.066667pt;}
.x23{left:210.266667pt;}
.x90{left:211.866667pt;}
.x11{left:213.133333pt;}
.x24{left:215.333333pt;}
.x12{left:218.533333pt;}
.x34{left:220.133333pt;}
.x29{left:221.733333pt;}
.x5e{left:222.733333pt;}
.x7d{left:224.333333pt;}
.xe{left:225.266667pt;}
.x31{left:227.533333pt;}
.x1c{left:245.133333pt;}
.x4f{left:248.000000pt;}
.x5{left:251.200000pt;}
.xa{left:254.400000pt;}
.x2a{left:269.133333pt;}
.x20{left:279.333333pt;}
.x6b{left:284.800000pt;}
.x37{left:289.600000pt;}
.x91{left:299.200000pt;}
.xf{left:303.333333pt;}
.x39{left:304.666667pt;}
.xb{left:310.066667pt;}
.x89{left:311.333333pt;}
.x77{left:314.266667pt;}
.x92{left:319.333333pt;}
.x3a{left:328.933333pt;}
.x2f{left:335.066667pt;}
.x7e{left:336.933333pt;}
.x7a{left:342.733333pt;}
.x7b{left:344.932000pt;}
.x1d{left:346.265333pt;}
.x88{left:351.666667pt;}
.x19{left:352.932000pt;}
.x6a{left:358.066667pt;}
.x25{left:360.333333pt;}
.x1e{left:363.533333pt;}
.x87{left:377.932000pt;}
.x5a{left:380.133333pt;}
.x61{left:382.066667pt;}
.x62{left:384.932000pt;}
.x8a{left:386.265333pt;}
.x26{left:393.598667pt;}
.x13{left:399.666667pt;}
.x21{left:404.800000pt;}
.x17{left:407.066667pt;}
.x14{left:413.466667pt;}
.x2{left:416.000000pt;}
.x15{left:418.866667pt;}
.x5b{left:421.466667pt;}
.x2b{left:426.533333pt;}
.x16{left:430.066667pt;}
.x1f{left:431.066667pt;}
.x18{left:434.866667pt;}
.x72{left:441.600000pt;}
.x7f{left:445.733333pt;}
.x45{left:455.333333pt;}
.x59{left:456.333333pt;}
.x46{left:457.600000pt;}
.x2c{left:466.866667pt;}
.x69{left:467.866667pt;}
.x2e{left:470.400000pt;}
.x43{left:471.333333pt;}
.x6e{left:473.933333pt;}
.x6{left:477.133333pt;}
.x4b{left:480.000000pt;}
.x2d{left:487.666667pt;}
.x4c{left:490.266667pt;}
.x6f{left:494.733333pt;}
.x78{left:497.600000pt;}
.x80{left:506.533333pt;}
.x3{left:510.066667pt;}
.x81{left:524.133333pt;}
.x8e{left:534.733333pt;}
.x44{left:541.133333pt;}
.x8f{left:545.266667pt;}
.x4d{left:548.133333pt;}
}




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