
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_e8ab3e01648a19118b0eb235.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_6774aa03c9faac524becf439.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_1d6745267339b15d2d0cf35b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_669c800c2f1b02d28de35552.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_6267f0d8d5c507e33a5641f1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_dca9acd957058f0e35396ac6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.065430;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_6e72c0c20e2c4a2b5c057e81.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_5ea2630b5935d5fcf706877f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.378906;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_8874700a727ed4294757f478.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_c540e83a6a92f4950e57fe79.woff')format("woff");}.ffb{font-family:ffb;line-height:0.980469;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls1a{letter-spacing:-0.261600px;}
.ls20{letter-spacing:-0.243600px;}
.lsb{letter-spacing:-0.186600px;}
.ls17{letter-spacing:-0.153600px;}
.ls9{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.121200px;}
.ls1f{letter-spacing:-0.093000px;}
.ls8{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls16{letter-spacing:-0.063600px;}
.ls13{letter-spacing:-0.038880px;}
.ls19{letter-spacing:-0.037800px;}
.ls1c{letter-spacing:-0.014760px;}
.ls6{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.049200px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.115800px;}
.ls15{letter-spacing:0.116400px;}
.lsf{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls4{letter-spacing:0.180000px;}
.ls21{letter-spacing:0.181200px;}
.ls12{letter-spacing:0.199200px;}
.ls1b{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls14{letter-spacing:0.540000px;}
.ls1e{letter-spacing:47.726640px;}
.ls1d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws12{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws9{word-spacing:-13.425600px;}
.ws17{word-spacing:-13.407600px;}
.ws8{word-spacing:-13.399800px;}
.wsd{word-spacing:-13.342800px;}
.ws10{word-spacing:-13.342200px;}
.ws6{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.211640px;}
.ws11{word-spacing:-13.188600px;}
.wsc{word-spacing:-13.187520px;}
.wse{word-spacing:-13.162800px;}
.ws15{word-spacing:-13.133400px;}
.wsf{word-spacing:-13.072800px;}
.ws2{word-spacing:-13.039800px;}
.ws16{word-spacing:-12.982800px;}
.ws13{word-spacing:-12.964800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._1c{margin-left:-82.624797px;}
._12{margin-left:-4.041570px;}
._c{margin-left:-2.892842px;}
._3{margin-left:-1.300320px;}
._1{width:1.006141px;}
._8{width:2.402159px;}
._7{width:4.027800px;}
._4{width:5.290800px;}
._a{width:6.337433px;}
._9{width:7.395000px;}
._5{width:9.318600px;}
._6{width:10.536659px;}
._f{width:12.128581px;}
._d{width:14.406480px;}
._b{width:16.292400px;}
._14{width:17.314560px;}
._15{width:18.516960px;}
._e{width:19.839600px;}
._1b{width:21.163680px;}
._13{width:22.244400px;}
._1a{width:24.011640px;}
._11{width:25.183439px;}
._10{width:26.452800px;}
._18{width:44.873280px;}
._19{width:46.255979px;}
._0{width:47.895648px;}
._2{width:49.208988px;}
._16{width:67.839120px;}
._17{width:69.008040px;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(190,190,190);}
.fc2{color:rgb(155,155,155);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:7.830000px;}
.yf9{bottom:7.860000px;}
.yf6{bottom:7.920000px;}
.y107{bottom:8.280000px;}
.y106{bottom:10.260000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y165{bottom:118.650000px;}
.y177{bottom:119.100000px;}
.y11e{bottom:119.730000px;}
.y69{bottom:119.910000px;}
.yc2{bottom:127.200000px;}
.y14c{bottom:136.200000px;}
.ye1{bottom:136.650000px;}
.y11d{bottom:137.280000px;}
.y56{bottom:137.460000px;}
.y131{bottom:139.530000px;}
.y27{bottom:142.050000px;}
.y19d{bottom:144.120000px;}
.yc1{bottom:144.840000px;}
.y9f{bottom:145.200000px;}
.y1b9{bottom:146.460000px;}
.y14b{bottom:153.840000px;}
.ye0{bottom:154.200000px;}
.y11c{bottom:154.920000px;}
.y55{bottom:155.100000px;}
.y130{bottom:157.080000px;}
.y26{bottom:159.600000px;}
.y19c{bottom:161.670000px;}
.y9e{bottom:162.840000px;}
.y1b8{bottom:164.100000px;}
.yf2{bottom:166.800000px;}
.yc0{bottom:171.390000px;}
.ydf{bottom:171.840000px;}
.y54{bottom:172.650000px;}
.y12f{bottom:174.720000px;}
.y25{bottom:177.240000px;}
.y19b{bottom:179.310000px;}
.y9d{bottom:180.390000px;}
.yde{bottom:189.390000px;}
.y176{bottom:189.840000px;}
.y53{bottom:190.200000px;}
.y11b{bottom:190.470000px;}
.y1b7{bottom:190.650000px;}
.y24{bottom:194.790000px;}
.y19a{bottom:196.860000px;}
.yf1{bottom:202.440000px;}
.y7a{bottom:204.330000px;}
.ybf{bottom:206.940000px;}
.y164{bottom:207.390000px;}
.y52{bottom:207.840000px;}
.y11a{bottom:208.020000px;}
.y1b6{bottom:208.200000px;}
.y12e{bottom:210.270000px;}
.y23{bottom:212.340000px;}
.y199{bottom:214.410000px;}
.y9c{bottom:215.940000px;}
.yf0{bottom:219.990000px;}
.y79{bottom:221.970000px;}
.ybe{bottom:224.580000px;}
.y163{bottom:224.940000px;}
.y119{bottom:225.660000px;}
.y68{bottom:225.840000px;}
.y12d{bottom:227.910000px;}
.y22{bottom:229.980000px;}
.y9b{bottom:233.580000px;}
.y1b5{bottom:234.840000px;}
.y78{bottom:239.520000px;}
.y14a{bottom:242.580000px;}
.y118{bottom:243.210000px;}
.y51{bottom:243.390000px;}
.y12c{bottom:245.460000px;}
.y198{bottom:250.050000px;}
.y9a{bottom:251.130000px;}
.ydd{bottom:251.850000px;}
.y1b4{bottom:252.390000px;}
.yef{bottom:255.540000px;}
.ybd{bottom:260.130000px;}
.y175{bottom:260.580000px;}
.y50{bottom:260.940000px;}
.y21{bottom:265.530000px;}
.y77{bottom:266.160000px;}
.y197{bottom:267.600000px;}
.y99{bottom:268.770000px;}
.y1b3{bottom:269.940000px;}
.yee{bottom:273.180000px;}
.ybc{bottom:277.770000px;}
.y162{bottom:278.130000px;}
.y4f{bottom:278.580000px;}
.y117{bottom:278.760000px;}
.y12b{bottom:281.010000px;}
.y20{bottom:283.170000px;}
.y196{bottom:285.240000px;}
.ybb{bottom:295.320000px;}
.y161{bottom:295.770000px;}
.y4e{bottom:296.130000px;}
.y116{bottom:296.400000px;}
.y1b2{bottom:296.580000px;}
.y12a{bottom:298.650000px;}
.yed{bottom:299.730000px;}
.ydc{bottom:300.180000px;}
.y1f{bottom:300.720000px;}
.y76{bottom:301.710000px;}
.y195{bottom:302.790000px;}
.y98{bottom:304.320000px;}
.y67{bottom:305.130000px;}
.yba{bottom:312.870000px;}
.y149{bottom:313.320000px;}
.y4d{bottom:313.770000px;}
.y115{bottom:313.950000px;}
.y1b1{bottom:314.130000px;}
.y129{bottom:316.200000px;}
.ydb{bottom:317.730000px;}
.y1e{bottom:318.270000px;}
.y75{bottom:319.260000px;}
.y97{bottom:321.870000px;}
.y148{bottom:330.870000px;}
.y174{bottom:331.320000px;}
.y114{bottom:331.590000px;}
.y18d{bottom:331.770000px;}
.yec{bottom:335.370000px;}
.y1d{bottom:335.910000px;}
.y74{bottom:336.900000px;}
.y194{bottom:338.340000px;}
.y96{bottom:339.510000px;}
.y4c{bottom:340.320000px;}
.y1b0{bottom:340.770000px;}
.y66{bottom:341.040000px;}
.yb9{bottom:348.510000px;}
.y160{bottom:348.870000px;}
.y113{bottom:349.140000px;}
.y18c{bottom:349.320000px;}
.y128{bottom:351.750000px;}
.yeb{bottom:352.920000px;}
.yda{bottom:353.370000px;}
.y1c{bottom:353.460000px;}
.y193{bottom:355.980000px;}
.y1af{bottom:358.320000px;}
.y73{bottom:363.450000px;}
.y95{bottom:366.060000px;}
.y15f{bottom:366.510000px;}
.y18b{bottom:366.870000px;}
.y127{bottom:369.390000px;}
.yd9{bottom:370.920000px;}
.y192{bottom:373.530000px;}
.y4b{bottom:376.230000px;}
.y1b{bottom:380.100000px;}
.yb8{bottom:383.700000px;}
.y147{bottom:384.060000px;}
.y173{bottom:384.510000px;}
.y112{bottom:384.690000px;}
.y1ae{bottom:384.870000px;}
.y126{bottom:386.940000px;}
.yd8{bottom:388.470000px;}
.y65{bottom:389.370000px;}
.y191{bottom:391.170000px;}
.y72{bottom:399.000000px;}
.yb7{bottom:401.250000px;}
.y94{bottom:401.700000px;}
.y172{bottom:402.060000px;}
.y111{bottom:402.330000px;}
.y1ad{bottom:402.510000px;}
.y125{bottom:404.580000px;}
.yea{bottom:406.110000px;}
.y64{bottom:406.920000px;}
.y1a{bottom:416.010000px;}
.y71{bottom:416.640000px;}
.y190{bottom:417.990000px;}
.y146{bottom:419.250000px;}
.y15e{bottom:419.700000px;}
.y110{bottom:419.880000px;}
.y124{bottom:422.130000px;}
.ye9{bottom:423.660000px;}
.yd7{bottom:424.110000px;}
.y4a{bottom:424.470000px;}
.y1ac{bottom:429.060000px;}
.yb6{bottom:436.800000px;}
.y93{bottom:437.250000px;}
.y10f{bottom:437.520000px;}
.ye8{bottom:441.300000px;}
.yd6{bottom:441.660000px;}
.y49{bottom:442.110000px;}
.y63{bottom:442.470000px;}
.y70{bottom:443.190000px;}
.y1ab{bottom:446.700000px;}
.y123{bottom:448.680000px;}
.yb5{bottom:454.440000px;}
.y92{bottom:454.800000px;}
.yd5{bottom:459.300000px;}
.y62{bottom:460.110000px;}
.y10e{bottom:464.070000px;}
.y19{bottom:464.250000px;}
.y18f{bottom:466.320000px;}
.yb4{bottom:472.020000px;}
.y91{bottom:472.470000px;}
.y171{bottom:472.830000px;}
.y1aa{bottom:473.280000px;}
.yd4{bottom:476.880000px;}
.y48{bottom:477.690000px;}
.y6f{bottom:478.860000px;}
.y18{bottom:482.190000px;}
.y122{bottom:484.350000px;}
.y18e{bottom:489.570000px;}
.yb3{bottom:489.660000px;}
.y145{bottom:490.020000px;}
.y170{bottom:490.470000px;}
.y1a9{bottom:490.830000px;}
.ye7{bottom:494.430000px;}
.y47{bottom:495.330000px;}
.y10d{bottom:500.010000px;}
.y6e{bottom:502.080000px;}
.y90{bottom:508.020000px;}
.y121{bottom:510.900000px;}
.yd3{bottom:512.430000px;}
.y46{bottom:512.880000px;}
.y61{bottom:513.330000px;}
.y144{bottom:516.660000px;}
.y18a{bottom:517.020000px;}
.y1a8{bottom:517.470000px;}
.y17{bottom:519.180000px;}
.y120{bottom:525.120000px;}
.yb2{bottom:525.210000px;}
.y8f{bottom:525.660000px;}
.yd2{bottom:530.070000px;}
.y60{bottom:530.880000px;}
.y1a7{bottom:535.020000px;}
.y16{bottom:536.820000px;}
.yb1{bottom:542.760000px;}
.y8e{bottom:543.210000px;}
.y10c{bottom:545.640000px;}
.yd1{bottom:547.620000px;}
.y45{bottom:548.430000px;}
.y143{bottom:552.210000px;}
.y189{bottom:552.660000px;}
.y15{bottom:554.370000px;}
.yb0{bottom:560.400000px;}
.y15d{bottom:560.760000px;}
.y16f{bottom:561.210000px;}
.y1a6{bottom:561.660000px;}
.ye6{bottom:565.260000px;}
.y44{bottom:566.070000px;}
.y142{bottom:569.760000px;}
.y188{bottom:570.210000px;}
.y14{bottom:571.920000px;}
.y10b{bottom:575.340000px;}
.yaf{bottom:577.950000px;}
.y8d{bottom:578.760000px;}
.y1a5{bottom:579.210000px;}
.yd0{bottom:583.260000px;}
.y43{bottom:583.620000px;}
.y15c{bottom:587.400000px;}
.y13{bottom:589.560000px;}
.y8c{bottom:596.400000px;}
.ycf{bottom:600.810000px;}
.y5f{bottom:601.620000px;}
.yae{bottom:604.590000px;}
.y10a{bottom:605.040000px;}
.y141{bottom:605.400000px;}
.y187{bottom:605.760000px;}
.y12{bottom:607.110000px;}
.y8b{bottom:613.950000px;}
.yce{bottom:618.360000px;}
.y42{bottom:619.260000px;}
.y140{bottom:622.950000px;}
.y186{bottom:623.400000px;}
.y11{bottom:624.750000px;}
.y8a{bottom:631.590000px;}
.y109{bottom:634.740000px;}
.ye5{bottom:636.000000px;}
.y41{bottom:636.810000px;}
.yad{bottom:640.500000px;}
.y13f{bottom:640.590000px;}
.y185{bottom:640.950000px;}
.y10{bottom:642.300000px;}
.y89{bottom:649.140000px;}
.y1a4{bottom:649.950000px;}
.ycd{bottom:654.000000px;}
.y40{bottom:654.360000px;}
.y13e{bottom:658.140000px;}
.y16e{bottom:658.590000px;}
.yf{bottom:659.850000px;}
.y108{bottom:664.440000px;}
.y1a3{bottom:667.590000px;}
.ycc{bottom:671.550000px;}
.y3f{bottom:672.000000px;}
.y15b{bottom:676.140000px;}
.y184{bottom:676.590000px;}
.ye{bottom:677.490000px;}
.y88{bottom:684.690000px;}
.yac{bottom:688.740000px;}
.ycb{bottom:689.190000px;}
.y3e{bottom:689.550000px;}
.y5e{bottom:690.000000px;}
.y13d{bottom:693.690000px;}
.y105{bottom:694.140000px;}
.yd{bottom:695.040000px;}
.y87{bottom:702.330000px;}
.yca{bottom:706.740000px;}
.y5d{bottom:707.550000px;}
.y13c{bottom:711.330000px;}
.y183{bottom:711.690000px;}
.yc{bottom:712.680000px;}
.y86{bottom:719.880000px;}
.y104{bottom:723.840000px;}
.yab{bottom:724.290000px;}
.y3d{bottom:725.190000px;}
.y13b{bottom:728.880000px;}
.y16d{bottom:729.330000px;}
.yb{bottom:730.230000px;}
.yc9{bottom:733.290000px;}
.y1a2{bottom:738.330000px;}
.yaa{bottom:741.930000px;}
.y3c{bottom:742.740000px;}
.y85{bottom:746.520000px;}
.y15a{bottom:746.880000px;}
.y182{bottom:747.330000px;}
.y1a1{bottom:755.880000px;}
.ya{bottom:757.140000px;}
.ye4{bottom:759.930000px;}
.y3b{bottom:760.290000px;}
.y159{bottom:764.520000px;}
.y181{bottom:764.880000px;}
.yc8{bottom:768.930000px;}
.y103{bottom:772.530000px;}
.ya9{bottom:777.480000px;}
.y3a{bottom:777.930000px;}
.y13a{bottom:782.070000px;}
.y84{bottom:782.340000px;}
.y180{bottom:782.520000px;}
.yc7{bottom:786.480000px;}
.ya8{bottom:795.030000px;}
.y39{bottom:795.480000px;}
.y5c{bottom:795.930000px;}
.y139{bottom:799.620000px;}
.y16c{bottom:800.070000px;}
.ye3{bottom:804.030000px;}
.y9{bottom:805.380000px;}
.y102{bottom:808.170000px;}
.ya7{bottom:812.670000px;}
.y5b{bottom:813.480000px;}
.y138{bottom:817.260000px;}
.y158{bottom:817.620000px;}
.y17f{bottom:818.070000px;}
.yc6{bottom:822.030000px;}
.y101{bottom:825.720000px;}
.y1a0{bottom:826.620000px;}
.y83{bottom:830.670000px;}
.y38{bottom:831.030000px;}
.y137{bottom:834.810000px;}
.y157{bottom:835.260000px;}
.y17e{bottom:835.620000px;}
.yc5{bottom:839.670000px;}
.y8{bottom:841.200000px;}
.y100{bottom:843.360000px;}
.y19f{bottom:844.260000px;}
.y82{bottom:848.220000px;}
.y37{bottom:848.670000px;}
.y156{bottom:852.810000px;}
.y17d{bottom:853.260000px;}
.ye2{bottom:857.220000px;}
.ya6{bottom:865.860000px;}
.y36{bottom:866.220000px;}
.y136{bottom:870.450000px;}
.y17c{bottom:870.810000px;}
.yc4{bottom:875.220000px;}
.y7{bottom:877.200000px;}
.yff{bottom:878.910000px;}
.ya5{bottom:883.410000px;}
.y35{bottom:883.860000px;}
.y135{bottom:888.000000px;}
.y155{bottom:888.450000px;}
.y5a{bottom:892.860000px;}
.yfe{bottom:896.460000px;}
.y34{bottom:901.410000px;}
.y134{bottom:905.550000px;}
.y154{bottom:906.000000px;}
.y17b{bottom:906.450000px;}
.y6d{bottom:910.410000px;}
.y6{bottom:913.200000px;}
.y19e{bottom:915.270000px;}
.y81{bottom:918.960000px;}
.y153{bottom:923.550000px;}
.y17a{bottom:924.000000px;}
.y33{bottom:927.960000px;}
.y59{bottom:928.410000px;}
.yfd{bottom:932.100000px;}
.y133{bottom:932.190000px;}
.ya4{bottom:936.600000px;}
.y152{bottom:941.190000px;}
.y179{bottom:941.550000px;}
.y80{bottom:945.600000px;}
.y58{bottom:945.960000px;}
.y5{bottom:949.290000px;}
.yfc{bottom:949.650000px;}
.ya3{bottom:954.150000px;}
.y16b{bottom:959.190000px;}
.y32{bottom:963.600000px;}
.yfb{bottom:967.290000px;}
.y132{bottom:968.100000px;}
.y151{bottom:976.740000px;}
.y11f{bottom:980.790000px;}
.y6c{bottom:981.150000px;}
.yfa{bottom:982.230000px;}
.y4{bottom:987.630000px;}
.ya2{bottom:989.790000px;}
.y150{bottom:994.290000px;}
.y178{bottom:994.740000px;}
.y6b{bottom:998.790000px;}
.y31{bottom:999.150000px;}
.ya1{bottom:1007.340000px;}
.yf8{bottom:1009.590000px;}
.y14f{bottom:1011.960000px;}
.y3{bottom:1012.320000px;}
.y7f{bottom:1016.370000px;}
.y30{bottom:1016.820000px;}
.y16a{bottom:1029.960000px;}
.ya0{bottom:1033.920000px;}
.y2f{bottom:1034.370000px;}
.yf7{bottom:1036.890000px;}
.y14e{bottom:1038.510000px;}
.y7e{bottom:1042.920000px;}
.y169{bottom:1047.510000px;}
.y2e{bottom:1051.920000px;}
.y1be{bottom:1058.580000px;}
.yf5{bottom:1064.250000px;}
.y168{bottom:1065.150000px;}
.y6a{bottom:1069.560000px;}
.y57{bottom:1069.920000px;}
.y14d{bottom:1074.420000px;}
.y1bd{bottom:1076.220000px;}
.y7d{bottom:1078.560000px;}
.yc3{bottom:1087.110000px;}
.y2d{bottom:1087.560000px;}
.yf3{bottom:1091.610000px;}
.y167{bottom:1091.700000px;}
.y7c{bottom:1096.110000px;}
.y1bc{bottom:1102.770000px;}
.y2c{bottom:1105.110000px;}
.y7b{bottom:1113.750000px;}
.y1bb{bottom:1120.320000px;}
.y2b{bottom:1122.750000px;}
.y166{bottom:1127.610000px;}
.y1ba{bottom:1138.320000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.hb{height:26.550000px;}
.hd{height:26.580000px;}
.hc{height:26.640000px;}
.he{height:28.980000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.ha{height:59.973223px;}
.h10{height:61.793886px;}
.h8{height:62.585859px;}
.hf{height:66.343359px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:74.430000px;}
.w7{width:87.570000px;}
.wa{width:95.520000px;}
.wc{width:95.580000px;}
.wb{width:110.610000px;}
.w6{width:126.180000px;}
.w4{width:129.060000px;}
.w9{width:130.320000px;}
.w5{width:130.500000px;}
.w8{width:212.430000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x16{left:111.239987px;}
.xc{left:122.850000px;}
.x6{left:171.300000px;}
.x2{left:202.799987px;}
.x5{left:245.099987px;}
.x8{left:246.450000px;}
.x13{left:294.239987px;}
.x15{left:304.499987px;}
.xd{left:336.000000px;}
.x9{left:376.230000px;}
.x12{left:446.609987px;}
.xe{left:467.130000px;}
.xa{left:507.480000px;}
.xf{left:563.460000px;}
.xb{left:634.380000px;}
.x10{left:674.790000px;}
.x11{left:686.309987px;}
.x4{left:739.139987px;}
.x3{left:792.059987px;}
.x14{left:799.889987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls1a{letter-spacing:-0.232533pt;}
.ls20{letter-spacing:-0.216533pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls9{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls1f{letter-spacing:-0.082667pt;}
.ls8{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls16{letter-spacing:-0.056533pt;}
.ls13{letter-spacing:-0.034560pt;}
.ls19{letter-spacing:-0.033600pt;}
.ls1c{letter-spacing:-0.013120pt;}
.ls6{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.043733pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.102933pt;}
.ls15{letter-spacing:0.103467pt;}
.lsf{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls4{letter-spacing:0.160000pt;}
.ls21{letter-spacing:0.161067pt;}
.ls12{letter-spacing:0.177067pt;}
.ls1b{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls14{letter-spacing:0.480000pt;}
.ls1e{letter-spacing:42.423680pt;}
.ls1d{letter-spacing:71.863680pt;}
.ws12{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws9{word-spacing:-11.933867pt;}
.ws17{word-spacing:-11.917867pt;}
.ws8{word-spacing:-11.910933pt;}
.wsd{word-spacing:-11.860267pt;}
.ws10{word-spacing:-11.859733pt;}
.ws6{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.743680pt;}
.ws11{word-spacing:-11.723200pt;}
.wsc{word-spacing:-11.722240pt;}
.wse{word-spacing:-11.700267pt;}
.ws15{word-spacing:-11.674133pt;}
.wsf{word-spacing:-11.620267pt;}
.ws2{word-spacing:-11.590933pt;}
.ws16{word-spacing:-11.540267pt;}
.ws13{word-spacing:-11.524267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._1c{margin-left:-73.444264pt;}
._12{margin-left:-3.592507pt;}
._c{margin-left:-2.571415pt;}
._3{margin-left:-1.155840pt;}
._1{width:0.894347pt;}
._8{width:2.135252pt;}
._7{width:3.580266pt;}
._4{width:4.702934pt;}
._a{width:5.633274pt;}
._9{width:6.573334pt;}
._5{width:8.283200pt;}
._6{width:9.365919pt;}
._f{width:10.780961pt;}
._d{width:12.805760pt;}
._b{width:14.482133pt;}
._14{width:15.390720pt;}
._15{width:16.459520pt;}
._e{width:17.635200pt;}
._1b{width:18.812160pt;}
._13{width:19.772800pt;}
._1a{width:21.343680pt;}
._11{width:22.385279pt;}
._10{width:23.513600pt;}
._18{width:39.887360pt;}
._19{width:41.116426pt;}
._0{width:42.573909pt;}
._2{width:43.741323pt;}
._16{width:60.301440pt;}
._17{width:61.340480pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:6.960000pt;}
.yf9{bottom:6.986667pt;}
.yf6{bottom:7.040000pt;}
.y107{bottom:7.360000pt;}
.y106{bottom:9.120000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y165{bottom:105.466667pt;}
.y177{bottom:105.866667pt;}
.y11e{bottom:106.426667pt;}
.y69{bottom:106.586667pt;}
.yc2{bottom:113.066667pt;}
.y14c{bottom:121.066667pt;}
.ye1{bottom:121.466667pt;}
.y11d{bottom:122.026667pt;}
.y56{bottom:122.186667pt;}
.y131{bottom:124.026667pt;}
.y27{bottom:126.266667pt;}
.y19d{bottom:128.106667pt;}
.yc1{bottom:128.746667pt;}
.y9f{bottom:129.066667pt;}
.y1b9{bottom:130.186667pt;}
.y14b{bottom:136.746667pt;}
.ye0{bottom:137.066667pt;}
.y11c{bottom:137.706667pt;}
.y55{bottom:137.866667pt;}
.y130{bottom:139.626667pt;}
.y26{bottom:141.866667pt;}
.y19c{bottom:143.706667pt;}
.y9e{bottom:144.746667pt;}
.y1b8{bottom:145.866667pt;}
.yf2{bottom:148.266667pt;}
.yc0{bottom:152.346667pt;}
.ydf{bottom:152.746667pt;}
.y54{bottom:153.466667pt;}
.y12f{bottom:155.306667pt;}
.y25{bottom:157.546667pt;}
.y19b{bottom:159.386667pt;}
.y9d{bottom:160.346667pt;}
.yde{bottom:168.346667pt;}
.y176{bottom:168.746667pt;}
.y53{bottom:169.066667pt;}
.y11b{bottom:169.306667pt;}
.y1b7{bottom:169.466667pt;}
.y24{bottom:173.146667pt;}
.y19a{bottom:174.986667pt;}
.yf1{bottom:179.946667pt;}
.y7a{bottom:181.626667pt;}
.ybf{bottom:183.946667pt;}
.y164{bottom:184.346667pt;}
.y52{bottom:184.746667pt;}
.y11a{bottom:184.906667pt;}
.y1b6{bottom:185.066667pt;}
.y12e{bottom:186.906667pt;}
.y23{bottom:188.746667pt;}
.y199{bottom:190.586667pt;}
.y9c{bottom:191.946667pt;}
.yf0{bottom:195.546667pt;}
.y79{bottom:197.306667pt;}
.ybe{bottom:199.626667pt;}
.y163{bottom:199.946667pt;}
.y119{bottom:200.586667pt;}
.y68{bottom:200.746667pt;}
.y12d{bottom:202.586667pt;}
.y22{bottom:204.426667pt;}
.y9b{bottom:207.626667pt;}
.y1b5{bottom:208.746667pt;}
.y78{bottom:212.906667pt;}
.y14a{bottom:215.626667pt;}
.y118{bottom:216.186667pt;}
.y51{bottom:216.346667pt;}
.y12c{bottom:218.186667pt;}
.y198{bottom:222.266667pt;}
.y9a{bottom:223.226667pt;}
.ydd{bottom:223.866667pt;}
.y1b4{bottom:224.346667pt;}
.yef{bottom:227.146667pt;}
.ybd{bottom:231.226667pt;}
.y175{bottom:231.626667pt;}
.y50{bottom:231.946667pt;}
.y21{bottom:236.026667pt;}
.y77{bottom:236.586667pt;}
.y197{bottom:237.866667pt;}
.y99{bottom:238.906667pt;}
.y1b3{bottom:239.946667pt;}
.yee{bottom:242.826667pt;}
.ybc{bottom:246.906667pt;}
.y162{bottom:247.226667pt;}
.y4f{bottom:247.626667pt;}
.y117{bottom:247.786667pt;}
.y12b{bottom:249.786667pt;}
.y20{bottom:251.706667pt;}
.y196{bottom:253.546667pt;}
.ybb{bottom:262.506667pt;}
.y161{bottom:262.906667pt;}
.y4e{bottom:263.226667pt;}
.y116{bottom:263.466667pt;}
.y1b2{bottom:263.626667pt;}
.y12a{bottom:265.466667pt;}
.yed{bottom:266.426667pt;}
.ydc{bottom:266.826667pt;}
.y1f{bottom:267.306667pt;}
.y76{bottom:268.186667pt;}
.y195{bottom:269.146667pt;}
.y98{bottom:270.506667pt;}
.y67{bottom:271.226667pt;}
.yba{bottom:278.106667pt;}
.y149{bottom:278.506667pt;}
.y4d{bottom:278.906667pt;}
.y115{bottom:279.066667pt;}
.y1b1{bottom:279.226667pt;}
.y129{bottom:281.066667pt;}
.ydb{bottom:282.426667pt;}
.y1e{bottom:282.906667pt;}
.y75{bottom:283.786667pt;}
.y97{bottom:286.106667pt;}
.y148{bottom:294.106667pt;}
.y174{bottom:294.506667pt;}
.y114{bottom:294.746667pt;}
.y18d{bottom:294.906667pt;}
.yec{bottom:298.106667pt;}
.y1d{bottom:298.586667pt;}
.y74{bottom:299.466667pt;}
.y194{bottom:300.746667pt;}
.y96{bottom:301.786667pt;}
.y4c{bottom:302.506667pt;}
.y1b0{bottom:302.906667pt;}
.y66{bottom:303.146667pt;}
.yb9{bottom:309.786667pt;}
.y160{bottom:310.106667pt;}
.y113{bottom:310.346667pt;}
.y18c{bottom:310.506667pt;}
.y128{bottom:312.666667pt;}
.yeb{bottom:313.706667pt;}
.yda{bottom:314.106667pt;}
.y1c{bottom:314.186667pt;}
.y193{bottom:316.426667pt;}
.y1af{bottom:318.506667pt;}
.y73{bottom:323.066667pt;}
.y95{bottom:325.386667pt;}
.y15f{bottom:325.786667pt;}
.y18b{bottom:326.106667pt;}
.y127{bottom:328.346667pt;}
.yd9{bottom:329.706667pt;}
.y192{bottom:332.026667pt;}
.y4b{bottom:334.426667pt;}
.y1b{bottom:337.866667pt;}
.yb8{bottom:341.066667pt;}
.y147{bottom:341.386667pt;}
.y173{bottom:341.786667pt;}
.y112{bottom:341.946667pt;}
.y1ae{bottom:342.106667pt;}
.y126{bottom:343.946667pt;}
.yd8{bottom:345.306667pt;}
.y65{bottom:346.106667pt;}
.y191{bottom:347.706667pt;}
.y72{bottom:354.666667pt;}
.yb7{bottom:356.666667pt;}
.y94{bottom:357.066667pt;}
.y172{bottom:357.386667pt;}
.y111{bottom:357.626667pt;}
.y1ad{bottom:357.786667pt;}
.y125{bottom:359.626667pt;}
.yea{bottom:360.986667pt;}
.y64{bottom:361.706667pt;}
.y1a{bottom:369.786667pt;}
.y71{bottom:370.346667pt;}
.y190{bottom:371.546667pt;}
.y146{bottom:372.666667pt;}
.y15e{bottom:373.066667pt;}
.y110{bottom:373.226667pt;}
.y124{bottom:375.226667pt;}
.ye9{bottom:376.586667pt;}
.yd7{bottom:376.986667pt;}
.y4a{bottom:377.306667pt;}
.y1ac{bottom:381.386667pt;}
.yb6{bottom:388.266667pt;}
.y93{bottom:388.666667pt;}
.y10f{bottom:388.906667pt;}
.ye8{bottom:392.266667pt;}
.yd6{bottom:392.586667pt;}
.y49{bottom:392.986667pt;}
.y63{bottom:393.306667pt;}
.y70{bottom:393.946667pt;}
.y1ab{bottom:397.066667pt;}
.y123{bottom:398.826667pt;}
.yb5{bottom:403.946667pt;}
.y92{bottom:404.266667pt;}
.yd5{bottom:408.266667pt;}
.y62{bottom:408.986667pt;}
.y10e{bottom:412.506667pt;}
.y19{bottom:412.666667pt;}
.y18f{bottom:414.506667pt;}
.yb4{bottom:419.573333pt;}
.y91{bottom:419.973333pt;}
.y171{bottom:420.293333pt;}
.y1aa{bottom:420.693333pt;}
.yd4{bottom:423.893333pt;}
.y48{bottom:424.613333pt;}
.y6f{bottom:425.653333pt;}
.y18{bottom:428.613333pt;}
.y122{bottom:430.533333pt;}
.y18e{bottom:435.173333pt;}
.yb3{bottom:435.253333pt;}
.y145{bottom:435.573333pt;}
.y170{bottom:435.973333pt;}
.y1a9{bottom:436.293333pt;}
.ye7{bottom:439.493333pt;}
.y47{bottom:440.293333pt;}
.y10d{bottom:444.453333pt;}
.y6e{bottom:446.293333pt;}
.y90{bottom:451.573333pt;}
.y121{bottom:454.133333pt;}
.yd3{bottom:455.493333pt;}
.y46{bottom:455.893333pt;}
.y61{bottom:456.293333pt;}
.y144{bottom:459.253333pt;}
.y18a{bottom:459.573333pt;}
.y1a8{bottom:459.973333pt;}
.y17{bottom:461.493333pt;}
.y120{bottom:466.773333pt;}
.yb2{bottom:466.853333pt;}
.y8f{bottom:467.253333pt;}
.yd2{bottom:471.173333pt;}
.y60{bottom:471.893333pt;}
.y1a7{bottom:475.573333pt;}
.y16{bottom:477.173333pt;}
.yb1{bottom:482.453333pt;}
.y8e{bottom:482.853333pt;}
.y10c{bottom:485.013333pt;}
.yd1{bottom:486.773333pt;}
.y45{bottom:487.493333pt;}
.y143{bottom:490.853333pt;}
.y189{bottom:491.253333pt;}
.y15{bottom:492.773333pt;}
.yb0{bottom:498.133333pt;}
.y15d{bottom:498.453333pt;}
.y16f{bottom:498.853333pt;}
.y1a6{bottom:499.253333pt;}
.ye6{bottom:502.453333pt;}
.y44{bottom:503.173333pt;}
.y142{bottom:506.453333pt;}
.y188{bottom:506.853333pt;}
.y14{bottom:508.373333pt;}
.y10b{bottom:511.413333pt;}
.yaf{bottom:513.733333pt;}
.y8d{bottom:514.453333pt;}
.y1a5{bottom:514.853333pt;}
.yd0{bottom:518.453333pt;}
.y43{bottom:518.773333pt;}
.y15c{bottom:522.133333pt;}
.y13{bottom:524.053333pt;}
.y8c{bottom:530.133333pt;}
.ycf{bottom:534.053333pt;}
.y5f{bottom:534.773333pt;}
.yae{bottom:537.413333pt;}
.y10a{bottom:537.813333pt;}
.y141{bottom:538.133333pt;}
.y187{bottom:538.453333pt;}
.y12{bottom:539.653333pt;}
.y8b{bottom:545.733333pt;}
.yce{bottom:549.653333pt;}
.y42{bottom:550.453333pt;}
.y140{bottom:553.733333pt;}
.y186{bottom:554.133333pt;}
.y11{bottom:555.333333pt;}
.y8a{bottom:561.413333pt;}
.y109{bottom:564.213333pt;}
.ye5{bottom:565.333333pt;}
.y41{bottom:566.053333pt;}
.yad{bottom:569.333333pt;}
.y13f{bottom:569.413333pt;}
.y185{bottom:569.733333pt;}
.y10{bottom:570.933333pt;}
.y89{bottom:577.013333pt;}
.y1a4{bottom:577.733333pt;}
.ycd{bottom:581.333333pt;}
.y40{bottom:581.653333pt;}
.y13e{bottom:585.013333pt;}
.y16e{bottom:585.413333pt;}
.yf{bottom:586.533333pt;}
.y108{bottom:590.613333pt;}
.y1a3{bottom:593.413333pt;}
.ycc{bottom:596.933333pt;}
.y3f{bottom:597.333333pt;}
.y15b{bottom:601.013333pt;}
.y184{bottom:601.413333pt;}
.ye{bottom:602.213333pt;}
.y88{bottom:608.613333pt;}
.yac{bottom:612.213333pt;}
.ycb{bottom:612.613333pt;}
.y3e{bottom:612.933333pt;}
.y5e{bottom:613.333333pt;}
.y13d{bottom:616.613333pt;}
.y105{bottom:617.013333pt;}
.yd{bottom:617.813333pt;}
.y87{bottom:624.293333pt;}
.yca{bottom:628.213333pt;}
.y5d{bottom:628.933333pt;}
.y13c{bottom:632.293333pt;}
.y183{bottom:632.613333pt;}
.yc{bottom:633.493333pt;}
.y86{bottom:639.893333pt;}
.y104{bottom:643.413333pt;}
.yab{bottom:643.813333pt;}
.y3d{bottom:644.613333pt;}
.y13b{bottom:647.893333pt;}
.y16d{bottom:648.293333pt;}
.yb{bottom:649.093333pt;}
.yc9{bottom:651.813333pt;}
.y1a2{bottom:656.293333pt;}
.yaa{bottom:659.493333pt;}
.y3c{bottom:660.213333pt;}
.y85{bottom:663.573333pt;}
.y15a{bottom:663.893333pt;}
.y182{bottom:664.293333pt;}
.y1a1{bottom:671.893333pt;}
.ya{bottom:673.013333pt;}
.ye4{bottom:675.493333pt;}
.y3b{bottom:675.813333pt;}
.y159{bottom:679.573333pt;}
.y181{bottom:679.893333pt;}
.yc8{bottom:683.493333pt;}
.y103{bottom:686.693333pt;}
.ya9{bottom:691.093333pt;}
.y3a{bottom:691.493333pt;}
.y13a{bottom:695.173333pt;}
.y84{bottom:695.413333pt;}
.y180{bottom:695.573333pt;}
.yc7{bottom:699.093333pt;}
.ya8{bottom:706.693333pt;}
.y39{bottom:707.093333pt;}
.y5c{bottom:707.493333pt;}
.y139{bottom:710.773333pt;}
.y16c{bottom:711.173333pt;}
.ye3{bottom:714.693333pt;}
.y9{bottom:715.893333pt;}
.y102{bottom:718.373333pt;}
.ya7{bottom:722.373333pt;}
.y5b{bottom:723.093333pt;}
.y138{bottom:726.453333pt;}
.y158{bottom:726.773333pt;}
.y17f{bottom:727.173333pt;}
.yc6{bottom:730.693333pt;}
.y101{bottom:733.973333pt;}
.y1a0{bottom:734.773333pt;}
.y83{bottom:738.373333pt;}
.y38{bottom:738.693333pt;}
.y137{bottom:742.053333pt;}
.y157{bottom:742.453333pt;}
.y17e{bottom:742.773333pt;}
.yc5{bottom:746.373333pt;}
.y8{bottom:747.733333pt;}
.y100{bottom:749.653333pt;}
.y19f{bottom:750.453333pt;}
.y82{bottom:753.973333pt;}
.y37{bottom:754.373333pt;}
.y156{bottom:758.053333pt;}
.y17d{bottom:758.453333pt;}
.ye2{bottom:761.973333pt;}
.ya6{bottom:769.653333pt;}
.y36{bottom:769.973333pt;}
.y136{bottom:773.733333pt;}
.y17c{bottom:774.053333pt;}
.yc4{bottom:777.973333pt;}
.y7{bottom:779.733333pt;}
.yff{bottom:781.253333pt;}
.ya5{bottom:785.253333pt;}
.y35{bottom:785.653333pt;}
.y135{bottom:789.333333pt;}
.y155{bottom:789.733333pt;}
.y5a{bottom:793.653333pt;}
.yfe{bottom:796.853333pt;}
.y34{bottom:801.253333pt;}
.y134{bottom:804.933333pt;}
.y154{bottom:805.333333pt;}
.y17b{bottom:805.733333pt;}
.y6d{bottom:809.253333pt;}
.y6{bottom:811.733333pt;}
.y19e{bottom:813.573333pt;}
.y81{bottom:816.853333pt;}
.y153{bottom:820.933333pt;}
.y17a{bottom:821.333333pt;}
.y33{bottom:824.853333pt;}
.y59{bottom:825.253333pt;}
.yfd{bottom:828.533333pt;}
.y133{bottom:828.613333pt;}
.ya4{bottom:832.533333pt;}
.y152{bottom:836.613333pt;}
.y179{bottom:836.933333pt;}
.y80{bottom:840.533333pt;}
.y58{bottom:840.853333pt;}
.y5{bottom:843.813333pt;}
.yfc{bottom:844.133333pt;}
.ya3{bottom:848.133333pt;}
.y16b{bottom:852.613333pt;}
.y32{bottom:856.533333pt;}
.yfb{bottom:859.813333pt;}
.y132{bottom:860.533333pt;}
.y151{bottom:868.213333pt;}
.y11f{bottom:871.813333pt;}
.y6c{bottom:872.133333pt;}
.yfa{bottom:873.093333pt;}
.y4{bottom:877.893333pt;}
.ya2{bottom:879.813333pt;}
.y150{bottom:883.813333pt;}
.y178{bottom:884.213333pt;}
.y6b{bottom:887.813333pt;}
.y31{bottom:888.133333pt;}
.ya1{bottom:895.413333pt;}
.yf8{bottom:897.413333pt;}
.y14f{bottom:899.520000pt;}
.y3{bottom:899.840000pt;}
.y7f{bottom:903.440000pt;}
.y30{bottom:903.840000pt;}
.y16a{bottom:915.520000pt;}
.ya0{bottom:919.040000pt;}
.y2f{bottom:919.440000pt;}
.yf7{bottom:921.680000pt;}
.y14e{bottom:923.120000pt;}
.y7e{bottom:927.040000pt;}
.y169{bottom:931.120000pt;}
.y2e{bottom:935.040000pt;}
.y1be{bottom:940.960000pt;}
.yf5{bottom:946.000000pt;}
.y168{bottom:946.800000pt;}
.y6a{bottom:950.720000pt;}
.y57{bottom:951.040000pt;}
.y14d{bottom:955.040000pt;}
.y1bd{bottom:956.640000pt;}
.y7d{bottom:958.720000pt;}
.yc3{bottom:966.320000pt;}
.y2d{bottom:966.720000pt;}
.yf3{bottom:970.320000pt;}
.y167{bottom:970.400000pt;}
.y7c{bottom:974.320000pt;}
.y1bc{bottom:980.240000pt;}
.y2c{bottom:982.320000pt;}
.y7b{bottom:990.000000pt;}
.y1bb{bottom:995.840000pt;}
.y2b{bottom:998.000000pt;}
.y166{bottom:1002.320000pt;}
.y1ba{bottom:1011.840000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.hb{height:23.600000pt;}
.hd{height:23.626667pt;}
.hc{height:23.680000pt;}
.he{height:25.760000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.ha{height:53.309531pt;}
.h10{height:54.927899pt;}
.h8{height:55.631875pt;}
.hf{height:58.971875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:66.160000pt;}
.w7{width:77.840000pt;}
.wa{width:84.906667pt;}
.wc{width:84.960000pt;}
.wb{width:98.320000pt;}
.w6{width:112.160000pt;}
.w4{width:114.720000pt;}
.w9{width:115.840000pt;}
.w5{width:116.000000pt;}
.w8{width:188.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x16{left:98.879988pt;}
.xc{left:109.200000pt;}
.x6{left:152.266667pt;}
.x2{left:180.266655pt;}
.x5{left:217.866655pt;}
.x8{left:219.066667pt;}
.x13{left:261.546655pt;}
.x15{left:270.666655pt;}
.xd{left:298.666667pt;}
.x9{left:334.426667pt;}
.x12{left:396.986655pt;}
.xe{left:415.226667pt;}
.xa{left:451.093333pt;}
.xf{left:500.853333pt;}
.xb{left:563.893333pt;}
.x10{left:599.813333pt;}
.x11{left:610.053322pt;}
.x4{left:657.013322pt;}
.x3{left:704.053322pt;}
.x14{left:711.013322pt;}
}




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