
    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_9c0811afc8592039e3505ae1.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_10531b19f69afed8f326eafa.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6ce6d8fe76db08f3912d77b6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2b913a5a42cfc869a13240fe.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1d67dcfbf80344726cfd44ad.woff')format("woff");}.ff5{font-family:ff5;line-height:1.364746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_426a7922b2028a63717e3b0f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_dd834d63adc21e3e67f0c541.woff')format("woff");}.ff7{font-family:ff7;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f0e8ce2f28a6af788d00ac35.woff')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5c04a872ef5e2f8d7f45b86c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6574ca59056d4abcde2d3547.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_92aa6a2861b8cbe60268d899.woff')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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7b6944bfda85d67c7a3c7e64.woff')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;}
.m2f{transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163043,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.163194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163194,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168919,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171196,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185714,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196429,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203704,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208333,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211538,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212644,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216667,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220238,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.mb{transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232143,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235632,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236301,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240506,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m1c{transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240964,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242366,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243333,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243671,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m18{transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246753,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m2c{transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252976,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253472,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256494,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257937,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261628,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262821,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263333,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267123,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267647,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272727,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274691,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.284810,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.328125,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.346875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.346875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.346875,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.364583,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.447917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447917,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.476562,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.510204,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.598214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.598214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.598214,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.605769,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605769,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605769,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.021739,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(1.175926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.175926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.175926,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.136750px;}
.v1{vertical-align:11.492250px;}
.ls1b{letter-spacing:-8.249850px;}
.ls1c{letter-spacing:-8.106000px;}
.ls29{letter-spacing:-8.038800px;}
.lsf{letter-spacing:-7.830000px;}
.ls19{letter-spacing:-7.398000px;}
.ls1a{letter-spacing:-7.165950px;}
.lse{letter-spacing:-7.121250px;}
.ls1d{letter-spacing:-7.066500px;}
.ls13{letter-spacing:-5.267325px;}
.ls24{letter-spacing:-4.383225px;}
.ls23{letter-spacing:-3.655575px;}
.lsc{letter-spacing:-3.560625px;}
.ls27{letter-spacing:-2.940000px;}
.ls1f{letter-spacing:-2.922150px;}
.ls10{letter-spacing:-2.854800px;}
.ls22{letter-spacing:-2.310000px;}
.ls17{letter-spacing:-2.194500px;}
.ls20{letter-spacing:-2.103750px;}
.ls1e{letter-spacing:-1.541250px;}
.ls14{letter-spacing:-1.461075px;}
.ls12{letter-spacing:-0.733425px;}
.lsb{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.315000px;}
.ls2{letter-spacing:0.727650px;}
.ls6{letter-spacing:0.733425px;}
.ls0{letter-spacing:1.455300px;}
.ls7{letter-spacing:1.461075px;}
.lsd{letter-spacing:1.587750px;}
.ls16{letter-spacing:1.672575px;}
.ls8{letter-spacing:2.194500px;}
.ls28{letter-spacing:2.281125px;}
.ls9{letter-spacing:2.922150px;}
.ls26{letter-spacing:3.075075px;}
.ls5{letter-spacing:3.655575px;}
.ls18{letter-spacing:4.383225px;}
.ls1{letter-spacing:5.084100px;}
.lsa{letter-spacing:5.116650px;}
.ls25{letter-spacing:5.260950px;}
.ls4{letter-spacing:6.539400px;}
.ls11{letter-spacing:6.577725px;}
.ls3{letter-spacing:7.994700px;}
.ls15{letter-spacing:8.772225px;}
.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;}
._1b{margin-left:-25.876825px;}
._1c{margin-left:-17.390872px;}
._1a{margin-left:-6.022395px;}
._1d{margin-left:-1.674750px;}
._16{width:1.339800px;}
._e{width:2.759034px;}
._c{width:4.361971px;}
._7{width:6.350400px;}
._13{width:7.434525px;}
._9{width:8.595427px;}
._d{width:10.118970px;}
._1{width:11.491200px;}
._b{width:12.981277px;}
._0{width:14.080500px;}
._19{width:15.108068px;}
._f{width:16.315433px;}
._4{width:17.501400px;}
._a{width:18.684098px;}
._2{width:20.601000px;}
._5{width:21.735000px;}
._6{width:23.247000px;}
._11{width:24.423096px;}
._3{width:25.978050px;}
._12{width:27.156150px;}
._8{width:29.389500px;}
._15{width:30.399504px;}
._14{width:31.671914px;}
._10{width:33.848611px;}
._17{width:37.941750px;}
._18{width:38.946746px;}
.fc0{color:transparent;}
.fs16{font-size:18.000000px;}
.fs13{font-size:19.500000px;}
.fs19{font-size:20.250000px;}
.fsb{font-size:21.750000px;}
.fs14{font-size:22.500000px;}
.fs15{font-size:24.000000px;}
.fs12{font-size:30.000000px;}
.fs18{font-size:34.500000px;}
.fs1c{font-size:36.750000px;}
.fs1a{font-size:51.750000px;}
.fs11{font-size:52.500000px;}
.fsc{font-size:54.000000px;}
.fs3{font-size:54.750000px;}
.fsf{font-size:55.500000px;}
.fs2{font-size:56.250000px;}
.fs6{font-size:57.750000px;}
.fs5{font-size:58.500000px;}
.fs9{font-size:59.250000px;}
.fs10{font-size:60.000000px;}
.fsa{font-size:60.750000px;}
.fsd{font-size:62.250000px;}
.fs7{font-size:63.000000px;}
.fs17{font-size:63.750000px;}
.fse{font-size:64.500000px;}
.fs8{font-size:65.250000px;}
.fs1b{font-size:67.500000px;}
.fs4{font-size:69.000000px;}
.fs0{font-size:94.500000px;}
.fs1{font-size:98.250000px;}
.y0{bottom:0.000000px;}
.y36{bottom:98.415000px;}
.y35{bottom:98.417213px;}
.y78{bottom:102.735900px;}
.y77{bottom:102.738112px;}
.y34{bottom:114.255150px;}
.y33{bottom:114.259425px;}
.y76{bottom:118.576050px;}
.y32{bottom:130.097363px;}
.y75{bottom:131.896350px;}
.y74{bottom:134.952937px;}
.y31{bottom:145.935300px;}
.y30{bottom:145.937363px;}
.y73{bottom:150.617625px;}
.y2f{bottom:161.775300px;}
.y72{bottom:166.818525px;}
.yb4{bottom:167.538675px;}
.y2e{bottom:178.335600px;}
.y2d{bottom:178.338675px;}
.yb2{bottom:181.216200px;}
.y71{bottom:183.017400px;}
.y70{bottom:183.020475px;}
.yb3{bottom:183.737550px;}
.y2c{bottom:194.537550px;}
.y6f{bottom:199.580287px;}
.y2b{bottom:210.736425px;}
.yb1{bottom:214.699088px;}
.y6e{bottom:215.418225px;}
.y2a{bottom:226.935300px;}
.y29{bottom:226.935675px;}
.y6d{bottom:231.617100px;}
.y6c{bottom:231.619650px;}
.y28{bottom:243.134550px;}
.y6b{bottom:247.818525px;}
.y27{bottom:259.335600px;}
.y26{bottom:259.335975px;}
.yb0{bottom:259.700775px;}
.y6a{bottom:264.017400px;}
.y25{bottom:275.534850px;}
.yaf{bottom:275.538713px;}
.y69{bottom:279.858413px;}
.yae{bottom:291.376650px;}
.y24{bottom:291.735900px;}
.y68{bottom:296.418225px;}
.yad{bottom:303.616050px;}
.yac{bottom:307.217175px;}
.y23{bottom:307.935300px;}
.y22{bottom:307.937850px;}
.y67{bottom:312.617100px;}
.yab{bottom:323.416050px;}
.yaa{bottom:323.416538px;}
.y21{bottom:324.136725px;}
.y66{bottom:325.217250px;}
.y65{bottom:329.177250px;}
.ya9{bottom:339.976350px;}
.ya8{bottom:339.978563px;}
.y20{bottom:340.335600px;}
.y1f{bottom:340.335975px;}
.y64{bottom:345.376650px;}
.y63{bottom:345.377175px;}
.ya7{bottom:355.816500px;}
.ya6{bottom:355.818525px;}
.y1e{bottom:356.534850px;}
.y1d{bottom:356.537025px;}
.y62{bottom:361.576050px;}
.ya5{bottom:372.017400px;}
.ya4{bottom:372.018300px;}
.y1c{bottom:372.735900px;}
.y61{bottom:373.816950px;}
.y60{bottom:377.416050px;}
.y5f{bottom:377.418225px;}
.ya3{bottom:388.217175px;}
.y1b{bottom:388.935300px;}
.y1a{bottom:388.938338px;}
.y5e{bottom:393.617100px;}
.ya2{bottom:404.416050px;}
.ya1{bottom:404.418600px;}
.y19{bottom:405.498150px;}
.y5d{bottom:409.816350px;}
.y5c{bottom:409.818525px;}
.ya0{bottom:420.617475px;}
.y18{bottom:421.697025px;}
.y5b{bottom:426.017400px;}
.y9f{bottom:436.816350px;}
.y9e{bottom:436.816800px;}
.y17{bottom:438.256838px;}
.y5a{bottom:442.217138px;}
.y9d{bottom:453.737550px;}
.y9c{bottom:453.738112px;}
.y16{bottom:454.816650px;}
.y59{bottom:458.777812px;}
.y9b{bottom:469.576050px;}
.y9a{bottom:469.578563px;}
.y15{bottom:471.015525px;}
.y58{bottom:474.976688px;}
.y99{bottom:485.777438px;}
.y14{bottom:487.575338px;}
.y57{bottom:491.536500px;}
.y56{bottom:491.541413px;}
.y98{bottom:502.337250px;}
.y13{bottom:504.135150px;}
.y12{bottom:504.150075px;}
.y55{bottom:507.740288px;}
.y97{bottom:518.537512px;}
.y11{bottom:520.709887px;}
.y54{bottom:523.939163px;}
.y96{bottom:534.736387px;}
.y10{bottom:537.269700px;}
.y53{bottom:540.498975px;}
.y95{bottom:551.296200px;}
.yf{bottom:553.641825px;}
.y52{bottom:556.697850px;}
.y94{bottom:563.537100px;}
.y93{bottom:567.497100px;}
.y92{bottom:567.497588px;}
.ye{bottom:570.374887px;}
.y51{bottom:573.257662px;}
.y91{bottom:584.057400px;}
.y90{bottom:584.058787px;}
.yd{bottom:586.936050px;}
.y50{bottom:589.817475px;}
.y8f{bottom:600.618600px;}
.yc{bottom:603.134925px;}
.y4f{bottom:606.016350px;}
.y4e{bottom:606.019387px;}
.y8e{bottom:616.817475px;}
.yb{bottom:619.694737px;}
.y4d{bottom:622.218262px;}
.y8d{bottom:633.016687px;}
.ya{bottom:636.254550px;}
.y4c{bottom:638.778075px;}
.y8c{bottom:649.576987px;}
.y9{bottom:652.814700px;}
.y8{bottom:652.815187px;}
.y4b{bottom:654.976950px;}
.y8b{bottom:666.136800px;}
.y8a{bottom:666.137287px;}
.y7{bottom:669.375000px;}
.y89{bottom:682.697100px;}
.y6{bottom:685.935300px;}
.y4a{bottom:687.737362px;}
.y88{bottom:699.257775px;}
.y49{bottom:704.297175px;}
.y87{bottom:715.456650px;}
.y86{bottom:715.457025px;}
.y48{bottom:720.496050px;}
.y85{bottom:731.655900px;}
.y84{bottom:731.656875px;}
.y47{bottom:736.697962px;}
.y83{bottom:748.216688px;}
.y46{bottom:753.257775px;}
.y82{bottom:764.776500px;}
.y5{bottom:766.935300px;}
.y45{bottom:769.456650px;}
.y44{bottom:769.457025px;}
.y42{bottom:782.783812px;}
.y43{bottom:785.655900px;}
.y4{bottom:813.369525px;}
.y41{bottom:818.776500px;}
.y40{bottom:835.336650px;}
.y3f{bottom:835.341038px;}
.y2{bottom:843.250125px;}
.y3{bottom:843.255150px;}
.y81{bottom:845.056350px;}
.y80{bottom:845.058900px;}
.y3e{bottom:851.539913px;}
.y7f{bottom:861.257775px;}
.y3d{bottom:868.460663px;}
.y1{bottom:873.135750px;}
.y7e{bottom:877.456650px;}
.y7d{bottom:877.457962px;}
.y3c{bottom:884.659538px;}
.y7c{bottom:894.017775px;}
.y3b{bottom:900.858413px;}
.y7b{bottom:910.938525px;}
.y3a{bottom:917.418225px;}
.y7a{bottom:927.137737px;}
.y39{bottom:933.617100px;}
.y38{bottom:933.617587px;}
.y79{bottom:943.697550px;}
.y37{bottom:950.177400px;}
.h20{height:18.773438px;}
.h1d{height:20.337891px;}
.h28{height:21.120117px;}
.he{height:22.684570px;}
.h1e{height:23.466797px;}
.h1f{height:23.718750px;}
.h29{height:24.187500px;}
.h1c{height:31.289062px;}
.h25{height:35.982422px;}
.h2c{height:38.329102px;}
.h12{height:53.367188px;}
.h23{height:53.734131px;}
.h2a{height:53.973633px;}
.h1b{height:54.755859px;}
.h16{height:56.320312px;}
.h8{height:56.678467px;}
.h5{height:57.102539px;}
.hf{height:57.414551px;}
.ha{height:57.429217px;}
.h19{height:57.884766px;}
.hc{height:58.150635px;}
.h17{height:58.201172px;}
.h4{height:58.666992px;}
.h24{height:58.815217px;}
.h1a{height:58.886719px;}
.hd{height:59.622803px;}
.h7{height:61.013672px;}
.h14{height:61.094971px;}
.h15{height:61.795898px;}
.h9{height:61.831055px;}
.h21{height:62.567139px;}
.h18{height:63.303223px;}
.h22{height:63.492188px;}
.hb{height:64.039307px;}
.h2b{height:66.247559px;}
.h13{height:68.170717px;}
.h6{height:71.964844px;}
.h2{height:98.560547px;}
.h3{height:102.471680px;}
.h10{height:1019.792550px;}
.h11{height:1020.000000px;}
.h1{height:1023.750000px;}
.h0{height:1024.112550px;}
.h26{height:1030.952550px;}
.h27{height:1031.250000px;}
.w1{width:667.500000px;}
.w0{width:667.714050px;}
.w3{width:669.000000px;}
.w2{width:669.152550px;}
.w5{width:685.500000px;}
.w4{width:685.712235px;}
.x0{left:0.000000px;}
.x25{left:41.536050px;}
.x18{left:42.616875px;}
.x11{left:43.683862px;}
.xc{left:44.777550px;}
.x5b{left:49.118872px;}
.x59{left:50.176185px;}
.x1{left:65.296200px;}
.xb{left:67.456650px;}
.x5a{left:72.507810px;}
.x2{left:74.314950px;}
.x77{left:81.856335px;}
.x2f{left:86.546812px;}
.xf{left:87.976950px;}
.x68{left:93.736485px;}
.x10{left:103.096800px;}
.x3e{left:108.856350px;}
.x2e{left:109.935750px;}
.x27{left:116.417250px;}
.x30{left:129.015750px;}
.x28{left:130.096800px;}
.x35{left:135.485025px;}
.x5{left:140.514150px;}
.x31{left:146.655450px;}
.x78{left:152.416635px;}
.x60{left:166.816485px;}
.x79{left:171.137385px;}
.x5c{left:172.216785px;}
.x61{left:183.017385px;}
.x5d{left:188.776935px;}
.x6{left:192.736950px;}
.x6f{left:193.816485px;}
.x33{left:206.416650px;}
.x3f{left:207.496050px;}
.x76{left:216.136185px;}
.x36{left:221.175600px;}
.x34{left:222.256650px;}
.x70{left:224.417235px;}
.x69{left:233.416635px;}
.x37{left:237.015750px;}
.x7{left:246.376050px;}
.x19{left:265.456050px;}
.x6a{left:268.336635px;}
.x72{left:269.776935px;}
.x48{left:276.975300px;}
.x8{left:278.056350px;}
.x1a{left:281.296200px;}
.x71{left:282.377235px;}
.x73{left:284.536035px;}
.x49{left:287.055750px;}
.x23{left:302.177250px;}
.x67{left:306.855885px;}
.x74{left:308.296185px;}
.x24{left:316.936350px;}
.x42{left:322.695900px;}
.x75{left:324.497085px;}
.x53{left:329.895750px;}
.x12{left:337.097400px;}
.x58{left:338.176800px;}
.x64{left:342.136785px;}
.x65{left:346.096785px;}
.x43{left:350.775300px;}
.x38{left:352.576500px;}
.x2c{left:358.336200px;}
.x13{left:360.137400px;}
.x44{left:366.256200px;}
.x39{left:367.335600px;}
.x29{left:368.416650px;}
.x3{left:372.017400px;}
.x2d{left:373.816950px;}
.x4c{left:376.336650px;}
.x54{left:377.775300px;}
.x40{left:380.655900px;}
.x2a{left:382.816500px;}
.x4d{left:383.895750px;}
.x15{left:387.496650px;}
.x9{left:392.176800px;}
.x6e{left:395.775885px;}
.x4e{left:398.295600px;}
.x4{left:399.376650px;}
.xa{left:401.176200px;}
.x62{left:403.695885px;}
.x26{left:408.016950px;}
.x66{left:410.895885px;}
.x45{left:413.056350px;}
.x63{left:419.536035px;}
.x6b{left:426.376635px;}
.x41{left:428.896350px;}
.x4f{left:431.775300px;}
.x16{left:437.536650px;}
.x6c{left:439.697085px;}
.x50{left:446.176800px;}
.x17{left:452.656500px;}
.x6d{left:454.816935px;}
.x46{left:455.896350px;}
.x4a{left:464.536500px;}
.x51{left:467.776500px;}
.x5e{left:472.456635px;}
.x47{left:474.256200px;}
.x1b{left:483.257250px;}
.x5f{left:487.937385px;}
.xd{left:489.016950px;}
.x1f{left:490.096200px;}
.x4b{left:491.895750px;}
.x57{left:497.296200px;}
.x1c{left:498.736500px;}
.xe{left:503.416650px;}
.x20{left:505.936350px;}
.x55{left:510.255600px;}
.x3a{left:515.296650px;}
.x56{left:525.016350px;}
.x3b{left:531.496050px;}
.x2b{left:533.297250px;}
.x21{left:534.737550px;}
.x1d{left:542.657550px;}
.x22{left:550.576050px;}
.x52{left:556.335600px;}
.x1e{left:557.416650px;}
.x14{left:572.536650px;}
.x3c{left:601.695450px;}
.x32{left:606.736500px;}
.x3d{left:617.176200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.899333pt;}
.v1{vertical-align:10.215333pt;}
.ls1b{letter-spacing:-7.333200pt;}
.ls1c{letter-spacing:-7.205333pt;}
.ls29{letter-spacing:-7.145600pt;}
.lsf{letter-spacing:-6.960000pt;}
.ls19{letter-spacing:-6.576000pt;}
.ls1a{letter-spacing:-6.369733pt;}
.lse{letter-spacing:-6.330000pt;}
.ls1d{letter-spacing:-6.281333pt;}
.ls13{letter-spacing:-4.682067pt;}
.ls24{letter-spacing:-3.896200pt;}
.ls23{letter-spacing:-3.249400pt;}
.lsc{letter-spacing:-3.165000pt;}
.ls27{letter-spacing:-2.613333pt;}
.ls1f{letter-spacing:-2.597467pt;}
.ls10{letter-spacing:-2.537600pt;}
.ls22{letter-spacing:-2.053333pt;}
.ls17{letter-spacing:-1.950667pt;}
.ls20{letter-spacing:-1.870000pt;}
.ls1e{letter-spacing:-1.370000pt;}
.ls14{letter-spacing:-1.298733pt;}
.ls12{letter-spacing:-0.651933pt;}
.lsb{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.280000pt;}
.ls2{letter-spacing:0.646800pt;}
.ls6{letter-spacing:0.651933pt;}
.ls0{letter-spacing:1.293600pt;}
.ls7{letter-spacing:1.298733pt;}
.lsd{letter-spacing:1.411333pt;}
.ls16{letter-spacing:1.486733pt;}
.ls8{letter-spacing:1.950667pt;}
.ls28{letter-spacing:2.027667pt;}
.ls9{letter-spacing:2.597467pt;}
.ls26{letter-spacing:2.733400pt;}
.ls5{letter-spacing:3.249400pt;}
.ls18{letter-spacing:3.896200pt;}
.ls1{letter-spacing:4.519200pt;}
.lsa{letter-spacing:4.548133pt;}
.ls25{letter-spacing:4.676400pt;}
.ls4{letter-spacing:5.812800pt;}
.ls11{letter-spacing:5.846867pt;}
.ls3{letter-spacing:7.106400pt;}
.ls15{letter-spacing:7.797533pt;}
.ws0{word-spacing:0.000000pt;}
._1b{margin-left:-23.001622pt;}
._1c{margin-left:-15.458553pt;}
._1a{margin-left:-5.353240pt;}
._1d{margin-left:-1.488667pt;}
._16{width:1.190933pt;}
._e{width:2.452474pt;}
._c{width:3.877307pt;}
._7{width:5.644800pt;}
._13{width:6.608467pt;}
._9{width:7.640380pt;}
._d{width:8.994640pt;}
._1{width:10.214400pt;}
._b{width:11.538913pt;}
._0{width:12.516000pt;}
._19{width:13.429394pt;}
._f{width:14.502607pt;}
._4{width:15.556800pt;}
._a{width:16.608087pt;}
._2{width:18.312000pt;}
._5{width:19.320000pt;}
._6{width:20.664000pt;}
._11{width:21.709419pt;}
._3{width:23.091600pt;}
._12{width:24.138800pt;}
._8{width:26.124000pt;}
._15{width:27.021781pt;}
._14{width:28.152813pt;}
._10{width:30.087654pt;}
._17{width:33.726000pt;}
._18{width:34.619330pt;}
.fs16{font-size:16.000000pt;}
.fs13{font-size:17.333333pt;}
.fs19{font-size:18.000000pt;}
.fsb{font-size:19.333333pt;}
.fs14{font-size:20.000000pt;}
.fs15{font-size:21.333333pt;}
.fs12{font-size:26.666667pt;}
.fs18{font-size:30.666667pt;}
.fs1c{font-size:32.666667pt;}
.fs1a{font-size:46.000000pt;}
.fs11{font-size:46.666667pt;}
.fsc{font-size:48.000000pt;}
.fs3{font-size:48.666667pt;}
.fsf{font-size:49.333333pt;}
.fs2{font-size:50.000000pt;}
.fs6{font-size:51.333333pt;}
.fs5{font-size:52.000000pt;}
.fs9{font-size:52.666667pt;}
.fs10{font-size:53.333333pt;}
.fsa{font-size:54.000000pt;}
.fsd{font-size:55.333333pt;}
.fs7{font-size:56.000000pt;}
.fs17{font-size:56.666667pt;}
.fse{font-size:57.333333pt;}
.fs8{font-size:58.000000pt;}
.fs1b{font-size:60.000000pt;}
.fs4{font-size:61.333333pt;}
.fs0{font-size:84.000000pt;}
.fs1{font-size:87.333333pt;}
.y0{bottom:0.000000pt;}
.y36{bottom:87.480000pt;}
.y35{bottom:87.481967pt;}
.y78{bottom:91.320800pt;}
.y77{bottom:91.322767pt;}
.y34{bottom:101.560133pt;}
.y33{bottom:101.563933pt;}
.y76{bottom:105.400933pt;}
.y32{bottom:115.642100pt;}
.y75{bottom:117.241200pt;}
.y74{bottom:119.958167pt;}
.y31{bottom:129.720267pt;}
.y30{bottom:129.722100pt;}
.y73{bottom:133.882333pt;}
.y2f{bottom:143.800267pt;}
.y72{bottom:148.283133pt;}
.yb4{bottom:148.923267pt;}
.y2e{bottom:158.520533pt;}
.y2d{bottom:158.523267pt;}
.yb2{bottom:161.081067pt;}
.y71{bottom:162.682133pt;}
.y70{bottom:162.684867pt;}
.yb3{bottom:163.322267pt;}
.y2c{bottom:172.922267pt;}
.y6f{bottom:177.404700pt;}
.y2b{bottom:187.321267pt;}
.yb1{bottom:190.843633pt;}
.y6e{bottom:191.482867pt;}
.y2a{bottom:201.720267pt;}
.y29{bottom:201.720600pt;}
.y6d{bottom:205.881867pt;}
.y6c{bottom:205.884133pt;}
.y28{bottom:216.119600pt;}
.y6b{bottom:220.283133pt;}
.y27{bottom:230.520533pt;}
.y26{bottom:230.520867pt;}
.yb0{bottom:230.845133pt;}
.y6a{bottom:234.682133pt;}
.y25{bottom:244.919867pt;}
.yaf{bottom:244.923300pt;}
.y69{bottom:248.763033pt;}
.yae{bottom:259.001467pt;}
.y24{bottom:259.320800pt;}
.y68{bottom:263.482867pt;}
.yad{bottom:269.880933pt;}
.yac{bottom:273.081933pt;}
.y23{bottom:273.720267pt;}
.y22{bottom:273.722533pt;}
.y67{bottom:277.881867pt;}
.yab{bottom:287.480933pt;}
.yaa{bottom:287.481367pt;}
.y21{bottom:288.121533pt;}
.y66{bottom:289.082000pt;}
.y65{bottom:292.602000pt;}
.ya9{bottom:302.201200pt;}
.ya8{bottom:302.203167pt;}
.y20{bottom:302.520533pt;}
.y1f{bottom:302.520867pt;}
.y64{bottom:307.001467pt;}
.y63{bottom:307.001933pt;}
.ya7{bottom:316.281333pt;}
.ya6{bottom:316.283133pt;}
.y1e{bottom:316.919867pt;}
.y1d{bottom:316.921800pt;}
.y62{bottom:321.400933pt;}
.ya5{bottom:330.682133pt;}
.ya4{bottom:330.682933pt;}
.y1c{bottom:331.320800pt;}
.y61{bottom:332.281733pt;}
.y60{bottom:335.480933pt;}
.y5f{bottom:335.482867pt;}
.ya3{bottom:345.081933pt;}
.y1b{bottom:345.720267pt;}
.y1a{bottom:345.722967pt;}
.y5e{bottom:349.881867pt;}
.ya2{bottom:359.480933pt;}
.ya1{bottom:359.483200pt;}
.y19{bottom:360.442800pt;}
.y5d{bottom:364.281200pt;}
.y5c{bottom:364.283133pt;}
.ya0{bottom:373.882200pt;}
.y18{bottom:374.841800pt;}
.y5b{bottom:378.682133pt;}
.y9f{bottom:388.281200pt;}
.y9e{bottom:388.281600pt;}
.y17{bottom:389.561633pt;}
.y5a{bottom:393.081900pt;}
.y9d{bottom:403.322267pt;}
.y9c{bottom:403.322767pt;}
.y16{bottom:404.281467pt;}
.y59{bottom:407.802500pt;}
.y9b{bottom:417.400933pt;}
.y9a{bottom:417.403167pt;}
.y15{bottom:418.680467pt;}
.y58{bottom:422.201500pt;}
.y99{bottom:431.802167pt;}
.y14{bottom:433.400300pt;}
.y57{bottom:436.921333pt;}
.y56{bottom:436.925700pt;}
.y98{bottom:446.522000pt;}
.y13{bottom:448.120133pt;}
.y12{bottom:448.133400pt;}
.y55{bottom:451.324700pt;}
.y97{bottom:460.922233pt;}
.y11{bottom:462.853233pt;}
.y54{bottom:465.723700pt;}
.y96{bottom:475.321233pt;}
.y10{bottom:477.573067pt;}
.y53{bottom:480.443533pt;}
.y95{bottom:490.041067pt;}
.yf{bottom:492.126067pt;}
.y52{bottom:494.842533pt;}
.y94{bottom:500.921867pt;}
.y93{bottom:504.441867pt;}
.y92{bottom:504.442300pt;}
.ye{bottom:506.999900pt;}
.y51{bottom:509.562367pt;}
.y91{bottom:519.162133pt;}
.y90{bottom:519.163367pt;}
.yd{bottom:521.720933pt;}
.y50{bottom:524.282200pt;}
.y8f{bottom:533.883200pt;}
.yc{bottom:536.119933pt;}
.y4f{bottom:538.681200pt;}
.y4e{bottom:538.683900pt;}
.y8e{bottom:548.282200pt;}
.yb{bottom:550.839767pt;}
.y4d{bottom:553.082900pt;}
.y8d{bottom:562.681500pt;}
.ya{bottom:565.559600pt;}
.y4c{bottom:567.802733pt;}
.y8c{bottom:577.401767pt;}
.y9{bottom:580.279733pt;}
.y8{bottom:580.280167pt;}
.y4b{bottom:582.201733pt;}
.y8b{bottom:592.121600pt;}
.y8a{bottom:592.122033pt;}
.y7{bottom:595.000000pt;}
.y89{bottom:606.841867pt;}
.y6{bottom:609.720267pt;}
.y4a{bottom:611.322100pt;}
.y88{bottom:621.562467pt;}
.y49{bottom:626.041933pt;}
.y87{bottom:635.961467pt;}
.y86{bottom:635.961800pt;}
.y48{bottom:640.440933pt;}
.y85{bottom:650.360800pt;}
.y84{bottom:650.361667pt;}
.y47{bottom:654.842633pt;}
.y83{bottom:665.081500pt;}
.y46{bottom:669.562467pt;}
.y82{bottom:679.801333pt;}
.y5{bottom:681.720267pt;}
.y45{bottom:683.961467pt;}
.y44{bottom:683.961800pt;}
.y42{bottom:695.807833pt;}
.y43{bottom:698.360800pt;}
.y4{bottom:722.995133pt;}
.y41{bottom:727.801333pt;}
.y40{bottom:742.521467pt;}
.y3f{bottom:742.525367pt;}
.y2{bottom:749.555667pt;}
.y3{bottom:749.560133pt;}
.y81{bottom:751.161200pt;}
.y80{bottom:751.163467pt;}
.y3e{bottom:756.924367pt;}
.y7f{bottom:765.562467pt;}
.y3d{bottom:771.965033pt;}
.y1{bottom:776.120667pt;}
.y7e{bottom:779.961467pt;}
.y7d{bottom:779.962633pt;}
.y3c{bottom:786.364033pt;}
.y7c{bottom:794.682467pt;}
.y3b{bottom:800.763033pt;}
.y7b{bottom:809.723133pt;}
.y3a{bottom:815.482867pt;}
.y7a{bottom:824.122433pt;}
.y39{bottom:829.881867pt;}
.y38{bottom:829.882300pt;}
.y79{bottom:838.842267pt;}
.y37{bottom:844.602133pt;}
.h20{height:16.687500pt;}
.h1d{height:18.078125pt;}
.h28{height:18.773437pt;}
.he{height:20.164062pt;}
.h1e{height:20.859375pt;}
.h1f{height:21.083333pt;}
.h29{height:21.500000pt;}
.h1c{height:27.812500pt;}
.h25{height:31.984375pt;}
.h2c{height:34.070312pt;}
.h12{height:47.437500pt;}
.h23{height:47.763672pt;}
.h2a{height:47.976562pt;}
.h1b{height:48.671875pt;}
.h16{height:50.062500pt;}
.h8{height:50.380859pt;}
.h5{height:50.757812pt;}
.hf{height:51.035156pt;}
.ha{height:51.048193pt;}
.h19{height:51.453125pt;}
.hc{height:51.689453pt;}
.h17{height:51.734375pt;}
.h4{height:52.148438pt;}
.h24{height:52.280193pt;}
.h1a{height:52.343750pt;}
.hd{height:52.998047pt;}
.h7{height:54.234375pt;}
.h14{height:54.306641pt;}
.h15{height:54.929688pt;}
.h9{height:54.960938pt;}
.h21{height:55.615234pt;}
.h18{height:56.269531pt;}
.h22{height:56.437500pt;}
.hb{height:56.923828pt;}
.h2b{height:58.886719pt;}
.h13{height:60.596193pt;}
.h6{height:63.968750pt;}
.h2{height:87.609375pt;}
.h3{height:91.085938pt;}
.h10{height:906.482267pt;}
.h11{height:906.666667pt;}
.h1{height:910.000000pt;}
.h0{height:910.322267pt;}
.h26{height:916.402267pt;}
.h27{height:916.666667pt;}
.w1{width:593.333333pt;}
.w0{width:593.523600pt;}
.w3{width:594.666667pt;}
.w2{width:594.802267pt;}
.w5{width:609.333333pt;}
.w4{width:609.521987pt;}
.x0{left:0.000000pt;}
.x25{left:36.920933pt;}
.x18{left:37.881667pt;}
.x11{left:38.830100pt;}
.xc{left:39.802267pt;}
.x5b{left:43.661220pt;}
.x59{left:44.601053pt;}
.x1{left:58.041067pt;}
.xb{left:59.961467pt;}
.x5a{left:64.451387pt;}
.x2{left:66.057733pt;}
.x77{left:72.761187pt;}
.x2f{left:76.930500pt;}
.xf{left:78.201733pt;}
.x68{left:83.321320pt;}
.x10{left:91.641600pt;}
.x3e{left:96.761200pt;}
.x2e{left:97.720667pt;}
.x27{left:103.482000pt;}
.x30{left:114.680667pt;}
.x28{left:115.641600pt;}
.x35{left:120.431133pt;}
.x5{left:124.901467pt;}
.x31{left:130.360400pt;}
.x78{left:135.481453pt;}
.x60{left:148.281320pt;}
.x79{left:152.122120pt;}
.x5c{left:153.081587pt;}
.x61{left:162.682120pt;}
.x5d{left:167.801720pt;}
.x6{left:171.321733pt;}
.x6f{left:172.281320pt;}
.x33{left:183.481467pt;}
.x3f{left:184.440933pt;}
.x76{left:192.121053pt;}
.x36{left:196.600533pt;}
.x34{left:197.561467pt;}
.x70{left:199.481987pt;}
.x69{left:207.481453pt;}
.x37{left:210.680667pt;}
.x7{left:219.000933pt;}
.x19{left:235.960933pt;}
.x6a{left:238.521453pt;}
.x72{left:239.801720pt;}
.x48{left:246.200267pt;}
.x8{left:247.161200pt;}
.x1a{left:250.041067pt;}
.x71{left:251.001987pt;}
.x73{left:252.920920pt;}
.x49{left:255.160667pt;}
.x23{left:268.602000pt;}
.x67{left:272.760787pt;}
.x74{left:274.041053pt;}
.x24{left:281.721200pt;}
.x42{left:286.840800pt;}
.x75{left:288.441853pt;}
.x53{left:293.240667pt;}
.x12{left:299.642133pt;}
.x58{left:300.601600pt;}
.x64{left:304.121587pt;}
.x65{left:307.641587pt;}
.x43{left:311.800267pt;}
.x38{left:313.401333pt;}
.x2c{left:318.521067pt;}
.x13{left:320.122133pt;}
.x44{left:325.561067pt;}
.x39{left:326.520533pt;}
.x29{left:327.481467pt;}
.x3{left:330.682133pt;}
.x2d{left:332.281733pt;}
.x4c{left:334.521467pt;}
.x54{left:335.800267pt;}
.x40{left:338.360800pt;}
.x2a{left:340.281333pt;}
.x4d{left:341.240667pt;}
.x15{left:344.441467pt;}
.x9{left:348.601600pt;}
.x6e{left:351.800787pt;}
.x4e{left:354.040533pt;}
.x4{left:355.001467pt;}
.xa{left:356.601067pt;}
.x62{left:358.840787pt;}
.x26{left:362.681733pt;}
.x66{left:365.240787pt;}
.x45{left:367.161200pt;}
.x63{left:372.920920pt;}
.x6b{left:379.001453pt;}
.x41{left:381.241200pt;}
.x4f{left:383.800267pt;}
.x16{left:388.921467pt;}
.x6c{left:390.841853pt;}
.x50{left:396.601600pt;}
.x17{left:402.361333pt;}
.x6d{left:404.281720pt;}
.x46{left:405.241200pt;}
.x4a{left:412.921333pt;}
.x51{left:415.801333pt;}
.x5e{left:419.961453pt;}
.x47{left:421.561067pt;}
.x1b{left:429.562000pt;}
.x5f{left:433.722120pt;}
.xd{left:434.681733pt;}
.x1f{left:435.641067pt;}
.x4b{left:437.240667pt;}
.x57{left:442.041067pt;}
.x1c{left:443.321333pt;}
.xe{left:447.481467pt;}
.x20{left:449.721200pt;}
.x55{left:453.560533pt;}
.x3a{left:458.041467pt;}
.x56{left:466.681200pt;}
.x3b{left:472.440933pt;}
.x2b{left:474.042000pt;}
.x21{left:475.322267pt;}
.x1d{left:482.362267pt;}
.x22{left:489.400933pt;}
.x52{left:494.520533pt;}
.x1e{left:495.481467pt;}
.x14{left:508.921467pt;}
.x3c{left:534.840400pt;}
.x32{left:539.321333pt;}
.x3d{left:548.601067pt;}
}




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