
    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_3f69a410b30ea3068ec29309.woff')format("woff");}.ff1{font-family:ff1;line-height:1.334000;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_91dd773cf0490d19027f10ba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.097000;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_029359e7d23aba0563bd9aae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.308000;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_d19de9dcdb18a1d612837596.woff')format("woff");}.ff4{font-family:ff4;line-height:1.099000;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_6f8675fdf31c9916508744c6.woff')format("woff");}.ff5{font-family:ff5;line-height:1.094000;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_b6ef3693f2a4682b7775e78b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.086000;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_7590db8e181eb73a37578212.woff')format("woff");}.ff7{font-family:ff7;line-height:1.308000;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_21b143c2cf3f308fdeac1e8f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.099000;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_d7ac3416e7cba1bd1e13fc58.woff')format("woff");}.ff9{font-family:ff9;line-height:1.334000;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;}
.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);}
.v5{vertical-align:-21.000000px;}
.v4{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.500000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:21.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006000px;}
.ls8{letter-spacing:1.479000px;}
.lsb{letter-spacing:1.494000px;}
.lsc{letter-spacing:14.982000px;}
.lsd{letter-spacing:16.482000px;}
.ls9{letter-spacing:17.979000px;}
.lse{letter-spacing:19.479000px;}
.ls2{letter-spacing:19.512000px;}
.ls0{letter-spacing:22.506000px;}
.ls4{letter-spacing:26.994000px;}
.lsa{letter-spacing:28.494000px;}
.ls5{letter-spacing:29.988000px;}
.ls7{letter-spacing:36.000000px;}
.ls6{letter-spacing:976.506000px;}
.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;}
}
.ws5e{word-spacing:-19.551000px;}
.ws56{word-spacing:-18.702000px;}
.ws51{word-spacing:-18.348000px;}
.ws57{word-spacing:-18.030000px;}
.ws35{word-spacing:-17.922000px;}
.ws33{word-spacing:-17.796000px;}
.ws59{word-spacing:-17.658000px;}
.ws7c{word-spacing:-17.556000px;}
.ws34{word-spacing:-17.424000px;}
.ws73{word-spacing:-17.250000px;}
.ws71{word-spacing:-17.208000px;}
.ws5d{word-spacing:-17.160000px;}
.ws0{word-spacing:-17.094000px;}
.ws61{word-spacing:-16.974000px;}
.ws58{word-spacing:-16.908000px;}
.ws69{word-spacing:-16.740000px;}
.ws5b{word-spacing:-16.608000px;}
.ws41{word-spacing:-16.500000px;}
.ws5c{word-spacing:-16.338000px;}
.ws6a{word-spacing:-16.170000px;}
.ws9e{word-spacing:-16.128000px;}
.ws3d{word-spacing:-15.906000px;}
.ws9d{word-spacing:-15.750000px;}
.ws5a{word-spacing:-15.744000px;}
.ws55{word-spacing:-15.468000px;}
.ws9c{word-spacing:-15.378000px;}
.ws6b{word-spacing:-15.294000px;}
.ws6c{word-spacing:-15.168000px;}
.ws4c{word-spacing:-14.880000px;}
.ws9f{word-spacing:-14.256000px;}
.ws8f{word-spacing:-10.290000px;}
.ws44{word-spacing:-8.790000px;}
.ws29{word-spacing:-8.547000px;}
.ws70{word-spacing:-8.454000px;}
.ws4a{word-spacing:-7.440000px;}
.ws8e{word-spacing:-7.290000px;}
.ws91{word-spacing:-4.794000px;}
.ws84{word-spacing:-3.540000px;}
.ws92{word-spacing:-3.390000px;}
.ws82{word-spacing:-3.240000px;}
.ws8c{word-spacing:-3.168000px;}
.ws93{word-spacing:-3.042000px;}
.ws80{word-spacing:-2.790000px;}
.ws7f{word-spacing:-2.628000px;}
.ws7b{word-spacing:-2.418000px;}
.ws90{word-spacing:-2.292000px;}
.ws7d{word-spacing:-2.190000px;}
.ws89{word-spacing:-2.148000px;}
.ws77{word-spacing:-2.040000px;}
.ws83{word-spacing:-1.956000px;}
.ws8b{word-spacing:-1.668000px;}
.ws81{word-spacing:-1.626000px;}
.ws87{word-spacing:-1.440000px;}
.ws8a{word-spacing:-1.290000px;}
.ws85{word-spacing:-1.128000px;}
.ws75{word-spacing:-1.080000px;}
.ws8d{word-spacing:-0.990000px;}
.ws88{word-spacing:-0.960000px;}
.ws42{word-spacing:-0.918000px;}
.ws79{word-spacing:-0.864000px;}
.ws78{word-spacing:-0.840000px;}
.ws3a{word-spacing:-0.792000px;}
.ws86{word-spacing:-0.690000px;}
.ws74{word-spacing:-0.612000px;}
.ws4{word-spacing:0.000000px;}
.ws10{word-spacing:0.024000px;}
.ws6f{word-spacing:0.312000px;}
.ws39{word-spacing:0.618000px;}
.ws3c{word-spacing:0.660000px;}
.ws32{word-spacing:0.708000px;}
.ws31{word-spacing:0.756000px;}
.ws17{word-spacing:0.768000px;}
.ws3e{word-spacing:0.810000px;}
.ws47{word-spacing:0.834000px;}
.ws1f{word-spacing:0.876000px;}
.ws13{word-spacing:0.888000px;}
.ws4d{word-spacing:0.924000px;}
.ws21{word-spacing:0.960000px;}
.wse{word-spacing:0.972000px;}
.ws3{word-spacing:0.978000px;}
.ws67{word-spacing:1.014000px;}
.ws23{word-spacing:1.026000px;}
.ws18{word-spacing:1.044000px;}
.ws28{word-spacing:1.068000px;}
.ws45{word-spacing:1.086000px;}
.ws15{word-spacing:1.110000px;}
.ws63{word-spacing:1.134000px;}
.ws1e{word-spacing:1.146000px;}
.ws2a{word-spacing:1.164000px;}
.ws1d{word-spacing:1.206000px;}
.ws54{word-spacing:1.236000px;}
.ws43{word-spacing:1.248000px;}
.ws1c{word-spacing:1.260000px;}
.ws27{word-spacing:1.278000px;}
.ws25{word-spacing:1.302000px;}
.ws26{word-spacing:1.332000px;}
.ws66{word-spacing:1.362000px;}
.ws16{word-spacing:1.374000px;}
.ws64{word-spacing:1.404000px;}
.ws22{word-spacing:1.410000px;}
.ws1a{word-spacing:1.434000px;}
.ws2d{word-spacing:1.458000px;}
.ws3b{word-spacing:1.476000px;}
.ws4b{word-spacing:1.488000px;}
.ws14{word-spacing:1.494000px;}
.ws68{word-spacing:1.500000px;}
.ws9{word-spacing:1.506000px;}
.ws1b{word-spacing:1.518000px;}
.ws40{word-spacing:1.524000px;}
.ws72{word-spacing:1.530000px;}
.ws46{word-spacing:1.536000px;}
.ws24{word-spacing:1.542000px;}
.ws19{word-spacing:1.560000px;}
.wsc{word-spacing:1.572000px;}
.ws2e{word-spacing:1.584000px;}
.ws12{word-spacing:1.590000px;}
.ws65{word-spacing:1.644000px;}
.wsb{word-spacing:1.650000px;}
.wsa{word-spacing:1.662000px;}
.ws7{word-spacing:1.668000px;}
.ws6{word-spacing:1.674000px;}
.ws52{word-spacing:1.686000px;}
.ws4f{word-spacing:1.704000px;}
.ws5{word-spacing:1.710000px;}
.ws49{word-spacing:1.740000px;}
.ws6d{word-spacing:1.764000px;}
.ws4e{word-spacing:1.788000px;}
.ws53{word-spacing:1.836000px;}
.ws50{word-spacing:1.860000px;}
.ws76{word-spacing:1.872000px;}
.ws8{word-spacing:1.878000px;}
.ws6e{word-spacing:1.896000px;}
.wsd{word-spacing:1.920000px;}
.ws36{word-spacing:1.956000px;}
.ws7a{word-spacing:2.082000px;}
.ws38{word-spacing:2.166000px;}
.ws5f{word-spacing:2.208000px;}
.ws60{word-spacing:2.238000px;}
.wsf{word-spacing:2.376000px;}
.ws62{word-spacing:2.388000px;}
.ws48{word-spacing:2.406000px;}
.ws2b{word-spacing:3.024000px;}
.ws30{word-spacing:3.030000px;}
.ws2c{word-spacing:3.036000px;}
.ws1{word-spacing:8.424000px;}
.ws2f{word-spacing:9.417000px;}
.ws7e{word-spacing:10.917000px;}
.ws2{word-spacing:11.466000px;}
.ws3f{word-spacing:12.348000px;}
.ws37{word-spacing:14.880000px;}
.ws20{word-spacing:17.286000px;}
.ws11{word-spacing:23.460000px;}
.ws99{word-spacing:186.960000px;}
.ws98{word-spacing:242.454000px;}
.ws9a{word-spacing:264.942000px;}
.ws97{word-spacing:303.960000px;}
.ws96{word-spacing:318.930000px;}
.ws94{word-spacing:321.930000px;}
.ws9b{word-spacing:345.900000px;}
.ws95{word-spacing:368.412000px;}
._27{margin-left:-36.006000px;}
._13{margin-left:-30.198000px;}
._26{margin-left:-29.142000px;}
._4{margin-left:-22.506000px;}
._30{margin-left:-20.400000px;}
._31{margin-left:-18.636000px;}
._2d{margin-left:-17.382000px;}
._2f{margin-left:-15.882000px;}
._2e{margin-left:-14.502000px;}
._1e{margin-left:-13.470000px;}
._2c{margin-left:-12.174000px;}
._1f{margin-left:-11.088000px;}
._19{margin-left:-10.068000px;}
._16{margin-left:-8.952000px;}
._14{margin-left:-7.494000px;}
._1b{margin-left:-5.586000px;}
._15{margin-left:-4.434000px;}
._0{margin-left:-3.036000px;}
._1{margin-left:-1.518000px;}
._2{width:1.518000px;}
._3{width:2.970000px;}
._21{width:4.260000px;}
._17{width:5.970000px;}
._28{width:7.464000px;}
._9{width:18.240000px;}
._5{width:19.998000px;}
._11{width:21.018000px;}
._25{width:22.644000px;}
._12{width:23.892000px;}
._10{width:24.918000px;}
._23{width:26.178000px;}
._b{width:27.258000px;}
._8{width:28.734000px;}
._18{width:29.802000px;}
._a{width:30.882000px;}
._c{width:32.928000px;}
._7{width:34.092000px;}
._e{width:35.340000px;}
._6{width:36.456000px;}
._d{width:38.052000px;}
._4f{width:238.728000px;}
._42{width:264.018000px;}
._37{width:273.042000px;}
._36{width:274.530000px;}
._4b{width:283.674000px;}
._4e{width:289.722000px;}
._47{width:291.228000px;}
._43{width:295.728000px;}
._35{width:312.012000px;}
._32{width:316.524000px;}
._50{width:318.030000px;}
._3f{width:321.024000px;}
._49{width:327.162000px;}
._3d{width:328.530000px;}
._3b{width:333.006000px;}
._39{width:336.024000px;}
._3a{width:337.722000px;}
._3e{width:345.204000px;}
._40{width:352.512000px;}
._4a{width:353.610000px;}
._3c{width:357.012000px;}
._4d{width:358.734000px;}
._41{width:361.512000px;}
._46{width:363.042000px;}
._45{width:366.036000px;}
._48{width:369.012000px;}
._38{width:370.506000px;}
._44{width:376.698000px;}
._33{width:381.024000px;}
._4c{width:391.512000px;}
._34{width:394.728000px;}
._2b{width:907.452000px;}
._20{width:908.946000px;}
._2a{width:910.818000px;}
._22{width:916.518000px;}
._1d{width:918.018000px;}
._29{width:943.326000px;}
._24{width:944.946000px;}
._1c{width:946.410000px;}
._1a{width:993.378000px;}
._f{width:995.322000px;}
.fc2{color:rgb(45,66,155);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(71,110,19);}
.fs6{font-size:24.000000px;}
.fs5{font-size:33.000000px;}
.fs2{font-size:36.000000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs0{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y17{bottom:61.875000px;}
.y44{bottom:112.875000px;}
.y16{bottom:114.375000px;}
.y15{bottom:133.125000px;}
.y43{bottom:134.625000px;}
.y14{bottom:151.875000px;}
.y42{bottom:156.375000px;}
.ya2{bottom:170.625000px;}
.y41{bottom:178.125000px;}
.ya1{bottom:189.375000px;}
.y39{bottom:199.875000px;}
.ya0{bottom:208.125000px;}
.y38{bottom:221.625000px;}
.y9f{bottom:226.875000px;}
.y37{bottom:243.375000px;}
.y36{bottom:265.125000px;}
.y35{bottom:286.875000px;}
.y34{bottom:308.625000px;}
.y9e{bottom:310.125000px;}
.y9d{bottom:328.875000px;}
.y33{bottom:330.375000px;}
.y9c{bottom:347.625000px;}
.y32{bottom:352.125000px;}
.y9b{bottom:366.375000px;}
.y31{bottom:373.875000px;}
.y13{bottom:382.125000px;}
.y9a{bottom:385.125000px;}
.y30{bottom:395.625000px;}
.y99{bottom:403.875000px;}
.y7c{bottom:407.625000px;}
.y12{bottom:417.375000px;}
.y98{bottom:422.625000px;}
.y2f{bottom:439.125000px;}
.y97{bottom:441.375000px;}
.y11{bottom:452.625000px;}
.y78{bottom:453.375000px;}
.y96{bottom:460.125000px;}
.y2e{bottom:460.875000px;}
.y77{bottom:468.375000px;}
.y95{bottom:478.875000px;}
.y2d{bottom:482.625000px;}
.y76{bottom:483.375000px;}
.y10{bottom:487.875000px;}
.y94{bottom:497.625000px;}
.y75{bottom:498.375000px;}
.y2c{bottom:504.375000px;}
.y74{bottom:513.375000px;}
.y93{bottom:516.375000px;}
.yf{bottom:523.125000px;}
.y2b{bottom:526.125000px;}
.y73{bottom:528.375000px;}
.y92{bottom:535.125000px;}
.y72{bottom:543.375000px;}
.y2a{bottom:547.875000px;}
.y91{bottom:553.875000px;}
.ye{bottom:558.375000px;}
.y40{bottom:569.625000px;}
.y90{bottom:572.625000px;}
.y29{bottom:581.625000px;}
.y3f{bottom:591.375000px;}
.yd{bottom:593.625000px;}
.y3e{bottom:613.125000px;}
.y7b{bottom:623.625000px;}
.yc{bottom:628.875000px;}
.y28{bottom:634.875000px;}
.y8f{bottom:651.375000px;}
.y27{bottom:656.625000px;}
.yb{bottom:664.125000px;}
.y4b{bottom:668.625000px;}
.y8e{bottom:670.125000px;}
.y26{bottom:678.375000px;}
.y8d{bottom:688.875000px;}
.y66{bottom:698.625000px;}
.ya{bottom:699.375000px;}
.y25{bottom:700.125000px;}
.y8c{bottom:707.625000px;}
.y65{bottom:713.625000px;}
.y24{bottom:721.875000px;}
.y8b{bottom:726.375000px;}
.y64{bottom:728.625000px;}
.y9{bottom:734.625000px;}
.y23{bottom:743.625000px;}
.y8a{bottom:745.125000px;}
.y63{bottom:758.625000px;}
.y89{bottom:763.875000px;}
.y22{bottom:765.375000px;}
.y8{bottom:769.875000px;}
.y62{bottom:773.625000px;}
.y88{bottom:782.625000px;}
.y21{bottom:787.125000px;}
.y61{bottom:788.625000px;}
.y3d{bottom:799.125000px;}
.y87{bottom:801.375000px;}
.y60{bottom:803.625000px;}
.y7{bottom:805.125000px;}
.y20{bottom:808.875000px;}
.y5f{bottom:818.625000px;}
.y86{bottom:820.125000px;}
.y47{bottom:820.875000px;}
.y1f{bottom:830.625000px;}
.y5e{bottom:833.625000px;}
.y85{bottom:838.875000px;}
.y6{bottom:840.375000px;}
.y49{bottom:842.625000px;}
.y5d{bottom:848.625000px;}
.y1e{bottom:852.375000px;}
.y84{bottom:857.625000px;}
.y5c{bottom:863.625000px;}
.y1d{bottom:874.125000px;}
.y5{bottom:875.625000px;}
.y83{bottom:876.375000px;}
.y5b{bottom:878.625000px;}
.y71{bottom:880.875000px;}
.y5a{bottom:893.625000px;}
.y82{bottom:895.125000px;}
.y1c{bottom:895.875000px;}
.y46{bottom:907.875000px;}
.y59{bottom:908.625000px;}
.y4{bottom:910.875000px;}
.y81{bottom:913.875000px;}
.y1b{bottom:917.625000px;}
.y58{bottom:923.625000px;}
.y70{bottom:925.875000px;}
.y48{bottom:929.625000px;}
.y80{bottom:932.625000px;}
.y57{bottom:938.625000px;}
.y1a{bottom:939.375000px;}
.y6f{bottom:940.875000px;}
.y3{bottom:946.125000px;}
.y56{bottom:953.625000px;}
.y6e{bottom:955.875000px;}
.y7f{bottom:960.375000px;}
.y19{bottom:961.125000px;}
.y55{bottom:968.625000px;}
.y6d{bottom:970.875000px;}
.y4e{bottom:973.875000px;}
.y7e{bottom:979.125000px;}
.y2{bottom:981.375000px;}
.y18{bottom:982.875000px;}
.y54{bottom:983.625000px;}
.y6c{bottom:985.875000px;}
.y4a{bottom:994.875000px;}
.y4d{bottom:995.625000px;}
.y7d{bottom:997.875000px;}
.y53{bottom:998.625000px;}
.y6b{bottom:1000.875000px;}
.y3c{bottom:1004.625000px;}
.y52{bottom:1013.625000px;}
.y6a{bottom:1015.875000px;}
.y4c{bottom:1017.375000px;}
.y3b{bottom:1026.375000px;}
.y51{bottom:1028.625000px;}
.y7a{bottom:1030.500000px;}
.y69{bottom:1030.875000px;}
.y50{bottom:1043.625000px;}
.y68{bottom:1045.875000px;}
.y1{bottom:1048.125000px;}
.y79{bottom:1054.500000px;}
.y4f{bottom:1058.625000px;}
.y67{bottom:1060.875000px;}
.y45{bottom:1117.125000px;}
.y3a{bottom:1118.625000px;}
.h8{height:38.520000px;}
.h5{height:45.468000px;}
.ha{height:45.576000px;}
.h6{height:48.288000px;}
.h4{height:55.572000px;}
.h9{height:55.704000px;}
.h7{height:60.990000px;}
.h3{height:70.620000px;}
.h2{height:1188.000000px;}
.h0{height:1190.999268px;}
.h1{height:1191.000000px;}
.w2{width:918.000000px;}
.w1{width:924.000000px;}
.w0{width:924.000183px;}
.x0{left:0.000000px;}
.x8{left:63.621000px;}
.xd{left:72.528000px;}
.x10{left:107.337000px;}
.x1{left:108.562500px;}
.x1e{left:122.155500px;}
.x5{left:135.382500px;}
.x2{left:139.884000px;}
.x6{left:153.351000px;}
.x1a{left:157.659000px;}
.x3{left:162.705000px;}
.x18{left:172.434000px;}
.x4{left:209.176500px;}
.x20{left:234.679500px;}
.x1b{left:289.054500px;}
.x19{left:302.361000px;}
.x9{left:306.591000px;}
.x12{left:318.343500px;}
.x1f{left:320.056500px;}
.xa{left:333.535500px;}
.xb{left:337.881000px;}
.x1c{left:346.422000px;}
.xc{left:351.172500px;}
.x22{left:359.131500px;}
.x15{left:379.150500px;}
.x11{left:380.370000px;}
.x16{left:390.087000px;}
.x17{left:396.658500px;}
.x14{left:402.108000px;}
.x7{left:404.041500px;}
.xf{left:427.971000px;}
.x21{left:432.484500px;}
.x1d{left:462.802500px;}
.xe{left:481.995000px;}
.x13{left:648.690000px;}
@media print{
.v5{vertical-align:-18.666667pt;}
.v4{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.333333pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.666667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005333pt;}
.ls8{letter-spacing:1.314667pt;}
.lsb{letter-spacing:1.328000pt;}
.lsc{letter-spacing:13.317333pt;}
.lsd{letter-spacing:14.650667pt;}
.ls9{letter-spacing:15.981333pt;}
.lse{letter-spacing:17.314667pt;}
.ls2{letter-spacing:17.344000pt;}
.ls0{letter-spacing:20.005333pt;}
.ls4{letter-spacing:23.994667pt;}
.lsa{letter-spacing:25.328000pt;}
.ls5{letter-spacing:26.656000pt;}
.ls7{letter-spacing:32.000000pt;}
.ls6{letter-spacing:868.005333pt;}
.ws5e{word-spacing:-17.378667pt;}
.ws56{word-spacing:-16.624000pt;}
.ws51{word-spacing:-16.309333pt;}
.ws57{word-spacing:-16.026667pt;}
.ws35{word-spacing:-15.930667pt;}
.ws33{word-spacing:-15.818667pt;}
.ws59{word-spacing:-15.696000pt;}
.ws7c{word-spacing:-15.605333pt;}
.ws34{word-spacing:-15.488000pt;}
.ws73{word-spacing:-15.333333pt;}
.ws71{word-spacing:-15.296000pt;}
.ws5d{word-spacing:-15.253333pt;}
.ws0{word-spacing:-15.194667pt;}
.ws61{word-spacing:-15.088000pt;}
.ws58{word-spacing:-15.029333pt;}
.ws69{word-spacing:-14.880000pt;}
.ws5b{word-spacing:-14.762667pt;}
.ws41{word-spacing:-14.666667pt;}
.ws5c{word-spacing:-14.522667pt;}
.ws6a{word-spacing:-14.373333pt;}
.ws9e{word-spacing:-14.336000pt;}
.ws3d{word-spacing:-14.138667pt;}
.ws9d{word-spacing:-14.000000pt;}
.ws5a{word-spacing:-13.994667pt;}
.ws55{word-spacing:-13.749333pt;}
.ws9c{word-spacing:-13.669333pt;}
.ws6b{word-spacing:-13.594667pt;}
.ws6c{word-spacing:-13.482667pt;}
.ws4c{word-spacing:-13.226667pt;}
.ws9f{word-spacing:-12.672000pt;}
.ws8f{word-spacing:-9.146667pt;}
.ws44{word-spacing:-7.813333pt;}
.ws29{word-spacing:-7.597333pt;}
.ws70{word-spacing:-7.514667pt;}
.ws4a{word-spacing:-6.613333pt;}
.ws8e{word-spacing:-6.480000pt;}
.ws91{word-spacing:-4.261333pt;}
.ws84{word-spacing:-3.146667pt;}
.ws92{word-spacing:-3.013333pt;}
.ws82{word-spacing:-2.880000pt;}
.ws8c{word-spacing:-2.816000pt;}
.ws93{word-spacing:-2.704000pt;}
.ws80{word-spacing:-2.480000pt;}
.ws7f{word-spacing:-2.336000pt;}
.ws7b{word-spacing:-2.149333pt;}
.ws90{word-spacing:-2.037333pt;}
.ws7d{word-spacing:-1.946667pt;}
.ws89{word-spacing:-1.909333pt;}
.ws77{word-spacing:-1.813333pt;}
.ws83{word-spacing:-1.738667pt;}
.ws8b{word-spacing:-1.482667pt;}
.ws81{word-spacing:-1.445333pt;}
.ws87{word-spacing:-1.280000pt;}
.ws8a{word-spacing:-1.146667pt;}
.ws85{word-spacing:-1.002667pt;}
.ws75{word-spacing:-0.960000pt;}
.ws8d{word-spacing:-0.880000pt;}
.ws88{word-spacing:-0.853333pt;}
.ws42{word-spacing:-0.816000pt;}
.ws79{word-spacing:-0.768000pt;}
.ws78{word-spacing:-0.746667pt;}
.ws3a{word-spacing:-0.704000pt;}
.ws86{word-spacing:-0.613333pt;}
.ws74{word-spacing:-0.544000pt;}
.ws4{word-spacing:0.000000pt;}
.ws10{word-spacing:0.021333pt;}
.ws6f{word-spacing:0.277333pt;}
.ws39{word-spacing:0.549333pt;}
.ws3c{word-spacing:0.586667pt;}
.ws32{word-spacing:0.629333pt;}
.ws31{word-spacing:0.672000pt;}
.ws17{word-spacing:0.682667pt;}
.ws3e{word-spacing:0.720000pt;}
.ws47{word-spacing:0.741333pt;}
.ws1f{word-spacing:0.778667pt;}
.ws13{word-spacing:0.789333pt;}
.ws4d{word-spacing:0.821333pt;}
.ws21{word-spacing:0.853333pt;}
.wse{word-spacing:0.864000pt;}
.ws3{word-spacing:0.869333pt;}
.ws67{word-spacing:0.901333pt;}
.ws23{word-spacing:0.912000pt;}
.ws18{word-spacing:0.928000pt;}
.ws28{word-spacing:0.949333pt;}
.ws45{word-spacing:0.965333pt;}
.ws15{word-spacing:0.986667pt;}
.ws63{word-spacing:1.008000pt;}
.ws1e{word-spacing:1.018667pt;}
.ws2a{word-spacing:1.034667pt;}
.ws1d{word-spacing:1.072000pt;}
.ws54{word-spacing:1.098667pt;}
.ws43{word-spacing:1.109333pt;}
.ws1c{word-spacing:1.120000pt;}
.ws27{word-spacing:1.136000pt;}
.ws25{word-spacing:1.157333pt;}
.ws26{word-spacing:1.184000pt;}
.ws66{word-spacing:1.210667pt;}
.ws16{word-spacing:1.221333pt;}
.ws64{word-spacing:1.248000pt;}
.ws22{word-spacing:1.253333pt;}
.ws1a{word-spacing:1.274667pt;}
.ws2d{word-spacing:1.296000pt;}
.ws3b{word-spacing:1.312000pt;}
.ws4b{word-spacing:1.322667pt;}
.ws14{word-spacing:1.328000pt;}
.ws68{word-spacing:1.333333pt;}
.ws9{word-spacing:1.338667pt;}
.ws1b{word-spacing:1.349333pt;}
.ws40{word-spacing:1.354667pt;}
.ws72{word-spacing:1.360000pt;}
.ws46{word-spacing:1.365333pt;}
.ws24{word-spacing:1.370667pt;}
.ws19{word-spacing:1.386667pt;}
.wsc{word-spacing:1.397333pt;}
.ws2e{word-spacing:1.408000pt;}
.ws12{word-spacing:1.413333pt;}
.ws65{word-spacing:1.461333pt;}
.wsb{word-spacing:1.466667pt;}
.wsa{word-spacing:1.477333pt;}
.ws7{word-spacing:1.482667pt;}
.ws6{word-spacing:1.488000pt;}
.ws52{word-spacing:1.498667pt;}
.ws4f{word-spacing:1.514667pt;}
.ws5{word-spacing:1.520000pt;}
.ws49{word-spacing:1.546667pt;}
.ws6d{word-spacing:1.568000pt;}
.ws4e{word-spacing:1.589333pt;}
.ws53{word-spacing:1.632000pt;}
.ws50{word-spacing:1.653333pt;}
.ws76{word-spacing:1.664000pt;}
.ws8{word-spacing:1.669333pt;}
.ws6e{word-spacing:1.685333pt;}
.wsd{word-spacing:1.706667pt;}
.ws36{word-spacing:1.738667pt;}
.ws7a{word-spacing:1.850667pt;}
.ws38{word-spacing:1.925333pt;}
.ws5f{word-spacing:1.962667pt;}
.ws60{word-spacing:1.989333pt;}
.wsf{word-spacing:2.112000pt;}
.ws62{word-spacing:2.122667pt;}
.ws48{word-spacing:2.138667pt;}
.ws2b{word-spacing:2.688000pt;}
.ws30{word-spacing:2.693333pt;}
.ws2c{word-spacing:2.698667pt;}
.ws1{word-spacing:7.488000pt;}
.ws2f{word-spacing:8.370667pt;}
.ws7e{word-spacing:9.704000pt;}
.ws2{word-spacing:10.192000pt;}
.ws3f{word-spacing:10.976000pt;}
.ws37{word-spacing:13.226667pt;}
.ws20{word-spacing:15.365333pt;}
.ws11{word-spacing:20.853333pt;}
.ws99{word-spacing:166.186667pt;}
.ws98{word-spacing:215.514667pt;}
.ws9a{word-spacing:235.504000pt;}
.ws97{word-spacing:270.186667pt;}
.ws96{word-spacing:283.493333pt;}
.ws94{word-spacing:286.160000pt;}
.ws9b{word-spacing:307.466667pt;}
.ws95{word-spacing:327.477333pt;}
._27{margin-left:-32.005333pt;}
._13{margin-left:-26.842667pt;}
._26{margin-left:-25.904000pt;}
._4{margin-left:-20.005333pt;}
._30{margin-left:-18.133333pt;}
._31{margin-left:-16.565333pt;}
._2d{margin-left:-15.450667pt;}
._2f{margin-left:-14.117333pt;}
._2e{margin-left:-12.890667pt;}
._1e{margin-left:-11.973333pt;}
._2c{margin-left:-10.821333pt;}
._1f{margin-left:-9.856000pt;}
._19{margin-left:-8.949333pt;}
._16{margin-left:-7.957333pt;}
._14{margin-left:-6.661333pt;}
._1b{margin-left:-4.965333pt;}
._15{margin-left:-3.941333pt;}
._0{margin-left:-2.698667pt;}
._1{margin-left:-1.349333pt;}
._2{width:1.349333pt;}
._3{width:2.640000pt;}
._21{width:3.786667pt;}
._17{width:5.306667pt;}
._28{width:6.634667pt;}
._9{width:16.213333pt;}
._5{width:17.776000pt;}
._11{width:18.682667pt;}
._25{width:20.128000pt;}
._12{width:21.237333pt;}
._10{width:22.149333pt;}
._23{width:23.269333pt;}
._b{width:24.229333pt;}
._8{width:25.541333pt;}
._18{width:26.490667pt;}
._a{width:27.450667pt;}
._c{width:29.269333pt;}
._7{width:30.304000pt;}
._e{width:31.413333pt;}
._6{width:32.405333pt;}
._d{width:33.824000pt;}
._4f{width:212.202667pt;}
._42{width:234.682667pt;}
._37{width:242.704000pt;}
._36{width:244.026667pt;}
._4b{width:252.154667pt;}
._4e{width:257.530667pt;}
._47{width:258.869333pt;}
._43{width:262.869333pt;}
._35{width:277.344000pt;}
._32{width:281.354667pt;}
._50{width:282.693333pt;}
._3f{width:285.354667pt;}
._49{width:290.810667pt;}
._3d{width:292.026667pt;}
._3b{width:296.005333pt;}
._39{width:298.688000pt;}
._3a{width:300.197333pt;}
._3e{width:306.848000pt;}
._40{width:313.344000pt;}
._4a{width:314.320000pt;}
._3c{width:317.344000pt;}
._4d{width:318.874667pt;}
._41{width:321.344000pt;}
._46{width:322.704000pt;}
._45{width:325.365333pt;}
._48{width:328.010667pt;}
._38{width:329.338667pt;}
._44{width:334.842667pt;}
._33{width:338.688000pt;}
._4c{width:348.010667pt;}
._34{width:350.869333pt;}
._2b{width:806.624000pt;}
._20{width:807.952000pt;}
._2a{width:809.616000pt;}
._22{width:814.682667pt;}
._1d{width:816.016000pt;}
._29{width:838.512000pt;}
._24{width:839.952000pt;}
._1c{width:841.253333pt;}
._1a{width:883.002667pt;}
._f{width:884.730667pt;}
.fs6{font-size:21.333333pt;}
.fs5{font-size:29.333333pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs0{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y17{bottom:55.000000pt;}
.y44{bottom:100.333333pt;}
.y16{bottom:101.666667pt;}
.y15{bottom:118.333333pt;}
.y43{bottom:119.666667pt;}
.y14{bottom:135.000000pt;}
.y42{bottom:139.000000pt;}
.ya2{bottom:151.666667pt;}
.y41{bottom:158.333333pt;}
.ya1{bottom:168.333333pt;}
.y39{bottom:177.666667pt;}
.ya0{bottom:185.000000pt;}
.y38{bottom:197.000000pt;}
.y9f{bottom:201.666667pt;}
.y37{bottom:216.333333pt;}
.y36{bottom:235.666667pt;}
.y35{bottom:255.000000pt;}
.y34{bottom:274.333333pt;}
.y9e{bottom:275.666667pt;}
.y9d{bottom:292.333333pt;}
.y33{bottom:293.666667pt;}
.y9c{bottom:309.000000pt;}
.y32{bottom:313.000000pt;}
.y9b{bottom:325.666667pt;}
.y31{bottom:332.333333pt;}
.y13{bottom:339.666667pt;}
.y9a{bottom:342.333333pt;}
.y30{bottom:351.666667pt;}
.y99{bottom:359.000000pt;}
.y7c{bottom:362.333333pt;}
.y12{bottom:371.000000pt;}
.y98{bottom:375.666667pt;}
.y2f{bottom:390.333333pt;}
.y97{bottom:392.333333pt;}
.y11{bottom:402.333333pt;}
.y78{bottom:403.000000pt;}
.y96{bottom:409.000000pt;}
.y2e{bottom:409.666667pt;}
.y77{bottom:416.333333pt;}
.y95{bottom:425.666667pt;}
.y2d{bottom:429.000000pt;}
.y76{bottom:429.666667pt;}
.y10{bottom:433.666667pt;}
.y94{bottom:442.333333pt;}
.y75{bottom:443.000000pt;}
.y2c{bottom:448.333333pt;}
.y74{bottom:456.333333pt;}
.y93{bottom:459.000000pt;}
.yf{bottom:465.000000pt;}
.y2b{bottom:467.666667pt;}
.y73{bottom:469.666667pt;}
.y92{bottom:475.666667pt;}
.y72{bottom:483.000000pt;}
.y2a{bottom:487.000000pt;}
.y91{bottom:492.333333pt;}
.ye{bottom:496.333333pt;}
.y40{bottom:506.333333pt;}
.y90{bottom:509.000000pt;}
.y29{bottom:517.000000pt;}
.y3f{bottom:525.666667pt;}
.yd{bottom:527.666667pt;}
.y3e{bottom:545.000000pt;}
.y7b{bottom:554.333333pt;}
.yc{bottom:559.000000pt;}
.y28{bottom:564.333333pt;}
.y8f{bottom:579.000000pt;}
.y27{bottom:583.666667pt;}
.yb{bottom:590.333333pt;}
.y4b{bottom:594.333333pt;}
.y8e{bottom:595.666667pt;}
.y26{bottom:603.000000pt;}
.y8d{bottom:612.333333pt;}
.y66{bottom:621.000000pt;}
.ya{bottom:621.666667pt;}
.y25{bottom:622.333333pt;}
.y8c{bottom:629.000000pt;}
.y65{bottom:634.333333pt;}
.y24{bottom:641.666667pt;}
.y8b{bottom:645.666667pt;}
.y64{bottom:647.666667pt;}
.y9{bottom:653.000000pt;}
.y23{bottom:661.000000pt;}
.y8a{bottom:662.333333pt;}
.y63{bottom:674.333333pt;}
.y89{bottom:679.000000pt;}
.y22{bottom:680.333333pt;}
.y8{bottom:684.333333pt;}
.y62{bottom:687.666667pt;}
.y88{bottom:695.666667pt;}
.y21{bottom:699.666667pt;}
.y61{bottom:701.000000pt;}
.y3d{bottom:710.333333pt;}
.y87{bottom:712.333333pt;}
.y60{bottom:714.333333pt;}
.y7{bottom:715.666667pt;}
.y20{bottom:719.000000pt;}
.y5f{bottom:727.666667pt;}
.y86{bottom:729.000000pt;}
.y47{bottom:729.666667pt;}
.y1f{bottom:738.333333pt;}
.y5e{bottom:741.000000pt;}
.y85{bottom:745.666667pt;}
.y6{bottom:747.000000pt;}
.y49{bottom:749.000000pt;}
.y5d{bottom:754.333333pt;}
.y1e{bottom:757.666667pt;}
.y84{bottom:762.333333pt;}
.y5c{bottom:767.666667pt;}
.y1d{bottom:777.000000pt;}
.y5{bottom:778.333333pt;}
.y83{bottom:779.000000pt;}
.y5b{bottom:781.000000pt;}
.y71{bottom:783.000000pt;}
.y5a{bottom:794.333333pt;}
.y82{bottom:795.666667pt;}
.y1c{bottom:796.333333pt;}
.y46{bottom:807.000000pt;}
.y59{bottom:807.666667pt;}
.y4{bottom:809.666667pt;}
.y81{bottom:812.333333pt;}
.y1b{bottom:815.666667pt;}
.y58{bottom:821.000000pt;}
.y70{bottom:823.000000pt;}
.y48{bottom:826.333333pt;}
.y80{bottom:829.000000pt;}
.y57{bottom:834.333333pt;}
.y1a{bottom:835.000000pt;}
.y6f{bottom:836.333333pt;}
.y3{bottom:841.000000pt;}
.y56{bottom:847.666667pt;}
.y6e{bottom:849.666667pt;}
.y7f{bottom:853.666667pt;}
.y19{bottom:854.333333pt;}
.y55{bottom:861.000000pt;}
.y6d{bottom:863.000000pt;}
.y4e{bottom:865.666667pt;}
.y7e{bottom:870.333333pt;}
.y2{bottom:872.333333pt;}
.y18{bottom:873.666667pt;}
.y54{bottom:874.333333pt;}
.y6c{bottom:876.333333pt;}
.y4a{bottom:884.333333pt;}
.y4d{bottom:885.000000pt;}
.y7d{bottom:887.000000pt;}
.y53{bottom:887.666667pt;}
.y6b{bottom:889.666667pt;}
.y3c{bottom:893.000000pt;}
.y52{bottom:901.000000pt;}
.y6a{bottom:903.000000pt;}
.y4c{bottom:904.333333pt;}
.y3b{bottom:912.333333pt;}
.y51{bottom:914.333333pt;}
.y7a{bottom:916.000000pt;}
.y69{bottom:916.333333pt;}
.y50{bottom:927.666667pt;}
.y68{bottom:929.666667pt;}
.y1{bottom:931.666667pt;}
.y79{bottom:937.333333pt;}
.y4f{bottom:941.000000pt;}
.y67{bottom:943.000000pt;}
.y45{bottom:993.000000pt;}
.y3a{bottom:994.333333pt;}
.h8{height:34.240000pt;}
.h5{height:40.416000pt;}
.ha{height:40.512000pt;}
.h6{height:42.922667pt;}
.h4{height:49.397333pt;}
.h9{height:49.514667pt;}
.h7{height:54.213333pt;}
.h3{height:62.773333pt;}
.h2{height:1056.000000pt;}
.h0{height:1058.666016pt;}
.h1{height:1058.666667pt;}
.w2{width:816.000000pt;}
.w1{width:821.333333pt;}
.w0{width:821.333496pt;}
.x0{left:0.000000pt;}
.x8{left:56.552000pt;}
.xd{left:64.469333pt;}
.x10{left:95.410667pt;}
.x1{left:96.500000pt;}
.x1e{left:108.582667pt;}
.x5{left:120.340000pt;}
.x2{left:124.341333pt;}
.x6{left:136.312000pt;}
.x1a{left:140.141333pt;}
.x3{left:144.626667pt;}
.x18{left:153.274667pt;}
.x4{left:185.934667pt;}
.x20{left:208.604000pt;}
.x1b{left:256.937333pt;}
.x19{left:268.765333pt;}
.x9{left:272.525333pt;}
.x12{left:282.972000pt;}
.x1f{left:284.494667pt;}
.xa{left:296.476000pt;}
.xb{left:300.338667pt;}
.x1c{left:307.930667pt;}
.xc{left:312.153333pt;}
.x22{left:319.228000pt;}
.x15{left:337.022667pt;}
.x11{left:338.106667pt;}
.x16{left:346.744000pt;}
.x17{left:352.585333pt;}
.x14{left:357.429333pt;}
.x7{left:359.148000pt;}
.xf{left:380.418667pt;}
.x21{left:384.430667pt;}
.x1d{left:411.380000pt;}
.xe{left:428.440000pt;}
.x13{left:576.613333pt;}
}




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