
    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_70e114dccddb7328a850b6f6.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_bd5d446ca9fb78db3a4dda5d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_7b16261f3ea33bfe06839b0a.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7f9d74e27ba88a7ff09f234e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_2f2ce98e96128fe7e5b75bdd.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_e13b079a86e4c0b60ebf5e01.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e1740eb41eb218b4a314ac65.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_c4aaba872007f27f1ebeb594.woff')format("woff");}.ff9{font-family:ff9;line-height:0.963379;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_057aa4b6cfabdec268bfd15d.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bd692017e01190713286fa3a.woff')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls3{letter-spacing:-0.648000px;}
.ls4{letter-spacing:-0.370200px;}
.ls5{letter-spacing:-0.326400px;}
.ls13{letter-spacing:-0.187200px;}
.ls12{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.046800px;}
.ls16{letter-spacing:-0.036000px;}
.lsd{letter-spacing:-0.010800px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.012960px;}
.ls7{letter-spacing:0.063600px;}
.ls18{letter-spacing:0.126600px;}
.ls15{letter-spacing:0.126720px;}
.ls2{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.209400px;}
.lsa{letter-spacing:0.211680px;}
.ls1a{letter-spacing:0.211800px;}
.ls1d{letter-spacing:0.306720px;}
.ls10{letter-spacing:0.319680px;}
.lse{letter-spacing:0.357000px;}
.lsb{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.385800px;}
.lsc{letter-spacing:0.666720px;}
.ls6{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.846000px;}
.ls1e{letter-spacing:0.846720px;}
.lsf{letter-spacing:1.080000px;}
.ls1c{letter-spacing:14.346720px;}
.ls17{letter-spacing:47.466720px;}
.ls14{letter-spacing:81.450720px;}
.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;}
}
.ws9{word-spacing:-14.958600px;}
.wsb{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.820480px;}
.ws5{word-spacing:-14.572800px;}
.ws12{word-spacing:-13.993200px;}
.ws8{word-spacing:-13.504200px;}
.ws11{word-spacing:-13.359000px;}
.ws10{word-spacing:-13.356600px;}
.wsf{word-spacing:-13.273800px;}
.ws7{word-spacing:-13.160160px;}
.ws3{word-spacing:-13.147200px;}
.wse{word-spacing:-13.111200px;}
.wsa{word-spacing:-13.100400px;}
.wsd{word-spacing:-13.040400px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:2.408040px;}
._15{margin-left:-3.577560px;}
._b{margin-left:-2.247000px;}
._0{margin-left:-1.159200px;}
._1{width:1.581600px;}
._2{width:2.654160px;}
._a{width:4.018081px;}
._37{width:5.032800px;}
._9{width:6.035999px;}
._c{width:7.354201px;}
._8{width:8.517601px;}
._7{width:9.920399px;}
._d{width:11.028239px;}
._10{width:12.098881px;}
._e{width:15.067800px;}
._f{width:16.696800px;}
._11{width:17.852640px;}
._14{width:19.175040px;}
._3{width:20.557201px;}
._4{width:21.583198px;}
._6{width:23.039400px;}
._5{width:24.262799px;}
._12{width:26.234640px;}
._18{width:27.342240px;}
._16{width:28.864080px;}
._1a{width:30.927840px;}
._21{width:31.943760px;}
._25{width:33.943680px;}
._13{width:35.258400px;}
._28{width:38.099040px;}
._27{width:39.322080px;}
._29{width:42.581040px;}
._1d{width:43.624800px;}
._1c{width:44.939520px;}
._39{width:46.166640px;}
._38{width:47.270160px;}
._2a{width:55.098720px;}
._17{width:56.234160px;}
._31{width:61.732080px;}
._1b{width:65.616480px;}
._22{width:74.492880px;}
._24{width:81.604320px;}
._1f{width:82.978800px;}
._26{width:85.217760px;}
._2e{width:104.731440px;}
._2d{width:130.336560px;}
._30{width:138.105360px;}
._32{width:175.335840px;}
._34{width:176.949360px;}
._2c{width:181.909440px;}
._20{width:192.905280px;}
._23{width:197.239920px;}
._35{width:198.702000px;}
._33{width:206.411040px;}
._2f{width:227.837040px;}
._19{width:244.721040px;}
._1e{width:246.151440px;}
._36{width:278.123040px;}
._2b{width:324.198000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb7{bottom:3.420000px;}
.yb0{bottom:3.780000px;}
.yb3{bottom:5.940000px;}
.yb5{bottom:6.840000px;}
.y97{bottom:7.740000px;}
.y92{bottom:7.920000px;}
.y9c{bottom:7.965000px;}
.yb9{bottom:8.460000px;}
.ya8{bottom:12.060000px;}
.yaa{bottom:17.820000px;}
.yb4{bottom:18.000000px;}
.yac{bottom:18.180000px;}
.yaf{bottom:21.420000px;}
.y93{bottom:25.380000px;}
.ya4{bottom:25.410000px;}
.y91{bottom:25.560000px;}
.y9b{bottom:25.605000px;}
.y96{bottom:26.460000px;}
.yad{bottom:38.340000px;}
.ya7{bottom:41.400000px;}
.yeb{bottom:43.020000px;}
.y9e{bottom:44.100000px;}
.ya3{bottom:44.130000px;}
.y9a{bottom:44.325000px;}
.yea{bottom:60.660000px;}
.y125{bottom:60.705000px;}
.y2{bottom:73.260000px;}
.y1d{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.y142{bottom:115.740000px;}
.ye1{bottom:115.920000px;}
.y19e{bottom:123.840000px;}
.y160{bottom:124.200000px;}
.y4f{bottom:130.500000px;}
.ya5{bottom:132.300000px;}
.ye0{bottom:133.380000px;}
.y7e{bottom:133.560000px;}
.yf2{bottom:133.740000px;}
.y1b{bottom:136.980000px;}
.y19d{bottom:141.480000px;}
.y18b{bottom:141.840000px;}
.ya2{bottom:147.420000px;}
.y4e{bottom:148.140000px;}
.yb6{bottom:150.480000px;}
.y15f{bottom:150.840000px;}
.ydf{bottom:151.020000px;}
.y7d{bottom:151.200000px;}
.yf1{bottom:151.380000px;}
.y141{bottom:159.870000px;}
.y19c{bottom:167.970000px;}
.y18a{bottom:168.330000px;}
.y15e{bottom:168.510000px;}
.yde{bottom:168.690000px;}
.y7c{bottom:168.870000px;}
.y120{bottom:174.810000px;}
.y4d{bottom:183.630000px;}
.y19b{bottom:185.610000px;}
.y189{bottom:185.970000px;}
.ydd{bottom:186.150000px;}
.y7b{bottom:186.510000px;}
.ya1{bottom:192.270000px;}
.y11f{bottom:192.450000px;}
.y15d{bottom:194.970000px;}
.y4c{bottom:201.270000px;}
.ydc{bottom:203.790000px;}
.yf0{bottom:204.150000px;}
.y11e{bottom:210.090000px;}
.y19a{bottom:212.070000px;}
.y15c{bottom:212.610000px;}
.y1b6{bottom:212.970000px;}
.y4b{bottom:218.910000px;}
.ydb{bottom:221.430000px;}
.y7a{bottom:221.970000px;}
.y11d{bottom:227.550000px;}
.y199{bottom:229.710000px;}
.y183{bottom:230.250000px;}
.y1b5{bottom:230.610000px;}
.yef{bottom:230.790000px;}
.y4a{bottom:236.370000px;}
.ya0{bottom:237.270000px;}
.yda{bottom:239.070000px;}
.y79{bottom:239.610000px;}
.y11c{bottom:245.190000px;}
.y198{bottom:247.350000px;}
.y15b{bottom:256.710000px;}
.y1b4{bottom:257.070000px;}
.y78{bottom:257.250000px;}
.y11b{bottom:262.830000px;}
.y9f{bottom:264.450000px;}
.yd9{bottom:265.530000px;}
.y49{bottom:272.010000px;}
.y197{bottom:273.990000px;}
.y16e{bottom:274.350000px;}
.y77{bottom:274.710000px;}
.yee{bottom:276.690000px;}
.y140{bottom:279.210000px;}
.y11a{bottom:280.290000px;}
.y15a{bottom:283.350000px;}
.y48{bottom:289.650000px;}
.y196{bottom:291.630000px;}
.y188{bottom:291.990000px;}
.y76{bottom:292.350000px;}
.y119{bottom:297.930000px;}
.y159{bottom:300.990000px;}
.yd8{bottom:301.170000px;}
.y1b3{bottom:301.350000px;}
.y13f{bottom:306.030000px;}
.y47{bottom:307.110000px;}
.y9d{bottom:309.450000px;}
.y118{bottom:315.570000px;}
.y195{bottom:318.090000px;}
.y187{bottom:318.450000px;}
.y16d{bottom:318.630000px;}
.yd7{bottom:318.810000px;}
.y75{bottom:318.990000px;}
.y46{bottom:324.750000px;}
.y158{bottom:327.450000px;}
.y194{bottom:335.730000px;}
.yd6{bottom:336.270000px;}
.yed{bottom:339.150000px;}
.y117{bottom:342.030000px;}
.y13e{bottom:343.290000px;}
.y16c{bottom:345.090000px;}
.y1b2{bottom:345.450000px;}
.yd5{bottom:353.910000px;}
.y157{bottom:354.090000px;}
.y74{bottom:354.450000px;}
.y45{bottom:360.390000px;}
.y193{bottom:362.190000px;}
.y182{bottom:362.730000px;}
.y1b1{bottom:363.090000px;}
.yd4{bottom:371.550000px;}
.y156{bottom:371.730000px;}
.y73{bottom:372.090000px;}
.y116{bottom:377.670000px;}
.y44{bottom:378.030000px;}
.y192{bottom:388.830000px;}
.yd3{bottom:389.010000px;}
.y181{bottom:389.190000px;}
.y16b{bottom:389.370000px;}
.y1b0{bottom:389.730000px;}
.y13d{bottom:391.710000px;}
.y115{bottom:395.310000px;}
.y43{bottom:395.490000px;}
.y155{bottom:398.190000px;}
.y99{bottom:399.270000px;}
.y191{bottom:406.515000px;}
.yd2{bottom:406.695000px;}
.y180{bottom:406.875000px;}
.y1af{bottom:407.415000px;}
.y72{bottom:407.775000px;}
.y13c{bottom:409.395000px;}
.y114{bottom:412.815000px;}
.y42{bottom:413.175000px;}
.y1a{bottom:413.535000px;}
.y154{bottom:415.875000px;}
.yec{bottom:419.295000px;}
.yd1{bottom:424.335000px;}
.y71{bottom:425.415000px;}
.y13b{bottom:427.035000px;}
.y113{bottom:430.455000px;}
.y41{bottom:430.815000px;}
.y190{bottom:432.975000px;}
.y17f{bottom:433.515000px;}
.y1ae{bottom:433.875000px;}
.yd0{bottom:441.975000px;}
.y153{bottom:442.515000px;}
.y70{bottom:442.875000px;}
.y98{bottom:444.315000px;}
.y13a{bottom:444.675000px;}
.y112{bottom:448.095000px;}
.y17e{bottom:451.155000px;}
.y1ad{bottom:451.515000px;}
.ycf{bottom:459.435000px;}
.y18f{bottom:459.615000px;}
.y186{bottom:459.975000px;}
.y152{bottom:460.155000px;}
.y6f{bottom:460.515000px;}
.y139{bottom:462.135000px;}
.y19{bottom:462.315000px;}
.y111{bottom:465.735000px;}
.y40{bottom:466.275000px;}
.y95{bottom:471.675000px;}
.yce{bottom:477.075000px;}
.y17d{bottom:477.615000px;}
.y1ac{bottom:477.975000px;}
.y138{bottom:479.775000px;}
.y110{bottom:483.195000px;}
.y3f{bottom:483.915000px;}
.yb2{bottom:486.255000px;}
.y151{bottom:486.615000px;}
.ycd{bottom:494.715000px;}
.y17c{bottom:495.255000px;}
.y1ab{bottom:495.615000px;}
.y6e{bottom:495.975000px;}
.y137{bottom:497.415000px;}
.y94{bottom:498.855000px;}
.y18{bottom:499.215000px;}
.ye9{bottom:499.395000px;}
.y10f{bottom:500.835000px;}
.y3e{bottom:501.555000px;}
.y150{bottom:504.255000px;}
.ycc{bottom:512.175000px;}
.y18e{bottom:512.715000px;}
.y1aa{bottom:513.255000px;}
.y6d{bottom:513.615000px;}
.y136{bottom:514.875000px;}
.y17{bottom:516.855000px;}
.y3d{bottom:519.015000px;}
.y17b{bottom:521.715000px;}
.y14f{bottom:521.895000px;}
.y10e{bottom:527.295000px;}
.ycb{bottom:529.815000px;}
.y16a{bottom:530.715000px;}
.y6c{bottom:531.255000px;}
.y135{bottom:532.515000px;}
.y16{bottom:534.495000px;}
.y17a{bottom:539.355000px;}
.y1a9{bottom:539.715000px;}
.y90{bottom:543.855000px;}
.y3c{bottom:545.655000px;}
.yca{bottom:547.455000px;}
.y14e{bottom:548.355000px;}
.y6b{bottom:548.895000px;}
.y134{bottom:550.155000px;}
.y15{bottom:552.135000px;}
.y179{bottom:556.995000px;}
.y1a8{bottom:557.355000px;}
.y10d{bottom:562.935000px;}
.yc9{bottom:564.915000px;}
.y14d{bottom:565.995000px;}
.y6a{bottom:566.355000px;}
.y133{bottom:567.615000px;}
.y14{bottom:569.775000px;}
.ye8{bottom:579.495000px;}
.y10c{bottom:580.575000px;}
.y3b{bottom:581.475000px;}
.yc8{bottom:582.555000px;}
.y178{bottom:583.635000px;}
.y1a7{bottom:583.995000px;}
.y132{bottom:585.255000px;}
.y13{bottom:587.235000px;}
.y14c{bottom:592.635000px;}
.y10b{bottom:598.215000px;}
.yc7{bottom:600.195000px;}
.y1a6{bottom:601.635000px;}
.y69{bottom:601.995000px;}
.y131{bottom:602.895000px;}
.y12{bottom:604.875000px;}
.y8f{bottom:610.095000px;}
.y169{bottom:610.275000px;}
.y10a{bottom:615.675000px;}
.yc6{bottom:617.835000px;}
.y14b{bottom:619.095000px;}
.y68{bottom:619.635000px;}
.y130{bottom:620.355000px;}
.y11{bottom:622.515000px;}
.y177{bottom:627.735000px;}
.y1a5{bottom:628.095000px;}
.y3a{bottom:629.715000px;}
.y109{bottom:633.315000px;}
.yc5{bottom:635.295000px;}
.y168{bottom:636.735000px;}
.y67{bottom:637.275000px;}
.y12f{bottom:637.995000px;}
.y10{bottom:639.975000px;}
.y8e{bottom:645.735000px;}
.y39{bottom:647.355000px;}
.y108{bottom:650.955000px;}
.yc4{bottom:652.935000px;}
.y167{bottom:654.405000px;}
.y66{bottom:654.765000px;}
.y12e{bottom:655.665000px;}
.yf{bottom:657.645000px;}
.y8d{bottom:663.405000px;}
.y38{bottom:665.025000px;}
.y107{bottom:668.625000px;}
.yc3{bottom:670.605000px;}
.y176{bottom:672.045000px;}
.y65{bottom:672.405000px;}
.y12d{bottom:673.305000px;}
.ye{bottom:675.285000px;}
.y166{bottom:680.865000px;}
.y8c{bottom:681.045000px;}
.ye7{bottom:681.405000px;}
.y37{bottom:682.665000px;}
.y106{bottom:686.085000px;}
.yc2{bottom:688.065000px;}
.y14a{bottom:689.865000px;}
.y1a4{bottom:690.045000px;}
.y12c{bottom:690.765000px;}
.yd{bottom:692.745000px;}
.y175{bottom:698.505000px;}
.ye6{bottom:699.045000px;}
.y36{bottom:700.305000px;}
.yb1{bottom:703.365000px;}
.y105{bottom:703.725000px;}
.yc1{bottom:705.705000px;}
.y149{bottom:707.505000px;}
.y64{bottom:707.865000px;}
.y12b{bottom:708.405000px;}
.yc{bottom:710.385000px;}
.y174{bottom:716.145000px;}
.y8b{bottom:716.505000px;}
.y35{bottom:717.765000px;}
.yae{bottom:718.305000px;}
.y104{bottom:721.365000px;}
.yc0{bottom:723.345000px;}
.y165{bottom:725.145000px;}
.y63{bottom:725.505000px;}
.y12a{bottom:726.045000px;}
.yb{bottom:728.025000px;}
.y8a{bottom:734.145000px;}
.y34{bottom:735.405000px;}
.y173{bottom:742.605000px;}
.y185{bottom:742.785000px;}
.y62{bottom:743.145000px;}
.y129{bottom:743.505000px;}
.y103{bottom:747.825000px;}
.y164{bottom:751.605000px;}
.y89{bottom:751.785000px;}
.y33{bottom:753.045000px;}
.ya{bottom:754.665000px;}
.ybf{bottom:758.805000px;}
.y172{bottom:760.245000px;}
.y1a3{bottom:760.605000px;}
.y61{bottom:760.785000px;}
.y128{bottom:761.145000px;}
.yab{bottom:763.665000px;}
.y88{bottom:769.245000px;}
.y32{bottom:770.505000px;}
.ybe{bottom:776.445000px;}
.y60{bottom:778.245000px;}
.y127{bottom:778.785000px;}
.y102{bottom:783.645000px;}
.y87{bottom:786.885000px;}
.y31{bottom:788.145000px;}
.ybd{bottom:794.085000px;}
.y148{bottom:795.885000px;}
.y9{bottom:803.085000px;}
.y171{bottom:804.525000px;}
.y1a2{bottom:804.885000px;}
.y126{bottom:805.425000px;}
.y30{bottom:805.785000px;}
.ye5{bottom:813.525000px;}
.y5f{bottom:813.885000px;}
.ybc{bottom:820.725000px;}
.y86{bottom:822.525000px;}
.y2f{bottom:823.245000px;}
.y170{bottom:830.985000px;}
.y163{bottom:831.165000px;}
.y5e{bottom:831.525000px;}
.y101{bottom:832.065000px;}
.y8{bottom:838.905000px;}
.y147{bottom:839.985000px;}
.y85{bottom:840.165000px;}
.y2e{bottom:840.885000px;}
.y16f{bottom:848.625000px;}
.ye4{bottom:848.985000px;}
.y5d{bottom:849.165000px;}
.y100{bottom:849.705000px;}
.y124{bottom:851.325000px;}
.ybb{bottom:853.125000px;}
.y84{bottom:857.625000px;}
.y2d{bottom:858.525000px;}
.y5c{bottom:866.625000px;}
.yff{bottom:867.165000px;}
.y7{bottom:874.905000px;}
.y83{bottom:875.265000px;}
.y2c{bottom:876.165000px;}
.y5b{bottom:884.265000px;}
.yfe{bottom:884.805000px;}
.yba{bottom:886.065000px;}
.y82{bottom:892.905000px;}
.y2b{bottom:893.625000px;}
.y162{bottom:901.770000px;}
.y5a{bottom:901.950000px;}
.yfd{bottom:902.490000px;}
.y1a1{bottom:910.770000px;}
.y6{bottom:910.950000px;}
.y2a{bottom:911.310000px;}
.yb8{bottom:913.470000px;}
.y59{bottom:919.410000px;}
.yfc{bottom:919.950000px;}
.y81{bottom:928.410000px;}
.y29{bottom:928.950000px;}
.y123{bottom:931.470000px;}
.y58{bottom:937.050000px;}
.yfb{bottom:937.590000px;}
.ya9{bottom:944.610000px;}
.y80{bottom:946.050000px;}
.y28{bottom:946.410000px;}
.y5{bottom:947.130000px;}
.ye3{bottom:954.690000px;}
.y1a0{bottom:955.050000px;}
.yfa{bottom:955.230000px;}
.y57{bottom:963.510000px;}
.y7f{bottom:963.690000px;}
.y27{bottom:964.050000px;}
.y146{bottom:972.510000px;}
.y19f{bottom:972.690000px;}
.ye2{bottom:981.150000px;}
.y26{bottom:981.690000px;}
.yf9{bottom:982.050000px;}
.y4{bottom:985.290000px;}
.ya6{bottom:986.370000px;}
.y145{bottom:990.150000px;}
.y122{bottom:993.930000px;}
.y56{bottom:999.150000px;}
.y184{bottom:1007.790000px;}
.y3{bottom:1009.950000px;}
.y55{bottom:1016.790000px;}
.y25{bottom:1017.150000px;}
.y18d{bottom:1025.430000px;}
.yf8{bottom:1030.290000px;}
.y54{bottom:1034.430000px;}
.y24{bottom:1034.790000px;}
.yf7{bottom:1047.930000px;}
.y18c{bottom:1051.890000px;}
.y53{bottom:1052.070000px;}
.y23{bottom:1052.430000px;}
.y144{bottom:1060.890000px;}
.yf6{bottom:1065.570000px;}
.y52{bottom:1069.530000px;}
.y22{bottom:1070.070000px;}
.y121{bottom:1074.030000px;}
.y143{bottom:1078.530000px;}
.yf5{bottom:1083.210000px;}
.y51{bottom:1087.170000px;}
.y21{bottom:1087.530000px;}
.y161{bottom:1096.170000px;}
.yf4{bottom:1100.670000px;}
.y20{bottom:1105.170000px;}
.y50{bottom:1122.630000px;}
.y1f{bottom:1122.810000px;}
.yf3{bottom:1127.490000px;}
.y1e{bottom:1140.270000px;}
.y1c{bottom:1194.300000px;}
.h17{height:17.676000px;}
.hd{height:26.460000px;}
.h19{height:26.676000px;}
.h2{height:29.717578px;}
.h3{height:39.468516px;}
.h11{height:41.040000px;}
.hb{height:44.100000px;}
.hf{height:44.136000px;}
.hc{height:44.280000px;}
.he{height:44.316000px;}
.h14{height:44.640000px;}
.h6{height:50.597578px;}
.h7{height:51.998203px;}
.h8{height:56.084062px;}
.h5{height:57.636562px;}
.h12{height:58.651172px;}
.h1a{height:59.614102px;}
.h1f{height:61.423863px;}
.h1d{height:61.740000px;}
.ha{height:62.211094px;}
.h9{height:68.956875px;}
.h4{height:73.298672px;}
.h1e{height:79.236000px;}
.h1b{height:79.380000px;}
.h1c{height:79.416000px;}
.h10{height:167.430000px;}
.h13{height:180.210000px;}
.h15{height:194.970000px;}
.h18{height:240.330000px;}
.h16{height:274.710000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wd{width:70.596000px;}
.w11{width:109.296000px;}
.w3{width:141.156000px;}
.w4{width:141.696000px;}
.we{width:187.230000px;}
.wf{width:191.370000px;}
.w14{width:196.230000px;}
.w5{width:198.750000px;}
.w12{width:204.870000px;}
.w13{width:243.030000px;}
.w8{width:251.310000px;}
.w7{width:251.355000px;}
.w9{width:251.490000px;}
.wb{width:265.170000px;}
.w6{width:272.010000px;}
.w10{width:304.410000px;}
.wa{width:308.055000px;}
.wc{width:573.945000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.xf{left:19.800000px;}
.xe{left:26.136000px;}
.x18{left:27.540000px;}
.x17{left:46.620000px;}
.x12{left:57.420000px;}
.x1{left:68.040000px;}
.x13{left:72.000000px;}
.x23{left:111.275987px;}
.x1d{left:140.076000px;}
.x1c{left:148.725000px;}
.x14{left:159.690000px;}
.x20{left:178.770000px;}
.x3{left:192.449987px;}
.x6{left:210.630000px;}
.xb{left:219.990000px;}
.x9{left:221.295000px;}
.x11{left:224.490000px;}
.xd{left:225.765000px;}
.x10{left:232.455000px;}
.x1a{left:257.445000px;}
.x15{left:296.865000px;}
.x19{left:300.285000px;}
.xa{left:321.015000px;}
.x1e{left:328.035000px;}
.x2{left:331.815000px;}
.x7{left:353.055000px;}
.x1b{left:367.995000px;}
.x21{left:384.375000px;}
.x16{left:468.465000px;}
.x1f{left:520.125000px;}
.x8{left:552.525000px;}
.xc{left:573.045000px;}
.x22{left:628.305000px;}
.x4{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls4{letter-spacing:-0.329067pt;}
.ls5{letter-spacing:-0.290133pt;}
.ls13{letter-spacing:-0.166400pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.041600pt;}
.ls16{letter-spacing:-0.032000pt;}
.lsd{letter-spacing:-0.009600pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.011520pt;}
.ls7{letter-spacing:0.056533pt;}
.ls18{letter-spacing:0.112533pt;}
.ls15{letter-spacing:0.112640pt;}
.ls2{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.186133pt;}
.lsa{letter-spacing:0.188160pt;}
.ls1a{letter-spacing:0.188267pt;}
.ls1d{letter-spacing:0.272640pt;}
.ls10{letter-spacing:0.284160pt;}
.lse{letter-spacing:0.317333pt;}
.lsb{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.342933pt;}
.lsc{letter-spacing:0.592640pt;}
.ls6{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.752000pt;}
.ls1e{letter-spacing:0.752640pt;}
.lsf{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:12.752640pt;}
.ls17{letter-spacing:42.192640pt;}
.ls14{letter-spacing:72.400640pt;}
.ws9{word-spacing:-13.296533pt;}
.wsb{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.173760pt;}
.ws5{word-spacing:-12.953600pt;}
.ws12{word-spacing:-12.438400pt;}
.ws8{word-spacing:-12.003733pt;}
.ws11{word-spacing:-11.874667pt;}
.ws10{word-spacing:-11.872533pt;}
.wsf{word-spacing:-11.798933pt;}
.ws7{word-spacing:-11.697920pt;}
.ws3{word-spacing:-11.686400pt;}
.wse{word-spacing:-11.654400pt;}
.wsa{word-spacing:-11.644800pt;}
.wsd{word-spacing:-11.591467pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:2.140480pt;}
._15{margin-left:-3.180053pt;}
._b{margin-left:-1.997334pt;}
._0{margin-left:-1.030400pt;}
._1{width:1.405867pt;}
._2{width:2.359253pt;}
._a{width:3.571628pt;}
._37{width:4.473600pt;}
._9{width:5.365332pt;}
._c{width:6.537068pt;}
._8{width:7.571201pt;}
._7{width:8.818132pt;}
._d{width:9.802879pt;}
._10{width:10.754561pt;}
._e{width:13.393600pt;}
._f{width:14.841600pt;}
._11{width:15.869013pt;}
._14{width:17.044480pt;}
._3{width:18.273068pt;}
._4{width:19.185065pt;}
._6{width:20.479467pt;}
._5{width:21.566932pt;}
._12{width:23.319680pt;}
._18{width:24.304213pt;}
._16{width:25.656960pt;}
._1a{width:27.491413pt;}
._21{width:28.394453pt;}
._25{width:30.172160pt;}
._13{width:31.340800pt;}
._28{width:33.865813pt;}
._27{width:34.952960pt;}
._29{width:37.849813pt;}
._1d{width:38.777600pt;}
._1c{width:39.946240pt;}
._39{width:41.037013pt;}
._38{width:42.017920pt;}
._2a{width:48.976640pt;}
._17{width:49.985920pt;}
._31{width:54.872960pt;}
._1b{width:58.325760pt;}
._22{width:66.215893pt;}
._24{width:72.537173pt;}
._1f{width:73.758933pt;}
._26{width:75.749120pt;}
._2e{width:93.094613pt;}
._2d{width:115.854720pt;}
._30{width:122.760320pt;}
._32{width:155.854080pt;}
._34{width:157.288320pt;}
._2c{width:161.697280pt;}
._20{width:171.471360pt;}
._23{width:175.324373pt;}
._35{width:176.624000pt;}
._33{width:183.476480pt;}
._2f{width:202.521813pt;}
._19{width:217.529813pt;}
._1e{width:218.801280pt;}
._36{width:247.220480pt;}
._2b{width:288.176000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb7{bottom:3.040000pt;}
.yb0{bottom:3.360000pt;}
.yb3{bottom:5.280000pt;}
.yb5{bottom:6.080000pt;}
.y97{bottom:6.880000pt;}
.y92{bottom:7.040000pt;}
.y9c{bottom:7.080000pt;}
.yb9{bottom:7.520000pt;}
.ya8{bottom:10.720000pt;}
.yaa{bottom:15.840000pt;}
.yb4{bottom:16.000000pt;}
.yac{bottom:16.160000pt;}
.yaf{bottom:19.040000pt;}
.y93{bottom:22.560000pt;}
.ya4{bottom:22.586667pt;}
.y91{bottom:22.720000pt;}
.y9b{bottom:22.760000pt;}
.y96{bottom:23.520000pt;}
.yad{bottom:34.080000pt;}
.ya7{bottom:36.800000pt;}
.yeb{bottom:38.240000pt;}
.y9e{bottom:39.200000pt;}
.ya3{bottom:39.226667pt;}
.y9a{bottom:39.400000pt;}
.yea{bottom:53.920000pt;}
.y125{bottom:53.960000pt;}
.y2{bottom:65.120000pt;}
.y1d{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.y142{bottom:102.880000pt;}
.ye1{bottom:103.040000pt;}
.y19e{bottom:110.080000pt;}
.y160{bottom:110.400000pt;}
.y4f{bottom:116.000000pt;}
.ya5{bottom:117.600000pt;}
.ye0{bottom:118.560000pt;}
.y7e{bottom:118.720000pt;}
.yf2{bottom:118.880000pt;}
.y1b{bottom:121.760000pt;}
.y19d{bottom:125.760000pt;}
.y18b{bottom:126.080000pt;}
.ya2{bottom:131.040000pt;}
.y4e{bottom:131.680000pt;}
.yb6{bottom:133.760000pt;}
.y15f{bottom:134.080000pt;}
.ydf{bottom:134.240000pt;}
.y7d{bottom:134.400000pt;}
.yf1{bottom:134.560000pt;}
.y141{bottom:142.106667pt;}
.y19c{bottom:149.306667pt;}
.y18a{bottom:149.626667pt;}
.y15e{bottom:149.786667pt;}
.yde{bottom:149.946667pt;}
.y7c{bottom:150.106667pt;}
.y120{bottom:155.386667pt;}
.y4d{bottom:163.226667pt;}
.y19b{bottom:164.986667pt;}
.y189{bottom:165.306667pt;}
.ydd{bottom:165.466667pt;}
.y7b{bottom:165.786667pt;}
.ya1{bottom:170.906667pt;}
.y11f{bottom:171.066667pt;}
.y15d{bottom:173.306667pt;}
.y4c{bottom:178.906667pt;}
.ydc{bottom:181.146667pt;}
.yf0{bottom:181.466667pt;}
.y11e{bottom:186.746667pt;}
.y19a{bottom:188.506667pt;}
.y15c{bottom:188.986667pt;}
.y1b6{bottom:189.306667pt;}
.y4b{bottom:194.586667pt;}
.ydb{bottom:196.826667pt;}
.y7a{bottom:197.306667pt;}
.y11d{bottom:202.266667pt;}
.y199{bottom:204.186667pt;}
.y183{bottom:204.666667pt;}
.y1b5{bottom:204.986667pt;}
.yef{bottom:205.146667pt;}
.y4a{bottom:210.106667pt;}
.ya0{bottom:210.906667pt;}
.yda{bottom:212.506667pt;}
.y79{bottom:212.986667pt;}
.y11c{bottom:217.946667pt;}
.y198{bottom:219.866667pt;}
.y15b{bottom:228.186667pt;}
.y1b4{bottom:228.506667pt;}
.y78{bottom:228.666667pt;}
.y11b{bottom:233.626667pt;}
.y9f{bottom:235.066667pt;}
.yd9{bottom:236.026667pt;}
.y49{bottom:241.786667pt;}
.y197{bottom:243.546667pt;}
.y16e{bottom:243.866667pt;}
.y77{bottom:244.186667pt;}
.yee{bottom:245.946667pt;}
.y140{bottom:248.186667pt;}
.y11a{bottom:249.146667pt;}
.y15a{bottom:251.866667pt;}
.y48{bottom:257.466667pt;}
.y196{bottom:259.226667pt;}
.y188{bottom:259.546667pt;}
.y76{bottom:259.866667pt;}
.y119{bottom:264.826667pt;}
.y159{bottom:267.546667pt;}
.yd8{bottom:267.706667pt;}
.y1b3{bottom:267.866667pt;}
.y13f{bottom:272.026667pt;}
.y47{bottom:272.986667pt;}
.y9d{bottom:275.066667pt;}
.y118{bottom:280.506667pt;}
.y195{bottom:282.746667pt;}
.y187{bottom:283.066667pt;}
.y16d{bottom:283.226667pt;}
.yd7{bottom:283.386667pt;}
.y75{bottom:283.546667pt;}
.y46{bottom:288.666667pt;}
.y158{bottom:291.066667pt;}
.y194{bottom:298.426667pt;}
.yd6{bottom:298.906667pt;}
.yed{bottom:301.466667pt;}
.y117{bottom:304.026667pt;}
.y13e{bottom:305.146667pt;}
.y16c{bottom:306.746667pt;}
.y1b2{bottom:307.066667pt;}
.yd5{bottom:314.586667pt;}
.y157{bottom:314.746667pt;}
.y74{bottom:315.066667pt;}
.y45{bottom:320.346667pt;}
.y193{bottom:321.946667pt;}
.y182{bottom:322.426667pt;}
.y1b1{bottom:322.746667pt;}
.yd4{bottom:330.266667pt;}
.y156{bottom:330.426667pt;}
.y73{bottom:330.746667pt;}
.y116{bottom:335.706667pt;}
.y44{bottom:336.026667pt;}
.y192{bottom:345.626667pt;}
.yd3{bottom:345.786667pt;}
.y181{bottom:345.946667pt;}
.y16b{bottom:346.106667pt;}
.y1b0{bottom:346.426667pt;}
.y13d{bottom:348.186667pt;}
.y115{bottom:351.386667pt;}
.y43{bottom:351.546667pt;}
.y155{bottom:353.946667pt;}
.y99{bottom:354.906667pt;}
.y191{bottom:361.346667pt;}
.yd2{bottom:361.506667pt;}
.y180{bottom:361.666667pt;}
.y1af{bottom:362.146667pt;}
.y72{bottom:362.466667pt;}
.y13c{bottom:363.906667pt;}
.y114{bottom:366.946667pt;}
.y42{bottom:367.266667pt;}
.y1a{bottom:367.586667pt;}
.y154{bottom:369.666667pt;}
.yec{bottom:372.706667pt;}
.yd1{bottom:377.186667pt;}
.y71{bottom:378.146667pt;}
.y13b{bottom:379.586667pt;}
.y113{bottom:382.626667pt;}
.y41{bottom:382.946667pt;}
.y190{bottom:384.866667pt;}
.y17f{bottom:385.346667pt;}
.y1ae{bottom:385.666667pt;}
.yd0{bottom:392.866667pt;}
.y153{bottom:393.346667pt;}
.y70{bottom:393.666667pt;}
.y98{bottom:394.946667pt;}
.y13a{bottom:395.266667pt;}
.y112{bottom:398.306667pt;}
.y17e{bottom:401.026667pt;}
.y1ad{bottom:401.346667pt;}
.ycf{bottom:408.386667pt;}
.y18f{bottom:408.546667pt;}
.y186{bottom:408.866667pt;}
.y152{bottom:409.026667pt;}
.y6f{bottom:409.346667pt;}
.y139{bottom:410.786667pt;}
.y19{bottom:410.946667pt;}
.y111{bottom:413.986667pt;}
.y40{bottom:414.466667pt;}
.y95{bottom:419.266667pt;}
.yce{bottom:424.066667pt;}
.y17d{bottom:424.546667pt;}
.y1ac{bottom:424.866667pt;}
.y138{bottom:426.466667pt;}
.y110{bottom:429.506667pt;}
.y3f{bottom:430.146667pt;}
.yb2{bottom:432.226667pt;}
.y151{bottom:432.546667pt;}
.ycd{bottom:439.746667pt;}
.y17c{bottom:440.226667pt;}
.y1ab{bottom:440.546667pt;}
.y6e{bottom:440.866667pt;}
.y137{bottom:442.146667pt;}
.y94{bottom:443.426667pt;}
.y18{bottom:443.746667pt;}
.ye9{bottom:443.906667pt;}
.y10f{bottom:445.186667pt;}
.y3e{bottom:445.826667pt;}
.y150{bottom:448.226667pt;}
.ycc{bottom:455.266667pt;}
.y18e{bottom:455.746667pt;}
.y1aa{bottom:456.226667pt;}
.y6d{bottom:456.546667pt;}
.y136{bottom:457.666667pt;}
.y17{bottom:459.426667pt;}
.y3d{bottom:461.346667pt;}
.y17b{bottom:463.746667pt;}
.y14f{bottom:463.906667pt;}
.y10e{bottom:468.706667pt;}
.ycb{bottom:470.946667pt;}
.y16a{bottom:471.746667pt;}
.y6c{bottom:472.226667pt;}
.y135{bottom:473.346667pt;}
.y16{bottom:475.106667pt;}
.y17a{bottom:479.426667pt;}
.y1a9{bottom:479.746667pt;}
.y90{bottom:483.426667pt;}
.y3c{bottom:485.026667pt;}
.yca{bottom:486.626667pt;}
.y14e{bottom:487.426667pt;}
.y6b{bottom:487.906667pt;}
.y134{bottom:489.026667pt;}
.y15{bottom:490.786667pt;}
.y179{bottom:495.106667pt;}
.y1a8{bottom:495.426667pt;}
.y10d{bottom:500.386667pt;}
.yc9{bottom:502.146667pt;}
.y14d{bottom:503.106667pt;}
.y6a{bottom:503.426667pt;}
.y133{bottom:504.546667pt;}
.y14{bottom:506.466667pt;}
.ye8{bottom:515.106667pt;}
.y10c{bottom:516.066667pt;}
.y3b{bottom:516.866667pt;}
.yc8{bottom:517.826667pt;}
.y178{bottom:518.786667pt;}
.y1a7{bottom:519.106667pt;}
.y132{bottom:520.226667pt;}
.y13{bottom:521.986667pt;}
.y14c{bottom:526.786667pt;}
.y10b{bottom:531.746667pt;}
.yc7{bottom:533.506667pt;}
.y1a6{bottom:534.786667pt;}
.y69{bottom:535.106667pt;}
.y131{bottom:535.906667pt;}
.y12{bottom:537.666667pt;}
.y8f{bottom:542.306667pt;}
.y169{bottom:542.466667pt;}
.y10a{bottom:547.266667pt;}
.yc6{bottom:549.186667pt;}
.y14b{bottom:550.306667pt;}
.y68{bottom:550.786667pt;}
.y130{bottom:551.426667pt;}
.y11{bottom:553.346667pt;}
.y177{bottom:557.986667pt;}
.y1a5{bottom:558.306667pt;}
.y3a{bottom:559.746667pt;}
.y109{bottom:562.946667pt;}
.yc5{bottom:564.706667pt;}
.y168{bottom:565.986667pt;}
.y67{bottom:566.466667pt;}
.y12f{bottom:567.106667pt;}
.y10{bottom:568.866667pt;}
.y8e{bottom:573.986667pt;}
.y39{bottom:575.426667pt;}
.y108{bottom:578.626667pt;}
.yc4{bottom:580.386667pt;}
.y167{bottom:581.693333pt;}
.y66{bottom:582.013333pt;}
.y12e{bottom:582.813333pt;}
.yf{bottom:584.573333pt;}
.y8d{bottom:589.693333pt;}
.y38{bottom:591.133333pt;}
.y107{bottom:594.333333pt;}
.yc3{bottom:596.093333pt;}
.y176{bottom:597.373333pt;}
.y65{bottom:597.693333pt;}
.y12d{bottom:598.493333pt;}
.ye{bottom:600.253333pt;}
.y166{bottom:605.213333pt;}
.y8c{bottom:605.373333pt;}
.ye7{bottom:605.693333pt;}
.y37{bottom:606.813333pt;}
.y106{bottom:609.853333pt;}
.yc2{bottom:611.613333pt;}
.y14a{bottom:613.213333pt;}
.y1a4{bottom:613.373333pt;}
.y12c{bottom:614.013333pt;}
.yd{bottom:615.773333pt;}
.y175{bottom:620.893333pt;}
.ye6{bottom:621.373333pt;}
.y36{bottom:622.493333pt;}
.yb1{bottom:625.213333pt;}
.y105{bottom:625.533333pt;}
.yc1{bottom:627.293333pt;}
.y149{bottom:628.893333pt;}
.y64{bottom:629.213333pt;}
.y12b{bottom:629.693333pt;}
.yc{bottom:631.453333pt;}
.y174{bottom:636.573333pt;}
.y8b{bottom:636.893333pt;}
.y35{bottom:638.013333pt;}
.yae{bottom:638.493333pt;}
.y104{bottom:641.213333pt;}
.yc0{bottom:642.973333pt;}
.y165{bottom:644.573333pt;}
.y63{bottom:644.893333pt;}
.y12a{bottom:645.373333pt;}
.yb{bottom:647.133333pt;}
.y8a{bottom:652.573333pt;}
.y34{bottom:653.693333pt;}
.y173{bottom:660.093333pt;}
.y185{bottom:660.253333pt;}
.y62{bottom:660.573333pt;}
.y129{bottom:660.893333pt;}
.y103{bottom:664.733333pt;}
.y164{bottom:668.093333pt;}
.y89{bottom:668.253333pt;}
.y33{bottom:669.373333pt;}
.ya{bottom:670.813333pt;}
.ybf{bottom:674.493333pt;}
.y172{bottom:675.773333pt;}
.y1a3{bottom:676.093333pt;}
.y61{bottom:676.253333pt;}
.y128{bottom:676.573333pt;}
.yab{bottom:678.813333pt;}
.y88{bottom:683.773333pt;}
.y32{bottom:684.893333pt;}
.ybe{bottom:690.173333pt;}
.y60{bottom:691.773333pt;}
.y127{bottom:692.253333pt;}
.y102{bottom:696.573333pt;}
.y87{bottom:699.453333pt;}
.y31{bottom:700.573333pt;}
.ybd{bottom:705.853333pt;}
.y148{bottom:707.453333pt;}
.y9{bottom:713.853333pt;}
.y171{bottom:715.133333pt;}
.y1a2{bottom:715.453333pt;}
.y126{bottom:715.933333pt;}
.y30{bottom:716.253333pt;}
.ye5{bottom:723.133333pt;}
.y5f{bottom:723.453333pt;}
.ybc{bottom:729.533333pt;}
.y86{bottom:731.133333pt;}
.y2f{bottom:731.773333pt;}
.y170{bottom:738.653333pt;}
.y163{bottom:738.813333pt;}
.y5e{bottom:739.133333pt;}
.y101{bottom:739.613333pt;}
.y8{bottom:745.693333pt;}
.y147{bottom:746.653333pt;}
.y85{bottom:746.813333pt;}
.y2e{bottom:747.453333pt;}
.y16f{bottom:754.333333pt;}
.ye4{bottom:754.653333pt;}
.y5d{bottom:754.813333pt;}
.y100{bottom:755.293333pt;}
.y124{bottom:756.733333pt;}
.ybb{bottom:758.333333pt;}
.y84{bottom:762.333333pt;}
.y2d{bottom:763.133333pt;}
.y5c{bottom:770.333333pt;}
.yff{bottom:770.813333pt;}
.y7{bottom:777.693333pt;}
.y83{bottom:778.013333pt;}
.y2c{bottom:778.813333pt;}
.y5b{bottom:786.013333pt;}
.yfe{bottom:786.493333pt;}
.yba{bottom:787.613333pt;}
.y82{bottom:793.693333pt;}
.y2b{bottom:794.333333pt;}
.y162{bottom:801.573333pt;}
.y5a{bottom:801.733333pt;}
.yfd{bottom:802.213333pt;}
.y1a1{bottom:809.573333pt;}
.y6{bottom:809.733333pt;}
.y2a{bottom:810.053333pt;}
.yb8{bottom:811.973333pt;}
.y59{bottom:817.253333pt;}
.yfc{bottom:817.733333pt;}
.y81{bottom:825.253333pt;}
.y29{bottom:825.733333pt;}
.y123{bottom:827.973333pt;}
.y58{bottom:832.933333pt;}
.yfb{bottom:833.413333pt;}
.ya9{bottom:839.653333pt;}
.y80{bottom:840.933333pt;}
.y28{bottom:841.253333pt;}
.y5{bottom:841.893333pt;}
.ye3{bottom:848.613333pt;}
.y1a0{bottom:848.933333pt;}
.yfa{bottom:849.093333pt;}
.y57{bottom:856.453333pt;}
.y7f{bottom:856.613333pt;}
.y27{bottom:856.933333pt;}
.y146{bottom:864.453333pt;}
.y19f{bottom:864.613333pt;}
.ye2{bottom:872.133333pt;}
.y26{bottom:872.613333pt;}
.yf9{bottom:872.933333pt;}
.y4{bottom:875.813333pt;}
.ya6{bottom:876.773333pt;}
.y145{bottom:880.133333pt;}
.y122{bottom:883.493333pt;}
.y56{bottom:888.133333pt;}
.y184{bottom:895.813333pt;}
.y3{bottom:897.733333pt;}
.y55{bottom:903.813333pt;}
.y25{bottom:904.133333pt;}
.y18d{bottom:911.493333pt;}
.yf8{bottom:915.813333pt;}
.y54{bottom:919.493333pt;}
.y24{bottom:919.813333pt;}
.yf7{bottom:931.493333pt;}
.y18c{bottom:935.013333pt;}
.y53{bottom:935.173333pt;}
.y23{bottom:935.493333pt;}
.y144{bottom:943.013333pt;}
.yf6{bottom:947.173333pt;}
.y52{bottom:950.693333pt;}
.y22{bottom:951.173333pt;}
.y121{bottom:954.693333pt;}
.y143{bottom:958.693333pt;}
.yf5{bottom:962.853333pt;}
.y51{bottom:966.373333pt;}
.y21{bottom:966.693333pt;}
.y161{bottom:974.373333pt;}
.yf4{bottom:978.373333pt;}
.y20{bottom:982.373333pt;}
.y50{bottom:997.893333pt;}
.y1f{bottom:998.053333pt;}
.yf3{bottom:1002.213333pt;}
.y1e{bottom:1013.573333pt;}
.y1c{bottom:1061.600000pt;}
.h17{height:15.712000pt;}
.hd{height:23.520000pt;}
.h19{height:23.712000pt;}
.h2{height:26.415625pt;}
.h3{height:35.083125pt;}
.h11{height:36.480000pt;}
.hb{height:39.200000pt;}
.hf{height:39.232000pt;}
.hc{height:39.360000pt;}
.he{height:39.392000pt;}
.h14{height:39.680000pt;}
.h6{height:44.975625pt;}
.h7{height:46.220625pt;}
.h8{height:49.852500pt;}
.h5{height:51.232500pt;}
.h12{height:52.134375pt;}
.h1a{height:52.990313pt;}
.h1f{height:54.598989pt;}
.h1d{height:54.880000pt;}
.ha{height:55.298750pt;}
.h9{height:61.295000pt;}
.h4{height:65.154375pt;}
.h1e{height:70.432000pt;}
.h1b{height:70.560000pt;}
.h1c{height:70.592000pt;}
.h10{height:148.826667pt;}
.h13{height:160.186667pt;}
.h15{height:173.306667pt;}
.h18{height:213.626667pt;}
.h16{height:244.186667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wd{width:62.752000pt;}
.w11{width:97.152000pt;}
.w3{width:125.472000pt;}
.w4{width:125.952000pt;}
.we{width:166.426667pt;}
.wf{width:170.106667pt;}
.w14{width:174.426667pt;}
.w5{width:176.666667pt;}
.w12{width:182.106667pt;}
.w13{width:216.026667pt;}
.w8{width:223.386667pt;}
.w7{width:223.426667pt;}
.w9{width:223.546667pt;}
.wb{width:235.706667pt;}
.w6{width:241.786667pt;}
.w10{width:270.586667pt;}
.wa{width:273.826667pt;}
.wc{width:510.173333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.xf{left:17.600000pt;}
.xe{left:23.232000pt;}
.x18{left:24.480000pt;}
.x17{left:41.440000pt;}
.x12{left:51.040000pt;}
.x1{left:60.480000pt;}
.x13{left:64.000000pt;}
.x23{left:98.911988pt;}
.x1d{left:124.512000pt;}
.x1c{left:132.200000pt;}
.x14{left:141.946667pt;}
.x20{left:158.906667pt;}
.x3{left:171.066655pt;}
.x6{left:187.226667pt;}
.xb{left:195.546667pt;}
.x9{left:196.706667pt;}
.x11{left:199.546667pt;}
.xd{left:200.680000pt;}
.x10{left:206.626667pt;}
.x1a{left:228.840000pt;}
.x15{left:263.880000pt;}
.x19{left:266.920000pt;}
.xa{left:285.346667pt;}
.x1e{left:291.586667pt;}
.x2{left:294.946667pt;}
.x7{left:313.826667pt;}
.x1b{left:327.106667pt;}
.x21{left:341.666667pt;}
.x16{left:416.413333pt;}
.x1f{left:462.333333pt;}
.x8{left:491.133333pt;}
.xc{left:509.373333pt;}
.x22{left:558.493333pt;}
.x4{left:711.493322pt;}
}




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