
    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_8a71f008ed9e1db20a4c0d9f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.148000;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_966c5db3cbbe523a70b0d80f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.957000;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_8b7db8347504e39a857dfb5f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.165000;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_612ff5efbf983115aa2fef2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.243000;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_e81c46c085f401f4c2c59206.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.200900;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_1719e1debc99d0d2f55afdd0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.165000;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_203f3890afc055ba2c34b77a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040048;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_ef20d1f6e6211b7d595ecdf5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.184000;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.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247550,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247590,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247722,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248045,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248305,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248340,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248502,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248507,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248512,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248680,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248693,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249058,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249288,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249620,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249872,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,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);}
.m25{transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250022,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250090,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250267,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250352,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250607,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250660,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250807,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251290,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251640,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251963,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252190,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252225,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252325,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-3.000000px;}
.ls9{letter-spacing:-0.840000px;}
.ls17{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.660000px;}
.ls1a{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.420000px;}
.ls6{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.300000px;}
.ls11{letter-spacing:-0.240000px;}
.ls3{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.120000px;}
.ls5{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.060000px;}
.ls1{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.270000px;}
.lsd{letter-spacing:0.300000px;}
.lsb{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.480000px;}
.ls15{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.810000px;}
.ls10{letter-spacing:1.350000px;}
.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;}
}
.ws41{word-spacing:-13.608000px;}
.ws5b{word-spacing:-12.474000px;}
.ws43{word-spacing:-12.300000px;}
.ws42{word-spacing:-12.180000px;}
.ws25{word-spacing:-11.760000px;}
.ws26{word-spacing:-11.700000px;}
.ws0{word-spacing:-11.520000px;}
.ws24{word-spacing:-11.400000px;}
.ws5c{word-spacing:-10.710000px;}
.ws5d{word-spacing:-9.945000px;}
.ws1c{word-spacing:-3.180000px;}
.ws21{word-spacing:-2.700000px;}
.ws3f{word-spacing:-2.640000px;}
.ws4{word-spacing:-2.580000px;}
.wsc{word-spacing:-2.520000px;}
.wse{word-spacing:-2.460000px;}
.ws4a{word-spacing:-2.400000px;}
.ws1b{word-spacing:-2.340000px;}
.wsd{word-spacing:-2.280000px;}
.ws51{word-spacing:-2.220000px;}
.ws5{word-spacing:-2.100000px;}
.ws17{word-spacing:-1.980000px;}
.ws18{word-spacing:-1.860000px;}
.ws29{word-spacing:-1.740000px;}
.ws56{word-spacing:-1.680000px;}
.ws1e{word-spacing:-1.560000px;}
.ws7{word-spacing:-1.500000px;}
.ws48{word-spacing:-1.380000px;}
.ws27{word-spacing:-1.350000px;}
.ws49{word-spacing:-1.320000px;}
.ws19{word-spacing:-1.260000px;}
.ws1d{word-spacing:-1.080000px;}
.ws4f{word-spacing:-0.900000px;}
.ws50{word-spacing:-0.840000px;}
.ws15{word-spacing:-0.600000px;}
.ws5e{word-spacing:-0.510000px;}
.ws44{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.420000px;}
.ws2b{word-spacing:-0.360000px;}
.ws58{word-spacing:-0.300000px;}
.ws4b{word-spacing:-0.120000px;}
.wsf{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws22{word-spacing:0.060000px;}
.ws3a{word-spacing:0.120000px;}
.ws3b{word-spacing:0.180000px;}
.ws32{word-spacing:0.240000px;}
.ws52{word-spacing:0.300000px;}
.ws16{word-spacing:0.360000px;}
.ws39{word-spacing:0.420000px;}
.ws4c{word-spacing:0.480000px;}
.ws2{word-spacing:0.600000px;}
.ws3{word-spacing:0.660000px;}
.ws3c{word-spacing:0.720000px;}
.ws13{word-spacing:0.840000px;}
.ws12{word-spacing:0.900000px;}
.ws59{word-spacing:0.960000px;}
.ws4d{word-spacing:1.020000px;}
.ws20{word-spacing:1.260000px;}
.ws1f{word-spacing:1.320000px;}
.ws3d{word-spacing:1.380000px;}
.ws45{word-spacing:1.440000px;}
.ws47{word-spacing:1.500000px;}
.ws3e{word-spacing:1.560000px;}
.ws46{word-spacing:1.620000px;}
.ws35{word-spacing:1.680000px;}
.ws34{word-spacing:1.800000px;}
.ws54{word-spacing:1.860000px;}
.ws2d{word-spacing:1.920000px;}
.ws2e{word-spacing:2.100000px;}
.ws14{word-spacing:2.220000px;}
.ws1a{word-spacing:2.280000px;}
.ws4e{word-spacing:2.400000px;}
.ws28{word-spacing:2.460000px;}
.ws40{word-spacing:2.520000px;}
.ws33{word-spacing:2.700000px;}
.ws36{word-spacing:2.880000px;}
.ws38{word-spacing:3.000000px;}
.ws57{word-spacing:3.060000px;}
.ws31{word-spacing:3.120000px;}
.ws9{word-spacing:3.240000px;}
.ws30{word-spacing:3.420000px;}
.ws8{word-spacing:3.540000px;}
.ws11{word-spacing:3.600000px;}
.wsb{word-spacing:3.720000px;}
.ws37{word-spacing:3.780000px;}
.ws2a{word-spacing:3.840000px;}
.ws5a{word-spacing:3.900000px;}
.wsa{word-spacing:3.960000px;}
.ws55{word-spacing:4.020000px;}
.ws6{word-spacing:4.080000px;}
.ws10{word-spacing:4.140000px;}
.ws2f{word-spacing:4.200000px;}
.ws53{word-spacing:1595.323800px;}
.ws23{word-spacing:1596.511800px;}
._8{margin-left:-2177.550000px;}
._9{margin-left:-10.770000px;}
._5{margin-left:-6.792000px;}
._3{margin-left:-4.758000px;}
._7{margin-left:-3.618000px;}
._1{margin-left:-2.520000px;}
._0{margin-left:-1.440000px;}
._2{width:1.428000px;}
._6{width:3.096000px;}
._4{width:4.242000px;}
._a{width:10.710000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y25{bottom:60.271650px;}
.y24{bottom:79.001550px;}
.y23{bottom:97.726350px;}
.y46{bottom:97.731450px;}
.y22{bottom:116.461350px;}
.y21{bottom:135.191400px;}
.y45{bottom:153.911100px;}
.y20{bottom:153.921300px;}
.y55{bottom:172.641000px;}
.y44{bottom:172.646100px;}
.y1f{bottom:172.651200px;}
.y54{bottom:191.376000px;}
.y1e{bottom:191.381100px;}
.y1d{bottom:210.111000px;}
.y1c{bottom:228.835800px;}
.y43{bottom:228.840900px;}
.y42{bottom:247.565700px;}
.y1b{bottom:247.570800px;}
.y1a{bottom:266.300700px;}
.y19{bottom:285.000300px;}
.y53{bottom:285.010350px;}
.y41{bottom:285.030600px;}
.y85{bottom:287.098650px;}
.y18{bottom:303.735300px;}
.y40{bottom:303.740250px;}
.y52{bottom:303.745350px;}
.y84{bottom:304.349400px;}
.y83{bottom:321.600150px;}
.y17{bottom:322.470300px;}
.y3f{bottom:322.475250px;}
.y51{bottom:322.480350px;}
.y82{bottom:338.850900px;}
.y16{bottom:341.205300px;}
.y3e{bottom:341.210250px;}
.y50{bottom:341.215350px;}
.y15{bottom:359.940300px;}
.y3d{bottom:359.945250px;}
.y4f{bottom:359.950350px;}
.y93{bottom:373.339650px;}
.y81{bottom:373.352400px;}
.y14{bottom:378.675300px;}
.y3c{bottom:378.680250px;}
.y92{bottom:390.590400px;}
.y80{bottom:390.603150px;}
.y13{bottom:397.410300px;}
.y91{bottom:407.841150px;}
.y7f{bottom:407.853900px;}
.y12{bottom:416.140200px;}
.y90{bottom:425.091900px;}
.y7e{bottom:425.104650px;}
.y4e{bottom:434.854800px;}
.y5e{bottom:434.865000px;}
.y11{bottom:434.870100px;}
.y7d{bottom:442.355400px;}
.y4d{bottom:453.589800px;}
.y10{bottom:453.600000px;}
.y8f{bottom:459.593400px;}
.y7c{bottom:459.606150px;}
.yf{bottom:472.314600px;}
.y3b{bottom:472.319700px;}
.y4c{bottom:472.324800px;}
.y5d{bottom:472.329900px;}
.y8e{bottom:476.844150px;}
.y7b{bottom:476.856900px;}
.ye{bottom:491.049600px;}
.y3a{bottom:491.054700px;}
.y4b{bottom:491.059800px;}
.y8d{bottom:494.094900px;}
.yd{bottom:509.784600px;}
.y39{bottom:509.789700px;}
.y8c{bottom:511.345650px;}
.y7a{bottom:511.358400px;}
.yc{bottom:528.519600px;}
.y79{bottom:528.609150px;}
.y8b{bottom:545.847150px;}
.y78{bottom:545.859900px;}
.y38{bottom:547.224150px;}
.yb{bottom:547.249650px;}
.y8a{bottom:563.097900px;}
.y37{bottom:565.959150px;}
.ya{bottom:565.969350px;}
.y4a{bottom:565.979550px;}
.y89{bottom:580.348650px;}
.y77{bottom:580.361400px;}
.y36{bottom:584.694150px;}
.y9{bottom:584.704350px;}
.y49{bottom:584.709450px;}
.y88{bottom:597.599400px;}
.y76{bottom:597.612150px;}
.y35{bottom:603.429150px;}
.y8{bottom:603.439350px;}
.y87{bottom:614.850150px;}
.y75{bottom:614.862900px;}
.y34{bottom:622.164150px;}
.y7{bottom:622.169250px;}
.y86{bottom:632.100900px;}
.y74{bottom:632.113650px;}
.y6{bottom:640.899150px;}
.y5c{bottom:659.613900px;}
.y5{bottom:659.629050px;}
.y73{bottom:666.371550px;}
.y33{bottom:678.348900px;}
.y4{bottom:678.358950px;}
.y32{bottom:697.083900px;}
.y31{bottom:715.818900px;}
.y69{bottom:718.380600px;}
.y30{bottom:734.548800px;}
.y72{bottom:735.618600px;}
.y68{bottom:735.631350px;}
.y71{bottom:752.869350px;}
.y67{bottom:752.882100px;}
.y48{bottom:753.243150px;}
.y2f{bottom:753.278700px;}
.y70{bottom:770.120100px;}
.y66{bottom:770.132850px;}
.y47{bottom:771.978150px;}
.y2e{bottom:772.008600px;}
.y6f{bottom:787.370850px;}
.y65{bottom:787.383600px;}
.y2d{bottom:790.713150px;}
.y5b{bottom:790.738650px;}
.y6e{bottom:804.621600px;}
.y64{bottom:804.634350px;}
.y2c{bottom:809.448150px;}
.y5a{bottom:809.468400px;}
.y3{bottom:816.933600px;}
.y6d{bottom:821.872350px;}
.y63{bottom:821.885100px;}
.y59{bottom:828.178050px;}
.y2b{bottom:828.183150px;}
.y6c{bottom:839.123100px;}
.y62{bottom:839.135850px;}
.y58{bottom:846.913050px;}
.y2a{bottom:846.918150px;}
.y2{bottom:851.941350px;}
.y6b{bottom:856.373850px;}
.y61{bottom:856.386600px;}
.y57{bottom:865.648050px;}
.y29{bottom:865.653150px;}
.y6a{bottom:873.624600px;}
.y60{bottom:873.637350px;}
.y56{bottom:884.383050px;}
.y28{bottom:884.388150px;}
.y1{bottom:899.705250px;}
.y27{bottom:903.118050px;}
.y5f{bottom:907.889400px;}
.y26{bottom:954.666900px;}
.h8{height:45.798000px;}
.h7{height:49.827000px;}
.h6{height:50.004000px;}
.h4{height:50.868000px;}
.h5{height:58.620000px;}
.h3{height:67.824000px;}
.h2{height:88.896000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x5{left:72.283500px;}
.x1{left:79.363650px;}
.x2{left:81.208650px;}
.xa{left:92.332200px;}
.x6{left:93.839100px;}
.x3{left:102.326250px;}
.x8{left:364.111200px;}
.xb{left:371.671950px;}
.x9{left:376.733700px;}
.x7{left:605.653650px;}
.x4{left:623.093400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-2.666667pt;}
.ls9{letter-spacing:-0.746667pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.586667pt;}
.ls1a{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.373333pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.266667pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.106667pt;}
.ls5{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.053333pt;}
.ls1{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.240000pt;}
.lsd{letter-spacing:0.266667pt;}
.lsb{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.426667pt;}
.ls15{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.720000pt;}
.ls10{letter-spacing:1.200000pt;}
.ws41{word-spacing:-12.096000pt;}
.ws5b{word-spacing:-11.088000pt;}
.ws43{word-spacing:-10.933333pt;}
.ws42{word-spacing:-10.826667pt;}
.ws25{word-spacing:-10.453333pt;}
.ws26{word-spacing:-10.400000pt;}
.ws0{word-spacing:-10.240000pt;}
.ws24{word-spacing:-10.133333pt;}
.ws5c{word-spacing:-9.520000pt;}
.ws5d{word-spacing:-8.840000pt;}
.ws1c{word-spacing:-2.826667pt;}
.ws21{word-spacing:-2.400000pt;}
.ws3f{word-spacing:-2.346667pt;}
.ws4{word-spacing:-2.293333pt;}
.wsc{word-spacing:-2.240000pt;}
.wse{word-spacing:-2.186667pt;}
.ws4a{word-spacing:-2.133333pt;}
.ws1b{word-spacing:-2.080000pt;}
.wsd{word-spacing:-2.026667pt;}
.ws51{word-spacing:-1.973333pt;}
.ws5{word-spacing:-1.866667pt;}
.ws17{word-spacing:-1.760000pt;}
.ws18{word-spacing:-1.653333pt;}
.ws29{word-spacing:-1.546667pt;}
.ws56{word-spacing:-1.493333pt;}
.ws1e{word-spacing:-1.386667pt;}
.ws7{word-spacing:-1.333333pt;}
.ws48{word-spacing:-1.226667pt;}
.ws27{word-spacing:-1.200000pt;}
.ws49{word-spacing:-1.173333pt;}
.ws19{word-spacing:-1.120000pt;}
.ws1d{word-spacing:-0.960000pt;}
.ws4f{word-spacing:-0.800000pt;}
.ws50{word-spacing:-0.746667pt;}
.ws15{word-spacing:-0.533333pt;}
.ws5e{word-spacing:-0.453333pt;}
.ws44{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.373333pt;}
.ws2b{word-spacing:-0.320000pt;}
.ws58{word-spacing:-0.266667pt;}
.ws4b{word-spacing:-0.106667pt;}
.wsf{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws22{word-spacing:0.053333pt;}
.ws3a{word-spacing:0.106667pt;}
.ws3b{word-spacing:0.160000pt;}
.ws32{word-spacing:0.213333pt;}
.ws52{word-spacing:0.266667pt;}
.ws16{word-spacing:0.320000pt;}
.ws39{word-spacing:0.373333pt;}
.ws4c{word-spacing:0.426667pt;}
.ws2{word-spacing:0.533333pt;}
.ws3{word-spacing:0.586667pt;}
.ws3c{word-spacing:0.640000pt;}
.ws13{word-spacing:0.746667pt;}
.ws12{word-spacing:0.800000pt;}
.ws59{word-spacing:0.853333pt;}
.ws4d{word-spacing:0.906667pt;}
.ws20{word-spacing:1.120000pt;}
.ws1f{word-spacing:1.173333pt;}
.ws3d{word-spacing:1.226667pt;}
.ws45{word-spacing:1.280000pt;}
.ws47{word-spacing:1.333333pt;}
.ws3e{word-spacing:1.386667pt;}
.ws46{word-spacing:1.440000pt;}
.ws35{word-spacing:1.493333pt;}
.ws34{word-spacing:1.600000pt;}
.ws54{word-spacing:1.653333pt;}
.ws2d{word-spacing:1.706667pt;}
.ws2e{word-spacing:1.866667pt;}
.ws14{word-spacing:1.973333pt;}
.ws1a{word-spacing:2.026667pt;}
.ws4e{word-spacing:2.133333pt;}
.ws28{word-spacing:2.186667pt;}
.ws40{word-spacing:2.240000pt;}
.ws33{word-spacing:2.400000pt;}
.ws36{word-spacing:2.560000pt;}
.ws38{word-spacing:2.666667pt;}
.ws57{word-spacing:2.720000pt;}
.ws31{word-spacing:2.773333pt;}
.ws9{word-spacing:2.880000pt;}
.ws30{word-spacing:3.040000pt;}
.ws8{word-spacing:3.146667pt;}
.ws11{word-spacing:3.200000pt;}
.wsb{word-spacing:3.306667pt;}
.ws37{word-spacing:3.360000pt;}
.ws2a{word-spacing:3.413333pt;}
.ws5a{word-spacing:3.466667pt;}
.wsa{word-spacing:3.520000pt;}
.ws55{word-spacing:3.573333pt;}
.ws6{word-spacing:3.626667pt;}
.ws10{word-spacing:3.680000pt;}
.ws2f{word-spacing:3.733333pt;}
.ws53{word-spacing:1418.065600pt;}
.ws23{word-spacing:1419.121600pt;}
._8{margin-left:-1935.600000pt;}
._9{margin-left:-9.573333pt;}
._5{margin-left:-6.037333pt;}
._3{margin-left:-4.229333pt;}
._7{margin-left:-3.216000pt;}
._1{margin-left:-2.240000pt;}
._0{margin-left:-1.280000pt;}
._2{width:1.269333pt;}
._6{width:2.752000pt;}
._4{width:3.770667pt;}
._a{width:9.520000pt;}
.fs4{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:53.574800pt;}
.y24{bottom:70.223600pt;}
.y23{bottom:86.867867pt;}
.y46{bottom:86.872400pt;}
.y22{bottom:103.521200pt;}
.y21{bottom:120.170133pt;}
.y45{bottom:136.809867pt;}
.y20{bottom:136.818933pt;}
.y55{bottom:153.458667pt;}
.y44{bottom:153.463200pt;}
.y1f{bottom:153.467733pt;}
.y54{bottom:170.112000pt;}
.y1e{bottom:170.116533pt;}
.y1d{bottom:186.765333pt;}
.y1c{bottom:203.409600pt;}
.y43{bottom:203.414133pt;}
.y42{bottom:220.058400pt;}
.y1b{bottom:220.062933pt;}
.y1a{bottom:236.711733pt;}
.y19{bottom:253.333600pt;}
.y53{bottom:253.342533pt;}
.y41{bottom:253.360533pt;}
.y85{bottom:255.198800pt;}
.y18{bottom:269.986933pt;}
.y40{bottom:269.991333pt;}
.y52{bottom:269.995867pt;}
.y84{bottom:270.532800pt;}
.y83{bottom:285.866800pt;}
.y17{bottom:286.640267pt;}
.y3f{bottom:286.644667pt;}
.y51{bottom:286.649200pt;}
.y82{bottom:301.200800pt;}
.y16{bottom:303.293600pt;}
.y3e{bottom:303.298000pt;}
.y50{bottom:303.302533pt;}
.y15{bottom:319.946933pt;}
.y3d{bottom:319.951333pt;}
.y4f{bottom:319.955867pt;}
.y93{bottom:331.857467pt;}
.y81{bottom:331.868800pt;}
.y14{bottom:336.600267pt;}
.y3c{bottom:336.604667pt;}
.y92{bottom:347.191467pt;}
.y80{bottom:347.202800pt;}
.y13{bottom:353.253600pt;}
.y91{bottom:362.525467pt;}
.y7f{bottom:362.536800pt;}
.y12{bottom:369.902400pt;}
.y90{bottom:377.859467pt;}
.y7e{bottom:377.870800pt;}
.y4e{bottom:386.537600pt;}
.y5e{bottom:386.546667pt;}
.y11{bottom:386.551200pt;}
.y7d{bottom:393.204800pt;}
.y4d{bottom:403.190933pt;}
.y10{bottom:403.200000pt;}
.y8f{bottom:408.527467pt;}
.y7c{bottom:408.538800pt;}
.yf{bottom:419.835200pt;}
.y3b{bottom:419.839733pt;}
.y4c{bottom:419.844267pt;}
.y5d{bottom:419.848800pt;}
.y8e{bottom:423.861467pt;}
.y7b{bottom:423.872800pt;}
.ye{bottom:436.488533pt;}
.y3a{bottom:436.493067pt;}
.y4b{bottom:436.497600pt;}
.y8d{bottom:439.195467pt;}
.yd{bottom:453.141867pt;}
.y39{bottom:453.146400pt;}
.y8c{bottom:454.529467pt;}
.y7a{bottom:454.540800pt;}
.yc{bottom:469.795200pt;}
.y79{bottom:469.874800pt;}
.y8b{bottom:485.197467pt;}
.y78{bottom:485.208800pt;}
.y38{bottom:486.421467pt;}
.yb{bottom:486.444133pt;}
.y8a{bottom:500.531467pt;}
.y37{bottom:503.074800pt;}
.ya{bottom:503.083867pt;}
.y4a{bottom:503.092933pt;}
.y89{bottom:515.865467pt;}
.y77{bottom:515.876800pt;}
.y36{bottom:519.728133pt;}
.y9{bottom:519.737200pt;}
.y49{bottom:519.741733pt;}
.y88{bottom:531.199467pt;}
.y76{bottom:531.210800pt;}
.y35{bottom:536.381467pt;}
.y8{bottom:536.390533pt;}
.y87{bottom:546.533467pt;}
.y75{bottom:546.544800pt;}
.y34{bottom:553.034800pt;}
.y7{bottom:553.039333pt;}
.y86{bottom:561.867467pt;}
.y74{bottom:561.878800pt;}
.y6{bottom:569.688133pt;}
.y5c{bottom:586.323467pt;}
.y5{bottom:586.336933pt;}
.y73{bottom:592.330267pt;}
.y33{bottom:602.976800pt;}
.y4{bottom:602.985733pt;}
.y32{bottom:619.630133pt;}
.y31{bottom:636.283467pt;}
.y69{bottom:638.560533pt;}
.y30{bottom:652.932267pt;}
.y72{bottom:653.883200pt;}
.y68{bottom:653.894533pt;}
.y71{bottom:669.217200pt;}
.y67{bottom:669.228533pt;}
.y48{bottom:669.549467pt;}
.y2f{bottom:669.581067pt;}
.y70{bottom:684.551200pt;}
.y66{bottom:684.562533pt;}
.y47{bottom:686.202800pt;}
.y2e{bottom:686.229867pt;}
.y6f{bottom:699.885200pt;}
.y65{bottom:699.896533pt;}
.y2d{bottom:702.856133pt;}
.y5b{bottom:702.878800pt;}
.y6e{bottom:715.219200pt;}
.y64{bottom:715.230533pt;}
.y2c{bottom:719.509467pt;}
.y5a{bottom:719.527467pt;}
.y3{bottom:726.163200pt;}
.y6d{bottom:730.553200pt;}
.y63{bottom:730.564533pt;}
.y59{bottom:736.158267pt;}
.y2b{bottom:736.162800pt;}
.y6c{bottom:745.887200pt;}
.y62{bottom:745.898533pt;}
.y58{bottom:752.811600pt;}
.y2a{bottom:752.816133pt;}
.y2{bottom:757.281200pt;}
.y6b{bottom:761.221200pt;}
.y61{bottom:761.232533pt;}
.y57{bottom:769.464933pt;}
.y29{bottom:769.469467pt;}
.y6a{bottom:776.555200pt;}
.y60{bottom:776.566533pt;}
.y56{bottom:786.118267pt;}
.y28{bottom:786.122800pt;}
.y1{bottom:799.738000pt;}
.y27{bottom:802.771600pt;}
.y5f{bottom:807.012800pt;}
.y26{bottom:848.592800pt;}
.h8{height:40.709333pt;}
.h7{height:44.290667pt;}
.h6{height:44.448000pt;}
.h4{height:45.216000pt;}
.h5{height:52.106667pt;}
.h3{height:60.288000pt;}
.h2{height:79.018667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x5{left:64.252000pt;}
.x1{left:70.545467pt;}
.x2{left:72.185467pt;}
.xa{left:82.073067pt;}
.x6{left:83.412533pt;}
.x3{left:90.956667pt;}
.x8{left:323.654400pt;}
.xb{left:330.375067pt;}
.x9{left:334.874400pt;}
.x7{left:538.358800pt;}
.x4{left:553.860800pt;}
}




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