
    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_1a96d681277d809ace28850d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_64086a4cbc2441670dc8cfa0.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1c58e13e6bbc790cb1887913.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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);}
.v2{vertical-align:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006000px;}
.lsc{letter-spacing:0.012000px;}
.lsf{letter-spacing:0.688500px;}
.ls10{letter-spacing:0.801000px;}
.ls6{letter-spacing:0.927000px;}
.ls5{letter-spacing:0.933000px;}
.lsd{letter-spacing:1.428000px;}
.ls8{letter-spacing:1.494000px;}
.ls9{letter-spacing:1.500000px;}
.ls12{letter-spacing:1.506000px;}
.ls2{letter-spacing:1.512000px;}
.ls1{letter-spacing:1.518000px;}
.ls11{letter-spacing:3.006000px;}
.lsb{letter-spacing:15.006000px;}
.ls7{letter-spacing:16.506000px;}
.ls4{letter-spacing:18.000000px;}
.lsa{letter-spacing:24.024000px;}
.lse{letter-spacing:30.012000px;}
.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;}
}
.ws8a{word-spacing:-18.336000px;}
.ws89{word-spacing:-18.048000px;}
.ws5c{word-spacing:-17.886000px;}
.ws4e{word-spacing:-17.862000px;}
.ws88{word-spacing:-17.838000px;}
.ws91{word-spacing:-17.730000px;}
.ws8e{word-spacing:-17.712000px;}
.ws8c{word-spacing:-17.670000px;}
.ws7a{word-spacing:-17.658000px;}
.ws64{word-spacing:-17.556000px;}
.ws60{word-spacing:-17.496000px;}
.ws79{word-spacing:-17.466000px;}
.ws90{word-spacing:-17.448000px;}
.ws6f{word-spacing:-17.394000px;}
.ws57{word-spacing:-17.370000px;}
.ws6e{word-spacing:-17.340000px;}
.ws2f{word-spacing:-17.280000px;}
.ws87{word-spacing:-17.274000px;}
.ws2b{word-spacing:-17.226000px;}
.ws4d{word-spacing:-17.148000px;}
.ws50{word-spacing:-17.142000px;}
.ws86{word-spacing:-17.124000px;}
.ws27{word-spacing:-17.118000px;}
.ws97{word-spacing:-17.106000px;}
.ws25{word-spacing:-17.088000px;}
.ws8d{word-spacing:-17.034000px;}
.ws16{word-spacing:-16.962000px;}
.ws17{word-spacing:-16.956000px;}
.ws65{word-spacing:-16.950000px;}
.ws1d{word-spacing:-16.908000px;}
.ws75{word-spacing:-16.884000px;}
.ws52{word-spacing:-16.872000px;}
.ws1a{word-spacing:-16.854000px;}
.ws2a{word-spacing:-16.830000px;}
.ws5e{word-spacing:-16.806000px;}
.ws1c{word-spacing:-16.758000px;}
.ws31{word-spacing:-16.746000px;}
.ws19{word-spacing:-16.722000px;}
.ws22{word-spacing:-16.716000px;}
.ws21{word-spacing:-16.710000px;}
.ws74{word-spacing:-16.698000px;}
.ws2c{word-spacing:-16.692000px;}
.ws54{word-spacing:-16.674000px;}
.ws7c{word-spacing:-16.668000px;}
.ws61{word-spacing:-16.662000px;}
.ws63{word-spacing:-16.644000px;}
.ws76{word-spacing:-16.596000px;}
.ws2d{word-spacing:-16.590000px;}
.ws6d{word-spacing:-16.584000px;}
.ws92{word-spacing:-16.566000px;}
.ws78{word-spacing:-16.554000px;}
.ws23{word-spacing:-16.548000px;}
.ws2e{word-spacing:-16.542000px;}
.ws93{word-spacing:-16.536000px;}
.wsf{word-spacing:-16.500000px;}
.ws14{word-spacing:-16.464000px;}
.ws30{word-spacing:-16.458000px;}
.ws94{word-spacing:-16.440000px;}
.ws3f{word-spacing:-16.428000px;}
.ws20{word-spacing:-16.392000px;}
.ws8b{word-spacing:-16.386000px;}
.ws1e{word-spacing:-16.374000px;}
.ws81{word-spacing:-16.362000px;}
.ws3d{word-spacing:-16.320000px;}
.ws4c{word-spacing:-16.260000px;}
.ws7d{word-spacing:-16.254000px;}
.ws6b{word-spacing:-16.236000px;}
.ws1b{word-spacing:-16.224000px;}
.ws13{word-spacing:-16.152000px;}
.ws5b{word-spacing:-16.086000px;}
.ws8f{word-spacing:-15.996000px;}
.ws44{word-spacing:-15.948000px;}
.ws39{word-spacing:-15.900000px;}
.ws71{word-spacing:-15.870000px;}
.ws15{word-spacing:-15.852000px;}
.ws56{word-spacing:-15.834000px;}
.wsa6{word-spacing:-15.822000px;}
.ws41{word-spacing:-15.768000px;}
.ws43{word-spacing:-15.762000px;}
.ws96{word-spacing:-15.702000px;}
.ws28{word-spacing:-15.606000px;}
.wsb9{word-spacing:-15.528000px;}
.ws82{word-spacing:-15.450000px;}
.ws48{word-spacing:-15.420000px;}
.ws7b{word-spacing:-15.354000px;}
.ws9a{word-spacing:-15.318000px;}
.ws42{word-spacing:-15.300000px;}
.ws46{word-spacing:-15.282000px;}
.wsa2{word-spacing:-15.234000px;}
.wsc0{word-spacing:-15.228000px;}
.ws1f{word-spacing:-15.162000px;}
.wsc9{word-spacing:-15.156000px;}
.ws47{word-spacing:-15.150000px;}
.wsc7{word-spacing:-15.138000px;}
.ws9d{word-spacing:-15.108000px;}
.ws70{word-spacing:-15.066000px;}
.ws40{word-spacing:-15.060000px;}
.ws38{word-spacing:-15.000000px;}
.wsa4{word-spacing:-14.982000px;}
.ws3c{word-spacing:-14.940000px;}
.wsaf{word-spacing:-14.904000px;}
.ws12{word-spacing:-14.898000px;}
.ws9e{word-spacing:-14.856000px;}
.wscb{word-spacing:-14.844000px;}
.wsbd{word-spacing:-14.778000px;}
.wsb3{word-spacing:-14.712000px;}
.ws4b{word-spacing:-14.700000px;}
.ws36{word-spacing:-14.640000px;}
.ws3a{word-spacing:-14.598000px;}
.ws2{word-spacing:-14.532000px;}
.ws58{word-spacing:-14.490000px;}
.wsc2{word-spacing:-14.346000px;}
.ws0{word-spacing:-14.250000px;}
.ws45{word-spacing:-14.130000px;}
.ws80{word-spacing:-14.088000px;}
.wscd{word-spacing:-14.052000px;}
.ws66{word-spacing:-14.034000px;}
.ws7f{word-spacing:-14.022000px;}
.ws68{word-spacing:-13.938000px;}
.ws35{word-spacing:-13.836000px;}
.ws3b{word-spacing:-13.800000px;}
.wsbf{word-spacing:-13.668000px;}
.ws49{word-spacing:-13.500000px;}
.ws34{word-spacing:-13.314000px;}
.ws7e{word-spacing:-13.236000px;}
.ws59{word-spacing:-13.164000px;}
.ws67{word-spacing:-13.122000px;}
.ws37{word-spacing:-12.762000px;}
.wsa8{word-spacing:-12.582000px;}
.ws33{word-spacing:-12.480000px;}
.wsa5{word-spacing:-12.348000px;}
.wsa9{word-spacing:-12.325500px;}
.wsab{word-spacing:-12.213000px;}
.wsb7{word-spacing:-12.145500px;}
.wsca{word-spacing:-12.096000px;}
.wsa7{word-spacing:-12.073500px;}
.wsac{word-spacing:-12.033000px;}
.ws99{word-spacing:-11.875500px;}
.wsb8{word-spacing:-11.776500px;}
.ws62{word-spacing:-11.696400px;}
.ws73{word-spacing:-11.684088px;}
.wsa0{word-spacing:-11.655000px;}
.ws29{word-spacing:-11.542500px;}
.wsa1{word-spacing:-11.484000px;}
.wsae{word-spacing:-11.466000px;}
.wsc8{word-spacing:-11.407500px;}
.wsc6{word-spacing:-11.389500px;}
.ws9c{word-spacing:-11.358000px;}
.ws9b{word-spacing:-11.344500px;}
.wsbb{word-spacing:-11.277000px;}
.ws95{word-spacing:-11.250000px;}
.wsb2{word-spacing:-11.245500px;}
.wsa3{word-spacing:-11.232000px;}
.wsb0{word-spacing:-11.155500px;}
.wsb6{word-spacing:-11.146500px;}
.wsc3{word-spacing:-11.115000px;}
.wsbc{word-spacing:-11.025000px;}
.wsb1{word-spacing:-10.966500px;}
.wsba{word-spacing:-10.651500px;}
.wsc1{word-spacing:-10.597500px;}
.wsbe{word-spacing:-10.188000px;}
.wsc5{word-spacing:-5.898000px;}
.ws9f{word-spacing:-4.758000px;}
.wsc4{word-spacing:-4.398000px;}
.wsb{word-spacing:-1.878000px;}
.wsad{word-spacing:-1.854000px;}
.wsb4{word-spacing:-1.740000px;}
.ws98{word-spacing:-1.614000px;}
.ws69{word-spacing:-1.320000px;}
.ws83{word-spacing:-0.996000px;}
.ws77{word-spacing:-0.954000px;}
.ws84{word-spacing:-0.930000px;}
.ws26{word-spacing:-0.900000px;}
.ws5d{word-spacing:-0.876000px;}
.ws24{word-spacing:-0.864000px;}
.ws53{word-spacing:-0.810000px;}
.ws4{word-spacing:-0.762000px;}
.wsa{word-spacing:-0.756000px;}
.wsaa{word-spacing:-0.750000px;}
.ws3e{word-spacing:-0.744000px;}
.wscc{word-spacing:-0.690000px;}
.ws85{word-spacing:-0.624000px;}
.ws5f{word-spacing:-0.618000px;}
.ws6a{word-spacing:-0.606000px;}
.ws72{word-spacing:-0.516000px;}
.ws1{word-spacing:0.000000px;}
.ws6c{word-spacing:0.534000px;}
.ws11{word-spacing:0.648000px;}
.ws5{word-spacing:0.684000px;}
.ws4f{word-spacing:0.690000px;}
.ws55{word-spacing:0.744000px;}
.ws18{word-spacing:0.846000px;}
.ws9{word-spacing:0.888000px;}
.ws51{word-spacing:1.200000px;}
.wse{word-spacing:1.428000px;}
.ws32{word-spacing:1.506000px;}
.ws3{word-spacing:3.108000px;}
.ws8{word-spacing:3.288000px;}
.ws6{word-spacing:3.594000px;}
.ws7{word-spacing:3.672000px;}
.wsc{word-spacing:4.962000px;}
.wsd{word-spacing:5.202000px;}
.wsb5{word-spacing:5.994000px;}
.ws5a{word-spacing:9.018000px;}
.ws10{word-spacing:35.706000px;}
.ws4a{word-spacing:36.018000px;}
._19{margin-left:-11.082000px;}
._14{margin-left:-8.976000px;}
._1{margin-left:-7.524000px;}
._c{margin-left:-6.462000px;}
._8{margin-left:-4.524000px;}
._5{margin-left:-3.426000px;}
._0{margin-left:-1.536000px;}
._2{width:1.608000px;}
._6{width:3.075000px;}
._7{width:4.215000px;}
._4{width:5.985000px;}
._3{width:7.560000px;}
._15{width:10.452000px;}
._17{width:12.948000px;}
._1a{width:14.148000px;}
._10{width:15.360000px;}
._18{width:16.560000px;}
._a{width:18.528000px;}
._13{width:20.319000px;}
._1b{width:21.822000px;}
._b{width:22.926000px;}
._11{width:24.084000px;}
._1c{width:30.000000px;}
._16{width:36.018000px;}
._f{width:39.006000px;}
._9{width:47.928000px;}
._e{width:49.518000px;}
._d{width:961.392000px;}
._12{width:1021.362000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:45.000000px;}
.fs5{font-size:46.170000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:48.375000px;}
.y26{bottom:49.500000px;}
.ya7{bottom:54.000000px;}
.y52{bottom:54.375000px;}
.ycd{bottom:56.250000px;}
.yf1{bottom:58.125000px;}
.y82{bottom:63.375000px;}
.ya6{bottom:69.000000px;}
.y51{bottom:69.375000px;}
.y24{bottom:70.500000px;}
.ycc{bottom:73.500000px;}
.yf0{bottom:76.125000px;}
.ya5{bottom:84.000000px;}
.y59{bottom:84.375000px;}
.y23{bottom:85.500000px;}
.ycb{bottom:90.750000px;}
.y25{bottom:91.500000px;}
.yef{bottom:92.625000px;}
.ya4{bottom:99.000000px;}
.y58{bottom:99.375000px;}
.y22{bottom:106.500000px;}
.yca{bottom:108.000000px;}
.yee{bottom:110.250000px;}
.yc5{bottom:114.000000px;}
.y57{bottom:114.375000px;}
.y81{bottom:116.250000px;}
.y50{bottom:116.625000px;}
.y27{bottom:124.500000px;}
.yc9{bottom:125.250000px;}
.yed{bottom:126.750000px;}
.yc4{bottom:129.000000px;}
.y56{bottom:129.375000px;}
.y80{bottom:132.750000px;}
.y4f{bottom:133.875000px;}
.yc8{bottom:142.500000px;}
.yc3{bottom:144.000000px;}
.y55{bottom:144.375000px;}
.yec{bottom:144.750000px;}
.ya3{bottom:146.250000px;}
.y7f{bottom:149.250000px;}
.y4e{bottom:151.125000px;}
.y54{bottom:159.375000px;}
.yc7{bottom:159.750000px;}
.yeb{bottom:161.250000px;}
.ya2{bottom:163.500000px;}
.y7e{bottom:165.750000px;}
.y4d{bottom:168.375000px;}
.y20{bottom:174.375000px;}
.yc6{bottom:177.000000px;}
.yea{bottom:177.750000px;}
.ya1{bottom:180.750000px;}
.y7d{bottom:182.250000px;}
.y4c{bottom:185.625000px;}
.y1f{bottom:189.375000px;}
.yc2{bottom:194.250000px;}
.ye9{bottom:195.375000px;}
.ya0{bottom:198.000000px;}
.y7c{bottom:198.750000px;}
.y4b{bottom:202.875000px;}
.y1e{bottom:204.375000px;}
.yc0{bottom:211.500000px;}
.ye8{bottom:213.000000px;}
.y7b{bottom:215.250000px;}
.y1d{bottom:219.375000px;}
.y4a{bottom:220.125000px;}
.ybf{bottom:228.750000px;}
.ye7{bottom:231.000000px;}
.y7a{bottom:231.750000px;}
.y9f{bottom:232.500000px;}
.y1c{bottom:234.375000px;}
.y49{bottom:237.375000px;}
.ybe{bottom:246.000000px;}
.ye6{bottom:247.500000px;}
.y79{bottom:248.250000px;}
.y1b{bottom:249.375000px;}
.y9e{bottom:249.750000px;}
.y10d{bottom:254.250000px;}
.y48{bottom:254.625000px;}
.ybd{bottom:263.250000px;}
.y1a{bottom:264.375000px;}
.y78{bottom:264.750000px;}
.ye5{bottom:265.125000px;}
.y9d{bottom:267.000000px;}
.y10c{bottom:270.750000px;}
.y47{bottom:271.875000px;}
.y19{bottom:279.375000px;}
.ybc{bottom:280.500000px;}
.y77{bottom:281.250000px;}
.ye4{bottom:283.125000px;}
.y9c{bottom:284.250000px;}
.y10b{bottom:287.250000px;}
.y46{bottom:289.125000px;}
.y18{bottom:294.375000px;}
.y76{bottom:297.750000px;}
.ye3{bottom:299.625000px;}
.y9b{bottom:301.500000px;}
.y10a{bottom:303.750000px;}
.y45{bottom:306.375000px;}
.y17{bottom:309.375000px;}
.y75{bottom:314.250000px;}
.ybb{bottom:315.000000px;}
.ye2{bottom:317.250000px;}
.y9a{bottom:318.750000px;}
.y109{bottom:320.250000px;}
.y44{bottom:323.625000px;}
.y16{bottom:324.375000px;}
.y74{bottom:330.750000px;}
.yba{bottom:332.250000px;}
.ye1{bottom:333.750000px;}
.y99{bottom:336.000000px;}
.y108{bottom:336.750000px;}
.y15{bottom:339.375000px;}
.y43{bottom:340.875000px;}
.y73{bottom:347.250000px;}
.yc1{bottom:349.500000px;}
.ye0{bottom:350.250000px;}
.y98{bottom:353.250000px;}
.y42{bottom:358.125000px;}
.y72{bottom:363.750000px;}
.yb9{bottom:366.750000px;}
.ydf{bottom:367.875000px;}
.y14{bottom:369.375000px;}
.y107{bottom:369.750000px;}
.y97{bottom:370.500000px;}
.y41{bottom:375.375000px;}
.y71{bottom:380.250000px;}
.yb8{bottom:384.000000px;}
.yde{bottom:385.875000px;}
.y106{bottom:386.250000px;}
.y40{bottom:392.625000px;}
.y70{bottom:396.750000px;}
.yb7{bottom:401.250000px;}
.y105{bottom:402.750000px;}
.ydd{bottom:403.500000px;}
.y96{bottom:405.000000px;}
.y13{bottom:405.375000px;}
.y3f{bottom:409.875000px;}
.y6f{bottom:413.250000px;}
.yb6{bottom:418.500000px;}
.y104{bottom:419.250000px;}
.ydc{bottom:420.000000px;}
.y12{bottom:420.375000px;}
.y95{bottom:422.250000px;}
.y3e{bottom:427.125000px;}
.y6e{bottom:429.750000px;}
.y11{bottom:435.375000px;}
.yb5{bottom:435.750000px;}
.ydb{bottom:438.000000px;}
.y94{bottom:439.500000px;}
.y3d{bottom:444.375000px;}
.y6d{bottom:446.250000px;}
.y10{bottom:450.375000px;}
.y103{bottom:452.250000px;}
.yb4{bottom:453.000000px;}
.yda{bottom:454.500000px;}
.y93{bottom:456.750000px;}
.y3c{bottom:461.625000px;}
.y6c{bottom:462.750000px;}
.yf{bottom:465.375000px;}
.y102{bottom:468.750000px;}
.yb3{bottom:470.250000px;}
.yd9{bottom:472.125000px;}
.y3b{bottom:478.875000px;}
.y6b{bottom:479.250000px;}
.ye{bottom:480.375000px;}
.y101{bottom:485.250000px;}
.yb2{bottom:487.500000px;}
.yd8{bottom:488.625000px;}
.y92{bottom:491.250000px;}
.yd{bottom:495.375000px;}
.y6a{bottom:495.750000px;}
.y3a{bottom:496.125000px;}
.y100{bottom:501.750000px;}
.yb1{bottom:504.750000px;}
.yd7{bottom:506.250000px;}
.y91{bottom:508.500000px;}
.yc{bottom:510.375000px;}
.y69{bottom:512.250000px;}
.y39{bottom:513.375000px;}
.yff{bottom:518.250000px;}
.yb0{bottom:522.000000px;}
.yd6{bottom:522.750000px;}
.yb{bottom:525.375000px;}
.y90{bottom:525.750000px;}
.y68{bottom:528.750000px;}
.y38{bottom:530.625000px;}
.yfe{bottom:534.750000px;}
.yaf{bottom:539.250000px;}
.ya{bottom:540.375000px;}
.yd5{bottom:540.750000px;}
.y8f{bottom:543.000000px;}
.y67{bottom:545.250000px;}
.y37{bottom:547.875000px;}
.yfd{bottom:551.250000px;}
.y9{bottom:555.375000px;}
.yae{bottom:556.500000px;}
.yd4{bottom:557.250000px;}
.y8e{bottom:560.250000px;}
.y66{bottom:561.750000px;}
.y36{bottom:565.125000px;}
.yfc{bottom:567.750000px;}
.y8{bottom:570.375000px;}
.yad{bottom:573.750000px;}
.y8d{bottom:577.500000px;}
.y65{bottom:578.250000px;}
.y35{bottom:582.375000px;}
.yfb{bottom:584.250000px;}
.y7{bottom:585.375000px;}
.yac{bottom:591.000000px;}
.yd3{bottom:591.375000px;}
.y64{bottom:594.750000px;}
.y34{bottom:599.625000px;}
.yfa{bottom:600.750000px;}
.yab{bottom:608.250000px;}
.yd2{bottom:609.375000px;}
.y63{bottom:611.250000px;}
.y8c{bottom:612.000000px;}
.y6{bottom:615.375000px;}
.y33{bottom:616.875000px;}
.yf9{bottom:617.250000px;}
.yaa{bottom:625.500000px;}
.yd1{bottom:625.875000px;}
.y62{bottom:627.750000px;}
.y8b{bottom:629.250000px;}
.yf8{bottom:633.750000px;}
.y32{bottom:634.125000px;}
.ya9{bottom:642.750000px;}
.yd0{bottom:643.500000px;}
.y61{bottom:644.250000px;}
.y8a{bottom:646.500000px;}
.yf7{bottom:650.250000px;}
.y31{bottom:651.375000px;}
.ya8{bottom:660.000000px;}
.ycf{bottom:661.125000px;}
.y89{bottom:663.750000px;}
.yf6{bottom:666.750000px;}
.y30{bottom:668.625000px;}
.y60{bottom:677.250000px;}
.yf5{bottom:683.250000px;}
.y2f{bottom:685.875000px;}
.y88{bottom:689.625000px;}
.y5f{bottom:694.500000px;}
.yce{bottom:694.875000px;}
.yf4{bottom:699.750000px;}
.y2e{bottom:703.125000px;}
.y5{bottom:711.375000px;}
.y5e{bottom:711.750000px;}
.yf3{bottom:716.250000px;}
.y2d{bottom:720.375000px;}
.y4{bottom:726.375000px;}
.y5d{bottom:729.000000px;}
.yf2{bottom:732.750000px;}
.y2c{bottom:737.625000px;}
.y3{bottom:745.125000px;}
.y5c{bottom:746.250000px;}
.y87{bottom:749.250000px;}
.y2b{bottom:754.875000px;}
.y2{bottom:763.125000px;}
.y5b{bottom:763.500000px;}
.y86{bottom:765.750000px;}
.y2a{bottom:772.125000px;}
.y5a{bottom:780.750000px;}
.y85{bottom:782.250000px;}
.y29{bottom:789.375000px;}
.y53{bottom:798.000000px;}
.y84{bottom:798.750000px;}
.y1{bottom:808.125000px;}
.y28{bottom:815.250000px;}
.y21{bottom:862.125000px;}
.h5{height:51.216000px;}
.h3{height:57.618000px;}
.h9{height:58.536000px;}
.h4{height:60.819000px;}
.h8{height:64.020000px;}
.ha{height:65.040000px;}
.h2{height:70.422000px;}
.h7{height:71.544000px;}
.h6{height:71.763390px;}
.h1{height:102.432000px;}
.h0{height:892.500000px;}
.w1{width:595.240140px;}
.w2{width:595.500000px;}
.w0{width:616.500000px;}
.x0{left:0.000000px;}
.x8{left:62.152590px;}
.x1{left:75.187500px;}
.x9{left:84.445590px;}
.x5{left:85.545000px;}
.xa{left:97.842000px;}
.xb{left:119.631000px;}
.x4{left:134.782500px;}
.x3{left:204.207000px;}
.x7{left:297.837000px;}
.x6{left:331.567500px;}
.x2{left:440.062500px;}
@media print{
.v2{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005333pt;}
.lsc{letter-spacing:0.010667pt;}
.lsf{letter-spacing:0.612000pt;}
.ls10{letter-spacing:0.712000pt;}
.ls6{letter-spacing:0.824000pt;}
.ls5{letter-spacing:0.829333pt;}
.lsd{letter-spacing:1.269333pt;}
.ls8{letter-spacing:1.328000pt;}
.ls9{letter-spacing:1.333333pt;}
.ls12{letter-spacing:1.338667pt;}
.ls2{letter-spacing:1.344000pt;}
.ls1{letter-spacing:1.349333pt;}
.ls11{letter-spacing:2.672000pt;}
.lsb{letter-spacing:13.338667pt;}
.ls7{letter-spacing:14.672000pt;}
.ls4{letter-spacing:16.000000pt;}
.lsa{letter-spacing:21.354667pt;}
.lse{letter-spacing:26.677333pt;}
.ws8a{word-spacing:-16.298667pt;}
.ws89{word-spacing:-16.042667pt;}
.ws5c{word-spacing:-15.898667pt;}
.ws4e{word-spacing:-15.877333pt;}
.ws88{word-spacing:-15.856000pt;}
.ws91{word-spacing:-15.760000pt;}
.ws8e{word-spacing:-15.744000pt;}
.ws8c{word-spacing:-15.706667pt;}
.ws7a{word-spacing:-15.696000pt;}
.ws64{word-spacing:-15.605333pt;}
.ws60{word-spacing:-15.552000pt;}
.ws79{word-spacing:-15.525333pt;}
.ws90{word-spacing:-15.509333pt;}
.ws6f{word-spacing:-15.461333pt;}
.ws57{word-spacing:-15.440000pt;}
.ws6e{word-spacing:-15.413333pt;}
.ws2f{word-spacing:-15.360000pt;}
.ws87{word-spacing:-15.354667pt;}
.ws2b{word-spacing:-15.312000pt;}
.ws4d{word-spacing:-15.242667pt;}
.ws50{word-spacing:-15.237333pt;}
.ws86{word-spacing:-15.221333pt;}
.ws27{word-spacing:-15.216000pt;}
.ws97{word-spacing:-15.205333pt;}
.ws25{word-spacing:-15.189333pt;}
.ws8d{word-spacing:-15.141333pt;}
.ws16{word-spacing:-15.077333pt;}
.ws17{word-spacing:-15.072000pt;}
.ws65{word-spacing:-15.066667pt;}
.ws1d{word-spacing:-15.029333pt;}
.ws75{word-spacing:-15.008000pt;}
.ws52{word-spacing:-14.997333pt;}
.ws1a{word-spacing:-14.981333pt;}
.ws2a{word-spacing:-14.960000pt;}
.ws5e{word-spacing:-14.938667pt;}
.ws1c{word-spacing:-14.896000pt;}
.ws31{word-spacing:-14.885333pt;}
.ws19{word-spacing:-14.864000pt;}
.ws22{word-spacing:-14.858667pt;}
.ws21{word-spacing:-14.853333pt;}
.ws74{word-spacing:-14.842667pt;}
.ws2c{word-spacing:-14.837333pt;}
.ws54{word-spacing:-14.821333pt;}
.ws7c{word-spacing:-14.816000pt;}
.ws61{word-spacing:-14.810667pt;}
.ws63{word-spacing:-14.794667pt;}
.ws76{word-spacing:-14.752000pt;}
.ws2d{word-spacing:-14.746667pt;}
.ws6d{word-spacing:-14.741333pt;}
.ws92{word-spacing:-14.725333pt;}
.ws78{word-spacing:-14.714667pt;}
.ws23{word-spacing:-14.709333pt;}
.ws2e{word-spacing:-14.704000pt;}
.ws93{word-spacing:-14.698667pt;}
.wsf{word-spacing:-14.666667pt;}
.ws14{word-spacing:-14.634667pt;}
.ws30{word-spacing:-14.629333pt;}
.ws94{word-spacing:-14.613333pt;}
.ws3f{word-spacing:-14.602667pt;}
.ws20{word-spacing:-14.570667pt;}
.ws8b{word-spacing:-14.565333pt;}
.ws1e{word-spacing:-14.554667pt;}
.ws81{word-spacing:-14.544000pt;}
.ws3d{word-spacing:-14.506667pt;}
.ws4c{word-spacing:-14.453333pt;}
.ws7d{word-spacing:-14.448000pt;}
.ws6b{word-spacing:-14.432000pt;}
.ws1b{word-spacing:-14.421333pt;}
.ws13{word-spacing:-14.357333pt;}
.ws5b{word-spacing:-14.298667pt;}
.ws8f{word-spacing:-14.218667pt;}
.ws44{word-spacing:-14.176000pt;}
.ws39{word-spacing:-14.133333pt;}
.ws71{word-spacing:-14.106667pt;}
.ws15{word-spacing:-14.090667pt;}
.ws56{word-spacing:-14.074667pt;}
.wsa6{word-spacing:-14.064000pt;}
.ws41{word-spacing:-14.016000pt;}
.ws43{word-spacing:-14.010667pt;}
.ws96{word-spacing:-13.957333pt;}
.ws28{word-spacing:-13.872000pt;}
.wsb9{word-spacing:-13.802667pt;}
.ws82{word-spacing:-13.733333pt;}
.ws48{word-spacing:-13.706667pt;}
.ws7b{word-spacing:-13.648000pt;}
.ws9a{word-spacing:-13.616000pt;}
.ws42{word-spacing:-13.600000pt;}
.ws46{word-spacing:-13.584000pt;}
.wsa2{word-spacing:-13.541333pt;}
.wsc0{word-spacing:-13.536000pt;}
.ws1f{word-spacing:-13.477333pt;}
.wsc9{word-spacing:-13.472000pt;}
.ws47{word-spacing:-13.466667pt;}
.wsc7{word-spacing:-13.456000pt;}
.ws9d{word-spacing:-13.429333pt;}
.ws70{word-spacing:-13.392000pt;}
.ws40{word-spacing:-13.386667pt;}
.ws38{word-spacing:-13.333333pt;}
.wsa4{word-spacing:-13.317333pt;}
.ws3c{word-spacing:-13.280000pt;}
.wsaf{word-spacing:-13.248000pt;}
.ws12{word-spacing:-13.242667pt;}
.ws9e{word-spacing:-13.205333pt;}
.wscb{word-spacing:-13.194667pt;}
.wsbd{word-spacing:-13.136000pt;}
.wsb3{word-spacing:-13.077333pt;}
.ws4b{word-spacing:-13.066667pt;}
.ws36{word-spacing:-13.013333pt;}
.ws3a{word-spacing:-12.976000pt;}
.ws2{word-spacing:-12.917333pt;}
.ws58{word-spacing:-12.880000pt;}
.wsc2{word-spacing:-12.752000pt;}
.ws0{word-spacing:-12.666667pt;}
.ws45{word-spacing:-12.560000pt;}
.ws80{word-spacing:-12.522667pt;}
.wscd{word-spacing:-12.490667pt;}
.ws66{word-spacing:-12.474667pt;}
.ws7f{word-spacing:-12.464000pt;}
.ws68{word-spacing:-12.389333pt;}
.ws35{word-spacing:-12.298667pt;}
.ws3b{word-spacing:-12.266667pt;}
.wsbf{word-spacing:-12.149333pt;}
.ws49{word-spacing:-12.000000pt;}
.ws34{word-spacing:-11.834667pt;}
.ws7e{word-spacing:-11.765333pt;}
.ws59{word-spacing:-11.701333pt;}
.ws67{word-spacing:-11.664000pt;}
.ws37{word-spacing:-11.344000pt;}
.wsa8{word-spacing:-11.184000pt;}
.ws33{word-spacing:-11.093333pt;}
.wsa5{word-spacing:-10.976000pt;}
.wsa9{word-spacing:-10.956000pt;}
.wsab{word-spacing:-10.856000pt;}
.wsb7{word-spacing:-10.796000pt;}
.wsca{word-spacing:-10.752000pt;}
.wsa7{word-spacing:-10.732000pt;}
.wsac{word-spacing:-10.696000pt;}
.ws99{word-spacing:-10.556000pt;}
.wsb8{word-spacing:-10.468000pt;}
.ws62{word-spacing:-10.396800pt;}
.ws73{word-spacing:-10.385856pt;}
.wsa0{word-spacing:-10.360000pt;}
.ws29{word-spacing:-10.260000pt;}
.wsa1{word-spacing:-10.208000pt;}
.wsae{word-spacing:-10.192000pt;}
.wsc8{word-spacing:-10.140000pt;}
.wsc6{word-spacing:-10.124000pt;}
.ws9c{word-spacing:-10.096000pt;}
.ws9b{word-spacing:-10.084000pt;}
.wsbb{word-spacing:-10.024000pt;}
.ws95{word-spacing:-10.000000pt;}
.wsb2{word-spacing:-9.996000pt;}
.wsa3{word-spacing:-9.984000pt;}
.wsb0{word-spacing:-9.916000pt;}
.wsb6{word-spacing:-9.908000pt;}
.wsc3{word-spacing:-9.880000pt;}
.wsbc{word-spacing:-9.800000pt;}
.wsb1{word-spacing:-9.748000pt;}
.wsba{word-spacing:-9.468000pt;}
.wsc1{word-spacing:-9.420000pt;}
.wsbe{word-spacing:-9.056000pt;}
.wsc5{word-spacing:-5.242667pt;}
.ws9f{word-spacing:-4.229333pt;}
.wsc4{word-spacing:-3.909333pt;}
.wsb{word-spacing:-1.669333pt;}
.wsad{word-spacing:-1.648000pt;}
.wsb4{word-spacing:-1.546667pt;}
.ws98{word-spacing:-1.434667pt;}
.ws69{word-spacing:-1.173333pt;}
.ws83{word-spacing:-0.885333pt;}
.ws77{word-spacing:-0.848000pt;}
.ws84{word-spacing:-0.826667pt;}
.ws26{word-spacing:-0.800000pt;}
.ws5d{word-spacing:-0.778667pt;}
.ws24{word-spacing:-0.768000pt;}
.ws53{word-spacing:-0.720000pt;}
.ws4{word-spacing:-0.677333pt;}
.wsa{word-spacing:-0.672000pt;}
.wsaa{word-spacing:-0.666667pt;}
.ws3e{word-spacing:-0.661333pt;}
.wscc{word-spacing:-0.613333pt;}
.ws85{word-spacing:-0.554667pt;}
.ws5f{word-spacing:-0.549333pt;}
.ws6a{word-spacing:-0.538667pt;}
.ws72{word-spacing:-0.458667pt;}
.ws1{word-spacing:0.000000pt;}
.ws6c{word-spacing:0.474667pt;}
.ws11{word-spacing:0.576000pt;}
.ws5{word-spacing:0.608000pt;}
.ws4f{word-spacing:0.613333pt;}
.ws55{word-spacing:0.661333pt;}
.ws18{word-spacing:0.752000pt;}
.ws9{word-spacing:0.789333pt;}
.ws51{word-spacing:1.066667pt;}
.wse{word-spacing:1.269333pt;}
.ws32{word-spacing:1.338667pt;}
.ws3{word-spacing:2.762667pt;}
.ws8{word-spacing:2.922667pt;}
.ws6{word-spacing:3.194667pt;}
.ws7{word-spacing:3.264000pt;}
.wsc{word-spacing:4.410667pt;}
.wsd{word-spacing:4.624000pt;}
.wsb5{word-spacing:5.328000pt;}
.ws5a{word-spacing:8.016000pt;}
.ws10{word-spacing:31.738667pt;}
.ws4a{word-spacing:32.016000pt;}
._19{margin-left:-9.850667pt;}
._14{margin-left:-7.978667pt;}
._1{margin-left:-6.688000pt;}
._c{margin-left:-5.744000pt;}
._8{margin-left:-4.021333pt;}
._5{margin-left:-3.045333pt;}
._0{margin-left:-1.365333pt;}
._2{width:1.429333pt;}
._6{width:2.733333pt;}
._7{width:3.746667pt;}
._4{width:5.320000pt;}
._3{width:6.720000pt;}
._15{width:9.290667pt;}
._17{width:11.509333pt;}
._1a{width:12.576000pt;}
._10{width:13.653333pt;}
._18{width:14.720000pt;}
._a{width:16.469333pt;}
._13{width:18.061333pt;}
._1b{width:19.397333pt;}
._b{width:20.378667pt;}
._11{width:21.408000pt;}
._1c{width:26.666667pt;}
._16{width:32.016000pt;}
._f{width:34.672000pt;}
._9{width:42.602667pt;}
._e{width:44.016000pt;}
._d{width:854.570667pt;}
._12{width:907.877333pt;}
.fs7{font-size:40.000000pt;}
.fs5{font-size:41.040000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:43.000000pt;}
.y26{bottom:44.000000pt;}
.ya7{bottom:48.000000pt;}
.y52{bottom:48.333333pt;}
.ycd{bottom:50.000000pt;}
.yf1{bottom:51.666667pt;}
.y82{bottom:56.333333pt;}
.ya6{bottom:61.333333pt;}
.y51{bottom:61.666667pt;}
.y24{bottom:62.666667pt;}
.ycc{bottom:65.333333pt;}
.yf0{bottom:67.666667pt;}
.ya5{bottom:74.666667pt;}
.y59{bottom:75.000000pt;}
.y23{bottom:76.000000pt;}
.ycb{bottom:80.666667pt;}
.y25{bottom:81.333333pt;}
.yef{bottom:82.333333pt;}
.ya4{bottom:88.000000pt;}
.y58{bottom:88.333333pt;}
.y22{bottom:94.666667pt;}
.yca{bottom:96.000000pt;}
.yee{bottom:98.000000pt;}
.yc5{bottom:101.333333pt;}
.y57{bottom:101.666667pt;}
.y81{bottom:103.333333pt;}
.y50{bottom:103.666667pt;}
.y27{bottom:110.666667pt;}
.yc9{bottom:111.333333pt;}
.yed{bottom:112.666667pt;}
.yc4{bottom:114.666667pt;}
.y56{bottom:115.000000pt;}
.y80{bottom:118.000000pt;}
.y4f{bottom:119.000000pt;}
.yc8{bottom:126.666667pt;}
.yc3{bottom:128.000000pt;}
.y55{bottom:128.333333pt;}
.yec{bottom:128.666667pt;}
.ya3{bottom:130.000000pt;}
.y7f{bottom:132.666667pt;}
.y4e{bottom:134.333333pt;}
.y54{bottom:141.666667pt;}
.yc7{bottom:142.000000pt;}
.yeb{bottom:143.333333pt;}
.ya2{bottom:145.333333pt;}
.y7e{bottom:147.333333pt;}
.y4d{bottom:149.666667pt;}
.y20{bottom:155.000000pt;}
.yc6{bottom:157.333333pt;}
.yea{bottom:158.000000pt;}
.ya1{bottom:160.666667pt;}
.y7d{bottom:162.000000pt;}
.y4c{bottom:165.000000pt;}
.y1f{bottom:168.333333pt;}
.yc2{bottom:172.666667pt;}
.ye9{bottom:173.666667pt;}
.ya0{bottom:176.000000pt;}
.y7c{bottom:176.666667pt;}
.y4b{bottom:180.333333pt;}
.y1e{bottom:181.666667pt;}
.yc0{bottom:188.000000pt;}
.ye8{bottom:189.333333pt;}
.y7b{bottom:191.333333pt;}
.y1d{bottom:195.000000pt;}
.y4a{bottom:195.666667pt;}
.ybf{bottom:203.333333pt;}
.ye7{bottom:205.333333pt;}
.y7a{bottom:206.000000pt;}
.y9f{bottom:206.666667pt;}
.y1c{bottom:208.333333pt;}
.y49{bottom:211.000000pt;}
.ybe{bottom:218.666667pt;}
.ye6{bottom:220.000000pt;}
.y79{bottom:220.666667pt;}
.y1b{bottom:221.666667pt;}
.y9e{bottom:222.000000pt;}
.y10d{bottom:226.000000pt;}
.y48{bottom:226.333333pt;}
.ybd{bottom:234.000000pt;}
.y1a{bottom:235.000000pt;}
.y78{bottom:235.333333pt;}
.ye5{bottom:235.666667pt;}
.y9d{bottom:237.333333pt;}
.y10c{bottom:240.666667pt;}
.y47{bottom:241.666667pt;}
.y19{bottom:248.333333pt;}
.ybc{bottom:249.333333pt;}
.y77{bottom:250.000000pt;}
.ye4{bottom:251.666667pt;}
.y9c{bottom:252.666667pt;}
.y10b{bottom:255.333333pt;}
.y46{bottom:257.000000pt;}
.y18{bottom:261.666667pt;}
.y76{bottom:264.666667pt;}
.ye3{bottom:266.333333pt;}
.y9b{bottom:268.000000pt;}
.y10a{bottom:270.000000pt;}
.y45{bottom:272.333333pt;}
.y17{bottom:275.000000pt;}
.y75{bottom:279.333333pt;}
.ybb{bottom:280.000000pt;}
.ye2{bottom:282.000000pt;}
.y9a{bottom:283.333333pt;}
.y109{bottom:284.666667pt;}
.y44{bottom:287.666667pt;}
.y16{bottom:288.333333pt;}
.y74{bottom:294.000000pt;}
.yba{bottom:295.333333pt;}
.ye1{bottom:296.666667pt;}
.y99{bottom:298.666667pt;}
.y108{bottom:299.333333pt;}
.y15{bottom:301.666667pt;}
.y43{bottom:303.000000pt;}
.y73{bottom:308.666667pt;}
.yc1{bottom:310.666667pt;}
.ye0{bottom:311.333333pt;}
.y98{bottom:314.000000pt;}
.y42{bottom:318.333333pt;}
.y72{bottom:323.333333pt;}
.yb9{bottom:326.000000pt;}
.ydf{bottom:327.000000pt;}
.y14{bottom:328.333333pt;}
.y107{bottom:328.666667pt;}
.y97{bottom:329.333333pt;}
.y41{bottom:333.666667pt;}
.y71{bottom:338.000000pt;}
.yb8{bottom:341.333333pt;}
.yde{bottom:343.000000pt;}
.y106{bottom:343.333333pt;}
.y40{bottom:349.000000pt;}
.y70{bottom:352.666667pt;}
.yb7{bottom:356.666667pt;}
.y105{bottom:358.000000pt;}
.ydd{bottom:358.666667pt;}
.y96{bottom:360.000000pt;}
.y13{bottom:360.333333pt;}
.y3f{bottom:364.333333pt;}
.y6f{bottom:367.333333pt;}
.yb6{bottom:372.000000pt;}
.y104{bottom:372.666667pt;}
.ydc{bottom:373.333333pt;}
.y12{bottom:373.666667pt;}
.y95{bottom:375.333333pt;}
.y3e{bottom:379.666667pt;}
.y6e{bottom:382.000000pt;}
.y11{bottom:387.000000pt;}
.yb5{bottom:387.333333pt;}
.ydb{bottom:389.333333pt;}
.y94{bottom:390.666667pt;}
.y3d{bottom:395.000000pt;}
.y6d{bottom:396.666667pt;}
.y10{bottom:400.333333pt;}
.y103{bottom:402.000000pt;}
.yb4{bottom:402.666667pt;}
.yda{bottom:404.000000pt;}
.y93{bottom:406.000000pt;}
.y3c{bottom:410.333333pt;}
.y6c{bottom:411.333333pt;}
.yf{bottom:413.666667pt;}
.y102{bottom:416.666667pt;}
.yb3{bottom:418.000000pt;}
.yd9{bottom:419.666667pt;}
.y3b{bottom:425.666667pt;}
.y6b{bottom:426.000000pt;}
.ye{bottom:427.000000pt;}
.y101{bottom:431.333333pt;}
.yb2{bottom:433.333333pt;}
.yd8{bottom:434.333333pt;}
.y92{bottom:436.666667pt;}
.yd{bottom:440.333333pt;}
.y6a{bottom:440.666667pt;}
.y3a{bottom:441.000000pt;}
.y100{bottom:446.000000pt;}
.yb1{bottom:448.666667pt;}
.yd7{bottom:450.000000pt;}
.y91{bottom:452.000000pt;}
.yc{bottom:453.666667pt;}
.y69{bottom:455.333333pt;}
.y39{bottom:456.333333pt;}
.yff{bottom:460.666667pt;}
.yb0{bottom:464.000000pt;}
.yd6{bottom:464.666667pt;}
.yb{bottom:467.000000pt;}
.y90{bottom:467.333333pt;}
.y68{bottom:470.000000pt;}
.y38{bottom:471.666667pt;}
.yfe{bottom:475.333333pt;}
.yaf{bottom:479.333333pt;}
.ya{bottom:480.333333pt;}
.yd5{bottom:480.666667pt;}
.y8f{bottom:482.666667pt;}
.y67{bottom:484.666667pt;}
.y37{bottom:487.000000pt;}
.yfd{bottom:490.000000pt;}
.y9{bottom:493.666667pt;}
.yae{bottom:494.666667pt;}
.yd4{bottom:495.333333pt;}
.y8e{bottom:498.000000pt;}
.y66{bottom:499.333333pt;}
.y36{bottom:502.333333pt;}
.yfc{bottom:504.666667pt;}
.y8{bottom:507.000000pt;}
.yad{bottom:510.000000pt;}
.y8d{bottom:513.333333pt;}
.y65{bottom:514.000000pt;}
.y35{bottom:517.666667pt;}
.yfb{bottom:519.333333pt;}
.y7{bottom:520.333333pt;}
.yac{bottom:525.333333pt;}
.yd3{bottom:525.666667pt;}
.y64{bottom:528.666667pt;}
.y34{bottom:533.000000pt;}
.yfa{bottom:534.000000pt;}
.yab{bottom:540.666667pt;}
.yd2{bottom:541.666667pt;}
.y63{bottom:543.333333pt;}
.y8c{bottom:544.000000pt;}
.y6{bottom:547.000000pt;}
.y33{bottom:548.333333pt;}
.yf9{bottom:548.666667pt;}
.yaa{bottom:556.000000pt;}
.yd1{bottom:556.333333pt;}
.y62{bottom:558.000000pt;}
.y8b{bottom:559.333333pt;}
.yf8{bottom:563.333333pt;}
.y32{bottom:563.666667pt;}
.ya9{bottom:571.333333pt;}
.yd0{bottom:572.000000pt;}
.y61{bottom:572.666667pt;}
.y8a{bottom:574.666667pt;}
.yf7{bottom:578.000000pt;}
.y31{bottom:579.000000pt;}
.ya8{bottom:586.666667pt;}
.ycf{bottom:587.666667pt;}
.y89{bottom:590.000000pt;}
.yf6{bottom:592.666667pt;}
.y30{bottom:594.333333pt;}
.y60{bottom:602.000000pt;}
.yf5{bottom:607.333333pt;}
.y2f{bottom:609.666667pt;}
.y88{bottom:613.000000pt;}
.y5f{bottom:617.333333pt;}
.yce{bottom:617.666667pt;}
.yf4{bottom:622.000000pt;}
.y2e{bottom:625.000000pt;}
.y5{bottom:632.333333pt;}
.y5e{bottom:632.666667pt;}
.yf3{bottom:636.666667pt;}
.y2d{bottom:640.333333pt;}
.y4{bottom:645.666667pt;}
.y5d{bottom:648.000000pt;}
.yf2{bottom:651.333333pt;}
.y2c{bottom:655.666667pt;}
.y3{bottom:662.333333pt;}
.y5c{bottom:663.333333pt;}
.y87{bottom:666.000000pt;}
.y2b{bottom:671.000000pt;}
.y2{bottom:678.333333pt;}
.y5b{bottom:678.666667pt;}
.y86{bottom:680.666667pt;}
.y2a{bottom:686.333333pt;}
.y5a{bottom:694.000000pt;}
.y85{bottom:695.333333pt;}
.y29{bottom:701.666667pt;}
.y53{bottom:709.333333pt;}
.y84{bottom:710.000000pt;}
.y1{bottom:718.333333pt;}
.y28{bottom:724.666667pt;}
.y21{bottom:766.333333pt;}
.h5{height:45.525333pt;}
.h3{height:51.216000pt;}
.h9{height:52.032000pt;}
.h4{height:54.061333pt;}
.h8{height:56.906667pt;}
.ha{height:57.813333pt;}
.h2{height:62.597333pt;}
.h7{height:63.594667pt;}
.h6{height:63.789680pt;}
.h1{height:91.050667pt;}
.h0{height:793.333333pt;}
.w1{width:529.102347pt;}
.w2{width:529.333333pt;}
.w0{width:548.000000pt;}
.x0{left:0.000000pt;}
.x8{left:55.246747pt;}
.x1{left:66.833333pt;}
.x9{left:75.062747pt;}
.x5{left:76.040000pt;}
.xa{left:86.970667pt;}
.xb{left:106.338667pt;}
.x4{left:119.806667pt;}
.x3{left:181.517333pt;}
.x7{left:264.744000pt;}
.x6{left:294.726667pt;}
.x2{left:391.166667pt;}
}




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