
    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_d940a98bb296dbac90b31395.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.079102;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_7de0f2f514f3c8bb42e9e9b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.079102;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_8e57f7cc58d506b14a1a63ca.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_16bc525a89f06ca2071e0a1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.079102;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3fd0c39c02a6a161850e29c5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.079102;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_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_11133066fb450c2572dfa457.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854004;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_a922ef2d1444be1e4567fbdc.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_6b3cb89c4bf7b68f73e3bc3a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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_188e3c61d05a8d41a7fe22d4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854004;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.636000px;}
.ls15{letter-spacing:-0.564600px;}
.ls17{letter-spacing:-0.538800px;}
.ls7{letter-spacing:-0.457800px;}
.ls23{letter-spacing:-0.250800px;}
.ls8{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.135600px;}
.ls12{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.066000px;}
.ls24{letter-spacing:-0.002880px;}
.ls1{letter-spacing:0.000000px;}
.ls1f{letter-spacing:0.083400px;}
.ls5{letter-spacing:0.083520px;}
.lsc{letter-spacing:0.144000px;}
.ls1b{letter-spacing:0.146880px;}
.ls19{letter-spacing:0.156960px;}
.ls20{letter-spacing:0.178800px;}
.ls9{letter-spacing:0.181200px;}
.ls4{letter-spacing:0.181440px;}
.ls1e{letter-spacing:0.238800px;}
.ls10{letter-spacing:0.262200px;}
.lse{letter-spacing:0.263520px;}
.ls14{letter-spacing:0.301440px;}
.ls1a{letter-spacing:0.313800px;}
.lsa{letter-spacing:3.941280px;}
.ls22{letter-spacing:37.001280px;}
.ls1c{letter-spacing:39.881280px;}
.ls18{letter-spacing:40.601280px;}
.ls1d{letter-spacing:49.985280px;}
.lsf{letter-spacing:52.841280px;}
.lsd{letter-spacing:55.386720px;}
.ls6{letter-spacing:59.345280px;}
.lsb{letter-spacing:64.002720px;}
.ls16{letter-spacing:64.026720px;}
.ls3{letter-spacing:89.561280px;}
.ls2{letter-spacing:198.181440px;}
.ls0{letter-spacing:845.741280px;}
.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;}
}
.ws4{word-spacing:-66.240000px;}
.ws5{word-spacing:-59.760000px;}
.wsa{word-spacing:-18.132360px;}
.ws6{word-spacing:-18.080760px;}
.wsb{word-spacing:-18.057360px;}
.wsc{word-spacing:-17.997360px;}
.ws1{word-spacing:-17.818560px;}
.wsf{word-spacing:-17.815680px;}
.ws7{word-spacing:-17.752560px;}
.ws8{word-spacing:-17.709360px;}
.wsd{word-spacing:-17.682960px;}
.ws3{word-spacing:-17.602560px;}
.wse{word-spacing:-17.567760px;}
.ws2{word-spacing:-17.360760px;}
.ws9{word-spacing:-17.253960px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-74.636160px;}
._0{margin-left:-7.920000px;}
._3{margin-left:-6.534000px;}
._4{margin-left:-4.752000px;}
._1{margin-left:-3.168000px;}
._2{margin-left:-1.782000px;}
._a{width:1.031760px;}
._26{width:2.115360px;}
._6{width:3.126240px;}
._5{width:4.328640px;}
._8{width:5.332320px;}
._7{width:7.279680px;}
._9{width:8.679360px;}
._15{width:10.459440px;}
._17{width:11.836080px;}
._1e{width:12.853440px;}
._2d{width:14.883120px;}
._c{width:16.560000px;}
._12{width:18.979200px;}
._27{width:20.666880px;}
._25{width:21.717360px;}
._24{width:22.988160px;}
._16{width:24.631920px;}
._2e{width:26.360640px;}
._f{width:27.416880px;}
._1f{width:29.072880px;}
._1b{width:31.199040px;}
._1a{width:32.466720px;}
._d{width:33.709680px;}
._e{width:35.425440px;}
._28{width:36.763200px;}
._22{width:37.955520px;}
._23{width:39.128400px;}
._14{width:40.737600px;}
._13{width:41.832000px;}
._1c{width:42.983280px;}
._3b{width:44.182080px;}
._34{width:45.609120px;}
._33{width:46.629360px;}
._36{width:50.365440px;}
._35{width:51.450480px;}
._2f{width:56.413440px;}
._2c{width:57.928320px;}
._10{width:59.120640px;}
._11{width:60.467760px;}
._32{width:63.343920px;}
._31{width:64.974960px;}
._30{width:66.155760px;}
._38{width:69.214320px;}
._37{width:70.671600px;}
._19{width:73.117440px;}
._18{width:74.712240px;}
._1d{width:79.292160px;}
._20{width:81.408960px;}
._21{width:82.455840px;}
._39{width:85.708080px;}
._3a{width:86.896800px;}
._2b{width:97.154400px;}
._29{width:108.832320px;}
._2a{width:110.548080px;}
.fc4{color:transparent;}
.fc3{color:rgb(15,26,23);}
.fc2{color:rgb(75,129,114);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:38.880000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs4{font-size:120.240000px;}
.fs8{font-size:144.000000px;}
.fs1{font-size:167.760000px;}
.fs2{font-size:198.000000px;}
.fs6{font-size:432.000000px;}
.ya5{bottom:-152.820000px;}
.ya4{bottom:-115.920000px;}
.ya3{bottom:-82.620000px;}
.ya2{bottom:-49.140000px;}
.y156{bottom:-33.165000px;}
.y81{bottom:-33.120000px;}
.y91{bottom:-32.760000px;}
.y8b{bottom:-31.320000px;}
.y153{bottom:-29.520000px;}
.y16{bottom:-28.980000px;}
.yff{bottom:-28.800000px;}
.ya1{bottom:-27.900000px;}
.y13a{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.539985px;}
.ydf{bottom:2.880000px;}
.y15{bottom:3.420000px;}
.y155{bottom:3.600000px;}
.y80{bottom:3.780000px;}
.y90{bottom:3.960000px;}
.y8a{bottom:5.580000px;}
.y152{bottom:7.380000px;}
.y17{bottom:7.740000px;}
.yfe{bottom:7.920000px;}
.y14{bottom:20.880000px;}
.y7f{bottom:25.020000px;}
.y11b{bottom:25.200000px;}
.y8f{bottom:25.380000px;}
.ya0{bottom:26.820000px;}
.y89{bottom:27.030000px;}
.yde{bottom:27.750000px;}
.y151{bottom:28.620000px;}
.yfd{bottom:29.340000px;}
.y139{bottom:35.820000px;}
.y18{bottom:43.200000px;}
.y2{bottom:46.260015px;}
.y13{bottom:46.440000px;}
.y7e{bottom:46.470000px;}
.y11a{bottom:46.620000px;}
.y8e{bottom:46.800000px;}
.y88{bottom:48.270000px;}
.ydd{bottom:49.170000px;}
.y150{bottom:50.040000px;}
.yfc{bottom:50.760000px;}
.y138{bottom:57.060000px;}
.y9f{bottom:60.330000px;}
.yc2{bottom:61.920000px;}
.y119{bottom:67.860000px;}
.y7d{bottom:67.890000px;}
.y8d{bottom:68.040000px;}
.y87{bottom:69.690000px;}
.ydc{bottom:70.410000px;}
.y14f{bottom:71.460000px;}
.y9e{bottom:81.570000px;}
.y7c{bottom:89.130000px;}
.y118{bottom:89.280000px;}
.y86{bottom:91.110000px;}
.ydb{bottom:91.830000px;}
.y14e{bottom:92.910000px;}
.yc1{bottom:98.640000px;}
.y9d{bottom:102.990000px;}
.y4{bottom:109.620000px;}
.y85{bottom:112.350000px;}
.yda{bottom:113.250000px;}
.y14d{bottom:114.150000px;}
.yc0{bottom:120.240000px;}
.y9c{bottom:124.410000px;}
.y19{bottom:129.420000px;}
.y92{bottom:134.460000px;}
.yd9{bottom:134.490000px;}
.y14c{bottom:135.570000px;}
.y9b{bottom:145.830000px;}
.y174{bottom:148.680000px;}
.y38{bottom:153.180000px;}
.ybf{bottom:153.540000px;}
.yd7{bottom:154.800000px;}
.y14b{bottom:156.990000px;}
.y7a{bottom:158.940000px;}
.y147{bottom:161.100000px;}
.y136{bottom:162.360000px;}
.y5d{bottom:164.160000px;}
.yfa{bottom:166.320000px;}
.y9a{bottom:167.070000px;}
.ya6{bottom:171.720000px;}
.yd8{bottom:173.520000px;}
.ybe{bottom:174.960000px;}
.y173{bottom:176.970000px;}
.y14a{bottom:178.410000px;}
.y79{bottom:180.210000px;}
.y146{bottom:182.550000px;}
.y135{bottom:183.630000px;}
.y5c{bottom:185.610000px;}
.y37{bottom:186.510000px;}
.yf9{bottom:187.770000px;}
.y99{bottom:188.490000px;}
.y172{bottom:193.170000px;}
.ybd{bottom:196.245000px;}
.y149{bottom:199.650000px;}
.y78{bottom:201.630000px;}
.y145{bottom:203.970000px;}
.y134{bottom:205.050000px;}
.y5b{bottom:207.030000px;}
.yf8{bottom:209.190000px;}
.y98{bottom:209.910000px;}
.ybc{bottom:217.665000px;}
.y36{bottom:219.810000px;}
.y171{bottom:220.170000px;}
.y77{bottom:223.050000px;}
.y144{bottom:225.210000px;}
.ya7{bottom:225.930000px;}
.yf7{bottom:230.430000px;}
.y97{bottom:231.330000px;}
.y133{bottom:238.350000px;}
.ybb{bottom:239.085000px;}
.y5a{bottom:240.330000px;}
.y76{bottom:244.470000px;}
.y143{bottom:246.630000px;}
.yf6{bottom:251.850000px;}
.y96{bottom:252.570000px;}
.y35{bottom:253.290000px;}
.y132{bottom:259.770000px;}
.yba{bottom:260.505000px;}
.y59{bottom:261.750000px;}
.y170{bottom:271.290000px;}
.yf5{bottom:273.270000px;}
.y95{bottom:273.990000px;}
.y34{bottom:274.710000px;}
.y75{bottom:277.770000px;}
.y142{bottom:280.110000px;}
.y117{bottom:288.030000px;}
.y131{bottom:293.250000px;}
.yb9{bottom:293.805000px;}
.yf4{bottom:294.690000px;}
.y58{bottom:295.050000px;}
.y94{bottom:295.455000px;}
.y33{bottom:295.950000px;}
.y141{bottom:301.350000px;}
.y16f{bottom:304.770000px;}
.y74{bottom:311.070000px;}
.y130{bottom:314.490000px;}
.yb8{bottom:315.225000px;}
.yf3{bottom:315.930000px;}
.y57{bottom:316.470000px;}
.y93{bottom:316.695000px;}
.y140{bottom:322.770000px;}
.y32{bottom:329.430000px;}
.y12{bottom:331.230000px;}
.yb7{bottom:336.465000px;}
.yf2{bottom:337.350000px;}
.y56{bottom:337.890000px;}
.y16e{bottom:338.070000px;}
.y13f{bottom:344.190000px;}
.y73{bottom:344.550000px;}
.y12f{bottom:347.970000px;}
.yb6{bottom:357.885000px;}
.yf1{bottom:358.770000px;}
.yd6{bottom:359.490000px;}
.y31{bottom:362.910000px;}
.y72{bottom:365.970000px;}
.y12e{bottom:369.210000px;}
.y55{bottom:371.190000px;}
.y16d{bottom:371.370000px;}
.y13e{bottom:377.490000px;}
.yb5{bottom:379.305000px;}
.yf0{bottom:380.190000px;}
.yd5{bottom:380.730000px;}
.y71{bottom:387.210000px;}
.y12d{bottom:390.630000px;}
.y54{bottom:392.610000px;}
.y30{bottom:396.570000px;}
.yb4{bottom:400.725000px;}
.yef{bottom:401.430000px;}
.yd4{bottom:402.150000px;}
.y16c{bottom:404.850000px;}
.y70{bottom:408.630000px;}
.y13d{bottom:410.970000px;}
.y12c{bottom:412.050000px;}
.y53{bottom:414.030000px;}
.yb3{bottom:421.965000px;}
.yee{bottom:422.895000px;}
.yd3{bottom:423.615000px;}
.y2f{bottom:430.095000px;}
.y12b{bottom:433.515000px;}
.y16b{bottom:438.195000px;}
.y116{bottom:441.615000px;}
.y154{bottom:442.335000px;}
.yed{bottom:444.315000px;}
.y52{bottom:447.375000px;}
.y6f{bottom:451.335000px;}
.y12a{bottom:454.755000px;}
.yb2{bottom:455.475000px;}
.yd2{bottom:456.915000px;}
.y115{bottom:463.035000px;}
.y2e{bottom:463.575000px;}
.yec{bottom:465.555000px;}
.y51{bottom:468.795000px;}
.y16a{bottom:471.675000px;}
.y6e{bottom:472.755000px;}
.y129{bottom:476.175000px;}
.yb1{bottom:476.895000px;}
.yd1{bottom:478.335000px;}
.y114{bottom:484.275000px;}
.y2d{bottom:484.995000px;}
.yeb{bottom:486.975000px;}
.y6d{bottom:494.175000px;}
.y128{bottom:497.595000px;}
.yb0{bottom:498.135000px;}
.y50{bottom:502.095000px;}
.y169{bottom:504.975000px;}
.y113{bottom:505.695000px;}
.y2c{bottom:506.415000px;}
.yea{bottom:508.395000px;}
.yd0{bottom:511.635000px;}
.y8c{bottom:514.335000px;}
.y6c{bottom:515.595000px;}
.y11{bottom:515.955000px;}
.y127{bottom:518.835000px;}
.yaf{bottom:519.555000px;}
.y4f{bottom:523.515000px;}
.y112{bottom:527.115000px;}
.y2b{bottom:527.835000px;}
.ye9{bottom:529.815000px;}
.ycf{bottom:533.055000px;}
.y6b{bottom:536.835000px;}
.y168{bottom:538.275000px;}
.y126{bottom:540.255000px;}
.y13c{bottom:546.375000px;}
.y111{bottom:548.355000px;}
.y10{bottom:549.255000px;}
.ye8{bottom:551.055000px;}
.yae{bottom:552.855000px;}
.yce{bottom:554.475000px;}
.y4e{bottom:556.815000px;}
.y2a{bottom:561.135000px;}
.y6a{bottom:570.315000px;}
.y167{bottom:571.755000px;}
.ye7{bottom:572.475000px;}
.y125{bottom:573.735000px;}
.yad{bottom:574.275000px;}
.ycd{bottom:575.895000px;}
.y4d{bottom:578.235000px;}
.y110{bottom:581.835000px;}
.y29{bottom:582.555000px;}
.yf{bottom:582.735000px;}
.y148{bottom:583.455000px;}
.ye6{bottom:593.895000px;}
.yac{bottom:595.695000px;}
.y69{bottom:603.615000px;}
.y166{bottom:605.055000px;}
.y124{bottom:607.035000px;}
.ycc{bottom:609.195000px;}
.y4c{bottom:611.535000px;}
.y10f{bottom:615.135000px;}
.ye5{bottom:615.315000px;}
.ye{bottom:616.035000px;}
.yab{bottom:617.115000px;}
.y165{bottom:626.475000px;}
.y4b{bottom:632.955000px;}
.y7b{bottom:636.555000px;}
.y28{bottom:637.455000px;}
.yaa{bottom:638.355000px;}
.y123{bottom:640.335000px;}
.y84{bottom:641.235000px;}
.ycb{bottom:642.495000px;}
.y164{bottom:647.895000px;}
.y10e{bottom:648.615000px;}
.yd{bottom:653.475000px;}
.y4a{bottom:654.375000px;}
.ye4{bottom:657.975000px;}
.y27{bottom:658.875000px;}
.y122{bottom:661.755000px;}
.y163{bottom:669.165000px;}
.y10d{bottom:669.885000px;}
.ya9{bottom:671.835000px;}
.yca{bottom:676.005000px;}
.ye3{bottom:679.425000px;}
.y121{bottom:683.205000px;}
.y49{bottom:687.705000px;}
.y162{bottom:690.585000px;}
.yc{bottom:692.205000px;}
.y26{bottom:692.385000px;}
.ya8{bottom:693.120000px;}
.yc9{bottom:697.245000px;}
.ye2{bottom:700.845000px;}
.y10c{bottom:703.365000px;}
.y48{bottom:709.125000px;}
.y161{bottom:712.005000px;}
.y25{bottom:713.805000px;}
.y120{bottom:716.505000px;}
.yc8{bottom:718.665000px;}
.y10b{bottom:724.785000px;}
.y47{bottom:730.545000px;}
.y160{bottom:733.245000px;}
.yb{bottom:739.725000px;}
.yc7{bottom:740.085000px;}
.y24{bottom:747.285000px;}
.y137{bottom:748.365000px;}
.y46{bottom:751.785000px;}
.y15f{bottom:754.665000px;}
.y10a{bottom:758.085000px;}
.yc6{bottom:761.505000px;}
.y23{bottom:768.705000px;}
.y68{bottom:773.385000px;}
.ya{bottom:773.745000px;}
.y15e{bottom:776.085000px;}
.y45{bottom:785.265000px;}
.y22{bottom:790.125000px;}
.y109{bottom:791.385000px;}
.y67{bottom:794.805000px;}
.y15d{bottom:797.505000px;}
.y83{bottom:804.165000px;}
.y44{bottom:806.685000px;}
.y21{bottom:811.365000px;}
.y108{bottom:812.805000px;}
.y66{bottom:816.225000px;}
.y15c{bottom:830.805000px;}
.y20{bottom:832.785000px;}
.y9{bottom:833.145000px;}
.y82{bottom:837.465000px;}
.ye1{bottom:837.645000px;}
.y43{bottom:839.985000px;}
.y107{bottom:846.105000px;}
.y65{bottom:849.525000px;}
.y15b{bottom:852.225000px;}
.y1f{bottom:854.205000px;}
.ye0{bottom:859.065000px;}
.y42{bottom:861.405000px;}
.y64{bottom:870.945000px;}
.y15a{bottom:873.465000px;}
.y41{bottom:882.645000px;}
.y11f{bottom:882.825000px;}
.y106{bottom:885.525000px;}
.y1e{bottom:887.505000px;}
.y63{bottom:892.365000px;}
.y159{bottom:894.885000px;}
.y8{bottom:899.385000px;}
.y40{bottom:902.805000px;}
.yc5{bottom:904.245000px;}
.y105{bottom:906.990000px;}
.y158{bottom:916.350000px;}
.y1d{bottom:921.030000px;}
.y3f{bottom:924.090000px;}
.y11e{bottom:925.530000px;}
.y62{bottom:925.710000px;}
.y104{bottom:928.410000px;}
.y7{bottom:930.390000px;}
.y157{bottom:937.770000px;}
.y3e{bottom:944.070000px;}
.y11d{bottom:946.950000px;}
.y61{bottom:947.130000px;}
.y103{bottom:949.650000px;}
.y1c{bottom:950.730000px;}
.yfb{bottom:956.670000px;}
.y13b{bottom:959.010000px;}
.y3d{bottom:963.870000px;}
.yc4{bottom:968.370000px;}
.y102{bottom:971.070000px;}
.y60{bottom:980.430000px;}
.y6{bottom:980.790000px;}
.y3c{bottom:983.670000px;}
.yc3{bottom:989.790000px;}
.y101{bottom:992.490000px;}
.y1b{bottom:993.930000px;}
.y5f{bottom:1001.850000px;}
.y3b{bottom:1003.470000px;}
.y11c{bottom:1013.730000px;}
.y100{bottom:1013.910000px;}
.y3a{bottom:1023.270000px;}
.y5{bottom:1031.190000px;}
.y5e{bottom:1035.150000px;}
.y1a{bottom:1037.130000px;}
.y39{bottom:1056.570000px;}
.y3{bottom:1076.370000px;}
.ha{height:46.854492px;}
.h3{height:57.474844px;}
.hd{height:57.495234px;}
.h6{height:62.472656px;}
.h15{height:67.140000px;}
.hf{height:71.200898px;}
.h17{height:73.440000px;}
.h9{height:76.320000px;}
.h19{height:84.240000px;}
.h11{height:84.420000px;}
.hb{height:85.860000px;}
.h2{height:91.980000px;}
.h7{height:104.329336px;}
.he{height:105.516000px;}
.h16{height:105.660000px;}
.hc{height:124.945312px;}
.h10{height:128.736000px;}
.h4{height:145.561289px;}
.h14{height:150.870000px;}
.h5{height:171.799805px;}
.h18{height:216.030000px;}
.h12{height:333.075000px;}
.h8{height:374.835938px;}
.h13{height:751.605000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:639.285000px;}
.w4{width:661.425000px;}
.w8{width:670.605000px;}
.wa{width:672.585000px;}
.wc{width:674.385000px;}
.w6{width:677.985000px;}
.w5{width:680.685000px;}
.we{width:681.945000px;}
.wb{width:683.385000px;}
.w7{width:683.565000px;}
.wd{width:699.765000px;}
.w2{width:892.979973px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:10.259973px;}
.x19{left:37.794000px;}
.x1a{left:64.794000px;}
.x1e{left:103.356000px;}
.x1f{left:106.596000px;}
.x2{left:108.035987px;}
.x16{left:109.836000px;}
.x14{left:110.916000px;}
.xc{left:117.755973px;}
.xd{left:120.455987px;}
.x5{left:121.715987px;}
.x18{left:124.236000px;}
.xf{left:126.755987px;}
.x8{left:128.916000px;}
.x12{left:135.035987px;}
.x10{left:162.029987px;}
.x11{left:189.029987px;}
.xb{left:205.959000px;}
.x1d{left:216.029987px;}
.x7{left:217.829987px;}
.x9{left:221.259000px;}
.x4{left:246.089987px;}
.xa{left:259.059000px;}
.x1b{left:319.539000px;}
.x17{left:335.199000px;}
.x15{left:338.979000px;}
.x13{left:340.239000px;}
.x6{left:342.614987px;}
.x20{left:349.779000px;}
.xe{left:394.634987px;}
.x3{left:446.474987px;}
.x1c{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.565333pt;}
.ls15{letter-spacing:-0.501867pt;}
.ls17{letter-spacing:-0.478933pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls23{letter-spacing:-0.222933pt;}
.ls8{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.120533pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.058667pt;}
.ls24{letter-spacing:-0.002560pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1f{letter-spacing:0.074133pt;}
.ls5{letter-spacing:0.074240pt;}
.lsc{letter-spacing:0.128000pt;}
.ls1b{letter-spacing:0.130560pt;}
.ls19{letter-spacing:0.139520pt;}
.ls20{letter-spacing:0.158933pt;}
.ls9{letter-spacing:0.161067pt;}
.ls4{letter-spacing:0.161280pt;}
.ls1e{letter-spacing:0.212267pt;}
.ls10{letter-spacing:0.233067pt;}
.lse{letter-spacing:0.234240pt;}
.ls14{letter-spacing:0.267947pt;}
.ls1a{letter-spacing:0.278933pt;}
.lsa{letter-spacing:3.503360pt;}
.ls22{letter-spacing:32.890027pt;}
.ls1c{letter-spacing:35.450027pt;}
.ls18{letter-spacing:36.090027pt;}
.ls1d{letter-spacing:44.431360pt;}
.lsf{letter-spacing:46.970027pt;}
.lsd{letter-spacing:49.232640pt;}
.ls6{letter-spacing:52.751360pt;}
.lsb{letter-spacing:56.891307pt;}
.ls16{letter-spacing:56.912640pt;}
.ls3{letter-spacing:79.610027pt;}
.ls2{letter-spacing:176.161280pt;}
.ls0{letter-spacing:751.770027pt;}
.ws4{word-spacing:-58.880000pt;}
.ws5{word-spacing:-53.120000pt;}
.wsa{word-spacing:-16.117653pt;}
.ws6{word-spacing:-16.071787pt;}
.wsb{word-spacing:-16.050987pt;}
.wsc{word-spacing:-15.997653pt;}
.ws1{word-spacing:-15.838720pt;}
.wsf{word-spacing:-15.836160pt;}
.ws7{word-spacing:-15.780053pt;}
.ws8{word-spacing:-15.741653pt;}
.wsd{word-spacing:-15.718187pt;}
.ws3{word-spacing:-15.646720pt;}
.wse{word-spacing:-15.615787pt;}
.ws2{word-spacing:-15.431787pt;}
.ws9{word-spacing:-15.336853pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-66.343253pt;}
._0{margin-left:-7.040000pt;}
._3{margin-left:-5.808000pt;}
._4{margin-left:-4.224000pt;}
._1{margin-left:-2.816000pt;}
._2{margin-left:-1.584000pt;}
._a{width:0.917120pt;}
._26{width:1.880320pt;}
._6{width:2.778880pt;}
._5{width:3.847680pt;}
._8{width:4.739840pt;}
._7{width:6.470827pt;}
._9{width:7.714987pt;}
._15{width:9.297280pt;}
._17{width:10.520960pt;}
._1e{width:11.425280pt;}
._2d{width:13.229440pt;}
._c{width:14.720000pt;}
._12{width:16.870400pt;}
._27{width:18.370560pt;}
._25{width:19.304320pt;}
._24{width:20.433920pt;}
._16{width:21.895040pt;}
._2e{width:23.431680pt;}
._f{width:24.370560pt;}
._1f{width:25.842560pt;}
._1b{width:27.732480pt;}
._1a{width:28.859307pt;}
._d{width:29.964160pt;}
._e{width:31.489280pt;}
._28{width:32.678400pt;}
._22{width:33.738240pt;}
._23{width:34.780800pt;}
._14{width:36.211200pt;}
._13{width:37.184000pt;}
._1c{width:38.207360pt;}
._3b{width:39.272960pt;}
._34{width:40.541440pt;}
._33{width:41.448320pt;}
._36{width:44.769280pt;}
._35{width:45.733760pt;}
._2f{width:50.145280pt;}
._2c{width:51.491840pt;}
._10{width:52.551680pt;}
._11{width:53.749120pt;}
._32{width:56.305707pt;}
._31{width:57.755520pt;}
._30{width:58.805120pt;}
._38{width:61.523840pt;}
._37{width:62.819200pt;}
._19{width:64.993280pt;}
._18{width:66.410880pt;}
._1d{width:70.481920pt;}
._20{width:72.363520pt;}
._21{width:73.294080pt;}
._39{width:76.184960pt;}
._3a{width:77.241600pt;}
._2b{width:86.359467pt;}
._29{width:96.739840pt;}
._2a{width:98.264960pt;}
.fs9{font-size:34.560000pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs4{font-size:106.880000pt;}
.fs8{font-size:128.000000pt;}
.fs1{font-size:149.120000pt;}
.fs2{font-size:176.000000pt;}
.fs6{font-size:384.000000pt;}
.ya5{bottom:-135.840000pt;}
.ya4{bottom:-103.040000pt;}
.ya3{bottom:-73.440000pt;}
.ya2{bottom:-43.680000pt;}
.y156{bottom:-29.480000pt;}
.y81{bottom:-29.440000pt;}
.y91{bottom:-29.120000pt;}
.y8b{bottom:-27.840000pt;}
.y153{bottom:-26.240000pt;}
.y16{bottom:-25.760000pt;}
.yff{bottom:-25.600000pt;}
.ya1{bottom:-24.800000pt;}
.y13a{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.479987pt;}
.ydf{bottom:2.560000pt;}
.y15{bottom:3.040000pt;}
.y155{bottom:3.200000pt;}
.y80{bottom:3.360000pt;}
.y90{bottom:3.520000pt;}
.y8a{bottom:4.960000pt;}
.y152{bottom:6.560000pt;}
.y17{bottom:6.880000pt;}
.yfe{bottom:7.040000pt;}
.y14{bottom:18.560000pt;}
.y7f{bottom:22.240000pt;}
.y11b{bottom:22.400000pt;}
.y8f{bottom:22.560000pt;}
.ya0{bottom:23.840000pt;}
.y89{bottom:24.026667pt;}
.yde{bottom:24.666667pt;}
.y151{bottom:25.440000pt;}
.yfd{bottom:26.080000pt;}
.y139{bottom:31.840000pt;}
.y18{bottom:38.400000pt;}
.y2{bottom:41.120013pt;}
.y13{bottom:41.280000pt;}
.y7e{bottom:41.306667pt;}
.y11a{bottom:41.440000pt;}
.y8e{bottom:41.600000pt;}
.y88{bottom:42.906667pt;}
.ydd{bottom:43.706667pt;}
.y150{bottom:44.480000pt;}
.yfc{bottom:45.120000pt;}
.y138{bottom:50.720000pt;}
.y9f{bottom:53.626667pt;}
.yc2{bottom:55.040000pt;}
.y119{bottom:60.320000pt;}
.y7d{bottom:60.346667pt;}
.y8d{bottom:60.480000pt;}
.y87{bottom:61.946667pt;}
.ydc{bottom:62.586667pt;}
.y14f{bottom:63.520000pt;}
.y9e{bottom:72.506667pt;}
.y7c{bottom:79.226667pt;}
.y118{bottom:79.360000pt;}
.y86{bottom:80.986667pt;}
.ydb{bottom:81.626667pt;}
.y14e{bottom:82.586667pt;}
.yc1{bottom:87.680000pt;}
.y9d{bottom:91.546667pt;}
.y4{bottom:97.440000pt;}
.y85{bottom:99.866667pt;}
.yda{bottom:100.666667pt;}
.y14d{bottom:101.466667pt;}
.yc0{bottom:106.880000pt;}
.y9c{bottom:110.586667pt;}
.y19{bottom:115.040000pt;}
.y92{bottom:119.520000pt;}
.yd9{bottom:119.546667pt;}
.y14c{bottom:120.506667pt;}
.y9b{bottom:129.626667pt;}
.y174{bottom:132.160000pt;}
.y38{bottom:136.160000pt;}
.ybf{bottom:136.480000pt;}
.yd7{bottom:137.600000pt;}
.y14b{bottom:139.546667pt;}
.y7a{bottom:141.280000pt;}
.y147{bottom:143.200000pt;}
.y136{bottom:144.320000pt;}
.y5d{bottom:145.920000pt;}
.yfa{bottom:147.840000pt;}
.y9a{bottom:148.506667pt;}
.ya6{bottom:152.640000pt;}
.yd8{bottom:154.240000pt;}
.ybe{bottom:155.520000pt;}
.y173{bottom:157.306667pt;}
.y14a{bottom:158.586667pt;}
.y79{bottom:160.186667pt;}
.y146{bottom:162.266667pt;}
.y135{bottom:163.226667pt;}
.y5c{bottom:164.986667pt;}
.y37{bottom:165.786667pt;}
.yf9{bottom:166.906667pt;}
.y99{bottom:167.546667pt;}
.y172{bottom:171.706667pt;}
.ybd{bottom:174.440000pt;}
.y149{bottom:177.466667pt;}
.y78{bottom:179.226667pt;}
.y145{bottom:181.306667pt;}
.y134{bottom:182.266667pt;}
.y5b{bottom:184.026667pt;}
.yf8{bottom:185.946667pt;}
.y98{bottom:186.586667pt;}
.ybc{bottom:193.480000pt;}
.y36{bottom:195.386667pt;}
.y171{bottom:195.706667pt;}
.y77{bottom:198.266667pt;}
.y144{bottom:200.186667pt;}
.ya7{bottom:200.826667pt;}
.yf7{bottom:204.826667pt;}
.y97{bottom:205.626667pt;}
.y133{bottom:211.866667pt;}
.ybb{bottom:212.520000pt;}
.y5a{bottom:213.626667pt;}
.y76{bottom:217.306667pt;}
.y143{bottom:219.226667pt;}
.yf6{bottom:223.866667pt;}
.y96{bottom:224.506667pt;}
.y35{bottom:225.146667pt;}
.y132{bottom:230.906667pt;}
.yba{bottom:231.560000pt;}
.y59{bottom:232.666667pt;}
.y170{bottom:241.146667pt;}
.yf5{bottom:242.906667pt;}
.y95{bottom:243.546667pt;}
.y34{bottom:244.186667pt;}
.y75{bottom:246.906667pt;}
.y142{bottom:248.986667pt;}
.y117{bottom:256.026667pt;}
.y131{bottom:260.666667pt;}
.yb9{bottom:261.160000pt;}
.yf4{bottom:261.946667pt;}
.y58{bottom:262.266667pt;}
.y94{bottom:262.626667pt;}
.y33{bottom:263.066667pt;}
.y141{bottom:267.866667pt;}
.y16f{bottom:270.906667pt;}
.y74{bottom:276.506667pt;}
.y130{bottom:279.546667pt;}
.yb8{bottom:280.200000pt;}
.yf3{bottom:280.826667pt;}
.y57{bottom:281.306667pt;}
.y93{bottom:281.506667pt;}
.y140{bottom:286.906667pt;}
.y32{bottom:292.826667pt;}
.y12{bottom:294.426667pt;}
.yb7{bottom:299.080000pt;}
.yf2{bottom:299.866667pt;}
.y56{bottom:300.346667pt;}
.y16e{bottom:300.506667pt;}
.y13f{bottom:305.946667pt;}
.y73{bottom:306.266667pt;}
.y12f{bottom:309.306667pt;}
.yb6{bottom:318.120000pt;}
.yf1{bottom:318.906667pt;}
.yd6{bottom:319.546667pt;}
.y31{bottom:322.586667pt;}
.y72{bottom:325.306667pt;}
.y12e{bottom:328.186667pt;}
.y55{bottom:329.946667pt;}
.y16d{bottom:330.106667pt;}
.y13e{bottom:335.546667pt;}
.yb5{bottom:337.160000pt;}
.yf0{bottom:337.946667pt;}
.yd5{bottom:338.426667pt;}
.y71{bottom:344.186667pt;}
.y12d{bottom:347.226667pt;}
.y54{bottom:348.986667pt;}
.y30{bottom:352.506667pt;}
.yb4{bottom:356.200000pt;}
.yef{bottom:356.826667pt;}
.yd4{bottom:357.466667pt;}
.y16c{bottom:359.866667pt;}
.y70{bottom:363.226667pt;}
.y13d{bottom:365.306667pt;}
.y12c{bottom:366.266667pt;}
.y53{bottom:368.026667pt;}
.yb3{bottom:375.080000pt;}
.yee{bottom:375.906667pt;}
.yd3{bottom:376.546667pt;}
.y2f{bottom:382.306667pt;}
.y12b{bottom:385.346667pt;}
.y16b{bottom:389.506667pt;}
.y116{bottom:392.546667pt;}
.y154{bottom:393.186667pt;}
.yed{bottom:394.946667pt;}
.y52{bottom:397.666667pt;}
.y6f{bottom:401.186667pt;}
.y12a{bottom:404.226667pt;}
.yb2{bottom:404.866667pt;}
.yd2{bottom:406.146667pt;}
.y115{bottom:411.586667pt;}
.y2e{bottom:412.066667pt;}
.yec{bottom:413.826667pt;}
.y51{bottom:416.706667pt;}
.y16a{bottom:419.266667pt;}
.y6e{bottom:420.226667pt;}
.y129{bottom:423.266667pt;}
.yb1{bottom:423.906667pt;}
.yd1{bottom:425.186667pt;}
.y114{bottom:430.466667pt;}
.y2d{bottom:431.106667pt;}
.yeb{bottom:432.866667pt;}
.y6d{bottom:439.266667pt;}
.y128{bottom:442.306667pt;}
.yb0{bottom:442.786667pt;}
.y50{bottom:446.306667pt;}
.y169{bottom:448.866667pt;}
.y113{bottom:449.506667pt;}
.y2c{bottom:450.146667pt;}
.yea{bottom:451.906667pt;}
.yd0{bottom:454.786667pt;}
.y8c{bottom:457.186667pt;}
.y6c{bottom:458.306667pt;}
.y11{bottom:458.626667pt;}
.y127{bottom:461.186667pt;}
.yaf{bottom:461.826667pt;}
.y4f{bottom:465.346667pt;}
.y112{bottom:468.546667pt;}
.y2b{bottom:469.186667pt;}
.ye9{bottom:470.946667pt;}
.ycf{bottom:473.826667pt;}
.y6b{bottom:477.186667pt;}
.y168{bottom:478.466667pt;}
.y126{bottom:480.226667pt;}
.y13c{bottom:485.666667pt;}
.y111{bottom:487.426667pt;}
.y10{bottom:488.226667pt;}
.ye8{bottom:489.826667pt;}
.yae{bottom:491.426667pt;}
.yce{bottom:492.866667pt;}
.y4e{bottom:494.946667pt;}
.y2a{bottom:498.786667pt;}
.y6a{bottom:506.946667pt;}
.y167{bottom:508.226667pt;}
.ye7{bottom:508.866667pt;}
.y125{bottom:509.986667pt;}
.yad{bottom:510.466667pt;}
.ycd{bottom:511.906667pt;}
.y4d{bottom:513.986667pt;}
.y110{bottom:517.186667pt;}
.y29{bottom:517.826667pt;}
.yf{bottom:517.986667pt;}
.y148{bottom:518.626667pt;}
.ye6{bottom:527.906667pt;}
.yac{bottom:529.506667pt;}
.y69{bottom:536.546667pt;}
.y166{bottom:537.826667pt;}
.y124{bottom:539.586667pt;}
.ycc{bottom:541.506667pt;}
.y4c{bottom:543.586667pt;}
.y10f{bottom:546.786667pt;}
.ye5{bottom:546.946667pt;}
.ye{bottom:547.586667pt;}
.yab{bottom:548.546667pt;}
.y165{bottom:556.866667pt;}
.y4b{bottom:562.626667pt;}
.y7b{bottom:565.826667pt;}
.y28{bottom:566.626667pt;}
.yaa{bottom:567.426667pt;}
.y123{bottom:569.186667pt;}
.y84{bottom:569.986667pt;}
.ycb{bottom:571.106667pt;}
.y164{bottom:575.906667pt;}
.y10e{bottom:576.546667pt;}
.yd{bottom:580.866667pt;}
.y4a{bottom:581.666667pt;}
.ye4{bottom:584.866667pt;}
.y27{bottom:585.666667pt;}
.y122{bottom:588.226667pt;}
.y163{bottom:594.813333pt;}
.y10d{bottom:595.453333pt;}
.ya9{bottom:597.186667pt;}
.yca{bottom:600.893333pt;}
.ye3{bottom:603.933333pt;}
.y121{bottom:607.293333pt;}
.y49{bottom:611.293333pt;}
.y162{bottom:613.853333pt;}
.yc{bottom:615.293333pt;}
.y26{bottom:615.453333pt;}
.ya8{bottom:616.106667pt;}
.yc9{bottom:619.773333pt;}
.ye2{bottom:622.973333pt;}
.y10c{bottom:625.213333pt;}
.y48{bottom:630.333333pt;}
.y161{bottom:632.893333pt;}
.y25{bottom:634.493333pt;}
.y120{bottom:636.893333pt;}
.yc8{bottom:638.813333pt;}
.y10b{bottom:644.253333pt;}
.y47{bottom:649.373333pt;}
.y160{bottom:651.773333pt;}
.yb{bottom:657.533333pt;}
.yc7{bottom:657.853333pt;}
.y24{bottom:664.253333pt;}
.y137{bottom:665.213333pt;}
.y46{bottom:668.253333pt;}
.y15f{bottom:670.813333pt;}
.y10a{bottom:673.853333pt;}
.yc6{bottom:676.893333pt;}
.y23{bottom:683.293333pt;}
.y68{bottom:687.453333pt;}
.ya{bottom:687.773333pt;}
.y15e{bottom:689.853333pt;}
.y45{bottom:698.013333pt;}
.y22{bottom:702.333333pt;}
.y109{bottom:703.453333pt;}
.y67{bottom:706.493333pt;}
.y15d{bottom:708.893333pt;}
.y83{bottom:714.813333pt;}
.y44{bottom:717.053333pt;}
.y21{bottom:721.213333pt;}
.y108{bottom:722.493333pt;}
.y66{bottom:725.533333pt;}
.y15c{bottom:738.493333pt;}
.y20{bottom:740.253333pt;}
.y9{bottom:740.573333pt;}
.y82{bottom:744.413333pt;}
.ye1{bottom:744.573333pt;}
.y43{bottom:746.653333pt;}
.y107{bottom:752.093333pt;}
.y65{bottom:755.133333pt;}
.y15b{bottom:757.533333pt;}
.y1f{bottom:759.293333pt;}
.ye0{bottom:763.613333pt;}
.y42{bottom:765.693333pt;}
.y64{bottom:774.173333pt;}
.y15a{bottom:776.413333pt;}
.y41{bottom:784.573333pt;}
.y11f{bottom:784.733333pt;}
.y106{bottom:787.133333pt;}
.y1e{bottom:788.893333pt;}
.y63{bottom:793.213333pt;}
.y159{bottom:795.453333pt;}
.y8{bottom:799.453333pt;}
.y40{bottom:802.493333pt;}
.yc5{bottom:803.773333pt;}
.y105{bottom:806.213333pt;}
.y158{bottom:814.533333pt;}
.y1d{bottom:818.693333pt;}
.y3f{bottom:821.413333pt;}
.y11e{bottom:822.693333pt;}
.y62{bottom:822.853333pt;}
.y104{bottom:825.253333pt;}
.y7{bottom:827.013333pt;}
.y157{bottom:833.573333pt;}
.y3e{bottom:839.173333pt;}
.y11d{bottom:841.733333pt;}
.y61{bottom:841.893333pt;}
.y103{bottom:844.133333pt;}
.y1c{bottom:845.093333pt;}
.yfb{bottom:850.373333pt;}
.y13b{bottom:852.453333pt;}
.y3d{bottom:856.773333pt;}
.yc4{bottom:860.773333pt;}
.y102{bottom:863.173333pt;}
.y60{bottom:871.493333pt;}
.y6{bottom:871.813333pt;}
.y3c{bottom:874.373333pt;}
.yc3{bottom:879.813333pt;}
.y101{bottom:882.213333pt;}
.y1b{bottom:883.493333pt;}
.y5f{bottom:890.533333pt;}
.y3b{bottom:891.973333pt;}
.y11c{bottom:901.093333pt;}
.y100{bottom:901.253333pt;}
.y3a{bottom:909.573333pt;}
.y5{bottom:916.613333pt;}
.y5e{bottom:920.133333pt;}
.y1a{bottom:921.893333pt;}
.y39{bottom:939.173333pt;}
.y3{bottom:956.773333pt;}
.ha{height:41.648438pt;}
.h3{height:51.088750pt;}
.hd{height:51.106875pt;}
.h6{height:55.531250pt;}
.h15{height:59.680000pt;}
.hf{height:63.289687pt;}
.h17{height:65.280000pt;}
.h9{height:67.840000pt;}
.h19{height:74.880000pt;}
.h11{height:75.040000pt;}
.hb{height:76.320000pt;}
.h2{height:81.760000pt;}
.h7{height:92.737187pt;}
.he{height:93.792000pt;}
.h16{height:93.920000pt;}
.hc{height:111.062500pt;}
.h10{height:114.432000pt;}
.h4{height:129.387812pt;}
.h14{height:134.106667pt;}
.h5{height:152.710938pt;}
.h18{height:192.026667pt;}
.h12{height:296.066667pt;}
.h8{height:333.187500pt;}
.h13{height:668.093333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:568.253333pt;}
.w4{width:587.933333pt;}
.w8{width:596.093333pt;}
.wa{width:597.853333pt;}
.wc{width:599.453333pt;}
.w6{width:602.653333pt;}
.w5{width:605.053333pt;}
.we{width:606.173333pt;}
.wb{width:607.453333pt;}
.w7{width:607.613333pt;}
.wd{width:622.013333pt;}
.w2{width:793.759976pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.119976pt;}
.x19{left:33.594667pt;}
.x1a{left:57.594667pt;}
.x1e{left:91.872000pt;}
.x1f{left:94.752000pt;}
.x2{left:96.031988pt;}
.x16{left:97.632000pt;}
.x14{left:98.592000pt;}
.xc{left:104.671976pt;}
.xd{left:107.071988pt;}
.x5{left:108.191988pt;}
.x18{left:110.432000pt;}
.xf{left:112.671988pt;}
.x8{left:114.592000pt;}
.x12{left:120.031988pt;}
.x10{left:144.026655pt;}
.x11{left:168.026655pt;}
.xb{left:183.074667pt;}
.x1d{left:192.026655pt;}
.x7{left:193.626655pt;}
.x9{left:196.674667pt;}
.x4{left:218.746655pt;}
.xa{left:230.274667pt;}
.x1b{left:284.034667pt;}
.x17{left:297.954667pt;}
.x15{left:301.314667pt;}
.x13{left:302.434667pt;}
.x6{left:304.546655pt;}
.x20{left:310.914667pt;}
.xe{left:350.786655pt;}
.x3{left:396.866655pt;}
.x1c{left:698.053322pt;}
}




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