
    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_fecd5434fcd626701ba52ae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_26fee8e15ee0142cec032a66.woff')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_8e6d352e3273158b19f11abe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938000;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_ffa5f29c6c14d98c67e4fdeb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.528000;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_a8b820f05ca149a639ee347d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.431000;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_93a3289eec8c562e1a6a93e7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_25968a94e1009e36aab944dd.woff')format("woff");}.ff7{font-family:ff7;line-height:0.968000;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_ead10c48bad48aaa9b2c3424.woff')format("woff");}.ff8{font-family:ff8;line-height:0.946000;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_9807d1ddb8836fd3c05d167a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.964000;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_2b5ca51cb63d5a21b502426a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.945000;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_e9e7a03bb53b69c19a30c60e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899000;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_701120460910c946bbca1352.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c7d2df9738e8070180192f91.woff')format("woff");}.ffd{font-family:ffd;line-height:0.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_aefc75655424fdad649d0621.woff')format("woff");}.ffe{font-family:ffe;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m6{transform:matrix(0.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);}
.mf{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m21{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);}
.m25{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-22.854000px;}
.v4{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.028000px;}
.v3{vertical-align:44.286000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.984037px;}
.ls4{letter-spacing:2.987468px;}
.ls2{letter-spacing:2.993674px;}
.ls6{letter-spacing:8.966400px;}
.ls5{letter-spacing:13.449600px;}
.ls3{letter-spacing:16.363650px;}
.ls9{letter-spacing:18.196379px;}
.ls8{letter-spacing:22.123655px;}
.lsa{letter-spacing:29.061842px;}
.ls1{letter-spacing:35.865600px;}
.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;}
}
.ws3{word-spacing:-17.932800px;}
.ws4b{word-spacing:-16.363650px;}
.ws38{word-spacing:-14.943900px;}
.ws76{word-spacing:-5.170913px;}
.ws60{word-spacing:-4.712731px;}
.ws64{word-spacing:-4.320004px;}
.ws29{word-spacing:-4.189094px;}
.ws2e{word-spacing:-4.123640px;}
.ws66{word-spacing:-3.992731px;}
.ws4e{word-spacing:-3.861821px;}
.ws5e{word-spacing:-3.730912px;}
.ws67{word-spacing:-3.665458px;}
.ws36{word-spacing:-3.141821px;}
.ws5f{word-spacing:-3.076366px;}
.ws37{word-spacing:-3.010912px;}
.ws51{word-spacing:-2.945457px;}
.ws1c{word-spacing:-2.683639px;}
.ws34{word-spacing:-2.618184px;}
.ws27{word-spacing:-2.552729px;}
.ws6e{word-spacing:-2.421820px;}
.ws26{word-spacing:-2.290911px;}
.ws35{word-spacing:-2.029093px;}
.ws50{word-spacing:-1.963638px;}
.ws1a{word-spacing:-1.898183px;}
.ws42{word-spacing:-1.767274px;}
.ws12{word-spacing:-1.570910px;}
.ws71{word-spacing:-1.505456px;}
.ws5c{word-spacing:-1.178183px;}
.ws55{word-spacing:-1.112728px;}
.ws2a{word-spacing:-0.981819px;}
.ws77{word-spacing:-0.916364px;}
.ws45{word-spacing:-0.720001px;}
.ws1d{word-spacing:-0.589091px;}
.ws69{word-spacing:-0.523637px;}
.ws28{word-spacing:-0.458182px;}
.wse{word-spacing:-0.392728px;}
.ws1e{word-spacing:-0.327273px;}
.ws7{word-spacing:-0.268992px;}
.ws15{word-spacing:-0.261818px;}
.ws13{word-spacing:-0.196364px;}
.ws17{word-spacing:-0.130909px;}
.ws62{word-spacing:-0.086077px;}
.wsb{word-spacing:-0.065455px;}
.ws6{word-spacing:-0.053798px;}
.ws4c{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.ws4{word-spacing:0.053798px;}
.ws10{word-spacing:0.065455px;}
.wsa{word-spacing:0.107597px;}
.ws14{word-spacing:0.130909px;}
.ws9{word-spacing:0.161395px;}
.ws1b{word-spacing:0.196364px;}
.ws5{word-spacing:0.215194px;}
.wsf{word-spacing:0.261818px;}
.ws23{word-spacing:0.327273px;}
.ws3a{word-spacing:0.358654px;}
.ws32{word-spacing:0.392728px;}
.ws6b{word-spacing:0.458182px;}
.ws5b{word-spacing:0.523637px;}
.ws54{word-spacing:0.589091px;}
.ws1f{word-spacing:0.654546px;}
.ws31{word-spacing:0.785455px;}
.ws2d{word-spacing:0.850910px;}
.ws21{word-spacing:0.916364px;}
.ws47{word-spacing:0.981819px;}
.ws18{word-spacing:1.243637px;}
.ws2b{word-spacing:1.309092px;}
.ws30{word-spacing:1.570910px;}
.ws3d{word-spacing:1.636365px;}
.ws5d{word-spacing:1.701820px;}
.ws52{word-spacing:1.767274px;}
.ws53{word-spacing:1.898183px;}
.ws3f{word-spacing:1.963638px;}
.ws2c{word-spacing:2.029093px;}
.ws3c{word-spacing:2.160002px;}
.ws70{word-spacing:2.421820px;}
.ws3e{word-spacing:2.618184px;}
.ws8{word-spacing:2.636122px;}
.ws48{word-spacing:2.749093px;}
.ws11{word-spacing:2.880002px;}
.wsc{word-spacing:3.120307px;}
.ws43{word-spacing:3.141821px;}
.ws6d{word-spacing:3.207275px;}
.ws24{word-spacing:3.272730px;}
.ws68{word-spacing:3.403639px;}
.ws39{word-spacing:3.526760px;}
.ws63{word-spacing:3.534548px;}
.ws7b{word-spacing:3.600003px;}
.ws72{word-spacing:3.730912px;}
.ws6f{word-spacing:4.123640px;}
.ws44{word-spacing:4.385458px;}
.ws59{word-spacing:4.450913px;}
.ws19{word-spacing:4.519066px;}
.ws5a{word-spacing:4.581822px;}
.ws4f{word-spacing:4.712731px;}
.ws6a{word-spacing:4.843640px;}
.ws7c{word-spacing:4.909095px;}
.ws74{word-spacing:5.563641px;}
.ws33{word-spacing:5.890914px;}
.ws25{word-spacing:6.218187px;}
.ws2f{word-spacing:6.283642px;}
.ws16{word-spacing:6.349096px;}
.ws61{word-spacing:6.545460px;}
.ws7a{word-spacing:6.807278px;}
.ws6c{word-spacing:6.872733px;}
.ws75{word-spacing:7.527279px;}
.ws4d{word-spacing:8.220525px;}
.ws65{word-spacing:8.574553px;}
.ws79{word-spacing:8.640007px;}
.ws73{word-spacing:9.360008px;}
.ws78{word-spacing:9.425462px;}
.ws49{word-spacing:11.454555px;}
.ws4a{word-spacing:14.465467px;}
.ws57{word-spacing:14.525471px;}
.ws56{word-spacing:14.585246px;}
.ws3b{word-spacing:14.884124px;}
.ws22{word-spacing:17.861069px;}
.ws46{word-spacing:18.130924px;}
.ws58{word-spacing:19.008641px;}
.ws41{word-spacing:19.636380px;}
.ws20{word-spacing:21.433223px;}
.ws1{word-spacing:25.719808px;}
.ws0{word-spacing:26.236270px;}
.ws40{word-spacing:35.793869px;}
.wsd{word-spacing:42.952523px;}
._17{margin-left:-7.574794px;}
._19{margin-left:-5.629096px;}
._6{margin-left:-4.613567px;}
._1{margin-left:-3.389299px;}
._0{margin-left:-1.342801px;}
._4{width:1.237363px;}
._15{width:2.274670px;}
._1a{width:3.681699px;}
._14{width:5.459464px;}
._1b{width:6.480005px;}
._a{width:10.472755px;}
._f{width:13.549102px;}
._2{width:15.384184px;}
._3{width:17.215488px;}
._9{width:18.291456px;}
._5{width:19.440016px;}
._11{width:20.552744px;}
._13{width:21.830091px;}
._18{width:23.367292px;}
._8{width:24.480020px;}
._e{width:25.789112px;}
._10{width:27.229114px;}
._d{width:28.930933px;}
._23{width:31.052915px;}
._20{width:32.727300px;}
._1f{width:33.905483px;}
._c{width:35.865600px;}
._1d{width:37.556600px;}
._7{width:38.814578px;}
._1e{width:40.960240px;}
._b{width:43.038600px;}
._22{width:45.372586px;}
._1c{width:50.400042px;}
._24{width:58.632982px;}
._21{width:60.708160px;}
._12{width:591.332903px;}
._16{width:768.852062px;}
.fc2{color:rgb(47,79,79);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs7{font-size:55.636800px;}
.fs8{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.yaf{bottom:246.190500px;}
.y27{bottom:247.473000px;}
.y4d{bottom:252.456000px;}
.y6d{bottom:252.739500px;}
.yc4{bottom:258.496500px;}
.y26{bottom:262.711500px;}
.yae{bottom:266.514000px;}
.y4c{bottom:272.779500px;}
.y6c{bottom:273.063000px;}
.yc3{bottom:278.820000px;}
.y25{bottom:279.148500px;}
.y8a{bottom:279.337500px;}
.ydf{bottom:279.828000px;}
.yad{bottom:286.837500px;}
.y4b{bottom:293.103000px;}
.y6b{bottom:293.386500px;}
.yc2{bottom:299.143500px;}
.y89{bottom:299.661000px;}
.yde{bottom:300.151500px;}
.y24{bottom:301.563000px;}
.yac{bottom:307.161000px;}
.y23{bottom:312.288000px;}
.y4a{bottom:313.426500px;}
.y6a{bottom:313.710000px;}
.yc1{bottom:319.468500px;}
.y88{bottom:319.986000px;}
.ydd{bottom:320.475000px;}
.yab{bottom:327.484500px;}
.y49{bottom:333.750000px;}
.y69{bottom:334.035000px;}
.y87{bottom:340.309500px;}
.ydc{bottom:340.798500px;}
.y22{bottom:346.287000px;}
.yaa{bottom:347.808000px;}
.y48{bottom:354.075000px;}
.y68{bottom:354.358500px;}
.yc0{bottom:356.013000px;}
.y86{bottom:360.633000px;}
.ydb{bottom:361.122000px;}
.y21{bottom:366.610500px;}
.ya9{bottom:368.133000px;}
.y47{bottom:374.398500px;}
.y67{bottom:374.682000px;}
.y85{bottom:380.956500px;}
.yda{bottom:381.447000px;}
.y20{bottom:386.934000px;}
.ya8{bottom:388.456500px;}
.y46{bottom:394.722000px;}
.y66{bottom:395.005500px;}
.y84{bottom:401.280000px;}
.yd9{bottom:401.770500px;}
.y1f{bottom:407.257500px;}
.ybf{bottom:407.596500px;}
.ya7{bottom:408.780000px;}
.y65{bottom:415.329000px;}
.yd8{bottom:422.094000px;}
.y45{bottom:425.625000px;}
.y1e{bottom:427.581000px;}
.ybe{bottom:427.920000px;}
.ya6{bottom:429.103500px;}
.y83{bottom:432.183000px;}
.y64{bottom:435.654000px;}
.yd7{bottom:442.417500px;}
.y1d{bottom:447.906000px;}
.ybd{bottom:448.243500px;}
.ya5{bottom:449.427000px;}
.y63{bottom:455.977500px;}
.yd6{bottom:462.741000px;}
.y1c{bottom:468.229500px;}
.ybc{bottom:468.568500px;}
.y44{bottom:469.467000px;}
.ya4{bottom:469.752000px;}
.y82{bottom:476.026500px;}
.y62{bottom:476.301000px;}
.yd5{bottom:483.066000px;}
.y1b{bottom:488.553000px;}
.ybb{bottom:488.892000px;}
.y43{bottom:489.792000px;}
.ya3{bottom:490.075500px;}
.y81{bottom:496.350000px;}
.y61{bottom:496.624500px;}
.yd4{bottom:503.389500px;}
.y1a{bottom:508.876500px;}
.yba{bottom:509.215500px;}
.y42{bottom:510.115500px;}
.ye4{bottom:510.399000px;}
.y80{bottom:516.673500px;}
.y60{bottom:516.948000px;}
.yd3{bottom:523.713000px;}
.ya2{bottom:526.620000px;}
.y19{bottom:529.200000px;}
.yb9{bottom:529.539000px;}
.y41{bottom:530.439000px;}
.ye3{bottom:530.722500px;}
.y7f{bottom:536.997000px;}
.y5f{bottom:537.273000px;}
.y18{bottom:549.525000px;}
.yb8{bottom:549.862500px;}
.y40{bottom:550.762500px;}
.ye2{bottom:551.046000px;}
.y7e{bottom:557.322000px;}
.yd2{bottom:560.257500px;}
.y5e{bottom:568.174500px;}
.y17{bottom:569.848500px;}
.yb7{bottom:570.187500px;}
.y3f{bottom:571.086000px;}
.ye1{bottom:571.371000px;}
.y7d{bottom:577.645500px;}
.ya1{bottom:577.860000px;}
.y16{bottom:590.172000px;}
.yb6{bottom:590.511000px;}
.y3e{bottom:591.411000px;}
.ye0{bottom:591.694500px;}
.ya0{bottom:598.183500px;}
.y7c{bottom:608.548500px;}
.y15{bottom:610.495500px;}
.yb5{bottom:610.834500px;}
.y3d{bottom:611.734500px;}
.yd1{bottom:611.841000px;}
.y5d{bottom:612.018000px;}
.y9f{bottom:618.507000px;}
.y14{bottom:630.819000px;}
.yb4{bottom:631.158000px;}
.y3c{bottom:632.058000px;}
.yd0{bottom:632.166000px;}
.y5c{bottom:632.341500px;}
.y9e{bottom:638.830500px;}
.y7b{bottom:645.691500px;}
.y13{bottom:651.144000px;}
.yb3{bottom:651.481500px;}
.y3b{bottom:652.381500px;}
.ycf{bottom:652.489500px;}
.y5b{bottom:652.665000px;}
.y9d{bottom:659.155500px;}
.y3a{bottom:672.705000px;}
.y5a{bottom:672.990000px;}
.y9c{bottom:679.479000px;}
.y12{bottom:687.688500px;}
.yce{bottom:689.034000px;}
.y39{bottom:693.030000px;}
.y59{bottom:693.313500px;}
.y7a{bottom:697.275000px;}
.y9b{bottom:699.802500px;}
.yb2{bottom:710.278500px;}
.y38{bottom:713.353500px;}
.y58{bottom:713.637000px;}
.y79{bottom:717.598500px;}
.yb1{bottom:728.211000px;}
.y57{bottom:733.960500px;}
.y9a{bottom:736.347000px;}
.y78{bottom:737.922000px;}
.ycd{bottom:740.617500px;}
.y37{bottom:744.256500px;}
.yb0{bottom:746.145000px;}
.y56{bottom:754.284000px;}
.y77{bottom:758.245500px;}
.y11{bottom:758.823000px;}
.ycc{bottom:760.941000px;}
.y55{bottom:774.609000px;}
.y10{bottom:775.261500px;}
.y76{bottom:778.569000px;}
.ycb{bottom:781.266000px;}
.y99{bottom:787.587000px;}
.y36{bottom:788.098500px;}
.yf{bottom:791.700000px;}
.y54{bottom:794.932500px;}
.y75{bottom:798.894000px;}
.y98{bottom:807.910500px;}
.y35{bottom:808.422000px;}
.y53{bottom:815.256000px;}
.yca{bottom:817.810500px;}
.y74{bottom:819.217500px;}
.ye{bottom:819.478500px;}
.y97{bottom:828.234000px;}
.y34{bottom:828.747000px;}
.y52{bottom:835.579500px;}
.yd{bottom:835.915500px;}
.y73{bottom:839.541000px;}
.y96{bottom:848.557500px;}
.y33{bottom:849.070500px;}
.yc{bottom:852.354000px;}
.y51{bottom:855.903000px;}
.y72{bottom:859.864500px;}
.yb{bottom:868.792500px;}
.yc9{bottom:869.394000px;}
.y50{bottom:876.228000px;}
.y95{bottom:879.643500px;}
.y71{bottom:880.188000px;}
.ya{bottom:885.231000px;}
.y32{bottom:885.615000px;}
.yc8{bottom:889.717500px;}
.y93{bottom:890.868000px;}
.y4f{bottom:896.551500px;}
.y9{bottom:901.669500px;}
.y94{bottom:902.239500px;}
.yc7{bottom:910.041000px;}
.y4e{bottom:916.875000px;}
.y8{bottom:918.108000px;}
.yc6{bottom:930.366000px;}
.y92{bottom:934.119000px;}
.y7{bottom:934.546500px;}
.y31{bottom:937.198500px;}
.y70{bottom:938.985000px;}
.y6{bottom:950.985000px;}
.y91{bottom:954.442500px;}
.y30{bottom:957.522000px;}
.yc5{bottom:966.910500px;}
.y5{bottom:967.423500px;}
.y6f{bottom:973.092000px;}
.y90{bottom:974.766000px;}
.y2f{bottom:977.847000px;}
.y6e{bottom:991.024500px;}
.y8f{bottom:995.091000px;}
.y2e{bottom:998.170500px;}
.y8e{bottom:1015.414500px;}
.y4{bottom:1018.267500px;}
.y2d{bottom:1018.494000px;}
.y8d{bottom:1035.738000px;}
.y2c{bottom:1038.817500px;}
.y3{bottom:1046.925000px;}
.y2b{bottom:1059.141000px;}
.y8c{bottom:1066.822500px;}
.y8b{bottom:1078.047000px;}
.y2a{bottom:1079.466000px;}
.y2{bottom:1085.779500px;}
.y29{bottom:1099.789500px;}
.y1{bottom:1118.656500px;}
.y28{bottom:1120.113000px;}
.ha{height:16.677504px;}
.h4{height:25.105920px;}
.hd{height:25.392845px;}
.h9{height:37.658880px;}
.h6{height:38.089267px;}
.hf{height:40.447954px;}
.h10{height:42.321125px;}
.h7{height:45.687311px;}
.hc{height:46.212826px;}
.h5{height:46.341857px;}
.hb{height:47.073600px;}
.h11{height:49.090950px;}
.he{height:50.068378px;}
.h3{height:59.884985px;}
.h8{height:60.081886px;}
.h2{height:72.098095px;}
.h12{height:90.627857px;}
.h13{height:91.239857px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:133.033500px;}
.x21{left:134.683500px;}
.x34{left:137.868000px;}
.x2c{left:139.645500px;}
.x44{left:141.546000px;}
.x11{left:150.300000px;}
.x2d{left:154.864500px;}
.x35{left:157.161000px;}
.x45{left:168.988500px;}
.x32{left:179.715000px;}
.x22{left:187.455000px;}
.x2{left:195.871500px;}
.x3e{left:225.930000px;}
.x16{left:243.912000px;}
.x25{left:253.555500px;}
.x17{left:259.131000px;}
.x26{left:262.473000px;}
.x18{left:268.603500px;}
.x27{left:277.690500px;}
.x19{left:283.822500px;}
.x28{left:285.702000px;}
.x1a{left:293.295000px;}
.x29{left:300.919500px;}
.x2a{left:307.360500px;}
.x1b{left:308.512500px;}
.x2b{left:322.579500px;}
.x30{left:323.643000px;}
.x31{left:338.862000px;}
.x3f{left:352.851000px;}
.x42{left:358.908000px;}
.x3{left:362.305500px;}
.x4{left:369.915000px;}
.x5{left:377.532000px;}
.x6{left:385.141500px;}
.x7{left:392.758500px;}
.x8{left:400.368000px;}
.x43{left:405.466500px;}
.x33{left:413.920500px;}
.x36{left:447.876000px;}
.x1c{left:457.732500px;}
.x37{left:468.066000px;}
.x1d{left:472.951500px;}
.x46{left:480.348000px;}
.x1e{left:482.424000px;}
.xb{left:483.862500px;}
.xc{left:491.472000px;}
.x1f{left:497.641500px;}
.xd{left:499.233000px;}
.xe{left:506.841000px;}
.x20{left:522.208500px;}
.x3a{left:526.161000px;}
.x3b{left:541.378500px;}
.x3c{left:549.129000px;}
.x3d{left:564.348000px;}
.x38{left:567.289500px;}
.x39{left:620.739000px;}
.x2e{left:635.853000px;}
.x2f{left:651.072000px;}
.x9{left:668.488500px;}
.xa{left:676.098000px;}
.x40{left:681.256500px;}
.x12{left:689.259000px;}
.x13{left:696.868500px;}
.x14{left:704.596500px;}
.x15{left:712.206000px;}
.x41{left:720.229500px;}
.x23{left:737.973000px;}
.xf{left:743.590500px;}
.x10{left:751.200000px;}
.x24{left:753.192000px;}
@media print{
.v2{vertical-align:-20.314667pt;}
.v4{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.136000pt;}
.v3{vertical-align:39.365333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.652477pt;}
.ls4{letter-spacing:2.655527pt;}
.ls2{letter-spacing:2.661043pt;}
.ls6{letter-spacing:7.970133pt;}
.ls5{letter-spacing:11.955200pt;}
.ls3{letter-spacing:14.545467pt;}
.ls9{letter-spacing:16.174559pt;}
.ls8{letter-spacing:19.665471pt;}
.lsa{letter-spacing:25.832749pt;}
.ls1{letter-spacing:31.880533pt;}
.ws3{word-spacing:-15.940267pt;}
.ws4b{word-spacing:-14.545467pt;}
.ws38{word-spacing:-13.283467pt;}
.ws76{word-spacing:-4.596367pt;}
.ws60{word-spacing:-4.189094pt;}
.ws64{word-spacing:-3.840003pt;}
.ws29{word-spacing:-3.723639pt;}
.ws2e{word-spacing:-3.665458pt;}
.ws66{word-spacing:-3.549094pt;}
.ws4e{word-spacing:-3.432730pt;}
.ws5e{word-spacing:-3.316366pt;}
.ws67{word-spacing:-3.258185pt;}
.ws36{word-spacing:-2.792730pt;}
.ws5f{word-spacing:-2.734548pt;}
.ws37{word-spacing:-2.676366pt;}
.ws51{word-spacing:-2.618184pt;}
.ws1c{word-spacing:-2.385457pt;}
.ws34{word-spacing:-2.327275pt;}
.ws27{word-spacing:-2.269093pt;}
.ws6e{word-spacing:-2.152729pt;}
.ws26{word-spacing:-2.036365pt;}
.ws35{word-spacing:-1.803638pt;}
.ws50{word-spacing:-1.745456pt;}
.ws1a{word-spacing:-1.687274pt;}
.ws42{word-spacing:-1.570910pt;}
.ws12{word-spacing:-1.396365pt;}
.ws71{word-spacing:-1.338183pt;}
.ws5c{word-spacing:-1.047274pt;}
.ws55{word-spacing:-0.989092pt;}
.ws2a{word-spacing:-0.872728pt;}
.ws77{word-spacing:-0.814546pt;}
.ws45{word-spacing:-0.640001pt;}
.ws1d{word-spacing:-0.523637pt;}
.ws69{word-spacing:-0.465455pt;}
.ws28{word-spacing:-0.407273pt;}
.wse{word-spacing:-0.349091pt;}
.ws1e{word-spacing:-0.290909pt;}
.ws7{word-spacing:-0.239104pt;}
.ws15{word-spacing:-0.232727pt;}
.ws13{word-spacing:-0.174546pt;}
.ws17{word-spacing:-0.116364pt;}
.ws62{word-spacing:-0.076513pt;}
.wsb{word-spacing:-0.058182pt;}
.ws6{word-spacing:-0.047821pt;}
.ws4c{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.ws4{word-spacing:0.047821pt;}
.ws10{word-spacing:0.058182pt;}
.wsa{word-spacing:0.095642pt;}
.ws14{word-spacing:0.116364pt;}
.ws9{word-spacing:0.143462pt;}
.ws1b{word-spacing:0.174546pt;}
.ws5{word-spacing:0.191283pt;}
.wsf{word-spacing:0.232727pt;}
.ws23{word-spacing:0.290909pt;}
.ws3a{word-spacing:0.318803pt;}
.ws32{word-spacing:0.349091pt;}
.ws6b{word-spacing:0.407273pt;}
.ws5b{word-spacing:0.465455pt;}
.ws54{word-spacing:0.523637pt;}
.ws1f{word-spacing:0.581819pt;}
.ws31{word-spacing:0.698182pt;}
.ws2d{word-spacing:0.756364pt;}
.ws21{word-spacing:0.814546pt;}
.ws47{word-spacing:0.872728pt;}
.ws18{word-spacing:1.105455pt;}
.ws2b{word-spacing:1.163637pt;}
.ws30{word-spacing:1.396365pt;}
.ws3d{word-spacing:1.454547pt;}
.ws5d{word-spacing:1.512729pt;}
.ws52{word-spacing:1.570910pt;}
.ws53{word-spacing:1.687274pt;}
.ws3f{word-spacing:1.745456pt;}
.ws2c{word-spacing:1.803638pt;}
.ws3c{word-spacing:1.920002pt;}
.ws70{word-spacing:2.152729pt;}
.ws3e{word-spacing:2.327275pt;}
.ws8{word-spacing:2.343219pt;}
.ws48{word-spacing:2.443638pt;}
.ws11{word-spacing:2.560002pt;}
.wsc{word-spacing:2.773606pt;}
.ws43{word-spacing:2.792730pt;}
.ws6d{word-spacing:2.850911pt;}
.ws24{word-spacing:2.909093pt;}
.ws68{word-spacing:3.025457pt;}
.ws39{word-spacing:3.134898pt;}
.ws63{word-spacing:3.141821pt;}
.ws7b{word-spacing:3.200003pt;}
.ws72{word-spacing:3.316366pt;}
.ws6f{word-spacing:3.665458pt;}
.ws44{word-spacing:3.898185pt;}
.ws59{word-spacing:3.956367pt;}
.ws19{word-spacing:4.016947pt;}
.ws5a{word-spacing:4.072731pt;}
.ws4f{word-spacing:4.189094pt;}
.ws6a{word-spacing:4.305458pt;}
.ws7c{word-spacing:4.363640pt;}
.ws74{word-spacing:4.945459pt;}
.ws33{word-spacing:5.236368pt;}
.ws25{word-spacing:5.527277pt;}
.ws2f{word-spacing:5.585459pt;}
.ws16{word-spacing:5.643641pt;}
.ws61{word-spacing:5.818187pt;}
.ws7a{word-spacing:6.050914pt;}
.ws6c{word-spacing:6.109096pt;}
.ws75{word-spacing:6.690915pt;}
.ws4d{word-spacing:7.307133pt;}
.ws65{word-spacing:7.621825pt;}
.ws79{word-spacing:7.680006pt;}
.ws73{word-spacing:8.320007pt;}
.ws78{word-spacing:8.378189pt;}
.ws49{word-spacing:10.181827pt;}
.ws4a{word-spacing:12.858193pt;}
.ws57{word-spacing:12.911530pt;}
.ws56{word-spacing:12.964663pt;}
.ws3b{word-spacing:13.230333pt;}
.ws22{word-spacing:15.876506pt;}
.ws46{word-spacing:16.116377pt;}
.ws58{word-spacing:16.896570pt;}
.ws41{word-spacing:17.454560pt;}
.ws20{word-spacing:19.051754pt;}
.ws1{word-spacing:22.862051pt;}
.ws0{word-spacing:23.321129pt;}
.ws40{word-spacing:31.816772pt;}
.wsd{word-spacing:38.180020pt;}
._17{margin-left:-6.733150pt;}
._19{margin-left:-5.003641pt;}
._6{margin-left:-4.100949pt;}
._1{margin-left:-3.012710pt;}
._0{margin-left:-1.193601pt;}
._4{width:1.099878pt;}
._15{width:2.021929pt;}
._1a{width:3.272621pt;}
._14{width:4.852857pt;}
._1b{width:5.760005pt;}
._a{width:9.309116pt;}
._f{width:12.043646pt;}
._2{width:13.674830pt;}
._3{width:15.302656pt;}
._9{width:16.259072pt;}
._5{width:17.280014pt;}
._11{width:18.269106pt;}
._13{width:19.404525pt;}
._18{width:20.770926pt;}
._8{width:21.760018pt;}
._e{width:22.923655pt;}
._10{width:24.203657pt;}
._d{width:25.716385pt;}
._23{width:27.602591pt;}
._20{width:29.090933pt;}
._1f{width:30.138207pt;}
._c{width:31.880533pt;}
._1d{width:33.383645pt;}
._7{width:34.501847pt;}
._1e{width:36.409102pt;}
._b{width:38.256533pt;}
._22{width:40.331188pt;}
._1c{width:44.800037pt;}
._24{width:52.118206pt;}
._21{width:53.962809pt;}
._12{width:525.629247pt;}
._16{width:683.424055pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs7{font-size:49.454933pt;}
.fs8{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:218.836000pt;}
.y27{bottom:219.976000pt;}
.y4d{bottom:224.405333pt;}
.y6d{bottom:224.657333pt;}
.yc4{bottom:229.774667pt;}
.y26{bottom:233.521333pt;}
.yae{bottom:236.901333pt;}
.y4c{bottom:242.470667pt;}
.y6c{bottom:242.722667pt;}
.yc3{bottom:247.840000pt;}
.y25{bottom:248.132000pt;}
.y8a{bottom:248.300000pt;}
.ydf{bottom:248.736000pt;}
.yad{bottom:254.966667pt;}
.y4b{bottom:260.536000pt;}
.y6b{bottom:260.788000pt;}
.yc2{bottom:265.905333pt;}
.y89{bottom:266.365333pt;}
.yde{bottom:266.801333pt;}
.y24{bottom:268.056000pt;}
.yac{bottom:273.032000pt;}
.y23{bottom:277.589333pt;}
.y4a{bottom:278.601333pt;}
.y6a{bottom:278.853333pt;}
.yc1{bottom:283.972000pt;}
.y88{bottom:284.432000pt;}
.ydd{bottom:284.866667pt;}
.yab{bottom:291.097333pt;}
.y49{bottom:296.666667pt;}
.y69{bottom:296.920000pt;}
.y87{bottom:302.497333pt;}
.ydc{bottom:302.932000pt;}
.y22{bottom:307.810667pt;}
.yaa{bottom:309.162667pt;}
.y48{bottom:314.733333pt;}
.y68{bottom:314.985333pt;}
.yc0{bottom:316.456000pt;}
.y86{bottom:320.562667pt;}
.ydb{bottom:320.997333pt;}
.y21{bottom:325.876000pt;}
.ya9{bottom:327.229333pt;}
.y47{bottom:332.798667pt;}
.y67{bottom:333.050667pt;}
.y85{bottom:338.628000pt;}
.yda{bottom:339.064000pt;}
.y20{bottom:343.941333pt;}
.ya8{bottom:345.294667pt;}
.y46{bottom:350.864000pt;}
.y66{bottom:351.116000pt;}
.y84{bottom:356.693333pt;}
.yd9{bottom:357.129333pt;}
.y1f{bottom:362.006667pt;}
.ybf{bottom:362.308000pt;}
.ya7{bottom:363.360000pt;}
.y65{bottom:369.181333pt;}
.yd8{bottom:375.194667pt;}
.y45{bottom:378.333333pt;}
.y1e{bottom:380.072000pt;}
.ybe{bottom:380.373333pt;}
.ya6{bottom:381.425333pt;}
.y83{bottom:384.162667pt;}
.y64{bottom:387.248000pt;}
.yd7{bottom:393.260000pt;}
.y1d{bottom:398.138667pt;}
.ybd{bottom:398.438667pt;}
.ya5{bottom:399.490667pt;}
.y63{bottom:405.313333pt;}
.yd6{bottom:411.325333pt;}
.y1c{bottom:416.204000pt;}
.ybc{bottom:416.505333pt;}
.y44{bottom:417.304000pt;}
.ya4{bottom:417.557333pt;}
.y82{bottom:423.134667pt;}
.y62{bottom:423.378667pt;}
.yd5{bottom:429.392000pt;}
.y1b{bottom:434.269333pt;}
.ybb{bottom:434.570667pt;}
.y43{bottom:435.370667pt;}
.ya3{bottom:435.622667pt;}
.y81{bottom:441.200000pt;}
.y61{bottom:441.444000pt;}
.yd4{bottom:447.457333pt;}
.y1a{bottom:452.334667pt;}
.yba{bottom:452.636000pt;}
.y42{bottom:453.436000pt;}
.ye4{bottom:453.688000pt;}
.y80{bottom:459.265333pt;}
.y60{bottom:459.509333pt;}
.yd3{bottom:465.522667pt;}
.ya2{bottom:468.106667pt;}
.y19{bottom:470.400000pt;}
.yb9{bottom:470.701333pt;}
.y41{bottom:471.501333pt;}
.ye3{bottom:471.753333pt;}
.y7f{bottom:477.330667pt;}
.y5f{bottom:477.576000pt;}
.y18{bottom:488.466667pt;}
.yb8{bottom:488.766667pt;}
.y40{bottom:489.566667pt;}
.ye2{bottom:489.818667pt;}
.y7e{bottom:495.397333pt;}
.yd2{bottom:498.006667pt;}
.y5e{bottom:505.044000pt;}
.y17{bottom:506.532000pt;}
.yb7{bottom:506.833333pt;}
.y3f{bottom:507.632000pt;}
.ye1{bottom:507.885333pt;}
.y7d{bottom:513.462667pt;}
.ya1{bottom:513.653333pt;}
.y16{bottom:524.597333pt;}
.yb6{bottom:524.898667pt;}
.y3e{bottom:525.698667pt;}
.ye0{bottom:525.950667pt;}
.ya0{bottom:531.718667pt;}
.y7c{bottom:540.932000pt;}
.y15{bottom:542.662667pt;}
.yb5{bottom:542.964000pt;}
.y3d{bottom:543.764000pt;}
.yd1{bottom:543.858667pt;}
.y5d{bottom:544.016000pt;}
.y9f{bottom:549.784000pt;}
.y14{bottom:560.728000pt;}
.yb4{bottom:561.029333pt;}
.y3c{bottom:561.829333pt;}
.yd0{bottom:561.925333pt;}
.y5c{bottom:562.081333pt;}
.y9e{bottom:567.849333pt;}
.y7b{bottom:573.948000pt;}
.y13{bottom:578.794667pt;}
.yb3{bottom:579.094667pt;}
.y3b{bottom:579.894667pt;}
.ycf{bottom:579.990667pt;}
.y5b{bottom:580.146667pt;}
.y9d{bottom:585.916000pt;}
.y3a{bottom:597.960000pt;}
.y5a{bottom:598.213333pt;}
.y9c{bottom:603.981333pt;}
.y12{bottom:611.278667pt;}
.yce{bottom:612.474667pt;}
.y39{bottom:616.026667pt;}
.y59{bottom:616.278667pt;}
.y7a{bottom:619.800000pt;}
.y9b{bottom:622.046667pt;}
.yb2{bottom:631.358667pt;}
.y38{bottom:634.092000pt;}
.y58{bottom:634.344000pt;}
.y79{bottom:637.865333pt;}
.yb1{bottom:647.298667pt;}
.y57{bottom:652.409333pt;}
.y9a{bottom:654.530667pt;}
.y78{bottom:655.930667pt;}
.ycd{bottom:658.326667pt;}
.y37{bottom:661.561333pt;}
.yb0{bottom:663.240000pt;}
.y56{bottom:670.474667pt;}
.y77{bottom:673.996000pt;}
.y11{bottom:674.509333pt;}
.ycc{bottom:676.392000pt;}
.y55{bottom:688.541333pt;}
.y10{bottom:689.121333pt;}
.y76{bottom:692.061333pt;}
.ycb{bottom:694.458667pt;}
.y99{bottom:700.077333pt;}
.y36{bottom:700.532000pt;}
.yf{bottom:703.733333pt;}
.y54{bottom:706.606667pt;}
.y75{bottom:710.128000pt;}
.y98{bottom:718.142667pt;}
.y35{bottom:718.597333pt;}
.y53{bottom:724.672000pt;}
.yca{bottom:726.942667pt;}
.y74{bottom:728.193333pt;}
.ye{bottom:728.425333pt;}
.y97{bottom:736.208000pt;}
.y34{bottom:736.664000pt;}
.y52{bottom:742.737333pt;}
.yd{bottom:743.036000pt;}
.y73{bottom:746.258667pt;}
.y96{bottom:754.273333pt;}
.y33{bottom:754.729333pt;}
.yc{bottom:757.648000pt;}
.y51{bottom:760.802667pt;}
.y72{bottom:764.324000pt;}
.yb{bottom:772.260000pt;}
.yc9{bottom:772.794667pt;}
.y50{bottom:778.869333pt;}
.y95{bottom:781.905333pt;}
.y71{bottom:782.389333pt;}
.ya{bottom:786.872000pt;}
.y32{bottom:787.213333pt;}
.yc8{bottom:790.860000pt;}
.y93{bottom:791.882667pt;}
.y4f{bottom:796.934667pt;}
.y9{bottom:801.484000pt;}
.y94{bottom:801.990667pt;}
.yc7{bottom:808.925333pt;}
.y4e{bottom:815.000000pt;}
.y8{bottom:816.096000pt;}
.yc6{bottom:826.992000pt;}
.y92{bottom:830.328000pt;}
.y7{bottom:830.708000pt;}
.y31{bottom:833.065333pt;}
.y70{bottom:834.653333pt;}
.y6{bottom:845.320000pt;}
.y91{bottom:848.393333pt;}
.y30{bottom:851.130667pt;}
.yc5{bottom:859.476000pt;}
.y5{bottom:859.932000pt;}
.y6f{bottom:864.970667pt;}
.y90{bottom:866.458667pt;}
.y2f{bottom:869.197333pt;}
.y6e{bottom:880.910667pt;}
.y8f{bottom:884.525333pt;}
.y2e{bottom:887.262667pt;}
.y8e{bottom:902.590667pt;}
.y4{bottom:905.126667pt;}
.y2d{bottom:905.328000pt;}
.y8d{bottom:920.656000pt;}
.y2c{bottom:923.393333pt;}
.y3{bottom:930.600000pt;}
.y2b{bottom:941.458667pt;}
.y8c{bottom:948.286667pt;}
.y8b{bottom:958.264000pt;}
.y2a{bottom:959.525333pt;}
.y2{bottom:965.137333pt;}
.y29{bottom:977.590667pt;}
.y1{bottom:994.361333pt;}
.y28{bottom:995.656000pt;}
.ha{height:14.824448pt;}
.h4{height:22.316373pt;}
.hd{height:22.571418pt;}
.h9{height:33.474560pt;}
.h6{height:33.857126pt;}
.hf{height:35.953737pt;}
.h10{height:37.618778pt;}
.h7{height:40.610943pt;}
.hc{height:41.078067pt;}
.h5{height:41.192762pt;}
.hb{height:41.843200pt;}
.h11{height:43.636400pt;}
.he{height:44.505225pt;}
.h3{height:53.231098pt;}
.h8{height:53.406121pt;}
.h2{height:64.087196pt;}
.h12{height:80.558095pt;}
.h13{height:81.102095pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:118.252000pt;}
.x21{left:119.718667pt;}
.x34{left:122.549333pt;}
.x2c{left:124.129333pt;}
.x44{left:125.818667pt;}
.x11{left:133.600000pt;}
.x2d{left:137.657333pt;}
.x35{left:139.698667pt;}
.x45{left:150.212000pt;}
.x32{left:159.746667pt;}
.x22{left:166.626667pt;}
.x2{left:174.108000pt;}
.x3e{left:200.826667pt;}
.x16{left:216.810667pt;}
.x25{left:225.382667pt;}
.x17{left:230.338667pt;}
.x26{left:233.309333pt;}
.x18{left:238.758667pt;}
.x27{left:246.836000pt;}
.x19{left:252.286667pt;}
.x28{left:253.957333pt;}
.x1a{left:260.706667pt;}
.x29{left:267.484000pt;}
.x2a{left:273.209333pt;}
.x1b{left:274.233333pt;}
.x2b{left:286.737333pt;}
.x30{left:287.682667pt;}
.x31{left:301.210667pt;}
.x3f{left:313.645333pt;}
.x42{left:319.029333pt;}
.x3{left:322.049333pt;}
.x4{left:328.813333pt;}
.x5{left:335.584000pt;}
.x6{left:342.348000pt;}
.x7{left:349.118667pt;}
.x8{left:355.882667pt;}
.x43{left:360.414667pt;}
.x33{left:367.929333pt;}
.x36{left:398.112000pt;}
.x1c{left:406.873333pt;}
.x37{left:416.058667pt;}
.x1d{left:420.401333pt;}
.x46{left:426.976000pt;}
.x1e{left:428.821333pt;}
.xb{left:430.100000pt;}
.xc{left:436.864000pt;}
.x1f{left:442.348000pt;}
.xd{left:443.762667pt;}
.xe{left:450.525333pt;}
.x20{left:464.185333pt;}
.x3a{left:467.698667pt;}
.x3b{left:481.225333pt;}
.x3c{left:488.114667pt;}
.x3d{left:501.642667pt;}
.x38{left:504.257333pt;}
.x39{left:551.768000pt;}
.x2e{left:565.202667pt;}
.x2f{left:578.730667pt;}
.x9{left:594.212000pt;}
.xa{left:600.976000pt;}
.x40{left:605.561333pt;}
.x12{left:612.674667pt;}
.x13{left:619.438667pt;}
.x14{left:626.308000pt;}
.x15{left:633.072000pt;}
.x41{left:640.204000pt;}
.x23{left:655.976000pt;}
.xf{left:660.969333pt;}
.x10{left:667.733333pt;}
.x24{left:669.504000pt;}
}




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