
    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_34889a78db0fb7da3dcfdacc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.141000;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_90c1a04c25093fd3605b21e6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.141000;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_5aeb2c9f993e6c4d237247f6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.119000;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_3bfe5ad37f240b3e0fd8f6a4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.105000;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_90c1a04c25093fd3605b21e6.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.141000;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;}
.mb{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);}
.m5b{transform:matrix(0.245478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245478,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.245610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245610,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245612,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245622,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246010,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246076,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246076,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246076,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246415,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m14{transform:matrix(0.246576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246576,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.246785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246785,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.246822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246822,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246963,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247080,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247202,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.247234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247234,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.247459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247459,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.247488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247488,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247873,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248429,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248905,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248988,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m24{transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249039,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249063,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249185,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249249,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249339,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249698,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249729,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m36{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250034,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250195,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250288,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250610,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250622,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250668,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250680,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250737,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250902,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251020,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251144,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251171,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251185,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251198,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251420,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251561,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251768,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251844,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251856,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252037,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252149,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252149,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252149,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252159,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252254,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252427,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252529,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252529,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252529,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252559,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252729,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252761,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252800,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252802,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252802,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252802,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.252846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252846,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253095,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.253193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253193,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.253461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253461,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.253683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253683,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253693,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253702,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.253761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253761,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254215,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254398,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254749,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.v1{vertical-align:-48.000000px;}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.307500px;}
.ls7{letter-spacing:-0.246000px;}
.ls6{letter-spacing:-0.184500px;}
.lsa{letter-spacing:-0.123000px;}
.ls9{letter-spacing:-0.061500px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.030750px;}
.ls1{letter-spacing:0.061500px;}
.ls2{letter-spacing:0.123000px;}
.lse{letter-spacing:0.153750px;}
.ls3{letter-spacing:0.184500px;}
.ls0{letter-spacing:0.246000px;}
.lsb{letter-spacing:0.307500px;}
.lsf{letter-spacing:0.369000px;}
.lsc{letter-spacing:0.492000px;}
.lsd{letter-spacing:0.553500px;}
.ls10{letter-spacing:1.230000px;}
.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:-26.487000px;}
.wsd{word-spacing:-13.837500px;}
.ws31{word-spacing:-13.530000px;}
.wse{word-spacing:-13.243500px;}
.wsc{word-spacing:-12.484500px;}
.ws20{word-spacing:-12.361500px;}
.wsb{word-spacing:-12.300000px;}
.ws21{word-spacing:-12.238500px;}
.ws30{word-spacing:-12.177000px;}
.ws2f{word-spacing:-12.115500px;}
.ws8{word-spacing:-2.337000px;}
.ws29{word-spacing:-2.152500px;}
.ws2{word-spacing:-2.091000px;}
.ws25{word-spacing:-2.029500px;}
.ws1e{word-spacing:-1.906500px;}
.ws10{word-spacing:-1.783500px;}
.ws1f{word-spacing:-1.660500px;}
.ws6{word-spacing:-1.599000px;}
.ws15{word-spacing:-1.537500px;}
.ws18{word-spacing:-1.476000px;}
.ws2b{word-spacing:-1.414500px;}
.ws16{word-spacing:-1.353000px;}
.ws39{word-spacing:-1.230000px;}
.ws1a{word-spacing:-1.168500px;}
.ws24{word-spacing:-1.107000px;}
.ws35{word-spacing:-1.045500px;}
.ws7{word-spacing:-0.984000px;}
.ws9{word-spacing:-0.922500px;}
.ws22{word-spacing:-0.799500px;}
.ws36{word-spacing:-0.738000px;}
.ws19{word-spacing:-0.676500px;}
.ws1c{word-spacing:-0.246000px;}
.ws23{word-spacing:-0.061500px;}
.ws1{word-spacing:0.000000px;}
.ws33{word-spacing:0.061500px;}
.ws37{word-spacing:0.123000px;}
.ws28{word-spacing:0.246000px;}
.ws2a{word-spacing:0.430500px;}
.ws13{word-spacing:0.492000px;}
.ws1b{word-spacing:0.676500px;}
.ws4{word-spacing:0.738000px;}
.ws27{word-spacing:0.799500px;}
.ws26{word-spacing:0.861000px;}
.ws17{word-spacing:1.045500px;}
.ws32{word-spacing:1.107000px;}
.ws11{word-spacing:1.291500px;}
.ws14{word-spacing:1.783500px;}
.ws2c{word-spacing:1.845000px;}
.ws2d{word-spacing:1.968000px;}
.ws3{word-spacing:2.029500px;}
.ws5{word-spacing:2.091000px;}
.ws34{word-spacing:2.152500px;}
.wsf{word-spacing:2.275500px;}
.ws38{word-spacing:2.583000px;}
.ws12{word-spacing:3.505500px;}
.ws1d{word-spacing:4.366500px;}
.wsa{word-spacing:596.257500px;}
.ws2e{word-spacing:599.210400px;}
._a{margin-left:-16.746450px;}
._9{margin-left:-15.233550px;}
._b{margin-left:-10.692000px;}
._7{margin-left:-6.075000px;}
._5{margin-left:-4.424460px;}
._6{margin-left:-3.247200px;}
._4{margin-left:-2.217540px;}
._1{margin-left:-1.197480px;}
._3{width:1.020900px;}
._2{width:2.183250px;}
._0{width:1845.601680px;}
._8{width:2340.211147px;}
.fc1{color:rgb(0,22,137);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:47.899200px;}
.fs0{font-size:61.500000px;}
.fs3{font-size:121.500000px;}
.fs4{font-size:180.000000px;}
.fs2{font-size:243.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:47.834700px;}
.y20{bottom:108.584550px;}
.y3c{bottom:108.584700px;}
.y1f{bottom:128.834550px;}
.y3b{bottom:128.834700px;}
.y1e{bottom:149.084550px;}
.y3a{bottom:149.084700px;}
.y1d{bottom:169.335000px;}
.y1c{bottom:189.585000px;}
.y39{bottom:209.835000px;}
.y1b{bottom:230.085000px;}
.y38{bottom:250.335000px;}
.y1a{bottom:270.585000px;}
.y19{bottom:290.835000px;}
.y18{bottom:311.085000px;}
.y17{bottom:331.335000px;}
.y16{bottom:351.585000px;}
.y15{bottom:371.835000px;}
.y14{bottom:392.085000px;}
.y13{bottom:412.335000px;}
.y1{bottom:432.585000px;}
.y12{bottom:452.835000px;}
.y11{bottom:473.085000px;}
.y37{bottom:493.335000px;}
.y10{bottom:513.585000px;}
.yf{bottom:533.835000px;}
.y36{bottom:554.085000px;}
.ye{bottom:574.335000px;}
.yd{bottom:594.585000px;}
.yc{bottom:614.835000px;}
.yb{bottom:635.085000px;}
.y46{bottom:654.651000px;}
.ya{bottom:655.335000px;}
.y9{bottom:675.585000px;}
.y45{bottom:685.026000px;}
.y8{bottom:695.835000px;}
.y44{bottom:715.401000px;}
.y7{bottom:716.085000px;}
.y6{bottom:736.335000px;}
.y43{bottom:745.776000px;}
.y5{bottom:756.585000px;}
.y4{bottom:776.835000px;}
.y3{bottom:797.085000px;}
.y35{bottom:817.335000px;}
.y34{bottom:837.585000px;}
.y33{bottom:857.835000px;}
.y32{bottom:878.085000px;}
.y31{bottom:898.335000px;}
.y30{bottom:918.585000px;}
.y2f{bottom:938.835000px;}
.y2e{bottom:959.085000px;}
.y2d{bottom:979.335000px;}
.y42{bottom:998.361000px;}
.y2c{bottom:999.585000px;}
.y23{bottom:1008.607500px;}
.y2b{bottom:1019.835000px;}
.y41{bottom:1028.736000px;}
.y2a{bottom:1040.085000px;}
.y40{bottom:1059.111000px;}
.y29{bottom:1060.335000px;}
.y22{bottom:1067.427000px;}
.y28{bottom:1080.585000px;}
.y3f{bottom:1089.486000px;}
.y27{bottom:1100.835000px;}
.y3e{bottom:1119.861000px;}
.y26{bottom:1121.085000px;}
.y21{bottom:1128.177000px;}
.y25{bottom:1141.335000px;}
.y3d{bottom:1150.236000px;}
.y24{bottom:1161.585000px;}
.h3{height:44.067264px;}
.h2{height:56.580000px;}
.h5{height:108.135000px;}
.h6{height:117.600000px;}
.h4{height:216.270000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x5{left:-92.790000px;}
.x0{left:0.000000px;}
.x2{left:60.750000px;}
.x4{left:89.460000px;}
.x6{left:121.500000px;}
.x3{left:166.375500px;}
.xa{left:175.473000px;}
.xb{left:186.543000px;}
.xc{left:203.430000px;}
.x9{left:213.910500px;}
.x7{left:227.124000px;}
.x8{left:529.644000px;}
.x1{left:800.124000px;}
@media print{
.v1{vertical-align:-42.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.273333pt;}
.ls7{letter-spacing:-0.218667pt;}
.ls6{letter-spacing:-0.164000pt;}
.lsa{letter-spacing:-0.109333pt;}
.ls9{letter-spacing:-0.054667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.027333pt;}
.ls1{letter-spacing:0.054667pt;}
.ls2{letter-spacing:0.109333pt;}
.lse{letter-spacing:0.136667pt;}
.ls3{letter-spacing:0.164000pt;}
.ls0{letter-spacing:0.218667pt;}
.lsb{letter-spacing:0.273333pt;}
.lsf{letter-spacing:0.328000pt;}
.lsc{letter-spacing:0.437333pt;}
.lsd{letter-spacing:0.492000pt;}
.ls10{letter-spacing:1.093333pt;}
.ws0{word-spacing:-23.544000pt;}
.wsd{word-spacing:-12.300000pt;}
.ws31{word-spacing:-12.026667pt;}
.wse{word-spacing:-11.772000pt;}
.wsc{word-spacing:-11.097333pt;}
.ws20{word-spacing:-10.988000pt;}
.wsb{word-spacing:-10.933333pt;}
.ws21{word-spacing:-10.878667pt;}
.ws30{word-spacing:-10.824000pt;}
.ws2f{word-spacing:-10.769333pt;}
.ws8{word-spacing:-2.077333pt;}
.ws29{word-spacing:-1.913333pt;}
.ws2{word-spacing:-1.858667pt;}
.ws25{word-spacing:-1.804000pt;}
.ws1e{word-spacing:-1.694667pt;}
.ws10{word-spacing:-1.585333pt;}
.ws1f{word-spacing:-1.476000pt;}
.ws6{word-spacing:-1.421333pt;}
.ws15{word-spacing:-1.366667pt;}
.ws18{word-spacing:-1.312000pt;}
.ws2b{word-spacing:-1.257333pt;}
.ws16{word-spacing:-1.202667pt;}
.ws39{word-spacing:-1.093333pt;}
.ws1a{word-spacing:-1.038667pt;}
.ws24{word-spacing:-0.984000pt;}
.ws35{word-spacing:-0.929333pt;}
.ws7{word-spacing:-0.874667pt;}
.ws9{word-spacing:-0.820000pt;}
.ws22{word-spacing:-0.710667pt;}
.ws36{word-spacing:-0.656000pt;}
.ws19{word-spacing:-0.601333pt;}
.ws1c{word-spacing:-0.218667pt;}
.ws23{word-spacing:-0.054667pt;}
.ws1{word-spacing:0.000000pt;}
.ws33{word-spacing:0.054667pt;}
.ws37{word-spacing:0.109333pt;}
.ws28{word-spacing:0.218667pt;}
.ws2a{word-spacing:0.382667pt;}
.ws13{word-spacing:0.437333pt;}
.ws1b{word-spacing:0.601333pt;}
.ws4{word-spacing:0.656000pt;}
.ws27{word-spacing:0.710667pt;}
.ws26{word-spacing:0.765333pt;}
.ws17{word-spacing:0.929333pt;}
.ws32{word-spacing:0.984000pt;}
.ws11{word-spacing:1.148000pt;}
.ws14{word-spacing:1.585333pt;}
.ws2c{word-spacing:1.640000pt;}
.ws2d{word-spacing:1.749333pt;}
.ws3{word-spacing:1.804000pt;}
.ws5{word-spacing:1.858667pt;}
.ws34{word-spacing:1.913333pt;}
.wsf{word-spacing:2.022667pt;}
.ws38{word-spacing:2.296000pt;}
.ws12{word-spacing:3.116000pt;}
.ws1d{word-spacing:3.881333pt;}
.wsa{word-spacing:530.006667pt;}
.ws2e{word-spacing:532.631467pt;}
._a{margin-left:-14.885733pt;}
._9{margin-left:-13.540933pt;}
._b{margin-left:-9.504000pt;}
._7{margin-left:-5.400000pt;}
._5{margin-left:-3.932853pt;}
._6{margin-left:-2.886400pt;}
._4{margin-left:-1.971147pt;}
._1{margin-left:-1.064427pt;}
._3{width:0.907467pt;}
._2{width:1.940667pt;}
._0{width:1640.534827pt;}
._8{width:2080.187686pt;}
.fs1{font-size:42.577067pt;}
.fs0{font-size:54.666667pt;}
.fs3{font-size:108.000000pt;}
.fs4{font-size:160.000000pt;}
.fs2{font-size:216.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:42.519733pt;}
.y20{bottom:96.519600pt;}
.y3c{bottom:96.519733pt;}
.y1f{bottom:114.519600pt;}
.y3b{bottom:114.519733pt;}
.y1e{bottom:132.519600pt;}
.y3a{bottom:132.519733pt;}
.y1d{bottom:150.520000pt;}
.y1c{bottom:168.520000pt;}
.y39{bottom:186.520000pt;}
.y1b{bottom:204.520000pt;}
.y38{bottom:222.520000pt;}
.y1a{bottom:240.520000pt;}
.y19{bottom:258.520000pt;}
.y18{bottom:276.520000pt;}
.y17{bottom:294.520000pt;}
.y16{bottom:312.520000pt;}
.y15{bottom:330.520000pt;}
.y14{bottom:348.520000pt;}
.y13{bottom:366.520000pt;}
.y1{bottom:384.520000pt;}
.y12{bottom:402.520000pt;}
.y11{bottom:420.520000pt;}
.y37{bottom:438.520000pt;}
.y10{bottom:456.520000pt;}
.yf{bottom:474.520000pt;}
.y36{bottom:492.520000pt;}
.ye{bottom:510.520000pt;}
.yd{bottom:528.520000pt;}
.yc{bottom:546.520000pt;}
.yb{bottom:564.520000pt;}
.y46{bottom:581.912000pt;}
.ya{bottom:582.520000pt;}
.y9{bottom:600.520000pt;}
.y45{bottom:608.912000pt;}
.y8{bottom:618.520000pt;}
.y44{bottom:635.912000pt;}
.y7{bottom:636.520000pt;}
.y6{bottom:654.520000pt;}
.y43{bottom:662.912000pt;}
.y5{bottom:672.520000pt;}
.y4{bottom:690.520000pt;}
.y3{bottom:708.520000pt;}
.y35{bottom:726.520000pt;}
.y34{bottom:744.520000pt;}
.y33{bottom:762.520000pt;}
.y32{bottom:780.520000pt;}
.y31{bottom:798.520000pt;}
.y30{bottom:816.520000pt;}
.y2f{bottom:834.520000pt;}
.y2e{bottom:852.520000pt;}
.y2d{bottom:870.520000pt;}
.y42{bottom:887.432000pt;}
.y2c{bottom:888.520000pt;}
.y23{bottom:896.540000pt;}
.y2b{bottom:906.520000pt;}
.y41{bottom:914.432000pt;}
.y2a{bottom:924.520000pt;}
.y40{bottom:941.432000pt;}
.y29{bottom:942.520000pt;}
.y22{bottom:948.824000pt;}
.y28{bottom:960.520000pt;}
.y3f{bottom:968.432000pt;}
.y27{bottom:978.520000pt;}
.y3e{bottom:995.432000pt;}
.y26{bottom:996.520000pt;}
.y21{bottom:1002.824000pt;}
.y25{bottom:1014.520000pt;}
.y3d{bottom:1022.432000pt;}
.y24{bottom:1032.520000pt;}
.h3{height:39.170901pt;}
.h2{height:50.293333pt;}
.h5{height:96.120000pt;}
.h6{height:104.533333pt;}
.h4{height:192.240000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x5{left:-82.480000pt;}
.x0{left:0.000000pt;}
.x2{left:54.000000pt;}
.x4{left:79.520000pt;}
.x6{left:108.000000pt;}
.x3{left:147.889333pt;}
.xa{left:155.976000pt;}
.xb{left:165.816000pt;}
.xc{left:180.826667pt;}
.x9{left:190.142667pt;}
.x7{left:201.888000pt;}
.x8{left:470.794667pt;}
.x1{left:711.221333pt;}
}




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