
    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_40bb352fc35d0cbc91ec2cbc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_821de62e5b388938f975541d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_efafc556d4ae24eff62e925f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_9ae3721ad6b7b876d0a63604.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_3fafd33bb9bc13eebb46a9af.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_1a8d57b608f8cdcefcd998b6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_960173f51817d3e498802b2f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_bf786e9ba4aebc5ca5bd0bbd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1892e4dada53c996161722a6.woff')format("woff");}.ffa{font-family:ffa;line-height:0.976074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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);}
.m1{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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls32{letter-spacing:-0.579600px;}
.ls8{letter-spacing:-0.570000px;}
.ls6{letter-spacing:-0.463800px;}
.ls31{letter-spacing:-0.326400px;}
.ls7{letter-spacing:-0.310800px;}
.lsd{letter-spacing:-0.303000px;}
.ls34{letter-spacing:-0.240600px;}
.lsb{letter-spacing:-0.226200px;}
.ls30{letter-spacing:-0.175800px;}
.ls5{letter-spacing:-0.132600px;}
.ls15{letter-spacing:-0.115800px;}
.ls2f{letter-spacing:-0.069600px;}
.ls13{letter-spacing:-0.058320px;}
.ls14{letter-spacing:-0.041040px;}
.lsc{letter-spacing:-0.020160px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.038880px;}
.ls2d{letter-spacing:0.050160px;}
.ls1c{letter-spacing:0.060480px;}
.ls21{letter-spacing:0.060600px;}
.ls20{letter-spacing:0.064200px;}
.ls10{letter-spacing:0.066000px;}
.lsf{letter-spacing:0.078000px;}
.ls2b{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.140400px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.174000px;}
.ls23{letter-spacing:0.174240px;}
.ls1a{letter-spacing:0.175200px;}
.ls35{letter-spacing:0.186600px;}
.lse{letter-spacing:0.190200px;}
.ls39{letter-spacing:0.218400px;}
.ls1e{letter-spacing:0.233280px;}
.ls18{letter-spacing:0.243600px;}
.lsa{letter-spacing:0.289200px;}
.ls1f{letter-spacing:0.306000px;}
.ls19{letter-spacing:0.393600px;}
.ls28{letter-spacing:0.416880px;}
.ls1{letter-spacing:0.427680px;}
.ls22{letter-spacing:0.660000px;}
.ls24{letter-spacing:0.661680px;}
.ls17{letter-spacing:0.780000px;}
.ls37{letter-spacing:0.780480px;}
.ls9{letter-spacing:0.930000px;}
.ls2e{letter-spacing:1.026000px;}
.ls33{letter-spacing:1.116000px;}
.ls12{letter-spacing:9.534240px;}
.ls38{letter-spacing:12.186720px;}
.ls11{letter-spacing:25.866720px;}
.ls36{letter-spacing:42.426720px;}
.ls27{letter-spacing:44.070240px;}
.ls1d{letter-spacing:71.598240px;}
.ls2c{letter-spacing:89.430240px;}
.ls2a{letter-spacing:111.750240px;}
.ls29{letter-spacing:113.190240px;}
.ls1b{letter-spacing:128.250720px;}
.ls26{letter-spacing:143.454240px;}
.ls25{letter-spacing:180.150240px;}
.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;}
}
.ws5{word-spacing:-21.930960px;}
.ws6{word-spacing:-21.641760px;}
.ws0{word-spacing:-19.077120px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.837640px;}
.ws4{word-spacing:-14.659440px;}
.ws3{word-spacing:-14.506440px;}
.ws13{word-spacing:-14.165760px;}
.ws10{word-spacing:-13.811760px;}
.wsf{word-spacing:-13.749360px;}
.ws17{word-spacing:-13.724160px;}
.ws16{word-spacing:-13.692360px;}
.wse{word-spacing:-13.646160px;}
.ws11{word-spacing:-13.569960px;}
.ws12{word-spacing:-13.566360px;}
.wsa{word-spacing:-13.505760px;}
.wsd{word-spacing:-13.464720px;}
.wsc{word-spacing:-13.447440px;}
.ws14{word-spacing:-13.436160px;}
.ws15{word-spacing:-13.179360px;}
.ws18{word-spacing:-12.926160px;}
.ws7{word-spacing:-9.437760px;}
.ws8{word-spacing:-8.864880px;}
.ws9{word-spacing:-8.786880px;}
.wsb{word-spacing:0.000000px;}
._1f{margin-left:-532.558560px;}
._20{margin-left:-526.880160px;}
._1{margin-left:-485.718240px;}
._5{margin-left:-407.285280px;}
._8{margin-left:-306.845280px;}
._4{margin-left:-288.311520px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-240.510240px;}
._12{margin-left:-232.410240px;}
._19{margin-left:-230.610240px;}
._17{margin-left:-219.827040px;}
._f{margin-left:-202.146240px;}
._1a{margin-left:-200.031120px;}
._22{margin-left:-190.074240px;}
._e{margin-left:-171.054720px;}
._28{margin-left:-168.498000px;}
._d{margin-left:-165.406320px;}
._25{margin-left:-154.885440px;}
._9{margin-left:-153.774720px;}
._3{margin-left:-150.995040px;}
._14{margin-left:-149.702640px;}
._a{margin-left:-148.605840px;}
._10{margin-left:-145.102800px;}
._27{margin-left:-143.871360px;}
._c{margin-left:-134.192160px;}
._21{margin-left:-133.011360px;}
._11{margin-left:-116.242560px;}
._26{margin-left:-109.042320px;}
._1e{margin-left:-102.349440px;}
._6{margin-left:-91.914480px;}
._7{margin-left:-90.738720px;}
._1d{margin-left:-86.399760px;}
._1c{margin-left:-83.520000px;}
._13{margin-left:-81.963360px;}
._23{margin-left:-80.367360px;}
._16{margin-left:-66.703680px;}
._15{margin-left:-49.190880px;}
._24{margin-left:-34.410240px;}
._1b{margin-left:-32.351040px;}
._2c{margin-left:-8.522640px;}
._38{margin-left:-6.978000px;}
._39{margin-left:-5.537280px;}
._2a{margin-left:-4.526160px;}
._18{margin-left:-2.980800px;}
._2{margin-left:-1.263600px;}
._29{width:1.183320px;}
._2e{width:2.680800px;}
._33{width:4.673160px;}
._34{width:6.035760px;}
._2f{width:7.410240px;}
._30{width:8.808480px;}
._32{width:10.595520px;}
._2b{width:11.874240px;}
._2d{width:13.050480px;}
._31{width:14.516400px;}
._35{width:15.537600px;}
._36{width:17.222760px;}
._37{width:18.246720px;}
._3a{width:19.653000px;}
._3b{width:21.660360px;}
._3d{width:22.737600px;}
._54{width:23.858280px;}
._40{width:24.919200px;}
._4c{width:26.593200px;}
._49{width:28.206720px;}
._48{width:30.477600px;}
._41{width:33.525360px;}
._45{width:35.240520px;}
._4a{width:44.700480px;}
._50{width:49.720320px;}
._4f{width:50.916960px;}
._52{width:54.620640px;}
._3e{width:58.983120px;}
._4e{width:61.920000px;}
._4b{width:78.243120px;}
._4d{width:86.781360px;}
._44{width:91.373040px;}
._3c{width:122.747040px;}
._43{width:124.723800px;}
._46{width:151.679520px;}
._51{width:158.597280px;}
._47{width:166.577040px;}
._3f{width:202.638240px;}
._53{width:207.546480px;}
._42{width:241.251120px;}
._55{width:271.018440px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc3{color:rgb(38,74,96);}
.fc2{color:rgb(1,2,5);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs5{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yaf{bottom:6.480000px;}
.y82{bottom:6.660000px;}
.yfa{bottom:27.540000px;}
.y84{bottom:27.720000px;}
.y101{bottom:27.750000px;}
.ye9{bottom:27.765000px;}
.yac{bottom:30.600000px;}
.yf9{bottom:48.600000px;}
.y88{bottom:48.780000px;}
.y9b{bottom:48.810000px;}
.ye8{bottom:48.825000px;}
.ya9{bottom:51.840000px;}
.y6{bottom:61.560000px;}
.ye0{bottom:69.840000px;}
.ye7{bottom:69.885000px;}
.ye1{bottom:90.900000px;}
.ye6{bottom:90.945000px;}
.y65{bottom:92.160000px;}
.yc9{bottom:95.220000px;}
.y80{bottom:97.020000px;}
.yee{bottom:100.620000px;}
.y10d{bottom:101.160000px;}
.y31{bottom:102.060000px;}
.y73{bottom:104.220000px;}
.y9a{bottom:105.120000px;}
.ydd{bottom:107.280000px;}
.yeb{bottom:111.960000px;}
.ye5{bottom:112.005000px;}
.y64{bottom:113.220000px;}
.yc8{bottom:116.280000px;}
.y7f{bottom:118.080000px;}
.y10c{bottom:122.220000px;}
.y30{bottom:123.120000px;}
.y59{bottom:125.280000px;}
.yb9{bottom:127.620000px;}
.ydc{bottom:128.340000px;}
.ye4{bottom:133.065000px;}
.y63{bottom:134.280000px;}
.yc7{bottom:137.340000px;}
.y7e{bottom:139.140000px;}
.y10b{bottom:143.280000px;}
.y2f{bottom:144.180000px;}
.y58{bottom:146.340000px;}
.yb8{bottom:148.680000px;}
.ydb{bottom:149.400000px;}
.ye3{bottom:154.125000px;}
.y62{bottom:155.370000px;}
.y106{bottom:156.420000px;}
.yc6{bottom:158.430000px;}
.y7d{bottom:160.230000px;}
.yb7{bottom:163.830000px;}
.y10a{bottom:164.370000px;}
.yed{bottom:164.550000px;}
.y2e{bottom:165.270000px;}
.y57{bottom:167.430000px;}
.y99{bottom:169.050000px;}
.yda{bottom:170.490000px;}
.y61{bottom:176.430000px;}
.yff{bottom:177.300000px;}
.y105{bottom:177.480000px;}
.yc5{bottom:179.490000px;}
.y7c{bottom:181.290000px;}
.yb6{bottom:185.610000px;}
.y2d{bottom:186.330000px;}
.y56{bottom:188.490000px;}
.y98{bottom:190.830000px;}
.yd9{bottom:191.550000px;}
.y60{bottom:197.490000px;}
.yfe{bottom:198.360000px;}
.yf5{bottom:198.540000px;}
.yc4{bottom:200.550000px;}
.y7b{bottom:202.350000px;}
.y2c{bottom:207.390000px;}
.y55{bottom:209.550000px;}
.y97{bottom:212.610000px;}
.y5f{bottom:218.550000px;}
.yfd{bottom:219.450000px;}
.y104{bottom:219.600000px;}
.yf4{bottom:219.645000px;}
.y7a{bottom:223.410000px;}
.y2b{bottom:228.450000px;}
.yb5{bottom:229.170000px;}
.y54{bottom:230.610000px;}
.yd8{bottom:233.670000px;}
.yec{bottom:235.110000px;}
.y5e{bottom:239.610000px;}
.yfc{bottom:240.510000px;}
.yf3{bottom:240.705000px;}
.y96{bottom:241.230000px;}
.y109{bottom:243.570000px;}
.y79{bottom:244.470000px;}
.y2a{bottom:249.510000px;}
.yea{bottom:250.230000px;}
.yb4{bottom:251.130000px;}
.y53{bottom:251.670000px;}
.yd7{bottom:254.730000px;}
.y5d{bottom:260.670000px;}
.y95{bottom:262.290000px;}
.y78{bottom:265.530000px;}
.y29{bottom:270.570000px;}
.y52{bottom:272.730000px;}
.yd6{bottom:275.790000px;}
.yb3{bottom:279.570000px;}
.y5c{bottom:281.730000px;}
.y94{bottom:283.350000px;}
.y77{bottom:286.590000px;}
.y28{bottom:291.630000px;}
.y51{bottom:293.790000px;}
.yb2{bottom:294.690000px;}
.yd5{bottom:296.850000px;}
.y5b{bottom:302.790000px;}
.y93{bottom:304.230000px;}
.y108{bottom:307.470000px;}
.y76{bottom:307.650000px;}
.y27{bottom:312.690000px;}
.y50{bottom:314.850000px;}
.yb1{bottom:316.470000px;}
.yd4{bottom:317.910000px;}
.y5a{bottom:323.850000px;}
.y92{bottom:325.290000px;}
.y75{bottom:328.710000px;}
.y26{bottom:333.750000px;}
.y72{bottom:335.910000px;}
.yd3{bottom:338.970000px;}
.y4f{bottom:344.910000px;}
.y74{bottom:345.810000px;}
.y91{bottom:346.350000px;}
.y25{bottom:354.810000px;}
.y71{bottom:356.970000px;}
.y4e{bottom:365.970000px;}
.y90{bottom:367.410000px;}
.yd2{bottom:369.030000px;}
.y107{bottom:371.370000px;}
.y24{bottom:375.870000px;}
.ye2{bottom:377.310000px;}
.y70{bottom:378.030000px;}
.y4d{bottom:387.030000px;}
.y8f{bottom:388.470000px;}
.yd1{bottom:390.090000px;}
.y23{bottom:396.930000px;}
.y6f{bottom:399.090000px;}
.y4c{bottom:408.135000px;}
.y8e{bottom:409.575000px;}
.yd0{bottom:411.195000px;}
.y22{bottom:418.035000px;}
.y6e{bottom:420.195000px;}
.y4b{bottom:429.195000px;}
.y8d{bottom:430.635000px;}
.ycf{bottom:432.255000px;}
.yfb{bottom:435.315000px;}
.y21{bottom:439.095000px;}
.y6d{bottom:441.255000px;}
.y8c{bottom:446.655000px;}
.y4a{bottom:450.255000px;}
.yce{bottom:453.315000px;}
.y20{bottom:460.155000px;}
.y6c{bottom:462.315000px;}
.y8b{bottom:469.155000px;}
.y49{bottom:471.315000px;}
.ycd{bottom:474.375000px;}
.y6b{bottom:483.375000px;}
.y1f{bottom:483.555000px;}
.y8a{bottom:491.655000px;}
.y48{bottom:492.375000px;}
.ycc{bottom:495.435000px;}
.y103{bottom:499.215000px;}
.y1e{bottom:504.435000px;}
.y47{bottom:513.435000px;}
.y89{bottom:514.335000px;}
.ycb{bottom:516.495000px;}
.y6a{bottom:525.495000px;}
.y1d{bottom:534.495000px;}
.y87{bottom:536.835000px;}
.yca{bottom:537.555000px;}
.y69{bottom:546.555000px;}
.y1c{bottom:555.555000px;}
.y102{bottom:563.115000px;}
.y68{bottom:567.615000px;}
.y1b{bottom:576.615000px;}
.y67{bottom:588.675000px;}
.y1a{bottom:597.675000px;}
.y86{bottom:600.015000px;}
.y66{bottom:609.735000px;}
.y19{bottom:618.735000px;}
.y100{bottom:627.015000px;}
.yc3{bottom:630.795000px;}
.y85{bottom:631.515000px;}
.y18{bottom:639.795000px;}
.yc2{bottom:651.885000px;}
.ydf{bottom:652.605000px;}
.y83{bottom:654.225000px;}
.y17{bottom:660.885000px;}
.yc1{bottom:672.945000px;}
.y16{bottom:681.945000px;}
.yf2{bottom:690.945000px;}
.yc0{bottom:694.005000px;}
.y81{bottom:696.345000px;}
.y15{bottom:703.005000px;}
.ybf{bottom:715.065000px;}
.yb0{bottom:717.405000px;}
.y14{bottom:724.065000px;}
.ybe{bottom:736.125000px;}
.yde{bottom:737.565000px;}
.yab{bottom:741.525000px;}
.y13{bottom:745.125000px;}
.yf8{bottom:755.025000px;}
.ybd{bottom:757.005000px;}
.yae{bottom:765.465000px;}
.y46{bottom:766.005000px;}
.y12{bottom:766.185000px;}
.ybc{bottom:778.065000px;}
.y45{bottom:787.065000px;}
.y11{bottom:787.245000px;}
.yad{bottom:789.585000px;}
.ybb{bottom:799.125000px;}
.y44{bottom:808.125000px;}
.y10{bottom:808.305000px;}
.ya8{bottom:813.525000px;}
.yf7{bottom:818.925000px;}
.yba{bottom:820.185000px;}
.y43{bottom:829.185000px;}
.yf{bottom:829.545000px;}
.yaa{bottom:837.645000px;}
.y42{bottom:850.245000px;}
.ye{bottom:852.765000px;}
.y41{bottom:871.305000px;}
.yd{bottom:879.045000px;}
.yf6{bottom:882.825000px;}
.ya7{bottom:889.485000px;}
.y40{bottom:892.365000px;}
.yc{bottom:900.150000px;}
.ya6{bottom:910.590000px;}
.y3f{bottom:913.470000px;}
.yb{bottom:921.210000px;}
.ya5{bottom:931.650000px;}
.y3e{bottom:934.530000px;}
.ya{bottom:937.770000px;}
.yf1{bottom:946.770000px;}
.ya4{bottom:952.710000px;}
.y3d{bottom:955.590000px;}
.y9{bottom:958.110000px;}
.ya3{bottom:973.770000px;}
.y3c{bottom:976.650000px;}
.y8{bottom:982.950000px;}
.ya2{bottom:994.830000px;}
.y3b{bottom:997.710000px;}
.ya1{bottom:1015.890000px;}
.y7{bottom:1016.610000px;}
.y3a{bottom:1018.770000px;}
.yf0{bottom:1031.730000px;}
.ya0{bottom:1036.950000px;}
.y39{bottom:1039.830000px;}
.y5{bottom:1055.310000px;}
.y9f{bottom:1058.010000px;}
.y38{bottom:1060.890000px;}
.y9e{bottom:1073.130000px;}
.y37{bottom:1081.950000px;}
.y4{bottom:1086.090000px;}
.y9d{bottom:1094.910000px;}
.yef{bottom:1095.630000px;}
.y36{bottom:1103.010000px;}
.y3{bottom:1116.870000px;}
.y35{bottom:1124.070000px;}
.y9c{bottom:1137.750000px;}
.y34{bottom:1145.130000px;}
.y2{bottom:1147.500000px;}
.y33{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y32{bottom:1193.220000px;}
.h13{height:20.880000px;}
.hb{height:21.060000px;}
.hd{height:21.096000px;}
.he{height:30.060000px;}
.h7{height:38.671172px;}
.h5{height:41.493516px;}
.hc{height:42.120000px;}
.ha{height:45.637031px;}
.h9{height:59.439023px;}
.h8{height:61.189805px;}
.h19{height:63.000000px;}
.hf{height:63.180000px;}
.h10{height:63.216000px;}
.h3{height:65.884219px;}
.h11{height:66.240000px;}
.h6{height:67.824844px;}
.h12{height:69.120000px;}
.h14{height:84.240000px;}
.h2{height:86.255508px;}
.h4{height:98.051133px;}
.h15{height:105.336000px;}
.h17{height:126.360000px;}
.h16{height:168.510000px;}
.h1a{height:254.910000px;}
.h18{height:255.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2d{width:52.776000px;}
.w18{width:53.460000px;}
.w28{width:54.576000px;}
.w15{width:62.640000px;}
.w14{width:66.096000px;}
.w16{width:79.200000px;}
.w5{width:81.900000px;}
.w7{width:83.376000px;}
.w2f{width:85.320000px;}
.w8{width:93.600000px;}
.w21{width:97.056000px;}
.w1b{width:97.200000px;}
.w23{width:97.956000px;}
.w17{width:98.316000px;}
.w1c{width:99.036000px;}
.w24{width:100.440000px;}
.w25{width:100.620000px;}
.w1d{width:101.160000px;}
.w1e{width:103.716000px;}
.w1f{width:103.860000px;}
.w19{width:104.076000px;}
.w10{width:105.336000px;}
.w26{width:108.036000px;}
.wa{width:110.880000px;}
.w9{width:110.916000px;}
.wb{width:111.816000px;}
.wd{width:113.436000px;}
.w2b{width:113.976000px;}
.wf{width:114.480000px;}
.we{width:115.596000px;}
.w20{width:116.316000px;}
.w2a{width:120.780000px;}
.w4{width:124.236000px;}
.w22{width:124.416000px;}
.w13{width:127.800000px;}
.w2c{width:134.316000px;}
.w2e{width:149.436000px;}
.w29{width:154.650000px;}
.w11{width:157.530000px;}
.w12{width:179.130000px;}
.w3{width:207.570000px;}
.wc{width:451.005000px;}
.w30{width:463.965000px;}
.w6{width:515.085000px;}
.w1a{width:603.645000px;}
.w27{width:736.560000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:4.500000px;}
.x15{left:7.740000px;}
.x1a{left:21.234000px;}
.xd{left:25.740000px;}
.x30{left:37.800000px;}
.x6{left:53.999987px;}
.x27{left:59.040000px;}
.x22{left:68.939987px;}
.x13{left:75.239987px;}
.x2e{left:76.860000px;}
.x36{left:78.300000px;}
.x26{left:80.999987px;}
.x8{left:86.075987px;}
.x24{left:102.275987px;}
.x7{left:108.035987px;}
.x25{left:122.975987px;}
.x37{left:133.596000px;}
.x21{left:144.756000px;}
.x19{left:146.376000px;}
.x23{left:162.029987px;}
.x5{left:176.429987px;}
.x28{left:183.090000px;}
.xc{left:189.030000px;}
.x20{left:199.830000px;}
.x2f{left:201.990000px;}
.x14{left:221.070000px;}
.xa{left:245.729987px;}
.x3{left:271.514987px;}
.x3c{left:273.495000px;}
.x29{left:282.855000px;}
.x38{left:288.975000px;}
.x31{left:300.855000px;}
.x1b{left:306.795000px;}
.xf{left:314.715000px;}
.x16{left:335.235000px;}
.x2{left:350.534987px;}
.x3d{left:359.535000px;}
.x10{left:367.455000px;}
.x2a{left:384.915000px;}
.x1f{left:387.615000px;}
.x32{left:402.015000px;}
.x39{left:410.475000px;}
.x4{left:418.394987px;}
.x17{left:451.545000px;}
.xb{left:473.504987px;}
.x1{left:478.544987px;}
.x11{left:479.985000px;}
.x1c{left:487.365000px;}
.x2b{left:489.345000px;}
.x33{left:508.065000px;}
.x3a{left:525.165000px;}
.x18{left:566.745000px;}
.x12{left:592.305000px;}
.x2c{left:593.925000px;}
.x34{left:609.405000px;}
.x1d{left:616.605000px;}
.x3b{left:660.210000px;}
.x1e{left:684.150000px;}
.x9{left:701.969987px;}
.x35{left:708.270000px;}
.x2d{left:710.970000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls32{letter-spacing:-0.515200pt;}
.ls8{letter-spacing:-0.506667pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls31{letter-spacing:-0.290133pt;}
.ls7{letter-spacing:-0.276267pt;}
.lsd{letter-spacing:-0.269333pt;}
.ls34{letter-spacing:-0.213867pt;}
.lsb{letter-spacing:-0.201067pt;}
.ls30{letter-spacing:-0.156267pt;}
.ls5{letter-spacing:-0.117867pt;}
.ls15{letter-spacing:-0.102933pt;}
.ls2f{letter-spacing:-0.061867pt;}
.ls13{letter-spacing:-0.051840pt;}
.ls14{letter-spacing:-0.036480pt;}
.lsc{letter-spacing:-0.017920pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.034560pt;}
.ls2d{letter-spacing:0.044587pt;}
.ls1c{letter-spacing:0.053760pt;}
.ls21{letter-spacing:0.053867pt;}
.ls20{letter-spacing:0.057067pt;}
.ls10{letter-spacing:0.058667pt;}
.lsf{letter-spacing:0.069333pt;}
.ls2b{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.124800pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.154667pt;}
.ls23{letter-spacing:0.154880pt;}
.ls1a{letter-spacing:0.155733pt;}
.ls35{letter-spacing:0.165867pt;}
.lse{letter-spacing:0.169067pt;}
.ls39{letter-spacing:0.194133pt;}
.ls1e{letter-spacing:0.207360pt;}
.ls18{letter-spacing:0.216533pt;}
.lsa{letter-spacing:0.257067pt;}
.ls1f{letter-spacing:0.272000pt;}
.ls19{letter-spacing:0.349867pt;}
.ls28{letter-spacing:0.370560pt;}
.ls1{letter-spacing:0.380160pt;}
.ls22{letter-spacing:0.586667pt;}
.ls24{letter-spacing:0.588160pt;}
.ls17{letter-spacing:0.693333pt;}
.ls37{letter-spacing:0.693760pt;}
.ls9{letter-spacing:0.826667pt;}
.ls2e{letter-spacing:0.912000pt;}
.ls33{letter-spacing:0.992000pt;}
.ls12{letter-spacing:8.474880pt;}
.ls38{letter-spacing:10.832640pt;}
.ls11{letter-spacing:22.992640pt;}
.ls36{letter-spacing:37.712640pt;}
.ls27{letter-spacing:39.173547pt;}
.ls1d{letter-spacing:63.642880pt;}
.ls2c{letter-spacing:79.493547pt;}
.ls2a{letter-spacing:99.333547pt;}
.ls29{letter-spacing:100.613547pt;}
.ls1b{letter-spacing:114.000640pt;}
.ls26{letter-spacing:127.514880pt;}
.ls25{letter-spacing:160.133547pt;}
.ws5{word-spacing:-19.494187pt;}
.ws6{word-spacing:-19.237120pt;}
.ws0{word-spacing:-16.957440pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.189013pt;}
.ws4{word-spacing:-13.030613pt;}
.ws3{word-spacing:-12.894613pt;}
.ws13{word-spacing:-12.591787pt;}
.ws10{word-spacing:-12.277120pt;}
.wsf{word-spacing:-12.221653pt;}
.ws17{word-spacing:-12.199253pt;}
.ws16{word-spacing:-12.170987pt;}
.wse{word-spacing:-12.129920pt;}
.ws11{word-spacing:-12.062187pt;}
.ws12{word-spacing:-12.058987pt;}
.wsa{word-spacing:-12.005120pt;}
.wsd{word-spacing:-11.968640pt;}
.wsc{word-spacing:-11.953280pt;}
.ws14{word-spacing:-11.943253pt;}
.ws15{word-spacing:-11.714987pt;}
.ws18{word-spacing:-11.489920pt;}
.ws7{word-spacing:-8.389120pt;}
.ws8{word-spacing:-7.879893pt;}
.ws9{word-spacing:-7.810560pt;}
.wsb{word-spacing:0.000000pt;}
._1f{margin-left:-473.385387pt;}
._20{margin-left:-468.337920pt;}
._1{margin-left:-431.749547pt;}
._5{margin-left:-362.031360pt;}
._8{margin-left:-272.751360pt;}
._4{margin-left:-256.276907pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-213.786880pt;}
._12{margin-left:-206.586880pt;}
._19{margin-left:-204.986880pt;}
._17{margin-left:-195.401813pt;}
._f{margin-left:-179.685547pt;}
._1a{margin-left:-177.805440pt;}
._22{margin-left:-168.954880pt;}
._e{margin-left:-152.048640pt;}
._28{margin-left:-149.776000pt;}
._d{margin-left:-147.027840pt;}
._25{margin-left:-137.675947pt;}
._9{margin-left:-136.688640pt;}
._3{margin-left:-134.217813pt;}
._14{margin-left:-133.069013pt;}
._a{margin-left:-132.094080pt;}
._10{margin-left:-128.980267pt;}
._27{margin-left:-127.885653pt;}
._c{margin-left:-119.281920pt;}
._21{margin-left:-118.232320pt;}
._11{margin-left:-103.326720pt;}
._26{margin-left:-96.926507pt;}
._1e{margin-left:-90.977280pt;}
._6{margin-left:-81.701760pt;}
._7{margin-left:-80.656640pt;}
._1d{margin-left:-76.799787pt;}
._1c{margin-left:-74.240000pt;}
._13{margin-left:-72.856320pt;}
._23{margin-left:-71.437653pt;}
._16{margin-left:-59.292160pt;}
._15{margin-left:-43.725227pt;}
._24{margin-left:-30.586880pt;}
._1b{margin-left:-28.756480pt;}
._2c{margin-left:-7.575680pt;}
._38{margin-left:-6.202667pt;}
._39{margin-left:-4.922027pt;}
._2a{margin-left:-4.023253pt;}
._18{margin-left:-2.649600pt;}
._2{margin-left:-1.123200pt;}
._29{width:1.051840pt;}
._2e{width:2.382933pt;}
._33{width:4.153920pt;}
._34{width:5.365120pt;}
._2f{width:6.586880pt;}
._30{width:7.829760pt;}
._32{width:9.418240pt;}
._2b{width:10.554880pt;}
._2d{width:11.600427pt;}
._31{width:12.903467pt;}
._35{width:13.811200pt;}
._36{width:15.309120pt;}
._37{width:16.219307pt;}
._3a{width:17.469333pt;}
._3b{width:19.253653pt;}
._3d{width:20.211200pt;}
._54{width:21.207360pt;}
._40{width:22.150400pt;}
._4c{width:23.638400pt;}
._49{width:25.072640pt;}
._48{width:27.091200pt;}
._41{width:29.800320pt;}
._45{width:31.324907pt;}
._4a{width:39.733760pt;}
._50{width:44.195840pt;}
._4f{width:45.259520pt;}
._52{width:48.551680pt;}
._3e{width:52.429440pt;}
._4e{width:55.040000pt;}
._4b{width:69.549440pt;}
._4d{width:77.138987pt;}
._44{width:81.220480pt;}
._3c{width:109.108480pt;}
._43{width:110.865600pt;}
._46{width:134.826240pt;}
._51{width:140.975360pt;}
._47{width:148.068480pt;}
._3f{width:180.122880pt;}
._53{width:184.485760pt;}
._42{width:214.445440pt;}
._55{width:240.905280pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yaf{bottom:5.760000pt;}
.y82{bottom:5.920000pt;}
.yfa{bottom:24.480000pt;}
.y84{bottom:24.640000pt;}
.y101{bottom:24.666667pt;}
.ye9{bottom:24.680000pt;}
.yac{bottom:27.200000pt;}
.yf9{bottom:43.200000pt;}
.y88{bottom:43.360000pt;}
.y9b{bottom:43.386667pt;}
.ye8{bottom:43.400000pt;}
.ya9{bottom:46.080000pt;}
.y6{bottom:54.720000pt;}
.ye0{bottom:62.080000pt;}
.ye7{bottom:62.120000pt;}
.ye1{bottom:80.800000pt;}
.ye6{bottom:80.840000pt;}
.y65{bottom:81.920000pt;}
.yc9{bottom:84.640000pt;}
.y80{bottom:86.240000pt;}
.yee{bottom:89.440000pt;}
.y10d{bottom:89.920000pt;}
.y31{bottom:90.720000pt;}
.y73{bottom:92.640000pt;}
.y9a{bottom:93.440000pt;}
.ydd{bottom:95.360000pt;}
.yeb{bottom:99.520000pt;}
.ye5{bottom:99.560000pt;}
.y64{bottom:100.640000pt;}
.yc8{bottom:103.360000pt;}
.y7f{bottom:104.960000pt;}
.y10c{bottom:108.640000pt;}
.y30{bottom:109.440000pt;}
.y59{bottom:111.360000pt;}
.yb9{bottom:113.440000pt;}
.ydc{bottom:114.080000pt;}
.ye4{bottom:118.280000pt;}
.y63{bottom:119.360000pt;}
.yc7{bottom:122.080000pt;}
.y7e{bottom:123.680000pt;}
.y10b{bottom:127.360000pt;}
.y2f{bottom:128.160000pt;}
.y58{bottom:130.080000pt;}
.yb8{bottom:132.160000pt;}
.ydb{bottom:132.800000pt;}
.ye3{bottom:137.000000pt;}
.y62{bottom:138.106667pt;}
.y106{bottom:139.040000pt;}
.yc6{bottom:140.826667pt;}
.y7d{bottom:142.426667pt;}
.yb7{bottom:145.626667pt;}
.y10a{bottom:146.106667pt;}
.yed{bottom:146.266667pt;}
.y2e{bottom:146.906667pt;}
.y57{bottom:148.826667pt;}
.y99{bottom:150.266667pt;}
.yda{bottom:151.546667pt;}
.y61{bottom:156.826667pt;}
.yff{bottom:157.600000pt;}
.y105{bottom:157.760000pt;}
.yc5{bottom:159.546667pt;}
.y7c{bottom:161.146667pt;}
.yb6{bottom:164.986667pt;}
.y2d{bottom:165.626667pt;}
.y56{bottom:167.546667pt;}
.y98{bottom:169.626667pt;}
.yd9{bottom:170.266667pt;}
.y60{bottom:175.546667pt;}
.yfe{bottom:176.320000pt;}
.yf5{bottom:176.480000pt;}
.yc4{bottom:178.266667pt;}
.y7b{bottom:179.866667pt;}
.y2c{bottom:184.346667pt;}
.y55{bottom:186.266667pt;}
.y97{bottom:188.986667pt;}
.y5f{bottom:194.266667pt;}
.yfd{bottom:195.066667pt;}
.y104{bottom:195.200000pt;}
.yf4{bottom:195.240000pt;}
.y7a{bottom:198.586667pt;}
.y2b{bottom:203.066667pt;}
.yb5{bottom:203.706667pt;}
.y54{bottom:204.986667pt;}
.yd8{bottom:207.706667pt;}
.yec{bottom:208.986667pt;}
.y5e{bottom:212.986667pt;}
.yfc{bottom:213.786667pt;}
.yf3{bottom:213.960000pt;}
.y96{bottom:214.426667pt;}
.y109{bottom:216.506667pt;}
.y79{bottom:217.306667pt;}
.y2a{bottom:221.786667pt;}
.yea{bottom:222.426667pt;}
.yb4{bottom:223.226667pt;}
.y53{bottom:223.706667pt;}
.yd7{bottom:226.426667pt;}
.y5d{bottom:231.706667pt;}
.y95{bottom:233.146667pt;}
.y78{bottom:236.026667pt;}
.y29{bottom:240.506667pt;}
.y52{bottom:242.426667pt;}
.yd6{bottom:245.146667pt;}
.yb3{bottom:248.506667pt;}
.y5c{bottom:250.426667pt;}
.y94{bottom:251.866667pt;}
.y77{bottom:254.746667pt;}
.y28{bottom:259.226667pt;}
.y51{bottom:261.146667pt;}
.yb2{bottom:261.946667pt;}
.yd5{bottom:263.866667pt;}
.y5b{bottom:269.146667pt;}
.y93{bottom:270.426667pt;}
.y108{bottom:273.306667pt;}
.y76{bottom:273.466667pt;}
.y27{bottom:277.946667pt;}
.y50{bottom:279.866667pt;}
.yb1{bottom:281.306667pt;}
.yd4{bottom:282.586667pt;}
.y5a{bottom:287.866667pt;}
.y92{bottom:289.146667pt;}
.y75{bottom:292.186667pt;}
.y26{bottom:296.666667pt;}
.y72{bottom:298.586667pt;}
.yd3{bottom:301.306667pt;}
.y4f{bottom:306.586667pt;}
.y74{bottom:307.386667pt;}
.y91{bottom:307.866667pt;}
.y25{bottom:315.386667pt;}
.y71{bottom:317.306667pt;}
.y4e{bottom:325.306667pt;}
.y90{bottom:326.586667pt;}
.yd2{bottom:328.026667pt;}
.y107{bottom:330.106667pt;}
.y24{bottom:334.106667pt;}
.ye2{bottom:335.386667pt;}
.y70{bottom:336.026667pt;}
.y4d{bottom:344.026667pt;}
.y8f{bottom:345.306667pt;}
.yd1{bottom:346.746667pt;}
.y23{bottom:352.826667pt;}
.y6f{bottom:354.746667pt;}
.y4c{bottom:362.786667pt;}
.y8e{bottom:364.066667pt;}
.yd0{bottom:365.506667pt;}
.y22{bottom:371.586667pt;}
.y6e{bottom:373.506667pt;}
.y4b{bottom:381.506667pt;}
.y8d{bottom:382.786667pt;}
.ycf{bottom:384.226667pt;}
.yfb{bottom:386.946667pt;}
.y21{bottom:390.306667pt;}
.y6d{bottom:392.226667pt;}
.y8c{bottom:397.026667pt;}
.y4a{bottom:400.226667pt;}
.yce{bottom:402.946667pt;}
.y20{bottom:409.026667pt;}
.y6c{bottom:410.946667pt;}
.y8b{bottom:417.026667pt;}
.y49{bottom:418.946667pt;}
.ycd{bottom:421.666667pt;}
.y6b{bottom:429.666667pt;}
.y1f{bottom:429.826667pt;}
.y8a{bottom:437.026667pt;}
.y48{bottom:437.666667pt;}
.ycc{bottom:440.386667pt;}
.y103{bottom:443.746667pt;}
.y1e{bottom:448.386667pt;}
.y47{bottom:456.386667pt;}
.y89{bottom:457.186667pt;}
.ycb{bottom:459.106667pt;}
.y6a{bottom:467.106667pt;}
.y1d{bottom:475.106667pt;}
.y87{bottom:477.186667pt;}
.yca{bottom:477.826667pt;}
.y69{bottom:485.826667pt;}
.y1c{bottom:493.826667pt;}
.y102{bottom:500.546667pt;}
.y68{bottom:504.546667pt;}
.y1b{bottom:512.546667pt;}
.y67{bottom:523.266667pt;}
.y1a{bottom:531.266667pt;}
.y86{bottom:533.346667pt;}
.y66{bottom:541.986667pt;}
.y19{bottom:549.986667pt;}
.y100{bottom:557.346667pt;}
.yc3{bottom:560.706667pt;}
.y85{bottom:561.346667pt;}
.y18{bottom:568.706667pt;}
.yc2{bottom:579.453333pt;}
.ydf{bottom:580.093333pt;}
.y83{bottom:581.533333pt;}
.y17{bottom:587.453333pt;}
.yc1{bottom:598.173333pt;}
.y16{bottom:606.173333pt;}
.yf2{bottom:614.173333pt;}
.yc0{bottom:616.893333pt;}
.y81{bottom:618.973333pt;}
.y15{bottom:624.893333pt;}
.ybf{bottom:635.613333pt;}
.yb0{bottom:637.693333pt;}
.y14{bottom:643.613333pt;}
.ybe{bottom:654.333333pt;}
.yde{bottom:655.613333pt;}
.yab{bottom:659.133333pt;}
.y13{bottom:662.333333pt;}
.yf8{bottom:671.133333pt;}
.ybd{bottom:672.893333pt;}
.yae{bottom:680.413333pt;}
.y46{bottom:680.893333pt;}
.y12{bottom:681.053333pt;}
.ybc{bottom:691.613333pt;}
.y45{bottom:699.613333pt;}
.y11{bottom:699.773333pt;}
.yad{bottom:701.853333pt;}
.ybb{bottom:710.333333pt;}
.y44{bottom:718.333333pt;}
.y10{bottom:718.493333pt;}
.ya8{bottom:723.133333pt;}
.yf7{bottom:727.933333pt;}
.yba{bottom:729.053333pt;}
.y43{bottom:737.053333pt;}
.yf{bottom:737.373333pt;}
.yaa{bottom:744.573333pt;}
.y42{bottom:755.773333pt;}
.ye{bottom:758.013333pt;}
.y41{bottom:774.493333pt;}
.yd{bottom:781.373333pt;}
.yf6{bottom:784.733333pt;}
.ya7{bottom:790.653333pt;}
.y40{bottom:793.213333pt;}
.yc{bottom:800.133333pt;}
.ya6{bottom:809.413333pt;}
.y3f{bottom:811.973333pt;}
.yb{bottom:818.853333pt;}
.ya5{bottom:828.133333pt;}
.y3e{bottom:830.693333pt;}
.ya{bottom:833.573333pt;}
.yf1{bottom:841.573333pt;}
.ya4{bottom:846.853333pt;}
.y3d{bottom:849.413333pt;}
.y9{bottom:851.653333pt;}
.ya3{bottom:865.573333pt;}
.y3c{bottom:868.133333pt;}
.y8{bottom:873.733333pt;}
.ya2{bottom:884.293333pt;}
.y3b{bottom:886.853333pt;}
.ya1{bottom:903.013333pt;}
.y7{bottom:903.653333pt;}
.y3a{bottom:905.573333pt;}
.yf0{bottom:917.093333pt;}
.ya0{bottom:921.733333pt;}
.y39{bottom:924.293333pt;}
.y5{bottom:938.053333pt;}
.y9f{bottom:940.453333pt;}
.y38{bottom:943.013333pt;}
.y9e{bottom:953.893333pt;}
.y37{bottom:961.733333pt;}
.y4{bottom:965.413333pt;}
.y9d{bottom:973.253333pt;}
.yef{bottom:973.893333pt;}
.y36{bottom:980.453333pt;}
.y3{bottom:992.773333pt;}
.y35{bottom:999.173333pt;}
.y9c{bottom:1011.333333pt;}
.y34{bottom:1017.893333pt;}
.y2{bottom:1020.000000pt;}
.y33{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y32{bottom:1060.640000pt;}
.h13{height:18.560000pt;}
.hb{height:18.720000pt;}
.hd{height:18.752000pt;}
.he{height:26.720000pt;}
.h7{height:34.374375pt;}
.h5{height:36.883125pt;}
.hc{height:37.440000pt;}
.ha{height:40.566250pt;}
.h9{height:52.834688pt;}
.h8{height:54.390938pt;}
.h19{height:56.000000pt;}
.hf{height:56.160000pt;}
.h10{height:56.192000pt;}
.h3{height:58.563750pt;}
.h11{height:58.880000pt;}
.h6{height:60.288750pt;}
.h12{height:61.440000pt;}
.h14{height:74.880000pt;}
.h2{height:76.671562pt;}
.h4{height:87.156562pt;}
.h15{height:93.632000pt;}
.h17{height:112.320000pt;}
.h16{height:149.786667pt;}
.h1a{height:226.586667pt;}
.h18{height:226.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2d{width:46.912000pt;}
.w18{width:47.520000pt;}
.w28{width:48.512000pt;}
.w15{width:55.680000pt;}
.w14{width:58.752000pt;}
.w16{width:70.400000pt;}
.w5{width:72.800000pt;}
.w7{width:74.112000pt;}
.w2f{width:75.840000pt;}
.w8{width:83.200000pt;}
.w21{width:86.272000pt;}
.w1b{width:86.400000pt;}
.w23{width:87.072000pt;}
.w17{width:87.392000pt;}
.w1c{width:88.032000pt;}
.w24{width:89.280000pt;}
.w25{width:89.440000pt;}
.w1d{width:89.920000pt;}
.w1e{width:92.192000pt;}
.w1f{width:92.320000pt;}
.w19{width:92.512000pt;}
.w10{width:93.632000pt;}
.w26{width:96.032000pt;}
.wa{width:98.560000pt;}
.w9{width:98.592000pt;}
.wb{width:99.392000pt;}
.wd{width:100.832000pt;}
.w2b{width:101.312000pt;}
.wf{width:101.760000pt;}
.we{width:102.752000pt;}
.w20{width:103.392000pt;}
.w2a{width:107.360000pt;}
.w4{width:110.432000pt;}
.w22{width:110.592000pt;}
.w13{width:113.600000pt;}
.w2c{width:119.392000pt;}
.w2e{width:132.832000pt;}
.w29{width:137.466667pt;}
.w11{width:140.026667pt;}
.w12{width:159.226667pt;}
.w3{width:184.506667pt;}
.wc{width:400.893333pt;}
.w30{width:412.413333pt;}
.w6{width:457.853333pt;}
.w1a{width:536.573333pt;}
.w27{width:654.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:4.000000pt;}
.x15{left:6.880000pt;}
.x1a{left:18.874667pt;}
.xd{left:22.880000pt;}
.x30{left:33.600000pt;}
.x6{left:47.999988pt;}
.x27{left:52.480000pt;}
.x22{left:61.279988pt;}
.x13{left:66.879988pt;}
.x2e{left:68.320000pt;}
.x36{left:69.600000pt;}
.x26{left:71.999988pt;}
.x8{left:76.511988pt;}
.x24{left:90.911988pt;}
.x7{left:96.031988pt;}
.x25{left:109.311988pt;}
.x37{left:118.752000pt;}
.x21{left:128.672000pt;}
.x19{left:130.112000pt;}
.x23{left:144.026655pt;}
.x5{left:156.826655pt;}
.x28{left:162.746667pt;}
.xc{left:168.026667pt;}
.x20{left:177.626667pt;}
.x2f{left:179.546667pt;}
.x14{left:196.506667pt;}
.xa{left:218.426655pt;}
.x3{left:241.346655pt;}
.x3c{left:243.106667pt;}
.x29{left:251.426667pt;}
.x38{left:256.866667pt;}
.x31{left:267.426667pt;}
.x1b{left:272.706667pt;}
.xf{left:279.746667pt;}
.x16{left:297.986667pt;}
.x2{left:311.586655pt;}
.x3d{left:319.586667pt;}
.x10{left:326.626667pt;}
.x2a{left:342.146667pt;}
.x1f{left:344.546667pt;}
.x32{left:357.346667pt;}
.x39{left:364.866667pt;}
.x4{left:371.906655pt;}
.x17{left:401.373333pt;}
.xb{left:420.893322pt;}
.x1{left:425.373322pt;}
.x11{left:426.653333pt;}
.x1c{left:433.213333pt;}
.x2b{left:434.973333pt;}
.x33{left:451.613333pt;}
.x3a{left:466.813333pt;}
.x18{left:503.773333pt;}
.x12{left:526.493333pt;}
.x2c{left:527.933333pt;}
.x34{left:541.693333pt;}
.x1d{left:548.093333pt;}
.x3b{left:586.853333pt;}
.x1e{left:608.133333pt;}
.x9{left:623.973322pt;}
.x35{left:629.573333pt;}
.x2d{left:631.973333pt;}
}




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