
    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_c5e758f702a098f0930a80fd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.201172;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_2a9893d0ffd918fc3ca351e6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_46039feaed06049902fd2c1c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_7e97cccbf82e17c346897453.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_26ce5bb8af2a84c12c4351e6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_1566a6e85657dd2442ee4b69.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_24541e319a9d75d99f162d4e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.944336;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_8d4bcdf50c93e56c938b0ce1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.201172;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_1be3042981fefc1d612e1525.woff')format("woff");}.ffb{font-family:ffb;line-height:0.921387;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:ffc;src:url('chunks/assets/font_58f8d0d3661028bcee1c6129.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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:ffd;src:url('chunks/assets/font_4d01f588dab7f75b6d764eef.woff')format("woff");}.ffd{font-family:ffd;line-height:0.920410;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:ffe;src:url('chunks/assets/font_b3094c9fe33b3de24f3aeea3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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);}
.v4{vertical-align:-18.000000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:13.500000px;}
.v1{vertical-align:18.000000px;}
.ls1b{letter-spacing:-2.250000px;}
.ls13{letter-spacing:-1.740000px;}
.ls16{letter-spacing:-1.494000px;}
.ls11{letter-spacing:-1.128000px;}
.ls12{letter-spacing:-1.026000px;}
.ls10{letter-spacing:-0.978000px;}
.lsd{letter-spacing:-0.792000px;}
.ls17{letter-spacing:-0.618000px;}
.lsc{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.lse{letter-spacing:0.690000px;}
.ls15{letter-spacing:0.768000px;}
.ls14{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.536000px;}
.lsf{letter-spacing:1.854000px;}
.ls4{letter-spacing:1.966500px;}
.ls3{letter-spacing:2.026500px;}
.ls2{letter-spacing:2.034000px;}
.ls5{letter-spacing:2.086500px;}
.ls8{letter-spacing:2.164500px;}
.ls9{letter-spacing:2.220000px;}
.ls6{letter-spacing:2.250000px;}
.ls18{letter-spacing:2.310000px;}
.ls19{letter-spacing:2.370000px;}
.ls7{letter-spacing:2.430000px;}
.ls1a{letter-spacing:5.526000px;}
.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;}
}
.ws6{word-spacing:-16.875000px;}
.ws7{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws1{word-spacing:-15.768000px;}
.ws10{word-spacing:-15.651000px;}
.wsd{word-spacing:-15.393000px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.wse{word-spacing:-14.007000px;}
.wsa{word-spacing:-13.599000px;}
.wsc{word-spacing:-13.131000px;}
.wsb{word-spacing:-12.885000px;}
.wsf{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.ws8{word-spacing:-10.125000px;}
.ws4{word-spacing:-8.136000px;}
.ws11{word-spacing:-7.875000px;}
.ws9{word-spacing:0.000000px;}
._7{margin-left:-10.449300px;}
._14{margin-left:-7.650900px;}
._6{margin-left:-5.621100px;}
._b{margin-left:-3.529500px;}
._1{margin-left:-2.430000px;}
._2{margin-left:-1.302000px;}
._0{width:1.404000px;}
._3{width:2.646000px;}
._4{width:4.182000px;}
._9{width:5.536500px;}
._13{width:6.780600px;}
._a{width:7.828500px;}
._12{width:8.847000px;}
._5{width:9.900000px;}
._c{width:11.542500px;}
._d{width:13.177500px;}
._8{width:14.517000px;}
._17{width:16.155000px;}
._11{width:17.284500px;}
._15{width:20.652000px;}
._10{width:22.053000px;}
._f{width:25.317000px;}
._16{width:26.362500px;}
._e{width:30.714000px;}
._18{width:48.679500px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs6{font-size:36.000000px;}
.fs5{font-size:40.500000px;}
.fs2{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:58.500000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:3.360000px;}
.y46{bottom:3.375000px;}
.y12b{bottom:3.382500px;}
.y9d{bottom:3.390000px;}
.ya0{bottom:3.405000px;}
.y4{bottom:3.412500px;}
.y42{bottom:3.420000px;}
.y11b{bottom:4.485000px;}
.yc7{bottom:4.500000px;}
.y101{bottom:4.507500px;}
.yd9{bottom:4.515000px;}
.yc9{bottom:4.530000px;}
.ydc{bottom:4.545000px;}
.y6{bottom:9.000000px;}
.yf{bottom:11.250000px;}
.y1e{bottom:12.375000px;}
.yd{bottom:13.530000px;}
.ye1{bottom:18.000000px;}
.ye6{bottom:18.030000px;}
.yf1{bottom:20.250000px;}
.y12a{bottom:20.280000px;}
.y3{bottom:20.287500px;}
.y41{bottom:20.295000px;}
.y11a{bottom:21.360000px;}
.yc6{bottom:21.375000px;}
.y45{bottom:21.390000px;}
.ya2{bottom:21.405000px;}
.y12c{bottom:21.412500px;}
.y97{bottom:21.420000px;}
.y44{bottom:23.625000px;}
.y1b{bottom:23.655000px;}
.yc{bottom:30.405000px;}
.y1{bottom:31.500000px;}
.y5{bottom:32.662500px;}
.y2{bottom:37.162500px;}
.y40{bottom:38.295000px;}
.ybc{bottom:39.405000px;}
.yc1{bottom:39.412500px;}
.y9b{bottom:39.420000px;}
.ycb{bottom:40.530000px;}
.ycf{bottom:40.545000px;}
.y1a{bottom:43.905000px;}
.yb{bottom:46.155000px;}
.y3f{bottom:55.200000px;}
.ya6{bottom:57.420000px;}
.y10d{bottom:57.450000px;}
.yf7{bottom:58.545000px;}
.y124{bottom:58.575000px;}
.y19{bottom:60.825000px;}
.y3e{bottom:72.075000px;}
.ya{bottom:73.185000px;}
.yae{bottom:75.450000px;}
.y18{bottom:76.575000px;}
.y17{bottom:86.700000px;}
.y3d{bottom:88.995000px;}
.y9{bottom:93.480000px;}
.y56{bottom:99.075000px;}
.y176{bottom:100.200000px;}
.y16{bottom:101.355000px;}
.y95{bottom:104.700000px;}
.y3c{bottom:106.995000px;}
.yc4{bottom:109.200000px;}
.y8{bottom:110.355000px;}
.y102{bottom:111.450000px;}
.y15d{bottom:114.825000px;}
.y55{bottom:115.950000px;}
.y15{bottom:115.980000px;}
.y175{bottom:117.075000px;}
.y94{bottom:122.737500px;}
.yc3{bottom:123.862500px;}
.y3b{bottom:123.870000px;}
.y103{bottom:129.487500px;}
.y15c{bottom:131.737500px;}
.y174{bottom:132.862500px;}
.y54{bottom:133.987500px;}
.y14{bottom:135.105000px;}
.y93{bottom:139.612500px;}
.y3a{bottom:140.790000px;}
.yc0{bottom:141.862500px;}
.y2d{bottom:143.040000px;}
.y100{bottom:147.487500px;}
.y15b{bottom:149.737500px;}
.y53{bottom:150.870000px;}
.y92{bottom:156.480000px;}
.y2c{bottom:157.665000px;}
.y39{bottom:158.775000px;}
.yc2{bottom:159.900000px;}
.y13{bottom:161.025000px;}
.yff{bottom:165.525000px;}
.y15a{bottom:166.650000px;}
.y52{bottom:167.775000px;}
.y91{bottom:174.525000px;}
.y2b{bottom:174.570000px;}
.y38{bottom:175.695000px;}
.ybf{bottom:177.900000px;}
.y173{bottom:182.400000px;}
.yfd{bottom:183.525000px;}
.y51{bottom:185.775000px;}
.y12{bottom:186.930000px;}
.y90{bottom:191.400000px;}
.y2a{bottom:192.570000px;}
.ybe{bottom:195.900000px;}
.y172{bottom:199.275000px;}
.yfe{bottom:201.570000px;}
.y50{bottom:202.695000px;}
.y8f{bottom:208.320000px;}
.y29{bottom:209.445000px;}
.y37{bottom:210.570000px;}
.y11{bottom:211.680000px;}
.ybb{bottom:213.945000px;}
.y171{bottom:215.070000px;}
.y159{bottom:218.445000px;}
.y4f{bottom:219.570000px;}
.y8e{bottom:226.320000px;}
.y28{bottom:226.365000px;}
.y36{bottom:227.490000px;}
.ybd{bottom:231.945000px;}
.y158{bottom:235.320000px;}
.y4e{bottom:237.570000px;}
.y8d{bottom:243.225000px;}
.y27{bottom:243.240000px;}
.y35{bottom:244.365000px;}
.y170{bottom:247.725000px;}
.yba{bottom:249.975000px;}
.y157{bottom:253.350000px;}
.y4d{bottom:254.475000px;}
.yfb{bottom:255.600000px;}
.y26{bottom:259.020000px;}
.y8c{bottom:260.100000px;}
.y34{bottom:262.395000px;}
.y16f{bottom:264.600000px;}
.yb9{bottom:267.975000px;}
.y156{bottom:270.225000px;}
.y4c{bottom:271.350000px;}
.yfc{bottom:273.600000px;}
.y129{bottom:275.850000px;}
.y25{bottom:275.895000px;}
.y8b{bottom:278.100000px;}
.y33{bottom:279.270000px;}
.y16e{bottom:280.350000px;}
.yb8{bottom:286.005000px;}
.y155{bottom:287.130000px;}
.y4b{bottom:289.380000px;}
.yfa{bottom:291.630000px;}
.y24{bottom:291.645000px;}
.y128{bottom:293.880000px;}
.y8a{bottom:295.020000px;}
.y32{bottom:296.190000px;}
.y16d{bottom:297.255000px;}
.yb5{bottom:304.005000px;}
.y154{bottom:305.145000px;}
.y4a{bottom:306.255000px;}
.y127{bottom:307.380000px;}
.y23{bottom:308.550000px;}
.yf9{bottom:309.630000px;}
.y89{bottom:311.895000px;}
.y16c{bottom:314.130000px;}
.y31{bottom:314.175000px;}
.yb7{bottom:322.005000px;}
.y153{bottom:322.020000px;}
.y49{bottom:323.130000px;}
.y123{bottom:325.380000px;}
.y22{bottom:325.425000px;}
.yf6{bottom:327.675000px;}
.y88{bottom:329.925000px;}
.y30{bottom:331.050000px;}
.y152{bottom:338.925000px;}
.yb6{bottom:340.050000px;}
.y48{bottom:341.175000px;}
.y126{bottom:343.425000px;}
.yf8{bottom:345.675000px;}
.y87{bottom:346.800000px;}
.y2f{bottom:347.970000px;}
.y21{bottom:351.345000px;}
.y151{bottom:356.925000px;}
.y47{bottom:358.050000px;}
.y125{bottom:361.425000px;}
.y16b{bottom:362.550000px;}
.y86{bottom:363.675000px;}
.y2e{bottom:365.970000px;}
.y20{bottom:368.220000px;}
.y43{bottom:371.580000px;}
.y150{bottom:373.830000px;}
.yb4{bottom:376.080000px;}
.y122{bottom:379.455000px;}
.y16a{bottom:379.470000px;}
.y85{bottom:381.705000px;}
.y14f{bottom:390.705000px;}
.yb3{bottom:394.080000px;}
.y169{bottom:395.205000px;}
.y121{bottom:397.455000px;}
.y84{bottom:398.580000px;}
.yf5{bottom:399.705000px;}
.y1f{bottom:406.455000px;}
.y14e{bottom:408.705000px;}
.yb2{bottom:412.125000px;}
.y83{bottom:415.500000px;}
.yf4{bottom:417.750000px;}
.y14d{bottom:425.625000px;}
.y168{bottom:429.000000px;}
.yad{bottom:430.125000px;}
.y82{bottom:433.500000px;}
.yf3{bottom:440.250000px;}
.y14c{bottom:442.500000px;}
.y167{bottom:444.750000px;}
.yb1{bottom:448.125000px;}
.y81{bottom:450.375000px;}
.y120{bottom:451.530000px;}
.yf2{bottom:457.170000px;}
.y14b{bottom:460.545000px;}
.y166{bottom:461.655000px;}
.yb0{bottom:466.155000px;}
.y80{bottom:467.295000px;}
.y11f{bottom:469.530000px;}
.yf0{bottom:471.780000px;}
.y14a{bottom:477.420000px;}
.yaf{bottom:484.155000px;}
.y7f{bottom:485.280000px;}
.y11e{bottom:487.530000px;}
.y149{bottom:494.325000px;}
.y7e{bottom:502.200000px;}
.y11c{bottom:505.575000px;}
.yef{bottom:506.700000px;}
.y165{bottom:510.075000px;}
.y148{bottom:512.325000px;}
.y7d{bottom:519.075000px;}
.yac{bottom:520.200000px;}
.y11d{bottom:523.575000px;}
.y164{bottom:526.950000px;}
.y147{bottom:529.200000px;}
.y7c{bottom:537.120000px;}
.yab{bottom:538.230000px;}
.yee{bottom:541.605000px;}
.y163{bottom:543.870000px;}
.y146{bottom:546.120000px;}
.y7b{bottom:553.995000px;}
.yaa{bottom:556.230000px;}
.yed{bottom:559.605000px;}
.y162{bottom:559.620000px;}
.y145{bottom:564.120000px;}
.y7a{bottom:570.870000px;}
.ya9{bottom:574.230000px;}
.y161{bottom:576.495000px;}
.yec{bottom:577.650000px;}
.y144{bottom:581.025000px;}
.y79{bottom:588.900000px;}
.ya5{bottom:592.275000px;}
.yea{bottom:595.650000px;}
.y143{bottom:597.900000px;}
.y78{bottom:605.775000px;}
.y160{bottom:609.150000px;}
.ya8{bottom:610.275000px;}
.yeb{bottom:613.650000px;}
.y142{bottom:615.900000px;}
.y77{bottom:622.695000px;}
.y15f{bottom:624.945000px;}
.ya7{bottom:628.320000px;}
.ye9{bottom:631.695000px;}
.y141{bottom:632.820000px;}
.y76{bottom:640.695000px;}
.y15e{bottom:641.820000px;}
.ya4{bottom:646.320000px;}
.ye8{bottom:649.695000px;}
.y75{bottom:657.570000px;}
.ya3{bottom:664.350000px;}
.ye7{bottom:667.725000px;}
.y74{bottom:674.475000px;}
.ya1{bottom:682.350000px;}
.y140{bottom:684.600000px;}
.ye5{bottom:685.725000px;}
.y73{bottom:692.475000px;}
.y9f{bottom:700.350000px;}
.y13f{bottom:701.475000px;}
.ye4{bottom:703.755000px;}
.y72{bottom:709.395000px;}
.y9e{bottom:718.380000px;}
.y13e{bottom:719.520000px;}
.ye3{bottom:721.755000px;}
.y71{bottom:726.270000px;}
.y9a{bottom:736.380000px;}
.y13d{bottom:736.395000px;}
.ye2{bottom:739.755000px;}
.y70{bottom:744.300000px;}
.y13c{bottom:753.300000px;}
.y9c{bottom:754.425000px;}
.ye0{bottom:757.800000px;}
.y6f{bottom:761.175000px;}
.y13b{bottom:771.300000px;}
.y99{bottom:772.425000px;}
.ydf{bottom:775.800000px;}
.y6e{bottom:778.050000px;}
.y1d{bottom:785.955000px;}
.y13a{bottom:788.205000px;}
.y98{bottom:790.455000px;}
.yde{bottom:793.830000px;}
.y119{bottom:793.845000px;}
.y6d{bottom:796.080000px;}
.y139{bottom:805.080000px;}
.y96{bottom:808.455000px;}
.ydd{bottom:811.830000px;}
.y6c{bottom:812.955000px;}
.y10{bottom:815.220000px;}
.y138{bottom:823.080000px;}
.y6b{bottom:829.875000px;}
.y118{bottom:833.250000px;}
.y137{bottom:840.000000px;}
.y6a{bottom:847.875000px;}
.y117{bottom:850.125000px;}
.y136{bottom:856.875000px;}
.y69{bottom:864.750000px;}
.yda{bottom:865.875000px;}
.y135{bottom:874.920000px;}
.y68{bottom:881.670000px;}
.y116{bottom:882.795000px;}
.ydb{bottom:883.920000px;}
.y134{bottom:891.795000px;}
.y67{bottom:899.670000px;}
.y115{bottom:900.780000px;}
.yd8{bottom:901.905000px;}
.y133{bottom:908.670000px;}
.y66{bottom:916.575000px;}
.y114{bottom:918.825000px;}
.yd6{bottom:919.950000px;}
.y132{bottom:926.700000px;}
.y65{bottom:933.450000px;}
.y113{bottom:936.825000px;}
.yd7{bottom:937.950000px;}
.y131{bottom:943.575000px;}
.y64{bottom:951.450000px;}
.y112{bottom:954.870000px;}
.yd5{bottom:955.995000px;}
.y130{bottom:960.495000px;}
.y63{bottom:968.370000px;}
.y111{bottom:972.870000px;}
.yd2{bottom:973.980000px;}
.yd4{bottom:973.995000px;}
.y12f{bottom:978.495000px;}
.y62{bottom:985.245000px;}
.y110{bottom:990.855000px;}
.y10c{bottom:990.870000px;}
.yd3{bottom:991.995000px;}
.y12e{bottom:995.400000px;}
.y61{bottom:1003.275000px;}
.y10f{bottom:1008.900000px;}
.yd1{bottom:1010.025000px;}
.y12d{bottom:1012.275000px;}
.y60{bottom:1020.150000px;}
.y10e{bottom:1026.900000px;}
.yce{bottom:1028.025000px;}
.y5f{bottom:1037.070000px;}
.ye{bottom:1041.570000px;}
.y10b{bottom:1044.945000px;}
.yd0{bottom:1046.070000px;}
.y5e{bottom:1055.070000px;}
.y10a{bottom:1062.945000px;}
.ycd{bottom:1064.070000px;}
.y7{bottom:1067.445000px;}
.y5d{bottom:1071.945000px;}
.y108{bottom:1080.975000px;}
.yca{bottom:1082.100000px;}
.y5c{bottom:1088.850000px;}
.y109{bottom:1098.975000px;}
.ycc{bottom:1100.100000px;}
.y5b{bottom:1106.850000px;}
.y107{bottom:1116.975000px;}
.yc8{bottom:1118.100000px;}
.y5a{bottom:1123.755000px;}
.y106{bottom:1135.005000px;}
.yc5{bottom:1136.130000px;}
.y59{bottom:1140.630000px;}
.y105{bottom:1153.005000px;}
.y58{bottom:1158.630000px;}
.y104{bottom:1171.050000px;}
.y57{bottom:1175.550000px;}
.h2f{height:16.860000px;}
.h20{height:16.875000px;}
.h2e{height:16.897500px;}
.h21{height:16.912500px;}
.h2b{height:17.985000px;}
.h28{height:18.000000px;}
.h29{height:18.022500px;}
.h26{height:18.037500px;}
.hd{height:25.875000px;}
.h32{height:28.278809px;}
.h15{height:29.250000px;}
.h14{height:33.723633px;}
.h2c{height:33.787500px;}
.h1d{height:34.875000px;}
.h30{height:34.897500px;}
.h1f{height:34.912500px;}
.h1c{height:35.022217px;}
.h13{height:35.806641px;}
.h9{height:37.125000px;}
.h1a{height:40.847168px;}
.h19{height:41.275635px;}
.h1b{height:41.389893px;}
.hf{height:43.075195px;}
.hb{height:43.875000px;}
.h34{height:46.218809px;}
.h1e{height:46.278809px;}
.h35{height:46.308809px;}
.h33{height:46.458809px;}
.h5{height:47.223633px;}
.h18{height:49.234131px;}
.h2{height:49.575000px;}
.h7{height:50.273438px;}
.h16{height:50.800781px;}
.h25{height:52.912500px;}
.h22{height:52.950000px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h27{height:54.037500px;}
.h2a{height:54.075000px;}
.h3{height:55.291992px;}
.h11{height:58.185791px;}
.h12{height:59.899658px;}
.h10{height:64.237500px;}
.h23{height:70.950000px;}
.hc{height:71.613281px;}
.h2d{height:72.037500px;}
.h31{height:72.075000px;}
.h6{height:73.722656px;}
.h24{height:88.950000px;}
.h8{height:121.597500px;}
.he{height:226.335000px;}
.h17{height:379.500000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w17{width:52.912500px;}
.w1c{width:54.075000px;}
.wc{width:55.200000px;}
.w18{width:66.487500px;}
.wd{width:68.737500px;}
.w2{width:73.237500px;}
.w13{width:86.737500px;}
.w12{width:91.237500px;}
.w10{width:119.400000px;}
.wa{width:140.812500px;}
.w11{width:143.062500px;}
.w4{width:152.055000px;}
.w1b{width:161.055000px;}
.wb{width:170.055000px;}
.w1a{width:174.600000px;}
.w1e{width:175.725000px;}
.w15{width:183.600000px;}
.w1f{width:194.850000px;}
.w14{width:201.645000px;}
.w16{width:221.925000px;}
.w7{width:224.145000px;}
.w1d{width:233.175000px;}
.w19{width:266.970000px;}
.wf{width:286.125000px;}
.w9{width:292.875000px;}
.w8{width:508.050000px;}
.w5{width:580.125000px;}
.w1{width:658.950000px;}
.we{width:729.945000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:6.750000px;}
.x7{left:7.875000px;}
.x2{left:9.000000px;}
.x1c{left:10.125000px;}
.x20{left:11.280000px;}
.x14{left:12.405000px;}
.x30{left:13.500000px;}
.x19{left:14.610000px;}
.x27{left:18.000000px;}
.x29{left:19.125000px;}
.x3b{left:23.655000px;}
.x26{left:25.875000px;}
.x2a{left:28.155000px;}
.x4{left:37.155000px;}
.x1a{left:49.530000px;}
.x1d{left:63.075000px;}
.x2e{left:66.450000px;}
.x3c{left:76.575000px;}
.x1{left:81.112500px;}
.x16{left:82.237500px;}
.x3e{left:92.362487px;}
.x5{left:97.987500px;}
.xf{left:104.737500px;}
.x3d{left:107.024987px;}
.x40{left:108.149987px;}
.x24{left:110.407500px;}
.x17{left:111.532500px;}
.x11{left:113.782500px;}
.xe{left:116.032500px;}
.x10{left:128.407500px;}
.x15{left:153.179987px;}
.x23{left:194.894987px;}
.x34{left:209.519987px;}
.x12{left:214.012500px;}
.x2d{left:221.924987px;}
.x38{left:229.799987px;}
.x6{left:233.175000px;}
.xa{left:273.705000px;}
.x2f{left:283.875000px;}
.xd{left:295.132500px;}
.x13{left:305.250000px;}
.x39{left:316.545000px;}
.x8{left:328.920000px;}
.x9{left:348.075000px;}
.x35{left:350.325000px;}
.xc{left:364.957500px;}
.x25{left:369.495000px;}
.x18{left:375.120000px;}
.x3f{left:395.369987px;}
.xb{left:437.055000px;}
.x22{left:447.194987px;}
.x31{left:468.600000px;}
.x28{left:490.020000px;}
.x3a{left:492.270000px;}
.x1b{left:517.050000px;}
.x36{left:526.050000px;}
.x2b{left:633.075000px;}
.x1e{left:687.120000px;}
.x37{left:688.245000px;}
.x32{left:691.650000px;}
.x2c{left:725.445000px;}
.x3{left:740.070000px;}
.x1f{left:743.445000px;}
.x33{left:745.695000px;}
@media print{
.v4{vertical-align:-16.000000pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.000000pt;}
.v1{vertical-align:16.000000pt;}
.ls1b{letter-spacing:-2.000000pt;}
.ls13{letter-spacing:-1.546667pt;}
.ls16{letter-spacing:-1.328000pt;}
.ls11{letter-spacing:-1.002667pt;}
.ls12{letter-spacing:-0.912000pt;}
.ls10{letter-spacing:-0.869333pt;}
.lsd{letter-spacing:-0.704000pt;}
.ls17{letter-spacing:-0.549333pt;}
.lsc{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.613333pt;}
.ls15{letter-spacing:0.682667pt;}
.ls14{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.365333pt;}
.lsf{letter-spacing:1.648000pt;}
.ls4{letter-spacing:1.748000pt;}
.ls3{letter-spacing:1.801333pt;}
.ls2{letter-spacing:1.808000pt;}
.ls5{letter-spacing:1.854667pt;}
.ls8{letter-spacing:1.924000pt;}
.ls9{letter-spacing:1.973333pt;}
.ls6{letter-spacing:2.000000pt;}
.ls18{letter-spacing:2.053333pt;}
.ls19{letter-spacing:2.106667pt;}
.ls7{letter-spacing:2.160000pt;}
.ls1a{letter-spacing:4.912000pt;}
.ws6{word-spacing:-15.000000pt;}
.ws7{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws1{word-spacing:-14.016000pt;}
.ws10{word-spacing:-13.912000pt;}
.wsd{word-spacing:-13.682667pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.wse{word-spacing:-12.450667pt;}
.wsa{word-spacing:-12.088000pt;}
.wsc{word-spacing:-11.672000pt;}
.wsb{word-spacing:-11.453333pt;}
.wsf{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws8{word-spacing:-9.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws11{word-spacing:-7.000000pt;}
.ws9{word-spacing:0.000000pt;}
._7{margin-left:-9.288267pt;}
._14{margin-left:-6.800800pt;}
._6{margin-left:-4.996533pt;}
._b{margin-left:-3.137333pt;}
._1{margin-left:-2.160000pt;}
._2{margin-left:-1.157333pt;}
._0{width:1.248000pt;}
._3{width:2.352000pt;}
._4{width:3.717333pt;}
._9{width:4.921333pt;}
._13{width:6.027200pt;}
._a{width:6.958667pt;}
._12{width:7.864000pt;}
._5{width:8.800000pt;}
._c{width:10.260000pt;}
._d{width:11.713333pt;}
._8{width:12.904000pt;}
._17{width:14.360000pt;}
._11{width:15.364000pt;}
._15{width:18.357333pt;}
._10{width:19.602667pt;}
._f{width:22.504000pt;}
._16{width:23.433333pt;}
._e{width:27.301333pt;}
._18{width:43.270667pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:36.000000pt;}
.fs2{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:52.000000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:2.986667pt;}
.y46{bottom:3.000000pt;}
.y12b{bottom:3.006667pt;}
.y9d{bottom:3.013333pt;}
.ya0{bottom:3.026667pt;}
.y4{bottom:3.033333pt;}
.y42{bottom:3.040000pt;}
.y11b{bottom:3.986667pt;}
.yc7{bottom:4.000000pt;}
.y101{bottom:4.006667pt;}
.yd9{bottom:4.013333pt;}
.yc9{bottom:4.026667pt;}
.ydc{bottom:4.040000pt;}
.y6{bottom:8.000000pt;}
.yf{bottom:10.000000pt;}
.y1e{bottom:11.000000pt;}
.yd{bottom:12.026667pt;}
.ye1{bottom:16.000000pt;}
.ye6{bottom:16.026667pt;}
.yf1{bottom:18.000000pt;}
.y12a{bottom:18.026667pt;}
.y3{bottom:18.033333pt;}
.y41{bottom:18.040000pt;}
.y11a{bottom:18.986667pt;}
.yc6{bottom:19.000000pt;}
.y45{bottom:19.013333pt;}
.ya2{bottom:19.026667pt;}
.y12c{bottom:19.033333pt;}
.y97{bottom:19.040000pt;}
.y44{bottom:21.000000pt;}
.y1b{bottom:21.026667pt;}
.yc{bottom:27.026667pt;}
.y1{bottom:28.000000pt;}
.y5{bottom:29.033333pt;}
.y2{bottom:33.033333pt;}
.y40{bottom:34.040000pt;}
.ybc{bottom:35.026667pt;}
.yc1{bottom:35.033333pt;}
.y9b{bottom:35.040000pt;}
.ycb{bottom:36.026667pt;}
.ycf{bottom:36.040000pt;}
.y1a{bottom:39.026667pt;}
.yb{bottom:41.026667pt;}
.y3f{bottom:49.066667pt;}
.ya6{bottom:51.040000pt;}
.y10d{bottom:51.066667pt;}
.yf7{bottom:52.040000pt;}
.y124{bottom:52.066667pt;}
.y19{bottom:54.066667pt;}
.y3e{bottom:64.066667pt;}
.ya{bottom:65.053333pt;}
.yae{bottom:67.066667pt;}
.y18{bottom:68.066667pt;}
.y17{bottom:77.066667pt;}
.y3d{bottom:79.106667pt;}
.y9{bottom:83.093333pt;}
.y56{bottom:88.066667pt;}
.y176{bottom:89.066667pt;}
.y16{bottom:90.093333pt;}
.y95{bottom:93.066667pt;}
.y3c{bottom:95.106667pt;}
.yc4{bottom:97.066667pt;}
.y8{bottom:98.093333pt;}
.y102{bottom:99.066667pt;}
.y15d{bottom:102.066667pt;}
.y55{bottom:103.066667pt;}
.y15{bottom:103.093333pt;}
.y175{bottom:104.066667pt;}
.y94{bottom:109.100000pt;}
.yc3{bottom:110.100000pt;}
.y3b{bottom:110.106667pt;}
.y103{bottom:115.100000pt;}
.y15c{bottom:117.100000pt;}
.y174{bottom:118.100000pt;}
.y54{bottom:119.100000pt;}
.y14{bottom:120.093333pt;}
.y93{bottom:124.100000pt;}
.y3a{bottom:125.146667pt;}
.yc0{bottom:126.100000pt;}
.y2d{bottom:127.146667pt;}
.y100{bottom:131.100000pt;}
.y15b{bottom:133.100000pt;}
.y53{bottom:134.106667pt;}
.y92{bottom:139.093333pt;}
.y2c{bottom:140.146667pt;}
.y39{bottom:141.133333pt;}
.yc2{bottom:142.133333pt;}
.y13{bottom:143.133333pt;}
.yff{bottom:147.133333pt;}
.y15a{bottom:148.133333pt;}
.y52{bottom:149.133333pt;}
.y91{bottom:155.133333pt;}
.y2b{bottom:155.173333pt;}
.y38{bottom:156.173333pt;}
.ybf{bottom:158.133333pt;}
.y173{bottom:162.133333pt;}
.yfd{bottom:163.133333pt;}
.y51{bottom:165.133333pt;}
.y12{bottom:166.160000pt;}
.y90{bottom:170.133333pt;}
.y2a{bottom:171.173333pt;}
.ybe{bottom:174.133333pt;}
.y172{bottom:177.133333pt;}
.yfe{bottom:179.173333pt;}
.y50{bottom:180.173333pt;}
.y8f{bottom:185.173333pt;}
.y29{bottom:186.173333pt;}
.y37{bottom:187.173333pt;}
.y11{bottom:188.160000pt;}
.ybb{bottom:190.173333pt;}
.y171{bottom:191.173333pt;}
.y159{bottom:194.173333pt;}
.y4f{bottom:195.173333pt;}
.y8e{bottom:201.173333pt;}
.y28{bottom:201.213333pt;}
.y36{bottom:202.213333pt;}
.ybd{bottom:206.173333pt;}
.y158{bottom:209.173333pt;}
.y4e{bottom:211.173333pt;}
.y8d{bottom:216.200000pt;}
.y27{bottom:216.213333pt;}
.y35{bottom:217.213333pt;}
.y170{bottom:220.200000pt;}
.yba{bottom:222.200000pt;}
.y157{bottom:225.200000pt;}
.y4d{bottom:226.200000pt;}
.yfb{bottom:227.200000pt;}
.y26{bottom:230.240000pt;}
.y8c{bottom:231.200000pt;}
.y34{bottom:233.240000pt;}
.y16f{bottom:235.200000pt;}
.yb9{bottom:238.200000pt;}
.y156{bottom:240.200000pt;}
.y4c{bottom:241.200000pt;}
.yfc{bottom:243.200000pt;}
.y129{bottom:245.200000pt;}
.y25{bottom:245.240000pt;}
.y8b{bottom:247.200000pt;}
.y33{bottom:248.240000pt;}
.y16e{bottom:249.200000pt;}
.yb8{bottom:254.226667pt;}
.y155{bottom:255.226667pt;}
.y4b{bottom:257.226667pt;}
.yfa{bottom:259.226667pt;}
.y24{bottom:259.240000pt;}
.y128{bottom:261.226667pt;}
.y8a{bottom:262.240000pt;}
.y32{bottom:263.280000pt;}
.y16d{bottom:264.226667pt;}
.yb5{bottom:270.226667pt;}
.y154{bottom:271.240000pt;}
.y4a{bottom:272.226667pt;}
.y127{bottom:273.226667pt;}
.y23{bottom:274.266667pt;}
.yf9{bottom:275.226667pt;}
.y89{bottom:277.240000pt;}
.y16c{bottom:279.226667pt;}
.y31{bottom:279.266667pt;}
.yb7{bottom:286.226667pt;}
.y153{bottom:286.240000pt;}
.y49{bottom:287.226667pt;}
.y123{bottom:289.226667pt;}
.y22{bottom:289.266667pt;}
.yf6{bottom:291.266667pt;}
.y88{bottom:293.266667pt;}
.y30{bottom:294.266667pt;}
.y152{bottom:301.266667pt;}
.yb6{bottom:302.266667pt;}
.y48{bottom:303.266667pt;}
.y126{bottom:305.266667pt;}
.yf8{bottom:307.266667pt;}
.y87{bottom:308.266667pt;}
.y2f{bottom:309.306667pt;}
.y21{bottom:312.306667pt;}
.y151{bottom:317.266667pt;}
.y47{bottom:318.266667pt;}
.y125{bottom:321.266667pt;}
.y16b{bottom:322.266667pt;}
.y86{bottom:323.266667pt;}
.y2e{bottom:325.306667pt;}
.y20{bottom:327.306667pt;}
.y43{bottom:330.293333pt;}
.y150{bottom:332.293333pt;}
.yb4{bottom:334.293333pt;}
.y122{bottom:337.293333pt;}
.y16a{bottom:337.306667pt;}
.y85{bottom:339.293333pt;}
.y14f{bottom:347.293333pt;}
.yb3{bottom:350.293333pt;}
.y169{bottom:351.293333pt;}
.y121{bottom:353.293333pt;}
.y84{bottom:354.293333pt;}
.yf5{bottom:355.293333pt;}
.y1f{bottom:361.293333pt;}
.y14e{bottom:363.293333pt;}
.yb2{bottom:366.333333pt;}
.y83{bottom:369.333333pt;}
.yf4{bottom:371.333333pt;}
.y14d{bottom:378.333333pt;}
.y168{bottom:381.333333pt;}
.yad{bottom:382.333333pt;}
.y82{bottom:385.333333pt;}
.yf3{bottom:391.333333pt;}
.y14c{bottom:393.333333pt;}
.y167{bottom:395.333333pt;}
.yb1{bottom:398.333333pt;}
.y81{bottom:400.333333pt;}
.y120{bottom:401.360000pt;}
.yf2{bottom:406.373333pt;}
.y14b{bottom:409.373333pt;}
.y166{bottom:410.360000pt;}
.yb0{bottom:414.360000pt;}
.y80{bottom:415.373333pt;}
.y11f{bottom:417.360000pt;}
.yf0{bottom:419.360000pt;}
.y14a{bottom:424.373333pt;}
.yaf{bottom:430.360000pt;}
.y7f{bottom:431.360000pt;}
.y11e{bottom:433.360000pt;}
.y149{bottom:439.400000pt;}
.y7e{bottom:446.400000pt;}
.y11c{bottom:449.400000pt;}
.yef{bottom:450.400000pt;}
.y165{bottom:453.400000pt;}
.y148{bottom:455.400000pt;}
.y7d{bottom:461.400000pt;}
.yac{bottom:462.400000pt;}
.y11d{bottom:465.400000pt;}
.y164{bottom:468.400000pt;}
.y147{bottom:470.400000pt;}
.y7c{bottom:477.440000pt;}
.yab{bottom:478.426667pt;}
.yee{bottom:481.426667pt;}
.y163{bottom:483.440000pt;}
.y146{bottom:485.440000pt;}
.y7b{bottom:492.440000pt;}
.yaa{bottom:494.426667pt;}
.yed{bottom:497.426667pt;}
.y162{bottom:497.440000pt;}
.y145{bottom:501.440000pt;}
.y7a{bottom:507.440000pt;}
.ya9{bottom:510.426667pt;}
.y161{bottom:512.440000pt;}
.yec{bottom:513.466667pt;}
.y144{bottom:516.466667pt;}
.y79{bottom:523.466667pt;}
.ya5{bottom:526.466667pt;}
.yea{bottom:529.466667pt;}
.y143{bottom:531.466667pt;}
.y78{bottom:538.466667pt;}
.y160{bottom:541.466667pt;}
.ya8{bottom:542.466667pt;}
.yeb{bottom:545.466667pt;}
.y142{bottom:547.466667pt;}
.y77{bottom:553.506667pt;}
.y15f{bottom:555.506667pt;}
.ya7{bottom:558.506667pt;}
.ye9{bottom:561.506667pt;}
.y141{bottom:562.506667pt;}
.y76{bottom:569.506667pt;}
.y15e{bottom:570.506667pt;}
.ya4{bottom:574.506667pt;}
.ye8{bottom:577.506667pt;}
.y75{bottom:584.506667pt;}
.ya3{bottom:590.533333pt;}
.ye7{bottom:593.533333pt;}
.y74{bottom:599.533333pt;}
.ya1{bottom:606.533333pt;}
.y140{bottom:608.533333pt;}
.ye5{bottom:609.533333pt;}
.y73{bottom:615.533333pt;}
.y9f{bottom:622.533333pt;}
.y13f{bottom:623.533333pt;}
.ye4{bottom:625.560000pt;}
.y72{bottom:630.573333pt;}
.y9e{bottom:638.560000pt;}
.y13e{bottom:639.573333pt;}
.ye3{bottom:641.560000pt;}
.y71{bottom:645.573333pt;}
.y9a{bottom:654.560000pt;}
.y13d{bottom:654.573333pt;}
.ye2{bottom:657.560000pt;}
.y70{bottom:661.600000pt;}
.y13c{bottom:669.600000pt;}
.y9c{bottom:670.600000pt;}
.ye0{bottom:673.600000pt;}
.y6f{bottom:676.600000pt;}
.y13b{bottom:685.600000pt;}
.y99{bottom:686.600000pt;}
.ydf{bottom:689.600000pt;}
.y6e{bottom:691.600000pt;}
.y1d{bottom:698.626667pt;}
.y13a{bottom:700.626667pt;}
.y98{bottom:702.626667pt;}
.yde{bottom:705.626667pt;}
.y119{bottom:705.640000pt;}
.y6d{bottom:707.626667pt;}
.y139{bottom:715.626667pt;}
.y96{bottom:718.626667pt;}
.ydd{bottom:721.626667pt;}
.y6c{bottom:722.626667pt;}
.y10{bottom:724.640000pt;}
.y138{bottom:731.626667pt;}
.y6b{bottom:737.666667pt;}
.y118{bottom:740.666667pt;}
.y137{bottom:746.666667pt;}
.y6a{bottom:753.666667pt;}
.y117{bottom:755.666667pt;}
.y136{bottom:761.666667pt;}
.y69{bottom:768.666667pt;}
.yda{bottom:769.666667pt;}
.y135{bottom:777.706667pt;}
.y68{bottom:783.706667pt;}
.y116{bottom:784.706667pt;}
.ydb{bottom:785.706667pt;}
.y134{bottom:792.706667pt;}
.y67{bottom:799.706667pt;}
.y115{bottom:800.693333pt;}
.yd8{bottom:801.693333pt;}
.y133{bottom:807.706667pt;}
.y66{bottom:814.733333pt;}
.y114{bottom:816.733333pt;}
.yd6{bottom:817.733333pt;}
.y132{bottom:823.733333pt;}
.y65{bottom:829.733333pt;}
.y113{bottom:832.733333pt;}
.yd7{bottom:833.733333pt;}
.y131{bottom:838.733333pt;}
.y64{bottom:845.733333pt;}
.y112{bottom:848.773333pt;}
.yd5{bottom:849.773333pt;}
.y130{bottom:853.773333pt;}
.y63{bottom:860.773333pt;}
.y111{bottom:864.773333pt;}
.yd2{bottom:865.760000pt;}
.yd4{bottom:865.773333pt;}
.y12f{bottom:869.773333pt;}
.y62{bottom:875.773333pt;}
.y110{bottom:880.760000pt;}
.y10c{bottom:880.773333pt;}
.yd3{bottom:881.773333pt;}
.y12e{bottom:884.800000pt;}
.y61{bottom:891.800000pt;}
.y10f{bottom:896.800000pt;}
.yd1{bottom:897.800000pt;}
.y12d{bottom:899.800000pt;}
.y60{bottom:906.800000pt;}
.y10e{bottom:912.800000pt;}
.yce{bottom:913.800000pt;}
.y5f{bottom:921.840000pt;}
.ye{bottom:925.840000pt;}
.y10b{bottom:928.840000pt;}
.yd0{bottom:929.840000pt;}
.y5e{bottom:937.840000pt;}
.y10a{bottom:944.840000pt;}
.ycd{bottom:945.840000pt;}
.y7{bottom:948.840000pt;}
.y5d{bottom:952.840000pt;}
.y108{bottom:960.866667pt;}
.yca{bottom:961.866667pt;}
.y5c{bottom:967.866667pt;}
.y109{bottom:976.866667pt;}
.ycc{bottom:977.866667pt;}
.y5b{bottom:983.866667pt;}
.y107{bottom:992.866667pt;}
.yc8{bottom:993.866667pt;}
.y5a{bottom:998.893333pt;}
.y106{bottom:1008.893333pt;}
.yc5{bottom:1009.893333pt;}
.y59{bottom:1013.893333pt;}
.y105{bottom:1024.893333pt;}
.y58{bottom:1029.893333pt;}
.y104{bottom:1040.933333pt;}
.y57{bottom:1044.933333pt;}
.h2f{height:14.986667pt;}
.h20{height:15.000000pt;}
.h2e{height:15.020000pt;}
.h21{height:15.033333pt;}
.h2b{height:15.986667pt;}
.h28{height:16.000000pt;}
.h29{height:16.020000pt;}
.h26{height:16.033333pt;}
.hd{height:23.000000pt;}
.h32{height:25.136719pt;}
.h15{height:26.000000pt;}
.h14{height:29.976563pt;}
.h2c{height:30.033333pt;}
.h1d{height:31.000000pt;}
.h30{height:31.020000pt;}
.h1f{height:31.033333pt;}
.h1c{height:31.130859pt;}
.h13{height:31.828125pt;}
.h9{height:33.000000pt;}
.h1a{height:36.308594pt;}
.h19{height:36.689453pt;}
.h1b{height:36.791016pt;}
.hf{height:38.289062pt;}
.hb{height:39.000000pt;}
.h34{height:41.083385pt;}
.h1e{height:41.136719pt;}
.h35{height:41.163385pt;}
.h33{height:41.296719pt;}
.h5{height:41.976562pt;}
.h18{height:43.763672pt;}
.h2{height:44.066667pt;}
.h7{height:44.687500pt;}
.h16{height:45.156250pt;}
.h25{height:47.033333pt;}
.h22{height:47.066667pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h27{height:48.033333pt;}
.h2a{height:48.066667pt;}
.h3{height:49.148438pt;}
.h11{height:51.720703pt;}
.h12{height:53.244141pt;}
.h10{height:57.100000pt;}
.h23{height:63.066667pt;}
.hc{height:63.656250pt;}
.h2d{height:64.033333pt;}
.h31{height:64.066667pt;}
.h6{height:65.531250pt;}
.h24{height:79.066667pt;}
.h8{height:108.086667pt;}
.he{height:201.186667pt;}
.h17{height:337.333333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w17{width:47.033333pt;}
.w1c{width:48.066667pt;}
.wc{width:49.066667pt;}
.w18{width:59.100000pt;}
.wd{width:61.100000pt;}
.w2{width:65.100000pt;}
.w13{width:77.100000pt;}
.w12{width:81.100000pt;}
.w10{width:106.133333pt;}
.wa{width:125.166667pt;}
.w11{width:127.166667pt;}
.w4{width:135.160000pt;}
.w1b{width:143.160000pt;}
.wb{width:151.160000pt;}
.w1a{width:155.200000pt;}
.w1e{width:156.200000pt;}
.w15{width:163.200000pt;}
.w1f{width:173.200000pt;}
.w14{width:179.240000pt;}
.w16{width:197.266667pt;}
.w7{width:199.240000pt;}
.w1d{width:207.266667pt;}
.w19{width:237.306667pt;}
.wf{width:254.333333pt;}
.w9{width:260.333333pt;}
.w8{width:451.600000pt;}
.w5{width:515.666667pt;}
.w1{width:585.733333pt;}
.we{width:648.840000pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.000000pt;}
.x7{left:7.000000pt;}
.x2{left:8.000000pt;}
.x1c{left:9.000000pt;}
.x20{left:10.026667pt;}
.x14{left:11.026667pt;}
.x30{left:12.000000pt;}
.x19{left:12.986667pt;}
.x27{left:16.000000pt;}
.x29{left:17.000000pt;}
.x3b{left:21.026667pt;}
.x26{left:23.000000pt;}
.x2a{left:25.026667pt;}
.x4{left:33.026667pt;}
.x1a{left:44.026667pt;}
.x1d{left:56.066667pt;}
.x2e{left:59.066667pt;}
.x3c{left:68.066667pt;}
.x1{left:72.100000pt;}
.x16{left:73.100000pt;}
.x3e{left:82.099988pt;}
.x5{left:87.100000pt;}
.xf{left:93.100000pt;}
.x3d{left:95.133322pt;}
.x40{left:96.133322pt;}
.x24{left:98.140000pt;}
.x17{left:99.140000pt;}
.x11{left:101.140000pt;}
.xe{left:103.140000pt;}
.x10{left:114.140000pt;}
.x15{left:136.159988pt;}
.x23{left:173.239988pt;}
.x34{left:186.239988pt;}
.x12{left:190.233333pt;}
.x2d{left:197.266655pt;}
.x38{left:204.266655pt;}
.x6{left:207.266667pt;}
.xa{left:243.293333pt;}
.x2f{left:252.333333pt;}
.xd{left:262.340000pt;}
.x13{left:271.333333pt;}
.x39{left:281.373333pt;}
.x8{left:292.373333pt;}
.x9{left:309.400000pt;}
.x35{left:311.400000pt;}
.xc{left:324.406667pt;}
.x25{left:328.440000pt;}
.x18{left:333.440000pt;}
.x3f{left:351.439988pt;}
.xb{left:388.493333pt;}
.x22{left:397.506655pt;}
.x31{left:416.533333pt;}
.x28{left:435.573333pt;}
.x3a{left:437.573333pt;}
.x1b{left:459.600000pt;}
.x36{left:467.600000pt;}
.x2b{left:562.733333pt;}
.x1e{left:610.773333pt;}
.x37{left:611.773333pt;}
.x32{left:614.800000pt;}
.x2c{left:644.840000pt;}
.x3{left:657.840000pt;}
.x1f{left:660.840000pt;}
.x33{left:662.840000pt;}
}




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