
    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_3a3babf971d0942becf0c992.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_14321e2f8297e2a4dddcf82c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_b3b929356ddd52e12288bdae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_4c85f82e236ab0159ee74e34.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_68800dcb5a8fd03648927810.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.003906;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_f6ab3cfcbe0254d65077c854.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_58985701b4c755d552b4c977.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_964b3ed88db41ef7faec0b3b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_30998b9751cc5e41e07ac443.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_12b90cd849b1626f4944f122.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_aacdde069deb31d0405afefe.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-12.240000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240000px;}
.v8{vertical-align:20.880000px;}
.v7{vertical-align:30.240000px;}
.v6{vertical-align:35.280000px;}
.v5{vertical-align:40.320000px;}
.v3{vertical-align:46.980000px;}
.ls35{letter-spacing:-3.960000px;}
.ls37{letter-spacing:-3.240000px;}
.ls3{letter-spacing:-2.160000px;}
.ls34{letter-spacing:-1.980000px;}
.ls2d{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.460200px;}
.ls26{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.ls27{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.208200px;}
.ls2b{letter-spacing:-0.116400px;}
.ls8{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.012960px;}
.ls6{letter-spacing:0.037440px;}
.ls2e{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.135360px;}
.ls14{letter-spacing:0.135600px;}
.lsa{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls30{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259800px;}
.lsb{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.262200px;}
.ls2a{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.305400px;}
.ls9{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.532800px;}
.ls1e{letter-spacing:0.543600px;}
.lse{letter-spacing:0.828000px;}
.ls24{letter-spacing:0.900000px;}
.ls2c{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.512000px;}
.ls28{letter-spacing:2.340000px;}
.ls10{letter-spacing:2.532960px;}
.ls11{letter-spacing:2.828160px;}
.ls1d{letter-spacing:3.252960px;}
.ls13{letter-spacing:3.548160px;}
.ls17{letter-spacing:3.972960px;}
.ls18{letter-spacing:4.268160px;}
.ls19{letter-spacing:7.599600px;}
.ls21{letter-spacing:9.759600px;}
.ls32{letter-spacing:11.466720px;}
.ls20{letter-spacing:12.959280px;}
.ls22{letter-spacing:16.535280px;}
.ls1c{letter-spacing:16.559280px;}
.ls16{letter-spacing:17.279280px;}
.ls15{letter-spacing:19.092960px;}
.ls1b{letter-spacing:19.812960px;}
.ls36{letter-spacing:21.546720px;}
.ls29{letter-spacing:22.986720px;}
.ls33{letter-spacing:23.706720px;}
.ls31{letter-spacing:38.106720px;}
.lsf{letter-spacing:40.986720px;}
.ls2f{letter-spacing:41.706720px;}
.ls1a{letter-spacing:172.170720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.254600px;}
.ws16{word-spacing:-16.020000px;}
.ws14{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.ws1a{word-spacing:-15.146400px;}
.ws6{word-spacing:-15.093600px;}
.ws19{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.940000px;}
.ws18{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.479800px;}
.ws0{word-spacing:-14.400000px;}
.ws10{word-spacing:-13.160160px;}
.wsb{word-spacing:-13.147200px;}
.ws11{word-spacing:-12.841800px;}
.ws1d{word-spacing:-11.700000px;}
.ws1c{word-spacing:-10.980000px;}
.ws1b{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.720000px;}
.ws15{word-spacing:-9.070800px;}
.wsd{word-spacing:-0.067920px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:0.519840px;}
.wse{word-spacing:0.532080px;}
.ws12{word-spacing:4.119840px;}
._5{margin-left:-2771.947920px;}
._9{margin-left:-1575.624240px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-993.965760px;}
._d{margin-left:-688.104720px;}
._18{margin-left:-661.860000px;}
._e{margin-left:-659.954160px;}
._19{margin-left:-645.400800px;}
._a{margin-left:-570.892320px;}
._15{margin-left:-538.679640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.687360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.000000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-4.664160px;}
._22{margin-left:-3.520800px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.996400px;}
._1e{width:4.116000px;}
._1f{width:5.360400px;}
._1d{width:7.130160px;}
._21{width:9.023760px;}
._20{width:10.278720px;}
._23{width:11.428560px;}
._24{width:12.644400px;}
._25{width:13.756320px;}
._27{width:15.410160px;}
._2a{width:17.209440px;}
._2c{width:18.251760px;}
._2b{width:20.524320px;}
._26{width:27.540000px;}
._28{width:74.878320px;}
._29{width:201.204000px;}
.fc4{color:rgb(37,34,59);}
.fc1{color:rgb(47,84,150);}
.fc3{color:rgb(32,33,36);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:3.240000px;}
.yc1{bottom:3.420000px;}
.y9d{bottom:3.600000px;}
.ya0{bottom:3.780000px;}
.yc3{bottom:5.220000px;}
.y9f{bottom:20.880000px;}
.ya3{bottom:21.060000px;}
.yd2{bottom:21.780000px;}
.ya2{bottom:38.340000px;}
.ydb{bottom:39.825000px;}
.y6{bottom:59.940000px;}
.y98{bottom:91.620000px;}
.y105{bottom:95.220000px;}
.y6c{bottom:97.560000px;}
.yd1{bottom:98.460000px;}
.y34{bottom:107.100000px;}
.y97{bottom:111.420000px;}
.y125{bottom:113.220000px;}
.y104{bottom:115.020000px;}
.yd0{bottom:116.460000px;}
.y6b{bottom:117.360000px;}
.y33{bottom:126.900000px;}
.y96{bottom:131.220000px;}
.y124{bottom:133.020000px;}
.ycf{bottom:134.460000px;}
.y103{bottom:134.820000px;}
.y6a{bottom:137.340000px;}
.y32{bottom:146.700000px;}
.y95{bottom:151.020000px;}
.y123{bottom:152.820000px;}
.y102{bottom:154.620000px;}
.y69{bottom:157.140000px;}
.yce{bottom:158.220000px;}
.y31{bottom:166.680000px;}
.y94{bottom:170.820000px;}
.y122{bottom:172.620000px;}
.y93{bottom:173.880000px;}
.y101{bottom:174.600000px;}
.y68{bottom:176.940000px;}
.ycd{bottom:178.380000px;}
.y30{bottom:186.480000px;}
.y121{bottom:192.600000px;}
.y100{bottom:194.400000px;}
.y92{bottom:194.760000px;}
.y67{bottom:196.740000px;}
.ycc{bottom:198.180000px;}
.y2f{bottom:206.310000px;}
.y120{bottom:212.430000px;}
.yff{bottom:214.230000px;}
.y91{bottom:215.670000px;}
.y66{bottom:216.570000px;}
.ycb{bottom:218.190000px;}
.y2e{bottom:226.110000px;}
.y11f{bottom:232.230000px;}
.yfe{bottom:234.030000px;}
.y65{bottom:236.550000px;}
.yca{bottom:237.630000px;}
.y2d{bottom:245.910000px;}
.y11e{bottom:252.030000px;}
.yfd{bottom:253.830000px;}
.y90{bottom:255.270000px;}
.y64{bottom:256.350000px;}
.yc9{bottom:257.790000px;}
.y8f{bottom:258.330000px;}
.y2c{bottom:265.890000px;}
.y11d{bottom:271.830000px;}
.yc8{bottom:272.190000px;}
.yfc{bottom:273.810000px;}
.y63{bottom:276.150000px;}
.y8e{bottom:278.490000px;}
.y8d{bottom:285.510000px;}
.y2b{bottom:285.690000px;}
.y8c{bottom:288.570000px;}
.yc7{bottom:291.630000px;}
.y11c{bottom:291.810000px;}
.yfb{bottom:293.610000px;}
.y62{bottom:295.590000px;}
.y12a{bottom:295.950000px;}
.y2a{bottom:305.490000px;}
.yc6{bottom:311.070000px;}
.y11b{bottom:311.610000px;}
.yfa{bottom:313.410000px;}
.y61{bottom:315.750000px;}
.y8b{bottom:318.630000px;}
.y29{bottom:325.290000px;}
.y8a{bottom:325.650000px;}
.y89{bottom:328.710000px;}
.yc5{bottom:330.510000px;}
.y11a{bottom:331.410000px;}
.yf9{bottom:333.210000px;}
.y60{bottom:335.730000px;}
.y28{bottom:345.090000px;}
.yc4{bottom:349.950000px;}
.y119{bottom:351.210000px;}
.yf8{bottom:353.010000px;}
.y5f{bottom:355.530000px;}
.y88{bottom:358.590000px;}
.y27{bottom:365.070000px;}
.yc2{bottom:367.950000px;}
.y118{bottom:371.010000px;}
.yf7{bottom:372.990000px;}
.y5e{bottom:375.330000px;}
.y87{bottom:378.930000px;}
.y26{bottom:384.870000px;}
.yc0{bottom:387.390000px;}
.y117{bottom:390.990000px;}
.yf6{bottom:392.790000px;}
.y129{bottom:394.770000px;}
.y5d{bottom:395.130000px;}
.y86{bottom:399.810000px;}
.y25{bottom:404.670000px;}
.y116{bottom:410.790000px;}
.ybf{bottom:411.150000px;}
.yf5{bottom:412.590000px;}
.y5c{bottom:414.930000px;}
.y85{bottom:419.790000px;}
.y24{bottom:424.470000px;}
.y84{bottom:426.810000px;}
.y83{bottom:429.870000px;}
.y115{bottom:430.590000px;}
.ybe{bottom:431.310000px;}
.yf4{bottom:432.390000px;}
.y5b{bottom:434.910000px;}
.y23{bottom:444.315000px;}
.y114{bottom:450.435000px;}
.ybd{bottom:451.155000px;}
.yf3{bottom:452.235000px;}
.y5a{bottom:454.755000px;}
.y82{bottom:460.155000px;}
.y22{bottom:464.295000px;}
.y113{bottom:470.235000px;}
.ybc{bottom:471.135000px;}
.yf2{bottom:472.215000px;}
.y59{bottom:474.555000px;}
.y81{bottom:481.035000px;}
.y21{bottom:484.095000px;}
.y112{bottom:490.215000px;}
.ybb{bottom:490.575000px;}
.yf1{bottom:492.015000px;}
.y58{bottom:494.355000px;}
.y80{bottom:501.915000px;}
.y20{bottom:503.895000px;}
.y111{bottom:510.015000px;}
.yf0{bottom:511.815000px;}
.y57{bottom:514.155000px;}
.yba{bottom:519.735000px;}
.y7f{bottom:522.795000px;}
.y1f{bottom:523.695000px;}
.y110{bottom:529.815000px;}
.yef{bottom:531.615000px;}
.y128{bottom:533.775000px;}
.y56{bottom:534.135000px;}
.yb9{bottom:539.535000px;}
.y7e{bottom:540.255000px;}
.y1e{bottom:543.495000px;}
.y10f{bottom:549.615000px;}
.yee{bottom:551.415000px;}
.y127{bottom:553.575000px;}
.y55{bottom:553.935000px;}
.yb8{bottom:559.335000px;}
.y1d{bottom:563.475000px;}
.y10e{bottom:564.015000px;}
.yed{bottom:571.395000px;}
.y54{bottom:573.735000px;}
.yb7{bottom:578.955000px;}
.y10d{bottom:582.015000px;}
.y1c{bottom:583.275000px;}
.yec{bottom:591.195000px;}
.y53{bottom:593.535000px;}
.y10c{bottom:600.015000px;}
.y1b{bottom:603.075000px;}
.yb6{bottom:608.115000px;}
.yeb{bottom:610.995000px;}
.y52{bottom:613.335000px;}
.y1a{bottom:622.875000px;}
.y10b{bottom:623.955000px;}
.yb5{bottom:627.915000px;}
.yea{bottom:630.795000px;}
.y51{bottom:633.315000px;}
.y19{bottom:642.315000px;}
.y7d{bottom:642.675000px;}
.y10a{bottom:644.115000px;}
.yb4{bottom:647.355000px;}
.ye9{bottom:650.595000px;}
.y50{bottom:653.115000px;}
.y18{bottom:662.295000px;}
.y7c{bottom:663.555000px;}
.y109{bottom:663.915000px;}
.yb3{bottom:667.515000px;}
.ye8{bottom:670.575000px;}
.y4f{bottom:672.945000px;}
.y7b{bottom:683.565000px;}
.y108{bottom:683.745000px;}
.y17{bottom:684.645000px;}
.yb2{bottom:687.525000px;}
.ye7{bottom:690.405000px;}
.y4e{bottom:692.745000px;}
.y7a{bottom:703.365000px;}
.y107{bottom:703.545000px;}
.yb1{bottom:706.065000px;}
.ye6{bottom:710.205000px;}
.y4d{bottom:712.545000px;}
.y16{bottom:713.625000px;}
.y79{bottom:721.365000px;}
.y106{bottom:723.165000px;}
.y78{bottom:724.425000px;}
.ye5{bottom:730.005000px;}
.y4c{bottom:732.525000px;}
.y15{bottom:733.425000px;}
.yb0{bottom:737.745000px;}
.y77{bottom:743.325000px;}
.y76{bottom:746.385000px;}
.ye4{bottom:749.805000px;}
.y4b{bottom:752.325000px;}
.y14{bottom:753.225000px;}
.yaf{bottom:757.545000px;}
.y75{bottom:766.365000px;}
.ye3{bottom:769.785000px;}
.y126{bottom:771.765000px;}
.y4a{bottom:772.125000px;}
.y13{bottom:773.025000px;}
.yae{bottom:777.345000px;}
.y74{bottom:786.165000px;}
.ye2{bottom:789.585000px;}
.y49{bottom:791.925000px;}
.y12{bottom:792.825000px;}
.yad{bottom:797.145000px;}
.y73{bottom:804.345000px;}
.y72{bottom:807.405000px;}
.ye1{bottom:809.385000px;}
.y48{bottom:811.725000px;}
.y11{bottom:812.805000px;}
.yac{bottom:816.945000px;}
.y71{bottom:826.305000px;}
.ye0{bottom:829.185000px;}
.y70{bottom:829.365000px;}
.y47{bottom:831.705000px;}
.y10{bottom:832.605000px;}
.yab{bottom:836.925000px;}
.ydf{bottom:848.985000px;}
.y6f{bottom:849.345000px;}
.y46{bottom:851.505000px;}
.yf{bottom:852.405000px;}
.yaa{bottom:856.725000px;}
.yde{bottom:868.965000px;}
.y6e{bottom:870.225000px;}
.y45{bottom:871.305000px;}
.ye{bottom:872.205000px;}
.ya9{bottom:876.525000px;}
.ydd{bottom:888.765000px;}
.y44{bottom:891.105000px;}
.yd{bottom:892.185000px;}
.ya8{bottom:896.325000px;}
.yda{bottom:903.165000px;}
.y43{bottom:910.950000px;}
.yc{bottom:914.190000px;}
.ya7{bottom:916.170000px;}
.ydc{bottom:921.210000px;}
.ya6{bottom:930.750000px;}
.y42{bottom:930.930000px;}
.yb{bottom:933.990000px;}
.yd9{bottom:939.210000px;}
.y41{bottom:950.730000px;}
.ya{bottom:954.150000px;}
.yd8{bottom:957.210000px;}
.ya5{bottom:965.850000px;}
.y40{bottom:970.530000px;}
.y9{bottom:975.390000px;}
.yd7{bottom:980.970000px;}
.ya4{bottom:983.850000px;}
.y6d{bottom:989.970000px;}
.y3f{bottom:990.330000px;}
.y8{bottom:998.790000px;}
.yd6{bottom:1001.130000px;}
.y3e{bottom:1010.130000px;}
.ya1{bottom:1019.130000px;}
.yd5{bottom:1021.110000px;}
.y3d{bottom:1030.110000px;}
.y7{bottom:1030.470000px;}
.yd4{bottom:1040.910000px;}
.y3c{bottom:1049.910000px;}
.yd3{bottom:1060.350000px;}
.y5{bottom:1069.530000px;}
.y3b{bottom:1069.710000px;}
.y9e{bottom:1071.690000px;}
.y3a{bottom:1089.510000px;}
.y4{bottom:1100.310000px;}
.y9c{bottom:1106.970000px;}
.y39{bottom:1109.310000px;}
.y9a{bottom:1124.970000px;}
.y38{bottom:1129.290000px;}
.y3{bottom:1131.090000px;}
.y99{bottom:1148.760000px;}
.y37{bottom:1149.120000px;}
.y2{bottom:1161.900000px;}
.y36{bottom:1175.760000px;}
.y1{bottom:1193.040000px;}
.y35{bottom:1194.840000px;}
.h12{height:17.100000px;}
.h16{height:17.280000px;}
.h1e{height:17.316000px;}
.h1a{height:18.720000px;}
.h13{height:34.380000px;}
.h15{height:34.560000px;}
.h1b{height:35.280000px;}
.hc{height:50.364141px;}
.h14{height:51.840000px;}
.h1d{height:53.316000px;}
.h8{height:58.621992px;}
.h7{height:58.651172px;}
.h1c{height:59.038594px;}
.h5{height:60.226875px;}
.h9{height:61.423863px;}
.h19{height:62.211094px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h17{height:70.474219px;}
.hb{height:70.861992px;}
.ha{height:70.891172px;}
.h2{height:72.562500px;}
.h18{height:88.891172px;}
.he{height:90.684141px;}
.h4{height:96.508125px;}
.h11{height:98.971172px;}
.h10{height:108.684141px;}
.hf{height:109.404141px;}
.hd{height:109.584141px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:52.380000px;}
.w9{width:52.560000px;}
.w10{width:63.036000px;}
.wa{width:63.180000px;}
.w11{width:84.060000px;}
.wb{width:84.096000px;}
.wc{width:95.040000px;}
.w12{width:116.136000px;}
.wd{width:116.316000px;}
.w13{width:126.756000px;}
.w7{width:141.336000px;}
.w8{width:148.176000px;}
.we{width:169.410000px;}
.w6{width:180.570000px;}
.w5{width:200.910000px;}
.w3{width:255.315000px;}
.w4{width:509.505000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:8.100000px;}
.x1{left:54.179987px;}
.xc{left:59.399987px;}
.x11{left:64.080000px;}
.x6{left:71.099987px;}
.x28{left:80.999987px;}
.xd{left:86.939987px;}
.x29{left:108.035987px;}
.x4{left:118.655987px;}
.xe{left:151.049987px;}
.x18{left:165.090000px;}
.x23{left:175.710000px;}
.x15{left:184.350000px;}
.x1e{left:202.350000px;}
.x14{left:284.474987px;}
.xf{left:286.634987px;}
.x19{left:313.995000px;}
.x13{left:319.395000px;}
.x24{left:324.615000px;}
.x1a{left:367.275000px;}
.x1f{left:372.495000px;}
.x25{left:377.895000px;}
.x16{left:385.995000px;}
.x8{left:395.174987px;}
.x9{left:400.574987px;}
.x20{left:425.775000px;}
.xa{left:428.114987px;}
.x1b{left:431.175000px;}
.x26{left:441.795000px;}
.x10{left:461.984987px;}
.x21{left:489.705000px;}
.xb{left:492.224987px;}
.x1c{left:515.985000px;}
.x17{left:567.465000px;}
.x27{left:569.265000px;}
.x22{left:574.665000px;}
.x1d{left:611.745000px;}
.x3{left:662.909987px;}
.x7{left:785.129987px;}
.x2{left:804.209987px;}
.x5{left:831.959987px;}
@media print{
.v4{vertical-align:-10.880000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.v8{vertical-align:18.560000pt;}
.v7{vertical-align:26.880000pt;}
.v6{vertical-align:31.360000pt;}
.v5{vertical-align:35.840000pt;}
.v3{vertical-align:41.760000pt;}
.ls35{letter-spacing:-3.520000pt;}
.ls37{letter-spacing:-2.880000pt;}
.ls3{letter-spacing:-1.920000pt;}
.ls34{letter-spacing:-1.760000pt;}
.ls2d{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.409067pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls27{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls2b{letter-spacing:-0.103467pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.011520pt;}
.ls6{letter-spacing:0.033280pt;}
.ls2e{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.120320pt;}
.ls14{letter-spacing:0.120533pt;}
.lsa{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls30{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.230933pt;}
.lsb{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.233067pt;}
.ls2a{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.271467pt;}
.ls9{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.473600pt;}
.ls1e{letter-spacing:0.483200pt;}
.lse{letter-spacing:0.736000pt;}
.ls24{letter-spacing:0.800000pt;}
.ls2c{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls28{letter-spacing:2.080000pt;}
.ls10{letter-spacing:2.251520pt;}
.ls11{letter-spacing:2.513920pt;}
.ls1d{letter-spacing:2.891520pt;}
.ls13{letter-spacing:3.153920pt;}
.ls17{letter-spacing:3.531520pt;}
.ls18{letter-spacing:3.793920pt;}
.ls19{letter-spacing:6.755200pt;}
.ls21{letter-spacing:8.675200pt;}
.ls32{letter-spacing:10.192640pt;}
.ls20{letter-spacing:11.519360pt;}
.ls22{letter-spacing:14.698027pt;}
.ls1c{letter-spacing:14.719360pt;}
.ls16{letter-spacing:15.359360pt;}
.ls15{letter-spacing:16.971520pt;}
.ls1b{letter-spacing:17.611520pt;}
.ls36{letter-spacing:19.152640pt;}
.ls29{letter-spacing:20.432640pt;}
.ls33{letter-spacing:21.072640pt;}
.ls31{letter-spacing:33.872640pt;}
.lsf{letter-spacing:36.432640pt;}
.ls2f{letter-spacing:37.072640pt;}
.ls1a{letter-spacing:153.040640pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.448533pt;}
.ws16{word-spacing:-14.240000pt;}
.ws14{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.ws1a{word-spacing:-13.463467pt;}
.ws6{word-spacing:-13.416533pt;}
.ws19{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws18{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.870933pt;}
.ws0{word-spacing:-12.800000pt;}
.ws10{word-spacing:-11.697920pt;}
.wsb{word-spacing:-11.686400pt;}
.ws11{word-spacing:-11.414933pt;}
.ws1d{word-spacing:-10.400000pt;}
.ws1c{word-spacing:-9.760000pt;}
.ws1b{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.640000pt;}
.ws15{word-spacing:-8.062933pt;}
.wsd{word-spacing:-0.060373pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:0.462080pt;}
.wse{word-spacing:0.472960pt;}
.ws12{word-spacing:3.662080pt;}
._5{margin-left:-2463.953707pt;}
._9{margin-left:-1400.554880pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-883.525120pt;}
._d{margin-left:-611.648640pt;}
._18{margin-left:-588.320000pt;}
._e{margin-left:-586.625920pt;}
._19{margin-left:-573.689600pt;}
._a{margin-left:-507.459840pt;}
._15{margin-left:-478.826347pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-141.944320pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.000000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.145920pt;}
._22{margin-left:-3.129600pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.663467pt;}
._1e{width:3.658667pt;}
._1f{width:4.764800pt;}
._1d{width:6.337920pt;}
._21{width:8.021120pt;}
._20{width:9.136640pt;}
._23{width:10.158720pt;}
._24{width:11.239467pt;}
._25{width:12.227840pt;}
._27{width:13.697920pt;}
._2a{width:15.297280pt;}
._2c{width:16.223787pt;}
._2b{width:18.243840pt;}
._26{width:24.480000pt;}
._28{width:66.558507pt;}
._29{width:178.848000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:2.880000pt;}
.yc1{bottom:3.040000pt;}
.y9d{bottom:3.200000pt;}
.ya0{bottom:3.360000pt;}
.yc3{bottom:4.640000pt;}
.y9f{bottom:18.560000pt;}
.ya3{bottom:18.720000pt;}
.yd2{bottom:19.360000pt;}
.ya2{bottom:34.080000pt;}
.ydb{bottom:35.400000pt;}
.y6{bottom:53.280000pt;}
.y98{bottom:81.440000pt;}
.y105{bottom:84.640000pt;}
.y6c{bottom:86.720000pt;}
.yd1{bottom:87.520000pt;}
.y34{bottom:95.200000pt;}
.y97{bottom:99.040000pt;}
.y125{bottom:100.640000pt;}
.y104{bottom:102.240000pt;}
.yd0{bottom:103.520000pt;}
.y6b{bottom:104.320000pt;}
.y33{bottom:112.800000pt;}
.y96{bottom:116.640000pt;}
.y124{bottom:118.240000pt;}
.ycf{bottom:119.520000pt;}
.y103{bottom:119.840000pt;}
.y6a{bottom:122.080000pt;}
.y32{bottom:130.400000pt;}
.y95{bottom:134.240000pt;}
.y123{bottom:135.840000pt;}
.y102{bottom:137.440000pt;}
.y69{bottom:139.680000pt;}
.yce{bottom:140.640000pt;}
.y31{bottom:148.160000pt;}
.y94{bottom:151.840000pt;}
.y122{bottom:153.440000pt;}
.y93{bottom:154.560000pt;}
.y101{bottom:155.200000pt;}
.y68{bottom:157.280000pt;}
.ycd{bottom:158.560000pt;}
.y30{bottom:165.760000pt;}
.y121{bottom:171.200000pt;}
.y100{bottom:172.800000pt;}
.y92{bottom:173.120000pt;}
.y67{bottom:174.880000pt;}
.ycc{bottom:176.160000pt;}
.y2f{bottom:183.386667pt;}
.y120{bottom:188.826667pt;}
.yff{bottom:190.426667pt;}
.y91{bottom:191.706667pt;}
.y66{bottom:192.506667pt;}
.ycb{bottom:193.946667pt;}
.y2e{bottom:200.986667pt;}
.y11f{bottom:206.426667pt;}
.yfe{bottom:208.026667pt;}
.y65{bottom:210.266667pt;}
.yca{bottom:211.226667pt;}
.y2d{bottom:218.586667pt;}
.y11e{bottom:224.026667pt;}
.yfd{bottom:225.626667pt;}
.y90{bottom:226.906667pt;}
.y64{bottom:227.866667pt;}
.yc9{bottom:229.146667pt;}
.y8f{bottom:229.626667pt;}
.y2c{bottom:236.346667pt;}
.y11d{bottom:241.626667pt;}
.yc8{bottom:241.946667pt;}
.yfc{bottom:243.386667pt;}
.y63{bottom:245.466667pt;}
.y8e{bottom:247.546667pt;}
.y8d{bottom:253.786667pt;}
.y2b{bottom:253.946667pt;}
.y8c{bottom:256.506667pt;}
.yc7{bottom:259.226667pt;}
.y11c{bottom:259.386667pt;}
.yfb{bottom:260.986667pt;}
.y62{bottom:262.746667pt;}
.y12a{bottom:263.066667pt;}
.y2a{bottom:271.546667pt;}
.yc6{bottom:276.506667pt;}
.y11b{bottom:276.986667pt;}
.yfa{bottom:278.586667pt;}
.y61{bottom:280.666667pt;}
.y8b{bottom:283.226667pt;}
.y29{bottom:289.146667pt;}
.y8a{bottom:289.466667pt;}
.y89{bottom:292.186667pt;}
.yc5{bottom:293.786667pt;}
.y11a{bottom:294.586667pt;}
.yf9{bottom:296.186667pt;}
.y60{bottom:298.426667pt;}
.y28{bottom:306.746667pt;}
.yc4{bottom:311.066667pt;}
.y119{bottom:312.186667pt;}
.yf8{bottom:313.786667pt;}
.y5f{bottom:316.026667pt;}
.y88{bottom:318.746667pt;}
.y27{bottom:324.506667pt;}
.yc2{bottom:327.066667pt;}
.y118{bottom:329.786667pt;}
.yf7{bottom:331.546667pt;}
.y5e{bottom:333.626667pt;}
.y87{bottom:336.826667pt;}
.y26{bottom:342.106667pt;}
.yc0{bottom:344.346667pt;}
.y117{bottom:347.546667pt;}
.yf6{bottom:349.146667pt;}
.y129{bottom:350.906667pt;}
.y5d{bottom:351.226667pt;}
.y86{bottom:355.386667pt;}
.y25{bottom:359.706667pt;}
.y116{bottom:365.146667pt;}
.ybf{bottom:365.466667pt;}
.yf5{bottom:366.746667pt;}
.y5c{bottom:368.826667pt;}
.y85{bottom:373.146667pt;}
.y24{bottom:377.306667pt;}
.y84{bottom:379.386667pt;}
.y83{bottom:382.106667pt;}
.y115{bottom:382.746667pt;}
.ybe{bottom:383.386667pt;}
.yf4{bottom:384.346667pt;}
.y5b{bottom:386.586667pt;}
.y23{bottom:394.946667pt;}
.y114{bottom:400.386667pt;}
.ybd{bottom:401.026667pt;}
.yf3{bottom:401.986667pt;}
.y5a{bottom:404.226667pt;}
.y82{bottom:409.026667pt;}
.y22{bottom:412.706667pt;}
.y113{bottom:417.986667pt;}
.ybc{bottom:418.786667pt;}
.yf2{bottom:419.746667pt;}
.y59{bottom:421.826667pt;}
.y81{bottom:427.586667pt;}
.y21{bottom:430.306667pt;}
.y112{bottom:435.746667pt;}
.ybb{bottom:436.066667pt;}
.yf1{bottom:437.346667pt;}
.y58{bottom:439.426667pt;}
.y80{bottom:446.146667pt;}
.y20{bottom:447.906667pt;}
.y111{bottom:453.346667pt;}
.yf0{bottom:454.946667pt;}
.y57{bottom:457.026667pt;}
.yba{bottom:461.986667pt;}
.y7f{bottom:464.706667pt;}
.y1f{bottom:465.506667pt;}
.y110{bottom:470.946667pt;}
.yef{bottom:472.546667pt;}
.y128{bottom:474.466667pt;}
.y56{bottom:474.786667pt;}
.yb9{bottom:479.586667pt;}
.y7e{bottom:480.226667pt;}
.y1e{bottom:483.106667pt;}
.y10f{bottom:488.546667pt;}
.yee{bottom:490.146667pt;}
.y127{bottom:492.066667pt;}
.y55{bottom:492.386667pt;}
.yb8{bottom:497.186667pt;}
.y1d{bottom:500.866667pt;}
.y10e{bottom:501.346667pt;}
.yed{bottom:507.906667pt;}
.y54{bottom:509.986667pt;}
.yb7{bottom:514.626667pt;}
.y10d{bottom:517.346667pt;}
.y1c{bottom:518.466667pt;}
.yec{bottom:525.506667pt;}
.y53{bottom:527.586667pt;}
.y10c{bottom:533.346667pt;}
.y1b{bottom:536.066667pt;}
.yb6{bottom:540.546667pt;}
.yeb{bottom:543.106667pt;}
.y52{bottom:545.186667pt;}
.y1a{bottom:553.666667pt;}
.y10b{bottom:554.626667pt;}
.yb5{bottom:558.146667pt;}
.yea{bottom:560.706667pt;}
.y51{bottom:562.946667pt;}
.y19{bottom:570.946667pt;}
.y7d{bottom:571.266667pt;}
.y10a{bottom:572.546667pt;}
.yb4{bottom:575.426667pt;}
.ye9{bottom:578.306667pt;}
.y50{bottom:580.546667pt;}
.y18{bottom:588.706667pt;}
.y7c{bottom:589.826667pt;}
.y109{bottom:590.146667pt;}
.yb3{bottom:593.346667pt;}
.ye8{bottom:596.066667pt;}
.y4f{bottom:598.173333pt;}
.y7b{bottom:607.613333pt;}
.y108{bottom:607.773333pt;}
.y17{bottom:608.573333pt;}
.yb2{bottom:611.133333pt;}
.ye7{bottom:613.693333pt;}
.y4e{bottom:615.773333pt;}
.y7a{bottom:625.213333pt;}
.y107{bottom:625.373333pt;}
.yb1{bottom:627.613333pt;}
.ye6{bottom:631.293333pt;}
.y4d{bottom:633.373333pt;}
.y16{bottom:634.333333pt;}
.y79{bottom:641.213333pt;}
.y106{bottom:642.813333pt;}
.y78{bottom:643.933333pt;}
.ye5{bottom:648.893333pt;}
.y4c{bottom:651.133333pt;}
.y15{bottom:651.933333pt;}
.yb0{bottom:655.773333pt;}
.y77{bottom:660.733333pt;}
.y76{bottom:663.453333pt;}
.ye4{bottom:666.493333pt;}
.y4b{bottom:668.733333pt;}
.y14{bottom:669.533333pt;}
.yaf{bottom:673.373333pt;}
.y75{bottom:681.213333pt;}
.ye3{bottom:684.253333pt;}
.y126{bottom:686.013333pt;}
.y4a{bottom:686.333333pt;}
.y13{bottom:687.133333pt;}
.yae{bottom:690.973333pt;}
.y74{bottom:698.813333pt;}
.ye2{bottom:701.853333pt;}
.y49{bottom:703.933333pt;}
.y12{bottom:704.733333pt;}
.yad{bottom:708.573333pt;}
.y73{bottom:714.973333pt;}
.y72{bottom:717.693333pt;}
.ye1{bottom:719.453333pt;}
.y48{bottom:721.533333pt;}
.y11{bottom:722.493333pt;}
.yac{bottom:726.173333pt;}
.y71{bottom:734.493333pt;}
.ye0{bottom:737.053333pt;}
.y70{bottom:737.213333pt;}
.y47{bottom:739.293333pt;}
.y10{bottom:740.093333pt;}
.yab{bottom:743.933333pt;}
.ydf{bottom:754.653333pt;}
.y6f{bottom:754.973333pt;}
.y46{bottom:756.893333pt;}
.yf{bottom:757.693333pt;}
.yaa{bottom:761.533333pt;}
.yde{bottom:772.413333pt;}
.y6e{bottom:773.533333pt;}
.y45{bottom:774.493333pt;}
.ye{bottom:775.293333pt;}
.ya9{bottom:779.133333pt;}
.ydd{bottom:790.013333pt;}
.y44{bottom:792.093333pt;}
.yd{bottom:793.053333pt;}
.ya8{bottom:796.733333pt;}
.yda{bottom:802.813333pt;}
.y43{bottom:809.733333pt;}
.yc{bottom:812.613333pt;}
.ya7{bottom:814.373333pt;}
.ydc{bottom:818.853333pt;}
.ya6{bottom:827.333333pt;}
.y42{bottom:827.493333pt;}
.yb{bottom:830.213333pt;}
.yd9{bottom:834.853333pt;}
.y41{bottom:845.093333pt;}
.ya{bottom:848.133333pt;}
.yd8{bottom:850.853333pt;}
.ya5{bottom:858.533333pt;}
.y40{bottom:862.693333pt;}
.y9{bottom:867.013333pt;}
.yd7{bottom:871.973333pt;}
.ya4{bottom:874.533333pt;}
.y6d{bottom:879.973333pt;}
.y3f{bottom:880.293333pt;}
.y8{bottom:887.813333pt;}
.yd6{bottom:889.893333pt;}
.y3e{bottom:897.893333pt;}
.ya1{bottom:905.893333pt;}
.yd5{bottom:907.653333pt;}
.y3d{bottom:915.653333pt;}
.y7{bottom:915.973333pt;}
.yd4{bottom:925.253333pt;}
.y3c{bottom:933.253333pt;}
.yd3{bottom:942.533333pt;}
.y5{bottom:950.693333pt;}
.y3b{bottom:950.853333pt;}
.y9e{bottom:952.613333pt;}
.y3a{bottom:968.453333pt;}
.y4{bottom:978.053333pt;}
.y9c{bottom:983.973333pt;}
.y39{bottom:986.053333pt;}
.y9a{bottom:999.973333pt;}
.y38{bottom:1003.813333pt;}
.y3{bottom:1005.413333pt;}
.y99{bottom:1021.120000pt;}
.y37{bottom:1021.440000pt;}
.y2{bottom:1032.800000pt;}
.y36{bottom:1045.120000pt;}
.y1{bottom:1060.480000pt;}
.y35{bottom:1062.080000pt;}
.h12{height:15.200000pt;}
.h16{height:15.360000pt;}
.h1e{height:15.392000pt;}
.h1a{height:16.640000pt;}
.h13{height:30.560000pt;}
.h15{height:30.720000pt;}
.h1b{height:31.360000pt;}
.hc{height:44.768125pt;}
.h14{height:46.080000pt;}
.h1d{height:47.392000pt;}
.h8{height:52.108438pt;}
.h7{height:52.134375pt;}
.h1c{height:52.478750pt;}
.h5{height:53.535000pt;}
.h9{height:54.598989pt;}
.h19{height:55.298750pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h17{height:62.643750pt;}
.hb{height:62.988437pt;}
.ha{height:63.014375pt;}
.h2{height:64.500000pt;}
.h18{height:79.014375pt;}
.he{height:80.608125pt;}
.h4{height:85.785000pt;}
.h11{height:87.974375pt;}
.h10{height:96.608125pt;}
.hf{height:97.248125pt;}
.hd{height:97.408125pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:46.560000pt;}
.w9{width:46.720000pt;}
.w10{width:56.032000pt;}
.wa{width:56.160000pt;}
.w11{width:74.720000pt;}
.wb{width:74.752000pt;}
.wc{width:84.480000pt;}
.w12{width:103.232000pt;}
.wd{width:103.392000pt;}
.w13{width:112.672000pt;}
.w7{width:125.632000pt;}
.w8{width:131.712000pt;}
.we{width:150.586667pt;}
.w6{width:160.506667pt;}
.w5{width:178.586667pt;}
.w3{width:226.946667pt;}
.w4{width:452.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:7.200000pt;}
.x1{left:48.159988pt;}
.xc{left:52.799988pt;}
.x11{left:56.960000pt;}
.x6{left:63.199988pt;}
.x28{left:71.999988pt;}
.xd{left:77.279988pt;}
.x29{left:96.031988pt;}
.x4{left:105.471988pt;}
.xe{left:134.266655pt;}
.x18{left:146.746667pt;}
.x23{left:156.186667pt;}
.x15{left:163.866667pt;}
.x1e{left:179.866667pt;}
.x14{left:252.866655pt;}
.xf{left:254.786655pt;}
.x19{left:279.106667pt;}
.x13{left:283.906667pt;}
.x24{left:288.546667pt;}
.x1a{left:326.466667pt;}
.x1f{left:331.106667pt;}
.x25{left:335.906667pt;}
.x16{left:343.106667pt;}
.x8{left:351.266655pt;}
.x9{left:356.066655pt;}
.x20{left:378.466667pt;}
.xa{left:380.546655pt;}
.x1b{left:383.266667pt;}
.x26{left:392.706667pt;}
.x10{left:410.653322pt;}
.x21{left:435.293333pt;}
.xb{left:437.533322pt;}
.x1c{left:458.653333pt;}
.x17{left:504.413333pt;}
.x27{left:506.013333pt;}
.x22{left:510.813333pt;}
.x1d{left:543.773333pt;}
.x3{left:589.253322pt;}
.x7{left:697.893322pt;}
.x2{left:714.853322pt;}
.x5{left:739.519988pt;}
}




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