
    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_63701bab4cd23fdef905be8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.974000;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_ba25c43cb3c2a41e87dc2b44.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1133f50099247ec4c7884930.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_320103a528ec45f6cf69e1f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_57dedf243a34ea56a34f3aaf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974000;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_28d09eb307efaf5a3109d4fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_ed384dbf72ee3d77eface042.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.935000;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_57bc420d21d8e179269eacca.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.372000;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;}
.m2{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);}
.md{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.mb{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,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);}
.m18{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m1d{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.m14{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:2.988195px;}
.ls1{letter-spacing:10.460700px;}
.ls0{letter-spacing:11.955150px;}
.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;}
}
.ws2{word-spacing:-14.943900px;}
.ws15{word-spacing:-13.449600px;}
.ws2e{word-spacing:-10.460700px;}
.wse{word-spacing:-4.303872px;}
.ws30{word-spacing:-3.819686px;}
.ws43{word-spacing:-3.443098px;}
.ws3e{word-spacing:-3.281702px;}
.ws58{word-spacing:-2.205734px;}
.ws1b{word-spacing:-2.175826px;}
.ws26{word-spacing:-1.936742px;}
.ws5a{word-spacing:-1.882944px;}
.ws10{word-spacing:-1.667750px;}
.ws4e{word-spacing:-1.613952px;}
.ws1f{word-spacing:-1.452557px;}
.ws6{word-spacing:-1.386797px;}
.ws4b{word-spacing:-1.129766px;}
.ws18{word-spacing:-1.087913px;}
.ws51{word-spacing:-0.914573px;}
.ws47{word-spacing:-0.753178px;}
.ws21{word-spacing:-0.537984px;}
.ws1a{word-spacing:-0.460271px;}
.ws16{word-spacing:-0.322790px;}
.ws4{word-spacing:-0.268992px;}
.ws11{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.161395px;}
.ws7{word-spacing:-0.143462px;}
.ws22{word-spacing:-0.107597px;}
.ws3c{word-spacing:-0.071731px;}
.ws3{word-spacing:-0.065455px;}
.wsb{word-spacing:-0.053798px;}
.ws19{word-spacing:-0.041843px;}
.ws1{word-spacing:0.000000px;}
.ws3a{word-spacing:0.035866px;}
.ws9{word-spacing:0.047821px;}
.wsf{word-spacing:0.053798px;}
.ws37{word-spacing:0.071731px;}
.wsc{word-spacing:0.107597px;}
.wsd{word-spacing:0.161395px;}
.ws17{word-spacing:0.167371px;}
.ws35{word-spacing:0.179328px;}
.ws27{word-spacing:0.215194px;}
.ws29{word-spacing:0.268992px;}
.ws20{word-spacing:0.322790px;}
.ws5b{word-spacing:0.376589px;}
.ws48{word-spacing:0.484186px;}
.ws4f{word-spacing:0.645581px;}
.ws42{word-spacing:1.129766px;}
.ws41{word-spacing:1.344960px;}
.ws44{word-spacing:1.452557px;}
.ws23{word-spacing:1.506355px;}
.ws5c{word-spacing:1.721549px;}
.ws24{word-spacing:1.775347px;}
.ws3d{word-spacing:1.865011px;}
.ws5d{word-spacing:1.882944px;}
.ws1d{word-spacing:1.936742px;}
.ws2d{word-spacing:2.151936px;}
.ws3f{word-spacing:2.313331px;}
.ws59{word-spacing:2.367130px;}
.ws4c{word-spacing:2.528525px;}
.ws55{word-spacing:2.851315px;}
.ws1e{word-spacing:2.905114px;}
.ws12{word-spacing:3.227904px;}
.ws34{word-spacing:3.263770px;}
.ws28{word-spacing:3.281702px;}
.ws40{word-spacing:3.335501px;}
.ws14{word-spacing:3.604493px;}
.ws13{word-spacing:3.927283px;}
.ws39{word-spacing:4.232141px;}
.ws4a{word-spacing:4.357670px;}
.ws57{word-spacing:4.572864px;}
.ws8{word-spacing:4.877701px;}
.ws46{word-spacing:5.110848px;}
.ws50{word-spacing:5.433638px;}
.ws2f{word-spacing:6.186816px;}
.ws49{word-spacing:7.639373px;}
.ws33{word-spacing:8.966400px;}
.ws52{word-spacing:9.952704px;}
.ws1c{word-spacing:10.418857px;}
.ws5{word-spacing:11.907329px;}
.ws31{word-spacing:13.180608px;}
.ws2b{word-spacing:13.288205px;}
.ws53{word-spacing:13.557197px;}
.ws38{word-spacing:15.207014px;}
.ws2c{word-spacing:15.493939px;}
.ws54{word-spacing:16.247117px;}
.ws2a{word-spacing:16.298195px;}
.ws56{word-spacing:17.968666px;}
.ws45{word-spacing:18.506650px;}
.ws4d{word-spacing:21.250368px;}
.ws36{word-spacing:21.842150px;}
.ws0{word-spacing:25.719808px;}
.ws3b{word-spacing:39.559757px;}
.wsa{word-spacing:65.389145px;}
.ws32{word-spacing:71.264947px;}
._f{margin-left:-15.648005px;}
._10{margin-left:-5.805455px;}
._3{margin-left:-3.949983px;}
._2{margin-left:-2.797517px;}
._0{margin-left:-1.549386px;}
._4{width:1.147694px;}
._1{width:2.570351px;}
._a{width:8.984333px;}
._d{width:16.785101px;}
._9{width:17.807270px;}
._c{width:20.443392px;}
._b{width:52.722432px;}
._e{width:54.874368px;}
._5{width:65.454600px;}
._8{width:94.111334px;}
._7{width:272.291635px;}
._6{width:1958.920790px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs9{font-size:32.877000px;}
.fs0{font-size:35.865600px;}
.fs8{font-size:39.451800px;}
.fs7{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y9e{bottom:109.045500px;}
.yd8{bottom:111.583500px;}
.y3a{bottom:112.929000px;}
.y77{bottom:126.979500px;}
.yd7{bottom:128.022000px;}
.y39{bottom:129.367500px;}
.y9d{bottom:130.938000px;}
.y76{bottom:138.934500px;}
.y116{bottom:143.416500px;}
.y9c{bottom:143.556000px;}
.yd6{bottom:144.460500px;}
.y38{bottom:145.806000px;}
.y75{bottom:150.889500px;}
.y9b{bottom:156.174000px;}
.y143{bottom:159.855000px;}
.yd5{bottom:160.899000px;}
.y37{bottom:162.244500px;}
.y74{bottom:164.040000px;}
.y115{bottom:167.917500px;}
.y142{bottom:176.293500px;}
.y73{bottom:177.190500px;}
.yd4{bottom:177.337500px;}
.y9a{bottom:178.210500px;}
.y36{bottom:178.681500px;}
.y43{bottom:178.683000px;}
.y114{bottom:184.356000px;}
.y72{bottom:189.145500px;}
.y141{bottom:192.732000px;}
.yd3{bottom:193.776000px;}
.y99{bottom:194.649000px;}
.y35{bottom:195.120000px;}
.y113{bottom:200.794500px;}
.y71{bottom:201.100500px;}
.y140{bottom:209.170500px;}
.yd2{bottom:210.214500px;}
.y98{bottom:211.087500px;}
.y34{bottom:211.558500px;}
.y70{bottom:213.055500px;}
.y112{bottom:217.233000px;}
.y6f{bottom:225.012000px;}
.yd1{bottom:226.653000px;}
.y97{bottom:227.526000px;}
.y33{bottom:227.997000px;}
.y13f{bottom:229.719000px;}
.y111{bottom:233.671500px;}
.y6e{bottom:236.967000px;}
.yd0{bottom:243.090000px;}
.ye0{bottom:243.091500px;}
.y96{bottom:243.963000px;}
.y32{bottom:244.435500px;}
.y6d{bottom:248.922000px;}
.y110{bottom:250.110000px;}
.ycf{bottom:259.528500px;}
.y95{bottom:260.401500px;}
.y31{bottom:260.874000px;}
.y10f{bottom:266.548500px;}
.y13e{bottom:270.868500px;}
.yce{bottom:275.967000px;}
.y94{bottom:276.840000px;}
.y30{bottom:277.312500px;}
.y6c{bottom:277.864500px;}
.y10e{bottom:282.987000px;}
.y13d{bottom:287.307000px;}
.ycd{bottom:292.405500px;}
.y2f{bottom:293.751000px;}
.y6b{bottom:294.303000px;}
.y93{bottom:297.388500px;}
.y10d{bottom:299.425500px;}
.y13c{bottom:303.745500px;}
.ycc{bottom:308.844000px;}
.y2e{bottom:310.189500px;}
.y6a{bottom:310.741500px;}
.y10c{bottom:315.862500px;}
.y13b{bottom:320.184000px;}
.y92{bottom:320.925000px;}
.ycb{bottom:325.282500px;}
.y2d{bottom:326.628000px;}
.y69{bottom:327.180000px;}
.y10b{bottom:332.301000px;}
.y13a{bottom:336.622500px;}
.yca{bottom:341.721000px;}
.y2c{bottom:343.065000px;}
.y42{bottom:343.066500px;}
.y68{bottom:343.618500px;}
.y10a{bottom:348.739500px;}
.y139{bottom:353.061000px;}
.y91{bottom:353.286000px;}
.yc9{bottom:358.159500px;}
.y2b{bottom:359.503500px;}
.y67{bottom:360.057000px;}
.y109{bottom:365.178000px;}
.y138{bottom:369.499500px;}
.y90{bottom:369.724500px;}
.yc8{bottom:374.598000px;}
.y2a{bottom:375.942000px;}
.y66{bottom:376.495500px;}
.y108{bottom:381.616500px;}
.y137{bottom:385.938000px;}
.y8f{bottom:386.163000px;}
.yc7{bottom:391.036500px;}
.y29{bottom:392.380500px;}
.y65{bottom:392.934000px;}
.y107{bottom:398.055000px;}
.y136{bottom:402.376500px;}
.y8e{bottom:402.601500px;}
.yc6{bottom:407.473500px;}
.ydf{bottom:407.475000px;}
.y28{bottom:408.819000px;}
.y64{bottom:409.372500px;}
.y106{bottom:414.493500px;}
.y135{bottom:418.813500px;}
.y8d{bottom:419.040000px;}
.yc5{bottom:423.912000px;}
.y27{bottom:425.257500px;}
.y63{bottom:425.811000px;}
.y105{bottom:430.932000px;}
.y134{bottom:435.252000px;}
.y8c{bottom:435.478500px;}
.yc4{bottom:440.350500px;}
.y26{bottom:441.696000px;}
.y62{bottom:442.249500px;}
.y104{bottom:447.370500px;}
.y133{bottom:451.690500px;}
.y8b{bottom:451.917000px;}
.yc3{bottom:456.789000px;}
.y25{bottom:458.134500px;}
.y61{bottom:458.686500px;}
.y103{bottom:463.809000px;}
.y132{bottom:468.129000px;}
.y89{bottom:468.355500px;}
.yc2{bottom:473.227500px;}
.y8a{bottom:473.236500px;}
.y24{bottom:474.573000px;}
.y60{bottom:475.125000px;}
.y102{bottom:480.247500px;}
.y131{bottom:484.567500px;}
.y87{bottom:484.792500px;}
.yc1{bottom:489.666000px;}
.y88{bottom:489.675000px;}
.y23{bottom:491.011500px;}
.y5f{bottom:491.563500px;}
.y101{bottom:496.684500px;}
.y130{bottom:501.006000px;}
.y86{bottom:501.231000px;}
.yc0{bottom:506.104500px;}
.y22{bottom:507.448500px;}
.y41{bottom:507.450000px;}
.y5e{bottom:508.002000px;}
.y100{bottom:517.233000px;}
.y12f{bottom:517.444500px;}
.y85{bottom:517.669500px;}
.ybf{bottom:522.543000px;}
.y21{bottom:523.887000px;}
.y40{bottom:523.888500px;}
.y5d{bottom:524.440500px;}
.y84{bottom:534.108000px;}
.ybe{bottom:538.981500px;}
.y20{bottom:540.325500px;}
.y5c{bottom:540.879000px;}
.y12e{bottom:545.802000px;}
.y83{bottom:550.546500px;}
.ybd{bottom:555.420000px;}
.y1f{bottom:556.764000px;}
.y5b{bottom:557.317500px;}
.yff{bottom:558.019500px;}
.y12d{bottom:562.240500px;}
.y82{bottom:566.985000px;}
.yfe{bottom:568.480500px;}
.ybc{bottom:571.857000px;}
.yde{bottom:571.858500px;}
.y1e{bottom:573.202500px;}
.y5a{bottom:577.864500px;}
.y12c{bottom:578.677500px;}
.yfd{bottom:578.940000px;}
.y81{bottom:583.423500px;}
.ybb{bottom:588.295500px;}
.yfc{bottom:589.401000px;}
.y1d{bottom:589.641000px;}
.y12b{bottom:595.116000px;}
.y80{bottom:599.862000px;}
.yba{bottom:604.734000px;}
.y1c{bottom:606.079500px;}
.yfb{bottom:610.323000px;}
.y12a{bottom:611.554500px;}
.y59{bottom:613.201500px;}
.y7f{bottom:616.300500px;}
.yfa{bottom:620.784000px;}
.yb9{bottom:621.172500px;}
.y1b{bottom:622.518000px;}
.y58{bottom:628.146000px;}
.yf9{bottom:631.245000px;}
.y7e{bottom:632.739000px;}
.yb8{bottom:637.611000px;}
.y1a{bottom:638.956500px;}
.yf8{bottom:641.706000px;}
.y57{bottom:643.090500px;}
.y129{bottom:645.607500px;}
.y7d{bottom:649.177500px;}
.yf7{bottom:652.165500px;}
.yb7{bottom:654.049500px;}
.y19{bottom:655.395000px;}
.y56{bottom:658.033500px;}
.y128{bottom:662.046000px;}
.yf6{bottom:662.626500px;}
.y7c{bottom:665.614500px;}
.yb6{bottom:670.488000px;}
.y18{bottom:671.832000px;}
.y3f{bottom:671.833500px;}
.y55{bottom:672.978000px;}
.yf5{bottom:673.087500px;}
.y127{bottom:678.483000px;}
.y7b{bottom:682.053000px;}
.yf4{bottom:683.548500px;}
.yb5{bottom:686.926500px;}
.y54{bottom:687.922500px;}
.y17{bottom:688.270500px;}
.y3e{bottom:688.272000px;}
.yf3{bottom:694.009500px;}
.y126{bottom:694.921500px;}
.y7a{bottom:698.491500px;}
.yb4{bottom:703.365000px;}
.yf2{bottom:704.470500px;}
.y16{bottom:704.709000px;}
.y53{bottom:710.820000px;}
.y125{bottom:711.360000px;}
.y79{bottom:714.930000px;}
.yb3{bottom:719.803500px;}
.y15{bottom:721.147500px;}
.y52{bottom:727.258500px;}
.y124{bottom:727.798500px;}
.y78{bottom:731.368500px;}
.yf1{bottom:732.163500px;}
.yb2{bottom:736.240500px;}
.ydd{bottom:736.242000px;}
.y14{bottom:737.586000px;}
.y123{bottom:744.237000px;}
.y51{bottom:747.807000px;}
.yb1{bottom:752.679000px;}
.ydc{bottom:752.680500px;}
.y13{bottom:754.024500px;}
.yf0{bottom:767.220000px;}
.yb0{bottom:769.117500px;}
.y12{bottom:770.463000px;}
.y122{bottom:772.594500px;}
.y50{bottom:777.784500px;}
.yef{bottom:783.658500px;}
.yaf{bottom:785.556000px;}
.y11{bottom:786.901500px;}
.y121{bottom:789.033000px;}
.y4f{bottom:795.717000px;}
.yae{bottom:801.994500px;}
.y10{bottom:803.340000px;}
.y120{bottom:805.471500px;}
.y4e{bottom:813.651000px;}
.yee{bottom:814.557000px;}
.yad{bottom:818.433000px;}
.yf{bottom:819.778500px;}
.y11f{bottom:821.910000px;}
.yed{bottom:830.995500px;}
.y4d{bottom:831.583500px;}
.yac{bottom:834.871500px;}
.ye{bottom:836.215500px;}
.y3d{bottom:836.217000px;}
.y11e{bottom:838.347000px;}
.y4c{bottom:849.516000px;}
.yab{bottom:851.310000px;}
.yec{bottom:851.544000px;}
.yd{bottom:852.654000px;}
.y3c{bottom:852.655500px;}
.y11d{bottom:854.785500px;}
.y14b{bottom:864.015000px;}
.yaa{bottom:867.748500px;}
.yc{bottom:869.092500px;}
.y11c{bottom:871.224000px;}
.y14a{bottom:880.453500px;}
.yeb{bottom:883.143000px;}
.y4b{bottom:883.294500px;}
.ya9{bottom:884.187000px;}
.yb{bottom:885.531000px;}
.y11b{bottom:887.662500px;}
.y149{bottom:896.892000px;}
.yea{bottom:899.581500px;}
.ya8{bottom:900.624000px;}
.ydb{bottom:900.625500px;}
.y4a{bottom:901.228500px;}
.ya{bottom:901.969500px;}
.y11a{bottom:904.101000px;}
.y148{bottom:913.330500px;}
.ye9{bottom:916.020000px;}
.ya7{bottom:917.062500px;}
.yda{bottom:917.064000px;}
.y9{bottom:918.408000px;}
.y49{bottom:919.161000px;}
.y119{bottom:920.539500px;}
.y147{bottom:929.769000px;}
.ye8{bottom:932.458500px;}
.ya6{bottom:933.501000px;}
.y8{bottom:934.846500px;}
.y48{bottom:937.093500px;}
.y146{bottom:946.206000px;}
.ye7{bottom:948.897000px;}
.ya5{bottom:949.939500px;}
.y7{bottom:951.285000px;}
.y47{bottom:955.026000px;}
.y145{bottom:962.644500px;}
.ye6{bottom:965.335500px;}
.ya4{bottom:966.378000px;}
.y6{bottom:967.723500px;}
.ye5{bottom:981.774000px;}
.ya3{bottom:982.816500px;}
.y144{bottom:983.193000px;}
.y5{bottom:984.162000px;}
.y46{bottom:984.787500px;}
.ye4{bottom:998.211000px;}
.ya2{bottom:999.255000px;}
.y4{bottom:1000.600500px;}
.y118{bottom:1014.649500px;}
.ye3{bottom:1014.651000px;}
.y45{bottom:1014.675000px;}
.ya1{bottom:1015.693500px;}
.y3{bottom:1017.037500px;}
.y3b{bottom:1017.039000px;}
.y117{bottom:1031.088000px;}
.ye2{bottom:1031.089500px;}
.ya0{bottom:1032.132000px;}
.y2{bottom:1033.476000px;}
.y44{bottom:1044.562500px;}
.ye1{bottom:1047.526500px;}
.y9f{bottom:1048.570500px;}
.y1{bottom:1049.914500px;}
.yd9{bottom:1086.979500px;}
.h10{height:23.832691px;}
.hc{height:24.197472px;}
.hf{height:25.823232px;}
.h1{height:26.397082px;}
.hb{height:29.036525px;}
.ha{height:29.289960px;}
.hd{height:29.499174px;}
.h9{height:30.796301px;}
.h7{height:34.430832px;}
.h8{height:35.195962px;}
.he{height:38.734848px;}
.h6{height:39.595622px;}
.h4{height:43.994842px;}
.h5{height:47.127312px;}
.h3{height:52.794163px;}
.h2{height:72.098095px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:41.637000px;}
.x1a{left:80.697000px;}
.x25{left:88.170000px;}
.x1b{left:95.641500px;}
.x3{left:105.132000px;}
.x2a{left:109.480500px;}
.x26{left:115.869000px;}
.x8{left:121.215000px;}
.x2b{left:123.637500px;}
.x4{left:130.051500px;}
.x7{left:139.318500px;}
.x9{left:158.491500px;}
.x6{left:161.518500px;}
.x27{left:215.853000px;}
.x12{left:228.493500px;}
.x15{left:255.415500px;}
.x14{left:258.814500px;}
.x11{left:265.905000px;}
.x13{left:293.133000px;}
.xb{left:367.438500px;}
.xa{left:387.505500px;}
.x5{left:394.404000px;}
.xc{left:398.043000px;}
.x24{left:456.447000px;}
.x2c{left:475.413000px;}
.x1c{left:476.932500px;}
.x17{left:489.804000px;}
.x1d{left:491.877000px;}
.x16{left:500.428500px;}
.x28{left:505.716000px;}
.x29{left:519.375000px;}
.x18{left:520.408500px;}
.x19{left:534.657000px;}
.x22{left:571.288500px;}
.x23{left:576.622500px;}
.xe{left:599.346000px;}
.xf{left:641.458500px;}
.x10{left:644.521500px;}
.xd{left:665.130000px;}
.x1e{left:748.822500px;}
.x1f{left:754.156500px;}
.x20{left:757.056000px;}
.x21{left:765.214500px;}
.x2{left:867.190500px;}
@media print{
.v1{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:2.656173pt;}
.ls1{letter-spacing:9.298400pt;}
.ls0{letter-spacing:10.626800pt;}
.ws2{word-spacing:-13.283467pt;}
.ws15{word-spacing:-11.955200pt;}
.ws2e{word-spacing:-9.298400pt;}
.wse{word-spacing:-3.825664pt;}
.ws30{word-spacing:-3.395277pt;}
.ws43{word-spacing:-3.060531pt;}
.ws3e{word-spacing:-2.917069pt;}
.ws58{word-spacing:-1.960653pt;}
.ws1b{word-spacing:-1.934067pt;}
.ws26{word-spacing:-1.721549pt;}
.ws5a{word-spacing:-1.673728pt;}
.ws10{word-spacing:-1.482445pt;}
.ws4e{word-spacing:-1.434624pt;}
.ws1f{word-spacing:-1.291162pt;}
.ws6{word-spacing:-1.232709pt;}
.ws4b{word-spacing:-1.004237pt;}
.ws18{word-spacing:-0.967034pt;}
.ws51{word-spacing:-0.812954pt;}
.ws47{word-spacing:-0.669491pt;}
.ws21{word-spacing:-0.478208pt;}
.ws1a{word-spacing:-0.409130pt;}
.ws16{word-spacing:-0.286925pt;}
.ws4{word-spacing:-0.239104pt;}
.ws11{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.143462pt;}
.ws7{word-spacing:-0.127522pt;}
.ws22{word-spacing:-0.095642pt;}
.ws3c{word-spacing:-0.063761pt;}
.ws3{word-spacing:-0.058182pt;}
.wsb{word-spacing:-0.047821pt;}
.ws19{word-spacing:-0.037194pt;}
.ws1{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.031881pt;}
.ws9{word-spacing:0.042507pt;}
.wsf{word-spacing:0.047821pt;}
.ws37{word-spacing:0.063761pt;}
.wsc{word-spacing:0.095642pt;}
.wsd{word-spacing:0.143462pt;}
.ws17{word-spacing:0.148774pt;}
.ws35{word-spacing:0.159403pt;}
.ws27{word-spacing:0.191283pt;}
.ws29{word-spacing:0.239104pt;}
.ws20{word-spacing:0.286925pt;}
.ws5b{word-spacing:0.334746pt;}
.ws48{word-spacing:0.430387pt;}
.ws4f{word-spacing:0.573850pt;}
.ws42{word-spacing:1.004237pt;}
.ws41{word-spacing:1.195520pt;}
.ws44{word-spacing:1.291162pt;}
.ws23{word-spacing:1.338982pt;}
.ws5c{word-spacing:1.530266pt;}
.ws24{word-spacing:1.578086pt;}
.ws3d{word-spacing:1.657788pt;}
.ws5d{word-spacing:1.673728pt;}
.ws1d{word-spacing:1.721549pt;}
.ws2d{word-spacing:1.912832pt;}
.ws3f{word-spacing:2.056294pt;}
.ws59{word-spacing:2.104115pt;}
.ws4c{word-spacing:2.247578pt;}
.ws55{word-spacing:2.534502pt;}
.ws1e{word-spacing:2.582323pt;}
.ws12{word-spacing:2.869248pt;}
.ws34{word-spacing:2.901129pt;}
.ws28{word-spacing:2.917069pt;}
.ws40{word-spacing:2.964890pt;}
.ws14{word-spacing:3.203994pt;}
.ws13{word-spacing:3.490918pt;}
.ws39{word-spacing:3.761903pt;}
.ws4a{word-spacing:3.873485pt;}
.ws57{word-spacing:4.064768pt;}
.ws8{word-spacing:4.335734pt;}
.ws46{word-spacing:4.542976pt;}
.ws50{word-spacing:4.829901pt;}
.ws2f{word-spacing:5.499392pt;}
.ws49{word-spacing:6.790554pt;}
.ws33{word-spacing:7.970133pt;}
.ws52{word-spacing:8.846848pt;}
.ws1c{word-spacing:9.261206pt;}
.ws5{word-spacing:10.584293pt;}
.ws31{word-spacing:11.716096pt;}
.ws2b{word-spacing:11.811738pt;}
.ws53{word-spacing:12.050842pt;}
.ws38{word-spacing:13.517346pt;}
.ws2c{word-spacing:13.772390pt;}
.ws54{word-spacing:14.441882pt;}
.ws2a{word-spacing:14.487285pt;}
.ws56{word-spacing:15.972147pt;}
.ws45{word-spacing:16.450355pt;}
.ws4d{word-spacing:18.889216pt;}
.ws36{word-spacing:19.415245pt;}
.ws0{word-spacing:22.862051pt;}
.ws3b{word-spacing:35.164228pt;}
.wsa{word-spacing:58.123685pt;}
.ws32{word-spacing:63.346620pt;}
._f{margin-left:-13.909338pt;}
._10{margin-left:-5.160405pt;}
._3{margin-left:-3.511096pt;}
._2{margin-left:-2.486682pt;}
._0{margin-left:-1.377232pt;}
._4{width:1.020173pt;}
._1{width:2.284756pt;}
._a{width:7.986074pt;}
._d{width:14.920090pt;}
._9{width:15.828685pt;}
._c{width:18.171904pt;}
._b{width:46.864384pt;}
._e{width:48.777216pt;}
._5{width:58.181867pt;}
._8{width:83.654519pt;}
._7{width:242.037009pt;}
._6{width:1741.262925pt;}
.fs9{font-size:29.224000pt;}
.fs0{font-size:31.880533pt;}
.fs8{font-size:35.068267pt;}
.fs7{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y9e{bottom:96.929333pt;}
.yd8{bottom:99.185333pt;}
.y3a{bottom:100.381333pt;}
.y77{bottom:112.870667pt;}
.yd7{bottom:113.797333pt;}
.y39{bottom:114.993333pt;}
.y9d{bottom:116.389333pt;}
.y76{bottom:123.497333pt;}
.y116{bottom:127.481333pt;}
.y9c{bottom:127.605333pt;}
.yd6{bottom:128.409333pt;}
.y38{bottom:129.605333pt;}
.y75{bottom:134.124000pt;}
.y9b{bottom:138.821333pt;}
.y143{bottom:142.093333pt;}
.yd5{bottom:143.021333pt;}
.y37{bottom:144.217333pt;}
.y74{bottom:145.813333pt;}
.y115{bottom:149.260000pt;}
.y142{bottom:156.705333pt;}
.y73{bottom:157.502667pt;}
.yd4{bottom:157.633333pt;}
.y9a{bottom:158.409333pt;}
.y36{bottom:158.828000pt;}
.y43{bottom:158.829333pt;}
.y114{bottom:163.872000pt;}
.y72{bottom:168.129333pt;}
.y141{bottom:171.317333pt;}
.yd3{bottom:172.245333pt;}
.y99{bottom:173.021333pt;}
.y35{bottom:173.440000pt;}
.y113{bottom:178.484000pt;}
.y71{bottom:178.756000pt;}
.y140{bottom:185.929333pt;}
.yd2{bottom:186.857333pt;}
.y98{bottom:187.633333pt;}
.y34{bottom:188.052000pt;}
.y70{bottom:189.382667pt;}
.y112{bottom:193.096000pt;}
.y6f{bottom:200.010667pt;}
.yd1{bottom:201.469333pt;}
.y97{bottom:202.245333pt;}
.y33{bottom:202.664000pt;}
.y13f{bottom:204.194667pt;}
.y111{bottom:207.708000pt;}
.y6e{bottom:210.637333pt;}
.yd0{bottom:216.080000pt;}
.ye0{bottom:216.081333pt;}
.y96{bottom:216.856000pt;}
.y32{bottom:217.276000pt;}
.y6d{bottom:221.264000pt;}
.y110{bottom:222.320000pt;}
.ycf{bottom:230.692000pt;}
.y95{bottom:231.468000pt;}
.y31{bottom:231.888000pt;}
.y10f{bottom:236.932000pt;}
.y13e{bottom:240.772000pt;}
.yce{bottom:245.304000pt;}
.y94{bottom:246.080000pt;}
.y30{bottom:246.500000pt;}
.y6c{bottom:246.990667pt;}
.y10e{bottom:251.544000pt;}
.y13d{bottom:255.384000pt;}
.ycd{bottom:259.916000pt;}
.y2f{bottom:261.112000pt;}
.y6b{bottom:261.602667pt;}
.y93{bottom:264.345333pt;}
.y10d{bottom:266.156000pt;}
.y13c{bottom:269.996000pt;}
.ycc{bottom:274.528000pt;}
.y2e{bottom:275.724000pt;}
.y6a{bottom:276.214667pt;}
.y10c{bottom:280.766667pt;}
.y13b{bottom:284.608000pt;}
.y92{bottom:285.266667pt;}
.ycb{bottom:289.140000pt;}
.y2d{bottom:290.336000pt;}
.y69{bottom:290.826667pt;}
.y10b{bottom:295.378667pt;}
.y13a{bottom:299.220000pt;}
.yca{bottom:303.752000pt;}
.y2c{bottom:304.946667pt;}
.y42{bottom:304.948000pt;}
.y68{bottom:305.438667pt;}
.y10a{bottom:309.990667pt;}
.y139{bottom:313.832000pt;}
.y91{bottom:314.032000pt;}
.yc9{bottom:318.364000pt;}
.y2b{bottom:319.558667pt;}
.y67{bottom:320.050667pt;}
.y109{bottom:324.602667pt;}
.y138{bottom:328.444000pt;}
.y90{bottom:328.644000pt;}
.yc8{bottom:332.976000pt;}
.y2a{bottom:334.170667pt;}
.y66{bottom:334.662667pt;}
.y108{bottom:339.214667pt;}
.y137{bottom:343.056000pt;}
.y8f{bottom:343.256000pt;}
.yc7{bottom:347.588000pt;}
.y29{bottom:348.782667pt;}
.y65{bottom:349.274667pt;}
.y107{bottom:353.826667pt;}
.y136{bottom:357.668000pt;}
.y8e{bottom:357.868000pt;}
.yc6{bottom:362.198667pt;}
.ydf{bottom:362.200000pt;}
.y28{bottom:363.394667pt;}
.y64{bottom:363.886667pt;}
.y106{bottom:368.438667pt;}
.y135{bottom:372.278667pt;}
.y8d{bottom:372.480000pt;}
.yc5{bottom:376.810667pt;}
.y27{bottom:378.006667pt;}
.y63{bottom:378.498667pt;}
.y105{bottom:383.050667pt;}
.y134{bottom:386.890667pt;}
.y8c{bottom:387.092000pt;}
.yc4{bottom:391.422667pt;}
.y26{bottom:392.618667pt;}
.y62{bottom:393.110667pt;}
.y104{bottom:397.662667pt;}
.y133{bottom:401.502667pt;}
.y8b{bottom:401.704000pt;}
.yc3{bottom:406.034667pt;}
.y25{bottom:407.230667pt;}
.y61{bottom:407.721333pt;}
.y103{bottom:412.274667pt;}
.y132{bottom:416.114667pt;}
.y89{bottom:416.316000pt;}
.yc2{bottom:420.646667pt;}
.y8a{bottom:420.654667pt;}
.y24{bottom:421.842667pt;}
.y60{bottom:422.333333pt;}
.y102{bottom:426.886667pt;}
.y131{bottom:430.726667pt;}
.y87{bottom:430.926667pt;}
.yc1{bottom:435.258667pt;}
.y88{bottom:435.266667pt;}
.y23{bottom:436.454667pt;}
.y5f{bottom:436.945333pt;}
.y101{bottom:441.497333pt;}
.y130{bottom:445.338667pt;}
.y86{bottom:445.538667pt;}
.yc0{bottom:449.870667pt;}
.y22{bottom:451.065333pt;}
.y41{bottom:451.066667pt;}
.y5e{bottom:451.557333pt;}
.y100{bottom:459.762667pt;}
.y12f{bottom:459.950667pt;}
.y85{bottom:460.150667pt;}
.ybf{bottom:464.482667pt;}
.y21{bottom:465.677333pt;}
.y40{bottom:465.678667pt;}
.y5d{bottom:466.169333pt;}
.y84{bottom:474.762667pt;}
.ybe{bottom:479.094667pt;}
.y20{bottom:480.289333pt;}
.y5c{bottom:480.781333pt;}
.y12e{bottom:485.157333pt;}
.y83{bottom:489.374667pt;}
.ybd{bottom:493.706667pt;}
.y1f{bottom:494.901333pt;}
.y5b{bottom:495.393333pt;}
.yff{bottom:496.017333pt;}
.y12d{bottom:499.769333pt;}
.y82{bottom:503.986667pt;}
.yfe{bottom:505.316000pt;}
.ybc{bottom:508.317333pt;}
.yde{bottom:508.318667pt;}
.y1e{bottom:509.513333pt;}
.y5a{bottom:513.657333pt;}
.y12c{bottom:514.380000pt;}
.yfd{bottom:514.613333pt;}
.y81{bottom:518.598667pt;}
.ybb{bottom:522.929333pt;}
.yfc{bottom:523.912000pt;}
.y1d{bottom:524.125333pt;}
.y12b{bottom:528.992000pt;}
.y80{bottom:533.210667pt;}
.yba{bottom:537.541333pt;}
.y1c{bottom:538.737333pt;}
.yfb{bottom:542.509333pt;}
.y12a{bottom:543.604000pt;}
.y59{bottom:545.068000pt;}
.y7f{bottom:547.822667pt;}
.yfa{bottom:551.808000pt;}
.yb9{bottom:552.153333pt;}
.y1b{bottom:553.349333pt;}
.y58{bottom:558.352000pt;}
.yf9{bottom:561.106667pt;}
.y7e{bottom:562.434667pt;}
.yb8{bottom:566.765333pt;}
.y1a{bottom:567.961333pt;}
.yf8{bottom:570.405333pt;}
.y57{bottom:571.636000pt;}
.y129{bottom:573.873333pt;}
.y7d{bottom:577.046667pt;}
.yf7{bottom:579.702667pt;}
.yb7{bottom:581.377333pt;}
.y19{bottom:582.573333pt;}
.y56{bottom:584.918667pt;}
.y128{bottom:588.485333pt;}
.yf6{bottom:589.001333pt;}
.y7c{bottom:591.657333pt;}
.yb6{bottom:595.989333pt;}
.y18{bottom:597.184000pt;}
.y3f{bottom:597.185333pt;}
.y55{bottom:598.202667pt;}
.yf5{bottom:598.300000pt;}
.y127{bottom:603.096000pt;}
.y7b{bottom:606.269333pt;}
.yf4{bottom:607.598667pt;}
.yb5{bottom:610.601333pt;}
.y54{bottom:611.486667pt;}
.y17{bottom:611.796000pt;}
.y3e{bottom:611.797333pt;}
.yf3{bottom:616.897333pt;}
.y126{bottom:617.708000pt;}
.y7a{bottom:620.881333pt;}
.yb4{bottom:625.213333pt;}
.yf2{bottom:626.196000pt;}
.y16{bottom:626.408000pt;}
.y53{bottom:631.840000pt;}
.y125{bottom:632.320000pt;}
.y79{bottom:635.493333pt;}
.yb3{bottom:639.825333pt;}
.y15{bottom:641.020000pt;}
.y52{bottom:646.452000pt;}
.y124{bottom:646.932000pt;}
.y78{bottom:650.105333pt;}
.yf1{bottom:650.812000pt;}
.yb2{bottom:654.436000pt;}
.ydd{bottom:654.437333pt;}
.y14{bottom:655.632000pt;}
.y123{bottom:661.544000pt;}
.y51{bottom:664.717333pt;}
.yb1{bottom:669.048000pt;}
.ydc{bottom:669.049333pt;}
.y13{bottom:670.244000pt;}
.yf0{bottom:681.973333pt;}
.yb0{bottom:683.660000pt;}
.y12{bottom:684.856000pt;}
.y122{bottom:686.750667pt;}
.y50{bottom:691.364000pt;}
.yef{bottom:696.585333pt;}
.yaf{bottom:698.272000pt;}
.y11{bottom:699.468000pt;}
.y121{bottom:701.362667pt;}
.y4f{bottom:707.304000pt;}
.yae{bottom:712.884000pt;}
.y10{bottom:714.080000pt;}
.y120{bottom:715.974667pt;}
.y4e{bottom:723.245333pt;}
.yee{bottom:724.050667pt;}
.yad{bottom:727.496000pt;}
.yf{bottom:728.692000pt;}
.y11f{bottom:730.586667pt;}
.yed{bottom:738.662667pt;}
.y4d{bottom:739.185333pt;}
.yac{bottom:742.108000pt;}
.ye{bottom:743.302667pt;}
.y3d{bottom:743.304000pt;}
.y11e{bottom:745.197333pt;}
.y4c{bottom:755.125333pt;}
.yab{bottom:756.720000pt;}
.yec{bottom:756.928000pt;}
.yd{bottom:757.914667pt;}
.y3c{bottom:757.916000pt;}
.y11d{bottom:759.809333pt;}
.y14b{bottom:768.013333pt;}
.yaa{bottom:771.332000pt;}
.yc{bottom:772.526667pt;}
.y11c{bottom:774.421333pt;}
.y14a{bottom:782.625333pt;}
.yeb{bottom:785.016000pt;}
.y4b{bottom:785.150667pt;}
.ya9{bottom:785.944000pt;}
.yb{bottom:787.138667pt;}
.y11b{bottom:789.033333pt;}
.y149{bottom:797.237333pt;}
.yea{bottom:799.628000pt;}
.ya8{bottom:800.554667pt;}
.ydb{bottom:800.556000pt;}
.y4a{bottom:801.092000pt;}
.ya{bottom:801.750667pt;}
.y11a{bottom:803.645333pt;}
.y148{bottom:811.849333pt;}
.ye9{bottom:814.240000pt;}
.ya7{bottom:815.166667pt;}
.yda{bottom:815.168000pt;}
.y9{bottom:816.362667pt;}
.y49{bottom:817.032000pt;}
.y119{bottom:818.257333pt;}
.y147{bottom:826.461333pt;}
.ye8{bottom:828.852000pt;}
.ya6{bottom:829.778667pt;}
.y8{bottom:830.974667pt;}
.y48{bottom:832.972000pt;}
.y146{bottom:841.072000pt;}
.ye7{bottom:843.464000pt;}
.ya5{bottom:844.390667pt;}
.y7{bottom:845.586667pt;}
.y47{bottom:848.912000pt;}
.y145{bottom:855.684000pt;}
.ye6{bottom:858.076000pt;}
.ya4{bottom:859.002667pt;}
.y6{bottom:860.198667pt;}
.ye5{bottom:872.688000pt;}
.ya3{bottom:873.614667pt;}
.y144{bottom:873.949333pt;}
.y5{bottom:874.810667pt;}
.y46{bottom:875.366667pt;}
.ye4{bottom:887.298667pt;}
.ya2{bottom:888.226667pt;}
.y4{bottom:889.422667pt;}
.y118{bottom:901.910667pt;}
.ye3{bottom:901.912000pt;}
.y45{bottom:901.933333pt;}
.ya1{bottom:902.838667pt;}
.y3{bottom:904.033333pt;}
.y3b{bottom:904.034667pt;}
.y117{bottom:916.522667pt;}
.ye2{bottom:916.524000pt;}
.ya0{bottom:917.450667pt;}
.y2{bottom:918.645333pt;}
.y44{bottom:928.500000pt;}
.ye1{bottom:931.134667pt;}
.y9f{bottom:932.062667pt;}
.y1{bottom:933.257333pt;}
.yd9{bottom:966.204000pt;}
.h10{height:21.184614pt;}
.hc{height:21.508864pt;}
.hf{height:22.953984pt;}
.h1{height:23.464073pt;}
.hb{height:25.810244pt;}
.ha{height:26.035520pt;}
.hd{height:26.221488pt;}
.h9{height:27.374490pt;}
.h7{height:30.605184pt;}
.h8{height:31.285299pt;}
.he{height:34.430976pt;}
.h6{height:35.196109pt;}
.h4{height:39.106526pt;}
.h5{height:41.890944pt;}
.h3{height:46.928145pt;}
.h2{height:64.087196pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:37.010667pt;}
.x1a{left:71.730667pt;}
.x25{left:78.373333pt;}
.x1b{left:85.014667pt;}
.x3{left:93.450667pt;}
.x2a{left:97.316000pt;}
.x26{left:102.994667pt;}
.x8{left:107.746667pt;}
.x2b{left:109.900000pt;}
.x4{left:115.601333pt;}
.x7{left:123.838667pt;}
.x9{left:140.881333pt;}
.x6{left:143.572000pt;}
.x27{left:191.869333pt;}
.x12{left:203.105333pt;}
.x15{left:227.036000pt;}
.x14{left:230.057333pt;}
.x11{left:236.360000pt;}
.x13{left:260.562667pt;}
.xb{left:326.612000pt;}
.xa{left:344.449333pt;}
.x5{left:350.581333pt;}
.xc{left:353.816000pt;}
.x24{left:405.730667pt;}
.x2c{left:422.589333pt;}
.x1c{left:423.940000pt;}
.x17{left:435.381333pt;}
.x1d{left:437.224000pt;}
.x16{left:444.825333pt;}
.x28{left:449.525333pt;}
.x29{left:461.666667pt;}
.x18{left:462.585333pt;}
.x19{left:475.250667pt;}
.x22{left:507.812000pt;}
.x23{left:512.553333pt;}
.xe{left:532.752000pt;}
.xf{left:570.185333pt;}
.x10{left:572.908000pt;}
.xd{left:591.226667pt;}
.x1e{left:665.620000pt;}
.x1f{left:670.361333pt;}
.x20{left:672.938667pt;}
.x21{left:680.190667pt;}
.x2{left:770.836000pt;}
}




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