
    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_027961d7936df972b48053da.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;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_a7fc2a90b15c8c2db1407e32.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.698000;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_7b49a1db889b1b2dfcd93104.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_25e07417d85d127b3b7493a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_f802e80ab2e5297ccb0fba7f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854000;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_6b8adc8604217eb61546415d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_719b09be97c435a1730a7e7a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_0c0f6c938687d331fc4bbdc6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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;}
.m7{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);}
.me{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);}
.m8{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);}
.m3{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);}
.m12{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m4{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);}
.m0{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m10{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);}
.m1{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);}
.m15{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m5{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);}
.mb{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);}
.m13{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);}
.ma{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);}
.mc{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);}
.m11{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);}
.m6{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);}
.m2{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);}
.v2{vertical-align:-23.754000px;}
.v4{vertical-align:-10.398000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.754000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:33.570000px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:2.984915px;}
.lsb{letter-spacing:2.987943px;}
.ls7{letter-spacing:2.990915px;}
.ls9{letter-spacing:24.800915px;}
.ls5{letter-spacing:24.806915px;}
.lsc{letter-spacing:29.061842px;}
.lsd{letter-spacing:29.127297px;}
.ls8{letter-spacing:32.727300px;}
.lsf{letter-spacing:37.374577px;}
.lse{letter-spacing:46.080038px;}
.ls1{letter-spacing:161.590200px;}
.ls3{letter-spacing:169.012200px;}
.ls4{letter-spacing:169.018200px;}
.ls0{letter-spacing:196.402200px;}
.ls2{letter-spacing:209.854200px;}
.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;}
}
.wsa{word-spacing:-32.727300px;}
.ws16{word-spacing:-25.407085px;}
.ws2e{word-spacing:-17.869106px;}
.ws44{word-spacing:-14.269103px;}
.ws1{word-spacing:-14.082230px;}
.ws2{word-spacing:-13.996153px;}
.ws32{word-spacing:-13.483648px;}
.ws2f{word-spacing:-13.156375px;}
.ws45{word-spacing:-13.032011px;}
.ws14{word-spacing:-11.650919px;}
.wsd{word-spacing:-11.389100px;}
.ws1d{word-spacing:-11.258191px;}
.ws1e{word-spacing:-11.192737px;}
.ws2c{word-spacing:-11.127282px;}
.ws1f{word-spacing:-11.061827px;}
.ws25{word-spacing:-10.996373px;}
.ws3{word-spacing:-10.930918px;}
.wse{word-spacing:-10.865464px;}
.ws8{word-spacing:-10.800009px;}
.ws17{word-spacing:-10.734554px;}
.ws18{word-spacing:-10.669100px;}
.ws7{word-spacing:-10.603645px;}
.ws2a{word-spacing:-10.472736px;}
.wsb{word-spacing:-10.407281px;}
.ws38{word-spacing:-10.348372px;}
.ws3b{word-spacing:-10.086554px;}
.ws9{word-spacing:-10.080008px;}
.ws35{word-spacing:-10.021099px;}
.ws21{word-spacing:-10.014554px;}
.ws36{word-spacing:-9.949099px;}
.ws37{word-spacing:-9.170189px;}
.ws26{word-spacing:-9.163644px;}
.ws2b{word-spacing:-9.098189px;}
.ws2d{word-spacing:-8.836371px;}
.ws20{word-spacing:-8.705462px;}
.ws39{word-spacing:-8.640007px;}
.ws28{word-spacing:-8.378189px;}
.ws31{word-spacing:-8.312734px;}
.ws43{word-spacing:-8.247280px;}
.ws3a{word-spacing:-7.992007px;}
.ws46{word-spacing:-7.795643px;}
.ws34{word-spacing:-7.592734px;}
.ws13{word-spacing:-6.807278px;}
.ws27{word-spacing:-6.610915px;}
.ws3c{word-spacing:-6.152732px;}
.ws3d{word-spacing:-5.701096px;}
.wsc{word-spacing:-5.694550px;}
.ws41{word-spacing:-5.498186px;}
.ws11{word-spacing:-5.170913px;}
.ws42{word-spacing:-5.112004px;}
.ws29{word-spacing:-4.843640px;}
.ws40{word-spacing:-4.058185px;}
.ws3e{word-spacing:-3.992731px;}
.ws3f{word-spacing:-3.802912px;}
.ws4{word-spacing:-3.665458px;}
.ws30{word-spacing:-3.010912px;}
.wsf{word-spacing:-2.290911px;}
.ws1a{word-spacing:-0.606226px;}
.ws6{word-spacing:-0.086077px;}
.ws1c{word-spacing:-0.071731px;}
.ws33{word-spacing:-0.035866px;}
.ws5{word-spacing:0.000000px;}
.ws24{word-spacing:25.003657px;}
.ws12{word-spacing:26.181888px;}
.ws10{word-spacing:26.253619px;}
.ws22{word-spacing:31.287299px;}
.ws1b{word-spacing:31.504255px;}
.ws23{word-spacing:35.410939px;}
.ws0{word-spacing:45.250875px;}
.ws15{word-spacing:77.694610px;}
.ws19{word-spacing:510.480425px;}
._10{margin-left:-2734.228882px;}
._1{margin-left:-2695.288830px;}
._8{margin-left:-2673.929493px;}
._b{margin-left:-2509.483968px;}
._2{margin-left:-2499.918885px;}
._1c{margin-left:-2424.874215px;}
._21{margin-left:-2350.895282px;}
._69{margin-left:-2287.280574px;}
._f{margin-left:-2278.029511px;}
._22{margin-left:-2270.975216px;}
._e{margin-left:-2269.461950px;}
._11{margin-left:-2254.264378px;}
._27{margin-left:-2210.324323px;}
._6d{margin-left:-2200.930839px;}
._63{margin-left:-2126.171136px;}
._20{margin-left:-2111.698438px;}
._d{margin-left:-2057.677046px;}
._65{margin-left:-1911.887441px;}
._76{margin-left:-1840.908888px;}
._13{margin-left:-1832.236880px;}
._29{margin-left:-1723.638077px;}
._25{margin-left:-1480.288866px;}
._c{margin-left:-1448.817464px;}
._15{margin-left:-1446.815594px;}
._17{margin-left:-1385.317172px;}
._74{margin-left:-1306.128017px;}
._28{margin-left:-1204.716220px;}
._72{margin-left:-1049.376347px;}
._26{margin-left:-875.644284px;}
._6b{margin-left:-874.534241px;}
._1a{margin-left:-760.688165px;}
._23{margin-left:-719.177011px;}
._14{margin-left:-543.399706px;}
._77{margin-left:-541.068442px;}
._6f{margin-left:-534.952463px;}
._6c{margin-left:-513.093274px;}
._1d{margin-left:-458.434099px;}
._1e{margin-left:-429.820530px;}
._64{margin-left:-394.026661px;}
._66{margin-left:-389.787341px;}
._73{margin-left:-346.612338px;}
._6e{margin-left:-315.732056px;}
._70{margin-left:-310.488499px;}
._75{margin-left:-292.950221px;}
._18{margin-left:-245.356570px;}
._4{margin-left:-7.056486px;}
._9{margin-left:-5.498186px;}
._0{margin-left:-3.843225px;}
._3{margin-left:-2.324084px;}
._7{margin-left:-1.210464px;}
._12{width:1.255296px;}
._5{width:2.410162px;}
._2f{width:3.522945px;}
._16{width:21.077273px;}
._a{width:22.844548px;}
._78{width:24.217310px;}
._71{width:25.397277px;}
._24{width:27.293722px;}
._6{width:29.061842px;}
._1f{width:31.090935px;}
._1b{width:32.858209px;}
._6a{width:35.018211px;}
._79{width:37.243667px;}
._68{width:38.979553px;}
._7a{width:43.646560px;}
._7b{width:49.810951px;}
._19{width:51.054588px;}
._67{width:65.618683px;}
._2a{width:132.872838px;}
._31{width:137.749652px;}
._35{width:160.789671px;}
._33{width:162.622400px;}
._5b{width:307.101325px;}
._45{width:345.195902px;}
._4b{width:358.648160px;}
._62{width:389.978507px;}
._4c{width:429.122384px;}
._60{width:495.152390px;}
._2b{width:501.578600px;}
._4a{width:542.148793px;}
._41{width:546.480455px;}
._34{width:552.698642px;}
._3f{width:556.253813px;}
._32{width:559.047739px;}
._48{width:561.600468px;}
._5f{width:563.236833px;}
._55{width:565.385176px;}
._4d{width:568.387124px;}
._4f{width:570.743489px;}
._59{width:572.290190px;}
._5c{width:575.652584px;}
._44{width:579.929782px;}
._52{width:583.691842px;}
._2d{width:585.425942px;}
._5a{width:586.821112px;}
._38{width:589.190028px;}
._3b{width:590.847016px;}
._3d{width:594.316109px;}
._53{width:598.308840px;}
._57{width:601.352033px;}
._36{width:604.473231px;}
._61{width:605.553678px;}
._51{width:609.043394px;}
._42{width:616.647787px;}
._3a{width:629.353990px;}
._40{width:636.938713px;}
._58{width:641.389625px;}
._4e{width:655.397802px;}
._5d{width:656.673721px;}
._56{width:660.175096px;}
._43{width:661.770215px;}
._5e{width:672.468902px;}
._30{width:694.964662px;}
._2e{width:702.230122px;}
._3c{width:709.430128px;}
._47{width:714.514964px;}
._50{width:735.153786px;}
._3e{width:757.768796px;}
._54{width:770.826543px;}
._37{width:784.048372px;}
._39{width:799.909008px;}
._49{width:802.604305px;}
._2c{width:847.702525px;}
._46{width:907.463467px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:35.865600px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs6{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y12{bottom:56.425500px;}
.y9b{bottom:128.245500px;}
.y5a{bottom:145.107000px;}
.y9a{bottom:161.130000px;}
.y59{bottom:177.990000px;}
.y62{bottom:183.178500px;}
.y7e{bottom:184.993500px;}
.y28{bottom:185.185500px;}
.y99{bottom:194.013000px;}
.y58{bottom:210.874500px;}
.y61{bottom:216.063000px;}
.y7c{bottom:217.878000px;}
.y27{bottom:218.070000px;}
.y7d{bottom:223.816500px;}
.y98{bottom:224.442000px;}
.y97{bottom:226.897500px;}
.y11{bottom:240.369000px;}
.y57{bottom:243.757500px;}
.y60{bottom:248.946000px;}
.y7b{bottom:250.762500px;}
.y26{bottom:250.953000px;}
.y95{bottom:259.780500px;}
.y96{bottom:265.719000px;}
.y56{bottom:276.642000px;}
.y7a{bottom:281.191500px;}
.y5f{bottom:281.830500px;}
.y79{bottom:283.645500px;}
.y25{bottom:283.837500px;}
.y10{bottom:289.693500px;}
.y94{bottom:292.665000px;}
.y3d{bottom:306.891000px;}
.y55{bottom:309.525000px;}
.y5e{bottom:314.713500px;}
.y24{bottom:316.720500px;}
.yf{bottom:322.578000px;}
.y3c{bottom:339.775500px;}
.y54{bottom:342.409500px;}
.y78{bottom:343.539000px;}
.y5d{bottom:347.598000px;}
.y23{bottom:349.605000px;}
.y93{bottom:352.558500px;}
.ye{bottom:355.461000px;}
.y3b{bottom:372.658500px;}
.y53{bottom:375.292500px;}
.yd{bottom:388.345500px;}
.y3a{bottom:405.543000px;}
.y5c{bottom:407.491500px;}
.y52{bottom:408.177000px;}
.y22{bottom:409.498500px;}
.y77{bottom:416.730000px;}
.yc{bottom:421.230000px;}
.y92{bottom:425.748000px;}
.y39{bottom:438.426000px;}
.y51{bottom:441.060000px;}
.y76{bottom:449.613000px;}
.yac{bottom:453.001500px;}
.yb{bottom:454.113000px;}
.y91{bottom:458.632500px;}
.y38{bottom:471.310500px;}
.y50{bottom:473.944500px;}
.y5b{bottom:473.988000px;}
.y21{bottom:475.996500px;}
.y75{bottom:480.042000px;}
.y74{bottom:482.497500px;}
.yab{bottom:485.884500px;}
.ya{bottom:486.997500px;}
.y90{bottom:489.061500px;}
.y8f{bottom:491.517000px;}
.y37{bottom:504.193500px;}
.y4f{bottom:506.827500px;}
.y73{bottom:515.380500px;}
.yaa{bottom:518.769000px;}
.y9{bottom:519.880500px;}
.y8e{bottom:521.946000px;}
.y8d{bottom:524.400000px;}
.y36{bottom:537.078000px;}
.y4e{bottom:539.712000px;}
.y72{bottom:548.265000px;}
.ya9{bottom:553.147500px;}
.y8c{bottom:557.284500px;}
.y20{bottom:560.619000px;}
.y35{bottom:569.961000px;}
.y4d{bottom:572.596500px;}
.y70{bottom:581.148000px;}
.ya8{bottom:586.030500px;}
.y71{bottom:587.086500px;}
.y8b{bottom:590.167500px;}
.y1f{bottom:593.503500px;}
.y34{bottom:602.845500px;}
.y4c{bottom:605.479500px;}
.ya7{bottom:620.409000px;}
.y8{bottom:630.292500px;}
.y33{bottom:635.728500px;}
.y4b{bottom:638.364000px;}
.y6f{bottom:641.041500px;}
.y1e{bottom:642.828000px;}
.y8a{bottom:650.061000px;}
.ya6{bottom:653.293500px;}
.y4a{bottom:671.247000px;}
.y7{bottom:673.815000px;}
.y1d{bottom:675.712500px;}
.y32{bottom:676.822500px;}
.ya5{bottom:686.176500px;}
.y49{bottom:704.131500px;}
.y1c{bottom:708.595500px;}
.y6e{bottom:714.232500px;}
.y6{bottom:717.337500px;}
.ya4{bottom:720.555000px;}
.y89{bottom:723.252000px;}
.y31{bottom:726.762000px;}
.y48{bottom:737.014500px;}
.y1b{bottom:741.480000px;}
.y30{bottom:747.085500px;}
.y6d{bottom:747.115500px;}
.ya3{bottom:753.438000px;}
.y88{bottom:753.681000px;}
.y87{bottom:756.135000px;}
.y5{bottom:760.860000px;}
.y47{bottom:769.899000px;}
.y6c{bottom:777.546000px;}
.y6b{bottom:780.000000px;}
.ya2{bottom:787.816500px;}
.y86{bottom:789.019500px;}
.y1a{bottom:790.806000px;}
.y2f{bottom:795.702000px;}
.y46{bottom:802.782000px;}
.y4{bottom:804.382500px;}
.y6a{bottom:812.884500px;}
.ya1{bottom:820.701000px;}
.y85{bottom:821.902500px;}
.y19{bottom:823.689000px;}
.y45{bottom:835.666500px;}
.y2e{bottom:839.793000px;}
.y69{bottom:843.313500px;}
.y68{bottom:845.767500px;}
.ya0{bottom:853.584000px;}
.y84{bottom:854.787000px;}
.y18{bottom:856.573500px;}
.y44{bottom:868.549500px;}
.y3{bottom:872.451000px;}
.y66{bottom:878.652000px;}
.y2d{bottom:883.885500px;}
.y67{bottom:884.589000px;}
.y83{bottom:887.670000px;}
.y9f{bottom:887.962500px;}
.y43{bottom:901.434000px;}
.y17{bottom:905.899500px;}
.y65{bottom:911.535000px;}
.y2c{bottom:916.768500px;}
.y81{bottom:920.554500px;}
.y9e{bottom:920.847000px;}
.y82{bottom:926.493000px;}
.y2{bottom:932.898000px;}
.y42{bottom:934.317000px;}
.y16{bottom:938.782500px;}
.y2b{bottom:949.653000px;}
.y9d{bottom:953.730000px;}
.y64{bottom:960.861000px;}
.y41{bottom:967.201500px;}
.y15{bottom:971.667000px;}
.y80{bottom:980.448000px;}
.y9c{bottom:988.108500px;}
.y1{bottom:993.346500px;}
.y2a{bottom:993.744000px;}
.y63{bottom:993.745500px;}
.y40{bottom:1000.084500px;}
.y14{bottom:1020.993000px;}
.y29{bottom:1026.628500px;}
.y3f{bottom:1032.969000px;}
.y7f{bottom:1053.639000px;}
.y3e{bottom:1074.061500px;}
.y13{bottom:1086.522000px;}
.h2{height:24.281011px;}
.h4{height:35.865450px;}
.ha{height:45.818220px;}
.h5{height:49.090950px;}
.h8{height:53.798400px;}
.h9{height:59.613450px;}
.h7{height:59.619450px;}
.h6{height:64.557900px;}
.hb{height:69.435450px;}
.hc{height:69.441450px;}
.h3{height:76.067700px;}
.h1{height:92.981250px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3e{left:98.325000px;}
.xb{left:103.089000px;}
.x2{left:107.851500px;}
.x2b{left:125.644500px;}
.x1{left:127.558500px;}
.x6{left:140.332500px;}
.xc{left:147.559500px;}
.x8{left:151.252500px;}
.x2c{left:152.460000px;}
.x2d{left:164.539500px;}
.xd{left:167.878500px;}
.x3f{left:176.371500px;}
.x3{left:178.696500px;}
.xe{left:183.559500px;}
.x10{left:190.150500px;}
.x5{left:191.524500px;}
.x34{left:196.159500px;}
.xf{left:203.863500px;}
.x7{left:211.311000px;}
.x2e{left:217.072500px;}
.x4{left:227.614500px;}
.x2f{left:229.152000px;}
.x18{left:244.120500px;}
.x19{left:256.200000px;}
.x30{left:281.233500px;}
.x31{left:293.313000px;}
.x1a{left:310.608000px;}
.x1b{left:328.332000px;}
.x35{left:336.310500px;}
.x27{left:340.248000px;}
.x36{left:354.036000px;}
.x23{left:357.271500px;}
.x13{left:360.174000px;}
.x11{left:362.088000px;}
.x28{left:366.532500px;}
.x24{left:369.351000px;}
.x29{left:373.630500px;}
.x39{left:382.996500px;}
.x9{left:399.885000px;}
.x1c{left:422.782500px;}
.x1d{left:436.983000px;}
.x3a{left:455.172000px;}
.x14{left:465.384000px;}
.x3b{left:467.251500px;}
.x15{left:472.483500px;}
.xa{left:476.169000px;}
.x1e{left:478.104000px;}
.x25{left:493.309500px;}
.x2a{left:506.007000px;}
.x26{left:511.740000px;}
.x3c{left:523.326000px;}
.x1f{left:531.886500px;}
.x3d{left:543.873000px;}
.x20{left:549.612000px;}
.x12{left:655.738500px;}
.x21{left:684.069000px;}
.x22{left:704.617500px;}
.x16{left:735.841500px;}
.x17{left:747.921000px;}
.x32{left:802.798500px;}
.x33{left:814.879500px;}
.x37{left:824.400000px;}
.x38{left:831.499500px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v4{vertical-align:-9.242667pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.114667pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:29.840000pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:2.653258pt;}
.lsb{letter-spacing:2.655950pt;}
.ls7{letter-spacing:2.658591pt;}
.ls9{letter-spacing:22.045258pt;}
.ls5{letter-spacing:22.050591pt;}
.lsc{letter-spacing:25.832749pt;}
.lsd{letter-spacing:25.890931pt;}
.ls8{letter-spacing:29.090933pt;}
.lsf{letter-spacing:33.221846pt;}
.lse{letter-spacing:40.960034pt;}
.ls1{letter-spacing:143.635733pt;}
.ls3{letter-spacing:150.233067pt;}
.ls4{letter-spacing:150.238400pt;}
.ls0{letter-spacing:174.579733pt;}
.ls2{letter-spacing:186.537067pt;}
.wsa{word-spacing:-29.090933pt;}
.ws16{word-spacing:-22.584075pt;}
.ws2e{word-spacing:-15.883650pt;}
.ws44{word-spacing:-12.683647pt;}
.ws1{word-spacing:-12.517538pt;}
.ws2{word-spacing:-12.441025pt;}
.ws32{word-spacing:-11.985465pt;}
.ws2f{word-spacing:-11.694555pt;}
.ws45{word-spacing:-11.584010pt;}
.ws14{word-spacing:-10.356372pt;}
.wsd{word-spacing:-10.123645pt;}
.ws1d{word-spacing:-10.007281pt;}
.ws1e{word-spacing:-9.949099pt;}
.ws2c{word-spacing:-9.890917pt;}
.ws1f{word-spacing:-9.832735pt;}
.ws25{word-spacing:-9.774554pt;}
.ws3{word-spacing:-9.716372pt;}
.wse{word-spacing:-9.658190pt;}
.ws8{word-spacing:-9.600008pt;}
.ws17{word-spacing:-9.541826pt;}
.ws18{word-spacing:-9.483644pt;}
.ws7{word-spacing:-9.425462pt;}
.ws2a{word-spacing:-9.309099pt;}
.wsb{word-spacing:-9.250917pt;}
.ws38{word-spacing:-9.198553pt;}
.ws3b{word-spacing:-8.965826pt;}
.ws9{word-spacing:-8.960007pt;}
.ws35{word-spacing:-8.907644pt;}
.ws21{word-spacing:-8.901826pt;}
.ws36{word-spacing:-8.843644pt;}
.ws37{word-spacing:-8.151280pt;}
.ws26{word-spacing:-8.145461pt;}
.ws2b{word-spacing:-8.087279pt;}
.ws2d{word-spacing:-7.854552pt;}
.ws20{word-spacing:-7.738188pt;}
.ws39{word-spacing:-7.680006pt;}
.ws28{word-spacing:-7.447279pt;}
.ws31{word-spacing:-7.389097pt;}
.ws43{word-spacing:-7.330915pt;}
.ws3a{word-spacing:-7.104006pt;}
.ws46{word-spacing:-6.929460pt;}
.ws34{word-spacing:-6.749097pt;}
.ws13{word-spacing:-6.050914pt;}
.ws27{word-spacing:-5.876369pt;}
.ws3c{word-spacing:-5.469095pt;}
.ws3d{word-spacing:-5.067641pt;}
.wsc{word-spacing:-5.061822pt;}
.ws41{word-spacing:-4.887277pt;}
.ws11{word-spacing:-4.596367pt;}
.ws42{word-spacing:-4.544004pt;}
.ws29{word-spacing:-4.305458pt;}
.ws40{word-spacing:-3.607276pt;}
.ws3e{word-spacing:-3.549094pt;}
.ws3f{word-spacing:-3.380366pt;}
.ws4{word-spacing:-3.258185pt;}
.ws30{word-spacing:-2.676366pt;}
.wsf{word-spacing:-2.036365pt;}
.ws1a{word-spacing:-0.538868pt;}
.ws6{word-spacing:-0.076513pt;}
.ws1c{word-spacing:-0.063761pt;}
.ws33{word-spacing:-0.031881pt;}
.ws5{word-spacing:0.000000pt;}
.ws24{word-spacing:22.225473pt;}
.ws12{word-spacing:23.272789pt;}
.ws10{word-spacing:23.336550pt;}
.ws22{word-spacing:27.810932pt;}
.ws1b{word-spacing:28.003782pt;}
.ws23{word-spacing:31.476390pt;}
.ws0{word-spacing:40.223000pt;}
.ws15{word-spacing:69.061876pt;}
.ws19{word-spacing:453.760378pt;}
._10{margin-left:-2430.425673pt;}
._1{margin-left:-2395.812293pt;}
._8{margin-left:-2376.826216pt;}
._b{margin-left:-2230.652416pt;}
._2{margin-left:-2222.150120pt;}
._1c{margin-left:-2155.443747pt;}
._21{margin-left:-2089.684695pt;}
._69{margin-left:-2033.138288pt;}
._f{margin-left:-2024.915121pt;}
._22{margin-left:-2018.644636pt;}
._e{margin-left:-2017.299511pt;}
._11{margin-left:-2003.790558pt;}
._27{margin-left:-1964.732732pt;}
._6d{margin-left:-1956.382968pt;}
._63{margin-left:-1889.929898pt;}
._20{margin-left:-1877.065278pt;}
._d{margin-left:-1829.046263pt;}
._65{margin-left:-1699.455503pt;}
._76{margin-left:-1636.363456pt;}
._13{margin-left:-1628.655005pt;}
._29{margin-left:-1532.122735pt;}
._25{margin-left:-1315.812325pt;}
._c{margin-left:-1287.837746pt;}
._15{margin-left:-1286.058306pt;}
._17{margin-left:-1231.393042pt;}
._74{margin-left:-1161.002682pt;}
._28{margin-left:-1070.858862pt;}
._72{margin-left:-932.778975pt;}
._26{margin-left:-778.350475pt;}
._6b{margin-left:-777.363770pt;}
._1a{margin-left:-676.167257pt;}
._23{margin-left:-639.268454pt;}
._14{margin-left:-483.021961pt;}
._77{margin-left:-480.949726pt;}
._6f{margin-left:-475.513301pt;}
._6c{margin-left:-456.082910pt;}
._1d{margin-left:-407.496977pt;}
._1e{margin-left:-382.062693pt;}
._64{margin-left:-350.245921pt;}
._66{margin-left:-346.477636pt;}
._73{margin-left:-308.099856pt;}
._6e{margin-left:-280.650717pt;}
._70{margin-left:-275.989777pt;}
._75{margin-left:-260.400196pt;}
._18{margin-left:-218.094729pt;}
._4{margin-left:-6.272432pt;}
._9{margin-left:-4.887277pt;}
._0{margin-left:-3.416200pt;}
._3{margin-left:-2.065853pt;}
._7{margin-left:-1.075968pt;}
._12{width:1.115819pt;}
._5{width:2.142366pt;}
._2f{width:3.131506pt;}
._16{width:18.735354pt;}
._a{width:20.306265pt;}
._78{width:21.526498pt;}
._71{width:22.575357pt;}
._24{width:24.261086pt;}
._6{width:25.832749pt;}
._1f{width:27.636387pt;}
._1b{width:29.207297pt;}
._6a{width:31.127299pt;}
._79{width:33.105482pt;}
._68{width:34.648491pt;}
._7a{width:38.796942pt;}
._7b{width:44.276401pt;}
._19{width:45.381856pt;}
._67{width:58.327718pt;}
._2a{width:118.109189pt;}
._31{width:122.444135pt;}
._35{width:142.924152pt;}
._33{width:144.553244pt;}
._5b{width:272.978955pt;}
._45{width:306.840802pt;}
._4b{width:318.798365pt;}
._62{width:346.647562pt;}
._4c{width:381.442119pt;}
._60{width:440.135458pt;}
._2b{width:445.847644pt;}
._4a{width:481.910038pt;}
._41{width:485.760405pt;}
._34{width:491.287682pt;}
._3f{width:494.447834pt;}
._32{width:496.931323pt;}
._48{width:499.200416pt;}
._5f{width:500.654963pt;}
._55{width:502.564601pt;}
._4d{width:505.232999pt;}
._4f{width:507.327546pt;}
._59{width:508.702391pt;}
._5c{width:511.691186pt;}
._44{width:515.493140pt;}
._52{width:518.837193pt;}
._2d{width:520.378615pt;}
._5a{width:521.618766pt;}
._38{width:523.724469pt;}
._3b{width:525.197347pt;}
._3d{width:528.280986pt;}
._53{width:531.830080pt;}
._57{width:534.535140pt;}
._36{width:537.309539pt;}
._61{width:538.269936pt;}
._51{width:541.371906pt;}
._42{width:548.131366pt;}
._3a{width:559.425769pt;}
._40{width:566.167745pt;}
._58{width:570.124111pt;}
._4e{width:582.575824pt;}
._5d{width:583.709974pt;}
._56{width:586.822307pt;}
._43{width:588.240191pt;}
._5e{width:597.750135pt;}
._30{width:617.746366pt;}
._2e{width:624.204553pt;}
._3c{width:630.604558pt;}
._47{width:635.124413pt;}
._50{width:653.470032pt;}
._3e{width:673.572263pt;}
._54{width:685.179149pt;}
._37{width:696.931886pt;}
._39{width:711.030229pt;}
._49{width:713.426049pt;}
._2c{width:753.513355pt;}
._46{width:806.634193pt;}
.fs1{font-size:31.880533pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs6{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:50.156000pt;}
.y9b{bottom:113.996000pt;}
.y5a{bottom:128.984000pt;}
.y9a{bottom:143.226667pt;}
.y59{bottom:158.213333pt;}
.y62{bottom:162.825333pt;}
.y7e{bottom:164.438667pt;}
.y28{bottom:164.609333pt;}
.y99{bottom:172.456000pt;}
.y58{bottom:187.444000pt;}
.y61{bottom:192.056000pt;}
.y7c{bottom:193.669333pt;}
.y27{bottom:193.840000pt;}
.y7d{bottom:198.948000pt;}
.y98{bottom:199.504000pt;}
.y97{bottom:201.686667pt;}
.y11{bottom:213.661333pt;}
.y57{bottom:216.673333pt;}
.y60{bottom:221.285333pt;}
.y7b{bottom:222.900000pt;}
.y26{bottom:223.069333pt;}
.y95{bottom:230.916000pt;}
.y96{bottom:236.194667pt;}
.y56{bottom:245.904000pt;}
.y7a{bottom:249.948000pt;}
.y5f{bottom:250.516000pt;}
.y79{bottom:252.129333pt;}
.y25{bottom:252.300000pt;}
.y10{bottom:257.505333pt;}
.y94{bottom:260.146667pt;}
.y3d{bottom:272.792000pt;}
.y55{bottom:275.133333pt;}
.y5e{bottom:279.745333pt;}
.y24{bottom:281.529333pt;}
.yf{bottom:286.736000pt;}
.y3c{bottom:302.022667pt;}
.y54{bottom:304.364000pt;}
.y78{bottom:305.368000pt;}
.y5d{bottom:308.976000pt;}
.y23{bottom:310.760000pt;}
.y93{bottom:313.385333pt;}
.ye{bottom:315.965333pt;}
.y3b{bottom:331.252000pt;}
.y53{bottom:333.593333pt;}
.yd{bottom:345.196000pt;}
.y3a{bottom:360.482667pt;}
.y5c{bottom:362.214667pt;}
.y52{bottom:362.824000pt;}
.y22{bottom:363.998667pt;}
.y77{bottom:370.426667pt;}
.yc{bottom:374.426667pt;}
.y92{bottom:378.442667pt;}
.y39{bottom:389.712000pt;}
.y51{bottom:392.053333pt;}
.y76{bottom:399.656000pt;}
.yac{bottom:402.668000pt;}
.yb{bottom:403.656000pt;}
.y91{bottom:407.673333pt;}
.y38{bottom:418.942667pt;}
.y50{bottom:421.284000pt;}
.y5b{bottom:421.322667pt;}
.y21{bottom:423.108000pt;}
.y75{bottom:426.704000pt;}
.y74{bottom:428.886667pt;}
.yab{bottom:431.897333pt;}
.ya{bottom:432.886667pt;}
.y90{bottom:434.721333pt;}
.y8f{bottom:436.904000pt;}
.y37{bottom:448.172000pt;}
.y4f{bottom:450.513333pt;}
.y73{bottom:458.116000pt;}
.yaa{bottom:461.128000pt;}
.y9{bottom:462.116000pt;}
.y8e{bottom:463.952000pt;}
.y8d{bottom:466.133333pt;}
.y36{bottom:477.402667pt;}
.y4e{bottom:479.744000pt;}
.y72{bottom:487.346667pt;}
.ya9{bottom:491.686667pt;}
.y8c{bottom:495.364000pt;}
.y20{bottom:498.328000pt;}
.y35{bottom:506.632000pt;}
.y4d{bottom:508.974667pt;}
.y70{bottom:516.576000pt;}
.ya8{bottom:520.916000pt;}
.y71{bottom:521.854667pt;}
.y8b{bottom:524.593333pt;}
.y1f{bottom:527.558667pt;}
.y34{bottom:535.862667pt;}
.y4c{bottom:538.204000pt;}
.ya7{bottom:551.474667pt;}
.y8{bottom:560.260000pt;}
.y33{bottom:565.092000pt;}
.y4b{bottom:567.434667pt;}
.y6f{bottom:569.814667pt;}
.y1e{bottom:571.402667pt;}
.y8a{bottom:577.832000pt;}
.ya6{bottom:580.705333pt;}
.y4a{bottom:596.664000pt;}
.y7{bottom:598.946667pt;}
.y1d{bottom:600.633333pt;}
.y32{bottom:601.620000pt;}
.ya5{bottom:609.934667pt;}
.y49{bottom:625.894667pt;}
.y1c{bottom:629.862667pt;}
.y6e{bottom:634.873333pt;}
.y6{bottom:637.633333pt;}
.ya4{bottom:640.493333pt;}
.y89{bottom:642.890667pt;}
.y31{bottom:646.010667pt;}
.y48{bottom:655.124000pt;}
.y1b{bottom:659.093333pt;}
.y30{bottom:664.076000pt;}
.y6d{bottom:664.102667pt;}
.ya3{bottom:669.722667pt;}
.y88{bottom:669.938667pt;}
.y87{bottom:672.120000pt;}
.y5{bottom:676.320000pt;}
.y47{bottom:684.354667pt;}
.y6c{bottom:691.152000pt;}
.y6b{bottom:693.333333pt;}
.ya2{bottom:700.281333pt;}
.y86{bottom:701.350667pt;}
.y1a{bottom:702.938667pt;}
.y2f{bottom:707.290667pt;}
.y46{bottom:713.584000pt;}
.y4{bottom:715.006667pt;}
.y6a{bottom:722.564000pt;}
.ya1{bottom:729.512000pt;}
.y85{bottom:730.580000pt;}
.y19{bottom:732.168000pt;}
.y45{bottom:742.814667pt;}
.y2e{bottom:746.482667pt;}
.y69{bottom:749.612000pt;}
.y68{bottom:751.793333pt;}
.ya0{bottom:758.741333pt;}
.y84{bottom:759.810667pt;}
.y18{bottom:761.398667pt;}
.y44{bottom:772.044000pt;}
.y3{bottom:775.512000pt;}
.y66{bottom:781.024000pt;}
.y2d{bottom:785.676000pt;}
.y67{bottom:786.301333pt;}
.y83{bottom:789.040000pt;}
.y9f{bottom:789.300000pt;}
.y43{bottom:801.274667pt;}
.y17{bottom:805.244000pt;}
.y65{bottom:810.253333pt;}
.y2c{bottom:814.905333pt;}
.y81{bottom:818.270667pt;}
.y9e{bottom:818.530667pt;}
.y82{bottom:823.549333pt;}
.y2{bottom:829.242667pt;}
.y42{bottom:830.504000pt;}
.y16{bottom:834.473333pt;}
.y2b{bottom:844.136000pt;}
.y9d{bottom:847.760000pt;}
.y64{bottom:854.098667pt;}
.y41{bottom:859.734667pt;}
.y15{bottom:863.704000pt;}
.y80{bottom:871.509333pt;}
.y9c{bottom:878.318667pt;}
.y1{bottom:882.974667pt;}
.y2a{bottom:883.328000pt;}
.y63{bottom:883.329333pt;}
.y40{bottom:888.964000pt;}
.y14{bottom:907.549333pt;}
.y29{bottom:912.558667pt;}
.y3f{bottom:918.194667pt;}
.y7f{bottom:936.568000pt;}
.y3e{bottom:954.721333pt;}
.y13{bottom:965.797333pt;}
.h2{height:21.583121pt;}
.h4{height:31.880400pt;}
.ha{height:40.727307pt;}
.h5{height:43.636400pt;}
.h8{height:47.820800pt;}
.h9{height:52.989733pt;}
.h7{height:52.995067pt;}
.h6{height:57.384800pt;}
.hb{height:61.720400pt;}
.hc{height:61.725733pt;}
.h3{height:67.615733pt;}
.h1{height:82.650000pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:87.400000pt;}
.xb{left:91.634667pt;}
.x2{left:95.868000pt;}
.x2b{left:111.684000pt;}
.x1{left:113.385333pt;}
.x6{left:124.740000pt;}
.xc{left:131.164000pt;}
.x8{left:134.446667pt;}
.x2c{left:135.520000pt;}
.x2d{left:146.257333pt;}
.xd{left:149.225333pt;}
.x3f{left:156.774667pt;}
.x3{left:158.841333pt;}
.xe{left:163.164000pt;}
.x10{left:169.022667pt;}
.x5{left:170.244000pt;}
.x34{left:174.364000pt;}
.xf{left:181.212000pt;}
.x7{left:187.832000pt;}
.x2e{left:192.953333pt;}
.x4{left:202.324000pt;}
.x2f{left:203.690667pt;}
.x18{left:216.996000pt;}
.x19{left:227.733333pt;}
.x30{left:249.985333pt;}
.x31{left:260.722667pt;}
.x1a{left:276.096000pt;}
.x1b{left:291.850667pt;}
.x35{left:298.942667pt;}
.x27{left:302.442667pt;}
.x36{left:314.698667pt;}
.x23{left:317.574667pt;}
.x13{left:320.154667pt;}
.x11{left:321.856000pt;}
.x28{left:325.806667pt;}
.x24{left:328.312000pt;}
.x29{left:332.116000pt;}
.x39{left:340.441333pt;}
.x9{left:355.453333pt;}
.x1c{left:375.806667pt;}
.x1d{left:388.429333pt;}
.x3a{left:404.597333pt;}
.x14{left:413.674667pt;}
.x3b{left:415.334667pt;}
.x15{left:419.985333pt;}
.xa{left:423.261333pt;}
.x1e{left:424.981333pt;}
.x25{left:438.497333pt;}
.x2a{left:449.784000pt;}
.x26{left:454.880000pt;}
.x3c{left:465.178667pt;}
.x1f{left:472.788000pt;}
.x3d{left:483.442667pt;}
.x20{left:488.544000pt;}
.x12{left:582.878667pt;}
.x21{left:608.061333pt;}
.x22{left:626.326667pt;}
.x16{left:654.081333pt;}
.x17{left:664.818667pt;}
.x32{left:713.598667pt;}
.x33{left:724.337333pt;}
.x37{left:732.800000pt;}
.x38{left:739.110667pt;}
}




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