
    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_f87e9b63fa04ed1ad3d8b992.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d84d554990ac71ded7119fe8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1734372e880926a118184364.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_eb3ba7c4bb3cea7dbc560006.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_9ae87004663135e1c6bf7136.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d1cda9c499b3f89037b6114a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bde42b949969a3cabfb5024d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7158c7370f2b1b22ceb3aea5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_48473f76dbbe77272d336029.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_16e9cae8a8a9b96d90f5410a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:3.000000px;}
.v1{vertical-align:13.140000px;}
.v3{vertical-align:18.300000px;}
.v4{vertical-align:22.620000px;}
.v7{vertical-align:34.140000px;}
.v2{vertical-align:38.460000px;}
.v5{vertical-align:41.640000px;}
.ls10{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.310200px;}
.ls11{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.058320px;}
.ls8{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.lsb{letter-spacing:0.120000px;}
.ls16{letter-spacing:0.126000px;}
.ls4{letter-spacing:0.174240px;}
.ls17{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.288600px;}
.lsd{letter-spacing:0.324000px;}
.lsf{letter-spacing:0.360000px;}
.lse{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.702000px;}
.ls19{letter-spacing:0.720000px;}
.ls13{letter-spacing:3.138000px;}
.lsa{letter-spacing:14.400000px;}
.ls15{letter-spacing:20.309760px;}
.lsc{letter-spacing:31.080000px;}
.ls18{letter-spacing:116.760000px;}
.ls5{letter-spacing:849.185760px;}
.ls3{letter-spacing:1710.474240px;}
.sc_{text-shadow:none;}
.sc1{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);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-72.000000px;}
.ws18{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.000000px;}
.ws13{word-spacing:-15.226440px;}
.wsa{word-spacing:-14.970240px;}
.wsb{word-spacing:-14.319360px;}
.ws1{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:-12.204000px;}
.ws2{word-spacing:-12.186000px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.302720px;}
.wse{word-spacing:48.588000px;}
.ws9{word-spacing:64.332000px;}
.ws17{word-spacing:82.560000px;}
.ws12{word-spacing:100.602240px;}
.ws11{word-spacing:110.472000px;}
.ws14{word-spacing:163.740000px;}
.ws16{word-spacing:173.826000px;}
.ws15{word-spacing:174.006000px;}
.wsd{word-spacing:186.216000px;}
.wsc{word-spacing:186.336000px;}
.ws10{word-spacing:200.814000px;}
.wsf{word-spacing:200.934000px;}
.ws8{word-spacing:228.852000px;}
._5{margin-left:-8.736000px;}
._6{margin-left:-6.264000px;}
._3{margin-left:-4.860000px;}
._4{margin-left:-2.916000px;}
._1{margin-left:-1.140000px;}
._0{width:1.496640px;}
._b{width:2.622720px;}
._11{width:3.744000px;}
._12{width:5.187360px;}
._9{width:6.192000px;}
._a{width:7.344000px;}
._d{width:8.712000px;}
._e{width:10.038720px;}
._18{width:11.057280px;}
._13{width:12.168000px;}
._32{width:13.210080px;}
._8{width:14.256000px;}
._10{width:15.624000px;}
._f{width:16.632000px;}
._2{width:18.834000px;}
._c{width:20.118000px;}
._14{width:21.348000px;}
._7{width:22.392000px;}
._20{width:23.436000px;}
._17{width:24.480000px;}
._1d{width:26.136000px;}
._19{width:27.144000px;}
._1c{width:28.227360px;}
._1a{width:29.304000px;}
._2b{width:31.032000px;}
._31{width:32.256000px;}
._33{width:33.624000px;}
._1e{width:35.424000px;}
._15{width:37.656000px;}
._16{width:38.736000px;}
._2c{width:39.744000px;}
._2d{width:40.896000px;}
._1f{width:43.920000px;}
._1b{width:44.928000px;}
._35{width:50.832000px;}
._36{width:52.044000px;}
._25{width:92.124000px;}
._29{width:94.620000px;}
._34{width:95.820000px;}
._24{width:109.872000px;}
._2a{width:112.716000px;}
._28{width:116.532000px;}
._23{width:128.616000px;}
._26{width:142.068000px;}
._27{width:152.640000px;}
._30{width:156.132000px;}
._22{width:159.492000px;}
._2f{width:174.876000px;}
._21{width:179.976000px;}
._2e{width:205.692000px;}
._37{width:846.156000px;}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(255,255,255);}
.fc5{color:rgb(68,84,106);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf7{bottom:3.960000px;}
.yfa{bottom:4.140000px;}
.yfc{bottom:4.320000px;}
.y9{bottom:4.500000px;}
.yff{bottom:5.400000px;}
.ya{bottom:5.760000px;}
.y7{bottom:6.480000px;}
.yf5{bottom:11.340000px;}
.ycb{bottom:13.500000px;}
.ya5{bottom:14.430000px;}
.yf1{bottom:14.505000px;}
.y8{bottom:14.940000px;}
.y4{bottom:16.380000px;}
.y5{bottom:17.640000px;}
.y135{bottom:17.745000px;}
.y15d{bottom:20.700000px;}
.y13b{bottom:21.774000px;}
.y160{bottom:21.780000px;}
.y2{bottom:23.610000px;}
.y115{bottom:31.035000px;}
.yf4{bottom:32.040000px;}
.yca{bottom:34.200000px;}
.y139{bottom:36.900000px;}
.y9c{bottom:39.165000px;}
.yea{bottom:39.240000px;}
.y130{bottom:46.905000px;}
.ye{bottom:47.880000px;}
.yc1{bottom:56.490000px;}
.y138{bottom:57.600000px;}
.y9d{bottom:62.460000px;}
.y116{bottom:62.490000px;}
.yeb{bottom:63.795000px;}
.yd{bottom:65.700000px;}
.yc2{bottom:75.705000px;}
.y12f{bottom:77.400000px;}
.y137{bottom:78.120000px;}
.yc{bottom:82.260000px;}
.y9e{bottom:85.755000px;}
.yec{bottom:88.350000px;}
.y131{bottom:89.430000px;}
.y114{bottom:93.135000px;}
.yc3{bottom:94.935000px;}
.y9f{bottom:109.005000px;}
.y117{bottom:109.050000px;}
.y9a{bottom:110.850000px;}
.yed{bottom:112.890000px;}
.yc4{bottom:114.150000px;}
.y5e{bottom:116.856000px;}
.y112{bottom:118.476000px;}
.ybf{bottom:120.030000px;}
.ye6{bottom:123.696000px;}
.y95{bottom:125.856000px;}
.ye9{bottom:129.960000px;}
.y132{bottom:131.970000px;}
.ya0{bottom:132.300000px;}
.yc5{bottom:133.380000px;}
.yee{bottom:137.445000px;}
.y5d{bottom:137.556000px;}
.y79{bottom:140.256000px;}
.y60{bottom:141.336000px;}
.y13a{bottom:144.036000px;}
.ye5{bottom:144.396000px;}
.ybe{bottom:148.890000px;}
.yc6{bottom:152.610000px;}
.y15b{bottom:153.930000px;}
.y12e{bottom:154.980000px;}
.ya1{bottom:155.550000px;}
.y118{bottom:157.290000px;}
.y99{bottom:157.395000px;}
.y5f{bottom:158.070000px;}
.y5c{bottom:158.250000px;}
.yc0{bottom:158.505000px;}
.y111{bottom:160.050000px;}
.y78{bottom:160.950000px;}
.yef{bottom:162.000000px;}
.ye4{bottom:165.090000px;}
.y94{bottom:167.610000px;}
.yc7{bottom:171.825000px;}
.ye8{bottom:172.650000px;}
.y133{bottom:174.495000px;}
.y9b{bottom:177.405000px;}
.ya2{bottom:178.845000px;}
.y5b{bottom:178.950000px;}
.y98{bottom:180.690000px;}
.y110{bottom:180.750000px;}
.y77{bottom:181.650000px;}
.y136{bottom:183.270000px;}
.ybb{bottom:185.790000px;}
.yf0{bottom:186.555000px;}
.y15a{bottom:187.230000px;}
.y93{bottom:188.310000px;}
.yc8{bottom:191.055000px;}
.y5a{bottom:199.650000px;}
.y10f{bottom:201.450000px;}
.ya3{bottom:202.140000px;}
.y17d{bottom:202.170000px;}
.y76{bottom:202.350000px;}
.y134{bottom:202.680000px;}
.yba{bottom:206.490000px;}
.y159{bottom:207.390000px;}
.y92{bottom:209.010000px;}
.y11b{bottom:209.340000px;}
.yc9{bottom:210.270000px;}
.yf2{bottom:215.535000px;}
.y97{bottom:215.610000px;}
.ybd{bottom:216.180000px;}
.y59{bottom:220.350000px;}
.y10e{bottom:222.150000px;}
.y75{bottom:223.050000px;}
.y33{bottom:224.130000px;}
.ya4{bottom:225.390000px;}
.yb9{bottom:227.190000px;}
.y158{bottom:227.550000px;}
.y91{bottom:229.710000px;}
.y17c{bottom:233.130000px;}
.ycc{bottom:239.760000px;}
.y58{bottom:241.050000px;}
.y74{bottom:243.750000px;}
.y11a{bottom:244.185000px;}
.y157{bottom:247.710000px;}
.yb8{bottom:247.890000px;}
.ye3{bottom:248.070000px;}
.y90{bottom:250.410000px;}
.ya6{bottom:252.510000px;}
.y32{bottom:256.890000px;}
.y57{bottom:261.750000px;}
.y10d{bottom:263.910000px;}
.y119{bottom:264.390000px;}
.y73{bottom:264.450000px;}
.y17b{bottom:265.530000px;}
.y156{bottom:267.870000px;}
.yb7{bottom:268.590000px;}
.y8f{bottom:271.110000px;}
.y10c{bottom:284.610000px;}
.y72{bottom:285.150000px;}
.y155{bottom:287.850000px;}
.yb6{bottom:289.290000px;}
.ye2{bottom:289.830000px;}
.y8e{bottom:291.810000px;}
.y12c{bottom:295.050000px;}
.y17a{bottom:296.490000px;}
.y31{bottom:298.650000px;}
.y56{bottom:303.510000px;}
.y10b{bottom:305.310000px;}
.y71{bottom:305.850000px;}
.y154{bottom:308.010000px;}
.yb5{bottom:309.990000px;}
.ye1{bottom:310.530000px;}
.y8d{bottom:312.510000px;}
.y30{bottom:319.350000px;}
.y55{bottom:324.210000px;}
.y10a{bottom:326.010000px;}
.y70{bottom:326.550000px;}
.y12b{bottom:327.630000px;}
.y153{bottom:328.170000px;}
.y179{bottom:328.890000px;}
.ye0{bottom:331.230000px;}
.y2f{bottom:340.050000px;}
.yb4{bottom:342.750000px;}
.y54{bottom:344.910000px;}
.y109{bottom:346.710000px;}
.y6f{bottom:347.250000px;}
.y152{bottom:348.330000px;}
.ydf{bottom:351.930000px;}
.y8c{bottom:354.135000px;}
.y178{bottom:359.895000px;}
.y12a{bottom:360.435000px;}
.y2e{bottom:360.795000px;}
.y53{bottom:365.655000px;}
.y108{bottom:367.455000px;}
.y6e{bottom:367.995000px;}
.y8b{bottom:374.835000px;}
.yb3{bottom:375.915000px;}
.y151{bottom:380.055000px;}
.y129{bottom:381.135000px;}
.y2d{bottom:381.495000px;}
.y52{bottom:386.355000px;}
.y107{bottom:388.155000px;}
.y177{bottom:392.295000px;}
.yde{bottom:393.555000px;}
.y8a{bottom:395.535000px;}
.yb2{bottom:396.075000px;}
.y6d{bottom:400.755000px;}
.y128{bottom:401.835000px;}
.y2c{bottom:402.195000px;}
.y51{bottom:407.055000px;}
.y106{bottom:408.855000px;}
.ydd{bottom:414.255000px;}
.y89{bottom:416.235000px;}
.y150{bottom:421.635000px;}
.y127{bottom:422.535000px;}
.y2b{bottom:422.895000px;}
.y176{bottom:423.255000px;}
.y50{bottom:427.755000px;}
.y105{bottom:429.555000px;}
.y6c{bottom:433.335000px;}
.ydc{bottom:434.955000px;}
.yb1{bottom:436.395000px;}
.y88{bottom:436.935000px;}
.y14f{bottom:442.335000px;}
.y2a{bottom:443.595000px;}
.y104{bottom:450.255000px;}
.y6b{bottom:454.035000px;}
.y126{bottom:455.295000px;}
.y175{bottom:455.655000px;}
.yb0{bottom:456.555000px;}
.y87{bottom:457.635000px;}
.y14e{bottom:463.035000px;}
.y29{bottom:464.295000px;}
.y4f{bottom:469.335000px;}
.y103{bottom:470.955000px;}
.yaf{bottom:476.715000px;}
.y86{bottom:478.335000px;}
.y14d{bottom:483.735000px;}
.y28{bottom:484.995000px;}
.y174{bottom:486.615000px;}
.y6a{bottom:486.795000px;}
.y125{bottom:488.415000px;}
.y4e{bottom:490.035000px;}
.yae{bottom:496.875000px;}
.ydb{bottom:497.415000px;}
.y85{bottom:499.035000px;}
.y14c{bottom:504.435000px;}
.y124{bottom:508.575000px;}
.y102{bottom:508.755000px;}
.y113{bottom:509.940000px;}
.y4d{bottom:510.735000px;}
.yad{bottom:517.035000px;}
.yda{bottom:518.115000px;}
.y173{bottom:519.195000px;}
.y69{bottom:519.555000px;}
.y84{bottom:519.735000px;}
.y27{bottom:526.575000px;}
.y123{bottom:528.735000px;}
.y4c{bottom:531.435000px;}
.yac{bottom:537.015000px;}
.yd9{bottom:538.815000px;}
.y68{bottom:540.255000px;}
.y83{bottom:540.435000px;}
.y14b{bottom:546.195000px;}
.y26{bottom:547.275000px;}
.y122{bottom:548.895000px;}
.y172{bottom:549.975000px;}
.y4b{bottom:552.135000px;}
.yab{bottom:557.175000px;}
.yd8{bottom:559.515000px;}
.y67{bottom:560.955000px;}
.y14a{bottom:566.895000px;}
.y25{bottom:567.975000px;}
.y121{bottom:569.055000px;}
.y4a{bottom:572.835000px;}
.yaa{bottom:577.335000px;}
.y66{bottom:581.655000px;}
.y82{bottom:582.195000px;}
.y171{bottom:582.555000px;}
.y149{bottom:587.595000px;}
.y24{bottom:588.675000px;}
.y120{bottom:589.215000px;}
.y49{bottom:593.535000px;}
.ya9{bottom:597.495000px;}
.yd7{bottom:601.275000px;}
.y148{bottom:608.295000px;}
.y23{bottom:609.375000px;}
.y81{bottom:610.995000px;}
.y96{bottom:611.100000px;}
.y170{bottom:613.335000px;}
.y48{bottom:614.235000px;}
.yd6{bottom:622.005000px;}
.y147{bottom:629.025000px;}
.ya8{bottom:629.205000px;}
.y11f{bottom:629.565000px;}
.y22{bottom:630.105000px;}
.y47{bottom:634.965000px;}
.yd5{bottom:642.705000px;}
.y16f{bottom:645.945000px;}
.y21{bottom:650.805000px;}
.y46{bottom:655.665000px;}
.y65{bottom:656.025000px;}
.ya7{bottom:657.825000px;}
.ybc{bottom:659.160000px;}
.yd4{bottom:663.405000px;}
.y11e{bottom:670.065000px;}
.y146{bottom:670.785000px;}
.y20{bottom:671.505000px;}
.y64{bottom:676.725000px;}
.y16e{bottom:676.905000px;}
.yd3{bottom:684.105000px;}
.y145{bottom:691.485000px;}
.y1f{bottom:692.205000px;}
.y45{bottom:697.425000px;}
.yd2{bottom:704.805000px;}
.y11d{bottom:707.865000px;}
.y12d{bottom:707.940000px;}
.y16d{bottom:709.305000px;}
.y144{bottom:712.185000px;}
.y1e{bottom:712.905000px;}
.y44{bottom:718.125000px;}
.yd1{bottom:725.505000px;}
.y143{bottom:732.885000px;}
.y1d{bottom:733.605000px;}
.y43{bottom:738.825000px;}
.y16c{bottom:740.265000px;}
.yd0{bottom:746.205000px;}
.y142{bottom:753.585000px;}
.y42{bottom:759.525000px;}
.y16b{bottom:772.665000px;}
.y141{bottom:774.285000px;}
.y1c{bottom:775.365000px;}
.y188{bottom:778.245000px;}
.y41{bottom:780.225000px;}
.ycf{bottom:787.785000px;}
.y140{bottom:794.805000px;}
.y40{bottom:800.925000px;}
.y16a{bottom:803.625000px;}
.y187{bottom:809.205000px;}
.y13f{bottom:815.505000px;}
.y1b{bottom:818.385000px;}
.y3f{bottom:821.625000px;}
.y101{bottom:826.125000px;}
.yce{bottom:829.545000px;}
.y169{bottom:836.025000px;}
.y13e{bottom:836.205000px;}
.y1a{bottom:839.085000px;}
.y186{bottom:840.345000px;}
.y3e{bottom:842.325000px;}
.y63{bottom:842.685000px;}
.y13d{bottom:856.905000px;}
.ycd{bottom:858.165000px;}
.ye7{bottom:858.420000px;}
.y19{bottom:859.785000px;}
.y3d{bottom:863.025000px;}
.y62{bottom:863.385000px;}
.y100{bottom:864.645000px;}
.y168{bottom:866.985000px;}
.y185{bottom:871.305000px;}
.y18{bottom:880.530000px;}
.y61{bottom:884.130000px;}
.yfe{bottom:886.110000px;}
.y13c{bottom:898.710000px;}
.y167{bottom:899.430000px;}
.y17{bottom:901.230000px;}
.y184{bottom:902.490000px;}
.y3c{bottom:904.830000px;}
.yfd{bottom:908.970000px;}
.y80{bottom:910.410000px;}
.y162{bottom:916.170000px;}
.y16{bottom:921.930000px;}
.y3b{bottom:925.530000px;}
.yfb{bottom:930.390000px;}
.y7f{bottom:931.110000px;}
.y183{bottom:933.450000px;}
.y15{bottom:942.630000px;}
.y3a{bottom:946.230000px;}
.y7e{bottom:951.810000px;}
.yf9{bottom:952.170000px;}
.y161{bottom:954.330000px;}
.y166{bottom:962.970000px;}
.y14{bottom:963.330000px;}
.y182{bottom:964.590000px;}
.y11c{bottom:966.750000px;}
.y39{bottom:966.930000px;}
.y7d{bottom:972.510000px;}
.yf8{bottom:973.770000px;}
.y13{bottom:984.030000px;}
.y38{bottom:987.450000px;}
.y15f{bottom:992.490000px;}
.y7c{bottom:993.210000px;}
.y165{bottom:993.750000px;}
.yf6{bottom:995.190000px;}
.y181{bottom:995.370000px;}
.y12{bottom:1004.730000px;}
.y37{bottom:1008.150000px;}
.yf3{bottom:1016.790000px;}
.y11{bottom:1025.430000px;}
.y7b{bottom:1025.970000px;}
.y164{bottom:1026.330000px;}
.y180{bottom:1027.950000px;}
.y36{bottom:1028.850000px;}
.y15e{bottom:1031.730000px;}
.y10{bottom:1049.370000px;}
.y35{bottom:1049.550000px;}
.y163{bottom:1057.110000px;}
.y7a{bottom:1058.550000px;}
.y17f{bottom:1058.910000px;}
.y15c{bottom:1069.890000px;}
.yf{bottom:1082.310000px;}
.y17e{bottom:1089.870000px;}
.y34{bottom:1091.310000px;}
.yb{bottom:1112.550000px;}
.y1{bottom:1128.210000px;}
.y6{bottom:1148.400000px;}
.y3{bottom:1177.740000px;}
.h8{height:20.196000px;}
.h1d{height:20.700000px;}
.h21{height:20.736000px;}
.h1e{height:20.880000px;}
.h1f{height:21.060000px;}
.h20{height:22.140000px;}
.h6{height:29.340000px;}
.h4{height:32.040000px;}
.h29{height:37.440000px;}
.h11{height:38.100586px;}
.h28{height:38.520000px;}
.h1c{height:48.780000px;}
.he{height:50.273438px;}
.hd{height:50.800781px;}
.h12{height:51.240586px;}
.h2a{height:52.417969px;}
.hf{height:53.332031px;}
.hb{height:53.709961px;}
.h23{height:55.291992px;}
.h14{height:59.436914px;}
.h5{height:61.189805px;}
.h16{height:64.875938px;}
.h9{height:65.884219px;}
.h3{height:67.824844px;}
.h24{height:67.972289px;}
.ha{height:71.613281px;}
.h13{height:73.722656px;}
.h2{height:81.576000px;}
.h18{height:86.255508px;}
.h26{height:92.431992px;}
.h27{height:94.860000px;}
.h7{height:95.245664px;}
.h1a{height:95.349961px;}
.h1b{height:98.051133px;}
.hc{height:102.832031px;}
.h17{height:103.335937px;}
.h25{height:234.000000px;}
.h19{height:249.660000px;}
.h15{height:271.080000px;}
.h10{height:283.500000px;}
.h22{height:291.420000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:82.800000px;}
.w4{width:143.496000px;}
.wd{width:143.676000px;}
.wf{width:162.750000px;}
.we{width:162.930000px;}
.w9{width:232.590000px;}
.wa{width:362.445000px;}
.wb{width:463.860000px;}
.w3{width:470.085000px;}
.wc{width:473.580000px;}
.w8{width:551.160000px;}
.w7{width:619.380000px;}
.w6{width:631.620000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x1c{left:9.792000px;}
.x8{left:11.340000px;}
.x2c{left:16.632000px;}
.x24{left:17.748000px;}
.x6{left:22.320000px;}
.x9{left:27.000000px;}
.x2b{left:43.995000px;}
.x7{left:47.160000px;}
.x1d{left:58.395000px;}
.x37{left:63.645000px;}
.x38{left:65.730000px;}
.x2{left:66.954000px;}
.x2e{left:68.115000px;}
.x17{left:70.530000px;}
.x25{left:73.875000px;}
.x20{left:77.430000px;}
.x29{left:89.925000px;}
.x2d{left:91.515000px;}
.x3c{left:97.230000px;}
.x3d{left:101.010000px;}
.x1{left:108.036000px;}
.x15{left:135.035987px;}
.xa{left:138.635987px;}
.xf{left:140.435987px;}
.x2f{left:148.896000px;}
.x41{left:150.509987px;}
.x18{left:153.285000px;}
.x21{left:156.090000px;}
.x36{left:158.250000px;}
.x13{left:162.029987px;}
.x35{left:168.810000px;}
.x3b{left:178.275000px;}
.x2a{left:184.245000px;}
.x3{left:190.830000px;}
.x34{left:194.910000px;}
.x3a{left:208.980000px;}
.x3e{left:211.170000px;}
.x32{left:213.480000px;}
.x1e{left:223.995000px;}
.xb{left:236.009987px;}
.x12{left:274.214987px;}
.xe{left:276.194987px;}
.x33{left:284.250000px;}
.x22{left:313.380000px;}
.x19{left:318.810000px;}
.x3f{left:355.575000px;}
.xd{left:357.734987px;}
.x11{left:371.954987px;}
.x10{left:376.274987px;}
.x30{left:382.215000px;}
.x23{left:392.040000px;}
.x1a{left:401.580000px;}
.xc{left:446.504987px;}
.x26{left:459.105000px;}
.x1b{left:475.710000px;}
.x40{left:519.225000px;}
.x27{left:526.755000px;}
.x28{left:659.309987px;}
.x5{left:660.930000px;}
.x31{left:679.469987px;}
.x39{left:683.969987px;}
.x1f{left:729.149987px;}
.x16{left:740.339987px;}
.x14{left:785.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.666667pt;}
.v1{vertical-align:11.680000pt;}
.v3{vertical-align:16.266667pt;}
.v4{vertical-align:20.106667pt;}
.v7{vertical-align:30.346667pt;}
.v2{vertical-align:34.186667pt;}
.v5{vertical-align:37.013333pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.275733pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.051840pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls16{letter-spacing:0.112000pt;}
.ls4{letter-spacing:0.154880pt;}
.ls17{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.256533pt;}
.lsd{letter-spacing:0.288000pt;}
.lsf{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.624000pt;}
.ls19{letter-spacing:0.640000pt;}
.ls13{letter-spacing:2.789333pt;}
.lsa{letter-spacing:12.800000pt;}
.ls15{letter-spacing:18.053120pt;}
.lsc{letter-spacing:27.626667pt;}
.ls18{letter-spacing:103.786667pt;}
.ls5{letter-spacing:754.831787pt;}
.ls3{letter-spacing:1520.421547pt;}
.ws7{word-spacing:-64.000000pt;}
.ws18{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws13{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.306880pt;}
.wsb{word-spacing:-12.728320pt;}
.ws1{word-spacing:-12.005120pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.832000pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.824640pt;}
.wse{word-spacing:43.189333pt;}
.ws9{word-spacing:57.184000pt;}
.ws17{word-spacing:73.386667pt;}
.ws12{word-spacing:89.424213pt;}
.ws11{word-spacing:98.197333pt;}
.ws14{word-spacing:145.546667pt;}
.ws16{word-spacing:154.512000pt;}
.ws15{word-spacing:154.672000pt;}
.wsd{word-spacing:165.525333pt;}
.wsc{word-spacing:165.632000pt;}
.ws10{word-spacing:178.501333pt;}
.wsf{word-spacing:178.608000pt;}
.ws8{word-spacing:203.424000pt;}
._5{margin-left:-7.765333pt;}
._6{margin-left:-5.568000pt;}
._3{margin-left:-4.320000pt;}
._4{margin-left:-2.592000pt;}
._1{margin-left:-1.013333pt;}
._0{width:1.330347pt;}
._b{width:2.331307pt;}
._11{width:3.328000pt;}
._12{width:4.610987pt;}
._9{width:5.504000pt;}
._a{width:6.528000pt;}
._d{width:7.744000pt;}
._e{width:8.923307pt;}
._18{width:9.828693pt;}
._13{width:10.816000pt;}
._32{width:11.742293pt;}
._8{width:12.672000pt;}
._10{width:13.888000pt;}
._f{width:14.784000pt;}
._2{width:16.741333pt;}
._c{width:17.882667pt;}
._14{width:18.976000pt;}
._7{width:19.904000pt;}
._20{width:20.832000pt;}
._17{width:21.760000pt;}
._1d{width:23.232000pt;}
._19{width:24.128000pt;}
._1c{width:25.090987pt;}
._1a{width:26.048000pt;}
._2b{width:27.584000pt;}
._31{width:28.672000pt;}
._33{width:29.888000pt;}
._1e{width:31.488000pt;}
._15{width:33.472000pt;}
._16{width:34.432000pt;}
._2c{width:35.328000pt;}
._2d{width:36.352000pt;}
._1f{width:39.040000pt;}
._1b{width:39.936000pt;}
._35{width:45.184000pt;}
._36{width:46.261333pt;}
._25{width:81.888000pt;}
._29{width:84.106667pt;}
._34{width:85.173333pt;}
._24{width:97.664000pt;}
._2a{width:100.192000pt;}
._28{width:103.584000pt;}
._23{width:114.325333pt;}
._26{width:126.282667pt;}
._27{width:135.680000pt;}
._30{width:138.784000pt;}
._22{width:141.770667pt;}
._2f{width:155.445333pt;}
._21{width:159.978667pt;}
._2e{width:182.837333pt;}
._37{width:752.138667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf7{bottom:3.520000pt;}
.yfa{bottom:3.680000pt;}
.yfc{bottom:3.840000pt;}
.y9{bottom:4.000000pt;}
.yff{bottom:4.800000pt;}
.ya{bottom:5.120000pt;}
.y7{bottom:5.760000pt;}
.yf5{bottom:10.080000pt;}
.ycb{bottom:12.000000pt;}
.ya5{bottom:12.826667pt;}
.yf1{bottom:12.893333pt;}
.y8{bottom:13.280000pt;}
.y4{bottom:14.560000pt;}
.y5{bottom:15.680000pt;}
.y135{bottom:15.773333pt;}
.y15d{bottom:18.400000pt;}
.y13b{bottom:19.354667pt;}
.y160{bottom:19.360000pt;}
.y2{bottom:20.986667pt;}
.y115{bottom:27.586667pt;}
.yf4{bottom:28.480000pt;}
.yca{bottom:30.400000pt;}
.y139{bottom:32.800000pt;}
.y9c{bottom:34.813333pt;}
.yea{bottom:34.880000pt;}
.y130{bottom:41.693333pt;}
.ye{bottom:42.560000pt;}
.yc1{bottom:50.213333pt;}
.y138{bottom:51.200000pt;}
.y9d{bottom:55.520000pt;}
.y116{bottom:55.546667pt;}
.yeb{bottom:56.706667pt;}
.yd{bottom:58.400000pt;}
.yc2{bottom:67.293333pt;}
.y12f{bottom:68.800000pt;}
.y137{bottom:69.440000pt;}
.yc{bottom:73.120000pt;}
.y9e{bottom:76.226667pt;}
.yec{bottom:78.533333pt;}
.y131{bottom:79.493333pt;}
.y114{bottom:82.786667pt;}
.yc3{bottom:84.386667pt;}
.y9f{bottom:96.893333pt;}
.y117{bottom:96.933333pt;}
.y9a{bottom:98.533333pt;}
.yed{bottom:100.346667pt;}
.yc4{bottom:101.466667pt;}
.y5e{bottom:103.872000pt;}
.y112{bottom:105.312000pt;}
.ybf{bottom:106.693333pt;}
.ye6{bottom:109.952000pt;}
.y95{bottom:111.872000pt;}
.ye9{bottom:115.520000pt;}
.y132{bottom:117.306667pt;}
.ya0{bottom:117.600000pt;}
.yc5{bottom:118.560000pt;}
.yee{bottom:122.173333pt;}
.y5d{bottom:122.272000pt;}
.y79{bottom:124.672000pt;}
.y60{bottom:125.632000pt;}
.y13a{bottom:128.032000pt;}
.ye5{bottom:128.352000pt;}
.ybe{bottom:132.346667pt;}
.yc6{bottom:135.653333pt;}
.y15b{bottom:136.826667pt;}
.y12e{bottom:137.760000pt;}
.ya1{bottom:138.266667pt;}
.y118{bottom:139.813333pt;}
.y99{bottom:139.906667pt;}
.y5f{bottom:140.506667pt;}
.y5c{bottom:140.666667pt;}
.yc0{bottom:140.893333pt;}
.y111{bottom:142.266667pt;}
.y78{bottom:143.066667pt;}
.yef{bottom:144.000000pt;}
.ye4{bottom:146.746667pt;}
.y94{bottom:148.986667pt;}
.yc7{bottom:152.733333pt;}
.ye8{bottom:153.466667pt;}
.y133{bottom:155.106667pt;}
.y9b{bottom:157.693333pt;}
.ya2{bottom:158.973333pt;}
.y5b{bottom:159.066667pt;}
.y98{bottom:160.613333pt;}
.y110{bottom:160.666667pt;}
.y77{bottom:161.466667pt;}
.y136{bottom:162.906667pt;}
.ybb{bottom:165.146667pt;}
.yf0{bottom:165.826667pt;}
.y15a{bottom:166.426667pt;}
.y93{bottom:167.386667pt;}
.yc8{bottom:169.826667pt;}
.y5a{bottom:177.466667pt;}
.y10f{bottom:179.066667pt;}
.ya3{bottom:179.680000pt;}
.y17d{bottom:179.706667pt;}
.y76{bottom:179.866667pt;}
.y134{bottom:180.160000pt;}
.yba{bottom:183.546667pt;}
.y159{bottom:184.346667pt;}
.y92{bottom:185.786667pt;}
.y11b{bottom:186.080000pt;}
.yc9{bottom:186.906667pt;}
.yf2{bottom:191.586667pt;}
.y97{bottom:191.653333pt;}
.ybd{bottom:192.160000pt;}
.y59{bottom:195.866667pt;}
.y10e{bottom:197.466667pt;}
.y75{bottom:198.266667pt;}
.y33{bottom:199.226667pt;}
.ya4{bottom:200.346667pt;}
.yb9{bottom:201.946667pt;}
.y158{bottom:202.266667pt;}
.y91{bottom:204.186667pt;}
.y17c{bottom:207.226667pt;}
.ycc{bottom:213.120000pt;}
.y58{bottom:214.266667pt;}
.y74{bottom:216.666667pt;}
.y11a{bottom:217.053333pt;}
.y157{bottom:220.186667pt;}
.yb8{bottom:220.346667pt;}
.ye3{bottom:220.506667pt;}
.y90{bottom:222.586667pt;}
.ya6{bottom:224.453333pt;}
.y32{bottom:228.346667pt;}
.y57{bottom:232.666667pt;}
.y10d{bottom:234.586667pt;}
.y119{bottom:235.013333pt;}
.y73{bottom:235.066667pt;}
.y17b{bottom:236.026667pt;}
.y156{bottom:238.106667pt;}
.yb7{bottom:238.746667pt;}
.y8f{bottom:240.986667pt;}
.y10c{bottom:252.986667pt;}
.y72{bottom:253.466667pt;}
.y155{bottom:255.866667pt;}
.yb6{bottom:257.146667pt;}
.ye2{bottom:257.626667pt;}
.y8e{bottom:259.386667pt;}
.y12c{bottom:262.266667pt;}
.y17a{bottom:263.546667pt;}
.y31{bottom:265.466667pt;}
.y56{bottom:269.786667pt;}
.y10b{bottom:271.386667pt;}
.y71{bottom:271.866667pt;}
.y154{bottom:273.786667pt;}
.yb5{bottom:275.546667pt;}
.ye1{bottom:276.026667pt;}
.y8d{bottom:277.786667pt;}
.y30{bottom:283.866667pt;}
.y55{bottom:288.186667pt;}
.y10a{bottom:289.786667pt;}
.y70{bottom:290.266667pt;}
.y12b{bottom:291.226667pt;}
.y153{bottom:291.706667pt;}
.y179{bottom:292.346667pt;}
.ye0{bottom:294.426667pt;}
.y2f{bottom:302.266667pt;}
.yb4{bottom:304.666667pt;}
.y54{bottom:306.586667pt;}
.y109{bottom:308.186667pt;}
.y6f{bottom:308.666667pt;}
.y152{bottom:309.626667pt;}
.ydf{bottom:312.826667pt;}
.y8c{bottom:314.786667pt;}
.y178{bottom:319.906667pt;}
.y12a{bottom:320.386667pt;}
.y2e{bottom:320.706667pt;}
.y53{bottom:325.026667pt;}
.y108{bottom:326.626667pt;}
.y6e{bottom:327.106667pt;}
.y8b{bottom:333.186667pt;}
.yb3{bottom:334.146667pt;}
.y151{bottom:337.826667pt;}
.y129{bottom:338.786667pt;}
.y2d{bottom:339.106667pt;}
.y52{bottom:343.426667pt;}
.y107{bottom:345.026667pt;}
.y177{bottom:348.706667pt;}
.yde{bottom:349.826667pt;}
.y8a{bottom:351.586667pt;}
.yb2{bottom:352.066667pt;}
.y6d{bottom:356.226667pt;}
.y128{bottom:357.186667pt;}
.y2c{bottom:357.506667pt;}
.y51{bottom:361.826667pt;}
.y106{bottom:363.426667pt;}
.ydd{bottom:368.226667pt;}
.y89{bottom:369.986667pt;}
.y150{bottom:374.786667pt;}
.y127{bottom:375.586667pt;}
.y2b{bottom:375.906667pt;}
.y176{bottom:376.226667pt;}
.y50{bottom:380.226667pt;}
.y105{bottom:381.826667pt;}
.y6c{bottom:385.186667pt;}
.ydc{bottom:386.626667pt;}
.yb1{bottom:387.906667pt;}
.y88{bottom:388.386667pt;}
.y14f{bottom:393.186667pt;}
.y2a{bottom:394.306667pt;}
.y104{bottom:400.226667pt;}
.y6b{bottom:403.586667pt;}
.y126{bottom:404.706667pt;}
.y175{bottom:405.026667pt;}
.yb0{bottom:405.826667pt;}
.y87{bottom:406.786667pt;}
.y14e{bottom:411.586667pt;}
.y29{bottom:412.706667pt;}
.y4f{bottom:417.186667pt;}
.y103{bottom:418.626667pt;}
.yaf{bottom:423.746667pt;}
.y86{bottom:425.186667pt;}
.y14d{bottom:429.986667pt;}
.y28{bottom:431.106667pt;}
.y174{bottom:432.546667pt;}
.y6a{bottom:432.706667pt;}
.y125{bottom:434.146667pt;}
.y4e{bottom:435.586667pt;}
.yae{bottom:441.666667pt;}
.ydb{bottom:442.146667pt;}
.y85{bottom:443.586667pt;}
.y14c{bottom:448.386667pt;}
.y124{bottom:452.066667pt;}
.y102{bottom:452.226667pt;}
.y113{bottom:453.280000pt;}
.y4d{bottom:453.986667pt;}
.yad{bottom:459.586667pt;}
.yda{bottom:460.546667pt;}
.y173{bottom:461.506667pt;}
.y69{bottom:461.826667pt;}
.y84{bottom:461.986667pt;}
.y27{bottom:468.066667pt;}
.y123{bottom:469.986667pt;}
.y4c{bottom:472.386667pt;}
.yac{bottom:477.346667pt;}
.yd9{bottom:478.946667pt;}
.y68{bottom:480.226667pt;}
.y83{bottom:480.386667pt;}
.y14b{bottom:485.506667pt;}
.y26{bottom:486.466667pt;}
.y122{bottom:487.906667pt;}
.y172{bottom:488.866667pt;}
.y4b{bottom:490.786667pt;}
.yab{bottom:495.266667pt;}
.yd8{bottom:497.346667pt;}
.y67{bottom:498.626667pt;}
.y14a{bottom:503.906667pt;}
.y25{bottom:504.866667pt;}
.y121{bottom:505.826667pt;}
.y4a{bottom:509.186667pt;}
.yaa{bottom:513.186667pt;}
.y66{bottom:517.026667pt;}
.y82{bottom:517.506667pt;}
.y171{bottom:517.826667pt;}
.y149{bottom:522.306667pt;}
.y24{bottom:523.266667pt;}
.y120{bottom:523.746667pt;}
.y49{bottom:527.586667pt;}
.ya9{bottom:531.106667pt;}
.yd7{bottom:534.466667pt;}
.y148{bottom:540.706667pt;}
.y23{bottom:541.666667pt;}
.y81{bottom:543.106667pt;}
.y96{bottom:543.200000pt;}
.y170{bottom:545.186667pt;}
.y48{bottom:545.986667pt;}
.yd6{bottom:552.893333pt;}
.y147{bottom:559.133333pt;}
.ya8{bottom:559.293333pt;}
.y11f{bottom:559.613333pt;}
.y22{bottom:560.093333pt;}
.y47{bottom:564.413333pt;}
.yd5{bottom:571.293333pt;}
.y16f{bottom:574.173333pt;}
.y21{bottom:578.493333pt;}
.y46{bottom:582.813333pt;}
.y65{bottom:583.133333pt;}
.ya7{bottom:584.733333pt;}
.ybc{bottom:585.920000pt;}
.yd4{bottom:589.693333pt;}
.y11e{bottom:595.613333pt;}
.y146{bottom:596.253333pt;}
.y20{bottom:596.893333pt;}
.y64{bottom:601.533333pt;}
.y16e{bottom:601.693333pt;}
.yd3{bottom:608.093333pt;}
.y145{bottom:614.653333pt;}
.y1f{bottom:615.293333pt;}
.y45{bottom:619.933333pt;}
.yd2{bottom:626.493333pt;}
.y11d{bottom:629.213333pt;}
.y12d{bottom:629.280000pt;}
.y16d{bottom:630.493333pt;}
.y144{bottom:633.053333pt;}
.y1e{bottom:633.693333pt;}
.y44{bottom:638.333333pt;}
.yd1{bottom:644.893333pt;}
.y143{bottom:651.453333pt;}
.y1d{bottom:652.093333pt;}
.y43{bottom:656.733333pt;}
.y16c{bottom:658.013333pt;}
.yd0{bottom:663.293333pt;}
.y142{bottom:669.853333pt;}
.y42{bottom:675.133333pt;}
.y16b{bottom:686.813333pt;}
.y141{bottom:688.253333pt;}
.y1c{bottom:689.213333pt;}
.y188{bottom:691.773333pt;}
.y41{bottom:693.533333pt;}
.ycf{bottom:700.253333pt;}
.y140{bottom:706.493333pt;}
.y40{bottom:711.933333pt;}
.y16a{bottom:714.333333pt;}
.y187{bottom:719.293333pt;}
.y13f{bottom:724.893333pt;}
.y1b{bottom:727.453333pt;}
.y3f{bottom:730.333333pt;}
.y101{bottom:734.333333pt;}
.yce{bottom:737.373333pt;}
.y169{bottom:743.133333pt;}
.y13e{bottom:743.293333pt;}
.y1a{bottom:745.853333pt;}
.y186{bottom:746.973333pt;}
.y3e{bottom:748.733333pt;}
.y63{bottom:749.053333pt;}
.y13d{bottom:761.693333pt;}
.ycd{bottom:762.813333pt;}
.ye7{bottom:763.040000pt;}
.y19{bottom:764.253333pt;}
.y3d{bottom:767.133333pt;}
.y62{bottom:767.453333pt;}
.y100{bottom:768.573333pt;}
.y168{bottom:770.653333pt;}
.y185{bottom:774.493333pt;}
.y18{bottom:782.693333pt;}
.y61{bottom:785.893333pt;}
.yfe{bottom:787.653333pt;}
.y13c{bottom:798.853333pt;}
.y167{bottom:799.493333pt;}
.y17{bottom:801.093333pt;}
.y184{bottom:802.213333pt;}
.y3c{bottom:804.293333pt;}
.yfd{bottom:807.973333pt;}
.y80{bottom:809.253333pt;}
.y162{bottom:814.373333pt;}
.y16{bottom:819.493333pt;}
.y3b{bottom:822.693333pt;}
.yfb{bottom:827.013333pt;}
.y7f{bottom:827.653333pt;}
.y183{bottom:829.733333pt;}
.y15{bottom:837.893333pt;}
.y3a{bottom:841.093333pt;}
.y7e{bottom:846.053333pt;}
.yf9{bottom:846.373333pt;}
.y161{bottom:848.293333pt;}
.y166{bottom:855.973333pt;}
.y14{bottom:856.293333pt;}
.y182{bottom:857.413333pt;}
.y11c{bottom:859.333333pt;}
.y39{bottom:859.493333pt;}
.y7d{bottom:864.453333pt;}
.yf8{bottom:865.573333pt;}
.y13{bottom:874.693333pt;}
.y38{bottom:877.733333pt;}
.y15f{bottom:882.213333pt;}
.y7c{bottom:882.853333pt;}
.y165{bottom:883.333333pt;}
.yf6{bottom:884.613333pt;}
.y181{bottom:884.773333pt;}
.y12{bottom:893.093333pt;}
.y37{bottom:896.133333pt;}
.yf3{bottom:903.813333pt;}
.y11{bottom:911.493333pt;}
.y7b{bottom:911.973333pt;}
.y164{bottom:912.293333pt;}
.y180{bottom:913.733333pt;}
.y36{bottom:914.533333pt;}
.y15e{bottom:917.093333pt;}
.y10{bottom:932.773333pt;}
.y35{bottom:932.933333pt;}
.y163{bottom:939.653333pt;}
.y7a{bottom:940.933333pt;}
.y17f{bottom:941.253333pt;}
.y15c{bottom:951.013333pt;}
.yf{bottom:962.053333pt;}
.y17e{bottom:968.773333pt;}
.y34{bottom:970.053333pt;}
.yb{bottom:988.933333pt;}
.y1{bottom:1002.853333pt;}
.y6{bottom:1020.800000pt;}
.y3{bottom:1046.880000pt;}
.h8{height:17.952000pt;}
.h1d{height:18.400000pt;}
.h21{height:18.432000pt;}
.h1e{height:18.560000pt;}
.h1f{height:18.720000pt;}
.h20{height:19.680000pt;}
.h6{height:26.080000pt;}
.h4{height:28.480000pt;}
.h29{height:33.280000pt;}
.h11{height:33.867188pt;}
.h28{height:34.240000pt;}
.h1c{height:43.360000pt;}
.he{height:44.687500pt;}
.hd{height:45.156250pt;}
.h12{height:45.547187pt;}
.h2a{height:46.593750pt;}
.hf{height:47.406250pt;}
.hb{height:47.742188pt;}
.h23{height:49.148438pt;}
.h14{height:52.832812pt;}
.h5{height:54.390938pt;}
.h16{height:57.667500pt;}
.h9{height:58.563750pt;}
.h3{height:60.288750pt;}
.h24{height:60.419812pt;}
.ha{height:63.656250pt;}
.h13{height:65.531250pt;}
.h2{height:72.512000pt;}
.h18{height:76.671562pt;}
.h26{height:82.161771pt;}
.h27{height:84.320000pt;}
.h7{height:84.662813pt;}
.h1a{height:84.755521pt;}
.h1b{height:87.156562pt;}
.hc{height:91.406250pt;}
.h17{height:91.854167pt;}
.h25{height:208.000000pt;}
.h19{height:221.920000pt;}
.h15{height:240.960000pt;}
.h10{height:252.000000pt;}
.h22{height:259.040000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:73.600000pt;}
.w4{width:127.552000pt;}
.wd{width:127.712000pt;}
.wf{width:144.666667pt;}
.we{width:144.826667pt;}
.w9{width:206.746667pt;}
.wa{width:322.173333pt;}
.wb{width:412.320000pt;}
.w3{width:417.853333pt;}
.wc{width:420.960000pt;}
.w8{width:489.920000pt;}
.w7{width:550.560000pt;}
.w6{width:561.440000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x1c{left:8.704000pt;}
.x8{left:10.080000pt;}
.x2c{left:14.784000pt;}
.x24{left:15.776000pt;}
.x6{left:19.840000pt;}
.x9{left:24.000000pt;}
.x2b{left:39.106667pt;}
.x7{left:41.920000pt;}
.x1d{left:51.906667pt;}
.x37{left:56.573333pt;}
.x38{left:58.426667pt;}
.x2{left:59.514667pt;}
.x2e{left:60.546667pt;}
.x17{left:62.693333pt;}
.x25{left:65.666667pt;}
.x20{left:68.826667pt;}
.x29{left:79.933333pt;}
.x2d{left:81.346667pt;}
.x3c{left:86.426667pt;}
.x3d{left:89.786667pt;}
.x1{left:96.032000pt;}
.x15{left:120.031988pt;}
.xa{left:123.231988pt;}
.xf{left:124.831988pt;}
.x2f{left:132.352000pt;}
.x41{left:133.786655pt;}
.x18{left:136.253333pt;}
.x21{left:138.746667pt;}
.x36{left:140.666667pt;}
.x13{left:144.026655pt;}
.x35{left:150.053333pt;}
.x3b{left:158.466667pt;}
.x2a{left:163.773333pt;}
.x3{left:169.626667pt;}
.x34{left:173.253333pt;}
.x3a{left:185.760000pt;}
.x3e{left:187.706667pt;}
.x32{left:189.760000pt;}
.x1e{left:199.106667pt;}
.xb{left:209.786655pt;}
.x12{left:243.746655pt;}
.xe{left:245.506655pt;}
.x33{left:252.666667pt;}
.x22{left:278.560000pt;}
.x19{left:283.386667pt;}
.x3f{left:316.066667pt;}
.xd{left:317.986655pt;}
.x11{left:330.626655pt;}
.x10{left:334.466655pt;}
.x30{left:339.746667pt;}
.x23{left:348.480000pt;}
.x1a{left:356.960000pt;}
.xc{left:396.893322pt;}
.x26{left:408.093333pt;}
.x1b{left:422.853333pt;}
.x40{left:461.533333pt;}
.x27{left:468.226667pt;}
.x28{left:586.053322pt;}
.x5{left:587.493333pt;}
.x31{left:603.973322pt;}
.x39{left:607.973322pt;}
.x1f{left:648.133322pt;}
.x16{left:658.079988pt;}
.x14{left:698.079988pt;}
}




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