
    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_c442a08f028b17063709c562.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_be734e98d70e5fc04b2c0e78.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5d5c0b5697f56617998b2172.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_58937cc1f9a6c81f1fd40ec2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_baa7e7628ad7c37854478543.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_002b2d9344680991b429687d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e2c821ed339f99ab9950384c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e4cd22fa211719c70cc5be6a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_16b552092aee37bfea1fc592.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4c228224f1e01c4355f84c78.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a7cd40e5b654683bd1a56498.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6c15bf060e972d27ebd407d9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5d792a4bc51d324c4ea732e2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4cec7fca0d16d9eaf19bf853.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_775cc8560bb5641b8413cadf.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e40d4259a1874e3e66c5fe57.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_5c3379413debc341683c367d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m27{transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m1{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);}
.m1c{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m1e{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.285000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.297500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.300000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.307500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.350000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.360000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:0.000000px;}
.fc0{color:transparent;}
.fs7{font-size:18.000000px;}
.fs6{font-size:24.000000px;}
.fs2{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fsb{font-size:78.000000px;}
.fs1{font-size:162.000000px;}
.fs0{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:81.000000px;}
.y27{bottom:101.173500px;}
.y6e{bottom:103.648500px;}
.ya4{bottom:106.198500px;}
.ya3{bottom:106.573500px;}
.ya2{bottom:106.948500px;}
.y2f{bottom:111.750000px;}
.y30{bottom:112.125000px;}
.y31{bottom:112.500000px;}
.y26{bottom:121.650000px;}
.y6c{bottom:123.073500px;}
.y6d{bottom:124.875000px;}
.ya1{bottom:126.750000px;}
.y2d{bottom:135.525000px;}
.y2e{bottom:135.900000px;}
.y23{bottom:140.098500px;}
.y24{bottom:141.823500px;}
.y25{bottom:142.948500px;}
.y6a{bottom:143.250000px;}
.y6b{bottom:145.048500px;}
.ya0{bottom:146.848500px;}
.y9f{bottom:147.298500px;}
.y22{bottom:161.625000px;}
.y69{bottom:163.798500px;}
.y9e{bottom:167.025000px;}
.y21{bottom:181.798500px;}
.y68{bottom:184.275000px;}
.y9d{bottom:186.823500px;}
.y9c{bottom:187.198500px;}
.y20{bottom:201.598500px;}
.ycb{bottom:202.198500px;}
.y64{bottom:203.400000px;}
.y65{bottom:204.448500px;}
.y66{bottom:205.198500px;}
.y67{bottom:205.573500px;}
.y9b{bottom:207.298500px;}
.y1f{bottom:222.150000px;}
.y61{bottom:223.875000px;}
.y62{bottom:224.250000px;}
.y63{bottom:225.375000px;}
.y9a{bottom:229.348500px;}
.y1e{bottom:240.448500px;}
.yca{bottom:241.048500px;}
.y5b{bottom:244.048500px;}
.y5c{bottom:244.423500px;}
.y5d{bottom:245.098500px;}
.y5e{bottom:245.548500px;}
.y5f{bottom:245.848500px;}
.y60{bottom:245.923500px;}
.y99{bottom:249.823500px;}
.yc9{bottom:261.223500px;}
.y1d{bottom:262.423500px;}
.y5a{bottom:264.973500px;}
.y98{bottom:269.698500px;}
.yc8{bottom:281.398500px;}
.y1c{bottom:282.598500px;}
.y58{bottom:285.073500px;}
.y59{bottom:286.573500px;}
.y97{bottom:289.798500px;}
.yc7{bottom:301.573500px;}
.y1b{bottom:302.773500px;}
.y57{bottom:305.250000px;}
.y96{bottom:310.273500px;}
.yc6{bottom:322.048500px;}
.y1a{bottom:323.250000px;}
.y54{bottom:325.500000px;}
.y55{bottom:326.773500px;}
.y56{bottom:327.223500px;}
.y95{bottom:330.448500px;}
.yc5{bottom:341.848500px;}
.y19{bottom:343.423500px;}
.y53{bottom:346.273500px;}
.y94{bottom:352.423500px;}
.yc4{bottom:361.648500px;}
.yc3{bottom:362.023500px;}
.yc2{bottom:362.398500px;}
.y18{bottom:363.973500px;}
.y52{bottom:366.448500px;}
.y93{bottom:372.598500px;}
.yc1{bottom:382.500000px;}
.y17{bottom:384.148500px;}
.y51{bottom:387.000000px;}
.y92{bottom:392.398500px;}
.yc0{bottom:402.375000px;}
.y16{bottom:403.948500px;}
.y50{bottom:406.798500px;}
.y91{bottom:412.875000px;}
.ybf{bottom:422.848500px;}
.y15{bottom:424.423500px;}
.y4f{bottom:426.973500px;}
.y90{bottom:432.750000px;}
.ybe{bottom:443.023500px;}
.y14{bottom:444.298500px;}
.y4e{bottom:447.448500px;}
.y8f{bottom:453.223500px;}
.ybd{bottom:463.500000px;}
.y13{bottom:465.073500px;}
.y4d{bottom:467.625000px;}
.y8e{bottom:473.398500px;}
.ybc{bottom:483.000000px;}
.ybb{bottom:483.750000px;}
.y12{bottom:484.948500px;}
.y4c{bottom:488.173500px;}
.y8d{bottom:495.375000px;}
.yba{bottom:503.848500px;}
.y11{bottom:505.423500px;}
.y4b{bottom:508.348500px;}
.y8c{bottom:515.548500px;}
.yb9{bottom:524.023500px;}
.y10{bottom:525.973500px;}
.y49{bottom:528.448500px;}
.y4a{bottom:528.823500px;}
.y8b{bottom:535.348500px;}
.y8a{bottom:535.648500px;}
.y89{bottom:536.398500px;}
.yb8{bottom:543.898500px;}
.yf{bottom:546.448500px;}
.y48{bottom:549.000000px;}
.y88{bottom:556.198500px;}
.yb7{bottom:564.375000px;}
.ye{bottom:566.625000px;}
.y47{bottom:569.173500px;}
.y87{bottom:576.375000px;}
.yb6{bottom:584.473500px;}
.yb{bottom:586.423500px;}
.yc{bottom:587.548500px;}
.y2b{bottom:587.700000px;}
.yd{bottom:588.223500px;}
.y44{bottom:589.648500px;}
.y45{bottom:589.723500px;}
.y46{bottom:590.398500px;}
.y86{bottom:596.848500px;}
.y29{bottom:597.750000px;}
.y2a{bottom:598.500000px;}
.yb5{bottom:604.348500px;}
.ya{bottom:607.348500px;}
.y43{bottom:610.200000px;}
.y85{bottom:617.098500px;}
.yb4{bottom:624.525000px;}
.y9{bottom:627.825000px;}
.y42{bottom:630.298500px;}
.y2c{bottom:638.098500px;}
.y84{bottom:640.048500px;}
.yb3{bottom:644.625000px;}
.y8{bottom:648.375000px;}
.y41{bottom:650.848500px;}
.y83{bottom:658.423500px;}
.y82{bottom:658.798500px;}
.y81{bottom:660.223500px;}
.yb2{bottom:665.173500px;}
.y7{bottom:668.848500px;}
.y40{bottom:670.723500px;}
.y80{bottom:678.900000px;}
.y7f{bottom:679.275000px;}
.y7e{bottom:679.348500px;}
.y7d{bottom:680.400000px;}
.yb1{bottom:685.650000px;}
.y6{bottom:689.025000px;}
.y3f{bottom:691.198500px;}
.y7c{bottom:700.198500px;}
.yb0{bottom:705.823500px;}
.y5{bottom:709.573500px;}
.y3e{bottom:709.875000px;}
.y7b{bottom:720.375000px;}
.yaf{bottom:726.000000px;}
.y3d{bottom:730.125000px;}
.y7a{bottom:740.848500px;}
.yae{bottom:746.098500px;}
.y3{bottom:749.473500px;}
.y4{bottom:749.548500px;}
.y3c{bottom:750.598500px;}
.y79{bottom:761.025000px;}
.yad{bottom:766.650000px;}
.y1{bottom:769.275000px;}
.y2{bottom:770.400000px;}
.y3b{bottom:771.073500px;}
.y78{bottom:783.375000px;}
.yac{bottom:786.823500px;}
.y3a{bottom:791.250000px;}
.y77{bottom:803.848500px;}
.yab{bottom:807.000000px;}
.y39{bottom:811.425000px;}
.y76{bottom:824.025000px;}
.yaa{bottom:828.223500px;}
.y38{bottom:831.598500px;}
.y75{bottom:844.198500px;}
.ya9{bottom:847.650000px;}
.y37{bottom:852.448500px;}
.y74{bottom:864.300000px;}
.ya8{bottom:868.500000px;}
.y36{bottom:873.000000px;}
.y73{bottom:884.848500px;}
.ya7{bottom:888.675000px;}
.y35{bottom:893.175000px;}
.y72{bottom:905.098500px;}
.ya6{bottom:909.223500px;}
.y34{bottom:913.650000px;}
.y71{bottom:925.198500px;}
.y70{bottom:927.000000px;}
.y33{bottom:934.198500px;}
.ya5{bottom:945.973500px;}
.y6f{bottom:962.625000px;}
.y32{bottom:971.250000px;}
.hb{height:17.666016px;}
.ha{height:23.554688px;}
.hc{height:24.187500px;}
.h3{height:29.443359px;}
.h4{height:32.010000px;}
.h5{height:37.546875px;}
.h11{height:43.804688px;}
.hd{height:52.998047px;}
.h8{height:58.857422px;}
.hf{height:62.578125px;}
.h10{height:64.743164px;}
.h6{height:64.775391px;}
.h7{height:66.515625px;}
.h12{height:70.664062px;}
.h13{height:76.514648px;}
.h2{height:158.994141px;}
.h1{height:175.218750px;}
.h14{height:1005.000000px;}
.h9{height:1012.500000px;}
.h0{height:1017.000000px;}
.he{height:1026.000000px;}
.w0{width:678.000000px;}
.w1{width:679.500000px;}
.w2{width:682.500000px;}
.w3{width:684.000000px;}
.x0{left:0.000000px;}
.x42{left:63.750000px;}
.x36{left:69.450000px;}
.x37{left:70.575000px;}
.x3a{left:72.000000px;}
.x1{left:73.800000px;}
.x9{left:74.850000px;}
.xc{left:75.975000px;}
.xd{left:77.025000px;}
.xf{left:78.150000px;}
.x12{left:79.575000px;}
.x48{left:81.375000px;}
.x1f{left:83.175000px;}
.x1e{left:84.600000px;}
.x23{left:86.400000px;}
.x30{left:87.825000px;}
.x34{left:99.375000px;}
.x3d{left:101.175000px;}
.x41{left:102.600000px;}
.x8{left:103.650000px;}
.xe{left:108.750000px;}
.x4e{left:109.800000px;}
.x49{left:111.975000px;}
.x1b{left:115.200000px;}
.x26{left:117.375000px;}
.x35{left:127.425000px;}
.x44{left:178.575000px;}
.x45{left:209.550000px;}
.x22{left:213.148500px;}
.x28{left:217.425000px;}
.x19{left:223.575000px;}
.x18{left:246.225000px;}
.x13{left:262.050000px;}
.x14{left:275.775000px;}
.x2c{left:276.825000px;}
.x32{left:278.625000px;}
.x4c{left:283.650000px;}
.x46{left:289.800000px;}
.x1a{left:293.775000px;}
.x3{left:303.825000px;}
.x10{left:307.800000px;}
.x47{left:308.850000px;}
.x1d{left:310.650000px;}
.x4{left:315.375000px;}
.x4f{left:317.550000px;}
.x33{left:319.650000px;}
.x5{left:321.150000px;}
.x3e{left:322.575000px;}
.x6{left:326.175000px;}
.x31{left:333.375000px;}
.x2d{left:334.800000px;}
.x1c{left:343.425000px;}
.x7{left:346.350000px;}
.x3f{left:349.575000px;}
.x50{left:380.550000px;}
.x15{left:392.400000px;}
.x2e{left:393.450000px;}
.xa{left:400.650000px;}
.x11{left:402.450000px;}
.x38{left:420.450000px;}
.x4d{left:422.250000px;}
.x16{left:423.750000px;}
.x39{left:439.200000px;}
.x17{left:443.173500px;}
.x20{left:449.250000px;}
.xb{left:452.548500px;}
.x4a{left:460.800000px;}
.x43{left:467.250000px;}
.x2{left:468.375000px;}
.x4b{left:479.550000px;}
.x40{left:484.200000px;}
.x29{left:494.250000px;}
.x3b{left:497.550000px;}
.x27{left:511.200000px;}
.x24{left:517.350000px;}
.x25{left:518.775000px;}
.x3c{left:520.950000px;}
.x21{left:532.050000px;}
.x2f{left:552.975000px;}
.x2a{left:570.975000px;}
.x2b{left:589.350000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
.fs7{font-size:16.000000pt;}
.fs6{font-size:21.333333pt;}
.fs2{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fsb{font-size:69.333333pt;}
.fs1{font-size:144.000000pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:72.000000pt;}
.y27{bottom:89.932000pt;}
.y6e{bottom:92.132000pt;}
.ya4{bottom:94.398667pt;}
.ya3{bottom:94.732000pt;}
.ya2{bottom:95.065333pt;}
.y2f{bottom:99.333333pt;}
.y30{bottom:99.666667pt;}
.y31{bottom:100.000000pt;}
.y26{bottom:108.133333pt;}
.y6c{bottom:109.398667pt;}
.y6d{bottom:111.000000pt;}
.ya1{bottom:112.666667pt;}
.y2d{bottom:120.466667pt;}
.y2e{bottom:120.800000pt;}
.y23{bottom:124.532000pt;}
.y24{bottom:126.065333pt;}
.y25{bottom:127.065333pt;}
.y6a{bottom:127.333333pt;}
.y6b{bottom:128.932000pt;}
.ya0{bottom:130.532000pt;}
.y9f{bottom:130.932000pt;}
.y22{bottom:143.666667pt;}
.y69{bottom:145.598667pt;}
.y9e{bottom:148.466667pt;}
.y21{bottom:161.598667pt;}
.y68{bottom:163.800000pt;}
.y9d{bottom:166.065333pt;}
.y9c{bottom:166.398667pt;}
.y20{bottom:179.198667pt;}
.ycb{bottom:179.732000pt;}
.y64{bottom:180.800000pt;}
.y65{bottom:181.732000pt;}
.y66{bottom:182.398667pt;}
.y67{bottom:182.732000pt;}
.y9b{bottom:184.265333pt;}
.y1f{bottom:197.466667pt;}
.y61{bottom:199.000000pt;}
.y62{bottom:199.333333pt;}
.y63{bottom:200.333333pt;}
.y9a{bottom:203.865333pt;}
.y1e{bottom:213.732000pt;}
.yca{bottom:214.265333pt;}
.y5b{bottom:216.932000pt;}
.y5c{bottom:217.265333pt;}
.y5d{bottom:217.865333pt;}
.y5e{bottom:218.265333pt;}
.y5f{bottom:218.532000pt;}
.y60{bottom:218.598667pt;}
.y99{bottom:222.065333pt;}
.yc9{bottom:232.198667pt;}
.y1d{bottom:233.265333pt;}
.y5a{bottom:235.532000pt;}
.y98{bottom:239.732000pt;}
.yc8{bottom:250.132000pt;}
.y1c{bottom:251.198667pt;}
.y58{bottom:253.398667pt;}
.y59{bottom:254.732000pt;}
.y97{bottom:257.598667pt;}
.yc7{bottom:268.065333pt;}
.y1b{bottom:269.132000pt;}
.y57{bottom:271.333333pt;}
.y96{bottom:275.798667pt;}
.yc6{bottom:286.265333pt;}
.y1a{bottom:287.333333pt;}
.y54{bottom:289.333333pt;}
.y55{bottom:290.465333pt;}
.y56{bottom:290.865333pt;}
.y95{bottom:293.732000pt;}
.yc5{bottom:303.865333pt;}
.y19{bottom:305.265333pt;}
.y53{bottom:307.798667pt;}
.y94{bottom:313.265333pt;}
.yc4{bottom:321.465333pt;}
.yc3{bottom:321.798667pt;}
.yc2{bottom:322.132000pt;}
.y18{bottom:323.532000pt;}
.y52{bottom:325.732000pt;}
.y93{bottom:331.198667pt;}
.yc1{bottom:340.000000pt;}
.y17{bottom:341.465333pt;}
.y51{bottom:344.000000pt;}
.y92{bottom:348.798667pt;}
.yc0{bottom:357.666667pt;}
.y16{bottom:359.065333pt;}
.y50{bottom:361.598667pt;}
.y91{bottom:367.000000pt;}
.ybf{bottom:375.865333pt;}
.y15{bottom:377.265333pt;}
.y4f{bottom:379.532000pt;}
.y90{bottom:384.666667pt;}
.ybe{bottom:393.798667pt;}
.y14{bottom:394.932000pt;}
.y4e{bottom:397.732000pt;}
.y8f{bottom:402.865333pt;}
.ybd{bottom:412.000000pt;}
.y13{bottom:413.398667pt;}
.y4d{bottom:415.666667pt;}
.y8e{bottom:420.798667pt;}
.ybc{bottom:429.333333pt;}
.ybb{bottom:430.000000pt;}
.y12{bottom:431.065333pt;}
.y4c{bottom:433.932000pt;}
.y8d{bottom:440.333333pt;}
.yba{bottom:447.865333pt;}
.y11{bottom:449.265333pt;}
.y4b{bottom:451.865333pt;}
.y8c{bottom:458.265333pt;}
.yb9{bottom:465.798667pt;}
.y10{bottom:467.532000pt;}
.y49{bottom:469.732000pt;}
.y4a{bottom:470.065333pt;}
.y8b{bottom:475.865333pt;}
.y8a{bottom:476.132000pt;}
.y89{bottom:476.798667pt;}
.yb8{bottom:483.465333pt;}
.yf{bottom:485.732000pt;}
.y48{bottom:488.000000pt;}
.y88{bottom:494.398667pt;}
.yb7{bottom:501.666667pt;}
.ye{bottom:503.666667pt;}
.y47{bottom:505.932000pt;}
.y87{bottom:512.333333pt;}
.yb6{bottom:519.532000pt;}
.yb{bottom:521.265333pt;}
.yc{bottom:522.265333pt;}
.y2b{bottom:522.400000pt;}
.yd{bottom:522.865333pt;}
.y44{bottom:524.132000pt;}
.y45{bottom:524.198667pt;}
.y46{bottom:524.798667pt;}
.y86{bottom:530.532000pt;}
.y29{bottom:531.333333pt;}
.y2a{bottom:532.000000pt;}
.yb5{bottom:537.198667pt;}
.ya{bottom:539.865333pt;}
.y43{bottom:542.400000pt;}
.y85{bottom:548.532000pt;}
.yb4{bottom:555.133333pt;}
.y9{bottom:558.066667pt;}
.y42{bottom:560.265333pt;}
.y2c{bottom:567.198667pt;}
.y84{bottom:568.932000pt;}
.yb3{bottom:573.000000pt;}
.y8{bottom:576.333333pt;}
.y41{bottom:578.532000pt;}
.y83{bottom:585.265333pt;}
.y82{bottom:585.598667pt;}
.y81{bottom:586.865333pt;}
.yb2{bottom:591.265333pt;}
.y7{bottom:594.532000pt;}
.y40{bottom:596.198667pt;}
.y80{bottom:603.466667pt;}
.y7f{bottom:603.800000pt;}
.y7e{bottom:603.865333pt;}
.y7d{bottom:604.800000pt;}
.yb1{bottom:609.466667pt;}
.y6{bottom:612.466667pt;}
.y3f{bottom:614.398667pt;}
.y7c{bottom:622.398667pt;}
.yb0{bottom:627.398667pt;}
.y5{bottom:630.732000pt;}
.y3e{bottom:631.000000pt;}
.y7b{bottom:640.333333pt;}
.yaf{bottom:645.333333pt;}
.y3d{bottom:649.000000pt;}
.y7a{bottom:658.532000pt;}
.yae{bottom:663.198667pt;}
.y3{bottom:666.198667pt;}
.y4{bottom:666.265333pt;}
.y3c{bottom:667.198667pt;}
.y79{bottom:676.466667pt;}
.yad{bottom:681.466667pt;}
.y1{bottom:683.800000pt;}
.y2{bottom:684.800000pt;}
.y3b{bottom:685.398667pt;}
.y78{bottom:696.333333pt;}
.yac{bottom:699.398667pt;}
.y3a{bottom:703.333333pt;}
.y77{bottom:714.532000pt;}
.yab{bottom:717.333333pt;}
.y39{bottom:721.266667pt;}
.y76{bottom:732.466667pt;}
.yaa{bottom:736.198667pt;}
.y38{bottom:739.198667pt;}
.y75{bottom:750.398667pt;}
.ya9{bottom:753.466667pt;}
.y37{bottom:757.732000pt;}
.y74{bottom:768.266667pt;}
.ya8{bottom:772.000000pt;}
.y36{bottom:776.000000pt;}
.y73{bottom:786.532000pt;}
.ya7{bottom:789.933333pt;}
.y35{bottom:793.933333pt;}
.y72{bottom:804.532000pt;}
.ya6{bottom:808.198667pt;}
.y34{bottom:812.133333pt;}
.y71{bottom:822.398667pt;}
.y70{bottom:824.000000pt;}
.y33{bottom:830.398667pt;}
.ya5{bottom:840.865333pt;}
.y6f{bottom:855.666667pt;}
.y32{bottom:863.333333pt;}
.hb{height:15.703125pt;}
.ha{height:20.937500pt;}
.hc{height:21.500000pt;}
.h3{height:26.171875pt;}
.h4{height:28.453333pt;}
.h5{height:33.375000pt;}
.h11{height:38.937500pt;}
.hd{height:47.109375pt;}
.h8{height:52.317708pt;}
.hf{height:55.625000pt;}
.h10{height:57.549479pt;}
.h6{height:57.578125pt;}
.h7{height:59.125000pt;}
.h12{height:62.812500pt;}
.h13{height:68.013021pt;}
.h2{height:141.328125pt;}
.h1{height:155.750000pt;}
.h14{height:893.333333pt;}
.h9{height:900.000000pt;}
.h0{height:904.000000pt;}
.he{height:912.000000pt;}
.w0{width:602.666667pt;}
.w1{width:604.000000pt;}
.w2{width:606.666667pt;}
.w3{width:608.000000pt;}
.x0{left:0.000000pt;}
.x42{left:56.666667pt;}
.x36{left:61.733333pt;}
.x37{left:62.733333pt;}
.x3a{left:64.000000pt;}
.x1{left:65.600000pt;}
.x9{left:66.533333pt;}
.xc{left:67.533333pt;}
.xd{left:68.466667pt;}
.xf{left:69.466667pt;}
.x12{left:70.733333pt;}
.x48{left:72.333333pt;}
.x1f{left:73.933333pt;}
.x1e{left:75.200000pt;}
.x23{left:76.800000pt;}
.x30{left:78.066667pt;}
.x34{left:88.333333pt;}
.x3d{left:89.933333pt;}
.x41{left:91.200000pt;}
.x8{left:92.133333pt;}
.xe{left:96.666667pt;}
.x4e{left:97.600000pt;}
.x49{left:99.533333pt;}
.x1b{left:102.400000pt;}
.x26{left:104.333333pt;}
.x35{left:113.266667pt;}
.x44{left:158.733333pt;}
.x45{left:186.266667pt;}
.x22{left:189.465333pt;}
.x28{left:193.266667pt;}
.x19{left:198.733333pt;}
.x18{left:218.866667pt;}
.x13{left:232.933333pt;}
.x14{left:245.133333pt;}
.x2c{left:246.066667pt;}
.x32{left:247.666667pt;}
.x4c{left:252.133333pt;}
.x46{left:257.600000pt;}
.x1a{left:261.133333pt;}
.x3{left:270.066667pt;}
.x10{left:273.600000pt;}
.x47{left:274.533333pt;}
.x1d{left:276.133333pt;}
.x4{left:280.333333pt;}
.x4f{left:282.266667pt;}
.x33{left:284.133333pt;}
.x5{left:285.466667pt;}
.x3e{left:286.733333pt;}
.x6{left:289.933333pt;}
.x31{left:296.333333pt;}
.x2d{left:297.600000pt;}
.x1c{left:305.266667pt;}
.x7{left:307.866667pt;}
.x3f{left:310.733333pt;}
.x50{left:338.266667pt;}
.x15{left:348.800000pt;}
.x2e{left:349.733333pt;}
.xa{left:356.133333pt;}
.x11{left:357.733333pt;}
.x38{left:373.733333pt;}
.x4d{left:375.333333pt;}
.x16{left:376.666667pt;}
.x39{left:390.400000pt;}
.x17{left:393.932000pt;}
.x20{left:399.333333pt;}
.xb{left:402.265333pt;}
.x4a{left:409.600000pt;}
.x43{left:415.333333pt;}
.x2{left:416.333333pt;}
.x4b{left:426.266667pt;}
.x40{left:430.400000pt;}
.x29{left:439.333333pt;}
.x3b{left:442.266667pt;}
.x27{left:454.400000pt;}
.x24{left:459.866667pt;}
.x25{left:461.133333pt;}
.x3c{left:463.066667pt;}
.x21{left:472.933333pt;}
.x2f{left:491.533333pt;}
.x2a{left:507.533333pt;}
.x2b{left:523.866667pt;}
}




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