
    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_def5e47902f53ea37593f148.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_87ce9441deaa9aa923763427.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_0017159065ffba4fcd966a47.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_86f7131df178d84ddbd1e984.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.118164;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_e21a087e1c85590329aca789.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.118164;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_9370d44980aa9da58151d8f8.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.096680;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_99aac86434913688f841a377.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.096680;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_a5037216b44869bcda3c93cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f01d52f0d2fd2d239bac192e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_59cffd70e9f07df96c965b91.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3cbc87d7d8fd38f9da374908.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.lse{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.576000px;}
.ls13{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.349200px;}
.ls15{letter-spacing:-0.334200px;}
.ls17{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.172800px;}
.ls16{letter-spacing:-0.164400px;}
.lsd{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.097800px;}
.ls2{letter-spacing:-0.088800px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.027360px;}
.ls10{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.361200px;}
.lsa{letter-spacing:0.535800px;}
.ls8{letter-spacing:0.547200px;}
.ls6{letter-spacing:0.740880px;}
.ls5{letter-spacing:1.080000px;}
.ls7{letter-spacing:37.440000px;}
.ls14{letter-spacing:56.304000px;}
.ls11{letter-spacing:116.784000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(238,236,225),0 0.015em rgb(238,236,225),0.015em 0 rgb(238,236,225),0 -0.015em  rgb(238,236,225);}
.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(238,236,225);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-72.000000px;}
.ws2{word-spacing:-21.421200px;}
.ws3{word-spacing:-21.060000px;}
.ws1{word-spacing:-20.971200px;}
.ws7{word-spacing:-18.183600px;}
.wsc{word-spacing:-15.984000px;}
.ws9{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.696000px;}
.ws10{word-spacing:-15.552000px;}
.wsb{word-spacing:-15.480000px;}
.wse{word-spacing:-14.572800px;}
.wsf{word-spacing:-14.408400px;}
.wsd{word-spacing:-14.238600px;}
.ws5{word-spacing:-13.174560px;}
.ws6{word-spacing:-13.049400px;}
.ws0{word-spacing:-0.072000px;}
.ws4{word-spacing:0.000000px;}
._25{margin-left:-5.004720px;}
._d{margin-left:-3.659760px;}
._6{margin-left:-2.390400px;}
._0{margin-left:-1.236240px;}
._3{width:1.434240px;}
._7{width:2.884080px;}
._9{width:4.584000px;}
._c{width:6.451200px;}
._5{width:7.696560px;}
._4{width:9.023760px;}
._2{width:10.995600px;}
._10{width:12.517200px;}
._14{width:13.536000px;}
._13{width:14.554800px;}
._15{width:17.136000px;}
._24{width:18.221760px;}
._19{width:19.296000px;}
._18{width:20.448000px;}
._11{width:22.104000px;}
._12{width:23.364240px;}
._22{width:24.556800px;}
._1d{width:26.208000px;}
._1e{width:27.360000px;}
._2d{width:28.418400px;}
._17{width:29.520000px;}
._16{width:30.600000px;}
._21{width:31.626000px;}
._23{width:33.552000px;}
._29{width:35.100000px;}
._28{width:36.624000px;}
._e{width:37.872000px;}
._f{width:38.880000px;}
._1a{width:40.464000px;}
._1b{width:41.693760px;}
._27{width:43.704000px;}
._a{width:45.000000px;}
._b{width:46.080000px;}
._20{width:48.168000px;}
._1f{width:50.112000px;}
._34{width:51.600960px;}
._2e{width:53.058240px;}
._31{width:56.281680px;}
._2a{width:58.320000px;}
._2b{width:59.328000px;}
._2c{width:60.756000px;}
._46{width:62.750880px;}
._3b{width:64.054080px;}
._26{width:66.240000px;}
._30{width:69.618240px;}
._2f{width:70.678080px;}
._36{width:71.737920px;}
._51{width:73.368000px;}
._52{width:74.427840px;}
._1c{width:78.312000px;}
._35{width:83.064960px;}
._39{width:89.159040px;}
._3e{width:92.934720px;}
._41{width:94.590720px;}
._40{width:95.650560px;}
._50{width:98.004240px;}
._3d{width:101.413440px;}
._4d{width:106.992000px;}
._4e{width:108.000000px;}
._38{width:110.753280px;}
._42{width:112.276800px;}
._44{width:114.109200px;}
._4f{width:120.000000px;}
._48{width:122.040000px;}
._49{width:123.048000px;}
._32{width:124.200000px;}
._3a{width:126.452160px;}
._4c{width:136.428240px;}
._8{width:141.930000px;}
._3c{width:161.095680px;}
._33{width:175.072320px;}
._43{width:199.647360px;}
._3f{width:226.872000px;}
._4a{width:294.552000px;}
._4b{width:295.776000px;}
._37{width:355.841280px;}
._45{width:372.268800px;}
._47{width:973.524000px;}
._1{width:1260.300000px;}
.fc3{color:transparent;}
.fc2{color:rgb(238,236,225);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y19{bottom:3.240000px;}
.ycf{bottom:3.600000px;}
.ycc{bottom:3.780000px;}
.y4{bottom:12.060000px;}
.ye0{bottom:13.320000px;}
.yeb{bottom:13.500000px;}
.yb{bottom:16.740000px;}
.y18{bottom:20.880000px;}
.yd1{bottom:23.040000px;}
.ye{bottom:30.600000px;}
.ye2{bottom:32.760000px;}
.y17{bottom:38.340000px;}
.ya{bottom:41.070000px;}
.ye4{bottom:42.300000px;}
.ye7{bottom:42.480000px;}
.ye5{bottom:52.020000px;}
.yea{bottom:52.200000px;}
.y7{bottom:52.560000px;}
.y16{bottom:55.980000px;}
.ye3{bottom:61.740000px;}
.yee{bottom:61.770000px;}
.y9{bottom:65.370000px;}
.ye9{bottom:71.460000px;}
.y15{bottom:73.656000px;}
.yf0{bottom:81.000000px;}
.yed{bottom:81.030000px;}
.ye8{bottom:81.180000px;}
.y14{bottom:91.116000px;}
.y13{bottom:108.756000px;}
.y12{bottom:126.396000px;}
.y11{bottom:143.856000px;}
.y10{bottom:161.490000px;}
.y65{bottom:180.390000px;}
.yc4{bottom:180.570000px;}
.yd2{bottom:181.650000px;}
.y42{bottom:187.590000px;}
.y120{bottom:190.830000px;}
.ya2{bottom:191.010000px;}
.yd0{bottom:198.030000px;}
.y64{bottom:201.450000px;}
.y84{bottom:201.630000px;}
.yc1{bottom:204.330000px;}
.yf6{bottom:207.030000px;}
.y11f{bottom:212.070000px;}
.yc3{bottom:212.250000px;}
.y41{bottom:219.270000px;}
.y63{bottom:222.510000px;}
.ya1{bottom:222.690000px;}
.yd{bottom:222.870000px;}
.y11e{bottom:233.130000px;}
.y83{bottom:233.310000px;}
.yc0{bottom:235.830000px;}
.yce{bottom:237.450000px;}
.yf5{bottom:238.530000px;}
.y62{bottom:243.750000px;}
.yc2{bottom:243.930000px;}
.y40{bottom:250.950000px;}
.y11d{bottom:254.190000px;}
.ya0{bottom:254.370000px;}
.ycd{bottom:257.430000px;}
.y61{bottom:264.810000px;}
.y82{bottom:264.990000px;}
.ybf{bottom:267.510000px;}
.yf4{bottom:270.210000px;}
.y11c{bottom:275.250000px;}
.y9b{bottom:275.430000px;}
.ycb{bottom:277.590000px;}
.y3f{bottom:282.630000px;}
.y9f{bottom:286.050000px;}
.y11b{bottom:296.490000px;}
.y60{bottom:296.670000px;}
.ybe{bottom:299.190000px;}
.yca{bottom:301.350000px;}
.yf3{bottom:301.890000px;}
.y9a{bottom:307.110000px;}
.y3e{bottom:314.130000px;}
.y5f{bottom:317.550000px;}
.y9e{bottom:317.730000px;}
.yc9{bottom:320.790000px;}
.yf2{bottom:322.770000px;}
.y81{bottom:328.350000px;}
.ybd{bottom:330.870000px;}
.y11a{bottom:338.655000px;}
.y99{bottom:338.835000px;}
.yc8{bottom:340.095000px;}
.yf1{bottom:343.695000px;}
.y3d{bottom:345.855000px;}
.y5e{bottom:349.455000px;}
.y119{bottom:359.715000px;}
.y80{bottom:359.895000px;}
.yef{bottom:360.075000px;}
.ybc{bottom:362.595000px;}
.y9d{bottom:370.335000px;}
.y98{bottom:370.515000px;}
.y3c{bottom:377.535000px;}
.y118{bottom:380.955000px;}
.y5d{bottom:381.135000px;}
.y7f{bottom:391.575000px;}
.ybb{bottom:394.275000px;}
.y117{bottom:402.015000px;}
.y97{bottom:402.195000px;}
.y3b{bottom:409.215000px;}
.y5c{bottom:412.635000px;}
.yf9{bottom:423.075000px;}
.y7e{bottom:423.255000px;}
.yba{bottom:425.955000px;}
.y96{bottom:433.875000px;}
.y3a{bottom:440.895000px;}
.yf8{bottom:444.135000px;}
.y5b{bottom:444.315000px;}
.y7d{bottom:454.935000px;}
.yb9{bottom:457.455000px;}
.yf7{bottom:465.375000px;}
.y95{bottom:465.555000px;}
.y39{bottom:472.575000px;}
.y5a{bottom:475.995000px;}
.y116{bottom:486.435000px;}
.y7c{bottom:486.615000px;}
.yb8{bottom:489.135000px;}
.y94{bottom:497.055000px;}
.yc{bottom:502.995000px;}
.y38{bottom:504.075000px;}
.y115{bottom:507.495000px;}
.y59{bottom:507.675000px;}
.yb7{bottom:510.195000px;}
.y7b{bottom:518.295000px;}
.y37{bottom:525.135000px;}
.y114{bottom:528.555000px;}
.y93{bottom:528.735000px;}
.yb6{bottom:531.255000px;}
.y58{bottom:539.355000px;}
.y36{bottom:546.195000px;}
.y113{bottom:549.795000px;}
.y7a{bottom:549.975000px;}
.yb5{bottom:552.315000px;}
.yec{bottom:555.015000px;}
.y92{bottom:560.415000px;}
.y35{bottom:567.255000px;}
.y112{bottom:570.855000px;}
.y57{bottom:571.035000px;}
.y79{bottom:581.475000px;}
.yb4{bottom:584.175000px;}
.y34{bottom:588.315000px;}
.y111{bottom:591.915000px;}
.y91{bottom:592.095000px;}
.y56{bottom:602.715000px;}
.y33{bottom:609.585000px;}
.y110{bottom:613.005000px;}
.y78{bottom:613.185000px;}
.yb3{bottom:615.885000px;}
.y90{bottom:623.805000px;}
.y32{bottom:630.645000px;}
.y10f{bottom:634.065000px;}
.y55{bottom:634.245000px;}
.yc7{bottom:644.685000px;}
.y77{bottom:644.865000px;}
.yb2{bottom:647.565000px;}
.y31{bottom:651.705000px;}
.ye6{bottom:652.425000px;}
.y10e{bottom:655.305000px;}
.y8f{bottom:655.485000px;}
.yc6{bottom:665.745000px;}
.y54{bottom:665.925000px;}
.y30{bottom:672.765000px;}
.y9c{bottom:676.365000px;}
.y76{bottom:676.545000px;}
.yb1{bottom:679.065000px;}
.yc5{bottom:686.985000px;}
.y8e{bottom:687.165000px;}
.y2f{bottom:694.005000px;}
.y10d{bottom:697.425000px;}
.y53{bottom:697.605000px;}
.y75{bottom:708.225000px;}
.yb0{bottom:710.745000px;}
.y2e{bottom:715.065000px;}
.y10c{bottom:718.485000px;}
.y8d{bottom:718.665000px;}
.y52{bottom:729.285000px;}
.y2d{bottom:736.125000px;}
.y10b{bottom:739.725000px;}
.y74{bottom:739.905000px;}
.yaf{bottom:742.425000px;}
.ye1{bottom:749.985000px;}
.y8c{bottom:750.345000px;}
.y2c{bottom:757.185000px;}
.y10a{bottom:760.785000px;}
.y51{bottom:760.965000px;}
.y73{bottom:771.405000px;}
.yae{bottom:774.105000px;}
.y2b{bottom:778.425000px;}
.y109{bottom:781.845000px;}
.y8b{bottom:782.025000px;}
.y50{bottom:792.645000px;}
.y2a{bottom:799.485000px;}
.y108{bottom:802.905000px;}
.y72{bottom:803.085000px;}
.yad{bottom:805.785000px;}
.y8a{bottom:813.705000px;}
.y29{bottom:820.545000px;}
.y107{bottom:824.145000px;}
.y4f{bottom:824.325000px;}
.ydf{bottom:828.105000px;}
.y71{bottom:834.765000px;}
.yac{bottom:837.285000px;}
.y28{bottom:841.605000px;}
.y106{bottom:845.205000px;}
.y89{bottom:845.385000px;}
.y4e{bottom:855.825000px;}
.y27{bottom:862.845000px;}
.y105{bottom:866.265000px;}
.y70{bottom:866.445000px;}
.yab{bottom:870.045000px;}
.yde{bottom:871.350000px;}
.y4d{bottom:876.930000px;}
.y88{bottom:877.110000px;}
.y26{bottom:883.950000px;}
.y104{bottom:887.370000px;}
.ydd{bottom:890.610000px;}
.y4c{bottom:897.990000px;}
.y6f{bottom:898.170000px;}
.yaa{bottom:902.670000px;}
.y3{bottom:903.390000px;}
.y25{bottom:905.010000px;}
.y103{bottom:908.610000px;}
.y87{bottom:908.790000px;}
.ydc{bottom:910.230000px;}
.y4b{bottom:919.050000px;}
.y24{bottom:926.070000px;}
.y102{bottom:929.670000px;}
.y6e{bottom:929.850000px;}
.ya9{bottom:935.250000px;}
.y86{bottom:940.290000px;}
.ydb{bottom:942.090000px;}
.y23{bottom:947.130000px;}
.y101{bottom:950.730000px;}
.y4a{bottom:950.910000px;}
.y6d{bottom:961.530000px;}
.ya8{bottom:968.010000px;}
.y22{bottom:968.370000px;}
.y49{bottom:971.790000px;}
.y85{bottom:971.970000px;}
.yda{bottom:973.770000px;}
.y21{bottom:989.430000px;}
.y100{bottom:992.850000px;}
.y6c{bottom:993.030000px;}
.ya7{bottom:999.690000px;}
.y48{bottom:1003.650000px;}
.yd9{bottom:1005.450000px;}
.y20{bottom:1011.390000px;}
.yff{bottom:1014.090000px;}
.y6b{bottom:1024.710000px;}
.ya6{bottom:1032.270000px;}
.yfe{bottom:1035.150000px;}
.y47{bottom:1035.330000px;}
.y1f{bottom:1035.870000px;}
.yd8{bottom:1037.130000px;}
.yfd{bottom:1056.210000px;}
.y6a{bottom:1056.390000px;}
.y1e{bottom:1060.530000px;}
.ya5{bottom:1064.850000px;}
.y46{bottom:1067.010000px;}
.yd7{bottom:1068.810000px;}
.yfc{bottom:1077.270000px;}
.y1d{bottom:1085.190000px;}
.y69{bottom:1088.070000px;}
.ya4{bottom:1097.610000px;}
.yfb{bottom:1098.510000px;}
.y45{bottom:1098.690000px;}
.yd6{bottom:1100.310000px;}
.y8{bottom:1107.870000px;}
.y1c{bottom:1109.850000px;}
.yfa{bottom:1119.570000px;}
.y68{bottom:1119.750000px;}
.yd5{bottom:1121.370000px;}
.ya3{bottom:1129.110000px;}
.y44{bottom:1130.190000px;}
.y1b{bottom:1134.510000px;}
.y67{bottom:1140.660000px;}
.y6{bottom:1141.380000px;}
.yd4{bottom:1142.460000px;}
.y1a{bottom:1159.020000px;}
.y66{bottom:1161.720000px;}
.y43{bottom:1161.900000px;}
.y5{bottom:1162.260000px;}
.yd3{bottom:1163.160000px;}
.yf{bottom:1183.320000px;}
.y2{bottom:1184.040000px;}
.y1{bottom:1204.020000px;}
.h12{height:19.260000px;}
.h11{height:19.440000px;}
.h4{height:29.160000px;}
.h13{height:38.700000px;}
.hb{height:52.465078px;}
.hf{height:57.636562px;}
.h10{height:58.154062px;}
.h6{height:62.648438px;}
.he{height:63.210938px;}
.h3{height:65.884219px;}
.hc{height:73.298672px;}
.hd{height:73.956797px;}
.h2{height:74.004654px;}
.h5{height:74.953125px;}
.h8{height:76.507031px;}
.h14{height:77.400000px;}
.h17{height:96.660000px;}
.h16{height:96.696000px;}
.h15{height:96.840000px;}
.ha{height:98.426190px;}
.h7{height:106.416000px;}
.h9{height:244.650000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:39.996000px;}
.w8{width:88.200000px;}
.w9{width:172.830000px;}
.wa{width:180.570000px;}
.wb{width:214.770000px;}
.w7{width:306.930000px;}
.w6{width:318.135000px;}
.w5{width:717.090000px;}
.w4{width:892.979972px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x21{left:7.734000px;}
.x9{left:10.800000px;}
.x5{left:14.579972px;}
.x29{left:16.740000px;}
.x6{left:22.499972px;}
.x27{left:37.260000px;}
.x2b{left:38.874000px;}
.x1{left:42.479987px;}
.x25{left:47.520000px;}
.x8{left:51.660000px;}
.x2a{left:63.180000px;}
.x23{left:117.396000px;}
.x3{left:127.655987px;}
.xf{left:145.115987px;}
.x20{left:149.256000px;}
.x1f{left:153.749987px;}
.xe{left:162.389987px;}
.xc{left:164.009987px;}
.x2c{left:170.129987px;}
.x1e{left:180.749987px;}
.xd{left:183.269987px;}
.x24{left:206.310000px;}
.x13{left:243.209987px;}
.x16{left:248.069987px;}
.x14{left:254.909987px;}
.x17{left:260.309987px;}
.x12{left:271.289987px;}
.x1b{left:288.434987px;}
.x7{left:291.674972px;}
.x18{left:301.034987px;}
.x11{left:305.894987px;}
.x19{left:310.214987px;}
.x1a{left:343.694987px;}
.xa{left:351.615000px;}
.x15{left:358.994987px;}
.x26{left:379.875000px;}
.x1d{left:407.054987px;}
.x10{left:412.454987px;}
.x1c{left:416.234987px;}
.xb{left:451.874987px;}
.x22{left:468.105000px;}
.x28{left:561.165000px;}
.x2{left:825.450000px;}
.x4{left:897.839987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.512000pt;}
.ls13{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.310400pt;}
.ls15{letter-spacing:-0.297067pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.153600pt;}
.ls16{letter-spacing:-0.146133pt;}
.lsd{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.086933pt;}
.ls2{letter-spacing:-0.078933pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024320pt;}
.ls10{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.321067pt;}
.lsa{letter-spacing:0.476267pt;}
.ls8{letter-spacing:0.486400pt;}
.ls6{letter-spacing:0.658560pt;}
.ls5{letter-spacing:0.960000pt;}
.ls7{letter-spacing:33.280000pt;}
.ls14{letter-spacing:50.048000pt;}
.ls11{letter-spacing:103.808000pt;}
.wsa{word-spacing:-64.000000pt;}
.ws2{word-spacing:-19.041067pt;}
.ws3{word-spacing:-18.720000pt;}
.ws1{word-spacing:-18.641067pt;}
.ws7{word-spacing:-16.163200pt;}
.wsc{word-spacing:-14.208000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.952000pt;}
.ws10{word-spacing:-13.824000pt;}
.wsb{word-spacing:-13.760000pt;}
.wse{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.807467pt;}
.wsd{word-spacing:-12.656533pt;}
.ws5{word-spacing:-11.710720pt;}
.ws6{word-spacing:-11.599467pt;}
.ws0{word-spacing:-0.064000pt;}
.ws4{word-spacing:0.000000pt;}
._25{margin-left:-4.448640pt;}
._d{margin-left:-3.253120pt;}
._6{margin-left:-2.124800pt;}
._0{margin-left:-1.098880pt;}
._3{width:1.274880pt;}
._7{width:2.563627pt;}
._9{width:4.074667pt;}
._c{width:5.734400pt;}
._5{width:6.841387pt;}
._4{width:8.021120pt;}
._2{width:9.773867pt;}
._10{width:11.126400pt;}
._14{width:12.032000pt;}
._13{width:12.937600pt;}
._15{width:15.232000pt;}
._24{width:16.197120pt;}
._19{width:17.152000pt;}
._18{width:18.176000pt;}
._11{width:19.648000pt;}
._12{width:20.768213pt;}
._22{width:21.828267pt;}
._1d{width:23.296000pt;}
._1e{width:24.320000pt;}
._2d{width:25.260800pt;}
._17{width:26.240000pt;}
._16{width:27.200000pt;}
._21{width:28.112000pt;}
._23{width:29.824000pt;}
._29{width:31.200000pt;}
._28{width:32.554667pt;}
._e{width:33.664000pt;}
._f{width:34.560000pt;}
._1a{width:35.968000pt;}
._1b{width:37.061120pt;}
._27{width:38.848000pt;}
._a{width:40.000000pt;}
._b{width:40.960000pt;}
._20{width:42.816000pt;}
._1f{width:44.544000pt;}
._34{width:45.867520pt;}
._2e{width:47.162880pt;}
._31{width:50.028160pt;}
._2a{width:51.840000pt;}
._2b{width:52.736000pt;}
._2c{width:54.005333pt;}
._46{width:55.778560pt;}
._3b{width:56.936960pt;}
._26{width:58.880000pt;}
._30{width:61.882880pt;}
._2f{width:62.824960pt;}
._36{width:63.767040pt;}
._51{width:65.216000pt;}
._52{width:66.158080pt;}
._1c{width:69.610667pt;}
._35{width:73.835520pt;}
._39{width:79.252480pt;}
._3e{width:82.608640pt;}
._41{width:84.080640pt;}
._40{width:85.022720pt;}
._50{width:87.114880pt;}
._3d{width:90.145280pt;}
._4d{width:95.104000pt;}
._4e{width:96.000000pt;}
._38{width:98.447360pt;}
._42{width:99.801600pt;}
._44{width:101.430400pt;}
._4f{width:106.666667pt;}
._48{width:108.480000pt;}
._49{width:109.376000pt;}
._32{width:110.400000pt;}
._3a{width:112.401920pt;}
._4c{width:121.269547pt;}
._8{width:126.160000pt;}
._3c{width:143.196160pt;}
._33{width:155.619840pt;}
._43{width:177.464320pt;}
._3f{width:201.664000pt;}
._4a{width:261.824000pt;}
._4b{width:262.912000pt;}
._37{width:316.303360pt;}
._45{width:330.905600pt;}
._47{width:865.354667pt;}
._1{width:1120.266667pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:2.880000pt;}
.ycf{bottom:3.200000pt;}
.ycc{bottom:3.360000pt;}
.y4{bottom:10.720000pt;}
.ye0{bottom:11.840000pt;}
.yeb{bottom:12.000000pt;}
.yb{bottom:14.880000pt;}
.y18{bottom:18.560000pt;}
.yd1{bottom:20.480000pt;}
.ye{bottom:27.200000pt;}
.ye2{bottom:29.120000pt;}
.y17{bottom:34.080000pt;}
.ya{bottom:36.506667pt;}
.ye4{bottom:37.600000pt;}
.ye7{bottom:37.760000pt;}
.ye5{bottom:46.240000pt;}
.yea{bottom:46.400000pt;}
.y7{bottom:46.720000pt;}
.y16{bottom:49.760000pt;}
.ye3{bottom:54.880000pt;}
.yee{bottom:54.906667pt;}
.y9{bottom:58.106667pt;}
.ye9{bottom:63.520000pt;}
.y15{bottom:65.472000pt;}
.yf0{bottom:72.000000pt;}
.yed{bottom:72.026667pt;}
.ye8{bottom:72.160000pt;}
.y14{bottom:80.992000pt;}
.y13{bottom:96.672000pt;}
.y12{bottom:112.352000pt;}
.y11{bottom:127.872000pt;}
.y10{bottom:143.546667pt;}
.y65{bottom:160.346667pt;}
.yc4{bottom:160.506667pt;}
.yd2{bottom:161.466667pt;}
.y42{bottom:166.746667pt;}
.y120{bottom:169.626667pt;}
.ya2{bottom:169.786667pt;}
.yd0{bottom:176.026667pt;}
.y64{bottom:179.066667pt;}
.y84{bottom:179.226667pt;}
.yc1{bottom:181.626667pt;}
.yf6{bottom:184.026667pt;}
.y11f{bottom:188.506667pt;}
.yc3{bottom:188.666667pt;}
.y41{bottom:194.906667pt;}
.y63{bottom:197.786667pt;}
.ya1{bottom:197.946667pt;}
.yd{bottom:198.106667pt;}
.y11e{bottom:207.226667pt;}
.y83{bottom:207.386667pt;}
.yc0{bottom:209.626667pt;}
.yce{bottom:211.066667pt;}
.yf5{bottom:212.026667pt;}
.y62{bottom:216.666667pt;}
.yc2{bottom:216.826667pt;}
.y40{bottom:223.066667pt;}
.y11d{bottom:225.946667pt;}
.ya0{bottom:226.106667pt;}
.ycd{bottom:228.826667pt;}
.y61{bottom:235.386667pt;}
.y82{bottom:235.546667pt;}
.ybf{bottom:237.786667pt;}
.yf4{bottom:240.186667pt;}
.y11c{bottom:244.666667pt;}
.y9b{bottom:244.826667pt;}
.ycb{bottom:246.746667pt;}
.y3f{bottom:251.226667pt;}
.y9f{bottom:254.266667pt;}
.y11b{bottom:263.546667pt;}
.y60{bottom:263.706667pt;}
.ybe{bottom:265.946667pt;}
.yca{bottom:267.866667pt;}
.yf3{bottom:268.346667pt;}
.y9a{bottom:272.986667pt;}
.y3e{bottom:279.226667pt;}
.y5f{bottom:282.266667pt;}
.y9e{bottom:282.426667pt;}
.yc9{bottom:285.146667pt;}
.yf2{bottom:286.906667pt;}
.y81{bottom:291.866667pt;}
.ybd{bottom:294.106667pt;}
.y11a{bottom:301.026667pt;}
.y99{bottom:301.186667pt;}
.yc8{bottom:302.306667pt;}
.yf1{bottom:305.506667pt;}
.y3d{bottom:307.426667pt;}
.y5e{bottom:310.626667pt;}
.y119{bottom:319.746667pt;}
.y80{bottom:319.906667pt;}
.yef{bottom:320.066667pt;}
.ybc{bottom:322.306667pt;}
.y9d{bottom:329.186667pt;}
.y98{bottom:329.346667pt;}
.y3c{bottom:335.586667pt;}
.y118{bottom:338.626667pt;}
.y5d{bottom:338.786667pt;}
.y7f{bottom:348.066667pt;}
.ybb{bottom:350.466667pt;}
.y117{bottom:357.346667pt;}
.y97{bottom:357.506667pt;}
.y3b{bottom:363.746667pt;}
.y5c{bottom:366.786667pt;}
.yf9{bottom:376.066667pt;}
.y7e{bottom:376.226667pt;}
.yba{bottom:378.626667pt;}
.y96{bottom:385.666667pt;}
.y3a{bottom:391.906667pt;}
.yf8{bottom:394.786667pt;}
.y5b{bottom:394.946667pt;}
.y7d{bottom:404.386667pt;}
.yb9{bottom:406.626667pt;}
.yf7{bottom:413.666667pt;}
.y95{bottom:413.826667pt;}
.y39{bottom:420.066667pt;}
.y5a{bottom:423.106667pt;}
.y116{bottom:432.386667pt;}
.y7c{bottom:432.546667pt;}
.yb8{bottom:434.786667pt;}
.y94{bottom:441.826667pt;}
.yc{bottom:447.106667pt;}
.y38{bottom:448.066667pt;}
.y115{bottom:451.106667pt;}
.y59{bottom:451.266667pt;}
.yb7{bottom:453.506667pt;}
.y7b{bottom:460.706667pt;}
.y37{bottom:466.786667pt;}
.y114{bottom:469.826667pt;}
.y93{bottom:469.986667pt;}
.yb6{bottom:472.226667pt;}
.y58{bottom:479.426667pt;}
.y36{bottom:485.506667pt;}
.y113{bottom:488.706667pt;}
.y7a{bottom:488.866667pt;}
.yb5{bottom:490.946667pt;}
.yec{bottom:493.346667pt;}
.y92{bottom:498.146667pt;}
.y35{bottom:504.226667pt;}
.y112{bottom:507.426667pt;}
.y57{bottom:507.586667pt;}
.y79{bottom:516.866667pt;}
.yb4{bottom:519.266667pt;}
.y34{bottom:522.946667pt;}
.y111{bottom:526.146667pt;}
.y91{bottom:526.306667pt;}
.y56{bottom:535.746667pt;}
.y33{bottom:541.853333pt;}
.y110{bottom:544.893333pt;}
.y78{bottom:545.053333pt;}
.yb3{bottom:547.453333pt;}
.y90{bottom:554.493333pt;}
.y32{bottom:560.573333pt;}
.y10f{bottom:563.613333pt;}
.y55{bottom:563.773333pt;}
.yc7{bottom:573.053333pt;}
.y77{bottom:573.213333pt;}
.yb2{bottom:575.613333pt;}
.y31{bottom:579.293333pt;}
.ye6{bottom:579.933333pt;}
.y10e{bottom:582.493333pt;}
.y8f{bottom:582.653333pt;}
.yc6{bottom:591.773333pt;}
.y54{bottom:591.933333pt;}
.y30{bottom:598.013333pt;}
.y9c{bottom:601.213333pt;}
.y76{bottom:601.373333pt;}
.yb1{bottom:603.613333pt;}
.yc5{bottom:610.653333pt;}
.y8e{bottom:610.813333pt;}
.y2f{bottom:616.893333pt;}
.y10d{bottom:619.933333pt;}
.y53{bottom:620.093333pt;}
.y75{bottom:629.533333pt;}
.yb0{bottom:631.773333pt;}
.y2e{bottom:635.613333pt;}
.y10c{bottom:638.653333pt;}
.y8d{bottom:638.813333pt;}
.y52{bottom:648.253333pt;}
.y2d{bottom:654.333333pt;}
.y10b{bottom:657.533333pt;}
.y74{bottom:657.693333pt;}
.yaf{bottom:659.933333pt;}
.ye1{bottom:666.653333pt;}
.y8c{bottom:666.973333pt;}
.y2c{bottom:673.053333pt;}
.y10a{bottom:676.253333pt;}
.y51{bottom:676.413333pt;}
.y73{bottom:685.693333pt;}
.yae{bottom:688.093333pt;}
.y2b{bottom:691.933333pt;}
.y109{bottom:694.973333pt;}
.y8b{bottom:695.133333pt;}
.y50{bottom:704.573333pt;}
.y2a{bottom:710.653333pt;}
.y108{bottom:713.693333pt;}
.y72{bottom:713.853333pt;}
.yad{bottom:716.253333pt;}
.y8a{bottom:723.293333pt;}
.y29{bottom:729.373333pt;}
.y107{bottom:732.573333pt;}
.y4f{bottom:732.733333pt;}
.ydf{bottom:736.093333pt;}
.y71{bottom:742.013333pt;}
.yac{bottom:744.253333pt;}
.y28{bottom:748.093333pt;}
.y106{bottom:751.293333pt;}
.y89{bottom:751.453333pt;}
.y4e{bottom:760.733333pt;}
.y27{bottom:766.973333pt;}
.y105{bottom:770.013333pt;}
.y70{bottom:770.173333pt;}
.yab{bottom:773.373333pt;}
.yde{bottom:774.533333pt;}
.y4d{bottom:779.493333pt;}
.y88{bottom:779.653333pt;}
.y26{bottom:785.733333pt;}
.y104{bottom:788.773333pt;}
.ydd{bottom:791.653333pt;}
.y4c{bottom:798.213333pt;}
.y6f{bottom:798.373333pt;}
.yaa{bottom:802.373333pt;}
.y3{bottom:803.013333pt;}
.y25{bottom:804.453333pt;}
.y103{bottom:807.653333pt;}
.y87{bottom:807.813333pt;}
.ydc{bottom:809.093333pt;}
.y4b{bottom:816.933333pt;}
.y24{bottom:823.173333pt;}
.y102{bottom:826.373333pt;}
.y6e{bottom:826.533333pt;}
.ya9{bottom:831.333333pt;}
.y86{bottom:835.813333pt;}
.ydb{bottom:837.413333pt;}
.y23{bottom:841.893333pt;}
.y101{bottom:845.093333pt;}
.y4a{bottom:845.253333pt;}
.y6d{bottom:854.693333pt;}
.ya8{bottom:860.453333pt;}
.y22{bottom:860.773333pt;}
.y49{bottom:863.813333pt;}
.y85{bottom:863.973333pt;}
.yda{bottom:865.573333pt;}
.y21{bottom:879.493333pt;}
.y100{bottom:882.533333pt;}
.y6c{bottom:882.693333pt;}
.ya7{bottom:888.613333pt;}
.y48{bottom:892.133333pt;}
.yd9{bottom:893.733333pt;}
.y20{bottom:899.013333pt;}
.yff{bottom:901.413333pt;}
.y6b{bottom:910.853333pt;}
.ya6{bottom:917.573333pt;}
.yfe{bottom:920.133333pt;}
.y47{bottom:920.293333pt;}
.y1f{bottom:920.773333pt;}
.yd8{bottom:921.893333pt;}
.yfd{bottom:938.853333pt;}
.y6a{bottom:939.013333pt;}
.y1e{bottom:942.693333pt;}
.ya5{bottom:946.533333pt;}
.y46{bottom:948.453333pt;}
.yd7{bottom:950.053333pt;}
.yfc{bottom:957.573333pt;}
.y1d{bottom:964.613333pt;}
.y69{bottom:967.173333pt;}
.ya4{bottom:975.653333pt;}
.yfb{bottom:976.453333pt;}
.y45{bottom:976.613333pt;}
.yd6{bottom:978.053333pt;}
.y8{bottom:984.773333pt;}
.y1c{bottom:986.533333pt;}
.yfa{bottom:995.173333pt;}
.y68{bottom:995.333333pt;}
.yd5{bottom:996.773333pt;}
.ya3{bottom:1003.653333pt;}
.y44{bottom:1004.613333pt;}
.y1b{bottom:1008.453333pt;}
.y67{bottom:1013.920000pt;}
.y6{bottom:1014.560000pt;}
.yd4{bottom:1015.520000pt;}
.y1a{bottom:1030.240000pt;}
.y66{bottom:1032.640000pt;}
.y43{bottom:1032.800000pt;}
.y5{bottom:1033.120000pt;}
.yd3{bottom:1033.920000pt;}
.yf{bottom:1051.840000pt;}
.y2{bottom:1052.480000pt;}
.y1{bottom:1070.240000pt;}
.h12{height:17.120000pt;}
.h11{height:17.280000pt;}
.h4{height:25.920000pt;}
.h13{height:34.400000pt;}
.hb{height:46.635625pt;}
.hf{height:51.232500pt;}
.h10{height:51.692500pt;}
.h6{height:55.687500pt;}
.he{height:56.187500pt;}
.h3{height:58.563750pt;}
.hc{height:65.154375pt;}
.hd{height:65.739375pt;}
.h2{height:65.781915pt;}
.h5{height:66.625000pt;}
.h8{height:68.006250pt;}
.h14{height:68.800000pt;}
.h17{height:85.920000pt;}
.h16{height:85.952000pt;}
.h15{height:86.080000pt;}
.ha{height:87.489947pt;}
.h7{height:94.592000pt;}
.h9{height:217.466667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:35.552000pt;}
.w8{width:78.400000pt;}
.w9{width:153.626667pt;}
.wa{width:160.506667pt;}
.wb{width:190.906667pt;}
.w7{width:272.826667pt;}
.w6{width:282.786667pt;}
.w5{width:637.413333pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x21{left:6.874667pt;}
.x9{left:9.600000pt;}
.x5{left:12.959976pt;}
.x29{left:14.880000pt;}
.x6{left:19.999976pt;}
.x27{left:33.120000pt;}
.x2b{left:34.554667pt;}
.x1{left:37.759988pt;}
.x25{left:42.240000pt;}
.x8{left:45.920000pt;}
.x2a{left:56.160000pt;}
.x23{left:104.352000pt;}
.x3{left:113.471988pt;}
.xf{left:128.991988pt;}
.x20{left:132.672000pt;}
.x1f{left:136.666655pt;}
.xe{left:144.346655pt;}
.xc{left:145.786655pt;}
.x2c{left:151.226655pt;}
.x1e{left:160.666655pt;}
.xd{left:162.906655pt;}
.x24{left:183.386667pt;}
.x13{left:216.186655pt;}
.x16{left:220.506655pt;}
.x14{left:226.586655pt;}
.x17{left:231.386655pt;}
.x12{left:241.146655pt;}
.x1b{left:256.386655pt;}
.x7{left:259.266642pt;}
.x18{left:267.586655pt;}
.x11{left:271.906655pt;}
.x19{left:275.746655pt;}
.x1a{left:305.506655pt;}
.xa{left:312.546667pt;}
.x15{left:319.106655pt;}
.x26{left:337.666667pt;}
.x1d{left:361.826655pt;}
.x10{left:366.626655pt;}
.x1c{left:369.986655pt;}
.xb{left:401.666655pt;}
.x22{left:416.093333pt;}
.x28{left:498.813333pt;}
.x2{left:733.733333pt;}
.x4{left:798.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; }
  