
    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_ea2161b224fa400e32584a47.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9e82ad5a49b3ffdabe9bd84b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6d293832fdc3bc273b964379.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fb79996679fd5714778dcd25.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_9a7ee63caec342f2ba3e030e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_2a54b4630be7f556b19acd6f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_734be2af30a654c4a993b0e6.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_d9cb60492baa75ca5e6b308e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0913d5fd5d52fd96901b43f4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_64544ca255381266786e11ed.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_42db82109952a932780567bb.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_504df2080309cbf499fad0ba.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8e5b1afc4ff587095a50cd2a.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_4ea0b2d88beb901be852bb40.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m37{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m13{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m36{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);}
.m2f{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m30{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);}
.m10{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);}
.m12{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);}
.m2a{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m2d{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);}
.m26{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.m6{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);}
.m3{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m22{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);}
.m2b{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);}
.m9{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);}
.m4{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);}
.m25{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);}
.m0{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);}
.mc{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);}
.m1b{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);}
.m1{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);}
.m7{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);}
.mb{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);}
.m11{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);}
.m5{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);}
.ma{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);}
.me{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);}
.m2{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);}
.m1a{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);}
.m18{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m2e{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.337500,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m1c{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m17{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(3.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.550000,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(3.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.710000,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;}
._0{margin-left:-102.595625px;}
._1{margin-left:-14.155867px;}
._2{margin-left:-2.462796px;}
.fc0{color:transparent;}
.fs5{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs7{font-size:90.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:45.523500px;}
.y39{bottom:59.250000px;}
.y38{bottom:59.548500px;}
.y31{bottom:63.223500px;}
.ycc{bottom:101.848500px;}
.y2f{bottom:101.923500px;}
.y30{bottom:102.298500px;}
.ycb{bottom:102.523500px;}
.y86{bottom:103.273500px;}
.y85{bottom:103.948500px;}
.y84{bottom:120.223500px;}
.y83{bottom:136.048500px;}
.y82{bottom:136.423500px;}
.y81{bottom:137.098500px;}
.yca{bottom:140.323500px;}
.y2e{bottom:150.900000px;}
.y80{bottom:153.673500px;}
.y7f{bottom:153.973500px;}
.y7e{bottom:154.423500px;}
.y7d{bottom:154.723500px;}
.yc9{bottom:160.125000px;}
.y2d{bottom:171.073500px;}
.yc8{bottom:181.048500px;}
.y2c{bottom:191.173500px;}
.yc7{bottom:200.848500px;}
.y7c{bottom:201.598500px;}
.y2b{bottom:211.348500px;}
.yc6{bottom:219.900000px;}
.yc5{bottom:220.573500px;}
.y7b{bottom:221.698500px;}
.yc4{bottom:222.750000px;}
.y29{bottom:231.150000px;}
.y2a{bottom:231.525000px;}
.yc3{bottom:241.125000px;}
.y7a{bottom:243.673500px;}
.y28{bottom:251.323500px;}
.y79{bottom:263.098500px;}
.y78{bottom:264.150000px;}
.y27{bottom:271.500000px;}
.yc2{bottom:276.375000px;}
.yc1{bottom:277.875000px;}
.y77{bottom:283.273500px;}
.y26{bottom:291.673500px;}
.y25{bottom:291.973500px;}
.y76{bottom:303.000000px;}
.y75{bottom:304.500000px;}
.y74{bottom:304.798500px;}
.y23{bottom:311.398500px;}
.y24{bottom:311.473500px;}
.y22{bottom:311.773500px;}
.y21{bottom:311.848500px;}
.yc0{bottom:313.875000px;}
.ybf{bottom:314.173500px;}
.ybe{bottom:315.973500px;}
.ybd{bottom:317.098500px;}
.ybc{bottom:317.848500px;}
.y73{bottom:322.500000px;}
.y72{bottom:324.298500px;}
.y20{bottom:324.823500px;}
.y1f{bottom:331.573500px;}
.y1e{bottom:331.948500px;}
.ybb{bottom:333.298500px;}
.yba{bottom:335.773500px;}
.y71{bottom:342.598500px;}
.y70{bottom:343.348500px;}
.y6f{bottom:344.098500px;}
.y1d{bottom:351.750000px;}
.y1c{bottom:352.125000px;}
.yb9{bottom:354.523500px;}
.yb8{bottom:354.898500px;}
.yb7{bottom:355.273500px;}
.yb6{bottom:355.573500px;}
.yb5{bottom:355.948500px;}
.yb4{bottom:357.375000px;}
.y1b{bottom:371.625000px;}
.y1a{bottom:372.298500px;}
.yb3{bottom:375.750000px;}
.y6e{bottom:377.923500px;}
.y6d{bottom:378.298500px;}
.y19{bottom:392.398500px;}
.yb2{bottom:395.923500px;}
.y18{bottom:411.523500px;}
.y17{bottom:411.898500px;}
.y16{bottom:412.198500px;}
.yb1{bottom:416.098500px;}
.y6c{bottom:420.750000px;}
.y15{bottom:432.073500px;}
.yb0{bottom:435.898500px;}
.y6b{bottom:439.500000px;}
.y6a{bottom:439.875000px;}
.y69{bottom:440.923500px;}
.y14{bottom:451.500000px;}
.y13{bottom:452.625000px;}
.y12{bottom:453.598500px;}
.yaf{bottom:454.948500px;}
.yae{bottom:456.448500px;}
.yad{bottom:457.875000px;}
.y68{bottom:459.673500px;}
.y67{bottom:460.723500px;}
.y11{bottom:471.298500px;}
.y10{bottom:471.598500px;}
.yf{bottom:472.348500px;}
.yac{bottom:476.173500px;}
.y66{bottom:482.023500px;}
.ye{bottom:491.473500px;}
.yd{bottom:491.773500px;}
.yc{bottom:492.898500px;}
.yab{bottom:495.598500px;}
.yaa{bottom:497.473500px;}
.ya9{bottom:497.773500px;}
.ya8{bottom:498.523500px;}
.ya7{bottom:499.273500px;}
.y65{bottom:499.573500px;}
.y64{bottom:499.948500px;}
.y63{bottom:500.323500px;}
.y62{bottom:501.073500px;}
.y61{bottom:501.375000px;}
.yec{bottom:501.448500px;}
.y60{bottom:502.125000px;}
.yb{bottom:511.648500px;}
.ya6{bottom:515.848500px;}
.yeb{bottom:518.398500px;}
.y5f{bottom:520.125000px;}
.y5e{bottom:521.548500px;}
.y5d{bottom:521.923500px;}
.ya{bottom:531.750000px;}
.yea{bottom:535.273500px;}
.ye9{bottom:535.648500px;}
.ya5{bottom:536.023500px;}
.y5c{bottom:540.298500px;}
.y9{bottom:551.923500px;}
.ye8{bottom:552.148500px;}
.ya4{bottom:556.125000px;}
.y5b{bottom:559.348500px;}
.y5a{bottom:559.723500px;}
.y59{bottom:560.398500px;}
.y58{bottom:560.773500px;}
.y57{bottom:561.598500px;}
.y8{bottom:571.723500px;}
.ya3{bottom:576.673500px;}
.y56{bottom:580.950000px;}
.y7{bottom:591.898500px;}
.ya2{bottom:597.148500px;}
.y55{bottom:600.825000px;}
.ye7{bottom:610.125000px;}
.ya1{bottom:616.575000px;}
.y54{bottom:620.250000px;}
.y53{bottom:621.673500px;}
.y52{bottom:622.423500px;}
.ya0{bottom:633.523500px;}
.y9f{bottom:634.273500px;}
.y9e{bottom:636.075000px;}
.y6{bottom:637.950000px;}
.y9d{bottom:638.173500px;}
.y51{bottom:640.723500px;}
.ye6{bottom:641.775000px;}
.ye5{bottom:642.150000px;}
.y36{bottom:644.250000px;}
.y37{bottom:644.325000px;}
.y9c{bottom:656.923500px;}
.y50{bottom:659.473500px;}
.y4f{bottom:660.223500px;}
.y4e{bottom:661.573500px;}
.y5{bottom:661.723500px;}
.y35{bottom:662.250000px;}
.y34{bottom:662.323500px;}
.y33{bottom:662.625000px;}
.y32{bottom:663.000000px;}
.y9b{bottom:677.098500px;}
.ye4{bottom:681.375000px;}
.ye3{bottom:681.750000px;}
.ye2{bottom:682.500000px;}
.y4{bottom:685.875000px;}
.y4d{bottom:695.775000px;}
.y4c{bottom:696.525000px;}
.y9a{bottom:701.548500px;}
.y99{bottom:701.923500px;}
.ye1{bottom:702.298500px;}
.y98{bottom:714.900000px;}
.y97{bottom:716.698500px;}
.y96{bottom:719.250000px;}
.ye0{bottom:721.048500px;}
.ydf{bottom:722.775000px;}
.y95{bottom:737.923500px;}
.y4b{bottom:738.298500px;}
.y3{bottom:739.125000px;}
.yde{bottom:741.900000px;}
.ydd{bottom:742.275000px;}
.ydc{bottom:742.948500px;}
.y4a{bottom:757.723500px;}
.ydb{bottom:762.448500px;}
.y94{bottom:777.150000px;}
.y49{bottom:777.900000px;}
.y93{bottom:782.175000px;}
.y92{bottom:782.625000px;}
.yda{bottom:783.300000px;}
.y91{bottom:794.775000px;}
.y48{bottom:797.400000px;}
.y47{bottom:798.750000px;}
.y46{bottom:799.875000px;}
.yd9{bottom:801.675000px;}
.yd8{bottom:802.348500px;}
.yd7{bottom:803.400000px;}
.y2{bottom:806.473500px;}
.y90{bottom:816.750000px;}
.y45{bottom:820.723500px;}
.y8f{bottom:822.525000px;}
.y8e{bottom:822.900000px;}
.y44{bottom:838.050000px;}
.y8d{bottom:838.723500px;}
.y1{bottom:839.550000px;}
.yd6{bottom:843.000000px;}
.y43{bottom:858.150000px;}
.y8c{bottom:858.900000px;}
.yd5{bottom:862.125000px;}
.yd4{bottom:862.875000px;}
.yd3{bottom:863.550000px;}
.yd2{bottom:864.675000px;}
.y42{bottom:877.275000px;}
.y41{bottom:877.948500px;}
.y8b{bottom:879.000000px;}
.y40{bottom:879.375000px;}
.yd1{bottom:881.550000px;}
.yd0{bottom:883.348500px;}
.y3f{bottom:896.323500px;}
.y8a{bottom:897.750000px;}
.y3e{bottom:898.800000px;}
.ycf{bottom:903.150000px;}
.y89{bottom:903.900000px;}
.yce{bottom:905.400000px;}
.y3d{bottom:918.300000px;}
.y88{bottom:919.723500px;}
.ycd{bottom:941.323500px;}
.y3c{bottom:955.723500px;}
.y3b{bottom:956.098500px;}
.y87{bottom:957.525000px;}
.h14{height:47.085938px;}
.hb{height:47.109375px;}
.h9{height:50.062500px;}
.h3{height:52.998047px;}
.h4{height:54.421875px;}
.h6{height:58.886719px;}
.h12{height:60.468750px;}
.ha{height:62.578125px;}
.h11{height:64.743164px;}
.h5{height:64.775391px;}
.hd{height:68.835938px;}
.h17{height:70.628906px;}
.hf{height:70.664062px;}
.h7{height:82.400391px;}
.h1{height:82.441406px;}
.h13{height:84.656250px;}
.h10{height:88.330078px;}
.h2{height:123.662109px;}
.h16{height:1015.500000px;}
.hc{height:1021.500000px;}
.h15{height:1024.500000px;}
.h0{height:1027.500000px;}
.h8{height:1032.000000px;}
.he{height:1033.500000px;}
.w2{width:669.000000px;}
.w1{width:676.500000px;}
.w4{width:678.000000px;}
.w3{width:684.000000px;}
.w0{width:688.500000px;}
.x0{left:0.000000px;}
.x86{left:47.850000px;}
.x7f{left:48.973500px;}
.x88{left:50.025000px;}
.x4f{left:57.600000px;}
.x40{left:59.025000px;}
.x41{left:60.450000px;}
.x85{left:81.375000px;}
.x5d{left:84.600000px;}
.x3c{left:89.250000px;}
.x4a{left:91.050000px;}
.x33{left:92.175000px;}
.x7{left:93.225000px;}
.x1{left:94.650000px;}
.x77{left:97.198500px;}
.x68{left:98.250000px;}
.x62{left:99.375000px;}
.x64{left:100.425000px;}
.x65{left:103.350000px;}
.x66{left:106.573500px;}
.x8d{left:114.823500px;}
.x2f{left:120.600000px;}
.x3d{left:122.025000px;}
.x6c{left:123.150000px;}
.x6a{left:124.575000px;}
.x6{left:126.375000px;}
.x72{left:130.350000px;}
.x24{left:131.400000px;}
.x81{left:135.000000px;}
.x30{left:136.050000px;}
.x2{left:138.975000px;}
.x1a{left:144.750000px;}
.x6d{left:148.650000px;}
.x6b{left:151.575000px;}
.x31{left:157.350000px;}
.x58{left:158.400000px;}
.x2d{left:160.200000px;}
.x7e{left:161.625000px;}
.x34{left:164.175000px;}
.x45{left:166.350000px;}
.x2e{left:167.400000px;}
.x5b{left:172.800000px;}
.x1b{left:178.950000px;}
.x48{left:183.225000px;}
.x63{left:194.398500px;}
.x67{left:196.200000px;}
.x49{left:203.773500px;}
.x50{left:205.200000px;}
.x26{left:206.250000px;}
.x43{left:207.375000px;}
.xc{left:208.425000px;}
.x7b{left:217.800000px;}
.x35{left:218.850000px;}
.x51{left:227.850000px;}
.x1c{left:231.150000px;}
.x1f{left:234.000000px;}
.x5c{left:237.975000px;}
.x78{left:243.000000px;}
.x14{left:245.175000px;}
.x27{left:246.225000px;}
.x44{left:249.825000px;}
.x8b{left:254.550000px;}
.x7c{left:257.025000px;}
.x4b{left:258.825000px;}
.x5e{left:260.250000px;}
.xd{left:270.375000px;}
.x5f{left:272.175000px;}
.x71{left:275.025000px;}
.x73{left:279.750000px;}
.x3f{left:284.400000px;}
.x28{left:291.600000px;}
.x32{left:293.400000px;}
.x74{left:300.600000px;}
.x29{left:302.025000px;}
.x15{left:308.850000px;}
.x2a{left:310.650000px;}
.x8c{left:314.250000px;}
.x36{left:316.800000px;}
.x75{left:322.950000px;}
.x52{left:324.750000px;}
.x20{left:326.550000px;}
.x8{left:330.450000px;}
.x2b{left:331.575000px;}
.x1d{left:336.975000px;}
.x4c{left:344.175000px;}
.x16{left:348.150000px;}
.x37{left:351.000000px;}
.x83{left:359.250000px;}
.x82{left:360.375000px;}
.x3{left:377.250000px;}
.x9{left:378.375000px;}
.x5a{left:387.750000px;}
.x38{left:393.150000px;}
.x21{left:395.250000px;}
.x3a{left:396.375000px;}
.x87{left:403.950000px;}
.x46{left:406.048500px;}
.x84{left:409.650000px;}
.x1e{left:411.450000px;}
.x6e{left:417.600000px;}
.x59{left:419.775000px;}
.xa{left:425.548500px;}
.x4{left:433.423500px;}
.x6f{left:439.575000px;}
.x42{left:442.423500px;}
.x89{left:449.625000px;}
.x4d{left:456.825000px;}
.x12{left:459.750000px;}
.x55{left:460.800000px;}
.x79{left:464.025000px;}
.x17{left:467.250000px;}
.x10{left:471.225000px;}
.xe{left:474.450000px;}
.x39{left:476.250000px;}
.xb{left:483.450000px;}
.x56{left:486.375000px;}
.x3b{left:490.350000px;}
.x47{left:492.825000px;}
.x53{left:498.975000px;}
.x3e{left:501.825000px;}
.x7d{left:505.050000px;}
.x25{left:511.575000px;}
.x69{left:512.625000px;}
.x22{left:514.800000px;}
.x5{left:516.975000px;}
.x80{left:519.150000px;}
.x4e{left:529.575000px;}
.x13{left:531.750000px;}
.x18{left:534.975000px;}
.x8a{left:537.825000px;}
.x57{left:542.550000px;}
.x54{left:548.250000px;}
.x60{left:550.050000px;}
.x61{left:553.650000px;}
.x19{left:562.650000px;}
.x11{left:566.250000px;}
.xf{left:571.650000px;}
.x7a{left:574.950000px;}
.x2c{left:576.375000px;}
.x23{left:580.650000px;}
.x76{left:585.000000px;}
.x70{left:603.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:0.000000pt;}
._0{margin-left:-91.196111pt;}
._1{margin-left:-12.582993pt;}
._2{margin-left:-2.189152pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs7{font-size:80.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:40.465333pt;}
.y39{bottom:52.666667pt;}
.y38{bottom:52.932000pt;}
.y31{bottom:56.198667pt;}
.ycc{bottom:90.532000pt;}
.y2f{bottom:90.598667pt;}
.y30{bottom:90.932000pt;}
.ycb{bottom:91.132000pt;}
.y86{bottom:91.798667pt;}
.y85{bottom:92.398667pt;}
.y84{bottom:106.865333pt;}
.y83{bottom:120.932000pt;}
.y82{bottom:121.265333pt;}
.y81{bottom:121.865333pt;}
.yca{bottom:124.732000pt;}
.y2e{bottom:134.133333pt;}
.y80{bottom:136.598667pt;}
.y7f{bottom:136.865333pt;}
.y7e{bottom:137.265333pt;}
.y7d{bottom:137.532000pt;}
.yc9{bottom:142.333333pt;}
.y2d{bottom:152.065333pt;}
.yc8{bottom:160.932000pt;}
.y2c{bottom:169.932000pt;}
.yc7{bottom:178.532000pt;}
.y7c{bottom:179.198667pt;}
.y2b{bottom:187.865333pt;}
.yc6{bottom:195.466667pt;}
.yc5{bottom:196.065333pt;}
.y7b{bottom:197.065333pt;}
.yc4{bottom:198.000000pt;}
.y29{bottom:205.466667pt;}
.y2a{bottom:205.800000pt;}
.yc3{bottom:214.333333pt;}
.y7a{bottom:216.598667pt;}
.y28{bottom:223.398667pt;}
.y79{bottom:233.865333pt;}
.y78{bottom:234.800000pt;}
.y27{bottom:241.333333pt;}
.yc2{bottom:245.666667pt;}
.yc1{bottom:247.000000pt;}
.y77{bottom:251.798667pt;}
.y26{bottom:259.265333pt;}
.y25{bottom:259.532000pt;}
.y76{bottom:269.333333pt;}
.y75{bottom:270.666667pt;}
.y74{bottom:270.932000pt;}
.y23{bottom:276.798667pt;}
.y24{bottom:276.865333pt;}
.y22{bottom:277.132000pt;}
.y21{bottom:277.198667pt;}
.yc0{bottom:279.000000pt;}
.ybf{bottom:279.265333pt;}
.ybe{bottom:280.865333pt;}
.ybd{bottom:281.865333pt;}
.ybc{bottom:282.532000pt;}
.y73{bottom:286.666667pt;}
.y72{bottom:288.265333pt;}
.y20{bottom:288.732000pt;}
.y1f{bottom:294.732000pt;}
.y1e{bottom:295.065333pt;}
.ybb{bottom:296.265333pt;}
.yba{bottom:298.465333pt;}
.y71{bottom:304.532000pt;}
.y70{bottom:305.198667pt;}
.y6f{bottom:305.865333pt;}
.y1d{bottom:312.666667pt;}
.y1c{bottom:313.000000pt;}
.yb9{bottom:315.132000pt;}
.yb8{bottom:315.465333pt;}
.yb7{bottom:315.798667pt;}
.yb6{bottom:316.065333pt;}
.yb5{bottom:316.398667pt;}
.yb4{bottom:317.666667pt;}
.y1b{bottom:330.333333pt;}
.y1a{bottom:330.932000pt;}
.yb3{bottom:334.000000pt;}
.y6e{bottom:335.932000pt;}
.y6d{bottom:336.265333pt;}
.y19{bottom:348.798667pt;}
.yb2{bottom:351.932000pt;}
.y18{bottom:365.798667pt;}
.y17{bottom:366.132000pt;}
.y16{bottom:366.398667pt;}
.yb1{bottom:369.865333pt;}
.y6c{bottom:374.000000pt;}
.y15{bottom:384.065333pt;}
.yb0{bottom:387.465333pt;}
.y6b{bottom:390.666667pt;}
.y6a{bottom:391.000000pt;}
.y69{bottom:391.932000pt;}
.y14{bottom:401.333333pt;}
.y13{bottom:402.333333pt;}
.y12{bottom:403.198667pt;}
.yaf{bottom:404.398667pt;}
.yae{bottom:405.732000pt;}
.yad{bottom:407.000000pt;}
.y68{bottom:408.598667pt;}
.y67{bottom:409.532000pt;}
.y11{bottom:418.932000pt;}
.y10{bottom:419.198667pt;}
.yf{bottom:419.865333pt;}
.yac{bottom:423.265333pt;}
.y66{bottom:428.465333pt;}
.ye{bottom:436.865333pt;}
.yd{bottom:437.132000pt;}
.yc{bottom:438.132000pt;}
.yab{bottom:440.532000pt;}
.yaa{bottom:442.198667pt;}
.ya9{bottom:442.465333pt;}
.ya8{bottom:443.132000pt;}
.ya7{bottom:443.798667pt;}
.y65{bottom:444.065333pt;}
.y64{bottom:444.398667pt;}
.y63{bottom:444.732000pt;}
.y62{bottom:445.398667pt;}
.y61{bottom:445.666667pt;}
.yec{bottom:445.732000pt;}
.y60{bottom:446.333333pt;}
.yb{bottom:454.798667pt;}
.ya6{bottom:458.532000pt;}
.yeb{bottom:460.798667pt;}
.y5f{bottom:462.333333pt;}
.y5e{bottom:463.598667pt;}
.y5d{bottom:463.932000pt;}
.ya{bottom:472.666667pt;}
.yea{bottom:475.798667pt;}
.ye9{bottom:476.132000pt;}
.ya5{bottom:476.465333pt;}
.y5c{bottom:480.265333pt;}
.y9{bottom:490.598667pt;}
.ye8{bottom:490.798667pt;}
.ya4{bottom:494.333333pt;}
.y5b{bottom:497.198667pt;}
.y5a{bottom:497.532000pt;}
.y59{bottom:498.132000pt;}
.y58{bottom:498.465333pt;}
.y57{bottom:499.198667pt;}
.y8{bottom:508.198667pt;}
.ya3{bottom:512.598667pt;}
.y56{bottom:516.400000pt;}
.y7{bottom:526.132000pt;}
.ya2{bottom:530.798667pt;}
.y55{bottom:534.066667pt;}
.ye7{bottom:542.333333pt;}
.ya1{bottom:548.066667pt;}
.y54{bottom:551.333333pt;}
.y53{bottom:552.598667pt;}
.y52{bottom:553.265333pt;}
.ya0{bottom:563.132000pt;}
.y9f{bottom:563.798667pt;}
.y9e{bottom:565.400000pt;}
.y6{bottom:567.066667pt;}
.y9d{bottom:567.265333pt;}
.y51{bottom:569.532000pt;}
.ye6{bottom:570.466667pt;}
.ye5{bottom:570.800000pt;}
.y36{bottom:572.666667pt;}
.y37{bottom:572.733333pt;}
.y9c{bottom:583.932000pt;}
.y50{bottom:586.198667pt;}
.y4f{bottom:586.865333pt;}
.y4e{bottom:588.065333pt;}
.y5{bottom:588.198667pt;}
.y35{bottom:588.666667pt;}
.y34{bottom:588.732000pt;}
.y33{bottom:589.000000pt;}
.y32{bottom:589.333333pt;}
.y9b{bottom:601.865333pt;}
.ye4{bottom:605.666667pt;}
.ye3{bottom:606.000000pt;}
.ye2{bottom:606.666667pt;}
.y4{bottom:609.666667pt;}
.y4d{bottom:618.466667pt;}
.y4c{bottom:619.133333pt;}
.y9a{bottom:623.598667pt;}
.y99{bottom:623.932000pt;}
.ye1{bottom:624.265333pt;}
.y98{bottom:635.466667pt;}
.y97{bottom:637.065333pt;}
.y96{bottom:639.333333pt;}
.ye0{bottom:640.932000pt;}
.ydf{bottom:642.466667pt;}
.y95{bottom:655.932000pt;}
.y4b{bottom:656.265333pt;}
.y3{bottom:657.000000pt;}
.yde{bottom:659.466667pt;}
.ydd{bottom:659.800000pt;}
.ydc{bottom:660.398667pt;}
.y4a{bottom:673.532000pt;}
.ydb{bottom:677.732000pt;}
.y94{bottom:690.800000pt;}
.y49{bottom:691.466667pt;}
.y93{bottom:695.266667pt;}
.y92{bottom:695.666667pt;}
.yda{bottom:696.266667pt;}
.y91{bottom:706.466667pt;}
.y48{bottom:708.800000pt;}
.y47{bottom:710.000000pt;}
.y46{bottom:711.000000pt;}
.yd9{bottom:712.600000pt;}
.yd8{bottom:713.198667pt;}
.yd7{bottom:714.133333pt;}
.y2{bottom:716.865333pt;}
.y90{bottom:726.000000pt;}
.y45{bottom:729.532000pt;}
.y8f{bottom:731.133333pt;}
.y8e{bottom:731.466667pt;}
.y44{bottom:744.933333pt;}
.y8d{bottom:745.532000pt;}
.y1{bottom:746.266667pt;}
.yd6{bottom:749.333333pt;}
.y43{bottom:762.800000pt;}
.y8c{bottom:763.466667pt;}
.yd5{bottom:766.333333pt;}
.yd4{bottom:767.000000pt;}
.yd3{bottom:767.600000pt;}
.yd2{bottom:768.600000pt;}
.y42{bottom:779.800000pt;}
.y41{bottom:780.398667pt;}
.y8b{bottom:781.333333pt;}
.y40{bottom:781.666667pt;}
.yd1{bottom:783.600000pt;}
.yd0{bottom:785.198667pt;}
.y3f{bottom:796.732000pt;}
.y8a{bottom:798.000000pt;}
.y3e{bottom:798.933333pt;}
.ycf{bottom:802.800000pt;}
.y89{bottom:803.466667pt;}
.yce{bottom:804.800000pt;}
.y3d{bottom:816.266667pt;}
.y88{bottom:817.532000pt;}
.ycd{bottom:836.732000pt;}
.y3c{bottom:849.532000pt;}
.y3b{bottom:849.865333pt;}
.y87{bottom:851.133333pt;}
.h14{height:41.854167pt;}
.hb{height:41.875000pt;}
.h9{height:44.500000pt;}
.h3{height:47.109375pt;}
.h4{height:48.375000pt;}
.h6{height:52.343750pt;}
.h12{height:53.750000pt;}
.ha{height:55.625000pt;}
.h11{height:57.549479pt;}
.h5{height:57.578125pt;}
.hd{height:61.187500pt;}
.h17{height:62.781250pt;}
.hf{height:62.812500pt;}
.h7{height:73.244792pt;}
.h1{height:73.281250pt;}
.h13{height:75.250000pt;}
.h10{height:78.515625pt;}
.h2{height:109.921875pt;}
.h16{height:902.666667pt;}
.hc{height:908.000000pt;}
.h15{height:910.666667pt;}
.h0{height:913.333333pt;}
.h8{height:917.333333pt;}
.he{height:918.666667pt;}
.w2{width:594.666667pt;}
.w1{width:601.333333pt;}
.w4{width:602.666667pt;}
.w3{width:608.000000pt;}
.w0{width:612.000000pt;}
.x0{left:0.000000pt;}
.x86{left:42.533333pt;}
.x7f{left:43.532000pt;}
.x88{left:44.466667pt;}
.x4f{left:51.200000pt;}
.x40{left:52.466667pt;}
.x41{left:53.733333pt;}
.x85{left:72.333333pt;}
.x5d{left:75.200000pt;}
.x3c{left:79.333333pt;}
.x4a{left:80.933333pt;}
.x33{left:81.933333pt;}
.x7{left:82.866667pt;}
.x1{left:84.133333pt;}
.x77{left:86.398667pt;}
.x68{left:87.333333pt;}
.x62{left:88.333333pt;}
.x64{left:89.266667pt;}
.x65{left:91.866667pt;}
.x66{left:94.732000pt;}
.x8d{left:102.065333pt;}
.x2f{left:107.200000pt;}
.x3d{left:108.466667pt;}
.x6c{left:109.466667pt;}
.x6a{left:110.733333pt;}
.x6{left:112.333333pt;}
.x72{left:115.866667pt;}
.x24{left:116.800000pt;}
.x81{left:120.000000pt;}
.x30{left:120.933333pt;}
.x2{left:123.533333pt;}
.x1a{left:128.666667pt;}
.x6d{left:132.133333pt;}
.x6b{left:134.733333pt;}
.x31{left:139.866667pt;}
.x58{left:140.800000pt;}
.x2d{left:142.400000pt;}
.x7e{left:143.666667pt;}
.x34{left:145.933333pt;}
.x45{left:147.866667pt;}
.x2e{left:148.800000pt;}
.x5b{left:153.600000pt;}
.x1b{left:159.066667pt;}
.x48{left:162.866667pt;}
.x63{left:172.798667pt;}
.x67{left:174.400000pt;}
.x49{left:181.132000pt;}
.x50{left:182.400000pt;}
.x26{left:183.333333pt;}
.x43{left:184.333333pt;}
.xc{left:185.266667pt;}
.x7b{left:193.600000pt;}
.x35{left:194.533333pt;}
.x51{left:202.533333pt;}
.x1c{left:205.466667pt;}
.x1f{left:208.000000pt;}
.x5c{left:211.533333pt;}
.x78{left:216.000000pt;}
.x14{left:217.933333pt;}
.x27{left:218.866667pt;}
.x44{left:222.066667pt;}
.x8b{left:226.266667pt;}
.x7c{left:228.466667pt;}
.x4b{left:230.066667pt;}
.x5e{left:231.333333pt;}
.xd{left:240.333333pt;}
.x5f{left:241.933333pt;}
.x71{left:244.466667pt;}
.x73{left:248.666667pt;}
.x3f{left:252.800000pt;}
.x28{left:259.200000pt;}
.x32{left:260.800000pt;}
.x74{left:267.200000pt;}
.x29{left:268.466667pt;}
.x15{left:274.533333pt;}
.x2a{left:276.133333pt;}
.x8c{left:279.333333pt;}
.x36{left:281.600000pt;}
.x75{left:287.066667pt;}
.x52{left:288.666667pt;}
.x20{left:290.266667pt;}
.x8{left:293.733333pt;}
.x2b{left:294.733333pt;}
.x1d{left:299.533333pt;}
.x4c{left:305.933333pt;}
.x16{left:309.466667pt;}
.x37{left:312.000000pt;}
.x83{left:319.333333pt;}
.x82{left:320.333333pt;}
.x3{left:335.333333pt;}
.x9{left:336.333333pt;}
.x5a{left:344.666667pt;}
.x38{left:349.466667pt;}
.x21{left:351.333333pt;}
.x3a{left:352.333333pt;}
.x87{left:359.066667pt;}
.x46{left:360.932000pt;}
.x84{left:364.133333pt;}
.x1e{left:365.733333pt;}
.x6e{left:371.200000pt;}
.x59{left:373.133333pt;}
.xa{left:378.265333pt;}
.x4{left:385.265333pt;}
.x6f{left:390.733333pt;}
.x42{left:393.265333pt;}
.x89{left:399.666667pt;}
.x4d{left:406.066667pt;}
.x12{left:408.666667pt;}
.x55{left:409.600000pt;}
.x79{left:412.466667pt;}
.x17{left:415.333333pt;}
.x10{left:418.866667pt;}
.xe{left:421.733333pt;}
.x39{left:423.333333pt;}
.xb{left:429.733333pt;}
.x56{left:432.333333pt;}
.x3b{left:435.866667pt;}
.x47{left:438.066667pt;}
.x53{left:443.533333pt;}
.x3e{left:446.066667pt;}
.x7d{left:448.933333pt;}
.x25{left:454.733333pt;}
.x69{left:455.666667pt;}
.x22{left:457.600000pt;}
.x5{left:459.533333pt;}
.x80{left:461.466667pt;}
.x4e{left:470.733333pt;}
.x13{left:472.666667pt;}
.x18{left:475.533333pt;}
.x8a{left:478.066667pt;}
.x57{left:482.266667pt;}
.x54{left:487.333333pt;}
.x60{left:488.933333pt;}
.x61{left:492.133333pt;}
.x19{left:500.133333pt;}
.x11{left:503.333333pt;}
.xf{left:508.133333pt;}
.x7a{left:511.066667pt;}
.x2c{left:512.333333pt;}
.x23{left:516.133333pt;}
.x76{left:520.000000pt;}
.x70{left:536.333333pt;}
}




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